jQuery(document).ready(function($){
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};})(jQuery);
;(function($) {	
$.fn.extend({
	autocomplete: function(urlOrData, options) {
		var isUrl = typeof urlOrData == "string";
		options = $.extend({}, $.Autocompleter.defaults, {
			url: isUrl ? urlOrData : null,
			data: isUrl ? null : urlOrData,
			delay: isUrl ? $.Autocompleter.defaults.delay : 10,
			max: options && !options.scroll ? 10 : 150
		}, options);	
		// if highlight is set to false, replace it with a do-nothing function
		options.highlight = options.highlight || function(value) { return value; };
		// if the formatMatch option is not specified, then use formatItem for backwards compatibility
		options.formatMatch = options.formatMatch || options.formatItem;
		return this.each(function() {
			new $.Autocompleter(this, options);
		});
	},
	result: function(handler) {
		return this.bind("result", handler);
	},
	search: function(handler) {
		return this.trigger("search", [handler]);
	},
	flushCache: function() {
		return this.trigger("flushCache");
	},
	setOptions: function(options){
		return this.trigger("setOptions", [options]);
	},
	unautocomplete: function() {
		return this.trigger("unautocomplete");
	}
});
$.Autocompleter = function(input, options) {
	var KEY = {
		UP: 38,
		DOWN: 40,
		DEL: 46,
		TAB: 9,
		RETURN: 13,
		ESC: 27,
		COMMA: 188,
		PAGEUP: 33,
		PAGEDOWN: 34,
		BACKSPACE: 8
	};
	// Create $ object for input element
	var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass);
	var timeout;
	var previousValue = "";
	var cache = $.Autocompleter.Cache(options);
	var hasFocus = 0;
	var lastKeyPressCode;
	var config = {
		mouseDownOnSelect: false
	};
	var select = $.Autocompleter.Select(options, input, selectCurrent, config);
	var blockSubmit;
	// prevent form submit in opera when selecting with return key
	$.browser.opera && $(input.form).bind("submit.autocomplete", function() {
		if (blockSubmit) {
			blockSubmit = false;
			return false;
		}
	});
	// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all
	$input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) {
		// a keypress means the input has focus
		// avoids issue where input had focus before the autocomplete was applied
		hasFocus = 1;
		// track last key pressed
		lastKeyPressCode = event.keyCode;
		switch(event.keyCode) {
		
			case KEY.UP:
				event.preventDefault();
				if ( select.visible() ) {
					select.prev();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.DOWN:
				event.preventDefault();
				if ( select.visible() ) {
					select.next();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.PAGEUP:
				event.preventDefault();
				if ( select.visible() ) {
					select.pageUp();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.PAGEDOWN:
				event.preventDefault();
				if ( select.visible() ) {
					select.pageDown();
				} else {
					onChange(0, true);
				}
				break;
			
			// matches also semicolon
			case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA:
			case KEY.TAB:
			case KEY.RETURN:
				if( selectCurrent() ) {
					// stop default to prevent a form submit, Opera needs special handling
					event.preventDefault();
					blockSubmit = true;
					return false;
				}
				break;
				
			case KEY.ESC:
				select.hide();
				break;
				
			default:
				clearTimeout(timeout);
				timeout = setTimeout(onChange, options.delay);
				break;
		}
	}).focus(function(){
		// track whether the field has focus, we shouldn't process any
		// results if the field no longer has focus
		hasFocus++;
	}).blur(function() {
		hasFocus = 0;
		if (!config.mouseDownOnSelect) {
			hideResults();
		}
	}).click(function() {
		// show select when clicking in a focused field
		if ( hasFocus++ > 1 && !select.visible() ) {
			onChange(0, true);
		}
	}).bind("search", function() {
		// TODO why not just specifying both arguments?
		var fn = (arguments.length > 1) ? arguments[1] : null;
		function findValueCallback(q, data) {
			var result;
			if( data && data.length ) {
				for (var i=0; i < data.length; i++) {
					if( data[i].result.toLowerCase() == q.toLowerCase() ) {
						result = data[i];
						break;
					}
				}
			}
			if( typeof fn == "function" ) fn(result);
			else $input.trigger("result", result && [result.data, result.value]);
		}
		$.each(trimWords($input.val()), function(i, value) {
			request(value, findValueCallback, findValueCallback);
		});
	}).bind("flushCache", function() {
		cache.flush();
	}).bind("setOptions", function() {
		$.extend(options, arguments[1]);
		// if we've updated the data, repopulate
		if ( "data" in arguments[1] )
			cache.populate();
	}).bind("unautocomplete", function() {
		select.unbind();
		$input.unbind();
		$(input.form).unbind(".autocomplete");
	});
	function selectCurrent() {
		var selected = select.selected();
		if( !selected )
			return false;
		
		var v = selected.result;
		previousValue = v;
		
		if ( options.multiple ) {
			var words = trimWords($input.val());
			if ( words.length > 1 ) {
				var seperator = options.multipleSeparator.length;
				var cursorAt = $(input).selection().start;
				var wordAt, progress = 0;
				$.each(words, function(i, word) {
					progress += word.length;
					if (cursorAt <= progress) {
						wordAt = i;
						return false;
					}
					progress += seperator;
				});
				words[wordAt] = v;
				// TODO this should set the cursor to the right position, but it gets overriden somewhere
				//$.Autocompleter.Selection(input, progress + seperator, progress + seperator);
				v = words.join( options.multipleSeparator );
			}
			v += options.multipleSeparator;
		}
		
		$input.val(v);
		hideResultsNow();
		$input.trigger("result", [selected.data, selected.value]);
		return true;
	}
	
	function onChange(crap, skipPrevCheck) {
		if( lastKeyPressCode == KEY.DEL ) {
			select.hide();
			return;
		}
		
		var currentValue = $input.val();
		
		if ( !skipPrevCheck && currentValue == previousValue )
			return;
		
		previousValue = currentValue;
		
		currentValue = lastWord(currentValue);
		if ( currentValue.length >= options.minChars) {
			$input.addClass(options.loadingClass);
			if (!options.matchCase)
				currentValue = currentValue.toLowerCase();
			request(currentValue, receiveData, hideResultsNow);
		} else {
			stopLoading();
			select.hide();
		}
	};
	
	function trimWords(value) {
		if (!value)
			return [""];
		if (!options.multiple)
			return [$.trim(value)];
		return $.map(value.split(options.multipleSeparator), function(word) {
			return $.trim(value).length ? $.trim(word) : null;
		});
	}
	
	function lastWord(value) {
		if ( !options.multiple )
			return value;
		var words = trimWords(value);
		if (words.length == 1) 
			return words[0];
		var cursorAt = $(input).selection().start;
		if (cursorAt == value.length) {
			words = trimWords(value)
		} else {
			words = trimWords(value.replace(value.substring(cursorAt), ""));
		}
		return words[words.length - 1];
	}
	
	// fills in the input box w/the first match (assumed to be the best match)
	// q: the term entered
	// sValue: the first matching result
	function autoFill(q, sValue){
		// autofill in the complete box w/the first match as long as the user hasn't entered in more data
		// if the last user key pressed was backspace, don't autofill
		if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {
			// fill in the value (keep the case the user has typed)
			$input.val($input.val() + sValue.substring(lastWord(previousValue).length));
			// select the portion of the value not typed by the user (so the next character will erase)
			$(input).selection(previousValue.length, previousValue.length + sValue.length);
		}
	};

	function hideResults() {
		clearTimeout(timeout);
		timeout = setTimeout(hideResultsNow, 200);
	};

	function hideResultsNow() {
		var wasVisible = select.visible();
		select.hide();
		clearTimeout(timeout);
		stopLoading();
		if (options.mustMatch) {
			// call search and run callback
			$input.search(
				function (result){
					// if no value found, clear the input box
					if( !result ) {
						if (options.multiple) {
							var words = trimWords($input.val()).slice(0, -1);
							$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") );
						}
						else {
							$input.val( "" );
							$input.trigger("result", null);
						}
					}
				}
			);
		}
	};

	function receiveData(q, data) {
		if ( data && data.length && hasFocus ) {
			stopLoading();
			select.display(data, q);
			autoFill(q, data[0].value);
			select.show();
		} else {
			hideResultsNow();
		}
	};

	function request(term, success, failure) {
		if (!options.matchCase)
			term = term.toLowerCase();
		var data = cache.load(term);
		// recieve the cached data
		if (data && data.length) {
			success(term, data);
		// if an AJAX url has been supplied, try loading the data now
		} else if( (typeof options.url == "string") && (options.url.length > 0) ){
			
			var extraParams = {
				timestamp: +new Date()
			};
			$.each(options.extraParams, function(key, param) {
				extraParams[key] = typeof param == "function" ? param() : param;
			});
			
			$.ajax({
				// try to leverage ajaxQueue plugin to abort previous requests
				mode: "abort",
				// limit abortion to this input
				port: "autocomplete" + input.name,
				dataType: options.dataType,
				url: options.url,
				data: $.extend({
					q: lastWord(term),
					limit: options.max
				}, extraParams),
				success: function(data) {
					var parsed = options.parse && options.parse(data) || parse(data);
					cache.add(term, parsed);
					success(term, parsed);
				}
			});
		} else {
			// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match
			select.emptyList();
			failure(term);
		}
	};
	
	function parse(data) {
		var parsed = [];
		var rows = data.split("\n");
		for (var i=0; i < rows.length; i++) {
			var row = $.trim(rows[i]);
			if (row) {
				row = row.split("|");
				parsed[parsed.length] = {
					data: row,
					value: row[0],
					result: options.formatResult && options.formatResult(row, row[0]) || row[0]
				};
			}
		}
		return parsed;
	};

	function stopLoading() {
		$input.removeClass(options.loadingClass);
	};

};

$.Autocompleter.defaults = {
	inputClass: "ac_input",
	resultsClass: "ac_results",
	loadingClass: "ac_loading",
	minChars: 1,
	delay: 400,
	matchCase: false,
	matchSubset: true,
	matchContains: false,
	cacheLength: 10,
	max: 100,
	mustMatch: false,
	extraParams: {},
	selectFirst: true,
	formatItem: function(row) { return row[0]; },
	formatMatch: null,
	autoFill: false,
	width: 0,
	multiple: false,
	multipleSeparator: ", ",
	highlight: function(value, term) {
		return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
	},
    scroll: true,
    scrollHeight: 180
};

$.Autocompleter.Cache = function(options) {

	var data = {};
	var length = 0;
	
	function matchSubset(s, sub) {
		if (!options.matchCase) 
			s = s.toLowerCase();
		var i = s.indexOf(sub);
		if (options.matchContains == "word"){
			i = s.toLowerCase().search("\\b" + sub.toLowerCase());
		}
		if (i == -1) return false;
		return i == 0 || options.matchContains;
	};
	
	function add(q, value) {
		if (length > options.cacheLength){
			flush();
		}
		if (!data[q]){ 
			length++;
		}
		data[q] = value;
	}
	
	function populate(){
		if( !options.data ) return false;
		// track the matches
		var stMatchSets = {},
			nullData = 0;

		// no url was specified, we need to adjust the cache length to make sure it fits the local data store
		if( !options.url ) options.cacheLength = 1;
		
		// track all options for minChars = 0
		stMatchSets[""] = [];
		
		// loop through the array and create a lookup structure
		for ( var i = 0, ol = options.data.length; i < ol; i++ ) {
			var rawValue = options.data[i];
			// if rawValue is a string, make an array otherwise just reference the array
			rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue;
			
			var value = options.formatMatch(rawValue, i+1, options.data.length);
			if ( value === false )
				continue;
				
			var firstChar = value.charAt(0).toLowerCase();
			// if no lookup array for this character exists, look it up now
			if( !stMatchSets[firstChar] ) 
				stMatchSets[firstChar] = [];

			// if the match is a string
			var row = {
				value: value,
				data: rawValue,
				result: options.formatResult && options.formatResult(rawValue) || value
			};
			// push the current match into the set list
			stMatchSets[firstChar].push(row);
			// keep track of minChars zero items
			if ( nullData++ < options.max ) {
				stMatchSets[""].push(row);
			}
		};
		// add the data items to the cache
		$.each(stMatchSets, function(i, value) {
			// increase the cache size
			options.cacheLength++;
			// add to the cache
			add(i, value);
		});
	}
	// populate any existing data
	setTimeout(populate, 25);
	function flush(){
		data = {};
		length = 0;
	}
	return {
		flush: flush,
		add: add,
		populate: populate,
		load: function(q) {
			if (!options.cacheLength || !length)
				return null;
			/* 
			 * if dealing w/local data and matchContains than we must make sure
			 * to loop through all the data collections looking for matches
			 */
			if( !options.url && options.matchContains ){
				// track all matches
				var csub = [];
				// loop through all the data grids for matches
				for( var k in data ){
					// don't search through the stMatchSets[""] (minChars: 0) cache
					// this prevents duplicates
					if( k.length > 0 ){
						var c = data[k];
						$.each(c, function(i, x) {
							// if we've got a match, add it to the array
							if (matchSubset(x.value, q)) {
								csub.push(x);
							}
						});
					}
				}				
				return csub;
			} else 
			// if the exact item exists, use it
			if (data[q]){
				return data[q];
			} else
			if (options.matchSubset) {
				for (var i = q.length - 1; i >= options.minChars; i--) {
					var c = data[q.substr(0, i)];
					if (c) {
						var csub = [];
						$.each(c, function(i, x) {
							if (matchSubset(x.value, q)) {
								csub[csub.length] = x;
							}
						});
						return csub;
					}
				}
			}
			return null;
		}
	};
};

$.Autocompleter.Select = function (options, input, select, config) {
	var CLASSES = {
		ACTIVE: "ac_over"
	};
	
	var listItems,
		active = -1,
		data,
		term = "",
		needsInit = true,
		element,
		list;
	
	// Create results
	function init() {
		if (!needsInit)
			return;
		element = $("<div/>")
		.hide()
		.addClass(options.resultsClass)
		.css("position", "absolute")
		.appendTo(document.body);
	
		list = $("<ul/>").appendTo(element).mouseover( function(event) {
			if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {
	            active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event));
			    $(target(event)).addClass(CLASSES.ACTIVE);            
	        }
		}).click(function(event) {
			$(target(event)).addClass(CLASSES.ACTIVE);
			select();
			// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus
			input.focus();
			return false;
		}).mousedown(function() {
			config.mouseDownOnSelect = true;
		}).mouseup(function() {
			config.mouseDownOnSelect = false;
		});
		
		if( options.width > 0 )
			element.css("width", options.width);
			
		needsInit = false;
	} 
	
	function target(event) {
		var element = event.target;
		while(element && element.tagName != "LI")
			element = element.parentNode;
		// more fun with IE, sometimes event.target is empty, just ignore it then
		if(!element)
			return [];
		return element;
	}

	function moveSelect(step) {
		listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);
		movePosition(step);
        var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);
        if(options.scroll) {
            var offset = 0;
            listItems.slice(0, active).each(function() {
				offset += this.offsetHeight;
			});
            if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {
                list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());
            } else if(offset < list.scrollTop()) {
                list.scrollTop(offset);
            }
        }
	};
	
	function movePosition(step) {
		active += step;
		if (active < 0) {
			active = listItems.size() - 1;
		} else if (active >= listItems.size()) {
			active = 0;
		}
	}
	
	function limitNumberOfItems(available) {
		return options.max && options.max < available
			? options.max
			: available;
	}
	
	function fillList() {
		list.empty();
		var max = limitNumberOfItems(data.length);
		for (var i=0; i < max; i++) {
			if (!data[i])
				continue;
			var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);
			if ( formatted === false )
				continue;
			var li = $("<li/>").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0];
			$.data(li, "ac_data", data[i]);
		}
		listItems = list.find("li");
		if ( options.selectFirst ) {
			listItems.slice(0, 1).addClass(CLASSES.ACTIVE);
			active = 0;
		}
		// apply bgiframe if available
		if ( $.fn.bgiframe )
			list.bgiframe();
	}
	
	return {
		display: function(d, q) {
			init();
			data = d;
			term = q;
			fillList();
		},
		next: function() {
			moveSelect(1);
		},
		prev: function() {
			moveSelect(-1);
		},
		pageUp: function() {
			if (active != 0 && active - 8 < 0) {
				moveSelect( -active );
			} else {
				moveSelect(-8);
			}
		},
		pageDown: function() {
			if (active != listItems.size() - 1 && active + 8 > listItems.size()) {
				moveSelect( listItems.size() - 1 - active );
			} else {
				moveSelect(8);
			}
		},
		hide: function() {
			element && element.hide();
			listItems && listItems.removeClass(CLASSES.ACTIVE);
			active = -1;
		},
		visible : function() {
			return element && element.is(":visible");
		},
		current: function() {
			return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);
		},
		show: function() {
			var offset = $(input).offset();
			element.css({
				width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).width(),
				top: offset.top + input.offsetHeight,
				left: offset.left
			}).show();
            if(options.scroll) {
                list.scrollTop(0);
                list.css({
					maxHeight: options.scrollHeight,
					overflow: 'auto'
				});
				
                if($.browser.msie && typeof document.body.style.maxHeight === "undefined") {
					var listHeight = 0;
					listItems.each(function() {
						listHeight += this.offsetHeight;
					});
					var scrollbarsVisible = listHeight > options.scrollHeight;
                    list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );
					if (!scrollbarsVisible) {
						// IE doesn't recalculate width when scrollbar disappears
						listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) );
					}
                }
                
            }
		},
		selected: function() {
			var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);
			return selected && selected.length && $.data(selected[0], "ac_data");
		},
		emptyList: function (){
			list && list.empty();
		},
		unbind: function() {
			element && element.remove();
		}
	};
};

$.fn.selection = function(start, end) {
	if (start !== undefined) {
		return this.each(function() {
			if( this.createTextRange ){
				var selRange = this.createTextRange();
				if (end === undefined || start == end) {
					selRange.move("character", start);
					selRange.select();
				} else {
					selRange.collapse(true);
					selRange.moveStart("character", start);
					selRange.moveEnd("character", end);
					selRange.select();
				}
			} else if( this.setSelectionRange ){
				this.setSelectionRange(start, end);
			} else if( this.selectionStart ){
				this.selectionStart = start;
				this.selectionEnd = end;
			}
		});
	}
	var field = this[0];
	if ( field.createTextRange ) {
		var range = document.selection.createRange(),
			orig = field.value,
			teststring = "<->",
			textLength = range.text.length;
		range.text = teststring;
		var caretAt = field.value.indexOf(teststring);
		field.value = orig;
		this.selection(caretAt, caretAt + textLength);
		return {
			start: caretAt,
			end: caretAt + textLength
		}
	} else if( field.selectionStart !== undefined ){
		return {
			start: field.selectionStart,
			end: field.selectionEnd
		}
	}
};

})(jQuery);

var fufsharebarUrl = window.location;
var fufsharebarTitle = document.title;
var fufexistingHeight = $(document).height();var fufrequiredHeight = fufexistingHeight+46;
$("body").append('<div id="fufWrapper" style="position:absolute;top:0;left:0;height:'+fufrequiredHeight+'px;width:1px;z-index:-9999;"></div><div id="fufSearchBox"><div id="fufInnerContainer"><form id="fufSearchWidget" name="fufSearchWidget" method="post" action="http://www.findusfast.ca/processor.php" target="_blank"><fieldset><a href="http://www.findusfast.com" id="logo" target="_blank"><img src="http://www.findusfast.ca/widgets/images/main-logo.png" width="132" height="34" alt="FindusFast.com Your Neighbourhood Directory" /></a><input type="text" id="fufPostalCode" name="PostalCode" autocomplete="off" value="" class="fufpostal" /><input type="text" id="fufSearchPhrase" name="Category" autocomplete="off" value="" class="fufcategory" /><input type="hidden" id="fufSearchID" name="IconCategory[1]" value="" /><input type="submit" id="fufSubmitSearch" name="fufSubmitSearch" value="Find" /></fieldset></form><img src="http://www.findusfast.ca/widgets/images/blockads.png" class="fufBlockAd" width="963" height="109" border="0" usemap="#fufMagicMap" /><map name="fufMagicMap" id="fufMagicMap"><area shape="rect" coords="0,-2,322,116" href="http://www.findmoviesfast.ca" target="_blank" /><area shape="rect" coords="322,-2,642,118" href="http://www.findusfast.ca" target="_blank" /><area shape="rect" coords="642,1,966,108" href="javascript:return false;" /></map><span id="shareBarLabel">Share our site with your friends:</span><div id="shareBarLeftsideSocial"><a href="http://www.facebook.com/sharer.php?u=' + fufsharebarUrl + '&t=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/facebook.png" /></a><a href="http://twitthis.com/twit?url=' + fufsharebarUrl + '" target="_blank"><img src="https://www.sharebars.com/download/images/twitter.png" /></a><a href="http://del.icio.us/post?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/delicious.png" /></a><a href="http://digg.com/submit?phase=2&url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/digg.png" /></a><a href="http://www.stumbleupon.com/submit?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/stumble.png" /></a><a href="http://www.linkedin.com/shareArticle?mini=true&url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/linkedin.png" /></a><a href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&u=' + fufsharebarUrl + '&t=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/myspace.png" /></a><a href="http://www.google.com/bookmarks/mark?op=edit&bkmk=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/google.png" /></a><a href="http://buzz.yahoo.com/submit/?submitUrl=' + fufsharebarUrl + '&submitHeadline=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/buzz.png" /></a><a class="newsvine" href="http://www.newsvine.com/_tools/seed&save?u=' + fufsharebarUrl + '&h=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/newsvine.png" /></a><a href="http://www.reddit.com/submit?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/reddit.png" /></a><a href="http://technorati.com/faves?add=' + fufsharebarUrl + '" target="_blank"><img src="https://www.sharebars.com/download/images/technorati.png" /></a><a href="http://scriptandstyle.com/submit?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/script-and-style.png" /></a><a href="http://secure.diigo.com/post?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/diigo.png" /></a><a href="http://www.mixx.com/submit?page_url=' + fufsharebarUrl + '" target="_blank"><img src="https://www.sharebars.com/download/images/mixx.png" /></a><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=' + fufsharebarUrl + '&Title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/blinklist.png" /></a><a href="http://www.designfloat.com/submit.php?url=' + fufsharebarUrl + '&title=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/designfloat.png" /></a><a href="http://www.mister-wong.com/addurl/?bm_url=' + fufsharebarUrl + '&bm_description=' + fufsharebarTitle + '" target="_blank"><img src="https://www.sharebars.com/download/images/misterwong.png" /></a><a href="http://tipd.com/submit.php?url=' + fufsharebarUrl + '" target="_blank"><img src="https://www.sharebars.com/download/images/tipd.png" /></a></div></div></div>');

var fufcities = [{ postalCode: "H7Y 2J7", cityName: "&Icirc;les-Laval, QC" }, { postalCode: "V0K 2E0", cityName: "100 Mile House, BC" }, { postalCode: "V0K 2Z0", cityName: "108 Mile Ranch, BC" }, { postalCode: "V0K 2G0", cityName: "150 Mile House, BC" }, { postalCode: "V0K 2K0", cityName: "70 Mile House, BC" }, { postalCode: "S0N 0A0", cityName: "Abbey, SK" }, { postalCode: "V3G 0A1", cityName: "Abbotsford East, BC" }, { postalCode: "V2S 1A1", cityName: "Abbotsford Southeast, BC" }, { postalCode: "V2T 1A1", cityName: "Abbotsford Southwest, BC" }, { postalCode: "V4X 1A1", cityName: "Abbotsford West, BC" }, { postalCode: "T0A 0A0", cityName: "Abee, AB" }, { postalCode: "J0E 1B0", cityName: "Abercorn, QC" }, { postalCode: "S0K 0A0", cityName: "Aberdeen, SK" }, { postalCode: "S0A 0A0", cityName: "Abernethy, SK" }, { postalCode: "J0Y 1C0", cityName: "Abitibi- T&eacute;miscamingue- Est (Radisson), QC" }, { postalCode: "J0Z 1A0", cityName: "Abitibi- T&eacute;miscamingue- Ouest (Guigues), QC" }, { postalCode: "T0J 0A0", cityName: "Acadia Valley, AB" }, { postalCode: "E4Y 1R3", cityName: "Acadie Siding, NB" }, { postalCode: "E4Y 0B3", cityName: "Acadieville, NB" }, { postalCode: "T7X 5A1", cityName: "Acheson, AB" }, { postalCode: "T0M 0A0", cityName: "Acme, AB" }, { postalCode: "L7J 3B4", cityName: "Acton, ON" }, { postalCode: "E8B 1Y8", cityName: "Adams Gulch, NB" }, { postalCode: "E4T 0A2", cityName: "Adamsville, NB" }, { postalCode: "T0K 0A0", cityName: "Aden, AB" }, { postalCode: "S0N 0B0", cityName: "Admiral, SK" }, { postalCode: "G0N 1S0", cityName: "Adstock, QC" }, { postalCode: "T0K 1Y0", cityName: "Aetna, AB" }, { postalCode: "A0N 1A0", cityName: "Aguathuna, NL" }, { postalCode: "H2C 3L2", cityName: "Ahuntsic Central, QC" }, { postalCode: "H2M 2W8", cityName: "Ahuntsic East, QC" }, { postalCode: "H2B 3C8", cityName: "Ahuntsic North, QC" }, { postalCode: "H2N 2K4", cityName: "Ahuntsic Southeast, QC" }, { postalCode: "H3L 3V9", cityName: "Ahuntsic Southwest, QC" }, { postalCode: "V0G 1A0", cityName: "Ainsworth Hot Springs, BC" }, { postalCode: "S0J 3G0", cityName: "Air Ronge, SK" }, { postalCode: "T4A 0A4", cityName: "Airdrie East, AB" }, { postalCode: "T4B 0A1", cityName: "Airdrie West, AB" }, { postalCode: "L1Z 2C9", cityName: "Ajax East, ON" }, { postalCode: "L1T 5A3", cityName: "Ajax Northwest, ON" }, { postalCode: "L1S 7P8", cityName: "Ajax Southwest, ON" }, { postalCode: "X0E 0A0", cityName: "Aklavik, NT" }, { postalCode: "J0M 1V0", cityName: "Akulivik, QC" }, { postalCode: "K6H 5R7", cityName: "Akwesasne, ON" }, { postalCode: "H0M 1A0", cityName: "Akwesasne Region (Akwesasne), QC" }, { postalCode: "S0C 0A0", cityName: "Alameda, SK" }, { postalCode: "G8M 0A1", cityName: "Albanel, QC" }, { postalCode: "B1K 2J3", cityName: "Albert Bridge, NS" }, { postalCode: "E4H 0B2", cityName: "Albert Mines, NB" }, { postalCode: "T0E 0A0", cityName: "Alberta Beach, AB" }, { postalCode: "C0B 1B0", cityName: "Alberton, PEI" }, { postalCode: "G0J 1A0", cityName: "Albertville, QC" }, { postalCode: "S0J 0A0", cityName: "Albertville, SK" }, { postalCode: "E4B 1A3", cityName: "Albrights Corner, NB" }, { postalCode: "E8J 0A3", cityName: "Alcida, NB" }, { postalCode: "T0G 0A0", cityName: "Alcomdale, AB" }, { postalCode: "J0X 1A0", cityName: "Alcove, QC" }, { postalCode: "T0C 0A0", cityName: "Alder Flats, AB" }, { postalCode: "B1Y 2N8", cityName: "Alder Point, NS" }, { postalCode: "B1Y 1A1", cityName: "Alder Point, NS" }, { postalCode: "V2Z 1J5", cityName: "Aldergrove, BC" }, { postalCode: "V4W 0A4", cityName: "Aldergrove, BC" }, { postalCode: "T0L 0A0", cityName: "Aldersyde, AB" }, { postalCode: "E1X 2K8", cityName: "Alderwood, NB" }, { postalCode: "E4W 0A9", cityName: "Aldouane, NB" }, { postalCode: "R0K 0A0", cityName: "Alexander, MB" }, { postalCode: "K0C 1A0", cityName: "Alexandria, ON" }, { postalCode: "V0L 1A0", cityName: "Alexis Creek, BC" }, { postalCode: "K0B 1A0", cityName: "Alfred, ON" }, { postalCode: "P0R 1A0", cityName: "Algoma Southwest (Blind River), ON" }, { postalCode: "P0M 1A0", cityName: "Algoma, Sudbury District and Greater Sudbury (Chelmsford), ON" }, { postalCode: "T0M 0C0", cityName: "Alhambra, AB" }, { postalCode: "S0C 0B0", cityName: "Alida, SK" }, { postalCode: "T0C 0B0", cityName: "Alix, AB" }, { postalCode: "V0L 1B0", cityName: "Alkali Lake, BC" }, { postalCode: "E9G 2V2", cityName: "Allainville, NB" }, { postalCode: "S0K 0C0", cityName: "Allan, SK" }, { postalCode: "E8L 1A5", cityName: "Allardville, NB" }, { postalCode: "N0H 1A0", cityName: "Allenford, ON" }, { postalCode: "T0B 0A0", cityName: "Alliance, AB" }, { postalCode: "E1G 0L9", cityName: "Allison, NB" }, { postalCode: "L9R 2H6", cityName: "Alliston, ON" }, { postalCode: "E4H 0A3", cityName: "Alma, NB" }, { postalCode: "G8E 0A1", cityName: "Alma North, QC" }, { postalCode: "G8B 7W7", cityName: "Alma Southeast, QC" }, { postalCode: "G8C 1R7", cityName: "Alma Southwest, QC" }, { postalCode: "K0A 1A0", cityName: "Almonte, ON" }, { postalCode: "R0H 0A0", cityName: "Alonsa, MB" }, { postalCode: "T0C 0C0", cityName: "Alsike, AB" }, { postalCode: "R0G 0A0", cityName: "Altamont, MB" }, { postalCode: "S0M 0A0", cityName: "Alticane, SK" }, { postalCode: "L7K 0C2", cityName: "Alton, ON" }, { postalCode: "R0G 0B0", cityName: "Altona, MB" }, { postalCode: "V0C 2T0", cityName: "Altona, BC" }, { postalCode: "S0K 0E0", cityName: "Alvena, SK" }, { postalCode: "R0H 0B0", cityName: "Amaranth, MB" }, { postalCode: "B4H 1A3", cityName: "Amherst, NS" }, { postalCode: "J0T 2L0", cityName: "Amherst, QC" }, { postalCode: "N9V 3R8", cityName: "Amherstburg, ON" }, { postalCode: "K7N 0A1", cityName: "Amherstview, ON" }, { postalCode: "K7M 4X7", cityName: "Amherstview, ON" }, { postalCode: "K7N 0A1", cityName: "Amherstview, ON" }, { postalCode: "T0B 0B0", cityName: "Amisk, AB" }, { postalCode: "E1G 3N3", cityName: "Ammon, NB" }, { postalCode: "J9T 4K4", cityName: "Amos, QC" }, { postalCode: "G5J 3S9", cityName: "Amqui, QC" }, { postalCode: "E4Z 0B7", cityName: "Anagance, NB" }, { postalCode: "V0L 1C0", cityName: "Anahim Lake, BC" }, { postalCode: "L9H 5E1", cityName: "Ancaster, ON" }, { postalCode: "L9K 1P6", cityName: "Ancaster East, ON" }, { postalCode: "L9G 5C4", cityName: "Ancaster West, ON" }, { postalCode: "E7G 4B9", cityName: "Anderson Road, NB" }, { postalCode: "E4L 1Z1", cityName: "Anderson Settlement, NB" }, { postalCode: "E5A 1C1", cityName: "Andersonville, NB" }, { postalCode: "S0N 0C0", cityName: "Aneroid, SK" }, { postalCode: "E7G 1A4", cityName: "Anfield, NB" }, { postalCode: "J0E 1E0", cityName: "Ange-Gardien, QC" }, { postalCode: "P0V 1B0", cityName: "Angling Lake, ON" }, { postalCode: "L0M 1B0", cityName: "Angus, ON" }, { postalCode: "R0J 0A0", cityName: "Angusville, MB" }, { postalCode: "H1E 1P3", cityName: "Anjou, QC" }, { postalCode: "H1K 5J8", cityName: "Anjou East, QC" }, { postalCode: "H1J 3C6", cityName: "Anjou West, QC" }, { postalCode: "V3H 0A3", cityName: "Anmore, BC" }, { postalCode: "S0K 0G0", cityName: "Annaheim, SK" }, { postalCode: "B0S 1A0", cityName: "Annapolis Royal, NS" }, { postalCode: "R0E 0A0", cityName: "Anola, MB" }, { postalCode: "E8N 2B6", cityName: "Anse-Bleue, NB" }, { postalCode: "B2G 1A1", cityName: "Antigonish, NS" }, { postalCode: "S0C 0E0", cityName: "Antler, SK" }, { postalCode: "T0P 1J0", cityName: "Anzac, AB" }, { postalCode: "E5P 1R6", cityName: "Apohaqui, NB" }, { postalCode: "E5P 0A5", cityName: "Apohaqui, NB" }, { postalCode: "G0R 1A0", cityName: "Appalaches (La Pocati&egrave;re), QC" }, { postalCode: "K0C 1B0", cityName: "Apple Hill, ON" }, { postalCode: "K0L 1A0", cityName: "Apsley, ON" }, { postalCode: "E9B 0A5", cityName: "Arbeau Settlement, NB" }, { postalCode: "R0C 0A0", cityName: "Arborg, MB" }, { postalCode: "B0W 1B0", cityName: "Arcadia, NS" }, { postalCode: "S0E 0B0", cityName: "Archerwill, SK" }, { postalCode: "S0C 0G0", cityName: "Arcola, SK" }, { postalCode: "X0A 0A0", cityName: "Arctic Bay, NU" }, { postalCode: "S0L 0B0", cityName: "Ardath, SK" }, { postalCode: "K0H 1B0", cityName: "Arden, ON" }, { postalCode: "R0J 0B0", cityName: "Arden, MB" }, { postalCode: "S0H 0A0", cityName: "Ardill, SK" }, { postalCode: "T0A 0B0", cityName: "Ardmore, AB" }, { postalCode: "K0H 1C0", cityName: "Ardoch, ON" }, { postalCode: "T8E 1J3", cityName: "Ardrossan, AB" }, { postalCode: "T8G 0A3", cityName: "Ardrossan, AB" }, { postalCode: "S0K 0H0", cityName: "Arelee, SK" }, { postalCode: "V0G 1B0", cityName: "Argenta, BC" }, { postalCode: "R0C 0B0", cityName: "Argyle, MB" }, { postalCode: "B0E 1A0", cityName: "Arichat, NS" }, { postalCode: "N0B 1B0", cityName: "Ariss, ON" }, { postalCode: "N0B 1C0", cityName: "Arkell, ON" }, { postalCode: "N0M 1B0", cityName: "Arkona, ON" }, { postalCode: "T0B 0G0", cityName: "Armena, AB" }, { postalCode: "E7L 4R4", cityName: "Armond, NB" }, { postalCode: "V0E 1B0", cityName: "Armstrong, BC" }, { postalCode: "R0A 0B0", cityName: "Arnaud, MB" }, { postalCode: "R0C 0C0", cityName: "Arnes, MB" }, { postalCode: "K7S 1A1", cityName: "Arnprior, ON" }, { postalCode: "J0Z 1B0", cityName: "Arntfield, QC" }, { postalCode: "P0T 1B0", cityName: "Aroland, ON" }, { postalCode: "E7H 0A2", cityName: "Aroostook, NB" }, { postalCode: "E7H 1B2", cityName: "Aroostook Junction, NB" }, { postalCode: "V0C 1B0", cityName: "ARRAS, BC" }, { postalCode: "R0M 2H0", cityName: "Arrow River, MB" }, { postalCode: "T0L 0B0", cityName: "Arrowwood, AB" }, { postalCode: "N0G 1A0", cityName: "Arthur, ON" }, { postalCode: "E7H 1J1", cityName: "Arthurette, NB" }, { postalCode: "J0T 1A0", cityName: "Arundel, QC" }, { postalCode: "N0M 1C0", cityName: "Arva, ON" }, { postalCode: "X0C 0E0", cityName: "Arviat, NU" }, { postalCode: "J1T 4X4", cityName: "Asbestos, QC" }, { postalCode: "J0B 1A0", cityName: "Ascot Corner, QC" }, { postalCode: "R0C 0E0", cityName: "Ashern, MB" }, { postalCode: "E7P 1S3", cityName: "Ashland, NB" }, { postalCode: "T0A 0C0", cityName: "Ashmont, AB" }, { postalCode: "R0L 0A0", cityName: "Ashville, MB" }, { postalCode: "B9A 1V5", cityName: "Askilton, NS" }, { postalCode: "B0H 1E0", cityName: "Aspen, NS" }, { postalCode: "S0K 0J0", cityName: "Asquith, SK" }, { postalCode: "S0H 0B0", cityName: "Assiniboia, SK" }, { postalCode: "E6A 1N2", cityName: "Astle, NB" }, { postalCode: "P0H 1B0", cityName: "Astorville, ON" }, { postalCode: "K0K 1B0", cityName: "Astra, ON" }, { postalCode: "T9S 1B7", cityName: "Athabasca, AB" }, { postalCode: "V0A 1A0", cityName: "Athalmer, BC" }, { postalCode: "K0E 1B0", cityName: "Athens, ON" }, { postalCode: "E3N 0A7", cityName: "Atholville, NB" }, { postalCode: "T0G 0C0", cityName: "Atikameg, AB" }, { postalCode: "P0T 1C0", cityName: "Atikokan, ON" }, { postalCode: "V0W 1A0", cityName: "Atlin Region (Atlin), BC" }, { postalCode: "T0A 0E0", cityName: "Atmore, AB" }, { postalCode: "S0A 0C0", cityName: "Atwater, SK" }, { postalCode: "G5Y 5B7", cityName: "Aubert-Gallion, QC" }, { postalCode: "R0G 0C0", cityName: "Aubigny, MB" }, { postalCode: "N0M 1E0", cityName: "Auburn, ON" }, { postalCode: "B4V 3M1", cityName: "Auburndale, NS" }, { postalCode: "E4L 0A5", cityName: "Aulac, NB" }, { postalCode: "J0W 1W0", cityName: "Aumond, QC" }, { postalCode: "J0M 1X0", cityName: "Aupaluk, QC" }, { postalCode: "L4G 8A4", cityName: "Aurora, ON" }, { postalCode: "R0H 0C0", cityName: "Austin, MB" }, { postalCode: "H7J 1E8", cityName: "Auteuil Northeast, QC" }, { postalCode: "H7K 3V5", cityName: "Auteuil South, QC" }, { postalCode: "H7H 3E5", cityName: "Auteuil West, QC" }, { postalCode: "J0Z 1C0", cityName: "Authier, QC" }, { postalCode: "J0Z 1E0", cityName: "Authier-Nord, QC" }, { postalCode: "V0E 1C0", cityName: "Avola, BC" }, { postalCode: "A0A 1B0", cityName: "Avondale, NL" }, { postalCode: "E7K 0A1", cityName: "Avondale, NB" }, { postalCode: "S0G 0A0", cityName: "Avonhurst, SK" }, { postalCode: "K0C 1C0", cityName: "Avonmore, ON" }, { postalCode: "B0P 1B0", cityName: "Avonport, NS" }, { postalCode: "J0B 1C0", cityName: "Ayer\'s Cliff, QC" }, { postalCode: "S0G 0B0", cityName: "Aylesbury, SK" }, { postalCode: "B0P 1C0", cityName: "Aylesford, NS" }, { postalCode: "N5H 3J6", cityName: "Aylmer, ON" }, { postalCode: "J9J 2X8", cityName: "Aylmer North (Gatineau), QC" }, { postalCode: "J9H 7V5", cityName: "Aylmer South (Gatineau), QC" }, { postalCode: "S0E 0C0", cityName: "Aylsham, SK" }, { postalCode: "N0B 1E0", cityName: "Ayr, ON" }, { postalCode: "N0G 1C0", cityName: "Ayton, ON" }, { postalCode: "P0M 1B0", cityName: "Azilda, ON" }, { postalCode: "B0W 1C0", cityName: "Baccaro, NS" }, { postalCode: "E5C 1W9", cityName: "Back Bay, NB" }, { postalCode: "B0E 1B0", cityName: "Baddeck, NS" }, { postalCode: "N3A 4M3", cityName: "Baden, ON" }, { postalCode: "A0H 1A0", cityName: "Badger, NL" }, { postalCode: "A0G 1B0", cityName: "Badgers Quay, NL" }, { postalCode: "R0H 0E0", cityName: "Bagot, MB" }, { postalCode: "E4S 4L9", cityName: "Baie de Bouctouche, NB" }, { postalCode: "E8S 2Y6", cityName: "Baie de Petit-Pokemouche, NB" }, { postalCode: "A0K 1B0", cityName: "Baie Verte, NL" }, { postalCode: "E4M 0A7", cityName: "Baie Verte, NB" }, { postalCode: "G4Z 2X9", cityName: "Baie-Comeau Northeast, QC" }, { postalCode: "G5C 3W6", cityName: "Baie-Comeau Southwest, QC" }, { postalCode: "H9X 0A2", cityName: "Baie-d\'Urfe, QC" }, { postalCode: "G0J 1C0", cityName: "Baie-des-Sables, QC" }, { postalCode: "J0G 1A0", cityName: "Baie-du-Febvre, QC" }, { postalCode: "G0G 1B0", cityName: "Baie-Johan-Beetz, QC" }, { postalCode: "G3Z 3H3", cityName: "Baie-Saint-Paul, QC" }, { postalCode: "E9A 0A1", cityName: "Baie-Sainte-Anne, NB" }, { postalCode: "E9A 0A3", cityName: "Baie-Sainte-Anne, NB" }, { postalCode: "G0T 1A0", cityName: "Baie-Sainte-Catherine, QC" }, { postalCode: "K0L 1B0", cityName: "Bailieboro, ON" }, { postalCode: "E5A 1G2", cityName: "Baillie, NB" }, { postalCode: "A0E 1A0", cityName: "Baine Harbour, NL" }, { postalCode: "E5R 0A3", cityName: "Bains Corner, NB" }, { postalCode: "K0C 1E0", cityName: "Bainsville, ON" }, { postalCode: "E7H 1T1", cityName: "Bairdsville, NB" }, { postalCode: "E7A 1A1", cityName: "Baker Brook, NB" }, { postalCode: "E7A 0A1", cityName: "Baker Brook, NB" }, { postalCode: "X0C 0A0", cityName: "Baker Lake, NU" }, { postalCode: "B4V 7E3", cityName: "Baker Settlement, NS" }, { postalCode: "S0G 0C0", cityName: "Balcarres, SK" }, { postalCode: "B3V 1K9", cityName: "Bald Rock, NS" }, { postalCode: "K0G 1A0", cityName: "Balderson, ON" }, { postalCode: "S0M 0B0", cityName: "Baldwinton, SK" }, { postalCode: "S0G 0E0", cityName: "Balgonie, SK" }, { postalCode: "E4W 3S9", cityName: "Balla Philip, NB" }, { postalCode: "N0B 1H0", cityName: "Ballinafad, ON" }, { postalCode: "B2A 4K6", cityName: "Balls Creek, NS" }, { postalCode: "P0V 1C0", cityName: "Balmertown, ON" }, { postalCode: "E8E 1A6", cityName: "Balmoral, NB" }, { postalCode: "R0C 0H0", cityName: "Balmoral, MB" }, { postalCode: "E8E 1K2", cityName: "Balmoral Est, NB" }, { postalCode: "E8E 1K4", cityName: "Balmoral Sud, NB" }, { postalCode: "E4H 1T9", cityName: "Baltimore, NB" }, { postalCode: "K0K 1C0", cityName: "Baltimore, ON" }, { postalCode: "T0M 0E0", cityName: "Balzac, AB" }, { postalCode: "V0R 1B0", cityName: "Bamfield, BC" }, { postalCode: "K0L 1C0", cityName: "Bancroft, ON" }, { postalCode: "T1L 1A1", cityName: "Banff, AB" }, { postalCode: "S0A 0E0", cityName: "Bangor, SK" }, { postalCode: "S0A 0G0", cityName: "Bankend, SK" }, { postalCode: "E7L 3S2", cityName: "Bannon, NB" }, { postalCode: "A0N 1B0", cityName: "Barachois Brook, NL" }, { postalCode: "V0K 1B0", cityName: "Barkerville, BC" }, { postalCode: "J0T 1A0", cityName: "Barkmere, QC" }, { postalCode: "E1N 6E2", cityName: "Barnaby, NB" }, { postalCode: "E9B 0B1", cityName: "Barnettville, NB" }, { postalCode: "B0K 1A0", cityName: "Barneys River Station, NS" }, { postalCode: "T0L 0G0", cityName: "Barons, AB" }, { postalCode: "E6G 1R2", cityName: "Barony, NB" }, { postalCode: "B2S 3B7", cityName: "Barr Settlement, NS" }, { postalCode: "B2C 1C5", cityName: "Barra Glen, NS" }, { postalCode: "B1Y 3M8", cityName: "Barrachois, NS" }, { postalCode: "J0Y 1A0", cityName: "Barraute, QC" }, { postalCode: "T7N 1G8", cityName: "Barrhead, AB" }, { postalCode: "L4M 6J9", cityName: "Barrie North, ON" }, { postalCode: "L4N 9R2", cityName: "Barrie South, ON" }, { postalCode: "V0E 1E0", cityName: "Barriere, BC" }, { postalCode: "B0W 1E0", cityName: "Barrington, NS" }, { postalCode: "B0W 1G0", cityName: "Barrington Passage, NS" }, { postalCode: "R0L 0B0", cityName: "Barrows, MB" }, { postalCode: "K0J 1B0", cityName: "Barrys Bay, ON" }, { postalCode: "E9G 2M2", cityName: "Barryville, NB" }, { postalCode: "E3L 5S7", cityName: "Barter Settlement, NB" }, { postalCode: "S0M 0C0", cityName: "Barthel, SK" }, { postalCode: "E9B 1K1", cityName: "Bartholomew, NB" }, { postalCode: "E1V 0C4", cityName: "Bartibog, NB" }, { postalCode: "E1V 7H2", cityName: "Bartibog Bridge, NB" }, { postalCode: "A0K 1C0", cityName: "Bartletts Harbour, NL" }, { postalCode: "E5B 2Y7", cityName: "Bartletts Mills, NB" }, { postalCode: "B0W 1H0", cityName: "Barton, NS" }, { postalCode: "E1W 1M6", cityName: "Bas-Caraquet, NB" }, { postalCode: "E8R 1E5", cityName: "Bas-Paquetville, NB" }, { postalCode: "G0K 1A0", cityName: "Bas-St-Laurent- Est (Sainte-Luce), QC" }, { postalCode: "G0L 1A0", cityName: "Bas-St-Laurent- Ouest (Trois-Pistoles), QC" }, { postalCode: "T0B 0H0", cityName: "Bashaw, AB" }, { postalCode: "E4T 2A3", cityName: "Bass River, NB" }, { postalCode: "B0M 1B0", cityName: "Bass River, NS" }, { postalCode: "E4T 0A5", cityName: "Bass River, NB" }, { postalCode: "T0J 0B0", cityName: "Bassano, AB" }, { postalCode: "E3L 4Y9", cityName: "Basswood Ridge, NB" }, { postalCode: "K0K 1E0", cityName: "Batawa, ON" }, { postalCode: "S0H 0E0", cityName: "Bateman, SK" }, { postalCode: "B1C 1V6", cityName: "Bateston, NS" }, { postalCode: "E7J 1A2", cityName: "Bath, NB" }, { postalCode: "K0H 1G0", cityName: "Bath, ON" }, { postalCode: "E2A 0A2", cityName: "Bathurst, NB" }, { postalCode: "E4A 0A1", cityName: "Bathurst, NB" }, { postalCode: "E8K 0B2", cityName: "Bathurst, NB" }, { postalCode: "K0H 1H0", cityName: "Battersea, ON" }, { postalCode: "S0M 0E0", cityName: "Battleford, SK" }, { postalCode: "A1K 1E7", cityName: "Bauline, NL" }, { postalCode: "T0B 0J0", cityName: "Bawlf, AB" }, { postalCode: "E2S 0A8", cityName: "Baxters Corner, NB" }, { postalCode: "A0A 1C0", cityName: "Bay Bulls, NL" }, { postalCode: "A0A 1E0", cityName: "Bay de Verde, NL" }, { postalCode: "E1N 0A4", cityName: "Bay du Vin, NB" }, { postalCode: "A0E 1B0", cityName: "Bay l\'Argent, NL" }, { postalCode: "A0A 1G0", cityName: "Bay Roberts, NL" }, { postalCode: "T0H 0A0", cityName: "Bay Tree, AB" }, { postalCode: "E5R 1J7", cityName: "Bay View, NB" }, { postalCode: "E4M 1R8", cityName: "Bayfield, NB" }, { postalCode: "E4M 1A1", cityName: "Bayfield, NB" }, { postalCode: "N0M 1G0", cityName: "Bayfield, ON" }, { postalCode: "B3Z 0H3", cityName: "Bayside, NS" }, { postalCode: "E5B 0A1", cityName: "Bayside, NB" }, { postalCode: "E5S 0A3", cityName: "Bayswater, NB" }, { postalCode: "A0G 2J0", cityName: "Baytona, NL" }, { postalCode: "K0J 1C0", cityName: "Beachburg, ON" }, { postalCode: "A0J 1T0", cityName: "Beachside, NL" }, { postalCode: "R0E 0B0", cityName: "Beaconia, MB" }, { postalCode: "H9W 6C3", cityName: "Beaconsfield, QC" }, { postalCode: "E7H 1E2", cityName: "Beaconsfield, NB" }, { postalCode: "L0R 1B0", cityName: "Beamsville, ON" }, { postalCode: "T0H 0B0", cityName: "Bear Canyon, AB" }, { postalCode: "B3V 1J8", cityName: "Bear Cove, NS" }, { postalCode: "E6L 1G9", cityName: "Bear Island, NB" }, { postalCode: "P0H 1C0", cityName: "Bear Island, ON" }, { postalCode: "V0J 3G0", cityName: "Bear Lake, BC" }, { postalCode: "B0S 1B0", cityName: "Bear River, NS" }, { postalCode: "P0T 1G0", cityName: "Beardmore, ON" }, { postalCode: "E7M 1W1", cityName: "Beardsley, NB" }, { postalCode: "J0Z 1G0", cityName: "Bearn, QC" }, { postalCode: "P0V 1E0", cityName: "Bearskin Lake, ON" }, { postalCode: "S0C 0H0", cityName: "Beaubier, SK" }, { postalCode: "J0Z 1H0", cityName: "Beaucanton, QC" }, { postalCode: "G5X 3T1", cityName: "Beauceville, QC" }, { postalCode: "J6N 3N7", cityName: "Beauharnois, QC" }, { postalCode: "J6N 0A2", cityName: "Beauharnois, QC" }, { postalCode: "G0Y 1B0", cityName: "Beaulac-Garthby, QC" }, { postalCode: "P0B 1B0", cityName: "Beaumaris, ON" }, { postalCode: "T4X 0A1", cityName: "Beaumont, AB" }, { postalCode: "A0J 1A0", cityName: "Beaumont, NL" }, { postalCode: "G0R 1C0", cityName: "Beaumont, QC" }, { postalCode: "G1C 8K9", cityName: "Beauport Central, QC" }, { postalCode: "G1B 3W9", cityName: "Beauport North, QC" }, { postalCode: "G1E 7J6", cityName: "Beauport South, QC" }, { postalCode: "G0A 1E0", cityName: "Beaupre, QC" }, { postalCode: "S0M 0G0", cityName: "Beauval, SK" }, { postalCode: "T0B 0K0", cityName: "Beauvallon, AB" }, { postalCode: "B4E 0A2", cityName: "Beaver Bank, NS" }, { postalCode: "B1T 1N5", cityName: "Beaver Cove, NS" }, { postalCode: "S7K 1P5", cityName: "Beaver Creek, SK" }, { postalCode: "Y0B 1A0", cityName: "Beaver Creek, YT" }, { postalCode: "E3B 0B7", cityName: "Beaver Dam, NB" }, { postalCode: "E5H 0A1", cityName: "Beaver Harbour, NB" }, { postalCode: "E1V 4R5", cityName: "Beaverbrook, NB" }, { postalCode: "E4H 2H7", cityName: "Beaverbrook Albert Co, NB" }, { postalCode: "T0H 0C0", cityName: "Beaverlodge, AB" }, { postalCode: "L0K 1A0", cityName: "Beaverton, ON" }, { postalCode: "G9H 4Y6", cityName: "Becancour, QC" }, { postalCode: "E7K 1C7", cityName: "Beckim Settlement, NB" }, { postalCode: "E7M 0A8", cityName: "Bedell, NB" }, { postalCode: "C0B 1C0", cityName: "Bedeque, PEI" }, { postalCode: "B4B 0G4", cityName: "Bedford, NS" }, { postalCode: "J0J 1A0", cityName: "Bedford, QC" }, { postalCode: "B4B 0A1", cityName: "Bedford Northwest, NS" }, { postalCode: "B4A 1A1", cityName: "Bedford Southeast, NS" }, { postalCode: "B2A 4C4", cityName: "Beechmont, NS" }, { postalCode: "B3T 0A1", cityName: "Beechville, NS" }, { postalCode: "E7J 1V3", cityName: "Beechwood, NB" }, { postalCode: "S0L 0C0", cityName: "Beechy, SK" }, { postalCode: "E4T 0A4", cityName: "Beersville, NB" }, { postalCode: "L0G 1A0", cityName: "Beeton, ON" }, { postalCode: "G0V 1B0", cityName: "Begin, QC" }, { postalCode: "X0E 0Y0", cityName: "Behchoko, NT" }, { postalCode: "T0M 0G0", cityName: "Beiseker, AB" }, { postalCode: "R0E 0E0", cityName: "Belair, MB" }, { postalCode: "V3H 4N4", cityName: "Belcarra, BC" }, { postalCode: "J0Y 2M0", cityName: "Belcourt, QC" }, { postalCode: "L7K 0E5", cityName: "Belfountain, ON" }, { postalCode: "N0G 1E0", cityName: "Belgrave, ON" }, { postalCode: "A0A 4H0", cityName: "Bell Island, NL" }, { postalCode: "A0A 1H0", cityName: "Bell Island Front, NL" }, { postalCode: "V0T 1Z0", cityName: "Bella Bella, BC" }, { postalCode: "V0T 1C0", cityName: "Bella Coola, BC" }, { postalCode: "A0K 1H0", cityName: "Bellburns, NL" }, { postalCode: "B0E 1C0", cityName: "Belle Cote, NS" }, { postalCode: "L0L 1C0", cityName: "Belle Ewart, ON" }, { postalCode: "S0G 0G0", cityName: "Belle Plaine, SK" }, { postalCode: "C0A 1B0", cityName: "Belle River, PEI" }, { postalCode: "C0A 1B0", cityName: "Belle River, PEI" }, { postalCode: "J0Z 1K0", cityName: "Bellecombe, QC" }, { postalCode: "E8G 0A2", cityName: "Belledune, NB" }, { postalCode: "E1V 4T2", cityName: "Bellefond, NB" }, { postalCode: "S0C 0J0", cityName: "Bellegarde, SK" }, { postalCode: "E5P 0A1", cityName: "Belleisle Creek, NB" }, { postalCode: "A0H 1B0", cityName: "Belleoram, NL" }, { postalCode: "J0Z 1L0", cityName: "Belleterre, QC" }, { postalCode: "R0M 0A0", cityName: "Belleview, MB" }, { postalCode: "E7M 0A1", cityName: "Belleville, NB" }, { postalCode: "K8R 1A1", cityName: "Belleville (SE Sidney Township / Avondale), ON" }, { postalCode: "K8N 1A1", cityName: "Belleville East, ON" }, { postalCode: "K8P 1A1", cityName: "Belleville West, ON" }, { postalCode: "A0B 1B0", cityName: "Bellevue, NL" }, { postalCode: "T0K 0C0", cityName: "Bellevue, AB" }, { postalCode: "T0A 0J0", cityName: "Bellis, AB" }, { postalCode: "B0W 1J0", cityName: "Belliveau Cove, NS" }, { postalCode: "B0M 1C0", cityName: "Belmont, NS" }, { postalCode: "N0L 1B0", cityName: "Belmont, ON" }, { postalCode: "R0K 0C0", cityName: "Belmont, MB" }, { postalCode: "B2S 0A6", cityName: "Belnan, NS" }, { postalCode: "J3G 0A1", cityName: "Beloeil, QC" }, { postalCode: "J3H 5T4", cityName: "Beloeil East, QC" }, { postalCode: "J3G 6V7", cityName: "Beloeil West, QC" }, { postalCode: "N0B 1J0", cityName: "Belwood, ON" }, { postalCode: "B1J 1N5", cityName: "Ben Eoin, NS" }, { postalCode: "B1T 1G2", cityName: "Benacadie, NS" }, { postalCode: "T0M 0H0", cityName: "Benalto, AB" }, { postalCode: "S0C 0K0", cityName: "Bengough, SK" }, { postalCode: "R0L 0C0", cityName: "Benito, MB" }, { postalCode: "E8G 1N9", cityName: "Benjamin River, NB" }, { postalCode: "E1X 0A3", cityName: "Benoit, NB" }, { postalCode: "A0L 1A0", cityName: "Benoits Cove, NL" }, { postalCode: "S0C 0L0", cityName: "Benson, SK" }, { postalCode: "T0C 0J0", cityName: "Bentley, AB" }, { postalCode: "A0G 1C0", cityName: "Benton, NL" }, { postalCode: "E7N 0A4", cityName: "Benton, NB" }, { postalCode: "R0B 0A0", cityName: "Berens River, MB" }, { postalCode: "E8K 1A3", cityName: "Beresford, NB" }, { postalCode: "N0H 1C0", cityName: "Berkeley, ON" }, { postalCode: "J0Y 2G0", cityName: "Berry, QC" }, { postalCode: "E1G 0E2", cityName: "Berry Mills, NB" }, { postalCode: "E1J 1A8", cityName: "Berryton, NB" }, { postalCode: "G0R 1E0", cityName: "Berthier-sur-Mer, QC" }, { postalCode: "E1W 0A5", cityName: "Bertrand, NB" }, { postalCode: "B0P 1E0", cityName: "Berwick, NS" }, { postalCode: "E5P 0A3", cityName: "Berwick, NB" }, { postalCode: "R0J 0E0", cityName: "Bethany, MB" }, { postalCode: "E5C 0A6", cityName: "Bethel, NB" }, { postalCode: "S0G 0H0", cityName: "Bethune, SK" }, { postalCode: "G0H 1B0", cityName: "Betsiamites, QC" }, { postalCode: "E9C 1K6", cityName: "Bettsburg, NB" }, { postalCode: "R0M 0B0", cityName: "Beulah, MB" }, { postalCode: "K0L 1E0", cityName: "Bewdley, ON" }, { postalCode: "T0H 0G0", cityName: "Bezanson, AB" }, { postalCode: "A0K 1J0", cityName: "Bide Arm, NL" }, { postalCode: "G0K 1T0", cityName: "Biencourt, QC" }, { postalCode: "S0C 0M0", cityName: "Bienfait, SK" }, { postalCode: "B1T 1B8", cityName: "Big Beach, NS" }, { postalCode: "S0H 0G0", cityName: "Big Beaver, SK" }, { postalCode: "B1X 1B8", cityName: "Big Bras d\'Or, NS" }, { postalCode: "E9E 1L9", cityName: "Big Hole, NB" }, { postalCode: "B3Z 3T8", cityName: "Big Lake, NS" }, { postalCode: "V0L 1G0", cityName: "Big Lake Ranch, BC" }, { postalCode: "B1J 1R4", cityName: "Big Pond, NS" }, { postalCode: "B1J 0A1", cityName: "Big Pond Centre, NS" }, { postalCode: "B1K 1X8", cityName: "Big Ridge, NS" }, { postalCode: "E2A 6N5", cityName: "Big River, NB" }, { postalCode: "S0J 0E0", cityName: "Big River, SK" }, { postalCode: "T0J 0E0", cityName: "Big Stone, AB" }, { postalCode: "P0V 1G0", cityName: "Big Trout Lake, ON" }, { postalCode: "T0J 0G0", cityName: "Big Valley, AB" }, { postalCode: "S0K 0M0", cityName: "Biggar, SK" }, { postalCode: "L0R 1C0", cityName: "Binbrook, ON" }, { postalCode: "T0J 0H0", cityName: "Bindloss, AB" }, { postalCode: "R0J 0G0", cityName: "Binscarth, MB" }, { postalCode: "B1B 1J7", cityName: "Birch Grove, NS" }, { postalCode: "S0J 0G0", cityName: "Birch Hills, SK" }, { postalCode: "P0P 1A0", cityName: "Birch Island, ON" }, { postalCode: "E4T 2B7", cityName: "Birch Ridge, NB" }, { postalCode: "R0L 0E0", cityName: "Birch River, MB" }, { postalCode: "T4S 1R6", cityName: "Birchcliff, AB" }, { postalCode: "A0G 1E0", cityName: "Birchy Bay, NL" }, { postalCode: "A0K 1K0", cityName: "Birchy Head, NL" }, { postalCode: "A0K 1L0", cityName: "Bird Cove, NL" }, { postalCode: "R0J 0J0", cityName: "Birnie, MB" }, { postalCode: "S0L 0G0", cityName: "Birsay, SK" }, { postalCode: "R0M 0C0", cityName: "Birtle, MB" }, { postalCode: "P0M 1C0", cityName: "Biscotasing, ON" }, { postalCode: "J0B 1G0", cityName: "Bishopton, QC" }, { postalCode: "R0E 0J0", cityName: "Bissett, MB" }, { postalCode: "K0J 1E0", cityName: "Bissett Creek, ON" }, { postalCode: "T0C 0L0", cityName: "Bittern Lake, AB" }, { postalCode: "S0E 0E0", cityName: "Bjorkdale, SK" }, { postalCode: "B1B 1T6", cityName: "Black Brook, NS" }, { postalCode: "T0L 0H0", cityName: "Black Diamond, AB" }, { postalCode: "A0K 1M0", cityName: "Black Duck Cove, NL" }, { postalCode: "A0N 2G0", cityName: "Black Duck Siding, NL" }, { postalCode: "G6H 4E9", cityName: "Black Lake, QC" }, { postalCode: "S0J 0H0", cityName: "Black Lake, SK" }, { postalCode: "B0J 1B0", cityName: "Black Point, NS" }, { postalCode: "E8G 0A3", cityName: "Black Point, NB" }, { postalCode: "E2S 0A5", cityName: "Black River, NB" }, { postalCode: "E1N 5K2", cityName: "Black River Bridge, NB" }, { postalCode: "B1X 0A3", cityName: "Black Rock, NS" }, { postalCode: "E2A 5T3", cityName: "Black Rock, NB" }, { postalCode: "A0K 1N0", cityName: "Black Tickle, NL" }, { postalCode: "B1L 1A7", cityName: "Blacketts Lake, NS" }, { postalCode: "T0B 0L0", cityName: "Blackfoot, AB" }, { postalCode: "T0L 0J0", cityName: "Blackie, AB" }, { postalCode: "E8E 2T5", cityName: "Blackland Restigouche Co, NB" }, { postalCode: "L0B 1B0", cityName: "Blackstock, ON" }, { postalCode: "E9B 1M2", cityName: "Blackville, NB" }, { postalCode: "E9B 0A7", cityName: "Blackville, NB" }, { postalCode: "S0G 0J0", cityName: "Bladworth, SK" }, { postalCode: "S0J 0J0", cityName: "Blaine Lake, SK" }, { postalCode: "J7A 0A1", cityName: "Blainville, QC" }, { postalCode: "J7E 3G8", cityName: "Blainville, QC" }, { postalCode: "E8E 1K8", cityName: "Blair Athol, NB" }, { postalCode: "T0K 0E0", cityName: "Blairmore, AB" }, { postalCode: "A0B 1C0", cityName: "Blaketown, NL" }, { postalCode: "G0G 1C0", cityName: "Blanc-Sablon, QC" }, { postalCode: "B0J 1C0", cityName: "Blandford, NS" }, { postalCode: "P0M 1E0", cityName: "Blezard Valley, ON" }, { postalCode: "B3Z 1M1", cityName: "Blind Bay, NS" }, { postalCode: "V0E 1H0", cityName: "Blind Bay, BC" }, { postalCode: "V0P 1B0", cityName: "Blind Channel, BC" }, { postalCode: "P0R 1B0", cityName: "Blind River, ON" }, { postalCode: "E9C 0A1", cityName: "Blissfield, NB" }, { postalCode: "B0J 1E0", cityName: "Blockhouse, NS" }, { postalCode: "R0C 0J0", cityName: "Bloodvein, MB" }, { postalCode: "K0K 1G0", cityName: "Bloomfield, ON" }, { postalCode: "E7K 1C5", cityName: "Bloomfield Carleton Co, NB" }, { postalCode: "E5N 0A9", cityName: "Bloomfield Kings Co, NB" }, { postalCode: "E6A 1K1", cityName: "Bloomfield Ridge, NB" }, { postalCode: "C0B 1E0", cityName: "Bloomfield Station, PEI" }, { postalCode: "N0B 1K0", cityName: "Bloomingdale, ON" }, { postalCode: "T0G 0G0", cityName: "Bloomsbury, AB" }, { postalCode: "V0N 1E0", cityName: "Blubber Bay, BC" }, { postalCode: "E7G 1S1", cityName: "Blue Bell, NB" }, { postalCode: "E7G 1G5", cityName: "Blue Mountain Bend, NB" }, { postalCode: "L9Y 0B5", cityName: "Blue Mountains, ON" }, { postalCode: "T0E 0B0", cityName: "Blue Ridge, AB" }, { postalCode: "V0E 1J0", cityName: "Blue River, BC" }, { postalCode: "J0X 1C0", cityName: "Blue Sea, QC" }, { postalCode: "T0H 0H0", cityName: "Blueberry Mountain, AB" }, { postalCode: "T0H 0J0", cityName: "Bluesky, AB" }, { postalCode: "N0G 1G0", cityName: "Bluevale, ON" }, { postalCode: "T0C 0M0", cityName: "Bluffton, AB" }, { postalCode: "S0N 0E0", cityName: "Blumenhof, SK" }, { postalCode: "R0A 0C0", cityName: "Blumenort, MB" }, { postalCode: "N0M 1H0", cityName: "Blyth, ON" }, { postalCode: "N0P 1B0", cityName: "Blytheswood, ON" }, { postalCode: "A0E 1C0", cityName: "Boat Harbour West, NL" }, { postalCode: "K0M 1A0", cityName: "Bobcaygeon, ON" }, { postalCode: "E5B 0B2", cityName: "Bocabec, NB" }, { postalCode: "T0B 0M0", cityName: "Bodo, AB" }, { postalCode: "R0L 0G0", cityName: "Boggy Creek, MB" }, { postalCode: "N0H 1E0", cityName: "Bognor, ON" }, { postalCode: "E6A 1A1", cityName: "Boiestown, NB" }, { postalCode: "E6A 1C1", cityName: "Boiestown, NB" }, { postalCode: "J0T 1G0", cityName: "Boileau, QC" }, { postalCode: "J0V 1N0", cityName: "Boileau, QC" }, { postalCode: "E8R 1Y4", cityName: "Bois-Blanc, NB" }, { postalCode: "J6Z 0A1", cityName: "Bois-des-Filion, QC" }, { postalCode: "J9E 3A9", cityName: "Bois-Franc, QC" }, { postalCode: "J0G 1M0", cityName: "Bois-Francs-Nord (Odanak), QC" }, { postalCode: "J0H 1A0", cityName: "Bois-Francs-Sud (Saint-Nazaire- D\'Acton), QC" }, { postalCode: "E8M 1A1", cityName: "Bois-Gagnon, NB" }, { postalCode: "J7E 4H4", cityName: "Boisbriand, QC" }, { postalCode: "G0A 1H0", cityName: "Boischatel, QC" }, { postalCode: "B1Y 3R3", cityName: "Boisdale, NS" }, { postalCode: "R0K 0E0", cityName: "Boissevain, MB" }, { postalCode: "K0M 1B0", cityName: "Bolsover, ON" }, { postalCode: "L7E 5S5", cityName: "Bolton, ON" }, { postalCode: "L7C 0S3", cityName: "Bolton, ON" }, { postalCode: "J0E 1G0", cityName: "Bolton-Est, QC" }, { postalCode: "J0E 2T0", cityName: "Bolton-Ouest, QC" }, { postalCode: "E7H 2K8", cityName: "Bon Accord, NB" }, { postalCode: "T0A 0K0", cityName: "Bon Accord, AB" }, { postalCode: "T0H 0K0", cityName: "Bonanza, AB" }, { postalCode: "G0C 1E0", cityName: "Bonaventure, QC" }, { postalCode: "A0C 1B0", cityName: "Bonavista, NL" }, { postalCode: "A0C 1A0", cityName: "Bonavista Peninsula (Bonavista), NL" }, { postalCode: "L0G 1B0", cityName: "Bond Head, ON" }, { postalCode: "P0H 1E0", cityName: "Bonfield, ON" }, { postalCode: "A0K 1P0", cityName: "Bonne Bay, NL" }, { postalCode: "A8A 2K5", cityName: "Bonne Bay Pond, NL" }, { postalCode: "E5C 1B8", cityName: "Bonny River, NB" }, { postalCode: "T9N 0A8", cityName: "Bonnyville, AB" }, { postalCode: "J0E 1H0", cityName: "Bonsecours, QC" }, { postalCode: "C0A 1C0", cityName: "Bonshaw, PEI" }, { postalCode: "C0A 1C0", cityName: "Bonshaw, PEI" }, { postalCode: "E9E 1G4", cityName: "Boom Road, NB" }, { postalCode: "L0M 1C0", cityName: "Borden, ON" }, { postalCode: "S0K 0N0", cityName: "Borden, SK" }, { postalCode: "C0B 1X0", cityName: "Borden-Carleton, PEI" }, { postalCode: "V0K 1C0", cityName: "Boston Bar, BC" }, { postalCode: "T0C 0N0", cityName: "Botha, AB" }, { postalCode: "N0P 1C0", cityName: "Bothwell, ON" }, { postalCode: "A0H 1E0", cityName: "Botwood, NL" }, { postalCode: "J4B 8V6", cityName: "Boucherville, QC" }, { postalCode: "J0X 1E0", cityName: "Bouchette, QC" }, { postalCode: "E4S 1S3", cityName: "Bouctouche, NB" }, { postalCode: "E4S 0A1", cityName: "Bouctouche, NB" }, { postalCode: "E4S 0C9", cityName: "Bouctouche Cove, NB" }, { postalCode: "E4S 0B3", cityName: "Bouctouche Reserve, NB" }, { postalCode: "E4S 0A2", cityName: "Bouctouche Sud, NB" }, { postalCode: "E4P 6H4", cityName: "Boudreau-Ouest, NB" }, { postalCode: "G0W 1E0", cityName: "Boulanger, QC" }, { postalCode: "B1X 1K1", cityName: "Boularderie Center, NS" }, { postalCode: "B1X 0A1", cityName: "Boularderie East, NS" }, { postalCode: "K0L 1G0", cityName: "Boulter, ON" }, { postalCode: "E1G 0J4", cityName: "Boundary Creek, NB" }, { postalCode: "K0A 1E0", cityName: "Bourget, ON" }, { postalCode: "B3Z 0J2", cityName: "Boutiliers Point, NS" }, { postalCode: "T0K 0G0", cityName: "Bow Island, AB" }, { postalCode: "T0M 0K0", cityName: "Bowden, AB" }, { postalCode: "V0N 1G0", cityName: "Bowen Island, BC" }, { postalCode: "J0X 3C0", cityName: "Bowman, QC" }, { postalCode: "L1B 1L9", cityName: "Bowmanville, ON" }, { postalCode: "L1E 1Y2", cityName: "Bowmanville, ON" }, { postalCode: "L1B 1A1", cityName: "Bowmanville East, ON" }, { postalCode: "L1C 1A1", cityName: "Bowmanville West, ON" }, { postalCode: "V0R 1G0", cityName: "Bowser, BC" }, { postalCode: "R0L 0H0", cityName: "Bowsman, MB" }, { postalCode: "A0G 1G0", cityName: "Boyds Cove, NL" }, { postalCode: "T0A 0M0", cityName: "Boyle, AB" }, { postalCode: "B0H 1G0", cityName: "Boylston, NS" }, { postalCode: "T0A 0N0", cityName: "Boyne Lake, AB" }, { postalCode: "P1L 1Y9", cityName: "Bracebridge, ON" }, { postalCode: "S0N 0G0", cityName: "Bracken, SK" }, { postalCode: "V0N 1H0", cityName: "Brackendale, BC" }, { postalCode: "L3Z 3J5", cityName: "Bradford, ON" }, { postalCode: "G0G 1E0", cityName: "Brador, QC" }, { postalCode: "R0M 0E0", cityName: "Bradwardine, MB" }, { postalCode: "S0K 0P0", cityName: "Bradwell, SK" }, { postalCode: "K0A 1G0", cityName: "Braeside, ON" }, { postalCode: "T0L 0K0", cityName: "Bragg Creek, AB" }, { postalCode: "L6V 4T5", cityName: "Brampton Central, ON" }, { postalCode: "L6T 5W3", cityName: "Brampton East, ON" }, { postalCode: "L6P 2L3", cityName: "Brampton North, ON" }, { postalCode: "L6S 5Y7", cityName: "Brampton North Central, ON" }, { postalCode: "L6R 3J8", cityName: "Brampton Northwest, ON" }, { postalCode: "L6Y 5T1", cityName: "Brampton South, ON" }, { postalCode: "L6W 4V2", cityName: "Brampton Southeast, ON" }, { postalCode: "L6X 5E8", cityName: "Brampton Southwest, ON" }, { postalCode: "L7A 1E7", cityName: "Brampton West, ON" }, { postalCode: "L6Z 4V6", cityName: "Brampton West Central, ON" }, { postalCode: "A0B 1E0", cityName: "Branch, NL" }, { postalCode: "B4V 4H8", cityName: "Branch Lahave, NS" }, { postalCode: "N0B 1L0", cityName: "Branchton, ON" }, { postalCode: "R7C 0A1", cityName: "Brandon North, MB" }, { postalCode: "R0K 0B0", cityName: "Brandon Region (Killarney), MB" }, { postalCode: "R7A 0H3", cityName: "Brandon Southeast, MB" }, { postalCode: "R7B 0P4", cityName: "Brandon Southwest, MB" }, { postalCode: "T0L 0L0", cityName: "Brant, AB" }, { postalCode: "N0E 1A0", cityName: "Brant and Norfolk (Waterford), ON" }, { postalCode: "N3L 3E1", cityName: "Brantford, ON" }, { postalCode: "N3R 7Y3", cityName: "Brantford Central, ON" }, { postalCode: "N3P 2B2", cityName: "Brantford Northeast, ON" }, { postalCode: "N3V 1E6", cityName: "Brantford Northwest, ON" }, { postalCode: "N3S 7V3", cityName: "Brantford Southeast, ON" }, { postalCode: "N3T 6N7", cityName: "Brantford Southwest, ON" }, { postalCode: "E9H 0A1", cityName: "Brantville, NB" }, { postalCode: "E9H 0A3", cityName: "Brantville, NB" }, { postalCode: "B1Y 2B5", cityName: "Bras d\'Or, NS" }, { postalCode: "C0A 1E0", cityName: "Breadalbane, PEI" }, { postalCode: "C0A 1E0", cityName: "Breadalbane, PEI" }, { postalCode: "E5C 0A7", cityName: "Breadalbane, NB" }, { postalCode: "L0K 1B0", cityName: "Brechin, ON" }, { postalCode: "S0A 0H0", cityName: "Bredenbury, SK" }, { postalCode: "A0K 1R0", cityName: "Brents Cove, NL" }, { postalCode: "N0B 1M0", cityName: "Breslau, ON" }, { postalCode: "T0C 0P0", cityName: "Breton, AB" }, { postalCode: "E6E 1V8", cityName: "Brewers Mill, NB" }, { postalCode: "T0A 0P0", cityName: "Breynat, AB" }, { postalCode: "V0H 1B0", cityName: "Bridesville, BC" }, { postalCode: "V0K 1E0", cityName: "Bridge Lake, BC" }, { postalCode: "K0L 1H0", cityName: "Bridgenorth, ON" }, { postalCode: "A0G 1H0", cityName: "Bridgeport, NL" }, { postalCode: "B0S 1C0", cityName: "Bridgetown, NS" }, { postalCode: "B4V 1X6", cityName: "Bridgewater, NS" }, { postalCode: "S0H 0K0", cityName: "Briercrest, SK" }, { postalCode: "N0N 1B0", cityName: "Brigden, ON" }, { postalCode: "E4A 1J7", cityName: "Briggs Corner Queens Co, NB" }, { postalCode: "J2K 0A3", cityName: "Brigham, QC" }, { postalCode: "N0J 1B0", cityName: "Bright, ON" }, { postalCode: "S0M 0H0", cityName: "Bright Sand, SK" }, { postalCode: "N0N 1C0", cityName: "Bright\'s Grove, ON" }, { postalCode: "K0K 1H0", cityName: "Brighton, ON" }, { postalCode: "A0A 1K0", cityName: "Brigus, NL" }, { postalCode: "A0B 1G0", cityName: "Brigus Junction, NL" }, { postalCode: "K0E 1C0", cityName: "Brinston, ON" }, { postalCode: "V0A 1B0", cityName: "Brisco, BC" }, { postalCode: "E7L 0B2", cityName: "Bristol, NB" }, { postalCode: "E7L 2H8", cityName: "Bristol Junction, NB" }, { postalCode: "V0N 1J0", cityName: "Britannia Beach, BC" }, { postalCode: "E4L 2E9", cityName: "British Settlement, NB" }, { postalCode: "A0A 1L0", cityName: "Broad Cove Bdv, NL" }, { postalCode: "R0C 0K0", cityName: "Broad Valley, MB" }, { postalCode: "S0G 0K0", cityName: "Broadview, SK" }, { postalCode: "R0B 0B0", cityName: "Brochet, MB" }, { postalCode: "S0L 0H0", cityName: "Brock, SK" }, { postalCode: "T0K 0H0", cityName: "Brocket, AB" }, { postalCode: "S0E 0G0", cityName: "Brockington, SK" }, { postalCode: "K6V 0A6", cityName: "Brockville, ON" }, { postalCode: "E6K 1Y1", cityName: "Brockway, NB" }, { postalCode: "S0H 0L0", cityName: "Broderick, SK" }, { postalCode: "N0K 1B0", cityName: "Brodhagen, ON" }, { postalCode: "J0E 1K0", cityName: "Brome, QC" }, { postalCode: "S0C 0N0", cityName: "Bromhead, SK" }, { postalCode: "J2L 3N1", cityName: "Bromont, QC" }, { postalCode: "E4A 2L7", cityName: "Bronson Settlement, NB" }, { postalCode: "R0K 0G0", cityName: "Brookdale, MB" }, { postalCode: "A0G 1J0", cityName: "Brookfield, NL" }, { postalCode: "B0N 1C0", cityName: "Brookfield, NS" }, { postalCode: "B0J 1H0", cityName: "Brooklyn, NS" }, { postalCode: "T1R 0E7", cityName: "Brooks, AB" }, { postalCode: "S0E 0H0", cityName: "Brooksby, SK" }, { postalCode: "B3T 1R1", cityName: "Brookside, NS" }, { postalCode: "E7K 1C6", cityName: "Brookville, NB" }, { postalCode: "J4Z 3W5", cityName: "Brossard Northeast, QC" }, { postalCode: "J4W 3M6", cityName: "Brossard Northwest, QC" }, { postalCode: "J4Y 1R9", cityName: "Brossard South, QC" }, { postalCode: "J4X 2Z7", cityName: "Brossard Southwest, QC" }, { postalCode: "T0B 0P0", cityName: "Brosseau, AB" }, { postalCode: "B1B 1N2", cityName: "Broughton, NS" }, { postalCode: "T0C 0R0", cityName: "Brownfield, AB" }, { postalCode: "S0H 0M0", cityName: "Brownlee, SK" }, { postalCode: "E5M 0A1", cityName: "Browns Flat, NB" }, { postalCode: "E4T 1W3", cityName: "Browns Yard, NB" }, { postalCode: "A0B 1H0", cityName: "Brownsdale, NL" }, { postalCode: "N0L 1C0", cityName: "Brownsville, ON" }, { postalCode: "T0H 0L0", cityName: "Brownvale, AB" }, { postalCode: "T0B 0R0", cityName: "Bruce, AB" }, { postalCode: "P0R 1C0", cityName: "Bruce Mines, ON" }, { postalCode: "N0H 1B0", cityName: "Bruce Peninsula (Wiarton), ON" }, { postalCode: "N0M 1J0", cityName: "Brucefield, ON" }, { postalCode: "T0B 0S0", cityName: "Bruderheim, AB" }, { postalCode: "T0E 0C0", cityName: "Brule, AB" }, { postalCode: "R0G 0E0", cityName: "Brunkild, MB" }, { postalCode: "N0K 1C0", cityName: "Brunner, ON" }, { postalCode: "S0K 0S0", cityName: "Bruno, SK" }, { postalCode: "E2A 6W6", cityName: "Brunswick Mines, NB" }, { postalCode: "N0G 1H0", cityName: "Brussels, ON" }, { postalCode: "R0G 0G0", cityName: "Bruxelles, MB" }, { postalCode: "E1V 5C4", cityName: "Bryenton, NB" }, { postalCode: "J0X 1H0", cityName: "Bryson, QC" }, { postalCode: "E7P 2J6", cityName: "Bubartown, NB" }, { postalCode: "S0A 0J0", cityName: "Buchanan, SK" }, { postalCode: "A0H 1G0", cityName: "Buchans, NL" }, { postalCode: "A0H 1H0", cityName: "Buchans Junction, NL" }, { postalCode: "T0C 0S0", cityName: "Buck Creek, AB" }, { postalCode: "T0C 0T0", cityName: "Buck Lake, AB" }, { postalCode: "B4V 8X8", cityName: "Buckfield, NS" }, { postalCode: "K0L 1J0", cityName: "Buckhorn, ON" }, { postalCode: "J8L 3Y3", cityName: "Buckingham, QC" }, { postalCode: "G0R 1G0", cityName: "Buckland, QC" }, { postalCode: "S2V 1A1", cityName: "Buena Vista, SK" }, { postalCode: "T0J 0K0", cityName: "Buffalo, AB" }, { postalCode: "V0K 1G0", cityName: "Buffalo Creek, BC" }, { postalCode: "T0H 4A0", cityName: "Buffalo Head Prairie, AB" }, { postalCode: "S0M 0J0", cityName: "Buffalo Narrows, SK" }, { postalCode: "R0A 2W0", cityName: "Buffalo Point, MB" }, { postalCode: "V0C 2R0", cityName: "Buick, BC" }, { postalCode: "E7N 1M3", cityName: "Bull Lake, NB" }, { postalCode: "E7N 0A6", cityName: "Bulls Creek, NB" }, { postalCode: "S0G 0L0", cityName: "Bulyea, SK" }, { postalCode: "A0C 1E0", cityName: "Bunyans Cove, NL" }, { postalCode: "T0K 0J0", cityName: "Burdett, AB" }, { postalCode: "A0N 2H0", cityName: "Burgeo, NL" }, { postalCode: "N0J 1C0", cityName: "Burgessville, ON" }, { postalCode: "A0C 1G0", cityName: "Burgoynes Cove, NL" }, { postalCode: "A0E 1E0", cityName: "Burin, NL" }, { postalCode: "A0E 1G0", cityName: "Burin Bay Arm, NL" }, { postalCode: "A0E 1H0", cityName: "Burin Peninsula (Marystown), NL" }, { postalCode: "P0A 1C0", cityName: "Burks Falls, ON" }, { postalCode: "A0K 1S0", cityName: "Burlington, NL" }, { postalCode: "L7N 3V9", cityName: "Burlington East, ON" }, { postalCode: "L7M 5A2", cityName: "Burlington North, ON" }, { postalCode: "L7L 5Z2", cityName: "Burlington Northeast, ON" }, { postalCode: "L7S 1A3", cityName: "Burlington South, ON" }, { postalCode: "L7R 4Z4", cityName: "Burlington Southeast, ON" }, { postalCode: "L7T 4M3", cityName: "Burlington Southwest, ON" }, { postalCode: "L7P 5C8", cityName: "Burlington West, ON" }, { postalCode: "V5K 3S3", cityName: "Burnaby, BC" }, { postalCode: "V5M 3Z3", cityName: "Burnaby, BC" }, { postalCode: "V5R 2M3", cityName: "Burnaby, BC" }, { postalCode: "V5S 3R2", cityName: "Burnaby, BC" }, { postalCode: "V5C 1A1", cityName: "Burnaby (Burnaby Heights / Willingdon Heights / West Central Valley), BC" }, { postalCode: "V5G 1A1", cityName: "Burnaby (Cascade-Schou / Douglas-Gilpin), BC" }, { postalCode: "V3N 0A2", cityName: "Burnaby (East Big Bend / Stride Avenue / Edmonds / Cariboo-Armstrong), BC" }, { postalCode: "V5A 1A1", cityName: "Burnaby (Government Road / Lake City / SFU / Burnaby Mountain), BC" }, { postalCode: "V5E 0A4", cityName: "Burnaby (Lakeview-Mayfield / Richmond Park / Kingsway-Beresford), BC" }, { postalCode: "V5H 1A1", cityName: "Burnaby (Maywood / Marlborough / Oakalla / Windsor), BC" }, { postalCode: "V5B 1A1", cityName: "Burnaby (Parkcrest-Aubrey / Ardingley-Sprott), BC" }, { postalCode: "V5J 1A1", cityName: "Burnaby (Suncrest / Sussex-Nelson / Clinton-Glenwood / West Big Bend), BC" }, { postalCode: "V0J 1E0", cityName: "Burns Lake, BC" }, { postalCode: "A0G 1K0", cityName: "Burnside, NL" }, { postalCode: "K0J 1G0", cityName: "Burnstown, ON" }, { postalCode: "E8R 1R6", cityName: "Burnsville, NB" }, { postalCode: "E9G 2G1", cityName: "Burnt Church, NB" }, { postalCode: "E3L 5T4", cityName: "Burnt Hill, NB" }, { postalCode: "A0M 1B0", cityName: "Burnt Islands Blp, NL" }, { postalCode: "A0A 1M0", cityName: "Burnt Point Bdv, NL" }, { postalCode: "K0M 1C0", cityName: "Burnt River, ON" }, { postalCode: "E7G 1W3", cityName: "Burntland Brook, NB" }, { postalCode: "E3A 0L3", cityName: "Burpee, NB" }, { postalCode: "S0K 0T0", cityName: "Burr, SK" }, { postalCode: "K0G 1B0", cityName: "Burritts Rapids, ON" }, { postalCode: "S0N 0H0", cityName: "Burstall, SK" }, { postalCode: "E2V 0B2", cityName: "Burton, NB" }, { postalCode: "V0G 1E0", cityName: "Burton, BC" }, { postalCode: "E6L 2G5", cityName: "Burtts Corner, NB" }, { postalCode: "E6L 0A2", cityName: "Burtts Corner, NB" }, { postalCode: "Y0B 1V0", cityName: "Burwash Landing, YT" }, { postalCode: "J0B 1J0", cityName: "Bury, QC" }, { postalCode: "T0G 0H0", cityName: "Busby, AB" }, { postalCode: "S0H 0N0", cityName: "Bushell Park, SK" }, { postalCode: "T0J 0L0", cityName: "Byemoor, AB" }, { postalCode: "P0G 1B0", cityName: "Byng Inlet, ON" }, { postalCode: "H3V 1J1", cityName: "C&ocirc;te-des-Neiges East, QC" }, { postalCode: "H3S 2W8", cityName: "C&ocirc;te-des-Neiges North, QC" }, { postalCode: "H3T 2A1", cityName: "C&ocirc;te-des-Neiges Northeast, QC" }, { postalCode: "H3W 3J1", cityName: "C&ocirc;te-des-Neiges Southwest, QC" }, { postalCode: "G0G 1A0", cityName: "C&ocirc;te-Nord/Anticosti (Schefferville), QC" }, { postalCode: "H4V 2Z8", cityName: "C&ocirc;te-Saint-Luc East, QC" }, { postalCode: "H4W 3L9", cityName: "C&ocirc;te-Saint-Luc West, QC" }, { postalCode: "G0L 1E0", cityName: "Cabano, QC" }, { postalCode: "S0N 0J0", cityName: "Cabri, SK" }, { postalCode: "P0H 1G0", cityName: "Cache Bay, ON" }, { postalCode: "V0K 1H0", cityName: "Cache Creek, BC" }, { postalCode: "G0L 1G0", cityName: "Cacouna, QC" }, { postalCode: "S0L 0J0", cityName: "Cactus Lake, SK" }, { postalCode: "S0N 0K0", cityName: "Cadillac, SK" }, { postalCode: "T0B 0T0", cityName: "Cadogan, AB" }, { postalCode: "T0E 0E0", cityName: "Cadomin, AB" }, { postalCode: "T0H 0N0", cityName: "Cadotte Lake, AB" }, { postalCode: "L0B 1E0", cityName: "Caesarea, ON" }, { postalCode: "E4T 1Z5", cityName: "Cails Mills, NB" }, { postalCode: "E9B 0A1", cityName: "Cains River, NB" }, { postalCode: "E9G 2Y1", cityName: "Caissie Road, NB" }, { postalCode: "L0R 1E0", cityName: "Caistor Centre, ON" }, { postalCode: "E5C 2S9", cityName: "Caithness, NB" }, { postalCode: "K0J 1H0", cityName: "Calabogie, ON" }, { postalCode: "T0G 0J0", cityName: "Calahoo, AB" }, { postalCode: "T0H 0P0", cityName: "Calais, AB" }, { postalCode: "S0A 0K0", cityName: "Calder, SK" }, { postalCode: "E5V 1M8", cityName: "Calders Head, NB" }, { postalCode: "L7C 3K7", cityName: "Caledon, ON" }, { postalCode: "L7E 0E4", cityName: "Caledon, ON" }, { postalCode: "L7K 0A1", cityName: "Caledon, ON" }, { postalCode: "L7K 0B1", cityName: "Caledon (Alton / Caledon Village / Belfountain / Terra Cotta / Caledon East), ON" }, { postalCode: "L0N 1E0", cityName: "Caledon East, ON" }, { postalCode: "L7C 0A1", cityName: "Caledon East, ON" }, { postalCode: "L7E 0G8", cityName: "Caledon East, ON" }, { postalCode: "L7K 0L3", cityName: "Caledon East, ON" }, { postalCode: "L7C 0A5", cityName: "Caledon Village, ON" }, { postalCode: "N3W 2J7", cityName: "Caledonia, ON" }, { postalCode: "B0T 1B0", cityName: "Caledonia, NS" }, { postalCode: "E4H 1A6", cityName: "Caledonia Mountain, NB" }, { postalCode: "T3C 0A1", cityName: "Calgary, AB" }, { postalCode: "T2W 0K1", cityName: "Calgary (Braeside / Woodbine), AB" }, { postalCode: "T2L 0C8", cityName: "Calgary (Brentwood / Collingwood / Nose Hill), AB" }, { postalCode: "T2E 0T8", cityName: "Calgary (Bridgeland / Greenview / Zoo / YYC), AB" }, { postalCode: "T2P 0A1", cityName: "Calgary (City Centre / Calgary Tower), AB" }, { postalCode: "T2R 0A1", cityName: "Calgary (Connaught / West Victoria Park), AB" }, { postalCode: "T3M 0C4", cityName: "Calgary (Cranston), AB" }, { postalCode: "T3A 0H6", cityName: "Calgary (Dalhousie / Edgemont / Hamptons / Hidden Valley), AB" }, { postalCode: "T3H 0A1", cityName: "Calgary (Discovery Ridge / Signal Hill / Aspen Woods / Patterson / Cougar Ridge), AB" }, { postalCode: "T2Z 0C3", cityName: "Calgary (Douglas Glen / McKenzie Lake / Copperfield / East Shepard), AB" }, { postalCode: "T2S 0W3", cityName: "Calgary (Elbow Park / Britannia / Parkhill / Mission), AB" }, { postalCode: "T2B 0A1", cityName: "Calgary (Forest Lawn / Dover / Erin Woods), AB" }, { postalCode: "T3G 1A1", cityName: "Calgary (Hawkwood / Arbour Lake / Royal Oak / Rocky Ridge), AB" }, { postalCode: "T2H 0A8", cityName: "Calgary (Highfield / Burns Industrial), AB" }, { postalCode: "T2G 0B4", cityName: "Calgary (Inglewood / Burnsland / Chinatown / East Victoria Park / Saddledome), AB" }, { postalCode: "T2N 0B3", cityName: "Calgary (Kensington / Westmont / Parkdale / University), AB" }, { postalCode: "T3E 0A3", cityName: "Calgary (Lakeview / Glendale / Killarney / Glamorgan), AB" }, { postalCode: "T2C 0A5", cityName: "Calgary (Lynnwood Ridge / Ogden / Foothills Industrial / Great Plains), AB" }, { postalCode: "T3J 1A1", cityName: "Calgary (Martindale / Taradale / Falconridge / Saddle Ridge), AB" }, { postalCode: "T2X 1A1", cityName: "Calgary (Midnapore / Sundance), AB" }, { postalCode: "T2Y 1A8", cityName: "Calgary (Millrise / Somerset / Bridlewood / Evergreen), AB" }, { postalCode: "T3B 0C5", cityName: "Calgary (Montgomery / Bowness / Silver Springs / Greenwood), AB" }, { postalCode: "T2M 0A8", cityName: "Calgary (Mount Pleasant / Capitol Hill / Banff Trail), AB" }, { postalCode: "T2V 0E3", cityName: "Calgary (Oak Ridge / Haysboro / Kingsland / Windsor Park), AB" }, { postalCode: "T2A 0A1", cityName: "Calgary (Penbrooke Meadows / Marlborough), AB" }, { postalCode: "T2J 0B2", cityName: "Calgary (Queensland Downs / Lake Bonavista / Willow Park / Acadia), AB" }, { postalCode: "T3C 0X5", cityName: "Calgary (Rosscarrock / Wildwood / Shaganappi / Sunalta), AB" }, { postalCode: "T1Y 1A1", cityName: "Calgary (Rundle / Whitehorn / Monterey Park), AB" }, { postalCode: "T3K 1A1", cityName: "Calgary (Sandstone / Harvest Hills / Coventry Hills / Panorama Hills / Beddington), AB" }, { postalCode: "T3P 0A1", cityName: "Calgary (Symons Valley), AB" }, { postalCode: "T2K 0A5", cityName: "Calgary (Thornecliffe / Tuxedo), AB" }, { postalCode: "T3L 1A1", cityName: "Calgary (Tuscany / Scenic Acres), AB" }, { postalCode: "T3N 1A1", cityName: "Calgary Northeast, AB" }, { postalCode: "T3R 0A1", cityName: "Calgary Northwest, AB" }, { postalCode: "T2T 0A1", cityName: "Calgary South (Altadore / Bankview / Richmond), AB" }, { postalCode: "E1H 2A7", cityName: "Calhoun, NB" }, { postalCode: "E3Z 1T9", cityName: "California Settlement, NB" }, { postalCode: "P0H 1H0", cityName: "Callander, ON" }, { postalCode: "T0G 0K0", cityName: "Calling Lake, AB" }, { postalCode: "T0C 0V0", cityName: "Calmar, AB" }, { postalCode: "P0L 1B0", cityName: "Calstock, ON" }, { postalCode: "A0A 1N0", cityName: "Calvert, NL" }, { postalCode: "K0M 1E0", cityName: "Cambray, ON" }, { postalCode: "B0P 1G0", cityName: "Cambridge, NS" }, { postalCode: "X0B 0C0", cityName: "Cambridge Bay, NU" }, { postalCode: "N1R 8P9", cityName: "Cambridge Central, ON" }, { postalCode: "N1T 1Z5", cityName: "Cambridge East, ON" }, { postalCode: "N3C 4B9", cityName: "Cambridge Northeast, ON" }, { postalCode: "N3E 1B8", cityName: "Cambridge Northwest, ON" }, { postalCode: "N1P 1J1", cityName: "Cambridge South, ON" }, { postalCode: "N1S 5C3", cityName: "Cambridge Southwest, ON" }, { postalCode: "N3H 5T7", cityName: "Cambridge West, ON" }, { postalCode: "E4C 0A1", cityName: "Cambridge-Narrows, NB" }, { postalCode: "K0K 1J0", cityName: "Camden East, ON" }, { postalCode: "K0M 1G0", cityName: "Cameron, ON" }, { postalCode: "N0N 1E0", cityName: "Camlachie, ON" }, { postalCode: "T0G 0L0", cityName: "Camp Creek, AB" }, { postalCode: "R0C 0M0", cityName: "Camp Morton, MB" }, { postalCode: "V9W 0A1", cityName: "Campbell River Central, BC" }, { postalCode: "V9H 1A1", cityName: "Campbell River Outskirts, BC" }, { postalCode: "E7M 5A1", cityName: "Campbell Settlement, NB" }, { postalCode: "E6G 2A6", cityName: "Campbell Settlement York Co, NB" }, { postalCode: "J0X 1K0", cityName: "Campbell\'s Bay, QC" }, { postalCode: "L0A 1B0", cityName: "Campbellcroft, ON" }, { postalCode: "K0L 1L0", cityName: "Campbellford, ON" }, { postalCode: "E3N 0A8", cityName: "Campbellton, NB" }, { postalCode: "A0G 1L0", cityName: "Campbellton, NL" }, { postalCode: "E3N 0A2", cityName: "Campbellton, NB" }, { postalCode: "L0P 1B0", cityName: "Campbellville, ON" }, { postalCode: "L0R 1G0", cityName: "Campden, ON" }, { postalCode: "B4V 6S1", cityName: "Camperdown, NS" }, { postalCode: "R0L 0J0", cityName: "Camperville, MB" }, { postalCode: "E5E 0A1", cityName: "Campobello Island, NB" }, { postalCode: "T4V 0M2", cityName: "Camrose, AB" }, { postalCode: "E4Z 5W9", cityName: "Canaan Forks, NB" }, { postalCode: "E5C 0A5", cityName: "Canal, NB" }, { postalCode: "V0B 1B0", cityName: "Canal Flats, BC" }, { postalCode: "S0G 0N0", cityName: "Candiac, SK" }, { postalCode: "S0J 3E0", cityName: "Candle Lake, SK" }, { postalCode: "S0K 0V0", cityName: "Cando, SK" }, { postalCode: "N0A 1C0", cityName: "Canfield, ON" }, { postalCode: "V0K 1J0", cityName: "Canim Lake, BC" }, { postalCode: "E4X 1N7", cityName: "Canisto, NB" }, { postalCode: "T1W 0A1", cityName: "Canmore, AB" }, { postalCode: "K0K 1K0", cityName: "Cannifton, ON" }, { postalCode: "B0P 1H0", cityName: "Canning, NS" }, { postalCode: "A0C 1H0", cityName: "Cannings Cove, NL" }, { postalCode: "L0E 1E0", cityName: "Cannington, ON" }, { postalCode: "E2A 5E2", cityName: "Canobie, NB" }, { postalCode: "V0E 1K0", cityName: "Canoe, BC" }, { postalCode: "S0M 0K0", cityName: "Canoe Narrows, SK" }, { postalCode: "E5A 1H4", cityName: "Canoose, NB" }, { postalCode: "S0A 0L0", cityName: "Canora, SK" }, { postalCode: "B0H 1H0", cityName: "Canso, NS" }, { postalCode: "B0H 1A0", cityName: "Canso region (Havre Boucher), NS" }, { postalCode: "E6H 0A6", cityName: "Canterbury, NB" }, { postalCode: "E6H 1J8", cityName: "Canterbury, NB" }, { postalCode: "J8V 0A9", cityName: "Cantley, QC" }, { postalCode: "J0J 1A0", cityName: "Canton Bedford, QC" }, { postalCode: "E1X 2G5", cityName: "Canton des Basques, NB" }, { postalCode: "J1X 3W2", cityName: "Canton Stanstead, QC" }, { postalCode: "G7G 0A7", cityName: "Canton Tremblay, QC" }, { postalCode: "G7H 5A8", cityName: "Canton Tremblay, QC" }, { postalCode: "J2G 1A1", cityName: "Canton-de-Granby, QC" }, { postalCode: "J2H 0A9", cityName: "Canton-de-Granby, QC" }, { postalCode: "J2J 0A2", cityName: "Canton-de-Granby, QC" }, { postalCode: "J0B 2C0", cityName: "Canton-de-Hatley, QC" }, { postalCode: "S0J 0K0", cityName: "Canwood, SK" }, { postalCode: "V0B 1C0", cityName: "Canyon, BC" }, { postalCode: "T0G 0M0", cityName: "Canyon Creek, AB" }, { postalCode: "G4T 1A1", cityName: "Cap-Aux-Meules, QC" }, { postalCode: "E8T 3C7", cityName: "Cap-Bateau, NB" }, { postalCode: "G0J 1G0", cityName: "Cap-Chat-Est, QC" }, { postalCode: "G0C 1G0", cityName: "Cap-d\'Espoir, QC" }, { postalCode: "G8T 8W1", cityName: "Cap-de-la- Madeleine Central and southeast, QC" }, { postalCode: "G8V 2S8", cityName: "Cap-de-la- Madeleine Northeast, QC" }, { postalCode: "G8W 2A9", cityName: "Cap-de-la- Madeleine West, QC" }, { postalCode: "E4N 1A2", cityName: "Cap-Pel&eacute;, NB" }, { postalCode: "E4N 0A3", cityName: "Cap-Pele, NB" }, { postalCode: "G1Y 3V8", cityName: "Cap-Rouge, QC" }, { postalCode: "G0R 1H0", cityName: "Cap-Saint-Ignace, QC" }, { postalCode: "G0A 1L0", cityName: "Cap-Sante, QC" }, { postalCode: "A0A 1P0", cityName: "Cape Broyle, NL" }, { postalCode: "B1X 1X5", cityName: "Cape Dauphin, NS" }, { postalCode: "X0A 0C0", cityName: "Cape Dorset, NU" }, { postalCode: "E4H 0A5", cityName: "Cape Enrage, NB" }, { postalCode: "A0G 1M0", cityName: "Cape Freels North, NL" }, { postalCode: "B0W 1K0", cityName: "Cape Negro, NS" }, { postalCode: "A0N 1C0", cityName: "Cape Ray, NL" }, { postalCode: "A0N 1E0", cityName: "Cape St George, NL" }, { postalCode: "E4H 1W8", cityName: "Cape Station, NB" }, { postalCode: "E4M 0A9", cityName: "Cape Tormentine, NB" }, { postalCode: "G0A 1A0", cityName: "Capitale-Nationale (Stoneham), QC" }, { postalCode: "G0C 1H0", cityName: "Caplan, QC" }, { postalCode: "A0A 1R0", cityName: "Caplin Cove Bdv, NL" }, { postalCode: "A0A 1S0", cityName: "Cappahayden, NL" }, { postalCode: "P0M 1H0", cityName: "Capreol, ON" }, { postalCode: "B0C 1E0", cityName: "Capstick, NS" }, { postalCode: "G0J 1H0", cityName: "Capucins, QC" }, { postalCode: "P0T 1J0", cityName: "Caramat, ON" }, { postalCode: "E1W 1A1", cityName: "Caraquet, NB" }, { postalCode: "R0K 0H0", cityName: "Carberry, MB" }, { postalCode: "T0M 0L0", cityName: "Carbon, AB" }, { postalCode: "A1Y 1B1", cityName: "Carbonear, NL" }, { postalCode: "T0H 0R0", cityName: "Carcajou, AB" }, { postalCode: "Y0B 1B0", cityName: "Carcross, YT" }, { postalCode: "R0K 0J0", cityName: "Cardale, MB" }, { postalCode: "K0L 1M0", cityName: "Cardiff, ON" }, { postalCode: "C0A 1G0", cityName: "Cardigan, PEI" }, { postalCode: "C0A 1G0", cityName: "Cardigan, PEI" }, { postalCode: "E6B 1L7", cityName: "Cardigan, NB" }, { postalCode: "K0E 1E0", cityName: "Cardinal, ON" }, { postalCode: "S0H 0P0", cityName: "Cardross, SK" }, { postalCode: "T0K 0K0", cityName: "Cardston, AB" }, { postalCode: "N0G 1J0", cityName: "Cargill, ON" }, { postalCode: "V0K 1A0", cityName: "Cariboo and West Okanagan (100 Mile House), BC" }, { postalCode: "B1L 1G2", cityName: "Caribou Marsh, NS" }, { postalCode: "B1M 1B4", cityName: "Caribou Marsh, NS" }, { postalCode: "S0C 0P0", cityName: "Carievale, SK" }, { postalCode: "B0W 1L0", cityName: "Carleton, NS" }, { postalCode: "G0C 1J0", cityName: "Carleton, QC" }, { postalCode: "K7C 1A1", cityName: "Carleton Place, ON" }, { postalCode: "E7H 1N7", cityName: "Carlingford, NB" }, { postalCode: "E7P 0A1", cityName: "Carlisle, NB" }, { postalCode: "L0R 1H0", cityName: "Carlisle, ON" }, { postalCode: "E7L 2B1", cityName: "Carlow, NB" }, { postalCode: "R0A 0G0", cityName: "Carlowrie, MB" }, { postalCode: "K0A 1K0", cityName: "Carlsbad Springs, ON" }, { postalCode: "S0K 0W0", cityName: "Carlton, SK" }, { postalCode: "S0C 0R0", cityName: "Carlyle, SK" }, { postalCode: "Y0B 1C0", cityName: "Carmacks, YT" }, { postalCode: "R0G 0J0", cityName: "Carman, MB" }, { postalCode: "T0L 0N0", cityName: "Carmangay, AB" }, { postalCode: "A0G 1N0", cityName: "Carmanville, NL" }, { postalCode: "S0K 0X0", cityName: "Carmel, SK" }, { postalCode: "K0M 1J0", cityName: "Carnarvon, ON" }, { postalCode: "S0C 0S0", cityName: "Carnduff, SK" }, { postalCode: "T0C 0W0", cityName: "Carnwood, AB" }, { postalCode: "T0M 0M0", cityName: "Caroline, AB" }, { postalCode: "S0H 0R0", cityName: "Caron, SK" }, { postalCode: "S0H 0S0", cityName: "Caronport, SK" }, { postalCode: "K0A 1L0", cityName: "Carp, ON" }, { postalCode: "S0E 0K0", cityName: "Carragana, SK" }, { postalCode: "E6H 2N1", cityName: "Carrol Ridge, NB" }, { postalCode: "R0K 0K0", cityName: "Carroll, MB" }, { postalCode: "E9C 2E3", cityName: "Carrolls Crossing, NB" }, { postalCode: "T0E 0G0", cityName: "Carrot Creek, AB" }, { postalCode: "S0E 0L0", cityName: "Carrot River, SK" }, { postalCode: "K0K 1L0", cityName: "Carrying Place, ON" }, { postalCode: "T0J 0M0", cityName: "Carseland, AB" }, { postalCode: "E4G 1A8", cityName: "Carsonville, NB" }, { postalCode: "T0M 0N0", cityName: "Carstairs, AB" }, { postalCode: "A0G 1P0", cityName: "Carters Cove, NL" }, { postalCode: "E5S 0A1", cityName: "Carters Point, NB" }, { postalCode: "R4K 1A2", cityName: "Cartier, MB" }, { postalCode: "P0M 1J0", cityName: "Cartier, ON" }, { postalCode: "H4J 2R8", cityName: "Cartierville Central, QC" }, { postalCode: "H3M 3C6", cityName: "Cartierville Northeast, QC" }, { postalCode: "H4K 3A1", cityName: "Cartierville Southwest, QC" }, { postalCode: "A0K 1V0", cityName: "Cartwright, NL" }, { postalCode: "R0K 0L0", cityName: "Cartwright, MB" }, { postalCode: "A0N 1G0", cityName: "Cartyville, NL" }, { postalCode: "T0E 0H0", cityName: "Carvel, AB" }, { postalCode: "S7T 1B5", cityName: "Casa Rio, SK" }, { postalCode: "G0C 1T0", cityName: "Cascapedia-Saint-Jules, QC" }, { postalCode: "T0A 0R0", cityName: "Caslan, AB" }, { postalCode: "K0A 1M0", cityName: "Casselman, ON" }, { postalCode: "V0R 1H0", cityName: "Cassidy, BC" }, { postalCode: "E4E 3M6", cityName: "Cassidy Lake, NB" }, { postalCode: "E9E 2A3", cityName: "Cassilis, NB" }, { postalCode: "B1T 1H9", cityName: "Castle Bay, NS" }, { postalCode: "V1N 1A1", cityName: "Castlegar, BC" }, { postalCode: "K0K 1M0", cityName: "Castleton, ON" }, { postalCode: "T0C 0X0", cityName: "Castor, AB" }, { postalCode: "A0K 1W0", cityName: "Castors River, NL" }, { postalCode: "P0V 1J0", cityName: "Cat Lake, ON" }, { postalCode: "A0C 1J0", cityName: "Catalina, NL" }, { postalCode: "B1C 2B4", cityName: "Catalone Gut, NS" }, { postalCode: "N0E 1B0", cityName: "Cathcart, ON" }, { postalCode: "G0J 1A0", cityName: "Causapscal, QC" }, { postalCode: "L0A 1C0", cityName: "Cavan, ON" }, { postalCode: "A0B 1J0", cityName: "Cavendish, NL" }, { postalCode: "V0X 1C0", cityName: "Cawston, BC" }, { postalCode: "T0L 0P0", cityName: "Cayley, AB" }, { postalCode: "N0A 1E0", cityName: "Cayuga, ON" }, { postalCode: "J0S 1B0", cityName: "Cazaville, QC" }, { postalCode: "V0C 1G0", cityName: "Cecil Lake, BC" }, { postalCode: "V9X 1A1", cityName: "Cedar, BC" }, { postalCode: "E4E 3H4", cityName: "Cedar Camp, NB" }, { postalCode: "L0K 1C0", cityName: "Cedar Point, ON" }, { postalCode: "N0P 1E0", cityName: "Cedar Springs, ON" }, { postalCode: "L0G 1E0", cityName: "Cedar Valley, ON" }, { postalCode: "V0J 1G0", cityName: "Cedarvale, BC" }, { postalCode: "V0E 1L0", cityName: "Celista, BC" }, { postalCode: "T0C 0E0", cityName: "Central Alberta (Stettler), AB" }, { postalCode: "C0B 1G0", cityName: "Central Bedeque, PEI" }, { postalCode: "E5L 1P9", cityName: "Central Blissville, NB" }, { postalCode: "S0H 0T0", cityName: "Central Butte, SK" }, { postalCode: "T0M 0J0", cityName: "Central Foothills (Sundre), AB" }, { postalCode: "E5M 0A6", cityName: "Central Greenwich, NB" }, { postalCode: "E6E 1C5", cityName: "Central Hainesville, NB" }, { postalCode: "E5M 2A5", cityName: "Central Hampstead, NB" }, { postalCode: "V0R 1A0", cityName: "Central Island (Chemainus), BC" }, { postalCode: "A0P 1A0", cityName: "Central Labrador (Happy Valley-Goose Bay), NL" }, { postalCode: "A0H 1C0", cityName: "Central Newfoundland (Bishops Falls), NL" }, { postalCode: "X0E 0T0", cityName: "Central Northwest Territories (Inuvik), NT" }, { postalCode: "X0B 2A0", cityName: "Central Nunavut (Cambridge Bay), NU" }, { postalCode: "V0E 1A0", cityName: "Central Okanagan and High Country (Revelstoke), BC" }, { postalCode: "V8M 1A1", cityName: "Central Saanich, BC" }, { postalCode: "S0K 3Y0", cityName: "Central Saskatchewan (Humboldt), SK" }, { postalCode: "M5P 2B6", cityName: "Central Toronto (Forest Hill North &amp; West), ON" }, { postalCode: "M5N 3B2", cityName: "Central Toronto (Roselawn), ON" }, { postalCode: "M5R 3V7", cityName: "Central Toronto (The Annex / North Midtown / Yorkville), ON" }, { postalCode: "E6G 2H6", cityName: "Central Waterville, NB" }, { postalCode: "Y0B 1G0", cityName: "Central Yukon (Dawson City), YT" }, { postalCode: "N0M 1K0", cityName: "Centralia, ON" }, { postalCode: "B0N 1E0", cityName: "Centre Burlington, NS" }, { postalCode: "E4L 1Y1", cityName: "Centre Village, NB" }, { postalCode: "G0P 1A0", cityName: "Centre-du- Qu&eacute;bec-Est (Saint-Val&egrave;re), QC" }, { postalCode: "G0Z 1A0", cityName: "Centre-du- Qu&eacute;bec-Nord (Daveluyville), QC" }, { postalCode: "J0C 1A0", cityName: "Centre-du- Qu&eacute;bec-Ouest (Saint- Bonaventure), QC" }, { postalCode: "J0A 1A0", cityName: "Centre-du- Qu&eacute;bec-Sud (Warwick), QC" }, { postalCode: "H2K 4S9", cityName: "Centre-Sud North, QC" }, { postalCode: "H2L 5B7", cityName: "Centre-Sud South, QC" }, { postalCode: "E7K 1A4", cityName: "Centreville, NB" }, { postalCode: "B0P 1J0", cityName: "Centreville, NS" }, { postalCode: "K0K 1N0", cityName: "Centreville, ON" }, { postalCode: "T0J 0N0", cityName: "Cereal, AB" }, { postalCode: "T0J 0P0", cityName: "Cessford, AB" }, { postalCode: "S0C 0T0", cityName: "Ceylon, SK" }, { postalCode: "K0J 1J0", cityName: "Chalk River, ON" }, { postalCode: "S0G 0R0", cityName: "Chamberlain, SK" }, { postalCode: "E2A 6G3", cityName: "Chamberlain Settlement, NB" }, { postalCode: "E4E 3J4", cityName: "Chambers Settlement, NB" }, { postalCode: "J3L 6L8", cityName: "Chambly, QC" }, { postalCode: "J3L 0A1", cityName: "Chambly, QC" }, { postalCode: "E5B 0A6", cityName: "Chamcook, NB" }, { postalCode: "T0L 0R0", cityName: "Champion, AB" }, { postalCode: "G0X 1C0", cityName: "Champlain, QC" }, { postalCode: "J0Y 1E0", cityName: "Champneuf, QC" }, { postalCode: "A0B 1K0", cityName: "Chance Cove, NL" }, { postalCode: "G0C 1K0", cityName: "Chandler, QC" }, { postalCode: "A0G 1R0", cityName: "Change Islands, NL" }, { postalCode: "R0B 0C0", cityName: "Channing, MB" }, { postalCode: "G0W 1H0", cityName: "Chapais, QC" }, { postalCode: "J0X 1M0", cityName: "Chapeau, QC" }, { postalCode: "A0B 1L0", cityName: "Chapel Arm, NL" }, { postalCode: "A0A 1V0", cityName: "Chapel Cove, NL" }, { postalCode: "P0M 1K0", cityName: "Chapleau, ON" }, { postalCode: "S0H 0V0", cityName: "Chaplin, SK" }, { postalCode: "E1V 4V3", cityName: "Chaplin Island Road, NB" }, { postalCode: "T0P 1G0", cityName: "Chard, AB" }, { postalCode: "G0X 1E0", cityName: "Charette, QC" }, { postalCode: "N0P 1G0", cityName: "Charing Cross, ON" }, { postalCode: "G2L 3M3", cityName: "Charlesbourg North, QC" }, { postalCode: "G1H 7N8", cityName: "Charlesbourg South, QC" }, { postalCode: "A0C 1K0", cityName: "Charleston, NL" }, { postalCode: "E7K 1G4", cityName: "Charleston, NB" }, { postalCode: "G5A 3G3", cityName: "Charlevoix, QC" }, { postalCode: "E6H 1G3", cityName: "Charlie Lake, NB" }, { postalCode: "V0C 1H0", cityName: "Charlie Lake, BC" }, { postalCode: "E8E 0A1", cityName: "Charlo, NB" }, { postalCode: "E8E 2T2", cityName: "Charlo South, NB" }, { postalCode: "A0C 1L0", cityName: "Charlottetown, NL" }, { postalCode: "C1B 1M4", cityName: "Charlottetown, PEI" }, { postalCode: "A0K 5Y0", cityName: "Charlottetown LAB, NL" }, { postalCode: "C1C 1L7", cityName: "Charlottetown North, PEI" }, { postalCode: "C1A 9R6", cityName: "Charlottetown Southeast Prince Edward Island Provincial Government, PEI" }, { postalCode: "C1E 2M8", cityName: "Charlottetown West, PEI" }, { postalCode: "P0J 1B0", cityName: "Charlton, ON" }, { postalCode: "G6X 3T7", cityName: "Charny, QC" }, { postalCode: "E3C 0B3", cityName: "Charters Settlement, NB" }, { postalCode: "J0B 1K0", cityName: "Chartierville, QC" }, { postalCode: "V0E 1M0", cityName: "Chase, BC" }, { postalCode: "G0A 1N0", cityName: "Chateau-Richer, QC" }, { postalCode: "J6J 5Y1", cityName: "Chateauguay North, QC" }, { postalCode: "J6K 5J7", cityName: "Chateauguay South, QC" }, { postalCode: "T0H 0S0", cityName: "Chateh, AB" }, { postalCode: "J8G 2H5", cityName: "Chatham, QC" }, { postalCode: "N7L 5K5", cityName: "Chatham Northwest, ON" }, { postalCode: "N7M 6M7", cityName: "Chatham Southeast, ON" }, { postalCode: "N0H 1G0", cityName: "Chatsworth, ON" }, { postalCode: "G0S 1B0", cityName: "Chaudi&egrave;re-Nord (Saint-Joseph- De-Beauce), QC" }, { postalCode: "G0N 1C0", cityName: "Chaudi&egrave;re-Sud (Disraeli), QC" }, { postalCode: "T0B 0V0", cityName: "Chauvin, AB" }, { postalCode: "J0Z 1N0", cityName: "Chazel, QC" }, { postalCode: "S0E 0N0", cityName: "Chelan, SK" }, { postalCode: "E9E 2G7", cityName: "Chelmsford, NB" }, { postalCode: "P0M 1L0", cityName: "Chelmsford, ON" }, { postalCode: "J9B 0A1", cityName: "Chelsea, QC" }, { postalCode: "B4V 7K9", cityName: "Chelsea, NS" }, { postalCode: "L7C 0L9", cityName: "Cheltenham, ON" }, { postalCode: "V0R 1K0", cityName: "Chemainus, BC" }, { postalCode: "J0V 1E0", cityName: "Cheneville, QC" }, { postalCode: "N0G 1K0", cityName: "Chepstow, ON" }, { postalCode: "B2Z 1A5", cityName: "Cherry Brook, NS" }, { postalCode: "E4K 3B1", cityName: "Cherry Burton, NB" }, { postalCode: "T0A 0T0", cityName: "Cherry Grove, AB" }, { postalCode: "T0H 0T0", cityName: "Cherry Point, AB" }, { postalCode: "K0K 1P0", cityName: "Cherry Valley, ON" }, { postalCode: "V0E 2G1", cityName: "Cherryville, BC" }, { postalCode: "J0K 3K0", cityName: "Chertsey, QC" }, { postalCode: "N0G 1L0", cityName: "Chesley, ON" }, { postalCode: "B0J 1J0", cityName: "Chester, NS" }, { postalCode: "B0J 1K0", cityName: "Chester Basin, NS" }, { postalCode: "X0C 0B0", cityName: "Chesterfield Inlet, NU" }, { postalCode: "T1X 0A2", cityName: "Chestermere, AB" }, { postalCode: "G0P 1J0", cityName: "Chesterville, QC" }, { postalCode: "K0C 1H0", cityName: "Chesterville, ON" }, { postalCode: "B0E 1H0", cityName: "Cheticamp, NS" }, { postalCode: "V0C 1J0", cityName: "Chetwynd, BC" }, { postalCode: "B0N 1G0", cityName: "Cheverie, NS" }, { postalCode: "G0G 1G0", cityName: "Chevery, QC" }, { postalCode: "E8S 0A3", cityName: "Chiasson Office, NB" }, { postalCode: "G8P 2Z6", cityName: "Chibougamau, QC" }, { postalCode: "G7B 3N8", cityName: "Chicoutimi, QC" }, { postalCode: "G7H 8A1", cityName: "Chicoutimi East, QC" }, { postalCode: "G7G 5G9", cityName: "Chicoutimi North, QC" }, { postalCode: "G7K 1J3", cityName: "Chicoutimi Southwest, QC" }, { postalCode: "G7J 4W2", cityName: "Chicoutimi West, QC" }, { postalCode: "V0L 1H0", cityName: "Chilcotin (Alexis Creek), BC" }, { postalCode: "E4W 2K5", cityName: "Childs Creek, NB" }, { postalCode: "V2P 1A1", cityName: "Chilliwack Central, BC" }, { postalCode: "V4Z 1A1", cityName: "Chilliwack East, BC" }, { postalCode: "V2R 1A1", cityName: "Chilliwack West, BC" }, { postalCode: "T0J 0R0", cityName: "Chinook, AB" }, { postalCode: "T0B 0W0", cityName: "Chipman, AB" }, { postalCode: "J0M 1E0", cityName: "Chisasibi, QC" }, { postalCode: "T0G 0N0", cityName: "Chisholm Mills, AB" }, { postalCode: "S0J 0L0", cityName: "Chitek Lake, SK" }, { postalCode: "E5V 1P9", cityName: "Chocolate Cove, NB" }, { postalCode: "S0J 0M0", cityName: "Choiceland, SK" }, { postalCode: "H7S 1E1", cityName: "Chomedey, QC" }, { postalCode: "H7V 4B1", cityName: "Chomedey East, QC" }, { postalCode: "H7S 2P2", cityName: "Chomedey Northeast, QC" }, { postalCode: "H7T 3C5", cityName: "Chomedey Northwest, QC" }, { postalCode: "H7W 5N6", cityName: "Chomedey South, QC" }, { postalCode: "V0H 1E0", cityName: "Christina Lake, BC" }, { postalCode: "B1T 1C7", cityName: "Christmas Island, NS" }, { postalCode: "S0J 0N0", cityName: "Christopher Lake, SK" }, { postalCode: "B0W 1M0", cityName: "Church Point, NS" }, { postalCode: "S0A 0M0", cityName: "Churchbridge, SK" }, { postalCode: "L0L 1K0", cityName: "Churchill, ON" }, { postalCode: "R0B 0E0", cityName: "Churchill, MB" }, { postalCode: "K0B 1B0", cityName: "Chute a Blondeau, ON" }, { postalCode: "G0H 1C0", cityName: "Chute-aux-Outardes, QC" }, { postalCode: "E7A 1X6", cityName: "Clair, NB" }, { postalCode: "S0A 0N0", cityName: "Clair, SK" }, { postalCode: "T0H 0W0", cityName: "Clairmont, AB" }, { postalCode: "E4T 2J9", cityName: "Clairville, NB" }, { postalCode: "B0W 1N0", cityName: "Clam Point, NS" }, { postalCode: "R0C 0P0", cityName: "Clandeboye, MB" }, { postalCode: "T0B 0X0", cityName: "Clandonald, AB" }, { postalCode: "R0J 0K0", cityName: "Clanwilliam, MB" }, { postalCode: "L1Y 1A1", cityName: "Claremont, ON" }, { postalCode: "K0A 1N0", cityName: "Clarence Creek, ON" }, { postalCode: "J0J 1B0", cityName: "Clarenceville, QC" }, { postalCode: "E5K 4B7", cityName: "Clarendon, NB" }, { postalCode: "K0H 1J0", cityName: "Clarendon Station, ON" }, { postalCode: "A5A 1E5", cityName: "Clarenville, NL" }, { postalCode: "T0L 0T0", cityName: "Claresholm, AB" }, { postalCode: "G0G 1H0", cityName: "Clarke City, QC" }, { postalCode: "A0A 1W0", cityName: "Clarkes Beach, NL" }, { postalCode: "E4B 0A7", cityName: "Clarks Corner, NB" }, { postalCode: "B0W 1P0", cityName: "Clarks Harbour, NS" }, { postalCode: "N0H 1J0", cityName: "Clarksburg, ON" }, { postalCode: "E6E 1P4", cityName: "Clarkville, NB" }, { postalCode: "S0K 0Y0", cityName: "Clavet, SK" }, { postalCode: "S0H 0W0", cityName: "Claybank, SK" }, { postalCode: "S0N 0M0", cityName: "Claydon, SK" }, { postalCode: "V0C 1K0", cityName: "Clayhurst, BC" }, { postalCode: "K0A 1P0", cityName: "Clayton, ON" }, { postalCode: "N0E 1C0", cityName: "Clear Creek, ON" }, { postalCode: "T0H 3Y0", cityName: "Cleardale, AB" }, { postalCode: "E7L 1W8", cityName: "Clearview, NB" }, { postalCode: "R0K 0M0", cityName: "Clearwater, MB" }, { postalCode: "V0E 1N0", cityName: "Clearwater, BC" }, { postalCode: "P0X 1S0", cityName: "Clearwater Bay, ON" }, { postalCode: "S0M 3H0", cityName: "Clearwater River, SK" }, { postalCode: "B0S 1E0", cityName: "Clementsport, NS" }, { postalCode: "J0Z 1P0", cityName: "Clericy, QC" }, { postalCode: "G4A 1L9", cityName: "Clermont, QC" }, { postalCode: "J0Z 1R0", cityName: "Clerval, QC" }, { postalCode: "B0E 1J0", cityName: "Cleveland, NS" }, { postalCode: "J0B 2H0", cityName: "Cleveland, QC" }, { postalCode: "N0G 1M0", cityName: "Clifford, ON" }, { postalCode: "E2A 5L7", cityName: "Clifton, NB" }, { postalCode: "E5S 1K5", cityName: "Clifton Royal, NB" }, { postalCode: "S0N 0N0", cityName: "Climax, SK" }, { postalCode: "N0M 1L0", cityName: "Clinton, ON" }, { postalCode: "V0K 1K0", cityName: "Clinton, BC" }, { postalCode: "T0C 0Y0", cityName: "Clive, AB" }, { postalCode: "G0E 1G0", cityName: "Cloridorme, QC" }, { postalCode: "J0Z 1S0", cityName: "Cloutier, QC" }, { postalCode: "G0X 3M0", cityName: "Clova, QC" }, { postalCode: "E4E 0C1", cityName: "Clover Hill, NB" }, { postalCode: "E2S 1E5", cityName: "Clover Valley, NB" }, { postalCode: "E7P 1P7", cityName: "Cloverdale, NB" }, { postalCode: "K0H 1K0", cityName: "Cloyne, ON" }, { postalCode: "T0J 0S0", cityName: "Cluny, AB" }, { postalCode: "T0G 0P0", cityName: "Clyde, AB" }, { postalCode: "B0W 1R0", cityName: "Clyde River, NS" }, { postalCode: "A0K 1X0", cityName: "Coachmans Cove, NL" }, { postalCode: "E4T 2H1", cityName: "Coal Branch, NB" }, { postalCode: "E4A 2P9", cityName: "Coal Creek, NB" }, { postalCode: "V0N 1K0", cityName: "Coal Harbour, BC" }, { postalCode: "T1M 0A1", cityName: "Coaldale, AB" }, { postalCode: "T0L 0V0", cityName: "Coalhurst, AB" }, { postalCode: "V0X 1G0", cityName: "Coalmont, BC" }, { postalCode: "J1A 2V7", cityName: "Coaticook, QC" }, { postalCode: "N0P 1H0", cityName: "Coatsworth Station, ON" }, { postalCode: "P0J 1C0", cityName: "Cobalt, ON" }, { postalCode: "V0R 1L0", cityName: "Cobble Hill, BC" }, { postalCode: "K0J 1K0", cityName: "Cobden, ON" }, { postalCode: "B0M 1A0", cityName: "Cobequid Bay north shore (Springhill), NS" }, { postalCode: "K0M 1K0", cityName: "Coboconk, ON" }, { postalCode: "K9A 1A6", cityName: "Cobourg, ON" }, { postalCode: "E4M 1M2", cityName: "Coburg, NB" }, { postalCode: "E4R 1A3", cityName: "Cocagne, NB" }, { postalCode: "E4R 0A1", cityName: "Cocagne, NB" }, { postalCode: "P0V 1L0", cityName: "Cochenour, ON" }, { postalCode: "S0M 0L0", cityName: "Cochin, SK" }, { postalCode: "T4C 0A2", cityName: "Cochrane, AB" }, { postalCode: "P0L 1C0", cityName: "Cochrane, ON" }, { postalCode: "P0L 1A0", cityName: "Cochrane Region (Hearst), ON" }, { postalCode: "S0H 0X0", cityName: "Coderre, SK" }, { postalCode: "S0E 0P0", cityName: "Codette, SK" }, { postalCode: "K0K 1R0", cityName: "Codrington, ON" }, { postalCode: "A0N 1H0", cityName: "Codroy, NL" }, { postalCode: "E4C 0A2", cityName: "Codys, NB" }, { postalCode: "K0K 1S0", cityName: "Colborne, ON" }, { postalCode: "T9M 0A5", cityName: "Cold Lake, AB" }, { postalCode: "B4R 1B1", cityName: "Coldbrook, NS" }, { postalCode: "E7P 1P5", cityName: "Coldstream, NB" }, { postalCode: "L0K 1E0", cityName: "Coldwater, ON" }, { postalCode: "S0M 0M0", cityName: "Cole Bay, SK" }, { postalCode: "B2V 0A1", cityName: "Cole Harbour, NS" }, { postalCode: "B2W 0E1", cityName: "Cole Harbour, NS" }, { postalCode: "B2Z 1B9", cityName: "Cole Harbour, NS" }, { postalCode: "C0B 1H0", cityName: "Coleman, PEI" }, { postalCode: "T0K 0M0", cityName: "Coleman, AB" }, { postalCode: "E4C 0A7", cityName: "Coles Island Queens Co, NB" }, { postalCode: "S0L 0K0", cityName: "Coleville, SK" }, { postalCode: "A0A 1X0", cityName: "Coleys Point South, NL" }, { postalCode: "S0G 0S0", cityName: "Colfax, SK" }, { postalCode: "S0C 0V0", cityName: "Colgate, SK" }, { postalCode: "A0B 1M0", cityName: "Colinet, NL" }, { postalCode: "T0G 0R0", cityName: "Colinton, AB" }, { postalCode: "T4L 1Z5", cityName: "College Heights, AB" }, { postalCode: "E4Y 0A5", cityName: "Collette, NB" }, { postalCode: "A0A 1Y0", cityName: "Colliers Riverhead, NL" }, { postalCode: "E5P 1P7", cityName: "Collina, NB" }, { postalCode: "L9Y 5K8", cityName: "Collingwood, ON" }, { postalCode: "B0M 1E0", cityName: "Collingwood Corner, NS" }, { postalCode: "P0V 1M0", cityName: "Collins, ON" }, { postalCode: "G0H 1P0", cityName: "Colombier, QC" }, { postalCode: "S0K 0Z0", cityName: "Colonsay, SK" }, { postalCode: "X0E 1L0", cityName: "Colville Lake, NT" }, { postalCode: "N0P 1J0", cityName: "Comber, ON" }, { postalCode: "K0J 1L0", cityName: "Combermere, ON" }, { postalCode: "A0B 1N0", cityName: "Come by Chance, NL" }, { postalCode: "A0G 3K0", cityName: "Comfort Cove-Newstead, NL" }, { postalCode: "P0H 1J0", cityName: "Commanda, ON" }, { postalCode: "V9M 1A2", cityName: "Comox, BC" }, { postalCode: "T0C 1A0", cityName: "Compeer, AB" }, { postalCode: "J0B 1L0", cityName: "Compton, QC" }, { postalCode: "A1X 7L1", cityName: "Conception Bay, NL" }, { postalCode: "A0A 1Z0", cityName: "Conception Harbour, NL" }, { postalCode: "A0K 1Y0", cityName: "Conche, NL" }, { postalCode: "L4K 4Y4", cityName: "Concord, ON" }, { postalCode: "T0M 0P0", cityName: "Condor, AB" }, { postalCode: "N0B 1N0", cityName: "Conestogo, ON" }, { postalCode: "S0H 0Y0", cityName: "Congress, SK" }, { postalCode: "P0M 1M0", cityName: "Coniston, ON" }, { postalCode: "T0P 1H0", cityName: "Conklin, AB" }, { postalCode: "N0G 1N0", cityName: "Conn, ON" }, { postalCode: "A0H 1J0", cityName: "Conne River, NL" }, { postalCode: "E7P 2X9", cityName: "Connell, NB" }, { postalCode: "B4V 0G6", cityName: "Conquerall Bank, NS" }, { postalCode: "B4V 0P1", cityName: "Conquerall Mills, NS" }, { postalCode: "S0L 0L0", cityName: "Conquest, SK" }, { postalCode: "K0K 1T0", cityName: "Consecon, ON" }, { postalCode: "T0C 1B0", cityName: "Consort, AB" }, { postalCode: "S0N 0P0", cityName: "Consul, SK" }, { postalCode: "J0L 1C0", cityName: "Contrecoeur, QC" }, { postalCode: "T8E 1J2", cityName: "Cooking Lake, AB" }, { postalCode: "A0K 1Z0", cityName: "Cooks Harbour, NL" }, { postalCode: "J0B 1M0", cityName: "Cookshire, QC" }, { postalCode: "J0B 1M0", cityName: "Cookshire-Eaton, QC" }, { postalCode: "B4V 7N9", cityName: "Cookville, NS" }, { postalCode: "E4L 1S1", cityName: "Cookville, NB" }, { postalCode: "V0R 1M0", cityName: "Coombs, BC" }, { postalCode: "L0R 1J0", cityName: "Copetown, ON" }, { postalCode: "P0M 1N0", cityName: "Copper Cliff, ON" }, { postalCode: "S4L 1B3", cityName: "Coppersands, SK" }, { postalCode: "V3B 0A2", cityName: "Coquitlam, BC" }, { postalCode: "V3C 0A2", cityName: "Coquitlam, BC" }, { postalCode: "V3H 1A2", cityName: "Coquitlam, BC" }, { postalCode: "V3J 0A1", cityName: "Coquitlam, BC" }, { postalCode: "V3J 1A1", cityName: "Coquitlam North, BC" }, { postalCode: "V3K 1A2", cityName: "Coquitlam South, BC" }, { postalCode: "X0C 0C0", cityName: "Coral Harbour, NU" }, { postalCode: "P0H 1K0", cityName: "Corbeil, ON" }, { postalCode: "K0K 1V0", cityName: "Corbyville, ON" }, { postalCode: "K0J 1M0", cityName: "Cormac, ON" }, { postalCode: "A8A 2L1", cityName: "Cormack, NL" }, { postalCode: "S7P 1A1", cityName: "Corman Park, SK" }, { postalCode: "S7R 0H4", cityName: "Corman Park, SK" }, { postalCode: "S7T 1A1", cityName: "Corman Park, SK" }, { postalCode: "E4P 0B8", cityName: "Cormier-Village, NB" }, { postalCode: "R0B 0G0", cityName: "Cormorant, MB" }, { postalCode: "A2H 1A1", cityName: "Corner Brook, NL" }, { postalCode: "E4Z 1B1", cityName: "Cornhill, NB" }, { postalCode: "S0G 0T0", cityName: "Corning, SK" }, { postalCode: "C0A 1H0", cityName: "Cornwall, PEI" }, { postalCode: "C0A 1H0", cityName: "Cornwall, PEI" }, { postalCode: "K6H 1A4", cityName: "Cornwall East, ON" }, { postalCode: "K6K 1A1", cityName: "Cornwall North, ON" }, { postalCode: "K6J 1A1", cityName: "Cornwall West, ON" }, { postalCode: "B0S 1H0", cityName: "Cornwallis, NS" }, { postalCode: "S0H 0Z0", cityName: "Coronach, SK" }, { postalCode: "T0C 1C0", cityName: "Coronation, AB" }, { postalCode: "N0N 1G0", cityName: "Corunna, ON" }, { postalCode: "H3X 1R8", cityName: "Cote Saint-Luc, QC" }, { postalCode: "H4V 0A1", cityName: "Cote Saint-Luc, QC" }, { postalCode: "H4X 0A1", cityName: "Cote Saint-Luc, QC" }, { postalCode: "E8T 3H8", cityName: "Coteau Road, NB" }, { postalCode: "N0R 1B0", cityName: "Cottam, ON" }, { postalCode: "A0G 1S0", cityName: "Cottlesville, NL" }, { postalCode: "A0H 1L0", cityName: "Cottrells Cove, NL" }, { postalCode: "R0M 0G0", cityName: "Coulter, MB" }, { postalCode: "T8W 0H2", cityName: "County of Grande Prairie No. 1, AB" }, { postalCode: "T8X 0G4", cityName: "County of Grande Prairie No. 1, AB" }, { postalCode: "G0A 1R0", cityName: "Courcelette, QC" }, { postalCode: "G0M 1C0", cityName: "Courcelles, QC" }, { postalCode: "V9J 1A7", cityName: "Courtenay, BC" }, { postalCode: "V9N 1A1", cityName: "Courtenay Central, BC" }, { postalCode: "V9J 1A1", cityName: "Courtenay Northern Outskirts, BC" }, { postalCode: "L1E 2N5", cityName: "Courtice, ON" }, { postalCode: "L1C 3K4", cityName: "Courtice, ON" }, { postalCode: "N0J 1E0", cityName: "Courtland, ON" }, { postalCode: "N0N 1H0", cityName: "Courtright, ON" }, { postalCode: "S0H 1A0", cityName: "Courval, SK" }, { postalCode: "T0K 0N0", cityName: "Coutts, AB" }, { postalCode: "E1J 1A2", cityName: "Coverdale, NB" }, { postalCode: "B3G 0A4", cityName: "Cow Bay, NS" }, { postalCode: "A0K 2A0", cityName: "Cow Head, NL" }, { postalCode: "R0L 0L0", cityName: "Cowan, MB" }, { postalCode: "J2K 5B5", cityName: "Cowansville, QC" }, { postalCode: "S0G 5L0", cityName: "Cowessess, SK" }, { postalCode: "V0R 1N0", cityName: "Cowichan Bay, BC" }, { postalCode: "T0K 0P0", cityName: "Cowley, AB" }, { postalCode: "B1L 1B3", cityName: "Coxheath, NS" }, { postalCode: "B1R 1T1", cityName: "Coxheath, NS" }, { postalCode: "A0L 1C0", cityName: "Coxs Cove, NL" }, { postalCode: "J0K 1B0", cityName: "Crabtree, QC" }, { postalCode: "E7H 1T8", cityName: "Craig Flats, NB" }, { postalCode: "B9A 1A4", cityName: "Craigmore, NS" }, { postalCode: "T0J 0T0", cityName: "Craigmyle, AB" }, { postalCode: "S0G 0V0", cityName: "Craik, SK" }, { postalCode: "R0B 0H0", cityName: "Cranberry Portage, MB" }, { postalCode: "V1C 0A1", cityName: "Cranbrook, BC" }, { postalCode: "R0M 0H0", cityName: "Crandall, MB" }, { postalCode: "B9A 1W4", cityName: "Crandall Road, NS" }, { postalCode: "R0L 0M0", cityName: "Crane River, MB" }, { postalCode: "S0H 1B0", cityName: "Crane Valley, SK" }, { postalCode: "T0K 0R0", cityName: "Cranford, AB" }, { postalCode: "C0A 1J0", cityName: "Crapaud, PEI" }, { postalCode: "C0A 1J0", cityName: "Crapaud, PEI" }, { postalCode: "S0G 0W0", cityName: "Craven, SK" }, { postalCode: "V0B 1E0", cityName: "Crawford Bay, BC" }, { postalCode: "N0M 1M0", cityName: "Crediton, ON" }, { postalCode: "S0G 0X0", cityName: "Creelman, SK" }, { postalCode: "L0M 1G0", cityName: "Creemore, ON" }, { postalCode: "B9A 1B1", cityName: "Creignish, NS" }, { postalCode: "T0M 0R0", cityName: "Cremona, AB" }, { postalCode: "V0J 3E0", cityName: "Crescent Spur, BC" }, { postalCode: "V0G 1H0", cityName: "Crescent Valley, BC" }, { postalCode: "A0E 1K0", cityName: "Creston, NL" }, { postalCode: "V0B 1G0", cityName: "Creston, BC" }, { postalCode: "A0E 1L0", cityName: "Creston North, NL" }, { postalCode: "E3L 0A1", cityName: "Crocker Hill, NB" }, { postalCode: "V0R 1R0", cityName: "Crofton, BC" }, { postalCode: "E7G 1K5", cityName: "Crombie Settlement, NB" }, { postalCode: "R0M 0J0", cityName: "Cromer, MB" }, { postalCode: "T0H 0Y0", cityName: "Crooked Creek, AB" }, { postalCode: "S0E 0R0", cityName: "Crooked River, SK" }, { postalCode: "A0K 2B0", cityName: "Croque, NL" }, { postalCode: "E6B 1V3", cityName: "Cross Creek, NB" }, { postalCode: "R0B 0J0", cityName: "Cross Lake, MB" }, { postalCode: "B0H 1J0", cityName: "Cross Roads Country Harbour, NS" }, { postalCode: "T0M 0S0", cityName: "Crossfield, AB" }, { postalCode: "N0P 1K0", cityName: "Croton, ON" }, { postalCode: "B4V 0G2", cityName: "Crouses Settlement, NS" }, { postalCode: "B4V 6P4", cityName: "Crousetown, NS" }, { postalCode: "B0W 1S0", cityName: "Crowell, NS" }, { postalCode: "K0A 1R0", cityName: "Crysler, ON" }, { postalCode: "L0S 1B0", cityName: "Crystal Beach, ON" }, { postalCode: "R0K 0N0", cityName: "Crystal City, MB" }, { postalCode: "P0H 1L0", cityName: "Crystal Falls, ON" }, { postalCode: "S0K 1A0", cityName: "Crystal Springs, SK" }, { postalCode: "S0K 1B0", cityName: "Cudworth, SK" }, { postalCode: "V2R 4Y1", cityName: "Cultus Lake, BC" }, { postalCode: "K4C 1A1", cityName: "Cumberland, ON" }, { postalCode: "K4B 1P4", cityName: "Cumberland, ON" }, { postalCode: "V0R 1S0", cityName: "Cumberland, BC" }, { postalCode: "E4A 0A2", cityName: "Cumberland Bay, NB" }, { postalCode: "L0K 1G0", cityName: "Cumberland Beach, ON" }, { postalCode: "S0E 0S0", cityName: "Cumberland House, SK" }, { postalCode: "K4B 1J2", cityName: "Cumberland Township, ON" }, { postalCode: "E5V 1G4", cityName: "Cummings Cove, NB" }, { postalCode: "S0G 0Y0", cityName: "Cupar, SK" }, { postalCode: "A0A 2B0", cityName: "Cupids, NL" }, { postalCode: "K0B 1C0", cityName: "Curran, ON" }, { postalCode: "E7H 0A6", cityName: "Currie Siding, NB" }, { postalCode: "E6B 0A2", cityName: "Currieburg, NB" }, { postalCode: "B0N 1H0", cityName: "Currys Corner, NS" }, { postalCode: "E4H 1X3", cityName: "Curryville, NB" }, { postalCode: "K0L 1R0", cityName: "Curve Lake, ON" }, { postalCode: "E9E 1M1", cityName: "Curventon, NB" }, { postalCode: "S0M 0N0", cityName: "Cut Knife, SK" }, { postalCode: "S0G 0Z0", cityName: "Cymric, SK" }, { postalCode: "T0E 0K0", cityName: "Cynthia, AB" }, { postalCode: "T1B 0H7", cityName: "Cypress County, AB" }, { postalCode: "R0K 0P0", cityName: "Cypress River, MB" }, { postalCode: "T0B 0Z0", cityName: "Czar, AB" }, { postalCode: "J9X 5A3", cityName: "D\'Alembert, QC" }, { postalCode: "V0N 1L0", cityName: "D\'Arcy, BC" }, { postalCode: "S0L 0N0", cityName: "D\'Arcy Station, SK" }, { postalCode: "B0E 1K0", cityName: "D\'Escousse, NS" }, { postalCode: "R4K 1C1", cityName: "Dacotah, MB" }, { postalCode: "K0J 1N0", cityName: "Dacre, ON" }, { postalCode: "S0K 1C0", cityName: "Dafoe, SK" }, { postalCode: "R1N 3X6", cityName: "Dakota Tipi, MB" }, { postalCode: "B1Y 2N6", cityName: "Dalem Lake, NS" }, { postalCode: "T0J 0V0", cityName: "Dalemead, AB" }, { postalCode: "E8C 1E7", cityName: "Dalhousie, NB" }, { postalCode: "J0P 1G0", cityName: "Dalhousie, QC" }, { postalCode: "E3N 5X1", cityName: "Dalhousie Junction, NB" }, { postalCode: "R0C 0S0", cityName: "Dallas, MB" }, { postalCode: "G0W 1K0", cityName: "Dalmas, QC" }, { postalCode: "S0K 1E0", cityName: "Dalmeny, SK" }, { postalCode: "E5N 0A3", cityName: "Damascus, NB" }, { postalCode: "S0A 0P0", cityName: "Danbury, SK" }, { postalCode: "B4V 8N9", cityName: "Danesville, NS" }, { postalCode: "J0X 1P0", cityName: "Danford Lake, QC" }, { postalCode: "A0K 2C0", cityName: "Daniels Harbour, NL" }, { postalCode: "T0G 0S0", cityName: "Dapp, AB" }, { postalCode: "V0E 1R0", cityName: "Darfield, BC" }, { postalCode: "R0G 0L0", cityName: "Darlingford, MB" }, { postalCode: "E5N 2E2", cityName: "Darlings Island, NB" }, { postalCode: "B2Z 1B3", cityName: "Dartmouth East, NS" }, { postalCode: "B2W 1A1", cityName: "Dartmouth East Central, NS" }, { postalCode: "B2V 1L5", cityName: "Dartmouth Morris Lake, NS" }, { postalCode: "B2X 1A1", cityName: "Dartmouth North Central, NS" }, { postalCode: "B3B 1A1", cityName: "Dartmouth Northwest, NS" }, { postalCode: "B2Y 3Y1", cityName: "Dartmouth South Central, NS" }, { postalCode: "B3A 1A1", cityName: "Dartmouth Southwest, NS" }, { postalCode: "T0E 0L0", cityName: "Darwell, AB" }, { postalCode: "N0M 1N0", cityName: "Dashwood, ON" }, { postalCode: "R7N 0P7", cityName: "Dauphin, MB" }, { postalCode: "E8J 2C6", cityName: "Dauversiere, NB" }, { postalCode: "G0Z 1C0", cityName: "Daveluyville, QC" }, { postalCode: "J0X 1R0", cityName: "Davidson, QC" }, { postalCode: "S0G 1A0", cityName: "Davidson, SK" }, { postalCode: "S0G 1B0", cityName: "Davin, SK" }, { postalCode: "V1G 0A2", cityName: "Dawson Creek, BC" }, { postalCode: "V0N 1M0", cityName: "Dawsons Landing, BC" }, { postalCode: "E3N 4V3", cityName: "Dawsonville, NB" }, { postalCode: "T0B 1A0", cityName: "Daysland, AB" }, { postalCode: "B4V 5P1", cityName: "Dayspring, NS" }, { postalCode: "T0L 0X0", cityName: "De Winton, AB" }, { postalCode: "E6H 1S8", cityName: "Dead Creek, NB" }, { postalCode: "T1W 2W4", cityName: "Dead Man\'s Flats, AB" }, { postalCode: "A0G 1V0", cityName: "Deadmans Bay, NL" }, { postalCode: "T0H 1A0", cityName: "Deadwood, AB" }, { postalCode: "V0C 1L0", cityName: "Dease Lake, BC" }, { postalCode: "S0J 0S0", cityName: "Debden, SK" }, { postalCode: "E7N 1Z3", cityName: "Debec, NB" }, { postalCode: "B0M 1G0", cityName: "Debert, NS" }, { postalCode: "T0H 1B0", cityName: "Debolt, AB" }, { postalCode: "R0M 0K0", cityName: "Decker, MB" }, { postalCode: "A0G 1W0", cityName: "Deep Bay, NL" }, { postalCode: "B0S 1J0", cityName: "Deep Brook, NS" }, { postalCode: "K0J 1P0", cityName: "Deep River, ON" }, { postalCode: "E5V 1A1", cityName: "Deer Island, NB" }, { postalCode: "A8A 1E4", cityName: "Deer Lake, NL" }, { postalCode: "P0V 1N0", cityName: "Deer Lake, ON" }, { postalCode: "S2V 1B5", cityName: "Deer Valley, SK" }, { postalCode: "E7L 1W5", cityName: "Deersdale, NB" }, { postalCode: "E7K 1C1", cityName: "Deerville, NB" }, { postalCode: "G5T 2K3", cityName: "Degelis, QC" }, { postalCode: "T0K 0S0", cityName: "Del Bonita, AB" }, { postalCode: "T0M 0T0", cityName: "Delacour, AB" }, { postalCode: "N0L 1E0", cityName: "Delaware, ON" }, { postalCode: "T0M 0V0", cityName: "Delburne, AB" }, { postalCode: "J9E 2V7", cityName: "Deleage, QC" }, { postalCode: "R0M 0L0", cityName: "Deleau, MB" }, { postalCode: "N4B 3B4", cityName: "Delhi, ON" }, { postalCode: "T0J 0W0", cityName: "Delia, AB" }, { postalCode: "X0E 0G0", cityName: "Deline, NT" }, { postalCode: "S0L 0P0", cityName: "Delisle, SK" }, { postalCode: "S0M 0P0", cityName: "Delmas, SK" }, { postalCode: "R0M 0M0", cityName: "Deloraine, MB" }, { postalCode: "J5B 1A7", cityName: "Delson, QC" }, { postalCode: "K0E 1G0", cityName: "Delta, ON" }, { postalCode: "V3M 3M1", cityName: "Delta, BC" }, { postalCode: "V4K 1A1", cityName: "Delta Central, BC" }, { postalCode: "V4E 0A1", cityName: "Delta East, BC" }, { postalCode: "V4G 0A1", cityName: "Delta East Central, BC" }, { postalCode: "V4C 1A1", cityName: "Delta Northeast, BC" }, { postalCode: "V4L 1A1", cityName: "Delta Southeast, BC" }, { postalCode: "V4M 1A1", cityName: "Delta Southwest, BC" }, { postalCode: "S0L 0R0", cityName: "Demaine, SK" }, { postalCode: "T0H 1C0", cityName: "Demmitt, AB" }, { postalCode: "K0K 1W0", cityName: "Demorestville, ON" }, { postalCode: "S0P 0B0", cityName: "Denare Beach, SK" }, { postalCode: "K0H 1L0", cityName: "Denbigh, ON" }, { postalCode: "N0M 1P0", cityName: "Denfield, ON" }, { postalCode: "J0X 2C0", cityName: "Denholm, QC" }, { postalCode: "J8N 1G9", cityName: "Denholm, QC" }, { postalCode: "S0M 0R0", cityName: "Denholm, SK" }, { postalCode: "V0R 1T0", cityName: "Denman Island, BC" }, { postalCode: "E4H 2C4", cityName: "Dennis Beach, NB" }, { postalCode: "V0T 1B0", cityName: "Denny Island, BC" }, { postalCode: "B0N 1J0", cityName: "Densmores Mills, NS" }, { postalCode: "T0B 1B0", cityName: "Denwood, AB" }, { postalCode: "S0L 0S0", cityName: "Denzil, SK" }, { postalCode: "E1V 0C1", cityName: "Derby, NB" }, { postalCode: "E1V 5A9", cityName: "Derby Junction, NB" }, { postalCode: "V0M 1G0", cityName: "Deroche, BC" }, { postalCode: "T0B 1C0", cityName: "Derwent, AB" }, { postalCode: "P0R 1E0", cityName: "Desbarats, ON" }, { postalCode: "G0W 1N0", cityName: "Desbiens, QC" }, { postalCode: "N0H 1K0", cityName: "Desboro, ON" }, { postalCode: "G0S 1G0", cityName: "Deschaillons-sur-Saint-Laurent, QC" }, { postalCode: "G0A 1S0", cityName: "Deschambault, QC" }, { postalCode: "S0P 0C0", cityName: "Deschambault Lake, SK" }, { postalCode: "K0K 1X0", cityName: "Deseronto, ON" }, { postalCode: "T1B 0A4", cityName: "Desert Blume, AB" }, { postalCode: "J0Y 1H0", cityName: "Desmaraisville, QC" }, { postalCode: "J0Z 1V0", cityName: "Desmeloizes, QC" }, { postalCode: "J9X 5A3", cityName: "Destor, QC" }, { postalCode: "Y0B 1H0", cityName: "Destruction Bay, YT" }, { postalCode: "K0J 1R0", cityName: "Deux Rivieres, ON" }, { postalCode: "P0W 1C0", cityName: "Devlin, ON" }, { postalCode: "T9G 0A5", cityName: "Devon, AB" }, { postalCode: "T0B 1G0", cityName: "Dewberry, AB" }, { postalCode: "V0M 1H0", cityName: "Dewdney, BC" }, { postalCode: "J0S 1C0", cityName: "Dewittville, QC" }, { postalCode: "E5A 1K6", cityName: "Dewolfe, NB" }, { postalCode: "T0K 0T0", cityName: "Diamond City, AB" }, { postalCode: "T0M 0W0", cityName: "Didsbury, AB" }, { postalCode: "E1A 1A1", cityName: "Dieppe Moncton East, NB" }, { postalCode: "B0V 1A0", cityName: "Digby Neck (Digby), NS" }, { postalCode: "E5C 1T7", cityName: "Digdeguash, NB" }, { postalCode: "A0B 1P0", cityName: "Dildo, NL" }, { postalCode: "B0M 1H0", cityName: "Diligent River, NS" }, { postalCode: "S0G 1C0", cityName: "Dilke, SK" }, { postalCode: "S0M 0S0", cityName: "Dillon, SK" }, { postalCode: "B0C 1G0", cityName: "Dingwall, NS" }, { postalCode: "P0V 1P0", cityName: "Dinorwic, ON" }, { postalCode: "S0L 0T0", cityName: "Dinsmore, SK" }, { postalCode: "E5J 1W2", cityName: "Dipper Harbour, NB" }, { postalCode: "G0N 1E0", cityName: "Disraeli, QC" }, { postalCode: "E7L 1K6", cityName: "Divide, NB" }, { postalCode: "T0H 1E0", cityName: "Dixonville, AB" }, { postalCode: "J0B 1P0", cityName: "Dixville, QC" }, { postalCode: "E9C 1J8", cityName: "Doaktown, NB" }, { postalCode: "E9C 1A1", cityName: "Doaktown, NB" }, { postalCode: "N0H 1L0", cityName: "Dobbinton, ON" }, { postalCode: "P0K 1B0", cityName: "Dobie, ON" }, { postalCode: "E4Z 1K8", cityName: "Dobson Corner, NB" }, { postalCode: "S0L 0V0", cityName: "Dodsland, SK" }, { postalCode: "V0L 1J0", cityName: "Dog Creek, BC" }, { postalCode: "G8L 6H6", cityName: "Dolbeau- Mistassini, QC" }, { postalCode: "S0N 0S0", cityName: "Dollard, SK" }, { postalCode: "H9B 3M6", cityName: "Dollard-Des- Ormeaux East, QC" }, { postalCode: "H9A 3K5", cityName: "Dollard-Des- Ormeaux Northwest, QC" }, { postalCode: "H9G 3C7", cityName: "Dollard-Des- Ormeaux Southwest, QC" }, { postalCode: "H8Y 3B7", cityName: "Dollard-Des-Ormeaux, QC" }, { postalCode: "H9A 0A1", cityName: "Dollard-Des-Ormeaux, QC" }, { postalCode: "H9H 1L2", cityName: "Dollard-Des-Ormeaux, QC" }, { postalCode: "R0G 0M0", cityName: "Domain, MB" }, { postalCode: "V0J 1H0", cityName: "Dome Creek, BC" }, { postalCode: "B1G 1A3", cityName: "Dominion, NS" }, { postalCode: "R0A 0H0", cityName: "Dominion City, MB" }, { postalCode: "S0K 1G0", cityName: "Domremy, SK" }, { postalCode: "M3B 3S5", cityName: "Don Mills North, ON" }, { postalCode: "M3C 4G9", cityName: "Don Mills South (Flemingdon Park), ON" }, { postalCode: "T0B 1H0", cityName: "Donalda, AB" }, { postalCode: "E4E 3K3", cityName: "Donegal, NB" }, { postalCode: "B1A 6M7", cityName: "Donkin, NS" }, { postalCode: "G3M 2X8", cityName: "Donnacona, QC" }, { postalCode: "T0H 1G0", cityName: "Donnelly, AB" }, { postalCode: "E4K 1A2", cityName: "Dorchester, NB" }, { postalCode: "E4K 2W8", cityName: "Dorchester, NB" }, { postalCode: "N0L 1G0", cityName: "Dorchester, ON" }, { postalCode: "E4K 3J3", cityName: "Dorchester Cape, NB" }, { postalCode: "P0T 1K0", cityName: "Dorion, ON" }, { postalCode: "T0J 0X0", cityName: "Dorothy, AB" }, { postalCode: "E6H 1A1", cityName: "Dorrington Hill, NB" }, { postalCode: "P0A 1E0", cityName: "Dorset, ON" }, { postalCode: "H4S 1Y9", cityName: "Dorval, QC" }, { postalCode: "H4Y 0A4", cityName: "Dorval, QC" }, { postalCode: "H9R 4M9", cityName: "Dorval, QC" }, { postalCode: "H4Y 1K1", cityName: "Dorval Central, QC" }, { postalCode: "H9P 2Z3", cityName: "Dorval Outskirts, QC" }, { postalCode: "G0S 1H0", cityName: "Dosquet, QC" }, { postalCode: "E3A 9N5", cityName: "Douglas, NB" }, { postalCode: "K0J 1S0", cityName: "Douglas, ON" }, { postalCode: "R0K 0R0", cityName: "Douglas, MB" }, { postalCode: "E4B 0A2", cityName: "Douglas Harbour, NB" }, { postalCode: "V0E 1S0", cityName: "Douglas Lake, BC" }, { postalCode: "K0L 1S0", cityName: "Douro, ON" }, { postalCode: "A0G 1X0", cityName: "Dover, NL" }, { postalCode: "N0P 1L0", cityName: "Dover Centre, ON" }, { postalCode: "E6H 1B8", cityName: "Dow Settlement, NB" }, { postalCode: "P0M 1R0", cityName: "Dowling, ON" }, { postalCode: "M3M 2N4", cityName: "Downsview Central, ON" }, { postalCode: "M3K 2C8", cityName: "Downsview East (CFB Toronto), ON" }, { postalCode: "M3L 2N6", cityName: "Downsview West, ON" }, { postalCode: "H3B 5M2", cityName: "Downtown Montreal East, QC" }, { postalCode: "H3A 6T6", cityName: "Downtown Montreal North, QC" }, { postalCode: "H2Z 2B9", cityName: "Downtown Montreal Northeast, QC" }, { postalCode: "H3H 0A1", cityName: "Downtown Montreal South &amp; West, QC" }, { postalCode: "H3G 2V1", cityName: "Downtown Montreal Southeast, QC" }, { postalCode: "M5E 0A1", cityName: "Downtown Toronto (Berczy Park), ON" }, { postalCode: "M5G 2R5", cityName: "Downtown Toronto (Central Bay Street), ON" }, { postalCode: "M6G 4C1", cityName: "Downtown Toronto (Christie), ON" }, { postalCode: "M4Y 3G5", cityName: "Downtown Toronto (Church and Wellesley), ON" }, { postalCode: "M5V 3X3", cityName: "Downtown Toronto (CN Tower / King and Spadina / Railway Lands / Harbourfront West / Bathurst Quay / South Niagara / YTZ), ON" }, { postalCode: "M5L 1L7", cityName: "Downtown Toronto (Commerce Court / Victoria Hotel), ON" }, { postalCode: "M5J 3A8", cityName: "Downtown Toronto (Harbourfront East / Union Station / Toronto Island), ON" }, { postalCode: "M5T 3L6", cityName: "Downtown Toronto (Kensington Market / Chinatown / Grange Park), ON" }, { postalCode: "M5A 1A1", cityName: "Downtown Toronto (Regent Park / Port of Toronto), ON" }, { postalCode: "M5H 4H1", cityName: "Downtown Toronto (Richmond / Adelaide / King), ON" }, { postalCode: "M4W 3V1", cityName: "Downtown Toronto (Rosedale), ON" }, { postalCode: "M5B 2S1", cityName: "Downtown Toronto (Ryerson), ON" }, { postalCode: "M5C 1B5", cityName: "Downtown Toronto (St. James Park), ON" }, { postalCode: "M4X 1X8", cityName: "Downtown Toronto (St. James Town / Cabbagetown), ON" }, { postalCode: "M5K 1P2", cityName: "Downtown Toronto (Toronto Dominion Centre / Design Exchange), ON" }, { postalCode: "M5X 1L1", cityName: "Downtown Toronto (Underground city), ON" }, { postalCode: "M5S 3M5", cityName: "Downtown Toronto (University of Toronto / Harbord), ON" }, { postalCode: "M5W 7A6", cityName: "Downtown Toronto Stn A PO Boxes 25 The Esplanade (Enclave of M5E), ON" }, { postalCode: "A0N 1J0", cityName: "Doyles, NL" }, { postalCode: "E9E 0A1", cityName: "Doyles Brook, NB" }, { postalCode: "S0K 1H0", cityName: "Drake, SK" }, { postalCode: "N0G 1P0", cityName: "Drayton, ON" }, { postalCode: "T7A 0A1", cityName: "Drayton Valley, AB" }, { postalCode: "N0P 1M0", cityName: "Dresden, ON" }, { postalCode: "T0G 0V0", cityName: "Driftpile, AB" }, { postalCode: "P0L 1E0", cityName: "Driftwood, ON" }, { postalCode: "S0H 1G0", cityName: "Drinkwater, SK" }, { postalCode: "R0J 0L0", cityName: "Dropmore, MB" }, { postalCode: "N0J 1G0", cityName: "Drumbo, ON" }, { postalCode: "T0J 0Y0", cityName: "Drumheller, AB" }, { postalCode: "E3Y 1H6", cityName: "Drummond, NB" }, { postalCode: "J2A 0C4", cityName: "Drummondville, QC" }, { postalCode: "J2C 0A1", cityName: "Drummondville, QC" }, { postalCode: "J2C 8W6", cityName: "Drummondville Central, QC" }, { postalCode: "J2E 1W2", cityName: "Drummondville Northwest, QC" }, { postalCode: "J2B 8R2", cityName: "Drummondville South, QC" }, { postalCode: "J2A 4J8", cityName: "Drummondville Southeast, QC" }, { postalCode: "E4E 3K7", cityName: "Drurys Cove, NB" }, { postalCode: "P8N 3L6", cityName: "Dryden, ON" }, { postalCode: "E3Y 0A4", cityName: "DSL de Drummond, NB" }, { postalCode: "E3Z 0A4", cityName: "DSL de Grand-Sault/Falls, NB" }, { postalCode: "N0L 1H0", cityName: "Duart, ON" }, { postalCode: "N0K 1E0", cityName: "Dublin, ON" }, { postalCode: "P0S 1B0", cityName: "Dubreuilville, ON" }, { postalCode: "S0A 0R0", cityName: "Dubuc, SK" }, { postalCode: "T0J 0Z0", cityName: "Duchess, AB" }, { postalCode: "R0L 0N0", cityName: "Duck Bay, MB" }, { postalCode: "S0K 1J0", cityName: "Duck Lake, SK" }, { postalCode: "J0X 1S0", cityName: "Duclos, QC" }, { postalCode: "S0A 0S0", cityName: "Duff, SK" }, { postalCode: "E3L 2Y9", cityName: "Dufferin Charlotte Co, NB" }, { postalCode: "L0N 1A0", cityName: "Dufferin County (Shelburne), ON" }, { postalCode: "E4A 2P4", cityName: "Dufferin Queens Co, NB" }, { postalCode: "T0E 0N0", cityName: "Duffield, AB" }, { postalCode: "R0A 0J0", cityName: "Dufresne, MB" }, { postalCode: "R0A 0K0", cityName: "Dufrost, MB" }, { postalCode: "R0E 0K0", cityName: "Dugald, MB" }, { postalCode: "E8N 1L6", cityName: "Dugas, NB" }, { postalCode: "E8M 1J9", cityName: "Duguayville, NB" }, { postalCode: "J0V 1G0", cityName: "Duhamel, QC" }, { postalCode: "J9V 0A1", cityName: "Duhamel-Ouest, QC" }, { postalCode: "E6G 1N9", cityName: "Dumfries, NB" }, { postalCode: "S0H 1H0", cityName: "Dummer, SK" }, { postalCode: "V9L 0A8", cityName: "Duncan, BC" }, { postalCode: "B3V 1K4", cityName: "Duncans Cove, NS" }, { postalCode: "P0A 1G0", cityName: "Dunchurch, ON" }, { postalCode: "N0C 1B0", cityName: "Dundalk, ON" }, { postalCode: "L9H 7T6", cityName: "Dundas, ON" }, { postalCode: "E1G 3K2", cityName: "Dundas, NB" }, { postalCode: "E8E 1V8", cityName: "Dundee, NB" }, { postalCode: "S0K 1K0", cityName: "Dundurn, SK" }, { postalCode: "N0M 1R0", cityName: "Dungannon, ON" }, { postalCode: "J0E 1M0", cityName: "Dunham, QC" }, { postalCode: "E8K 0A3", cityName: "Dunlop, NB" }, { postalCode: "T1B 0J3", cityName: "Dunmore, AB" }, { postalCode: "N1A 3H3", cityName: "Dunnville, ON" }, { postalCode: "R0K 0S0", cityName: "Dunrea, MB" }, { postalCode: "K0A 1T0", cityName: "Dunrobin, ON" }, { postalCode: "E4G 0A6", cityName: "Dunsinane, NB" }, { postalCode: "V0J 1J0", cityName: "Dunster, BC" }, { postalCode: "A0C 1M0", cityName: "Duntara, NL" }, { postalCode: "L0M 1H0", cityName: "Duntroon, ON" }, { postalCode: "K0C 1J0", cityName: "Dunvegan, ON" }, { postalCode: "A0B 1S0", cityName: "Dunville, NL" }, { postalCode: "J0Z 1W0", cityName: "Duparquet, QC" }, { postalCode: "S0K 1L0", cityName: "Duperow, SK" }, { postalCode: "J0Z 1X0", cityName: "Dupuy, QC" }, { postalCode: "R0L 0P0", cityName: "Durban, MB" }, { postalCode: "N0G 1R0", cityName: "Durham, ON" }, { postalCode: "E6C 1A1", cityName: "Durham Bridge, NB" }, { postalCode: "E6C 1A3", cityName: "Durham Bridge, NB" }, { postalCode: "J0H 2C0", cityName: "Durham-Sud, QC" }, { postalCode: "A0G 1Y0", cityName: "Durrell, NL" }, { postalCode: "B1L 1E9", cityName: "Dutch Brook, NS" }, { postalCode: "B1M 1B2", cityName: "Dutch Brook, NS" }, { postalCode: "B2S 2C4", cityName: "Dutch Settlement, NS" }, { postalCode: "E4E 3G8", cityName: "Dutch Valley, NB" }, { postalCode: "N0L 1J0", cityName: "Dutton, ON" }, { postalCode: "S0G 1G0", cityName: "Duval, SK" }, { postalCode: "H7E 5N2", cityName: "Duvernay, QC" }, { postalCode: "H7A 4J9", cityName: "Duvernay-Est, QC" }, { postalCode: "P0A 1H0", cityName: "Dwight, ON" }, { postalCode: "S0G 1H0", cityName: "Dysart, SK" }, { postalCode: "P0T 1L0", cityName: "Eabamet Lake, ON" }, { postalCode: "V0E 1T0", cityName: "Eagle Bay, BC" }, { postalCode: "V0K 1L0", cityName: "Eagle Creek, BC" }, { postalCode: "K0M 1M0", cityName: "Eagle Lake, ON" }, { postalCode: "P0V 1S0", cityName: "Eagle River, ON" }, { postalCode: "T0H 1H0", cityName: "Eaglesham, AB" }, { postalCode: "S0G 1J0", cityName: "Earl Grey, SK" }, { postalCode: "P0J 1E0", cityName: "Earlton, ON" }, { postalCode: "J0B 1R0", cityName: "East Angus, QC" }, { postalCode: "B0W 1T0", cityName: "East Baccaro, NS" }, { postalCode: "B1J 2A9", cityName: "East Bay, NS" }, { postalCode: "B1J 1A1", cityName: "East Bay, NS" }, { postalCode: "R0E 0L0", cityName: "East Braintree, MB" }, { postalCode: "E4W 0E2", cityName: "East Branch, NB" }, { postalCode: "G0N 1G0", cityName: "East Broughton, QC" }, { postalCode: "G0N 1H0", cityName: "East Broughton Station, QC" }, { postalCode: "E7K 0A2", cityName: "East Centreville, NB" }, { postalCode: "B0J 1N0", cityName: "East Chezzetcook, NS" }, { postalCode: "B4V 7R8", cityName: "East Clifford, NS" }, { postalCode: "E7L 0A7", cityName: "East Coldstream, NB" }, { postalCode: "T0J 1B0", cityName: "East Coulee, AB" }, { postalCode: "B3Z 3T7", cityName: "East Dover, NS" }, { postalCode: "L0B 1A0", cityName: "East Durham Regional Municipality (Orono), ON" }, { postalCode: "J2K 4E7", cityName: "East Farnham, QC" }, { postalCode: "B2S 0A4", cityName: "East Gore, NS" }, { postalCode: "L9N 0A3", cityName: "East Gwillimbury, ON" }, { postalCode: "L0R 1A0", cityName: "East Haldimand County (Waterdown), ON" }, { postalCode: "J0B 1S0", cityName: "East Hereford, QC" }, { postalCode: "V0B 1A0", cityName: "East Kootenays (Fernie), BC" }, { postalCode: "B4V 0V5", cityName: "East Lahave, NS" }, { postalCode: "B2Z 1N5", cityName: "East Lawrencetown, NS" }, { postalCode: "E7N 1L2", cityName: "East Newbridge, NB" }, { postalCode: "B3V 1L8", cityName: "East Pennant, NS" }, { postalCode: "B2Z 1E9", cityName: "East Preston, NS" }, { postalCode: "R0E 0M0", cityName: "East Selkirk, MB" }, { postalCode: "R2G 1H1", cityName: "East St Paul, MB" }, { postalCode: "R2E 0C9", cityName: "East St. Paul, MB" }, { postalCode: "M3C 1R7", cityName: "East York, ON" }, { postalCode: "M4A 2X6", cityName: "East York, ON" }, { postalCode: "M4J 1W2", cityName: "East York, ON" }, { postalCode: "M4K 1X1", cityName: "East York, ON" }, { postalCode: "M4W 2E6", cityName: "East York, ON" }, { postalCode: "M4G 4E7", cityName: "East York (Leaside), ON" }, { postalCode: "M4B 3M8", cityName: "East York (Parkview Hill / Woodbine Gardens), ON" }, { postalCode: "M4H 1R4", cityName: "East York (Thorncliffe Park), ON" }, { postalCode: "M4C 5T2", cityName: "East York (Woodbine Heights), ON" }, { postalCode: "S0N 0T0", cityName: "Eastend, SK" }, { postalCode: "T0A 1E0", cityName: "Eastern Alberta (St. Paul), AB" }, { postalCode: "R0E 0C0", cityName: "Eastern Manitoba (Beausejour), MB" }, { postalCode: "B3G 1A1", cityName: "Eastern Passage, NS" }, { postalCode: "S0E 0A0", cityName: "Eastern Saskatchewan (Melfort), SK" }, { postalCode: "R0C 0V0", cityName: "Easterville, MB" }, { postalCode: "J0M 1W0", cityName: "Eastmain, QC" }, { postalCode: "J0E 1P0", cityName: "Eastman, QC" }, { postalCode: "A0G 1Z0", cityName: "Eastport, NL" }, { postalCode: "S0L 0Y0", cityName: "Eatonia, SK" }, { postalCode: "R0L 0R0", cityName: "Ebb and Flow, MB" }, { postalCode: "S0A 0T0", cityName: "Ebenezer, SK" }, { postalCode: "P0S 1C0", cityName: "Echo Bay, ON" }, { postalCode: "T0M 0X0", cityName: "Eckville, AB" }, { postalCode: "B0M 1J0", cityName: "Economy, NS" }, { postalCode: "S0M 0V0", cityName: "Edam, SK" }, { postalCode: "T0B 1J0", cityName: "Edberg, AB" }, { postalCode: "A0K 2G0", cityName: "Eddies Cove, NL" }, { postalCode: "A0K 2H0", cityName: "Eddies Cove West, NL" }, { postalCode: "R0L 0S0", cityName: "Eddystone, MB" }, { postalCode: "N0J 1H0", cityName: "Eden, ON" }, { postalCode: "R0J 0M0", cityName: "Eden, MB" }, { postalCode: "N0B 1P0", cityName: "Eden Mills, ON" }, { postalCode: "S0G 1K0", cityName: "Edenwold, SK" }, { postalCode: "S0G 1L0", cityName: "Edgeley, SK" }, { postalCode: "T0B 1K0", cityName: "Edgerton, AB" }, { postalCode: "E4H 1P9", cityName: "Edgetts Landing, NB" }, { postalCode: "V0A 1E0", cityName: "Edgewater, BC" }, { postalCode: "V0G 1J0", cityName: "Edgewood, BC" }, { postalCode: "T5W 0Y5", cityName: "Edmonton (Central Beverly), AB" }, { postalCode: "T6C 0E5", cityName: "Edmonton (Central Bonnie Doon), AB" }, { postalCode: "T5R 0A5", cityName: "Edmonton (Central Jasper Place / Buena Vista), AB" }, { postalCode: "T5C 0C9", cityName: "Edmonton (Central Londonderry), AB" }, { postalCode: "T5V 0A2", cityName: "Edmonton (Central Mistatim), AB" }, { postalCode: "T5X 1A1", cityName: "Edmonton (East Castledowns), AB" }, { postalCode: "T6L 1A1", cityName: "Edmonton (East Mill Woods), AB" }, { postalCode: "T5B 0B9", cityName: "Edmonton (East North Central / West Beverly), AB" }, { postalCode: "T6P 1A1", cityName: "Edmonton (East Southeast Industrial / South Clover Bar), AB" }, { postalCode: "T6X 0A5", cityName: "Edmonton (Ellerslie), AB" }, { postalCode: "T5N 0H9", cityName: "Edmonton (Glenora / SW Downtown Fringe), AB" }, { postalCode: "T6W 0A1", cityName: "Edmonton (Heritage Valley), AB" }, { postalCode: "T6J 0Y5", cityName: "Edmonton (Kaskitayo), AB" }, { postalCode: "T5Y 0E2", cityName: "Edmonton (Landbank / Oliver / East Lake District), AB" }, { postalCode: "T6T 0A2", cityName: "Edmonton (Meadows), AB" }, { postalCode: "T5H 0A1", cityName: "Edmonton (North and East Downtown Fringe), AB" }, { postalCode: "T6A 0B2", cityName: "Edmonton (North Capilano), AB" }, { postalCode: "T5G 0A1", cityName: "Edmonton (North Central / Queen Mary Park / YXD), AB" }, { postalCode: "T6S 1A1", cityName: "Edmonton (North Clover Bar), AB" }, { postalCode: "T5J 0A4", cityName: "Edmonton (North Downtown), AB" }, { postalCode: "T5P 0X2", cityName: "Edmonton (North Jasper Place), AB" }, { postalCode: "T5L 0A7", cityName: "Edmonton (North Westmount / West Calder / East Mistatim), AB" }, { postalCode: "T6R 0R9", cityName: "Edmonton (Riverbend), AB" }, { postalCode: "T6B 0W9", cityName: "Edmonton (SE Capilano / West Southeast Industrial / East Bonnie Doon), AB" }, { postalCode: "T6E 0X1", cityName: "Edmonton (South Bonnie Doon / East University), AB" }, { postalCode: "T5K 0B2", cityName: "Edmonton (South Downtown / South Downtown Fringe), AB" }, { postalCode: "T6N 0A1", cityName: "Edmonton (South Industrial), AB" }, { postalCode: "T5M 0B6", cityName: "Edmonton (South Westmount / Groat Estate / East Northwest Industrial), AB" }, { postalCode: "T6H 0A2", cityName: "Edmonton (Southgate / North Riverbend), AB" }, { postalCode: "T6V 0B5", cityName: "Edmonton (West Castledowns), AB" }, { postalCode: "T5A 0A3", cityName: "Edmonton (West Clareview / East Londonderry), AB" }, { postalCode: "T5Z 0A1", cityName: "Edmonton (West Lake District), AB" }, { postalCode: "T5E 0W5", cityName: "Edmonton (West Londonderry / East Calder), AB" }, { postalCode: "T6K 0T3", cityName: "Edmonton (West Mill Woods), AB" }, { postalCode: "T5S 1A1", cityName: "Edmonton (West Northwest Industrial / Winterburn), AB" }, { postalCode: "T6G 0W3", cityName: "Edmonton (West University / Strathcona Place), AB" }, { postalCode: "T6M 0A1", cityName: "Edmonton Southwest, AB" }, { postalCode: "T5T 0A1", cityName: "Edmonton West (West Jasper Place / West Edmonton Mall), AB" }, { postalCode: "E3V 0A1", cityName: "Edmundston, NB" }, { postalCode: "T7E 1A2", cityName: "Edson, AB" }, { postalCode: "K0A 1V0", cityName: "Edwards, ON" }, { postalCode: "B2A 3Y8", cityName: "Edwardsville, NS" }, { postalCode: "R0H 0G0", cityName: "Edwin, MB" }, { postalCode: "E1V 0B9", cityName: "Eel Ground, NB" }, { postalCode: "E8C 0A3", cityName: "Eel River Bar First Nation, NB" }, { postalCode: "E8E 1V6", cityName: "Eel River Cove, NB" }, { postalCode: "E8E 1N5", cityName: "Eel River Crossing, NB" }, { postalCode: "E6H 0A1", cityName: "Eel River Lake, NB" }, { postalCode: "J9E 3A9", cityName: "Egan, QC" }, { postalCode: "K0J 1T0", cityName: "Eganville, ON" }, { postalCode: "L0L 1N0", cityName: "Egbert, ON" }, { postalCode: "N0K 1G0", cityName: "Egmondville, ON" }, { postalCode: "V0N 1N0", cityName: "Egmont, BC" }, { postalCode: "T0A 0Z0", cityName: "Egremont, AB" }, { postalCode: "S0H 1J0", cityName: "Elbow, SK" }, { postalCode: "B0N 1K0", cityName: "Elderbank, NS" }, { postalCode: "K0K 1Y0", cityName: "Eldorado, ON" }, { postalCode: "S0A 0V0", cityName: "Elfros, SK" }, { postalCode: "J0S 2E0", cityName: "Elgin, QC" }, { postalCode: "K0G 1E0", cityName: "Elgin, ON" }, { postalCode: "R0K 0T0", cityName: "Elgin, MB" }, { postalCode: "N0L 1A0", cityName: "Elgin (Dorchester), ON" }, { postalCode: "K0H 1M0", cityName: "Elginburg, ON" }, { postalCode: "R0H 0H0", cityName: "Elie, MB" }, { postalCode: "K6T 1A1", cityName: "Elizabethtown, ON" }, { postalCode: "K6V 7B7", cityName: "Elizabethtown, ON" }, { postalCode: "P0J 1G0", cityName: "Elk Lake, ON" }, { postalCode: "T0A 1A0", cityName: "Elk Point, AB" }, { postalCode: "V0B 1H0", cityName: "Elkford, BC" }, { postalCode: "R0M 0N0", cityName: "Elkhorn, MB" }, { postalCode: "V0B 1J0", cityName: "Elko, BC" }, { postalCode: "B0N 1L0", cityName: "Ellershouse, NS" }, { postalCode: "C0B 1J0", cityName: "Ellerslie, PEI" }, { postalCode: "P5A 3T2", cityName: "Elliot Lake, ON" }, { postalCode: "A0C 1N0", cityName: "Elliston, NL" }, { postalCode: "T0A 1B0", cityName: "Ellscott, AB" }, { postalCode: "R0G 0N0", cityName: "Elm Creek, MB" }, { postalCode: "E5M 1X9", cityName: "Elm Hill, NB" }, { postalCode: "R0E 0Z0", cityName: "Elma, MB" }, { postalCode: "N3B 3P2", cityName: "Elmira, ON" }, { postalCode: "C0A 1K0", cityName: "Elmira, PEI" }, { postalCode: "C0A 1K0", cityName: "Elmira, PEI" }, { postalCode: "C0B 1K0", cityName: "Elmsdale, PEI" }, { postalCode: "E5A 0A2", cityName: "Elmsville, NB" }, { postalCode: "L0L 1P0", cityName: "Elmvale, ON" }, { postalCode: "E7N 2C5", cityName: "Elmwood, NB" }, { postalCode: "N0G 1S0", cityName: "Elmwood, ON" }, { postalCode: "T0H 1J0", cityName: "Elmworth, AB" }, { postalCode: "T0M 0Y0", cityName: "Elnora, AB" }, { postalCode: "N0B 1S0", cityName: "Elora, ON" }, { postalCode: "R0J 0N0", cityName: "Elphinstone, MB" }, { postalCode: "S0L 0Z0", cityName: "Elrose, SK" }, { postalCode: "Y0B 1J0", cityName: "Elsa, YT" }, { postalCode: "E4W 0B9", cityName: "Elsipogtog First Nation, NB" }, { postalCode: "S0K 1M0", cityName: "Elstow, SK" }, { postalCode: "J0Y 3H0", cityName: "Em-1-A-Sarcelle-Rupert, QC" }, { postalCode: "A0G 2A0", cityName: "Embree, NL" }, { postalCode: "N0J 1J0", cityName: "Embro, ON" }, { postalCode: "K0A 1W0", cityName: "Embrun, ON" }, { postalCode: "S4L 0B8", cityName: "Emerald Park, SK" }, { postalCode: "R0A 0L0", cityName: "Emerson, MB" }, { postalCode: "N0R 1C0", cityName: "Emeryville, ON" }, { postalCode: "P0W 1E0", cityName: "Emo, ON" }, { postalCode: "T0J 1E0", cityName: "Empress, AB" }, { postalCode: "P0A 1J0", cityName: "Emsdale, ON" }, { postalCode: "T0K 0V0", cityName: "Enchant, AB" }, { postalCode: "V0J 1L0", cityName: "Endako, BC" }, { postalCode: "S0A 0W0", cityName: "Endeavour, SK" }, { postalCode: "V0E 1V0", cityName: "Enderby, BC" }, { postalCode: "T0J 1G0", cityName: "Endiang, AB" }, { postalCode: "B2T 0A2", cityName: "Enfield, NS" }, { postalCode: "A0K 2J0", cityName: "Englee, NL" }, { postalCode: "S0K 1N0", cityName: "Englefeld, SK" }, { postalCode: "P0J 1H0", cityName: "Englehart, ON" }, { postalCode: "A0E 1M0", cityName: "English Harbour East, NL" }, { postalCode: "A0H 1M0", cityName: "English Harbour West, NL" }, { postalCode: "E6B 0A1", cityName: "English Settlement, NB" }, { postalCode: "B0C 1H0", cityName: "Englishtown, NS" }, { postalCode: "T0G 0W0", cityName: "Enilda, AB" }, { postalCode: "K0L 1T0", cityName: "Ennismore, ON" }, { postalCode: "T7X 3Y3", cityName: "Enoch, AB" }, { postalCode: "B1J 1V6", cityName: "Enon, NS" }, { postalCode: "E7G 1J9", cityName: "Enterprise, NB" }, { postalCode: "K0K 1Z0", cityName: "Enterprise, ON" }, { postalCode: "X0E 0R1", cityName: "Enterprise, NT" }, { postalCode: "J0T 2E0", cityName: "Entrelacs, QC" }, { postalCode: "T0E 0S0", cityName: "Entwistle, AB" }, { postalCode: "A0E 1N0", cityName: "Epworth, NL" }, { postalCode: "E5P 1J1", cityName: "Erb Settlement, NB" }, { postalCode: "E5N 0G4", cityName: "Erbs Cove, NB" }, { postalCode: "R0J 0P0", cityName: "Erickson, MB" }, { postalCode: "V0B 1K0", cityName: "Erickson, BC" }, { postalCode: "N0P 1N0", cityName: "Erieau, ON" }, { postalCode: "R0C 0W0", cityName: "Eriksdale, MB" }, { postalCode: "N0B 1T0", cityName: "Erin, ON" }, { postalCode: "K0K 2A0", cityName: "Erinsville, ON" }, { postalCode: "S0H 1K0", cityName: "Ernfold, SK" }, { postalCode: "V0R 1V0", cityName: "Errington, BC" }, { postalCode: "T0C 1G0", cityName: "Erskine, AB" }, { postalCode: "E9A 1R3", cityName: "Escuminac, NB" }, { postalCode: "G0C 1N0", cityName: "Escuminac, QC" }, { postalCode: "B1W 1A1", cityName: "Eskasoni, NS" }, { postalCode: "P5E 1S7", cityName: "Espanola, ON" }, { postalCode: "V9A 1A1", cityName: "Esquimalt, BC" }, { postalCode: "N8M 3H1", cityName: "Essex, ON" }, { postalCode: "N0R 1A0", cityName: "Essex (Belle River), ON" }, { postalCode: "J0T 1E0", cityName: "Esterel, QC" }, { postalCode: "S0A 0X0", cityName: "Esterhazy, SK" }, { postalCode: "S4A 2X3", cityName: "Estevan, SK" }, { postalCode: "T0J 1H0", cityName: "Esther, AB" }, { postalCode: "S0L 1A0", cityName: "Eston, SK" }, { postalCode: "J0B 1B0", cityName: "Estrie-Est (Stanstead), QC" }, { postalCode: "J0E 1S0", cityName: "Estrie-Ouest (Fulford), QC" }, { postalCode: "N0G 1T0", cityName: "Ethel, ON" }, { postalCode: "R0L 0T0", cityName: "Ethelbert, MB" }, { postalCode: "M8V 4C2", cityName: "Etobicoke ( Mimico South / Humber Bay Shores), ON" }, { postalCode: "M8W 4Z5", cityName: "Etobicoke (Alderwood / Long Branch), ON" }, { postalCode: "M9C 5N6", cityName: "Etobicoke (Eringate / Bloordale Gardens / Old Burnhamthorpe / Markland Woods), ON" }, { postalCode: "M9A 5H2", cityName: "Etobicoke (Islington Avenue), ON" }, { postalCode: "M9R 4C7", cityName: "Etobicoke (Kingsview Village / St. Phillips / Martin Grove Gardens / Richview Gardens), ON" }, { postalCode: "M8Z 5H8", cityName: "Etobicoke (Mimico NW / The Queensway West / South of Bloor / Kingsway Park South West / Royal York South West), ON" }, { postalCode: "M8Y 2X3", cityName: "Etobicoke (Old Mill South / King\'s Mill Park / Sunnylea / Humber Bay / Mimico NE / The Queensway East / Royal York South East / Kingsway Park South East), ON" }, { postalCode: "M9V 5G4", cityName: "Etobicoke (South Steeles / Silverstone / Humbergate / Jamestown / Mount Olive / Beaumond Heights / Thistletown / Albion Gardens), ON" }, { postalCode: "M8X 1A6", cityName: "Etobicoke (The Kingsway / Montgomery Road / Old Mill North), ON" }, { postalCode: "M9B 6M1", cityName: "Etobicoke (West Deane Park / Princess Gardens / Martin Grove / Islington / Cloverdale), ON" }, { postalCode: "M9P 3W2", cityName: "Etobicoke (Westmount), ON" }, { postalCode: "M9W 7A1", cityName: "Etobicoke Northwest (Clairville / Humberwood / Woodbine Downs / West Humber / Kipling Heights / Rexdale / Elms / Tandridge / Old Rexdale), ON" }, { postalCode: "T0K 0W0", cityName: "Etzikom, AB" }, { postalCode: "X0A 0G0", cityName: "Eureka, NU" }, { postalCode: "T0H 1K0", cityName: "Eureka River, AB" }, { postalCode: "J0Z 1Y0", cityName: "Evain, QC" }, { postalCode: "E5M 2C7", cityName: "Evandale, NB" }, { postalCode: "E8P 1S2", cityName: "Evangeline, NB" }, { postalCode: "E4B 2S2", cityName: "Evans Road, NB" }, { postalCode: "T0E 0T0", cityName: "Evansburg, AB" }, { postalCode: "P0P 1E0", cityName: "Evansville, ON" }, { postalCode: "E7G 1C5", cityName: "Everett, NB" }, { postalCode: "S0L 1B0", cityName: "Evesham, SK" }, { postalCode: "N0M 1S0", cityName: "Exeter, ON" }, { postalCode: "E9E 1L2", cityName: "Exmoor, NB" }, { postalCode: "T0L 2C0", cityName: "Exshaw, AB" }, { postalCode: "S0H 1L0", cityName: "Eyebrow, SK" }, { postalCode: "J0Z 1Z0", cityName: "Fabre, QC" }, { postalCode: "H7P 6B4", cityName: "Fabreville, QC" }, { postalCode: "H7P 2P1", cityName: "Fabreville, QC" }, { postalCode: "H7R 5A8", cityName: "Fabreville, QC" }, { postalCode: "A0B 1T0", cityName: "Fair Haven, NL" }, { postalCode: "R0K 0V0", cityName: "Fairfax, MB" }, { postalCode: "E4K 3E7", cityName: "Fairfield Westmorland Co, NB" }, { postalCode: "R0C 0X0", cityName: "Fairford, MB" }, { postalCode: "E5V 1J3", cityName: "Fairhaven, NB" }, { postalCode: "E9G 2W4", cityName: "Fairisle, NB" }, { postalCode: "S0G 1M0", cityName: "Fairlight, SK" }, { postalCode: "V0B 1L0", cityName: "Fairmont Hot Springs, BC" }, { postalCode: "T0H 1L0", cityName: "Fairview, AB" }, { postalCode: "S0E 0T0", cityName: "Fairy Glen, SK" }, { postalCode: "G0V 1C0", cityName: "Falardeau, QC" }, { postalCode: "R0E 0N0", cityName: "Falcon Beach, MB" }, { postalCode: "P0M 1S0", cityName: "Falconbridge, ON" }, { postalCode: "T0H 1M0", cityName: "Falher, AB" }, { postalCode: "V0E 1W0", cityName: "Falkland, BC" }, { postalCode: "B2T 0A9", cityName: "Fall River, NS" }, { postalCode: "T0E 0V0", cityName: "Fallis, AB" }, { postalCode: "B0P 1L0", cityName: "Falmouth, NS" }, { postalCode: "T0C 1H0", cityName: "Falun, AB" }, { postalCode: "V0R 1W0", cityName: "Fanny Bay, BC" }, { postalCode: "R0G 0P0", cityName: "Fannystelle, MB" }, { postalCode: "V0C 1N0", cityName: "Farmington, BC" }, { postalCode: "J2N 3E3", cityName: "Farnham, QC" }, { postalCode: "Y0B 1K0", cityName: "Faro, YT" }, { postalCode: "J0X 1T0", cityName: "Farrellton, QC" }, { postalCode: "J0V 1H0", cityName: "Fassett, QC" }, { postalCode: "G4T 2A1", cityName: "Fatima, QC" }, { postalCode: "R0C 0Y0", cityName: "Faulkner, MB" }, { postalCode: "P0L 1G0", cityName: "Fauquier, ON" }, { postalCode: "V0G 1K0", cityName: "Fauquier, BC" }, { postalCode: "T0G 0X0", cityName: "Faust, AB" }, { postalCode: "T0G 0Y0", cityName: "Fawcett, AB" }, { postalCode: "E4Z 2V4", cityName: "Fawcett Hill, NB" }, { postalCode: "K0M 1N0", cityName: "Fenelon Falls, ON" }, { postalCode: "T0J 1K0", cityName: "Fenn, AB" }, { postalCode: "L0S 1C0", cityName: "Fenwick, ON" }, { postalCode: "S0A 0Y0", cityName: "Fenwood, SK" }, { postalCode: "N1M 3W5", cityName: "Fergus, ON" }, { postalCode: "B3V 0A4", cityName: "Fergusons Cove, NS" }, { postalCode: "T0B 1M0", cityName: "Ferintosh, AB" }, { postalCode: "S0H 1M0", cityName: "Ferland, SK" }, { postalCode: "G0V 1H0", cityName: "Ferland-Et-Boilleau, QC" }, { postalCode: "J0W 1C0", cityName: "Ferme-Neuve, QC" }, { postalCode: "A0A 2G0", cityName: "Fermeuse, NL" }, { postalCode: "G0G 1J0", cityName: "Fermont, QC" }, { postalCode: "V0B 1M0", cityName: "Fernie, BC" }, { postalCode: "A0A 2H0", cityName: "Ferryland, NL" }, { postalCode: "S0C 0W0", cityName: "Fertile, SK" }, { postalCode: "N0C 1C0", cityName: "Feversham, ON" }, { postalCode: "P0H 1M0", cityName: "Field, ON" }, { postalCode: "V0A 1G0", cityName: "Field, BC" }, { postalCode: "E7L 2J5", cityName: "Fielding, NB" }, { postalCode: "S0H 1N0", cityName: "Fife Lake, SK" }, { postalCode: "S0G 1N0", cityName: "Fillmore, SK" }, { postalCode: "K0C 1K0", cityName: "Finch, ON" }, { postalCode: "S0G 1P0", cityName: "Findlater, SK" }, { postalCode: "N0L 1K0", cityName: "Fingal, ON" }, { postalCode: "T0J 1L0", cityName: "Finnegan, AB" }, { postalCode: "S0H 1P0", cityName: "Fir Mountain, SK" }, { postalCode: "R0C 0Z0", cityName: "Fisher Branch, MB" }, { postalCode: "B0J 1M0", cityName: "Fishermans Harbour, NS" }, { postalCode: "N0A 1G0", cityName: "Fisherville, ON" }, { postalCode: "S0L 1C0", cityName: "Fiske, SK" }, { postalCode: "K0A 1X0", cityName: "Fitzroy Harbour, ON" }, { postalCode: "B0M 1K0", cityName: "Five Islands, NS" }, { postalCode: "T0G 0Z0", cityName: "Flatbush, AB" }, { postalCode: "A1K 0A3", cityName: "Flatrock, NL" }, { postalCode: "S0L 1E0", cityName: "Flaxcombe, SK" }, { postalCode: "S0G 1R0", cityName: "Fleming, SK" }, { postalCode: "E7N 2P8", cityName: "Flemington, NB" }, { postalCode: "N0C 1E0", cityName: "Flesherton, ON" }, { postalCode: "B2T 1A1", cityName: "Fletchers Lake, NS" }, { postalCode: "A0K 2M0", cityName: "Fleur de Lys, NL" }, { postalCode: "R8A 0P1", cityName: "Flin Flon, MB" }, { postalCode: "S0H 1R0", cityName: "Flintoft, SK" }, { postalCode: "K0H 1P0", cityName: "Flinton, ON" }, { postalCode: "N0B 1V0", cityName: "Floradale, ON" }, { postalCode: "B1Y 1C8", cityName: "Florence, NS" }, { postalCode: "N0P 1R0", cityName: "Florence, ON" }, { postalCode: "E7L 3P7", cityName: "Florenceville, NB" }, { postalCode: "E7L 0A3", cityName: "Florenceville, NB" }, { postalCode: "E7L 0A3", cityName: "Florenceville-Bristol, NB" }, { postalCode: "A0K 2N0", cityName: "Flowers Cove, NL" }, { postalCode: "E4B 2G8", cityName: "Flowers Cove, NB" }, { postalCode: "E6K 2B7", cityName: "Flume Ridge, NB" }, { postalCode: "S0A 1A0", cityName: "Foam Lake, SK" }, { postalCode: "A0G 2B0", cityName: "Fogo, NL" }, { postalCode: "P0M 1T0", cityName: "Foleyet, ON" }, { postalCode: "S0J 0W0", cityName: "Fond du Lac, SK" }, { postalCode: "L0S 1E0", cityName: "Fonthill, ON" }, { postalCode: "E4W 3P6", cityName: "Ford Bank, NB" }, { postalCode: "E4T 1X2", cityName: "Fords Mills, NB" }, { postalCode: "N0G 1V0", cityName: "Fordwich, ON" }, { postalCode: "T0K 0X0", cityName: "Foremost, AB" }, { postalCode: "N0N 1J0", cityName: "Forest, ON" }, { postalCode: "E6H 1M8", cityName: "Forest City, NB" }, { postalCode: "E4Z 6C2", cityName: "Forest Glen, NB" }, { postalCode: "V0K 1M0", cityName: "Forest Grove, BC" }, { postalCode: "T0B 1N0", cityName: "Forestburg, AB" }, { postalCode: "K0J 1V0", cityName: "Foresters Falls, ON" }, { postalCode: "G0T 1E0", cityName: "Forestville, QC" }, { postalCode: "S0C 0X0", cityName: "Forget, SK" }, { postalCode: "R0L 0V0", cityName: "Fork River, MB" }, { postalCode: "N0G 1W0", cityName: "Formosa, ON" }, { postalCode: "R0K 0W0", cityName: "Forrest Station, MB" }, { postalCode: "P0L 1H0", cityName: "Fort Albany, ON" }, { postalCode: "R0E 0P0", cityName: "Fort Alexander, MB" }, { postalCode: "T0G 1A0", cityName: "Fort Assiniboine, AB" }, { postalCode: "L2A 6W1", cityName: "Fort Erie, ON" }, { postalCode: "P9A 3X8", cityName: "Fort Frances, ON" }, { postalCode: "V0J 1N0", cityName: "Fort Fraser, BC" }, { postalCode: "X0E 0H0", cityName: "Fort Good Hope, NT" }, { postalCode: "T0A 1H0", cityName: "Fort Kent, AB" }, { postalCode: "T0P 1C0", cityName: "Fort Mackay, AB" }, { postalCode: "T0L 0Z0", cityName: "Fort Macleod, AB" }, { postalCode: "T9J 1A1", cityName: "Fort McMurray Inner Central, AB" }, { postalCode: "T9K 0A1", cityName: "Fort McMurray Northwest, AB" }, { postalCode: "T9H 1A1", cityName: "Fort McMurray Outer Central, AB" }, { postalCode: "X0E 0J0", cityName: "Fort McPherson, NT" }, { postalCode: "V0C 1R0", cityName: "Fort Nelson, BC" }, { postalCode: "X0E 0L0", cityName: "Fort Providence, NT" }, { postalCode: "S0G 1S0", cityName: "Fort Qu\'Appelle, SK" }, { postalCode: "X0E 0M0", cityName: "Fort Resolution, NT" }, { postalCode: "T8L 1A2", cityName: "Fort Saskatchewan, AB" }, { postalCode: "P0V 1W0", cityName: "Fort Severn, ON" }, { postalCode: "X0E 0N0", cityName: "Fort Simpson, NT" }, { postalCode: "X0E 0P0", cityName: "Fort Smith, NT" }, { postalCode: "V0J 1P0", cityName: "Fort St. James, BC" }, { postalCode: "V1J 1A2", cityName: "Fort St. John, BC" }, { postalCode: "V0B 1N0", cityName: "Fort Steele, BC" }, { postalCode: "T0H 1N0", cityName: "Fort Vermilion, AB" }, { postalCode: "J0X 1V0", cityName: "Fort-Coulonge, QC" }, { postalCode: "A0K 2P0", cityName: "Forteau, NL" }, { postalCode: "G0S 1J0", cityName: "Fortierville, QC" }, { postalCode: "B1C 2H8", cityName: "Fortress of Louisbourg, NS" }, { postalCode: "A0E 1P0", cityName: "Fortune, NL" }, { postalCode: "S0E 0V0", cityName: "Fosston, SK" }, { postalCode: "J0E 1R0", cityName: "Foster, QC" }, { postalCode: "E6H 0A7", cityName: "Fosterville, NB" }, { postalCode: "E4E 3P7", cityName: "Four Corners, NB" }, { postalCode: "E4G 1J7", cityName: "Four Corners, NB" }, { postalCode: "E3Z 2C2", cityName: "Four Falls, NB" }, { postalCode: "E1X 2Y9", cityName: "Four Roads, NB" }, { postalCode: "B2J 1A1", cityName: "Fourchu, NS" }, { postalCode: "K0B 1G0", cityName: "Fournier, ON" }, { postalCode: "T0H 1P0", cityName: "Fox Creek, AB" }, { postalCode: "A0B 1V0", cityName: "Fox Harbour PB, NL" }, { postalCode: "T0H 1R0", cityName: "Fox Lake, AB" }, { postalCode: "S0N 0V0", cityName: "Fox Valley, SK" }, { postalCode: "K0K 2B0", cityName: "Foxboro, ON" }, { postalCode: "S0J 0Y0", cityName: "Foxford, SK" }, { postalCode: "R0J 0R0", cityName: "Foxwarren, MB" }, { postalCode: "K0J 1W0", cityName: "Foymount, ON" }, { postalCode: "B2J 1B5", cityName: "Framboise, NS" }, { postalCode: "B2J 1E3", cityName: "Framboise Intervale, NS" }, { postalCode: "G0R 1M0", cityName: "Frampton, QC" }, { postalCode: "S0G 1V0", cityName: "Francis, SK" }, { postalCode: "A0N 2K0", cityName: "Francois, NL" }, { postalCode: "V0J 1R0", cityName: "Francois Lake, BC" }, { postalCode: "K0K 2C0", cityName: "Frankford, ON" }, { postalCode: "J0S 1E0", cityName: "Franklin, QC" }, { postalCode: "R0J 0S0", cityName: "Franklin, MB" }, { postalCode: "B0H 1K0", cityName: "Frankville, NS" }, { postalCode: "K0E 1H0", cityName: "Frankville, ON" }, { postalCode: "G0H 1E0", cityName: "Franquelin, QC" }, { postalCode: "V0J 1S0", cityName: "Fraser Lake, BC" }, { postalCode: "K0L 1V0", cityName: "Fraserville, ON" }, { postalCode: "R0C 1A0", cityName: "Fraserwood, MB" }, { postalCode: "P0L 1K0", cityName: "Frederickhouse, ON" }, { postalCode: "E6B 1J1", cityName: "Fredericksburg, NB" }, { postalCode: "A0G 2C0", cityName: "Frederickton, NL" }, { postalCode: "E3E 1A4", cityName: "Fredericton, NB" }, { postalCode: "E6K 0A6", cityName: "Fredericton, NB" }, { postalCode: "E5L 2E6", cityName: "Fredericton Junction, NB" }, { postalCode: "E5L 1R1", cityName: "Fredericton Junction, NB" }, { postalCode: "E3A 0A1", cityName: "Fredericton North, NB" }, { postalCode: "E3B 0B1", cityName: "Fredericton South New Brunswick Provincial Government, NB" }, { postalCode: "E3C 0A4", cityName: "Fredericton Southwest, New Maryland, NB" }, { postalCode: "E8K 3G2", cityName: "Free Grant, NB" }, { postalCode: "L0R 1K0", cityName: "Freelton, ON" }, { postalCode: "B0V 1B0", cityName: "Freeport, NS" }, { postalCode: "C0B 1L0", cityName: "Freetown, PEI" }, { postalCode: "J0J 1C0", cityName: "Frelighsburg, QC" }, { postalCode: "E2V 4C8", cityName: "French Lake, NB" }, { postalCode: "B1K 0A2", cityName: "French Road, NS" }, { postalCode: "B3Z 2X6", cityName: "French Village, NS" }, { postalCode: "E5N 0A4", cityName: "French Village Kings Co, NB" }, { postalCode: "E3E 1H4", cityName: "French Village-York, NB" }, { postalCode: "S0M 0W0", cityName: "Frenchman Butte, SK" }, { postalCode: "A0L 1E0", cityName: "Frenchmans Cove Boi, NL" }, { postalCode: "A0E 1R0", cityName: "Frenchmans Cove FB, NL" }, { postalCode: "B2A 3Y2", cityName: "Frenchvale, NS" }, { postalCode: "A0B 1W0", cityName: "Freshwater PB, NL" }, { postalCode: "S0C 0Y0", cityName: "Frobisher, SK" }, { postalCode: "T0A 1M0", cityName: "Frog Lake, AB" }, { postalCode: "G6B 0A4", cityName: "Frontenac, QC" }, { postalCode: "K0H 2H0", cityName: "Frontenac County, Addington County, Loyalist Shores and Southwest Leeds (Inverary), ON" }, { postalCode: "S0N 0W0", cityName: "Frontier, SK" }, { postalCode: "E4L 2C9", cityName: "Frosty Hollow, NB" }, { postalCode: "V0G 1L0", cityName: "Fruitvale, BC" }, { postalCode: "J0Z 2A0", cityName: "Fugereville, QC" }, { postalCode: "S0K 1T0", cityName: "Fulda, SK" }, { postalCode: "N0K 1H0", cityName: "Fullarton, ON" }, { postalCode: "E4H 4S6", cityName: "Fundy National Park, NB" }, { postalCode: "S7T 1B1", cityName: "Furdale, SK" }, { postalCode: "V0N 3Z0", cityName: "Furry Creek, BC" }, { postalCode: "B1K 2B1", cityName: "Gabarus, NS" }, { postalCode: "B1K 0A1", cityName: "Gabarus Lake, NS" }, { postalCode: "V0R 1X0", cityName: "Gabriola, BC" }, { postalCode: "N0K 1J0", cityName: "Gads Hill Station, ON" }, { postalCode: "T0C 1K0", cityName: "Gadsby, AB" }, { postalCode: "E5M 1X1", cityName: "Gagetown, NB" }, { postalCode: "E5M 1A1", cityName: "Gagetown, NB" }, { postalCode: "T0E 0W0", cityName: "Gainford, AB" }, { postalCode: "S0C 0Z0", cityName: "Gainsborough, SK" }, { postalCode: "T0B 1R0", cityName: "Galahad, AB" }, { postalCode: "V0N 1P0", cityName: "Galiano, BC" }, { postalCode: "E1G 2Z6", cityName: "Gallagher Ridge, NB" }, { postalCode: "A0L 1G0", cityName: "Gallants, NL" }, { postalCode: "J0Z 2B0", cityName: "Gallichan, QC" }, { postalCode: "S0M 0X0", cityName: "Gallivan, SK" }, { postalCode: "G0G 1L0", cityName: "Gallix, QC" }, { postalCode: "E4W 0A7", cityName: "Galloway, NB" }, { postalCode: "V0B 1P0", cityName: "Galloway, BC" }, { postalCode: "A0G 1T0", cityName: "Gambo, NL" }, { postalCode: "A0G 2E0", cityName: "Gambo South, NL" }, { postalCode: "X0E 1R0", cityName: "Gameti, NT" }, { postalCode: "K7G 3C3", cityName: "Gananoque, ON" }, { postalCode: "A1V 1A5", cityName: "Gander, NL" }, { postalCode: "A0G 2G0", cityName: "Gander Bay, NL" }, { postalCode: "A0G 2H0", cityName: "Gander Bay South, NL" }, { postalCode: "V0K 1N0", cityName: "Gang Ranch, BC" }, { postalCode: "V0N 1S0", cityName: "Garden Bay, BC" }, { postalCode: "A0E 1S0", cityName: "Garden Cove PB, NL" }, { postalCode: "P6A 0A3", cityName: "Garden River, ON" }, { postalCode: "T0H 4G0", cityName: "Garden River, AB" }, { postalCode: "P2B 0A3", cityName: "Garden Village, ON" }, { postalCode: "R0A 0M0", cityName: "Gardenton, MB" }, { postalCode: "B1H 5K2", cityName: "Gardiner Mines, NS" }, { postalCode: "E1N 5R8", cityName: "Gardiner Point, NB" }, { postalCode: "E2S 2A8", cityName: "Gardner Creek, NB" }, { postalCode: "V0N 1T0", cityName: "Garibaldi Highlands, BC" }, { postalCode: "R0L 0W0", cityName: "Garland, MB" }, { postalCode: "E2S 0A1", cityName: "Garnett Settlement, NB" }, { postalCode: "A0E 1T0", cityName: "Garnish, NL" }, { postalCode: "S0J 0Z0", cityName: "Garrick, SK" }, { postalCode: "R0E 0R0", cityName: "Garson, MB" }, { postalCode: "G0C 1P0", cityName: "Gascons, QC" }, { postalCode: "G4X 3B3", cityName: "Gasp&eacute;, QC" }, { postalCode: "G0E 1C0", cityName: "Gasp&eacute;sie-Nord (Grande-Vall&eacute;e), QC" }, { postalCode: "G0J 1E0", cityName: "Gasp&eacute;sie-Ouest (Causapscal), QC" }, { postalCode: "G0C 1A0", cityName: "Gasp&eacute;sie-Sud (New Richmond), QC" }, { postalCode: "E4A 1L1", cityName: "Gaspereau Forks, NB" }, { postalCode: "J8R 4C2", cityName: "Gatineau Northeast, QC" }, { postalCode: "J8V 1J2", cityName: "Gatineau Northwest, QC" }, { postalCode: "J8P 8C2", cityName: "Gatineau Southeast, QC" }, { postalCode: "J8T 8R1", cityName: "Gatineau Southwest, QC" }, { postalCode: "A0H 1N0", cityName: "Gaultois, NL" }, { postalCode: "E1X 2P2", cityName: "Gauvreau, NB" }, { postalCode: "E2V 0E9", cityName: "Geary, NB" }, { postalCode: "T0J 1M0", cityName: "Gem, AB" }, { postalCode: "V0G 1G0", cityName: "Genelle, BC" }, { postalCode: "B1Y 0A1", cityName: "Georges River, NS" }, { postalCode: "L7G 6E8", cityName: "Georgetown, ON" }, { postalCode: "C0A 1L0", cityName: "Georgetown, PEI" }, { postalCode: "C0A 1L0", cityName: "Georgetown, PEI" }, { postalCode: "J0B 1T0", cityName: "Georgeville, QC" }, { postalCode: "L0M 1J0", cityName: "Georgian Bay South Shore (Angus), ON" }, { postalCode: "N0C 1A0", cityName: "Georgian Bay Southwest Shore (Dundalk), ON" }, { postalCode: "S0A 1B0", cityName: "Gerald, SK" }, { postalCode: "P0T 1M0", cityName: "Geraldton, ON" }, { postalCode: "V0J 1T0", cityName: "Germansen Landing, BC" }, { postalCode: "E4H 2H4", cityName: "Germantown, NB" }, { postalCode: "G0G 1M0", cityName: "Gethsemani, QC" }, { postalCode: "E6B 1S9", cityName: "Giants Glen, NB" }, { postalCode: "T0A 1N0", cityName: "Gibbons, AB" }, { postalCode: "V0N 1V0", cityName: "Gibsons, BC" }, { postalCode: "T0G 1B0", cityName: "Gift Lake, AB" }, { postalCode: "R0L 0X0", cityName: "Gilbert Plains, MB" }, { postalCode: "L0L 1R0", cityName: "Gilford, ON" }, { postalCode: "R0B 0L0", cityName: "Gillam, MB" }, { postalCode: "V0N 1W0", cityName: "Gillies Bay, BC" }, { postalCode: "B2A 4H7", cityName: "Gillis Lake, NS" }, { postalCode: "B2C 1K7", cityName: "Gillis Point, NS" }, { postalCode: "K0L 1W0", cityName: "Gilmour, ON" }, { postalCode: "R0C 1B0", cityName: "Gimli, MB" }, { postalCode: "R0A 2R0", cityName: "Ginew, MB" }, { postalCode: "G0W 1R0", cityName: "Girardville, QC" }, { postalCode: "R0A 0N0", cityName: "Giroux, MB" }, { postalCode: "T0H 1S0", cityName: "Girouxville, AB" }, { postalCode: "V0J 3T0", cityName: "Gitwinksihlkw, BC" }, { postalCode: "X0B 1J0", cityName: "Gjoa Haven, NU" }, { postalCode: "B1A 1A6", cityName: "Glace Bay, NS" }, { postalCode: "E1G 3R9", cityName: "Gladeside, NB" }, { postalCode: "S0C 1A0", cityName: "Gladmar, SK" }, { postalCode: "R0J 0T0", cityName: "Gladstone, MB" }, { postalCode: "E7H 1X4", cityName: "Gladwyn, NB" }, { postalCode: "S0M 0Y0", cityName: "Glaslyn, SK" }, { postalCode: "S0C 1B0", cityName: "Glasnevin, SK" }, { postalCode: "E7L 0A1", cityName: "Glassville, NB" }, { postalCode: "T0J 1N0", cityName: "Gleichen, AB" }, { postalCode: "S0C 1C0", cityName: "Glen Ewen, SK" }, { postalCode: "B3Z 2R6", cityName: "Glen Haven, NS" }, { postalCode: "L0M 1L0", cityName: "Glen Huron, ON" }, { postalCode: "B3Z 1X2", cityName: "Glen Margaret, NS" }, { postalCode: "N0B 1W0", cityName: "Glen Morris, ON" }, { postalCode: "K0B 1H0", cityName: "Glen Robertson, ON" }, { postalCode: "S0G 1Y0", cityName: "Glenavon, SK" }, { postalCode: "S0N 0X0", cityName: "Glenbain, SK" }, { postalCode: "R0K 0X0", cityName: "Glenboro, MB" }, { postalCode: "K0H 1S0", cityName: "Glenburnie, ON" }, { postalCode: "S0M 0Z0", cityName: "Glenbush, SK" }, { postalCode: "L0M 1K0", cityName: "Glencairn, ON" }, { postalCode: "E3N 4T7", cityName: "Glencoe, NB" }, { postalCode: "N0L 1M0", cityName: "Glencoe, ON" }, { postalCode: "T0A 1P0", cityName: "Glendon, AB" }, { postalCode: "R0J 0V0", cityName: "Glenella, MB" }, { postalCode: "T0E 0X0", cityName: "Glenevis, AB" }, { postalCode: "R0G 0S0", cityName: "Glenlea, MB" }, { postalCode: "E3N 0A1", cityName: "Glenlevit, NB" }, { postalCode: "R0K 0Y0", cityName: "Glenora, MB" }, { postalCode: "S0H 1T0", cityName: "Glenside, SK" }, { postalCode: "S0H 1V0", cityName: "Glentworth, SK" }, { postalCode: "E4Z 1V4", cityName: "Glenvale, NB" }, { postalCode: "A0G 2K0", cityName: "Glenwood, NL" }, { postalCode: "B0W 1W0", cityName: "Glenwood, NS" }, { postalCode: "E1N 5H8", cityName: "Glenwood, NB" }, { postalCode: "E8B 1Z1", cityName: "Glenwood, NB" }, { postalCode: "T0K 2R0", cityName: "Glenwood, AB" }, { postalCode: "E5M 1N8", cityName: "Glenwood Kings Co, NB" }, { postalCode: "S0L 1H0", cityName: "Glidden, SK" }, { postalCode: "K1A 0K4", cityName: "Gloucester, ON" }, { postalCode: "K1G 3N2", cityName: "Gloucester, ON" }, { postalCode: "K1V 0B5", cityName: "Gloucester, ON" }, { postalCode: "K1J 1A1", cityName: "Gloucester - Beacon Hill / Cyrville, ON" }, { postalCode: "K1B 1A1", cityName: "Gloucester - Blackburn Hamlet / Pine View, ON" }, { postalCode: "K1T 1A1", cityName: "Gloucester - Blossom Park / Hunt Club East / Leitrim, ON" }, { postalCode: "K1W 1A3", cityName: "Gloucester - South Orleans, ON" }, { postalCode: "K1C 1K2", cityName: "Gloucester - West Orleans, ON" }, { postalCode: "E2A 6H2", cityName: "Gloucester Junction, NB" }, { postalCode: "K1X 1A1", cityName: "Gloucester South, ON" }, { postalCode: "A0G 2L0", cityName: "Glovertown, NL" }, { postalCode: "A0G 2M0", cityName: "Glovertown South, NL" }, { postalCode: "G0H 1G0", cityName: "Godbout, QC" }, { postalCode: "N7A 4N4", cityName: "Goderich, ON" }, { postalCode: "K0H 1T0", cityName: "Godfrey, ON" }, { postalCode: "J0S 1H0", cityName: "Godmanchester, QC" }, { postalCode: "R0B 0M0", cityName: "Gods Lake Narrows, MB" }, { postalCode: "R0B 0N0", cityName: "Gods River, MB" }, { postalCode: "B2T 0C1", cityName: "Goffs, NS" }, { postalCode: "P0M 1W0", cityName: "Gogama, ON" }, { postalCode: "V0K 1P0", cityName: "Gold Bridge, BC" }, { postalCode: "V0P 1G0", cityName: "Gold River, BC" }, { postalCode: "B0H 1L0", cityName: "Goldboro, NS" }, { postalCode: "V0A 1H0", cityName: "Golden, BC" }, { postalCode: "K0J 1X0", cityName: "Golden Lake, ON" }, { postalCode: "S0N 0Y0", cityName: "Golden Prairie, SK" }, { postalCode: "P0H 1N0", cityName: "Golden Valley, ON" }, { postalCode: "E7K 1B9", cityName: "Good Corner, NB" }, { postalCode: "V0C 2Z0", cityName: "Good Hope Lake, BC" }, { postalCode: "K0M 1R0", cityName: "Gooderham, ON" }, { postalCode: "S0A 1C0", cityName: "Goodeve, SK" }, { postalCode: "T0H 1T0", cityName: "Goodfare, AB" }, { postalCode: "T0A 1R0", cityName: "Goodfish Lake, AB" }, { postalCode: "R0M 0R0", cityName: "Goodlands, MB" }, { postalCode: "V0C 1S0", cityName: "Goodlow, BC" }, { postalCode: "T0A 1S0", cityName: "Goodridge, AB" }, { postalCode: "S0M 1A0", cityName: "Goodsoil, SK" }, { postalCode: "E8L 1S1", cityName: "Goodwin Mill, NB" }, { postalCode: "B3T 1P2", cityName: "Goodwood, NS" }, { postalCode: "A0E 1V0", cityName: "Gooseberry Cove, NL" }, { postalCode: "T0H 1V0", cityName: "Gordondale, AB" }, { postalCode: "E7L 1A1", cityName: "Gordonsville, NB" }, { postalCode: "J0V 1K0", cityName: "Gore, QC" }, { postalCode: "P0P 1H0", cityName: "Gore Bay, ON" }, { postalCode: "K0K 2E0", cityName: "Gores Landing, ON" }, { postalCode: "L0H 1G0", cityName: "Gormley, ON" }, { postalCode: "N0G 1X0", cityName: "Gorrie, ON" }, { postalCode: "B0H 1M0", cityName: "Goshen, NS" }, { postalCode: "P0S 1E0", cityName: "Goulais River, ON" }, { postalCode: "A1S 1A3", cityName: "Goulds, NL" }, { postalCode: "S0H 1W0", cityName: "Gouldtown, SK" }, { postalCode: "S0G 1Z0", cityName: "Govan, SK" }, { postalCode: "K1A 0G9", cityName: "Government of Canada Ottawa and Gatineau offices, ON" }, { postalCode: "N0G 1Y0", cityName: "Gowanstown, ON" }, { postalCode: "P0J 1J0", cityName: "Gowganda, ON" }, { postalCode: "J0X 1W0", cityName: "Gracefield, QC" }, { postalCode: "E7N 0A2", cityName: "Grafton, NB" }, { postalCode: "K0K 2G0", cityName: "Grafton, ON" }, { postalCode: "P0T 1N0", cityName: "Graham, ON" }, { postalCode: "R0C 1C0", cityName: "Grahamdale, MB" }, { postalCode: "J2G 9S5", cityName: "Granby Central, QC" }, { postalCode: "J2H 2V3", cityName: "Granby East, QC" }, { postalCode: "J2J 9V1", cityName: "Granby West, QC" }, { postalCode: "A0E 1W0", cityName: "Grand Bank, NL" }, { postalCode: "A0N 1K0", cityName: "Grand Bay East, NL" }, { postalCode: "E5K 1A1", cityName: "Grand Bay-Westfield, NB" }, { postalCode: "A0E 1X0", cityName: "Grand Beach, NL" }, { postalCode: "N0M 1T0", cityName: "Grand Bend, ON" }, { postalCode: "A0M 1G0", cityName: "Grand Bruit, NL" }, { postalCode: "B0E 1L0", cityName: "Grand Etang, NS" }, { postalCode: "A2A 1A3", cityName: "Grand Falls, NL" }, { postalCode: "E3Z 0A6", cityName: "Grand Falls, NB" }, { postalCode: "E3Z 0A1", cityName: "Grand Falls Central, NB" }, { postalCode: "E3Y 1A1", cityName: "Grand Falls Northeast, NB" }, { postalCode: "V0H 1H0", cityName: "Grand Forks, BC" }, { postalCode: "B2T 0C7", cityName: "Grand Lake, NS" }, { postalCode: "E9C 1J7", cityName: "Grand Lake Road, NB" }, { postalCode: "A0E 1Y0", cityName: "Grand le Pierre, NL" }, { postalCode: "E5G 1J4", cityName: "Grand Manan Island, NB" }, { postalCode: "R0E 0T0", cityName: "Grand Marais, MB" }, { postalCode: "B1K 1M9", cityName: "Grand Mira North, NS" }, { postalCode: "B1K 1H2", cityName: "Grand Mira South, NS" }, { postalCode: "B1T 1A4", cityName: "Grand Narrows, NS" }, { postalCode: "B0P 1M0", cityName: "Grand Pre, NS" }, { postalCode: "R0C 1E0", cityName: "Grand Rapids, MB" }, { postalCode: "B0E 1M0", cityName: "Grand River, NS" }, { postalCode: "L0N 1G0", cityName: "Grand Valley, ON" }, { postalCode: "E4P 0A1", cityName: "Grand-Barachois, NB" }, { postalCode: "G9T 7H3", cityName: "Grand-M&egrave;re, QC" }, { postalCode: "J0W 1E0", cityName: "Grand-Remous, QC" }, { postalCode: "J0G 1B0", cityName: "Grand-Saint-Esprit, QC" }, { postalCode: "T0E 0Y0", cityName: "Grande Cache, AB" }, { postalCode: "N0P 1S0", cityName: "Grande Pointe, ON" }, { postalCode: "R5A 0A1", cityName: "Grande Pointe, MB" }, { postalCode: "T8V 0R4", cityName: "Grande Prairie Central, AB" }, { postalCode: "T8X 0A2", cityName: "Grande Prairie East, AB" }, { postalCode: "T8W 0A6", cityName: "Grande Prairie South, AB" }, { postalCode: "E8N 1M8", cityName: "Grande-Anse, NB" }, { postalCode: "E8N 0A1", cityName: "Grande-Anse, NB" }, { postalCode: "E4R 0A4", cityName: "Grande-Digue, NB" }, { postalCode: "G4T 7A1", cityName: "Grande-Entree, QC" }, { postalCode: "G0C 1V0", cityName: "Grande-Riviere, QC" }, { postalCode: "G0C 1W0", cityName: "Grande-Riviere-Ouest, QC" }, { postalCode: "G0E 1K0", cityName: "Grande-Vallee, QC" }, { postalCode: "G0T 1G0", cityName: "Grandes-Bergeronnes, QC" }, { postalCode: "G0X 1H0", cityName: "Grandes-Piles, QC" }, { postalCode: "S0K 1V0", cityName: "Grandora, SK" }, { postalCode: "R0L 0Y0", cityName: "Grandview, MB" }, { postalCode: "V0J 1W0", cityName: "Granisle, BC" }, { postalCode: "N0M 1V0", cityName: "Granton, ON" }, { postalCode: "B0S 1K0", cityName: "Granville Ferry, NS" }, { postalCode: "R0B 0P0", cityName: "Granville Lake, MB" }, { postalCode: "V0B 1R0", cityName: "Grasmere, BC" }, { postalCode: "B2C 1B9", cityName: "Grass Cove, NS" }, { postalCode: "L0R 1M0", cityName: "Grassie, ON" }, { postalCode: "T0A 1V0", cityName: "Grassland, AB" }, { postalCode: "T0K 0Z0", cityName: "Grassy Lake, AB" }, { postalCode: "P0X 1B0", cityName: "Grassy Narrows, ON" }, { postalCode: "A0A 2L0", cityName: "Grates Cove, NL" }, { postalCode: "E8G 1N2", cityName: "Gravel Hill, NB" }, { postalCode: "S0H 1X0", cityName: "Gravelbourg, SK" }, { postalCode: "P1P 1Z8", cityName: "Gravenhurst, ON" }, { postalCode: "S0G 2A0", cityName: "Gray, SK" }, { postalCode: "V0B 1S0", cityName: "Gray Creek, BC" }, { postalCode: "E9B 1B9", cityName: "Gray Rapids, NB" }, { postalCode: "S0A 1E0", cityName: "Grayson, SK" }, { postalCode: "R0G 0T0", cityName: "Graysville, MB" }, { postalCode: "R0E 0V0", cityName: "Great Falls, MB" }, { postalCode: "B0M 1L0", cityName: "Great Village, NS" }, { postalCode: "E1H 0A9", cityName: "Greater Lakeburn, NB" }, { postalCode: "P3B 4K8", cityName: "Greater Sudbury (Downtown / Minnow Lake), ON" }, { postalCode: "P3L 1P8", cityName: "Greater Sudbury (Garson), ON" }, { postalCode: "P3C 5N1", cityName: "Greater Sudbury (Gatchell / West End / Little Britain), ON" }, { postalCode: "P3P 1Z7", cityName: "Greater Sudbury (Hanmer), ON" }, { postalCode: "P3Y 1R1", cityName: "Greater Sudbury (Lively), ON" }, { postalCode: "P3G 1M8", cityName: "Greater Sudbury (Lo-Ellen / McFarlane Lake), ON" }, { postalCode: "P3A 6E3", cityName: "Greater Sudbury (New Sudbury), ON" }, { postalCode: "P3E 6L1", cityName: "Greater Sudbury (Robinson / Lockerby), ON" }, { postalCode: "P3N 1S7", cityName: "Greater Sudbury (Val Caron), ON" }, { postalCode: "V3E 3X5", cityName: "Greater Vancouver, BC" }, { postalCode: "K4P 0A6", cityName: "Greely, ON" }, { postalCode: "B4V 6N2", cityName: "Green Bay, NS" }, { postalCode: "C0A 1M0", cityName: "Green Gables, PEI" }, { postalCode: "C0A 1M0", cityName: "Green Gables, PEI" }, { postalCode: "E6B 2H1", cityName: "Green Hill, NB" }, { postalCode: "A0K 2V0", cityName: "Green Island Brook, NL" }, { postalCode: "A0K 2W0", cityName: "Green Island Cove, NL" }, { postalCode: "S0M 1B0", cityName: "Green Lake, SK" }, { postalCode: "E6H 0A5", cityName: "Green Mountain, NB" }, { postalCode: "R0A 0P0", cityName: "Green Ridge, MB" }, { postalCode: "E7M 3R5", cityName: "Green Road, NB" }, { postalCode: "E7N 2G9", cityName: "Green Road, NB" }, { postalCode: "K0C 1L0", cityName: "Green Valley, ON" }, { postalCode: "L0C 1B0", cityName: "Greenbank, ON" }, { postalCode: "B0T 1E0", cityName: "Greenfield, NS" }, { postalCode: "E7L 1W7", cityName: "Greenfield, NB" }, { postalCode: "J4V 3R7", cityName: "Greenfield Park, QC" }, { postalCode: "J4R 2C2", cityName: "Greenfield Park, QC" }, { postalCode: "E6E 1E7", cityName: "Greenhill Lake, NB" }, { postalCode: "A0B 1X0", cityName: "Greens Harbour, NL" }, { postalCode: "A0G 2N0", cityName: "Greenspond, NL" }, { postalCode: "V0J 1X0", cityName: "Greenville, BC" }, { postalCode: "B0P 1N0", cityName: "Greenwood, NS" }, { postalCode: "L0H 1H0", cityName: "Greenwood, ON" }, { postalCode: "V0H 1J0", cityName: "Greenwood, BC" }, { postalCode: "E7K 2N8", cityName: "Gregg Settlement, NB" }, { postalCode: "S0G 2B0", cityName: "Grenfell, SK" }, { postalCode: "J0V 1J0", cityName: "Grenville, QC" }, { postalCode: "R0G 0V0", cityName: "Gretna, MB" }, { postalCode: "A0N 2L0", cityName: "Grey River, NL" }, { postalCode: "S0C 1G0", cityName: "Griffin, SK" }, { postalCode: "H3C 6J7", cityName: "Griffintown (Includes &Icirc;le Notre-Dame &amp; &Icirc;le Sainte-H&eacute;l&egrave;ne), QC" }, { postalCode: "K0J 2R0", cityName: "Griffith, ON" }, { postalCode: "B4V 0Z9", cityName: "Grimms Settlement, NS" }, { postalCode: "L3M 5S1", cityName: "Grimsby, ON" }, { postalCode: "T0H 1W0", cityName: "Grimshaw, AB" }, { postalCode: "V0E 1Y0", cityName: "Grindrod, BC" }, { postalCode: "X0A 0J0", cityName: "Grise Fiord, NU" }, { postalCode: "R0M 0S0", cityName: "Griswold, MB" }, { postalCode: "G0A 1W0", cityName: "Grondines, QC" }, { postalCode: "S0E 0W0", cityName: "Gronlid, SK" }, { postalCode: "G0E 1L0", cityName: "Gros-Morne, QC" }, { postalCode: "R0C 1G0", cityName: "Grosse Isle, MB" }, { postalCode: "G4T 6A1", cityName: "Grosse-Ile, QC" }, { postalCode: "G0J 1K0", cityName: "Grosses-Roches, QC" }, { postalCode: "T0G 1C0", cityName: "Grouard, AB" }, { postalCode: "V0C 1T0", cityName: "Groundbirch, BC" }, { postalCode: "E5N 4M9", cityName: "Grove Hill, NB" }, { postalCode: "T0H 1X0", cityName: "Grovedale, AB" }, { postalCode: "B1Y 2B2", cityName: "Groves Point, NS" }, { postalCode: "R0A 0R0", cityName: "Grunthal, MB" }, { postalCode: "N1G 5K8", cityName: "Guelph Central, ON" }, { postalCode: "N1L 1H6", cityName: "Guelph East, ON" }, { postalCode: "N1E 7M1", cityName: "Guelph North, ON" }, { postalCode: "N1H 8P4", cityName: "Guelph Northwest, ON" }, { postalCode: "N1C 1G8", cityName: "Guelph South, ON" }, { postalCode: "N1K 1S1", cityName: "Guelph West, ON" }, { postalCode: "J0Z 2E0", cityName: "Guerin, QC" }, { postalCode: "S0K 1W0", cityName: "Guernsey, SK" }, { postalCode: "P0T 1P0", cityName: "Gull Bay, ON" }, { postalCode: "S0N 1A0", cityName: "Gull Lake, SK" }, { postalCode: "T0H 4C0", cityName: "Gundy, AB" }, { postalCode: "T0E 1A0", cityName: "Gunn, AB" }, { postalCode: "R0C 1H0", cityName: "Gunton, MB" }, { postalCode: "T0H 1Y0", cityName: "Guy, AB" }, { postalCode: "J0Y 1L0", cityName: "Guyenne, QC" }, { postalCode: "B0H 1N0", cityName: "Guysborough, NS" }, { postalCode: "T0C 1L0", cityName: "Gwynne, AB" }, { postalCode: "R0C 1J0", cityName: "Gypsumville, MB" }, { postalCode: "G8N 1W3", cityName: "H&eacute;bertville, QC" }, { postalCode: "E8M 1H8", cityName: "Hacheyville, NB" }, { postalCode: "B3Z 3J3", cityName: "Hacketts Cove, NS" }, { postalCode: "R0E 0X0", cityName: "Hadashville, MB" }, { postalCode: "S0J 1A0", cityName: "Hafford, SK" }, { postalCode: "P0M 1X0", cityName: "Hagar, ON" }, { postalCode: "S0J 1B0", cityName: "Hagen, SK" }, { postalCode: "V0T 1H0", cityName: "Hagensborg, BC" }, { postalCode: "N0A 1H0", cityName: "Hagersville, ON" }, { postalCode: "S0K 1X0", cityName: "Hague, SK" }, { postalCode: "P0J 1K0", cityName: "Haileybury, ON" }, { postalCode: "Y0B 1L0", cityName: "Haines Junction, YT" }, { postalCode: "T0B 1S0", cityName: "Hairy Hill, AB" }, { postalCode: "V0T 2B0", cityName: "Haisla, BC" }, { postalCode: "S0C 1H0", cityName: "Halbrite, SK" }, { postalCode: "R0A 0S0", cityName: "Halbstadt, MB" }, { postalCode: "E9E 1W4", cityName: "Halcomb, NB" }, { postalCode: "K0J 1Y0", cityName: "Haley Station, ON" }, { postalCode: "T4S 1S1", cityName: "Halfmoon Bay, AB" }, { postalCode: "V0N 1Y0", cityName: "Halfmoon Bay, BC" }, { postalCode: "K0M 1S0", cityName: "Haliburton, ON" }, { postalCode: "B3V 1J6", cityName: "Halibut Bay, NS" }, { postalCode: "B3V 0A6", cityName: "Halifax, NS" }, { postalCode: "B3M 1A1", cityName: "Halifax Bedford Basin, NS" }, { postalCode: "B3L 1A1", cityName: "Halifax Central, NS" }, { postalCode: "B3H 1A1", cityName: "Halifax Lower Harbour, NS" }, { postalCode: "B3J 1A1", cityName: "Halifax Mid-Harbour Nova Scotia Provincial Government, NS" }, { postalCode: "B3P 1A1", cityName: "Halifax North West Arm, NS" }, { postalCode: "B3R 0A1", cityName: "Halifax South, NS" }, { postalCode: "B3N 1A1", cityName: "Halifax South Central, NS" }, { postalCode: "B3K 1A1", cityName: "Halifax Upper Harbour, NS" }, { postalCode: "B3S 0A2", cityName: "Halifax West, NS" }, { postalCode: "T0C 1M0", cityName: "Halkirk, AB" }, { postalCode: "X0A 0K0", cityName: "Hall Beach, NU" }, { postalCode: "P0L 1L0", cityName: "Hallebourg, ON" }, { postalCode: "L7G 4S7", cityName: "Halton Hills, ON" }, { postalCode: "L0P 1N0", cityName: "Halton Regional Municipality (Campbellville), ON" }, { postalCode: "L8E 0E5", cityName: "Hamilton, ON" }, { postalCode: "L8J 1R5", cityName: "Hamilton, ON" }, { postalCode: "L9H 5E1", cityName: "Hamilton, ON" }, { postalCode: "L9B 2Y4", cityName: "Hamilton (Barnstown / West Chappel / Allison / Ryckmans / Mewburn / Sheldon / Falkirk / Carpenter / Kennedy / Southwest Outskirts), ON" }, { postalCode: "L8R 3P9", cityName: "Hamilton (Central / Strathcona / South Dundurn), ON" }, { postalCode: "L8E 6H2", cityName: "Hamilton (Confederation Park / Nashdale / East Kentley / Riverdale / Lakely / Grayside / North Stoney Creek), ON" }, { postalCode: "L9A 5E7", cityName: "Hamilton (Crerar / Bruleville / Hill Park / Inch Park / Centremount / Balfour / Greeningdon / Jerome), ON" }, { postalCode: "L8P 4Z6", cityName: "Hamilton (Durand / Kirkendall / Chedoke Park), ON" }, { postalCode: "L8J 3S2", cityName: "Hamilton (East Albion Falls / South Stoney Creek), ON" }, { postalCode: "L8K 6M3", cityName: "Hamilton (East Delta / Bartonville / Glenview / Rosedale / Lower King\'s Forest / Red Hill / Corman / Vincent / South Gershome), ON" }, { postalCode: "L8G 5H4", cityName: "Hamilton (Greenford / North Gershome / West Stoney Creek), ON" }, { postalCode: "L8V 4X2", cityName: "Hamilton (Raleigh / Macassa / Lawfield / Thorner / Burkholme / Eastmount), ON" }, { postalCode: "L8T 4Z1", cityName: "Hamilton (Sherwood / Huntington / Upper King\'s Forest / Lisgar / Berrisfield / Hampton Heights / Sunninghill), ON" }, { postalCode: "L9C 7T1", cityName: "Hamilton (Southam / Bonnington / Yeoville / Kernighan / Gourley / Rolston / Buchanan / Mohawk / Westcliffe / Gilbert / Gilkson / Gurnett / Fessenden / Mountview), ON" }, { postalCode: "L8N 4K5", cityName: "Hamilton (Stinson / Corktown), ON" }, { postalCode: "L8W 3W1", cityName: "Hamilton (West Albion Falls / Hannon / Rymal / Trenholme / Quinndale / Templemead / Broughton / Eleanor / Randall / Rushdale / Butler / East Chappel), ON" }, { postalCode: "L8M 3M8", cityName: "Hamilton (West Delta / Blakeley / South Stipley / South Gibson / St. Clair), ON" }, { postalCode: "L8L 8K8", cityName: "Hamilton (West Industrial Sector / West Crown Point / North Stipley / North Gibson / Landsdale / Keith / North End / Beasley), ON" }, { postalCode: "L8H 7T4", cityName: "Hamilton (West Kentley / McQuesten / Parkview / Hamilton Beach / East Industrial Sector / Normanhurst / Homeside / East Crown Point), ON" }, { postalCode: "L8S 4N3", cityName: "Hamilton (Westdale / Cootes Paradise / Ainslie Wood), ON" }, { postalCode: "R0M 0T0", cityName: "Hamiota, MB" }, { postalCode: "K0A 2A0", cityName: "Hammond, ON" }, { postalCode: "B3Z 0C1", cityName: "Hammonds Plains, NS" }, { postalCode: "E4E 3R9", cityName: "Hammondvale, NB" }, { postalCode: "A0K 2Y0", cityName: "Hampden, NL" }, { postalCode: "H3X 4A8", cityName: "Hampstead, QC" }, { postalCode: "E5M 2B5", cityName: "Hampstead, NB" }, { postalCode: "H3X 1A5", cityName: "Hampstead, QC" }, { postalCode: "E5N 3S8", cityName: "Hampton, NB" }, { postalCode: "B0S 1L0", cityName: "Hampton, NS" }, { postalCode: "E5N 0A2", cityName: "Hampton, NB" }, { postalCode: "L0B 1J0", cityName: "Hampton, ON" }, { postalCode: "V0L 1K0", cityName: "Hanceville, BC" }, { postalCode: "S0K 1Y0", cityName: "Handel, SK" }, { postalCode: "E2V 0A5", cityName: "Haneytown, NB" }, { postalCode: "E5N 2E8", cityName: "Hanford Brook, NB" }, { postalCode: "S0G 2E0", cityName: "Hanley, SK" }, { postalCode: "T0J 1P0", cityName: "Hanna, AB" }, { postalCode: "L0R 1P0", cityName: "Hannon, ON" }, { postalCode: "N4N 0A1", cityName: "Hanover, ON" }, { postalCode: "B0N 1V0", cityName: "Hants County (Shubenacadie), NS" }, { postalCode: "A0B 1Y0", cityName: "Hants Harbour, NL" }, { postalCode: "B0P 1P0", cityName: "Hantsport, NS" }, { postalCode: "E3C 0A7", cityName: "Hanwell, NB" }, { postalCode: "E3E 0A1", cityName: "Hanwell, NB" }, { postalCode: "A0P 1C0", cityName: "Happy Valley-Goose Bay, NL" }, { postalCode: "A0H 1P0", cityName: "Harbour Breton, NL" }, { postalCode: "A0A 2M0", cityName: "Harbour Grace, NL" }, { postalCode: "A0A 2N0", cityName: "Harbour Grace South, NL" }, { postalCode: "A0A 2P0", cityName: "Harbour Main, NL" }, { postalCode: "A0E 1Z0", cityName: "Harbour Mille, NL" }, { postalCode: "A0K 3A0", cityName: "Harbour Round, NL" }, { postalCode: "E4T 0A1", cityName: "Harcourt, NB" }, { postalCode: "K0L 1X0", cityName: "Harcourt, ON" }, { postalCode: "R0M 0V0", cityName: "Harding, MB" }, { postalCode: "T0B 1V0", cityName: "Hardisty, AB" }, { postalCode: "E9A 1J9", cityName: "Hardwicke, NB" }, { postalCode: "E4A 1A1", cityName: "Hardwood Ridge, NB" }, { postalCode: "A0G 2P0", cityName: "Hare Bay BB, NL" }, { postalCode: "E4Z 2L1", cityName: "Harewood, NB" }, { postalCode: "R0M 0W0", cityName: "Hargrave, MB" }, { postalCode: "N0E 1E0", cityName: "Harley, ON" }, { postalCode: "B3V 0A1", cityName: "Harrietsfield, NS" }, { postalCode: "B3V 0A8", cityName: "Harrietsfield, NS" }, { postalCode: "N0L 1N0", cityName: "Harrietsville, ON" }, { postalCode: "J0T 1G0", cityName: "Harrington, QC" }, { postalCode: "J8G 2S4", cityName: "Harrington, QC" }, { postalCode: "G0G 1N0", cityName: "Harrington Harbour, QC" }, { postalCode: "S0L 1K0", cityName: "Harris, SK" }, { postalCode: "V0M 1K0", cityName: "Harrison Hot Springs, BC" }, { postalCode: "V0M 1A2", cityName: "Harrison Lake Region (Agassiz), BC" }, { postalCode: "V0M 1L0", cityName: "Harrison Mills, BC" }, { postalCode: "N0G 1Z0", cityName: "Harriston, ON" }, { postalCode: "V0A 1J0", cityName: "Harrogate, BC" }, { postalCode: "N0R 1G0", cityName: "Harrow, ON" }, { postalCode: "K0H 1V0", cityName: "Harrowsmith, ON" }, { postalCode: "A0J 1E0", cityName: "Harrys Harbour, NL" }, { postalCode: "E6G 1Z7", cityName: "Hartfield, NB" }, { postalCode: "E7M 0A7", cityName: "Hartford, NB" }, { postalCode: "E6H 0A9", cityName: "Hartin Settlement, NB" }, { postalCode: "K0H 1W0", cityName: "Hartington, ON" }, { postalCode: "E7P 0A3", cityName: "Hartland, NB" }, { postalCode: "E7P 0A2", cityName: "Hartland, NB" }, { postalCode: "E7K 2V4", cityName: "Hartley Settlement, NB" }, { postalCode: "R0M 0X0", cityName: "Hartney, MB" }, { postalCode: "P0L 1M0", cityName: "Harty, ON" }, { postalCode: "E6K 1A7", cityName: "Harvey, NB" }, { postalCode: "E4H 0B1", cityName: "Harvey Albert Co, NB" }, { postalCode: "E6K 1A1", cityName: "Harvey Station, NB" }, { postalCode: "T1W 2W2", cityName: "Harvie Heights, AB" }, { postalCode: "K0K 2H0", cityName: "Harwood, ON" }, { postalCode: "K0L 1Y0", cityName: "Hastings, ON" }, { postalCode: "B3T 0A2", cityName: "Hatchet Lake, NS" }, { postalCode: "E5T 2N9", cityName: "Hatfield Point, NB" }, { postalCode: "J0B 4B0", cityName: "Hatley, QC" }, { postalCode: "E8T 3L3", cityName: "Haut-Lameque, NB" }, { postalCode: "E8R 1S7", cityName: "Haut-Paquetville, NB" }, { postalCode: "E9H 0A7", cityName: "Haut-Riviere-du-Portage, NB" }, { postalCode: "E4V 3A3", cityName: "Haut-Saint-Antoine, NB" }, { postalCode: "E8S 0A7", cityName: "Haut-Shippagan, NB" }, { postalCode: "E4P 5L6", cityName: "Haute-Aboujagane, NB" }, { postalCode: "E4Z 0A1", cityName: "Havelock, NB" }, { postalCode: "J0S 2C0", cityName: "Havelock, QC" }, { postalCode: "K0L 1Z0", cityName: "Havelock, ON" }, { postalCode: "B0H 1P0", cityName: "Havre Boucher, NS" }, { postalCode: "G4T 9A1", cityName: "Havre-Aubert, QC" }, { postalCode: "G4T 5A1", cityName: "Havre-aux-Maisons, QC" }, { postalCode: "G0G 1P0", cityName: "Havre-Saint-Pierre, QC" }, { postalCode: "S0H 1Y0", cityName: "Hawarden, SK" }, { postalCode: "P0S 1G0", cityName: "Hawk Junction, ON" }, { postalCode: "A0K 3B0", cityName: "Hawkes Bay, NL" }, { postalCode: "K6A 1A6", cityName: "Hawkesbury, ON" }, { postalCode: "L0L 1T0", cityName: "Hawkestone, ON" }, { postalCode: "N0B 1X0", cityName: "Hawkesville, ON" }, { postalCode: "E6E 1M6", cityName: "Hawkins Corner, NB" }, { postalCode: "E6G 1N7", cityName: "Hawkshaw, NB" }, { postalCode: "N0M 1W0", cityName: "Hay, ON" }, { postalCode: "T0B 1W0", cityName: "Hay Lakes, AB" }, { postalCode: "X0E 0R0", cityName: "Hay River, NT" }, { postalCode: "E7N 2T4", cityName: "Hay Settlement, NB" }, { postalCode: "L1C 3K2", cityName: "Haydon, ON" }, { postalCode: "E6A 1T2", cityName: "Hayesville, NB" }, { postalCode: "E3L 5A5", cityName: "Hayman Hill, NB" }, { postalCode: "T0K 1B0", cityName: "Hays, AB" }, { postalCode: "T0B 1X0", cityName: "Hayter, AB" }, { postalCode: "R0G 0W0", cityName: "Haywood, MB" }, { postalCode: "S0A 1G0", cityName: "Hazel Dell, SK" }, { postalCode: "E7G 1L7", cityName: "Hazeldean, NB" }, { postalCode: "R0E 0Y0", cityName: "Hazelridge, MB" }, { postalCode: "E9C 1P1", cityName: "Hazelton, NB" }, { postalCode: "V0J 1Y0", cityName: "Hazelton, BC" }, { postalCode: "S0N 1C0", cityName: "Hazenmore, SK" }, { postalCode: "S0N 1E0", cityName: "Hazlet, SK" }, { postalCode: "A0H 1R0", cityName: "Head Bay d\'Espoir, NL" }, { postalCode: "B0J 1N0", cityName: "Head of Chezzetcook, NS" }, { postalCode: "B0J 1P0", cityName: "Head of Jeddore, NS" }, { postalCode: "E4G 1A1", cityName: "Head of Millstream, NB" }, { postalCode: "B3Z 0C9", cityName: "Head of St Margarets Bay, NS" }, { postalCode: "R4H 1B4", cityName: "Headingley East, MB" }, { postalCode: "R4J 1A3", cityName: "Headingley West, MB" }, { postalCode: "S0H 1Z0", cityName: "Hearne, SK" }, { postalCode: "P0L 1N0", cityName: "Hearst, ON" }, { postalCode: "A0B 1Z0", cityName: "Heart\'s Content, NL" }, { postalCode: "A0B 2A0", cityName: "Heart\'s Delight, NL" }, { postalCode: "A0B 2B0", cityName: "Heart\'s Desire, NL" }, { postalCode: "N0H 1N0", cityName: "Heathcote, ON" }, { postalCode: "A0N 1M0", cityName: "Heatherton, NL" }, { postalCode: "B0H 1R0", cityName: "Heatherton, NS" }, { postalCode: "E3L 5A9", cityName: "Heathland, NB" }, { postalCode: "B4V 0W2", cityName: "Hebbs Cross, NS" }, { postalCode: "B4V 6V4", cityName: "Hebbville, NS" }, { postalCode: "E4T 2B4", cityName: "Hebert, NB" }, { postalCode: "G0W 1T0", cityName: "Hebertville-Station, QC" }, { postalCode: "B0W 1X0", cityName: "Hebron, NS" }, { postalCode: "E4H 2C3", cityName: "Hebron, NB" }, { postalCode: "V0X 1K0", cityName: "Hedley, BC" }, { postalCode: "V0E 1Z0", cityName: "Heffley Creek, BC" }, { postalCode: "N0B 1Y0", cityName: "Heidelberg, ON" }, { postalCode: "T0A 1X0", cityName: "Heinsburg, AB" }, { postalCode: "T0B 2A0", cityName: "Heisler, AB" }, { postalCode: "J0L 1H0", cityName: "Hemmingford, QC" }, { postalCode: "E5T 4J2", cityName: "Henderson Settlement, NB" }, { postalCode: "S0E 0X0", cityName: "Hendon, SK" }, { postalCode: "S0J 1C0", cityName: "Henribourg, SK" }, { postalCode: "J0J 1E0", cityName: "Henryville, QC" }, { postalCode: "N0M 1X0", cityName: "Hensall, ON" }, { postalCode: "S0K 1Z0", cityName: "Hepburn, SK" }, { postalCode: "N0H 1P0", cityName: "Hepworth, ON" }, { postalCode: "S0H 2A0", cityName: "Herbert, SK" }, { postalCode: "V0P 1H0", cityName: "Heriot Bay, BC" }, { postalCode: "A0H 1S0", cityName: "Hermitage, NL" }, { postalCode: "P0T 1R0", cityName: "Heron Bay, ON" }, { postalCode: "G0X 1J0", cityName: "Herouxville, QC" }, { postalCode: "B3R 1A1", cityName: "Herring Cove, NS" }, { postalCode: "B3V 0A2", cityName: "Herring Cove, NS" }, { postalCode: "A0G 2R0", cityName: "Herring Neck, NL" }, { postalCode: "S0L 1L0", cityName: "Herschel, SK" }, { postalCode: "E5V 1A7", cityName: "Hersonville, NB" }, { postalCode: "S0G 2G0", cityName: "Heward, SK" }, { postalCode: "E5V 1L3", cityName: "Hibernia Cove, NB" }, { postalCode: "A0C 1P0", cityName: "Hickmans Harbour, NL" }, { postalCode: "N0J 1L0", cityName: "Hickson, ON" }, { postalCode: "E4Z 5B7", cityName: "Hicksville, NB" }, { postalCode: "R0H 0K0", cityName: "High Bluff, MB" }, { postalCode: "T0H 1Z0", cityName: "High Level, AB" }, { postalCode: "T0G 1E0", cityName: "High Prairie, AB" }, { postalCode: "T1V 0A9", cityName: "High River, AB" }, { postalCode: "E4C 1L4", cityName: "Highfield, NB" }, { postalCode: "N0P 1T0", cityName: "Highgate, ON" }, { postalCode: "K0L 2A0", cityName: "Highland Grove, ON" }, { postalCode: "B2C 1G2", cityName: "Highland Hill, NS" }, { postalCode: "V9B 0H1", cityName: "Highlands, BC" }, { postalCode: "A0N 1N0", cityName: "Highlands, NL" }, { postalCode: "R0C 1L0", cityName: "Hilbre, MB" }, { postalCode: "T0J 1R0", cityName: "Hilda, AB" }, { postalCode: "T0K 1E0", cityName: "Hill Spring, AB" }, { postalCode: "E7H 1W9", cityName: "Hillandale, NB" }, { postalCode: "T0K 1C0", cityName: "Hillcrest Mines, AB" }, { postalCode: "A0G 2S0", cityName: "Hillgrade, NL" }, { postalCode: "E4Z 5W2", cityName: "Hillgrove, NB" }, { postalCode: "T0B 2B0", cityName: "Hilliard, AB" }, { postalCode: "P0J 1L0", cityName: "Hilliardton, ON" }, { postalCode: "K0K 2J0", cityName: "Hillier, ON" }, { postalCode: "E4H 2B8", cityName: "Hillsborough, NB" }, { postalCode: "E4H 0A2", cityName: "Hillsborough, NB" }, { postalCode: "E4H 4C7", cityName: "Hillsborough West, NB" }, { postalCode: "N0B 1Z0", cityName: "Hillsburgh, ON" }, { postalCode: "E4E 3Z3", cityName: "Hillsdale, NB" }, { postalCode: "L0L 1V0", cityName: "Hillsdale, ON" }, { postalCode: "B1Y 2S7", cityName: "Hillside Boularderie, NS" }, { postalCode: "E9E 1R6", cityName: "Hilltop, NB" }, { postalCode: "A0E 2A0", cityName: "Hillview, NL" }, { postalCode: "P0R 1G0", cityName: "Hilton Beach, ON" }, { postalCode: "J0S 1E0", cityName: "Hinchinbrooke, QC" }, { postalCode: "T0H 2A0", cityName: "Hines Creek, AB" }, { postalCode: "T7V 1H8", cityName: "Hinton, AB" }, { postalCode: "V0K 1S0", cityName: "Hixon, BC" }, { postalCode: "T0C 1N0", cityName: "Hobbema, AB" }, { postalCode: "H1W 4A4", cityName: "Hochelaga, QC" }, { postalCode: "A0E 2B0", cityName: "Hodges Cove, NL" }, { postalCode: "S0H 2B0", cityName: "Hodgeville, SK" }, { postalCode: "R0C 1N0", cityName: "Hodgson, MB" }, { postalCode: "S0J 1E0", cityName: "Hoey, SK" }, { postalCode: "S0J 1G0", cityName: "Holbein, SK" }, { postalCode: "V0N 1Z0", cityName: "Holberg, BC" }, { postalCode: "T0B 2C0", cityName: "Holden, AB" }, { postalCode: "S0G 2H0", cityName: "Holdfast, SK" }, { postalCode: "R0G 0X0", cityName: "Holland, MB" }, { postalCode: "N0H 1R0", cityName: "Holland Centre, ON" }, { postalCode: "L9N 1N7", cityName: "Holland Landing, ON" }, { postalCode: "E7J 1W1", cityName: "Holmesville, NB" }, { postalCode: "R0K 1A0", cityName: "Holmfield, MB" }, { postalCode: "N0G 2A0", cityName: "Holstein, ON" }, { postalCode: "E6A 1W8", cityName: "Holtville, NB" }, { postalCode: "P0K 1C0", cityName: "Holtyre, ON" }, { postalCode: "A0A 2R0", cityName: "Holyrood, NL" }, { postalCode: "N0G 2B0", cityName: "Holyrood, ON" }, { postalCode: "B1B 1R4", cityName: "Homeville, NS" }, { postalCode: "R0G 0Y0", cityName: "Homewood, MB" }, { postalCode: "T0G 1G0", cityName: "Hondo, AB" }, { postalCode: "E5A 1N6", cityName: "Honeydale, NB" }, { postalCode: "V0R 1Y0", cityName: "Honeymoon Bay, BC" }, { postalCode: "L0N 1H0", cityName: "Honeywood, ON" }, { postalCode: "G0R 1N0", cityName: "Honfleur, QC" }, { postalCode: "S0L 1M0", cityName: "Hoosier, SK" }, { postalCode: "G0C 2K0", cityName: "Hope, QC" }, { postalCode: "V0X 1L0", cityName: "Hope, BC" }, { postalCode: "A0B 2C0", cityName: "Hopeall, NL" }, { postalCode: "A0P 1G0", cityName: "Hopedale, NL" }, { postalCode: "B0K 1C0", cityName: "Hopewell, NS" }, { postalCode: "E4H 3G5", cityName: "Hopewell Cape, NB" }, { postalCode: "E4H 2L8", cityName: "Hopewell Hill, NB" }, { postalCode: "L0P 1E0", cityName: "Hornby, ON" }, { postalCode: "V0R 1Z0", cityName: "Hornby Island, BC" }, { postalCode: "R0G 0Z0", cityName: "Horndean, MB" }, { postalCode: "P0H 1P0", cityName: "Hornell Heights, ON" }, { postalCode: "P0M 1Z0", cityName: "Hornepayne, ON" }, { postalCode: "L0N 1J0", cityName: "Hornings Mills, ON" }, { postalCode: "V0L 1L0", cityName: "Horsefly, BC" }, { postalCode: "A0G 2T0", cityName: "Horwood, NL" }, { postalCode: "T0H 2B0", cityName: "Hotchkiss, AB" }, { postalCode: "V0J 1Z0", cityName: "Houston, BC" }, { postalCode: "E9B 0B3", cityName: "Howard, NB" }, { postalCode: "E7P 2A1", cityName: "Howard Brook, NB" }, { postalCode: "R5A 1E7", cityName: "Howden, MB" }, { postalCode: "J0S 1G0", cityName: "Howick, QC" }, { postalCode: "B1L 0A3", cityName: "Howie Center, NS" }, { postalCode: "E6E 1P8", cityName: "Howland Ridge, NB" }, { postalCode: "A0K 3E0", cityName: "Howley, NL" }, { postalCode: "S0A 1J0", cityName: "Hubbard, SK" }, { postalCode: "B0J 1T0", cityName: "Hubbards, NS" }, { postalCode: "J0T 1G0", cityName: "Huberdeau, QC" }, { postalCode: "B3Z 0A1", cityName: "Hubley, NS" }, { postalCode: "J0P 1H0", cityName: "Hudson, QC" }, { postalCode: "P0V 1X0", cityName: "Hudson, ON" }, { postalCode: "S0E 0Y0", cityName: "Hudson Bay, SK" }, { postalCode: "J0P 1J0", cityName: "Hudson Heights, QC" }, { postalCode: "V0C 1V0", cityName: "Hudson\'s Hope, BC" }, { postalCode: "T0B 2E0", cityName: "Hughenden, AB" }, { postalCode: "J8Y 6S4", cityName: "Hull Central (Gatineau), QC" }, { postalCode: "J8Z 3R2", cityName: "Hull North (Gatineau), QC" }, { postalCode: "J8X 4G2", cityName: "Hull Southeast (Gatineau), QC" }, { postalCode: "J9A 3W4", cityName: "Hull Southwest (Gatineau), QC" }, { postalCode: "S0K 2A0", cityName: "Humboldt, SK" }, { postalCode: "P0L 1P0", cityName: "Hunta, ON" }, { postalCode: "C0A 1N0", cityName: "Hunter River, PEI" }, { postalCode: "C0A 1N0", cityName: "Hunter River, PEI" }, { postalCode: "E4C 3J6", cityName: "Hunters Home, NB" }, { postalCode: "J0S 1H0", cityName: "Huntingdon, QC" }, { postalCode: "B1K 1S7", cityName: "Huntington, NS" }, { postalCode: "B0T 1G0", cityName: "Hunts Point, NS" }, { postalCode: "P1H 2R2", cityName: "Huntsville, ON" }, { postalCode: "N0G 1B0", cityName: "Huron (Wingham), ON" }, { postalCode: "N0M 1Y0", cityName: "Huron Park, ON" }, { postalCode: "T0J 1S0", cityName: "Hussar, AB" }, { postalCode: "T0M 0Z0", cityName: "Huxley, AB" }, { postalCode: "S0A 1K0", cityName: "Hyas, SK" }, { postalCode: "T0A 1Z0", cityName: "Hylo, AB" }, { postalCode: "T0H 2C0", cityName: "Hythe, AB" }, { postalCode: "T0J 1T0", cityName: "Iddesleigh, AB" }, { postalCode: "X0A 0L0", cityName: "Igloolik, NU" }, { postalCode: "P0T 1T0", cityName: "Ignace, ON" }, { postalCode: "N0M 2A0", cityName: "Ilderton, ON" }, { postalCode: "R0A 0T0", cityName: "Ile des Chenes, MB" }, { postalCode: "J0X 1J0", cityName: "Ile Du Grand-Calumet, QC" }, { postalCode: "S0M 1C0", cityName: "Ile-a-la-Crosse, SK" }, { postalCode: "J0J 1G0", cityName: "Ile-aux-Noix, QC" }, { postalCode: "J0P 1K0", cityName: "Ile-Perrot-Sud, QC" }, { postalCode: "R0B 0S0", cityName: "Ilford, MB" }, { postalCode: "E4A 1B6", cityName: "Immigrant Road, NB" }, { postalCode: "A0G 2V0", cityName: "Indian Bay BB, NL" }, { postalCode: "B3Z 0L6", cityName: "Indian Harbour, NS" }, { postalCode: "S0G 2K0", cityName: "Indian Head, SK" }, { postalCode: "E4W 1S2", cityName: "Indian Island, NB" }, { postalCode: "E1G 0B1", cityName: "Indian Mountain, NB" }, { postalCode: "B4V 1V3", cityName: "Indian Path, NS" }, { postalCode: "K0L 2B0", cityName: "Indian River, ON" }, { postalCode: "T1X 0H7", cityName: "Indus, AB" }, { postalCode: "N5C 3Z6", cityName: "Ingersoll, ON" }, { postalCode: "K0C 1M0", cityName: "Ingleside, ON" }, { postalCode: "L7C 0G7", cityName: "Inglewood, ON" }, { postalCode: "R0J 0X0", cityName: "Inglis, MB" }, { postalCode: "B0T 1H0", cityName: "Ingomar, NS" }, { postalCode: "B0C 1K0", cityName: "Ingonish, NS" }, { postalCode: "B0C 1L0", cityName: "Ingonish Beach, NS" }, { postalCode: "B3Z 3Y7", cityName: "Ingramport, NS" }, { postalCode: "E8P 2C2", cityName: "Inkerman, NB" }, { postalCode: "E8P 0A6", cityName: "Inkerman, NB" }, { postalCode: "K0E 1J0", cityName: "Inkerman, ON" }, { postalCode: "E8P 1V6", cityName: "Inkerman Ferry, NB" }, { postalCode: "X0C 0G0", cityName: "Inner Nunavut (Rankin Inlet), NU" }, { postalCode: "N0J 1M0", cityName: "Innerkip, ON" }, { postalCode: "T4G 0A1", cityName: "Innisfail, AB" }, { postalCode: "L9S 4S9", cityName: "Innisfil, ON" }, { postalCode: "T0B 2G0", cityName: "Innisfree, AB" }, { postalCode: "V0T 1M0", cityName: "Inside Passage and the Queen Charlottes (Queen Charlotte City), BC" }, { postalCode: "S0A 1L0", cityName: "Insinger, SK" }, { postalCode: "T0K 0B0", cityName: "International Border Region (Cardston), AB" }, { postalCode: "E4Z 4X7", cityName: "Intervale, NB" }, { postalCode: "J0M 1M0", cityName: "Inukjuak, QC" }, { postalCode: "K0H 1X0", cityName: "Inverary, ON" }, { postalCode: "S0A 1M0", cityName: "Invermay, SK" }, { postalCode: "B0E 1N0", cityName: "Inverness, NS" }, { postalCode: "G0S 1K0", cityName: "Inverness, QC" }, { postalCode: "N0N 1K0", cityName: "Inwood, ON" }, { postalCode: "R0C 1P0", cityName: "Inwood, MB" }, { postalCode: "B2C 0A1", cityName: "Iona, NS" }, { postalCode: "N0L 1P0", cityName: "Iona Station, ON" }, { postalCode: "X0A 0H0", cityName: "Iqaluit, NU" }, { postalCode: "B1J 2B7", cityName: "Irish Cove, NS" }, { postalCode: "B2E 1E5", cityName: "Irish Cove, NS" }, { postalCode: "E7M 4Y8", cityName: "Irish Settlement, NB" }, { postalCode: "G6H 2M2", cityName: "Irlande, QC" }, { postalCode: "T0B 2H0", cityName: "Irma, AB" }, { postalCode: "E4A 1S9", cityName: "Iron Bound Cove, NB" }, { postalCode: "P0R 1H0", cityName: "Iron Bridge, ON" }, { postalCode: "T0A 2A0", cityName: "Iron River, AB" }, { postalCode: "T0K 1G0", cityName: "Iron Springs, AB" }, { postalCode: "K0M 1X0", cityName: "Irondale, ON" }, { postalCode: "B1Y 3P2", cityName: "Ironville, NS" }, { postalCode: "K0E 1K0", cityName: "Iroquois, ON" }, { postalCode: "P0K 1E0", cityName: "Iroquois Falls, ON" }, { postalCode: "P0K 1G0", cityName: "Iroquois Falls a, ON" }, { postalCode: "T0M 1B0", cityName: "Irricana, AB" }, { postalCode: "T0J 1V0", cityName: "Irvine, AB" }, { postalCode: "B0H 1S0", cityName: "Isaacs Harbour, NS" }, { postalCode: "R0M 0Y0", cityName: "Isabella, MB" }, { postalCode: "V0J 1K0", cityName: "Iskut, BC" }, { postalCode: "A0G 2W0", cityName: "Island Harbour, NL" }, { postalCode: "R0B 0T0", cityName: "Island Lake, MB" }, { postalCode: "S0M 3G0", cityName: "Island Lake, SK" }, { postalCode: "T9S 1S2", cityName: "Island Lake, AB" }, { postalCode: "T9S 1S1", cityName: "Island Lake South, AB" }, { postalCode: "E3E 0B5", cityName: "Island View, NB" }, { postalCode: "B1J 1J6", cityName: "Islandview, NS" }, { postalCode: "T0B 2J0", cityName: "Islay, AB" }, { postalCode: "G0A 1X0", cityName: "Isle-aux-Coudres, QC" }, { postalCode: "A0M 1J0", cityName: "Isle-aux-Morts, NL" }, { postalCode: "A0B 2E0", cityName: "Islington, NL" }, { postalCode: "G0S 1L0", cityName: "Issoudun, QC" }, { postalCode: "B0L 1A0", cityName: "Isthmus of Chignecto (River Hébert), NS" }, { postalCode: "B4V 0K7", cityName: "Italy Cross, NS" }, { postalCode: "S0A 1N0", cityName: "Ituna, SK" }, { postalCode: "J8C 2Z7", cityName: "Ivry-Sur-Le-Lac, QC" }, { postalCode: "J0M 1H0", cityName: "Ivujivik, QC" }, { postalCode: "S0M 1E0", cityName: "Jackfish Lake, SK" }, { postalCode: "E7M 5R8", cityName: "Jackson Falls, NB" }, { postalCode: "A0K 3H0", cityName: "Jacksons Arm, NL" }, { postalCode: "A0J 1G0", cityName: "Jacksons Cove, NL" }, { postalCode: "L0E 1L0", cityName: "Jacksons Point, ON" }, { postalCode: "E7M 3K9", cityName: "Jacksontown, NB" }, { postalCode: "E7M 0A2", cityName: "Jacksonville, NB" }, { postalCode: "G0A 1Y0", cityName: "Jacques-Cartier, QC" }, { postalCode: "V0C 1E0", cityName: "Jade City, BC" }, { postalCode: "V0B 1T0", cityName: "Jaffray, BC" }, { postalCode: "T0M 1C0", cityName: "James River Bridge, AB" }, { postalCode: "B2C 1C1", cityName: "Jamesville, NS" }, { postalCode: "L0B 1K0", cityName: "Janetville, ON" }, { postalCode: "E2A 0A4", cityName: "Janeville, NB" }, { postalCode: "S0K 2B0", cityName: "Jansen, SK" }, { postalCode: "E4W 2G9", cityName: "Jardineville, NB" }, { postalCode: "T0G 1H0", cityName: "Jarvie, AB" }, { postalCode: "N0A 1J0", cityName: "Jarvis, ON" }, { postalCode: "T4S 1R8", cityName: "Jarvis Bay, AB" }, { postalCode: "K0G 1G0", cityName: "Jasper, ON" }, { postalCode: "T0E 1E0", cityName: "Jasper, AB" }, { postalCode: "T0H 2E0", cityName: "Jean Cote, AB" }, { postalCode: "G2M 1K7", cityName: "Jean-Talon Northeast, QC" }, { postalCode: "G1G 6K4", cityName: "Jean-Talon Southeast, QC" }, { postalCode: "G2N 1T9", cityName: "Jean-Talon West, QC" }, { postalCode: "S0A 1R0", cityName: "Jedburgh, SK" }, { postalCode: "B0J 1W0", cityName: "Jeddore Oyster Ponds, NS" }, { postalCode: "A0N 1P0", cityName: "Jeffreys, NL" }, { postalCode: "E4E 4A5", cityName: "Jeffries Corner, NB" }, { postalCode: "P0T 1V0", cityName: "Jellicoe, ON" }, { postalCode: "E4C 3J9", cityName: "Jemseg, NB" }, { postalCode: "T0J 1W0", cityName: "Jenner, AB" }, { postalCode: "A0B 2G0", cityName: "Jerseyside, NL" }, { postalCode: "L0R 1R0", cityName: "Jerseyville, ON" }, { postalCode: "E6L 1M2", cityName: "Jewetts Mills, NB" }, { postalCode: "A0A 2S0", cityName: "Jobs Cove, NL" }, { postalCode: "A0G 2X0", cityName: "Joe Batts Arm, NL" }, { postalCode: "P0L 1R0", cityName: "Jogues, ON" }, { postalCode: "T0H 3X0", cityName: "John d\'or Prairie, AB" }, { postalCode: "E6H 1A6", cityName: "Johnson Settlement York Co, NB" }, { postalCode: "E4K 3K2", cityName: "Johnson\'s Mills, NB" }, { postalCode: "E4M 0A5", cityName: "Johnston Point, NB" }, { postalCode: "E7J 1G8", cityName: "Johnville, NB" }, { postalCode: "E4L 0A2", cityName: "Jolicure, NB" }, { postalCode: "J6E 9K1", cityName: "Joliette, QC" }, { postalCode: "J6E 0A2", cityName: "Joliette, QC" }, { postalCode: "G0S 1M0", cityName: "Joly, QC" }, { postalCode: "G7X 9L1", cityName: "Jonqui&egrave;re Central, QC" }, { postalCode: "G7S 6A3", cityName: "Jonqui&egrave;re Northeast, QC" }, { postalCode: "G7Z 1S4", cityName: "Jonqui&egrave;re Northwest, QC" }, { postalCode: "G7T 1A1", cityName: "Jonqui&egrave;re Southeast, QC" }, { postalCode: "G7Y 1A2", cityName: "Jonqui&egrave;re Southwest, QC" }, { postalCode: "G8A 2K7", cityName: "Jonqui&egrave;re West, QC" }, { postalCode: "B0T 1J0", cityName: "Jordan Falls, NS" }, { postalCode: "E4G 0A5", cityName: "Jordan Mountain, NB" }, { postalCode: "L0R 1S0", cityName: "Jordan Station, ON" }, { postalCode: "T0G 1J0", cityName: "Joussard, AB" }, { postalCode: "K0H 1Y0", cityName: "Joyceville, ON" }, { postalCode: "V0S 1K0", cityName: "Juan de Fuca Shore (Sooke), BC" }, { postalCode: "B0E 1P0", cityName: "Judique, NS" }, { postalCode: "E7L 1C8", cityName: "Juniper, NB" }, { postalCode: "K0L 2C0", cityName: "Juniper Island, ON" }, { postalCode: "B1K 1E9", cityName: "Juniper Mountain, NS" }, { postalCode: "V0T 1J0", cityName: "Juskatla, BC" }, { postalCode: "R0K 1C0", cityName: "Justice, MB" }, { postalCode: "P0P 1J0", cityName: "Kagawong, ON" }, { postalCode: "J0L 1B0", cityName: "Kahnawake, QC" }, { postalCode: "P0T 1W0", cityName: "Kakabeka Falls, ON" }, { postalCode: "K0H 1Z0", cityName: "Kaladar, ON" }, { postalCode: "V0H 1K0", cityName: "Kaleden, BC" }, { postalCode: "P0T 1X0", cityName: "Kaministiquia, ON" }, { postalCode: "V2C 0A1", cityName: "Kamloops Central and Southeast, BC" }, { postalCode: "V2H 0A1", cityName: "Kamloops North, BC" }, { postalCode: "V2B 1H9", cityName: "Kamloops Northwest, BC" }, { postalCode: "V2E 0A4", cityName: "Kamloops South and West, BC" }, { postalCode: "V1S 1A1", cityName: "Kamloops Southwest, BC" }, { postalCode: "G0L 1M0", cityName: "Kamouraska, QC" }, { postalCode: "S0A 1S0", cityName: "Kamsack, SK" }, { postalCode: "T0L 2H0", cityName: "Kananaskis, AB" }, { postalCode: "T0L 1A0", cityName: "Kananaskis Country (Claresholm), AB" }, { postalCode: "K2K 0A1", cityName: "Kanata - Beaverbrook / South March, ON" }, { postalCode: "K2M 0A7", cityName: "Kanata - Bridlewood, ON" }, { postalCode: "K2L 1A1", cityName: "Kanata - Katimavik-Hazeldean / Glen Cairn, ON" }, { postalCode: "K2T 1A6", cityName: "Kanata - Marchwood, ON" }, { postalCode: "K2W 1A1", cityName: "Kanata - North March, ON" }, { postalCode: "K2V 1C1", cityName: "Kanata (Terry Fox / Palladium / Ottawa West), ON" }, { postalCode: "J0M 1N0", cityName: "Kangiqsualujjuaq, QC" }, { postalCode: "J0M 1K0", cityName: "Kangiqsujuaq, QC" }, { postalCode: "T0E 2Y0", cityName: "Kapasiwin, AB" }, { postalCode: "P5N 3J7", cityName: "Kapuskasing, ON" }, { postalCode: "E5T 0A1", cityName: "Kars, NB" }, { postalCode: "K0A 2E0", cityName: "Kars, ON" }, { postalCode: "P0V 1Y0", cityName: "Kasabonika, ON" }, { postalCode: "P0T 1Y0", cityName: "Kashabowie, ON" }, { postalCode: "P0L 1S0", cityName: "Kashechewan, ON" }, { postalCode: "V0G 1M0", cityName: "Kaslo, BC" }, { postalCode: "T0M 1E0", cityName: "Kathyrn, AB" }, { postalCode: "P0A 1L0", cityName: "Katrine, ON" }, { postalCode: "K0M 1L0", cityName: "Kawartha lakes and Haliburton County (Bobcaygeon), ON" }, { postalCode: "G0G 2Z0", cityName: "Kawawachikamach, QC" }, { postalCode: "S0H 2C0", cityName: "Kayville, SK" }, { postalCode: "J0X 1X0", cityName: "Kazabazua, QC" }, { postalCode: "P0A 1M0", cityName: "Kearney, ON" }, { postalCode: "P0K 1J0", cityName: "Kearns, ON" }, { postalCode: "E8B 1A2", cityName: "Kedgwick, NB" }, { postalCode: "E8B 1S9", cityName: "Kedgwick Nord, NB" }, { postalCode: "E8B 0A6", cityName: "Kedgwick Ouest, NB" }, { postalCode: "E8B 0A2", cityName: "Kedgwick River, NB" }, { postalCode: "E8B 1P3", cityName: "Kedgwick Sud, NB" }, { postalCode: "S0H 2E0", cityName: "Keeler, SK" }, { postalCode: "A0C 1R0", cityName: "Keels, NL" }, { postalCode: "E9B 2E6", cityName: "Keenans, NB" }, { postalCode: "K0L 2G0", cityName: "Keene, ON" }, { postalCode: "P0V 3G0", cityName: "Keewaywin, ON" }, { postalCode: "T0H 2G0", cityName: "Keg River, AB" }, { postalCode: "G0G 1S0", cityName: "Kegaska, QC" }, { postalCode: "T0A 1C0", cityName: "Kehewin, AB" }, { postalCode: "P0X 1E0", cityName: "Kejick, ON" }, { postalCode: "S0K 2C0", cityName: "Kelfield, SK" }, { postalCode: "S0A 1V0", cityName: "Kelliher, SK" }, { postalCode: "V4V 1E5", cityName: "Kelowna, BC" }, { postalCode: "V1Y 5W2", cityName: "Kelowna Central, BC" }, { postalCode: "V1P 1N3", cityName: "Kelowna East, BC" }, { postalCode: "V1X 1A1", cityName: "Kelowna East Central, BC" }, { postalCode: "V1V 1A1", cityName: "Kelowna North, BC" }, { postalCode: "V1W 1A1", cityName: "Kelowna Southwest, BC" }, { postalCode: "V1Z 2X1", cityName: "Kelowna West, BC" }, { postalCode: "T0B 2K0", cityName: "Kelsey, AB" }, { postalCode: "S0A 1W0", cityName: "Kelvington, SK" }, { postalCode: "R0J 0Y0", cityName: "Kelwood, MB" }, { postalCode: "N0H 1S0", cityName: "Kemble, ON" }, { postalCode: "B1X 1P7", cityName: "Kempt Head, NS" }, { postalCode: "B0W 1Y0", cityName: "Kemptville, NS" }, { postalCode: "P0J 1M0", cityName: "Kenabeek, ON" }, { postalCode: "S0G 2N0", cityName: "Kenaston, SK" }, { postalCode: "L0A 1E0", cityName: "Kendal, ON" }, { postalCode: "S0G 2P0", cityName: "Kendal, SK" }, { postalCode: "N0G 2E0", cityName: "Kenilworth, ON" }, { postalCode: "K0A 2G0", cityName: "Kenmore, ON" }, { postalCode: "S0G 2R0", cityName: "Kennedy, SK" }, { postalCode: "B0N 1P0", cityName: "Kennetcook, NS" }, { postalCode: "P9N 4T1", cityName: "Kenora, ON" }, { postalCode: "P0X 1C0", cityName: "Kenora Region (Keewatin), ON" }, { postalCode: "S0C 2S0", cityName: "Kenosee Lake, SK" }, { postalCode: "C0B 1M0", cityName: "Kensington, PEI" }, { postalCode: "N0P 1A0", cityName: "Kent (Blenheim), ON" }, { postalCode: "N0P 1V0", cityName: "Kent Bridge, ON" }, { postalCode: "E4Y 0B1", cityName: "Kent Junction, NB" }, { postalCode: "R0M 0Z0", cityName: "Kenton, MB" }, { postalCode: "B4N 0A5", cityName: "Kentville, NS" }, { postalCode: "R0L 0Z0", cityName: "Kenville, MB" }, { postalCode: "T0M 1G0", cityName: "Keoma, AB" }, { postalCode: "V0X 1N0", cityName: "Keremeos, BC" }, { postalCode: "S0L 1R0", cityName: "Kerrobert, SK" }, { postalCode: "N0M 2B0", cityName: "Kerwood, ON" }, { postalCode: "L4P 4E9", cityName: "Keswick, ON" }, { postalCode: "E6L 0A1", cityName: "Keswick, NB" }, { postalCode: "E6L 0A3", cityName: "Keswick Ridge, NB" }, { postalCode: "B3V 0A3", cityName: "Ketch Harbour, NS" }, { postalCode: "L0G 1J0", cityName: "Kettleby, ON" }, { postalCode: "S0C 1K0", cityName: "Khedive, SK" }, { postalCode: "J0W 1G0", cityName: "Kiamika, QC" }, { postalCode: "J9L 2V3", cityName: "Kiamika, QC" }, { postalCode: "E5P 1T7", cityName: "Kierstead Mountain, NB" }, { postalCode: "E5T 1K2", cityName: "Kiersteadville, NB" }, { postalCode: "T0A 2B0", cityName: "Kikino, AB" }, { postalCode: "A1G 1P3", cityName: "Kilbride, NL" }, { postalCode: "L0P 1G0", cityName: "Kilbride, ON" }, { postalCode: "E7H 2J5", cityName: "Kilburn, NB" }, { postalCode: "V0R 2B0", cityName: "Kildonan, BC" }, { postalCode: "K0J 2A0", cityName: "Killaloe, ON" }, { postalCode: "S0A 1X0", cityName: "Killaly, SK" }, { postalCode: "T0B 2L0", cityName: "Killam, AB" }, { postalCode: "E4Z 0B8", cityName: "Killams Mills, NB" }, { postalCode: "P0M 2A0", cityName: "Killarney, ON" }, { postalCode: "R0K 1G0", cityName: "Killarney, MB" }, { postalCode: "E3A 0K4", cityName: "Killarney Road, NB" }, { postalCode: "E7J 1P1", cityName: "Killoween, NB" }, { postalCode: "P0E 1G0", cityName: "Kilworthy, ON" }, { postalCode: "V1A 1A1", cityName: "Kimberley, BC" }, { postalCode: "N0C 1G0", cityName: "Kimberley, ON" }, { postalCode: "X0A 0N0", cityName: "Kimmirut, NU" }, { postalCode: "K0A 2H0", cityName: "Kinburn, ON" }, { postalCode: "S0H 2J0", cityName: "Kincaid, SK" }, { postalCode: "N2Z 3A7", cityName: "Kincardine, ON" }, { postalCode: "E7H 2J8", cityName: "Kincardine, NB" }, { postalCode: "V0V 1B0", cityName: "Kincolith, BC" }, { postalCode: "S0L 1S0", cityName: "Kindersley, SK" }, { postalCode: "L7B 1K1", cityName: "King City, ON" }, { postalCode: "P0K 1K0", cityName: "King Kirkland, ON" }, { postalCode: "V0N 2B0", cityName: "Kingcome Inlet, BC" }, { postalCode: "P0V 1Z0", cityName: "Kingfisher Lake, ON" }, { postalCode: "T0B 2M0", cityName: "Kingman, AB" }, { postalCode: "C0A 1A0", cityName: "Kings and Queens counties (Elmira), PEI" }, { postalCode: "B0P 1A0", cityName: "Kings County (Kingston), NS" }, { postalCode: "A0C 1S0", cityName: "Kings Cove, NL" }, { postalCode: "E6K 3R1", cityName: "Kings Landing Historical Settl, NB" }, { postalCode: "A0J 1H0", cityName: "Kings Point, NL" }, { postalCode: "J0B 1X0", cityName: "Kingsbury, QC" }, { postalCode: "E3E 1N1", cityName: "Kingsclear, NB" }, { postalCode: "E3E 0A5", cityName: "Kingsclear First Nation, NB" }, { postalCode: "J0A 1B0", cityName: "Kingsey Falls, QC" }, { postalCode: "V0B 1V0", cityName: "Kingsgate, BC" }, { postalCode: "E5S 1A1", cityName: "Kingston, NB" }, { postalCode: "B0P 1R0", cityName: "Kingston, NS" }, { postalCode: "E5N 0A7", cityName: "Kingston, NB" }, { postalCode: "K7L 1A1", cityName: "Kingston (Downtown), ON" }, { postalCode: "K7M 1A5", cityName: "Kingston (Reddendale / Cataraqui / Collins Bay), ON" }, { postalCode: "K7K 2X5", cityName: "Kingston (SW Pittsburgh Township), ON" }, { postalCode: "K7P 0G3", cityName: "Kingston (Westbrook / Cataraqui Woods / Cedarwood), ON" }, { postalCode: "N9Y 4G1", cityName: "Kingsville, ON" }, { postalCode: "S0J 1H0", cityName: "Kinistino, SK" }, { postalCode: "C0B 1N0", cityName: "Kinkora, PEI" }, { postalCode: "S0K 2E0", cityName: "Kinley, SK" }, { postalCode: "K0M 2A0", cityName: "Kinmount, ON" }, { postalCode: "E4Z 2S9", cityName: "Kinnear Settlement, NB" }, { postalCode: "G0N 1K0", cityName: "Kinnear\'s Mills, QC" }, { postalCode: "S0P 0J0", cityName: "Kinoosao, SK" }, { postalCode: "R0H 0L0", cityName: "Kinosota, MB" }, { postalCode: "B4G 1C7", cityName: "Kinsac, NS" }, { postalCode: "T0B 2N0", cityName: "Kinsella, AB" }, { postalCode: "N0M 2C0", cityName: "Kintore, ON" }, { postalCode: "T0G 1K0", cityName: "Kinuso, AB" }, { postalCode: "J0Z 2H0", cityName: "Kipawa, QC" }, { postalCode: "S0G 2S0", cityName: "Kipling, SK" }, { postalCode: "N0M 2E0", cityName: "Kippen, ON" }, { postalCode: "K0M 2B0", cityName: "Kirkfield, ON" }, { postalCode: "H9J 4E2", cityName: "Kirkland, QC" }, { postalCode: "E7N 0A5", cityName: "Kirkland, NB" }, { postalCode: "H9H 0A2", cityName: "Kirkland, QC" }, { postalCode: "H9J 1J9", cityName: "Kirkland, QC" }, { postalCode: "H9K 1S2", cityName: "Kirkland, QC" }, { postalCode: "P2N 3S2", cityName: "Kirkland Lake, ON" }, { postalCode: "N0K 1K0", cityName: "Kirkton, ON" }, { postalCode: "T0C 1R0", cityName: "Kirriemuir, AB" }, { postalCode: "S0C 1L0", cityName: "Kisbey, SK" }, { postalCode: "V0B 1W0", cityName: "Kitchener, BC" }, { postalCode: "N2G 5A1", cityName: "Kitchener Central, ON" }, { postalCode: "N2A 4N4", cityName: "Kitchener East, ON" }, { postalCode: "N2K 4P6", cityName: "Kitchener North, ON" }, { postalCode: "N2H 6T3", cityName: "Kitchener North Central, ON" }, { postalCode: "N2B 2J8", cityName: "Kitchener Northeast, ON" }, { postalCode: "N2M 3V9", cityName: "Kitchener Northwest, ON" }, { postalCode: "N2R 1S3", cityName: "Kitchener South, ON" }, { postalCode: "N2C 2T2", cityName: "Kitchener South Central, ON" }, { postalCode: "N2P 2Z1", cityName: "Kitchener Southeast, ON" }, { postalCode: "N2E 3W7", cityName: "Kitchener Southwest, ON" }, { postalCode: "N2N 3S4", cityName: "Kitchener West, ON" }, { postalCode: "V8C 1A1", cityName: "Kitimat, BC" }, { postalCode: "V0V 1C0", cityName: "Kitkatla, BC" }, { postalCode: "T0B 2P0", cityName: "Kitscoty, AB" }, { postalCode: "V0J 2A0", cityName: "Kitwanga, BC" }, { postalCode: "R0A 0V0", cityName: "Kleefeld, MB" }, { postalCode: "V0L 1M0", cityName: "Kleena Kleene, BC" }, { postalCode: "V0T 1L0", cityName: "Klemtu, BC" }, { postalCode: "A0C 1T0", cityName: "Knights Cove, NL" }, { postalCode: "E4G 1C3", cityName: "Knightville, NB" }, { postalCode: "E7L 0A6", cityName: "Knowlesville, NB" }, { postalCode: "J0E 1V0", cityName: "Knowlton, QC" }, { postalCode: "V0E 2A0", cityName: "Knutsford, BC" }, { postalCode: "V0R 2C0", cityName: "Koksilah, BC" }, { postalCode: "R0M 1B0", cityName: "Kola, MB" }, { postalCode: "R0C 1R0", cityName: "Komarno, MB" }, { postalCode: "N0L 1R0", cityName: "Komoka, ON" }, { postalCode: "R0C 1S0", cityName: "Koostatak, MB" }, { postalCode: "V0B 1X0", cityName: "Kootenay Bay, BC" }, { postalCode: "E4X 0B5", cityName: "Kouchibouguac, NB" }, { postalCode: "E4X 2P1", cityName: "Kouchibouguac National Park, NB" }, { postalCode: "S0G 2T0", cityName: "Kronau, SK" }, { postalCode: "S0J 1K0", cityName: "Krydor, SK" }, { postalCode: "X0B 1K0", cityName: "Kugaaruk, NU" }, { postalCode: "X0B 0E0", cityName: "Kugluktuk, NU" }, { postalCode: "S0A 1Y0", cityName: "Kuroki, SK" }, { postalCode: "J0M 1C0", cityName: "Kuujjuaq, QC" }, { postalCode: "J0M 1G0", cityName: "Kuujjuarapik, QC" }, { postalCode: "S0L 1T0", cityName: "Kyle, SK" }, { postalCode: "S0A 1Z0", cityName: "Kylemore, SK" }, { postalCode: "V0P 1J0", cityName: "Kyuquot, BC" }, { postalCode: "G0C 1X0", cityName: "L\'Alverne, QC" }, { postalCode: "K0L 2L0", cityName: "L\'Amable, ON" }, { postalCode: "G2E 0A1", cityName: "L\'Ancienne-Lorette, QC" }, { postalCode: "G2G 1G5", cityName: "L\'Ancienne-Lorette, QC" }, { postalCode: "G0A 2K0", cityName: "L\'Ange Gardien, QC" }, { postalCode: "J8L 0A1", cityName: "L\'Ange-Gardien, QC" }, { postalCode: "A0K 3K0", cityName: "L\'Anse au Clair, NL" }, { postalCode: "A0K 3L0", cityName: "L\'Anse au Loup, NL" }, { postalCode: "G0E 2E0", cityName: "L\'Anse-Pleureuse, QC" }, { postalCode: "G0V 1J0", cityName: "L\'Anse-Saint-Jean, QC" }, { postalCode: "B0E 1S0", cityName: "L\'Ardoise, NS" }, { postalCode: "J0T 1W0", cityName: "L\'Ascension, QC" }, { postalCode: "G0W 1Y0", cityName: "L\'Ascension-de-Notre-Seigneur, QC" }, { postalCode: "G0J 1R0", cityName: "L\'Ascension-de-Patapedia, QC" }, { postalCode: "J5W 6G5", cityName: "L\'Assomption, QC" }, { postalCode: "J0C 1B0", cityName: "L\'Avenir, QC" }, { postalCode: "J5X 0A1", cityName: "L\'Epiphanie, QC" }, { postalCode: "G4T 3A1", cityName: "L\'Etang-du-Nord, QC" }, { postalCode: "E5C 0B6", cityName: "L\'Etete, NB" }, { postalCode: "H9C 0A1", cityName: "L\'Ile-Bizard, QC" }, { postalCode: "H9E 1A2", cityName: "L\'Ile-Bizard, QC" }, { postalCode: "J7V 8P3", cityName: "L\'Ile-Cadieux, QC" }, { postalCode: "G4T 1Z1", cityName: "L\'Ile-d\'Entree, QC" }, { postalCode: "G0G 1R0", cityName: "L\'Ile-Michon, QC" }, { postalCode: "J7V 0J7", cityName: "L\'ile-Perrot, QC" }, { postalCode: "G0R 1P0", cityName: "L\'Isle-aux-Grues, QC" }, { postalCode: "G0L 1K0", cityName: "L\'Isle-Verte, QC" }, { postalCode: "G0L 1L0", cityName: "L\'Isle-Verte-Ouest, QC" }, { postalCode: "G0R 2B0", cityName: "L\'Islet, QC" }, { postalCode: "G0R 2C0", cityName: "L\'Isletville, QC" }, { postalCode: "K0B 1K0", cityName: "L\'Orignal, ON" }, { postalCode: "J5X 4W3", cityName: "L\'&Eacute;piphanie, QC" }, { postalCode: "H9C 1V5", cityName: "L\'&Icirc;le Bizard Northeast, QC" }, { postalCode: "H9E 1A2", cityName: "L\'&Icirc;le-Bizard Southwest, QC" }, { postalCode: "H3E 3L3", cityName: "L\'&Icirc;le-Des-Soeurs, QC" }, { postalCode: "H9S 6C3", cityName: "L\'&Icirc;le-Dorval, QC" }, { postalCode: "G2E 6M1", cityName: "L\'Ancienne- Lorette Northeast, QC" }, { postalCode: "G2G 2P9", cityName: "L\'Ancienne- Lorette Southwest, QC" }, { postalCode: "G0Y 1A0", cityName: "L\'Erable (Nantes), QC" }, { postalCode: "G6V 9S8", cityName: "L&eacute;vis North, QC" }, { postalCode: "G6W 1P1", cityName: "L&eacute;vis South, QC" }, { postalCode: "G7B 4W3", cityName: "La Baie, QC" }, { postalCode: "G0A 2A0", cityName: "La Baleine, QC" }, { postalCode: "R5A 1E3", cityName: "La Barriere, MB" }, { postalCode: "R0A 0W0", cityName: "La Broquerie, MB" }, { postalCode: "J0T 1M0", cityName: "La Conception, QC" }, { postalCode: "T0A 2E0", cityName: "La Corey, AB" }, { postalCode: "J0Y 1R0", cityName: "La Corne, QC" }, { postalCode: "T0H 2H0", cityName: "La Crete, AB" }, { postalCode: "G0X 1R0", cityName: "La Croche, QC" }, { postalCode: "G8J 1A1", cityName: "La Dore, QC" }, { postalCode: "G0R 1W0", cityName: "La Durantaye, QC" }, { postalCode: "T0H 2J0", cityName: "La Glace, AB" }, { postalCode: "G0M 1G0", cityName: "La Guadeloupe, QC" }, { postalCode: "B0R 1C0", cityName: "La Have, NS" }, { postalCode: "S0M 1G0", cityName: "La Loche, SK" }, { postalCode: "J0T 1R0", cityName: "La Macaza, QC" }, { postalCode: "G5A 0A1", cityName: "La Malbaie, QC" }, { postalCode: "G0E 2H0", cityName: "La Martre, QC" }, { postalCode: "J0T 1S0", cityName: "La Minerve, QC" }, { postalCode: "J0Y 1S0", cityName: "La Morandiere, QC" }, { postalCode: "J0Y 1T0", cityName: "La Motte, QC" }, { postalCode: "J0B 1Y0", cityName: "La Patrie, QC" }, { postalCode: "J7M 2L5", cityName: "La Plaine, QC" }, { postalCode: "G0R 1Z0", cityName: "La Pocatiere, QC" }, { postalCode: "A0M 1K0", cityName: "La Poile, NL" }, { postalCode: "J5R 6Z6", cityName: "La Prairie, QC" }, { postalCode: "J5R 0A2", cityName: "La Prairie, QC" }, { postalCode: "J0H 1B0", cityName: "La Presentation, QC" }, { postalCode: "G0J 1P0", cityName: "La Redemption, QC" }, { postalCode: "J0Z 2L0", cityName: "La Reine, QC" }, { postalCode: "R0G 1A0", cityName: "La Riviere, MB" }, { postalCode: "S0J 1L0", cityName: "La Ronge, SK" }, { postalCode: "N0E 1H0", cityName: "La Salette, ON" }, { postalCode: "R0G 0A1", cityName: "La Salle, MB" }, { postalCode: "N9H 2A4", cityName: "La Salle East, ON" }, { postalCode: "N9J 3N9", cityName: "La Salle West, ON" }, { postalCode: "J9Z 3S2", cityName: "La Sarre, QC" }, { postalCode: "A0K 3M0", cityName: "La Scie, NL" }, { postalCode: "G0G 1T0", cityName: "La Tabatiere, QC" }, { postalCode: "G0K 1B0", cityName: "La Trinite-des-Monts, QC" }, { postalCode: "G9X 4V9", cityName: "La Tuque, QC" }, { postalCode: "J0K 2P0", cityName: "La Visitation-De-L\'Ile-Dupas, QC" }, { postalCode: "J0G 1C0", cityName: "La Visitation-De-Yamaska, QC" }, { postalCode: "B4V 8T8", cityName: "Labelle, NS" }, { postalCode: "J0T 1H0", cityName: "Labelle, QC" }, { postalCode: "A2V 0A8", cityName: "Labrador City, NL" }, { postalCode: "G0W 2S0", cityName: "Labrecque, QC" }, { postalCode: "E7A 0A4", cityName: "Lac Baker, NB" }, { postalCode: "R0B 2E0", cityName: "Lac Brochet, MB" }, { postalCode: "T1W 2W3", cityName: "Lac des Arcs, AB" }, { postalCode: "J0X 3K0", cityName: "Lac des Loups, QC" }, { postalCode: "R0E 1A0", cityName: "Lac du Bonnet, MB" }, { postalCode: "T0A 2C0", cityName: "Lac La Biche, AB" }, { postalCode: "V0K 1T0", cityName: "Lac La Hache, BC" }, { postalCode: "P0V 2A0", cityName: "Lac Seul, ON" }, { postalCode: "S0K 2G0", cityName: "Lac Vert, SK" }, { postalCode: "G0X 1L0", cityName: "Lac-A-la-Tortue, QC" }, { postalCode: "G0J 1M0", cityName: "Lac-au-Saumon, QC" }, { postalCode: "G0X 1M0", cityName: "Lac-aux-Sables, QC" }, { postalCode: "G0W 1V0", cityName: "Lac-Bouchette, QC" }, { postalCode: "J0X 1Y0", cityName: "Lac-Cayamant, QC" }, { postalCode: "G0K 1V0", cityName: "Lac-des-Aigles, QC" }, { postalCode: "J0W 1H0", cityName: "Lac-des-Ecorces, QC" }, { postalCode: "J0W 1J0", cityName: "Lac-des-Iles, QC" }, { postalCode: "J0T 1K0", cityName: "Lac-des-Plages, QC" }, { postalCode: "J0T 2M0", cityName: "Lac-des-Seize-Iles, QC" }, { postalCode: "G0Y 1C0", cityName: "Lac-Drolet, QC" }, { postalCode: "J0W 1S0", cityName: "Lac-du-Cerf, QC" }, { postalCode: "G0X 3N0", cityName: "Lac-Edouard, QC" }, { postalCode: "G0R 1S0", cityName: "Lac-Etchemin, QC" }, { postalCode: "G0R 1T0", cityName: "Lac-Frontiere, QC" }, { postalCode: "G0J 1N0", cityName: "Lac-Humqui, QC" }, { postalCode: "G7X 0H9", cityName: "Lac-Kenogami, QC" }, { postalCode: "G8A 2M6", cityName: "Lac-Kenogami, QC" }, { postalCode: "G6B 3J6", cityName: "Lac-Megantic, QC" }, { postalCode: "J0W 1L0", cityName: "Lac-Saguay, QC" }, { postalCode: "G3G 2P9", cityName: "Lac-Saint-Charles, QC" }, { postalCode: "J0W 1K0", cityName: "Lac-Saint-Paul, QC" }, { postalCode: "J0X 1Z0", cityName: "Lac-Sainte-Marie, QC" }, { postalCode: "G0A 2J0", cityName: "Lac-Sergent, QC" }, { postalCode: "J0Y 3M0", cityName: "Lac-Simon, QC" }, { postalCode: "J0T 1J0", cityName: "Lac-Superieur, QC" }, { postalCode: "S0L 1V0", cityName: "Lacadena, SK" }, { postalCode: "H8S 4M3", cityName: "Lachine East, QC" }, { postalCode: "H8T 3R2", cityName: "Lachine West, QC" }, { postalCode: "J8H 4P4", cityName: "Lachute, QC" }, { postalCode: "J0J 1J0", cityName: "Lacolle, QC" }, { postalCode: "T4L 0A1", cityName: "Lacombe, AB" }, { postalCode: "T4L 0E3", cityName: "Lacombe County, AB" }, { postalCode: "B4V 5V5", cityName: "Laconia, NS" }, { postalCode: "A0G 2Y0", cityName: "Ladle Cove, NL" }, { postalCode: "G0L 1P0", cityName: "Ladriere, QC" }, { postalCode: "V9G 1A1", cityName: "Ladysmith, BC" }, { postalCode: "J0X 2A0", cityName: "Ladysmith, QC" }, { postalCode: "S0H 2K0", cityName: "Lafleche, SK" }, { postalCode: "T0A 2G0", cityName: "Lafond, AB" }, { postalCode: "J0Z 2J0", cityName: "Laforce, QC" }, { postalCode: "E9G 2M4", cityName: "Lagaceville, NB" }, { postalCode: "S0K 2H0", cityName: "Laird, SK" }, { postalCode: "S0G 2V0", cityName: "Lajord, SK" }, { postalCode: "S0C 1M0", cityName: "Lake Alma, SK" }, { postalCode: "R0J 0Z0", cityName: "Lake Audy, MB" }, { postalCode: "B0J 1Y0", cityName: "Lake Charlotte, NS" }, { postalCode: "V0R 2G0", cityName: "Lake Cowichan, BC" }, { postalCode: "E7G 1L9", cityName: "Lake Edward, NB" }, { postalCode: "V0M 1N0", cityName: "Lake Errock, BC" }, { postalCode: "R0C 1T0", cityName: "Lake Francis, MB" }, { postalCode: "E6K 3H6", cityName: "Lake George, NB" }, { postalCode: "T0E 1H0", cityName: "Lake Isle, AB" }, { postalCode: "S0K 2J0", cityName: "Lake Lenore, SK" }, { postalCode: "T0L 1E0", cityName: "Lake Louise, AB" }, { postalCode: "R0C 3K0", cityName: "Lake Manitoba First Nation, MB" }, { postalCode: "P1H 2J3", cityName: "Lake of Bays, ON" }, { postalCode: "P0Y 1A0", cityName: "Lake of the Woods East Shore (Ingolf), ON" }, { postalCode: "L0K 1N0", cityName: "Lake Simcoe North Shore (Coldwater), ON" }, { postalCode: "L0E 1A0", cityName: "Lake Simcoe Southeast Shore (Sutton West), ON" }, { postalCode: "L0L 1L0", cityName: "Lake Simcoe West Shore (Oro), ON" }, { postalCode: "K0L 2K0", cityName: "Lake St Peter, ON" }, { postalCode: "P0S 1A0", cityName: "Lake Superior East Shore (Wawa), ON" }, { postalCode: "P0T 1A0", cityName: "Lake Superior North Shore (Marathon), ON" }, { postalCode: "K0L 2H0", cityName: "Lakefield, ON" }, { postalCode: "K0L 2J0", cityName: "Lakehurst, ON" }, { postalCode: "R0H 0M0", cityName: "Lakeland, MB" }, { postalCode: "B3T 1A1", cityName: "Lakeside, NS" }, { postalCode: "E5N 0A1", cityName: "Lakeside, NB" }, { postalCode: "N0M 2G0", cityName: "Lakeside, ON" }, { postalCode: "E1N 5A4", cityName: "Laketon, NB" }, { postalCode: "B4C 4C6", cityName: "Lakeview, NS" }, { postalCode: "E7K 1K3", cityName: "Lakeville Carleton Co, NB" }, { postalCode: "E4B 1G5", cityName: "Lakeville Corner, NB" }, { postalCode: "E1H 0A6", cityName: "Lakeville-Westmorland, NB" }, { postalCode: "E1H 0A3", cityName: "Lakeville, Shediac Bridge, NB" }, { postalCode: "A0E 2C0", cityName: "Lamaline, NL" }, { postalCode: "G0W 1X0", cityName: "Lamarche, QC" }, { postalCode: "G0R 1X0", cityName: "Lamartine, QC" }, { postalCode: "E5V 1B4", cityName: "Lambert\'s Cove, NB" }, { postalCode: "E5V 1A2", cityName: "Lambertville, NB" }, { postalCode: "G0M 1H0", cityName: "Lambton, QC" }, { postalCode: "N0N 1A0", cityName: "Lambton (Forest), ON" }, { postalCode: "E8T 1A1", cityName: "Lamèque, NB" }, { postalCode: "T0B 2R0", cityName: "Lamont, AB" }, { postalCode: "S0C 1N0", cityName: "Lampman, SK" }, { postalCode: "K0G 1K0", cityName: "Lanark, ON" }, { postalCode: "J0K 1A0", cityName: "Lanaudi&egrave;re-Nord (Saint-Esprit), QC" }, { postalCode: "J0R 1A0", cityName: "Lanaudi&egrave;re-Sud (Pr&eacute;vost), QC" }, { postalCode: "K0C 1N0", cityName: "Lancaster, ON" }, { postalCode: "T0A 2H0", cityName: "Lancaster Park, AB" }, { postalCode: "A0A 2V0", cityName: "Lance Cove, NL" }, { postalCode: "S0N 1G0", cityName: "Lancer, SK" }, { postalCode: "S0K 2K0", cityName: "Landis, SK" }, { postalCode: "R0A 0X0", cityName: "Landmark, MB" }, { postalCode: "J0Y 1V0", cityName: "Landrienne, QC" }, { postalCode: "S0G 2W0", cityName: "Lang, SK" }, { postalCode: "S0G 2X0", cityName: "Langbank, SK" }, { postalCode: "T0J 1X0", cityName: "Langdon, AB" }, { postalCode: "S0A 2A0", cityName: "Langenburg, SK" }, { postalCode: "S0K 2L0", cityName: "Langham, SK" }, { postalCode: "V3A 0A1", cityName: "Langley City, BC" }, { postalCode: "V4W 1H6", cityName: "Langley Township East, BC" }, { postalCode: "V1M 0A1", cityName: "Langley Township North, BC" }, { postalCode: "V2Y 0A2", cityName: "Langley Township Northwest, BC" }, { postalCode: "V2Z 1A1", cityName: "Langley Township Southwest, BC" }, { postalCode: "R0H 0N0", cityName: "Langruth, MB" }, { postalCode: "N0E 1G0", cityName: "Langton, ON" }, { postalCode: "J0Z 2K0", cityName: "Laniel, QC" }, { postalCode: "S0K 2M0", cityName: "Lanigan, SK" }, { postalCode: "J0K 1E0", cityName: "Lanoraie, QC" }, { postalCode: "E7L 3W5", cityName: "Lansdowne, NB" }, { postalCode: "K0E 1L0", cityName: "Lansdowne, ON" }, { postalCode: "P0T 1Z0", cityName: "Lansdowne House, ON" }, { postalCode: "J0T 1V0", cityName: "Lantier, QC" }, { postalCode: "B2S 1K9", cityName: "Lantz, NS" }, { postalCode: "B2S 0B8", cityName: "Lantz, NS" }, { postalCode: "V0R 2H0", cityName: "Lantzville, BC" }, { postalCode: "B4V 7S6", cityName: "Lapland, NS" }, { postalCode: "E8J 1Z4", cityName: "Laplante, NB" }, { postalCode: "S0L 1W0", cityName: "Laporte, SK" }, { postalCode: "P0K 1L0", cityName: "Larder Lake, ON" }, { postalCode: "A0L 1H0", cityName: "Lark Harbour, NL" }, { postalCode: "G0W 1Z0", cityName: "Larouche, QC" }, { postalCode: "B0H 1T0", cityName: "Larrys River, NS" }, { postalCode: "H8R 0A2", cityName: "Lasalle, QC" }, { postalCode: "N9H 0A3", cityName: "Lasalle, ON" }, { postalCode: "N9J 0A3", cityName: "Lasalle, ON" }, { postalCode: "H8N 1V2", cityName: "LaSalle Northwest, QC" }, { postalCode: "H8P 2L1", cityName: "LaSalle Southeast, QC" }, { postalCode: "S0M 1H0", cityName: "Lashburn, SK" }, { postalCode: "V0R 2J0", cityName: "Lasqueti, BC" }, { postalCode: "P0J 1N0", cityName: "Latchford, ON" }, { postalCode: "G7N 2C3", cityName: "Laterri&egrave;re, QC" }, { postalCode: "J0Z 2N0", cityName: "Latulipe, QC" }, { postalCode: "R0M 1C0", cityName: "Lauder, MB" }, { postalCode: "J0Y 1W0", cityName: "Launay, QC" }, { postalCode: "L0N 1L0", cityName: "Laurel, ON" }, { postalCode: "A0G 2Z0", cityName: "Laurenceton, NL" }, { postalCode: "J0T 1B0", cityName: "Laurentides-Nord (Montcalm), QC" }, { postalCode: "J0V 1B0", cityName: "Laurentides-Sud (Ch&eacute;n&eacute;ville), QC" }, { postalCode: "R0J 1A0", cityName: "Laurier, MB" }, { postalCode: "G0S 1N0", cityName: "Laurier-Station, QC" }, { postalCode: "G0S 1P0", cityName: "Laurierville, QC" }, { postalCode: "H7N 6K4", cityName: "Laval-des-Rapides, QC" }, { postalCode: "H7R 1R2", cityName: "Laval-Ouest, QC" }, { postalCode: "H7R 6K4", cityName: "Laval-sur-le-Lac, QC" }, { postalCode: "J5T 3H8", cityName: "Lavaltrie, QC" }, { postalCode: "R0H 0P0", cityName: "Lavenham, MB" }, { postalCode: "J0Z 2P0", cityName: "Laverlochere, QC" }, { postalCode: "P0H 1R0", cityName: "Lavigne, ON" }, { postalCode: "E9G 2P5", cityName: "Lavillette, NB" }, { postalCode: "V1B 3L9", cityName: "Lavington, BC" }, { postalCode: "T0B 2S0", cityName: "Lavoy, AB" }, { postalCode: "A0E 2E0", cityName: "Lawn, NL" }, { postalCode: "E5A 1A1", cityName: "Lawrence Station, NB" }, { postalCode: "B0S 1M0", cityName: "Lawrencetown, NS" }, { postalCode: "B2Z 0A1", cityName: "Lawrencetown, NS" }, { postalCode: "J0E 1W0", cityName: "Lawrenceville, QC" }, { postalCode: "V0V 1H0", cityName: "Lax Kw\'Alaams, BC" }, { postalCode: "V0R 2K0", cityName: "Lazo, BC" }, { postalCode: "G0L 1B0", cityName: "Le Bic, QC" }, { postalCode: "G0T 1L0", cityName: "Le Fjord (Forestville), QC" }, { postalCode: "J5Z 0A1", cityName: "Le Gardeur, QC" }, { postalCode: "E8S 1Y5", cityName: "Le Goulet, NB" }, { postalCode: "S0N 1H0", cityName: "Leader, SK" }, { postalCode: "A0H 1T0", cityName: "Leading Tickles, NL" }, { postalCode: "R0B 1W0", cityName: "Leaf Rapids, MB" }, { postalCode: "N8H 3N7", cityName: "Leamington, ON" }, { postalCode: "S0J 1M0", cityName: "Leask, SK" }, { postalCode: "L0C 1C0", cityName: "Leaskdale, ON" }, { postalCode: "J0Y 1X0", cityName: "Lebel-sur-Quevillon, QC" }, { postalCode: "S0G 2Y0", cityName: "Lebret, SK" }, { postalCode: "G0S 2K0", cityName: "Leclercville, QC" }, { postalCode: "T9E 0B6", cityName: "Leduc, AB" }, { postalCode: "T0B 3M2", cityName: "Leduc County, AB" }, { postalCode: "E5C 0B1", cityName: "Lee Settlement, NB" }, { postalCode: "E1X 1R3", cityName: "Leech, NB" }, { postalCode: "K0B 1J0", cityName: "Lefaivre, ON" }, { postalCode: "J0H 2C0", cityName: "Lefebvre, QC" }, { postalCode: "L0L 1W0", cityName: "Lefroy, ON" }, { postalCode: "T0G 1L0", cityName: "Legal, AB" }, { postalCode: "B2A 3X2", cityName: "Leitches Creek, NS" }, { postalCode: "N0H 1V0", cityName: "Leith, ON" }, { postalCode: "G0L 1S0", cityName: "Lejeune, QC" }, { postalCode: "S0A 2B0", cityName: "Lemberg, SK" }, { postalCode: "G0X 1S0", cityName: "Lemieux, QC" }, { postalCode: "J4P 0A1", cityName: "Lemoyne, QC" }, { postalCode: "J4R 1P3", cityName: "Lemoyne, QC" }, { postalCode: "C0B 1P0", cityName: "Lennox Island, PEI" }, { postalCode: "R0M 1E0", cityName: "Lenore, MB" }, { postalCode: "E7H 2T3", cityName: "Leonard Colony, NB" }, { postalCode: "E5V 1J9", cityName: "Leonardville, NB" }, { postalCode: "S0J 1N0", cityName: "Leoville, SK" }, { postalCode: "E5J 2C5", cityName: "Lepreau, NB" }, { postalCode: "E5J 0A2", cityName: "Lepreau, NB" }, { postalCode: "S0A 2C0", cityName: "Leross, SK" }, { postalCode: "S0K 2P0", cityName: "Leroy, SK" }, { postalCode: "G4T 0A1", cityName: "Les &Icirc;les-De-La- Madeleine, QC" }, { postalCode: "G0H 1H0", cityName: "Les Buissons, QC" }, { postalCode: "G0A 2M0", cityName: "Les Eboulements, QC" }, { postalCode: "G0T 1K0", cityName: "Les Escoumins, QC" }, { postalCode: "G0K 1C0", cityName: "Les Hauteurs, QC" }, { postalCode: "G0J 1T0", cityName: "Les Mechins, QC" }, { postalCode: "S0A 2E0", cityName: "Leslie, SK" }, { postalCode: "T0M 1H0", cityName: "Leslieville, AB" }, { postalCode: "S0A 2G0", cityName: "Lestock, SK" }, { postalCode: "E5C 1W2", cityName: "Letang, NB" }, { postalCode: "R0G 1C0", cityName: "Letellier, MB" }, { postalCode: "A0C 1V0", cityName: "Lethbridge, NL" }, { postalCode: "T1H 0C3", cityName: "Lethbridge North, AB" }, { postalCode: "T1K 0B4", cityName: "Lethbridge Southeast, AB" }, { postalCode: "T1J 0A1", cityName: "Lethbridge West and Central, AB" }, { postalCode: "P0M 2C0", cityName: "Levack, ON" }, { postalCode: "E5A 2H2", cityName: "Leverville, NB" }, { postalCode: "A0E 2G0", cityName: "Lewins Cove, NL" }, { postalCode: "B3Z 0B6", cityName: "Lewis Lake, NS" }, { postalCode: "E4J 1N7", cityName: "Lewis Mountain, NB" }, { postalCode: "A0G 3A0", cityName: "Lewisporte, NL" }, { postalCode: "S0G 2Z0", cityName: "Lewvan, SK" }, { postalCode: "B9A 1S9", cityName: "Lexington, NS" }, { postalCode: "R0E 1C0", cityName: "Libau, MB" }, { postalCode: "S0G 3A0", cityName: "Liberty, SK" }, { postalCode: "S0N 1L0", cityName: "Liebenthal, SK" }, { postalCode: "V0L 1N0", cityName: "Likely, BC" }, { postalCode: "V0K 1V0", cityName: "Lillooet, BC" }, { postalCode: "L0P 1H0", cityName: "Limehouse, ON" }, { postalCode: "E6B 1G1", cityName: "Limekiln, NB" }, { postalCode: "S0H 2P0", cityName: "Limerick, SK" }, { postalCode: "E7N 2H7", cityName: "Limestone, NB" }, { postalCode: "K0A 2M0", cityName: "Limoges, ON" }, { postalCode: "E3B 0A5", cityName: "Lincoln, NB" }, { postalCode: "T0C 1W0", cityName: "Lindale, AB" }, { postalCode: "T0A 2J0", cityName: "Lindbergh, AB" }, { postalCode: "V2R 0C9", cityName: "Lindell Beach, BC" }, { postalCode: "T0M 1J0", cityName: "Linden, AB" }, { postalCode: "K9V 1B5", cityName: "Lindsay, ON" }, { postalCode: "E7M 3N2", cityName: "Lindsay, NB" }, { postalCode: "B1H 5E6", cityName: "Lingan, NS" }, { postalCode: "B1N 3K3", cityName: "Lingan Road, NS" }, { postalCode: "J0B 2Z0", cityName: "Lingwick, QC" }, { postalCode: "S0A 2H0", cityName: "Lintlaw, SK" }, { postalCode: "E7G 2B3", cityName: "Linton Corner, NB" }, { postalCode: "N0B 2A0", cityName: "Linwood, ON" }, { postalCode: "V0N 2E0", cityName: "Lions Bay, BC" }, { postalCode: "N0H 1W0", cityName: "Lions Head, ON" }, { postalCode: "S0G 3B0", cityName: "Lipton, SK" }, { postalCode: "B0J 2A0", cityName: "Liscomb, NS" }, { postalCode: "S0H 2R0", cityName: "Lisieux, SK" }, { postalCode: "L0M 1M0", cityName: "Lisle, ON" }, { postalCode: "V0B 1Y0", cityName: "Lister, BC" }, { postalCode: "N4W 3W3", cityName: "Listowel, ON" }, { postalCode: "G0C 2R0", cityName: "Listuguj, QC" }, { postalCode: "E1V 6L9", cityName: "Little Bartibog, NB" }, { postalCode: "A0E 2J0", cityName: "Little Bay East, NL" }, { postalCode: "A0J 1K0", cityName: "Little Bay Islands, NL" }, { postalCode: "A0J 1J0", cityName: "Little Bay NDB, NL" }, { postalCode: "A0E 2H0", cityName: "Little Bay PB, NL" }, { postalCode: "B1Y 2X1", cityName: "Little Bras d\'Or, NS" }, { postalCode: "K0M 2C0", cityName: "Little Britain, ON" }, { postalCode: "B0W 1Z0", cityName: "Little Brook, NS" }, { postalCode: "R0C 1V0", cityName: "Little Bullhead, MB" }, { postalCode: "A0G 3B0", cityName: "Little Burnt Bay, NL" }, { postalCode: "A0C 1W0", cityName: "Little Catalina, NL" }, { postalCode: "P0P 1K0", cityName: "Little Current, ON" }, { postalCode: "B0H 1V0", cityName: "Little Dover, NS" }, { postalCode: "V0E 2C0", cityName: "Little Fort, BC" }, { postalCode: "R0B 0V0", cityName: "Little Grand Rapids, MB" }, { postalCode: "A0B 2H0", cityName: "Little Harbour East PB, NL" }, { postalCode: "A0E 2K0", cityName: "Little Hearts Ease, NL" }, { postalCode: "E5J 0A1", cityName: "Little Lepreau, NB" }, { postalCode: "B1C 1Z7", cityName: "Little Lorraine, NS" }, { postalCode: "B0E 1T0", cityName: "Little Narrows, NS" }, { postalCode: "B1Y 1S8", cityName: "Little Pond, NS" }, { postalCode: "E3L 4N3", cityName: "Little Ridge, NB" }, { postalCode: "B0V 1C0", cityName: "Little River, NS" }, { postalCode: "E4J 1C2", cityName: "Little River Albert Co, NB" }, { postalCode: "E2A 6M6", cityName: "Little River Gloucester Co, NB" }, { postalCode: "E4B 2E4", cityName: "Little River Hill, NB" }, { postalCode: "E4E 0A8", cityName: "Little Salmon River West, NB" }, { postalCode: "E4M 0A1", cityName: "Little Shemogue, NB" }, { postalCode: "T0H 3Z0", cityName: "Little Smoky, AB" }, { postalCode: "A0E 2L0", cityName: "Little St Lawrence, NL" }, { postalCode: "B0J 2B0", cityName: "Little Tancook, NS" }, { postalCode: "S0M 1J0", cityName: "Livelong, SK" }, { postalCode: "B0T 1K0", cityName: "Liverpool, NS" }, { postalCode: "T9V 0A2", cityName: "Lloydminster, AB" }, { postalCode: "S9V 1R3", cityName: "Lloydminster, SK" }, { postalCode: "B2E 0A1", cityName: "Loch Lomond, NS" }, { postalCode: "B2E 1A4", cityName: "Loch Lomond, NS" }, { postalCode: "K0M 2G0", cityName: "Lochlin, ON" }, { postalCode: "B0T 1L0", cityName: "Lockeport, NS" }, { postalCode: "R1B 1A1", cityName: "Lockport, MB" }, { postalCode: "R1A 1J2", cityName: "Lockport, MB" }, { postalCode: "S0K 2R0", cityName: "Lockwood, SK" }, { postalCode: "L0H 1J0", cityName: "Locust Hill, ON" }, { postalCode: "A0K 1T0", cityName: "Lodge Bay, NL" }, { postalCode: "T0E 1K0", cityName: "Lodgepole, AB" }, { postalCode: "V0K 1W0", cityName: "Logan Lake, BC" }, { postalCode: "A1K 0B9", cityName: "Logy Bay, NL" }, { postalCode: "K0G 1L0", cityName: "Lombardy, ON" }, { postalCode: "T0L 1G0", cityName: "Lomond, AB" }, { postalCode: "N0M 2H0", cityName: "Londesborough, ON" }, { postalCode: "N6L 1K3", cityName: "London (East Tempo), ON" }, { postalCode: "N5X 4S1", cityName: "London (Fanshawe / Stoneybrook / Stoney Creek / Uplands / East Masonville), ON" }, { postalCode: "N5Z 2W6", cityName: "London (Glen Cairn), ON" }, { postalCode: "N6M 1H4", cityName: "London (Jackson / Old Victoria / Bradley / North Highbury), ON" }, { postalCode: "N6N 1R1", cityName: "London (South Highbury / Glanworth / East Brockley / SE Westminster), ON" }, { postalCode: "N6E 3W6", cityName: "London (South White Oaks / Central Westminster / East Longwoods / West Brockley), ON" }, { postalCode: "N6G 5E6", cityName: "London (Sunningdale / West Masonville / Medway / NE Hyde Park / East Fox Hollow), ON" }, { postalCode: "N6P 1W4", cityName: "London (Talbot / Lambeth / West Tempo / South Sharon Creek), ON" }, { postalCode: "N5Y 6M6", cityName: "London (West Huron Heights / Carling), ON" }, { postalCode: "N5V 5J8", cityName: "London (YXU / North and East Argyle / East Huron Heights), ON" }, { postalCode: "N6B 3R3", cityName: "London Central, ON" }, { postalCode: "N5W 6H2", cityName: "London East (SW Argyle / Hamilton Road), ON" }, { postalCode: "N6A 5N3", cityName: "London North (UWO), ON" }, { postalCode: "N6K 4Z4", cityName: "London Riverbend / Woodhull / North Sharon Creek / Byron / West Westmount), ON" }, { postalCode: "N6C 5K2", cityName: "London South (East Highland / North White Oaks / North Westminster), ON" }, { postalCode: "N6J 4Y6", cityName: "London Southcrest / East Westmount / West Highland), ON" }, { postalCode: "N6H 5X8", cityName: "London West (Central Hyde Park / Oakridge), ON" }, { postalCode: "B0M 1M0", cityName: "Londonderry, NS" }, { postalCode: "E4E 0A9", cityName: "Londonderry, NB" }, { postalCode: "V0K 1X0", cityName: "Lone Butte, BC" }, { postalCode: "S0M 1K0", cityName: "Lone Rock, SK" }, { postalCode: "E4C 1H2", cityName: "Long Creek, NB" }, { postalCode: "A0B 2J0", cityName: "Long Harbour, NL" }, { postalCode: "B1Y 3K5", cityName: "Long Island, NS" }, { postalCode: "B9A 1A2", cityName: "Long Point, NS" }, { postalCode: "E5N 1Z3", cityName: "Long Point, NB" }, { postalCode: "E5S 1W1", cityName: "Long Reach, NB" }, { postalCode: "K0C 1P0", cityName: "Long Sault, ON" }, { postalCode: "E7K 1L7", cityName: "Long Settlement, NB" }, { postalCode: "E4E 5X5", cityName: "Long Settlement Kings Co, NB" }, { postalCode: "P0X 1H0", cityName: "Longbow Lake, ON" }, { postalCode: "L0K 1L0", cityName: "Longford Mills, ON" }, { postalCode: "P0T 2A0", cityName: "Longlac, ON" }, { postalCode: "G0G 1V0", cityName: "Longue-Pointe-de-Mingan, QC" }, { postalCode: "G0T 1Z0", cityName: "Longue-Rive, QC" }, { postalCode: "J4P 3G3", cityName: "Longueuil, QC" }, { postalCode: "J4Z 3H8", cityName: "Longueuil, QC" }, { postalCode: "J4J 3E7", cityName: "Longueuil Central, QC" }, { postalCode: "J4M 2Y7", cityName: "Longueuil East, QC" }, { postalCode: "J4G 2V1", cityName: "Longueuil North, QC" }, { postalCode: "J4N 1P4", cityName: "Longueuil Northeast, QC" }, { postalCode: "J4L 4X2", cityName: "Longueuil Southeast, QC" }, { postalCode: "J4K 5K7", cityName: "Longueuil Southwest, QC" }, { postalCode: "J4H 4E2", cityName: "Longueuil West, QC" }, { postalCode: "T0L 1H0", cityName: "Longview, AB" }, { postalCode: "V0J 2B0", cityName: "Longworth, BC" }, { postalCode: "A0G 3C0", cityName: "Loon Bay, NL" }, { postalCode: "S0M 1L0", cityName: "Loon Lake, SK" }, { postalCode: "S0H 2S0", cityName: "Loreburn, SK" }, { postalCode: "R0A 0Y0", cityName: "Lorette, MB" }, { postalCode: "G2A 4G8", cityName: "Loretteville North, QC" }, { postalCode: "G2B 5K4", cityName: "Loretteville South, QC" }, { postalCode: "L0G 1L0", cityName: "Loretto, ON" }, { postalCode: "P0H 1S0", cityName: "Loring, ON" }, { postalCode: "E8G 1G1", cityName: "Lorne, NB" }, { postalCode: "J7E 4H5", cityName: "Lorraine, QC" }, { postalCode: "J0Z 2R0", cityName: "Lorrainville, QC" }, { postalCode: "E1X 2S1", cityName: "Losier Settlement, NB" }, { postalCode: "G0S 1S0", cityName: "Lotbiniere, QC" }, { postalCode: "G0L 1V0", cityName: "Lots-Renverses, QC" }, { postalCode: "T0B 2V0", cityName: "Lougheed, AB" }, { postalCode: "V0E 2E0", cityName: "Louis Creek, BC" }, { postalCode: "B1C 1B7", cityName: "Louisbourg, NS" }, { postalCode: "B1C 0A1", cityName: "Louisbourg, NS" }, { postalCode: "B0E 1V0", cityName: "Louisdale, NS" }, { postalCode: "J5V 3C5", cityName: "Louiseville, QC" }, { postalCode: "A0N 1R0", cityName: "Lourdes, NL" }, { postalCode: "G0S 1T0", cityName: "Lourdes, QC" }, { postalCode: "G0G 1W0", cityName: "Lourdes-de-Blanc-Sablon, QC" }, { postalCode: "J0K 1K0", cityName: "Lourdes-de-Joliette, QC" }, { postalCode: "T0M 1K0", cityName: "Lousana, AB" }, { postalCode: "S0J 1P0", cityName: "Love, SK" }, { postalCode: "S0L 1Y0", cityName: "Loverna, SK" }, { postalCode: "J0X 2C0", cityName: "Low, QC" }, { postalCode: "N0A 1K0", cityName: "Lowbanks, ON" }, { postalCode: "R0G 1E0", cityName: "Lowe Farm, MB" }, { postalCode: "B4V 4L9", cityName: "Lower Branch, NS" }, { postalCode: "E7P 1A1", cityName: "Lower Brighton, NB" }, { postalCode: "E4C 3P3", cityName: "Lower Cambridge, NB" }, { postalCode: "E4H 3N6", cityName: "Lower Cape, NB" }, { postalCode: "E4E 1T3", cityName: "Lower Cove, NB" }, { postalCode: "E1V 5B5", cityName: "Lower Derby, NB" }, { postalCode: "B0J 1N0", cityName: "Lower East Chezzetcook, NS" }, { postalCode: "B0W 2A0", cityName: "Lower East Pubnico, NS" }, { postalCode: "B0M 1N0", cityName: "Lower Five Islands, NS" }, { postalCode: "E5K 0B1", cityName: "Lower Greenwich, NB" }, { postalCode: "E6E 1B4", cityName: "Lower Hainesville, NB" }, { postalCode: "A0A 2W0", cityName: "Lower Island Cove, NL" }, { postalCode: "E3E 1H2", cityName: "Lower Kingsclear, NB" }, { postalCode: "E7H 1J2", cityName: "Lower Kintore, NB" }, { postalCode: "E7K 2H3", cityName: "Lower Knoxford, NB" }, { postalCode: "B0E 1W0", cityName: "Lower l\'Ardoise, NS" }, { postalCode: "E5P 3H7", cityName: "Lower Millstream, NB" }, { postalCode: "E1V 0A1", cityName: "Lower Newcastle, NB" }, { postalCode: "V0K 1Y0", cityName: "Lower Nicola, BC" }, { postalCode: "B4V 8R1", cityName: "Lower Northfield, NS" }, { postalCode: "E5N 7S6", cityName: "Lower Norton, NB" }, { postalCode: "V0C 1W0", cityName: "Lower Post, BC" }, { postalCode: "B3T 1Y8", cityName: "Lower Prospect, NS" }, { postalCode: "E6L 0A4", cityName: "Lower Queensbury, NB" }, { postalCode: "B4B 1S1", cityName: "Lower Sackville, NS" }, { postalCode: "B4G 1E4", cityName: "Lower Sackville, NS" }, { postalCode: "B4G 0A1", cityName: "Lower Sackville North, NS" }, { postalCode: "B4C 1A1", cityName: "Lower Sackville South, NS" }, { postalCode: "B4E 0A1", cityName: "Lower Sackville West, NS" }, { postalCode: "V0V 1A0", cityName: "Lower Skeena (Port Edward), BC" }, { postalCode: "E3A 8E7", cityName: "Lower St Marys, NB" }, { postalCode: "B2C 1N1", cityName: "Lower Washabuck, NS" }, { postalCode: "B0W 2B0", cityName: "Lower Wedgeport, NS" }, { postalCode: "B0W 2C0", cityName: "Lower West Pubnico, NS" }, { postalCode: "B0W 2E0", cityName: "Lower Woods Harbour, NS" }, { postalCode: "E7M 0E5", cityName: "Lower Woodstock, NB" }, { postalCode: "E7N 2P1", cityName: "Lower Woodstock, NB" }, { postalCode: "N0M 2J0", cityName: "Lucan, ON" }, { postalCode: "B4B 1R5", cityName: "Lucasville, NS" }, { postalCode: "N0G 2H0", cityName: "Lucknow, ON" }, { postalCode: "S0L 1Z0", cityName: "Lucky Lake, SK" }, { postalCode: "E9C 2H3", cityName: "Ludlow, NB" }, { postalCode: "E8K 3B2", cityName: "Lugar, NB" }, { postalCode: "V0E 2G0", cityName: "Lumby, BC" }, { postalCode: "A0G 3E0", cityName: "Lumsden, NL" }, { postalCode: "S0G 3C0", cityName: "Lumsden, SK" }, { postalCode: "V0N 2G0", cityName: "Lund, BC" }, { postalCode: "R0C 1Y0", cityName: "Lundar, MB" }, { postalCode: "T0K 1H0", cityName: "Lundbreck, AB" }, { postalCode: "B0J 2C0", cityName: "Lunenburg, NS" }, { postalCode: "K0C 1R0", cityName: "Lunenburg, ON" }, { postalCode: "S0L 2A0", cityName: "Luseland, SK" }, { postalCode: "J0X 2G0", cityName: "Luskville, QC" }, { postalCode: "E1G 0B4", cityName: "Lutes Mountain, NB" }, { postalCode: "X0E 1A0", cityName: "Lutselk\'e, NT" }, { postalCode: "T0J 1Y0", cityName: "Lyalta, AB" }, { postalCode: "B0T 1M0", cityName: "Lydgate, NS" }, { postalCode: "R0M 1G0", cityName: "Lyleton, MB" }, { postalCode: "K0E 1M0", cityName: "Lyn, ON" }, { postalCode: "K6T 1B3", cityName: "Lyn, ON" }, { postalCode: "L0R 1T0", cityName: "Lynden, ON" }, { postalCode: "K0E 1N0", cityName: "Lyndhurst, ON" }, { postalCode: "R0B 0W0", cityName: "Lynn Lake, MB" }, { postalCode: "E5A 1V6", cityName: "Lynnfield, NB" }, { postalCode: "G0S 1V0", cityName: "Lyster, QC" }, { postalCode: "E9E 0A3", cityName: "Lyttleton, NB" }, { postalCode: "V0K 1Z0", cityName: "Lytton, BC" }, { postalCode: "P0P 1G0", cityName: "M\'Chigeeng, ON" }, { postalCode: "G8G 2L1", cityName: "M&eacute;tabetchouan- Lac-a-la-Croix, QC" }, { postalCode: "T0C 1X0", cityName: "Ma-Me-O Beach, AB" }, { postalCode: "K0H 2B0", cityName: "Maberly, ON" }, { postalCode: "B0E 1X0", cityName: "Mabou, NS" }, { postalCode: "B2A 4G8", cityName: "Macadams Lake, NS" }, { postalCode: "J0Z 2S0", cityName: "Macamic, QC" }, { postalCode: "B0L 1B0", cityName: "Maccan, NS" }, { postalCode: "P0T 2B0", cityName: "Macdiarmid, ON" }, { postalCode: "R0H 0S0", cityName: "Macdonald, MB" }, { postalCode: "E1H 0B6", cityName: "Macdougall Settlement, NB" }, { postalCode: "S0K 2S0", cityName: "Macdowall, SK" }, { postalCode: "E5J 1S1", cityName: "Maces Bay, NB" }, { postalCode: "R0H 0R0", cityName: "Macgregor, MB" }, { postalCode: "B9A 1T3", cityName: "Mackdale, NS" }, { postalCode: "V0J 2C0", cityName: "Mackenzie, BC" }, { postalCode: "K0J 2B0", cityName: "Mackey, ON" }, { postalCode: "B2C 1E8", cityName: "Mackinnons Harbour, NS" }, { postalCode: "S0L 2C0", cityName: "Macklin, SK" }, { postalCode: "E6B 2K7", cityName: "Maclaggan Bridge, NB" }, { postalCode: "S0A 2K0", cityName: "Macnutt, SK" }, { postalCode: "S0C 1P0", cityName: "Macoun, SK" }, { postalCode: "S0L 2E0", cityName: "Macrorie, SK" }, { postalCode: "E6L 1B3", cityName: "Mactaquac, NB" }, { postalCode: "P0C 1H0", cityName: "Mactier, ON" }, { postalCode: "K0J 2C0", cityName: "Madawaska, ON" }, { postalCode: "E7C 0A1", cityName: "Madawaska Maliseet Frst Nation, NB" }, { postalCode: "T0M 1L0", cityName: "Madden, AB" }, { postalCode: "G0Z 1C0", cityName: "Maddington, QC" }, { postalCode: "V0N 2H0", cityName: "Madeira Park, BC" }, { postalCode: "G0E 1P0", cityName: "Madeleine-Centre, QC" }, { postalCode: "S0L 2G0", cityName: "Madison, SK" }, { postalCode: "K0K 2K0", cityName: "Madoc, ON" }, { postalCode: "E8J 0A2", cityName: "Madran, NB" }, { postalCode: "P0V 2C0", cityName: "Madsen, ON" }, { postalCode: "R0L 1B0", cityName: "Mafeking, MB" }, { postalCode: "P0A 1C0", cityName: "Magnetawan, ON" }, { postalCode: "J1X 7T9", cityName: "Magog, QC" }, { postalCode: "G0G 1X0", cityName: "Magpie, QC" }, { postalCode: "T0K 1J0", cityName: "Magrath, AB" }, { postalCode: "B0J 2E0", cityName: "Mahone Bay, NS" }, { postalCode: "N0R 1K0", cityName: "Maidstone, ON" }, { postalCode: "S0M 1M0", cityName: "Maidstone, SK" }, { postalCode: "A0K 3N0", cityName: "Main Brook, NL" }, { postalCode: "S0H 2V0", cityName: "Main Centre, SK" }, { postalCode: "A0G 3G0", cityName: "Main Point, NL" }, { postalCode: "E4T 0B1", cityName: "Main River, NB" }, { postalCode: "B1C 1W3", cityName: "Main-A-Dieu, NS" }, { postalCode: "B0J 1A0", cityName: "Mainland east shore (Lunenburg), NS" }, { postalCode: "E7P 1C8", cityName: "Mainstream, NB" }, { postalCode: "E8N 0A4", cityName: "Maisonnette, NB" }, { postalCode: "H1V 0A7", cityName: "Maisonneuve, QC" }, { postalCode: "B0N 1T0", cityName: "Maitland, NS" }, { postalCode: "K0E 1P0", cityName: "Maitland, ON" }, { postalCode: "B0T 1N0", cityName: "Maitland Bridge, NS" }, { postalCode: "S0L 2H0", cityName: "Major, SK" }, { postalCode: "R0L 1C0", cityName: "Makinak, MB" }, { postalCode: "A0A 2X0", cityName: "Makinsons, NL" }, { postalCode: "A0P 1J0", cityName: "Makkovik, NL" }, { postalCode: "S0M 1N0", cityName: "Makwa, SK" }, { postalCode: "B0K 1E0", cityName: "Malagash, NS" }, { postalCode: "V0R 2L0", cityName: "Malahat, BC" }, { postalCode: "V0E 2J0", cityName: "Malakwa, BC" }, { postalCode: "J0Y 1Z0", cityName: "Malartic, QC" }, { postalCode: "E4M 1W7", cityName: "Malden, NB" }, { postalCode: "T0K 1K0", cityName: "Maleb, AB" }, { postalCode: "G4R 4K2", cityName: "Maliotenam, QC" }, { postalCode: "T0A 2K0", cityName: "Mallaig, AB" }, { postalCode: "K0E 1R0", cityName: "Mallorytown, ON" }, { postalCode: "R0C 1Z0", cityName: "Malonton, MB" }, { postalCode: "E8P 1C1", cityName: "Maltempec, NB" }, { postalCode: "J0Z 2T0", cityName: "Mancebourg, QC" }, { postalCode: "G0E 1R0", cityName: "Manche-d\'Epee, QC" }, { postalCode: "J0K 1L0", cityName: "Mandeville, QC" }, { postalCode: "G0H 1A0", cityName: "Manicouagan (Baie-Trinit&eacute;), QC" }, { postalCode: "R0E 1E0", cityName: "Manigotagan, MB" }, { postalCode: "K0M 2J0", cityName: "Manilla, ON" }, { postalCode: "R0G 1G0", cityName: "Manitou, MB" }, { postalCode: "P0P 1B0", cityName: "Manitoulin (Little Current), ON" }, { postalCode: "P0T 2C0", cityName: "Manitouwadge, ON" }, { postalCode: "P0P 1N0", cityName: "Manitowaning, ON" }, { postalCode: "J9E 3P5", cityName: "Maniwaki, QC" }, { postalCode: "S0H 2W0", cityName: "Mankota, SK" }, { postalCode: "E3N 4W9", cityName: "Mann\'s Mountain, NB" }, { postalCode: "E4Z 5V2", cityName: "Mannhurst, NB" }, { postalCode: "T0H 2M0", cityName: "Manning, AB" }, { postalCode: "V0X 1R0", cityName: "Manning Park, BC" }, { postalCode: "T0B 2W0", cityName: "Mannville, AB" }, { postalCode: "S0C 1R0", cityName: "Manor, SK" }, { postalCode: "K4M 0A3", cityName: "Manotick, ON" }, { postalCode: "J0K 1M0", cityName: "Manouane, QC" }, { postalCode: "G0X 1V0", cityName: "Manseau, QC" }, { postalCode: "J0X 1R0", cityName: "Mansfield, QC" }, { postalCode: "L0N 1M0", cityName: "Mansfield, ON" }, { postalCode: "R0M 1J0", cityName: "Manson, MB" }, { postalCode: "V0J 2H0", cityName: "Manson Creek, BC" }, { postalCode: "J0E 1X0", cityName: "Mansonville, QC" }, { postalCode: "S0L 2J0", cityName: "Mantario, SK" }, { postalCode: "A1W 2C1", cityName: "Manuels, NL" }, { postalCode: "T0K 1L0", cityName: "Manyberries, AB" }, { postalCode: "L6A 4P7", cityName: "Maple, ON" }, { postalCode: "E1V 4W5", cityName: "Maple Glen, NB" }, { postalCode: "E6B 2A7", cityName: "Maple Grove, NB" }, { postalCode: "J6N 0A1", cityName: "Maple Grove, QC" }, { postalCode: "K0L 2R0", cityName: "Maple Leaf, ON" }, { postalCode: "V3Y 1Z1", cityName: "Maple Ridge, BC" }, { postalCode: "V2W 1A1", cityName: "Maple Ridge East, BC" }, { postalCode: "V4R 1Y5", cityName: "Maple Ridge Northwest, BC" }, { postalCode: "V2X 0G4", cityName: "Maple Ridge West, BC" }, { postalCode: "E7G 3H3", cityName: "Maple View, NB" }, { postalCode: "E7M 4S7", cityName: "Mapledale, NB" }, { postalCode: "E7N 2B1", cityName: "Mapledale, NB" }, { postalCode: "E7J 1R8", cityName: "Maplehurst, NB" }, { postalCode: "E6E 1M9", cityName: "Maplewood, NB" }, { postalCode: "E4B 0A6", cityName: "Maquapit Lake, NB" }, { postalCode: "N0H 1X0", cityName: "Mar, ON" }, { postalCode: "V0E 2K0", cityName: "Mara, BC" }, { postalCode: "P0T 2E0", cityName: "Marathon, ON" }, { postalCode: "J0B 2L0", cityName: "Marbleton, QC" }, { postalCode: "S0J 1R0", cityName: "Marcelin, SK" }, { postalCode: "R0A 0Z0", cityName: "Marchand, MB" }, { postalCode: "S0A 2L0", cityName: "Marchwell, SK" }, { postalCode: "S0L 2K0", cityName: "Marengo, SK" }, { postalCode: "B0E 1Y0", cityName: "Margaree, NS" }, { postalCode: "B0E 1Z0", cityName: "Margaree Centre, NS" }, { postalCode: "B0E 2A0", cityName: "Margaree Forks, NS" }, { postalCode: "B0E 2B0", cityName: "Margaree Harbour, NS" }, { postalCode: "B0E 2C0", cityName: "Margaree Valley, NS" }, { postalCode: "R0K 1J0", cityName: "Margaret, MB" }, { postalCode: "B0S 1N0", cityName: "Margaretsville, NS" }, { postalCode: "S0A 2M0", cityName: "Margo, SK" }, { postalCode: "G0C 1Y0", cityName: "Maria, QC" }, { postalCode: "R0K 1K0", cityName: "Mariapolis, MB" }, { postalCode: "J0E 1Y0", cityName: "Maricourt, QC" }, { postalCode: "J0H 2C0", cityName: "Maricourt, QC" }, { postalCode: "B0J 2G0", cityName: "Marie Joseph, NS" }, { postalCode: "T0H 2N0", cityName: "Marie Reine, AB" }, { postalCode: "J3M 1S9", cityName: "Marieville, QC" }, { postalCode: "B1K 1A1", cityName: "Marion Bridge, NS" }, { postalCode: "R0H 0T0", cityName: "Marius, MB" }, { postalCode: "N0C 1H0", cityName: "Markdale, ON" }, { postalCode: "T0M 1M0", cityName: "Markerville, AB" }, { postalCode: "L3P 6V3", cityName: "Markham Central, ON" }, { postalCode: "L6B 1M2", cityName: "Markham East, ON" }, { postalCode: "L6G 1E4", cityName: "Markham Inner Southwest, ON" }, { postalCode: "L6E 2H5", cityName: "Markham Northeast, ON" }, { postalCode: "L6C 3G8", cityName: "Markham Northwest (Unionville), ON" }, { postalCode: "L3R 9Z2", cityName: "Markham Outer Southwest, ON" }, { postalCode: "L3S 4P9", cityName: "Markham Southeast, ON" }, { postalCode: "E4E 0A5", cityName: "Markhamville, NB" }, { postalCode: "S0G 3J0", cityName: "Markinch, SK" }, { postalCode: "P0M 2G0", cityName: "Markstay, ON" }, { postalCode: "K0K 2L0", cityName: "Marlbank, ON" }, { postalCode: "K0K 2M0", cityName: "Marmora, ON" }, { postalCode: "E6H 1N2", cityName: "Marne, NB" }, { postalCode: "R0H 0V0", cityName: "Marquette, MB" }, { postalCode: "S0H 2X0", cityName: "Marquis, SK" }, { postalCode: "E5P 1W9", cityName: "Marrtown, NB" }, { postalCode: "S0M 1P0", cityName: "Marsden, SK" }, { postalCode: "Y0B 1Y0", cityName: "Marsh Lake, YT" }, { postalCode: "S0M 1R0", cityName: "Marshall, SK" }, { postalCode: "G0E 1S0", cityName: "Marsoui, QC" }, { postalCode: "G0Y 1G0", cityName: "Marston, QC" }, { postalCode: "P0H 1T0", cityName: "Marten River, ON" }, { postalCode: "S0K 0A2", cityName: "Martensville, SK" }, { postalCode: "K0C 1S0", cityName: "Martintown, ON" }, { postalCode: "J0B 2A0", cityName: "Martinville, QC" }, { postalCode: "T0B 2X0", cityName: "Marwayne, AB" }, { postalCode: "S0G 3K0", cityName: "Maryfield, SK" }, { postalCode: "N0B 2B0", cityName: "Maryhill, ON" }, { postalCode: "A0K 3P0", cityName: "Marys Harbour, NL" }, { postalCode: "A0E 2M0", cityName: "Marystown, NL" }, { postalCode: "A0A 2Z0", cityName: "Marysvale, NL" }, { postalCode: "K0K 2N0", cityName: "Marysville, ON" }, { postalCode: "E5C 2R8", cityName: "Mascarene, NB" }, { postalCode: "J7L 4H9", cityName: "Mascouche Central, QC" }, { postalCode: "J7K 4B2", cityName: "Mascouche Extremities, QC" }, { postalCode: "G0W 2H0", cityName: "Mashteuiatsh, QC" }, { postalCode: "J0K 1N0", cityName: "Maskinonge, QC" }, { postalCode: "P0P 1P0", cityName: "Massey, ON" }, { postalCode: "A2H 0A1", cityName: "Massey Drive, NL" }, { postalCode: "J8M 2B8", cityName: "Masson-Angers, QC" }, { postalCode: "J0G 1K0", cityName: "Massueville, QC" }, { postalCode: "P0K 1M0", cityName: "Matachewan, ON" }, { postalCode: "J0Y 2A0", cityName: "Matagami, QC" }, { postalCode: "G4W 4P2", cityName: "Matane, QC" }, { postalCode: "G0J 1V0", cityName: "Matapedia, QC" }, { postalCode: "E4M 1V3", cityName: "Mates Corner, NB" }, { postalCode: "R0K 1L0", cityName: "Mather, MB" }, { postalCode: "P0K 1N0", cityName: "Matheson, ON" }, { postalCode: "R0C 2A0", cityName: "Matheson Island, MB" }, { postalCode: "R0C 2B0", cityName: "Matlock, MB" }, { postalCode: "P0H 1V0", cityName: "Mattawa, ON" }, { postalCode: "E9E 1V1", cityName: "Matthews Settlement, NB" }, { postalCode: "P0L 1T0", cityName: "Mattice, ON" }, { postalCode: "E3A 0A8", cityName: "Maugerville, NB" }, { postalCode: "G0X 1A0", cityName: "Mauricie (Parent), QC" }, { postalCode: "B0W 2H0", cityName: "Mavillette, NS" }, { postalCode: "K0C 1T0", cityName: "Maxville, ON" }, { postalCode: "E7N 0A8", cityName: "Maxwell, NB" }, { postalCode: "N0C 1J0", cityName: "Maxwell, ON" }, { postalCode: "T0E 1N0", cityName: "Mayerthorpe, AB" }, { postalCode: "S0M 1S0", cityName: "Mayfair, SK" }, { postalCode: "E3L 5E5", cityName: "Mayfield, NB" }, { postalCode: "S0M 1T0", cityName: "Maymont, SK" }, { postalCode: "V0N 2J0", cityName: "Mayne, BC" }, { postalCode: "K0L 2S0", cityName: "Maynooth, ON" }, { postalCode: "J8L 0A6", cityName: "Mayo, QC" }, { postalCode: "Y0B 1M0", cityName: "Mayo, YT" }, { postalCode: "S0J 1S0", cityName: "Mayview, SK" }, { postalCode: "S0H 2Y0", cityName: "Mazenod, SK" }, { postalCode: "E3E 0B2", cityName: "Mazerolle Settlement, NB" }, { postalCode: "E6J 1K5", cityName: "McAdam, NB" }, { postalCode: "K0L 2M0", cityName: "McArthurs Mills, ON" }, { postalCode: "R0M 1H0", cityName: "McAuley, MB" }, { postalCode: "V0J 2E0", cityName: "McBride, BC" }, { postalCode: "A0H 2J0", cityName: "McCallum, NL" }, { postalCode: "S0H 2T0", cityName: "McCord, SK" }, { postalCode: "K0G 1M0", cityName: "McDonalds Corners, ON" }, { postalCode: "E6C 1P8", cityName: "McGivney, NB" }, { postalCode: "B3Z 1M3", cityName: "McGraths Cove, NS" }, { postalCode: "B0W 2G0", cityName: "McGray, NS" }, { postalCode: "N0R 1J0", cityName: "McGregor, ON" }, { postalCode: "E4S 0C5", cityName: "McIntosh Hill, NB" }, { postalCode: "E4V 0A1", cityName: "McKees Mills, NB" }, { postalCode: "P0G 1C0", cityName: "McKellar, ON" }, { postalCode: "E7N 1V1", cityName: "McKenna, NB" }, { postalCode: "E7M 4V2", cityName: "McKenzie Corner, NB" }, { postalCode: "E7N 2C1", cityName: "McKenzie Corner, NB" }, { postalCode: "P0V 2B0", cityName: "McKenzie Island, ON" }, { postalCode: "P0P 1M0", cityName: "McKerrow, ON" }, { postalCode: "E9E 2H4", cityName: "McKinleyville, NB" }, { postalCode: "E7G 1C7", cityName: "McLaughlin, NB" }, { postalCode: "T0B 2Y0", cityName: "McLaughlin, AB" }, { postalCode: "S0G 3E0", cityName: "McLean, SK" }, { postalCode: "V0L 1P0", cityName: "McLeese Lake, BC" }, { postalCode: "T0H 2L0", cityName: "McLennan, AB" }, { postalCode: "V0J 2G0", cityName: "McLeod Lake, BC" }, { postalCode: "E3N 0A6", cityName: "McLeods, NB" }, { postalCode: "V0E 2H0", cityName: "McLure, BC" }, { postalCode: "S0N 1M0", cityName: "McMahon, SK" }, { postalCode: "E9C 2C6", cityName: "McNamee, NB" }, { postalCode: "E1G 3J3", cityName: "McQuade, NB" }, { postalCode: "T0A 2L0", cityName: "McRae, AB" }, { postalCode: "S0G 3G0", cityName: "McTaggart, SK" }, { postalCode: "J9X 5B7", cityName: "McWatters, QC" }, { postalCode: "S0K 2V0", cityName: "Meacham, SK" }, { postalCode: "E1H 0A8", cityName: "Meadow Brook, NB" }, { postalCode: "V0G 1N0", cityName: "Meadow Creek, BC" }, { postalCode: "S9X 2A1", cityName: "Meadow Lake, SK" }, { postalCode: "R0L 1E0", cityName: "Meadow Portage, MB" }, { postalCode: "N4L 1Y5", cityName: "Meaford, ON" }, { postalCode: "T0H 2P0", cityName: "Meander River, AB" }, { postalCode: "S0J 1T0", cityName: "Meath Park, SK" }, { postalCode: "E4E 3M4", cityName: "Mechanic Settlement, NB" }, { postalCode: "E7H 1N8", cityName: "Medford, NB" }, { postalCode: "T1A 0A1", cityName: "Medicine Hat Central, AB" }, { postalCode: "T1C 0A4", cityName: "Medicine Hat North, AB" }, { postalCode: "T1B 0A1", cityName: "Medicine Hat South, AB" }, { postalCode: "R0M 1K0", cityName: "Medora, MB" }, { postalCode: "S0M 1W0", cityName: "Medstead, SK" }, { postalCode: "E6H 0B3", cityName: "Meductic, NB" }, { postalCode: "T0B 2Z0", cityName: "Meeting Creek, AB" }, { postalCode: "J0B 2B0", cityName: "Melbourne, QC" }, { postalCode: "N0L 1T0", cityName: "Melbourne, ON" }, { postalCode: "P0P 1R0", cityName: "Meldrum Bay, ON" }, { postalCode: "R0C 2C0", cityName: "Meleb, MB" }, { postalCode: "S0E 1A0", cityName: "Melfort, SK" }, { postalCode: "R0M 1L0", cityName: "Melita, MB" }, { postalCode: "J0S 1J0", cityName: "Melocheville, QC" }, { postalCode: "J6N 1W5", cityName: "Melocheville, QC" }, { postalCode: "A0C 1Y0", cityName: "Melrose, NL" }, { postalCode: "E4M 1X2", cityName: "Melrose, NB" }, { postalCode: "B9A 1X9", cityName: "Melville, NS" }, { postalCode: "S0A 2P0", cityName: "Melville, SK" }, { postalCode: "B1S 0A1", cityName: "Membertou, NS" }, { postalCode: "E4K 3X8", cityName: "Memramcook East, NB" }, { postalCode: "S0N 1P0", cityName: "Mendham, SK" }, { postalCode: "E8B 1Z3", cityName: "Menneval, NB" }, { postalCode: "R0J 1C0", cityName: "Menzie, MB" }, { postalCode: "S0M 1X0", cityName: "Meota, SK" }, { postalCode: "J6R 2R5", cityName: "Mercier, QC" }, { postalCode: "H1L 6S9", cityName: "Mercier North, QC" }, { postalCode: "H1N 3X6", cityName: "Mercier Southeast, QC" }, { postalCode: "H1M 3Y1", cityName: "Mercier West, QC" }, { postalCode: "B0K 1G0", cityName: "Merigomish, NS" }, { postalCode: "N0P 1W0", cityName: "Merlin, ON" }, { postalCode: "K0G 1N0", cityName: "Merrickville, ON" }, { postalCode: "V1K 0A2", cityName: "Merritt, BC" }, { postalCode: "V0R 2M0", cityName: "Merville, BC" }, { postalCode: "S0M 1Y0", cityName: "Mervin, SK" }, { postalCode: "V0R 2N0", cityName: "Mesachie Lake, BC" }, { postalCode: "S0K 2W0", cityName: "Meskanaw, SK" }, { postalCode: "J0X 2J0", cityName: "Messines, QC" }, { postalCode: "K0A 2P0", cityName: "Metcalfe, ON" }, { postalCode: "V9C 1A1", cityName: "Metchosin, BC" }, { postalCode: "B0W 2J0", cityName: "Meteghan, NS" }, { postalCode: "B0W 2K0", cityName: "Meteghan Centre, NS" }, { postalCode: "B0W 2L0", cityName: "Meteghan River, NS" }, { postalCode: "G0J 1S0", cityName: "Metis-Sur-Mer, QC" }, { postalCode: "T0B 3A0", cityName: "Metiskow, AB" }, { postalCode: "S0H 3A0", cityName: "Meyronne, SK" }, { postalCode: "V0J 3S0", cityName: "Meziadin Lake, BC" }, { postalCode: "R0G 1H0", cityName: "Miami, MB" }, { postalCode: "V0E 2L0", cityName: "Mica Creek, BC" }, { postalCode: "B0N 1W0", cityName: "Micmac, NS" }, { postalCode: "S0C 1S0", cityName: "Midale, SK" }, { postalCode: "A0K 3R0", cityName: "Middle Arm GB, NL" }, { postalCode: "G0G 1Z0", cityName: "Middle Bay, QC" }, { postalCode: "B1J 1Z9", cityName: "Middle Cape, NS" }, { postalCode: "A1K 1M7", cityName: "Middle Cove, NL" }, { postalCode: "E6E 1B2", cityName: "Middle Hainesville, NB" }, { postalCode: "B4V 2X4", cityName: "Middle Lahave, NS" }, { postalCode: "S0K 2X0", cityName: "Middle Lake, SK" }, { postalCode: "B0N 1X0", cityName: "Middle Musquodoboit, NS" }, { postalCode: "B3E 1K7", cityName: "Middle Porters Lake, NS" }, { postalCode: "E2A 0A5", cityName: "Middle River, NB" }, { postalCode: "B4E 0A9", cityName: "Middle Sackville, NS" }, { postalCode: "E4L 4S3", cityName: "Middle Sackville, NB" }, { postalCode: "B0W 2M0", cityName: "Middle West Pubnico, NS" }, { postalCode: "R0A 1B0", cityName: "Middlebro, MB" }, { postalCode: "N0M 1A0", cityName: "Middlesex (Clinton), ON" }, { postalCode: "B0S 1P0", cityName: "Middleton, NS" }, { postalCode: "E4K 0A5", cityName: "Middleton, NB" }, { postalCode: "B4V 6H7", cityName: "Middlewood, NS" }, { postalCode: "E4L 1N1", cityName: "Midgic, NB" }, { postalCode: "L0L 1X0", cityName: "Midhurst, ON" }, { postalCode: "L4R 5K5", cityName: "Midland, ON" }, { postalCode: "E5T 2C9", cityName: "Midland Kings Co, NB" }, { postalCode: "E4A 1T7", cityName: "Midland Queens Co, NB" }, { postalCode: "B4V 4S4", cityName: "Midville Branch, NS" }, { postalCode: "E4H 2N7", cityName: "Midway, NB" }, { postalCode: "V0H 1M0", cityName: "Midway, BC" }, { postalCode: "P0V 3H0", cityName: "Migisi Sahgaigan, ON" }, { postalCode: "S0A 2R0", cityName: "Mikado, SK" }, { postalCode: "G0Y 1E0", cityName: "Milan, QC" }, { postalCode: "S0L 2L0", cityName: "Milden, SK" }, { postalCode: "N0G 2J0", cityName: "Mildmay, ON" }, { postalCode: "S0J 1V0", cityName: "Mildred, SK" }, { postalCode: "A0J 1L0", cityName: "Miles Cove, NL" }, { postalCode: "S0G 3L0", cityName: "Milestone, SK" }, { postalCode: "K0K 2P0", cityName: "Milford, ON" }, { postalCode: "P0B 1E0", cityName: "Milford Bay, ON" }, { postalCode: "B0N 1Y0", cityName: "Milford Station, NS" }, { postalCode: "T0K 1M0", cityName: "Milk River, AB" }, { postalCode: "V0R 2P0", cityName: "Mill Bay, BC" }, { postalCode: "E4E 3R5", cityName: "Mill Brook, NB" }, { postalCode: "E4C 0B5", cityName: "Mill Cove, NB" }, { postalCode: "B1Y 1W3", cityName: "Mill Creek, NS" }, { postalCode: "B0J 2H0", cityName: "Mill Village, NS" }, { postalCode: "T0L 1K0", cityName: "Millarville, AB" }, { postalCode: "N0K 1L0", cityName: "Millbank, ON" }, { postalCode: "L0A 1G0", cityName: "Millbrook, ON" }, { postalCode: "J0R 1A0", cityName: "Mille-Isles, QC" }, { postalCode: "N0H 1Z0", cityName: "Miller Lake, ON" }, { postalCode: "E1V 5B7", cityName: "Millerton, NB" }, { postalCode: "A0H 1V0", cityName: "Millertown, NL" }, { postalCode: "T0C 1Z0", cityName: "Millet, AB" }, { postalCode: "L0R 1V0", cityName: "Millgrove, ON" }, { postalCode: "T0J 2A0", cityName: "Millicent, AB" }, { postalCode: "A0H 1W0", cityName: "Milltown, NL" }, { postalCode: "E6E 1W1", cityName: "Millville, NB" }, { postalCode: "B1Y 0A5", cityName: "Millville, NS" }, { postalCode: "E6E 1N9", cityName: "Millville, NB" }, { postalCode: "T0L 1L0", cityName: "Milo, AB" }, { postalCode: "L9T 5S6", cityName: "Milton, ON" }, { postalCode: "N0K 1M0", cityName: "Milverton, ON" }, { postalCode: "C0B 1S0", cityName: "Miminegash, PEI" }, { postalCode: "P0X 1J0", cityName: "Minaki, ON" }, { postalCode: "T0B 3B0", cityName: "Minburn, AB" }, { postalCode: "P0P 1S0", cityName: "Mindemoya, ON" }, { postalCode: "K0M 2K0", cityName: "Minden, ON" }, { postalCode: "P0W 1H0", cityName: "Mine Centre, ON" }, { postalCode: "L0L 1Y0", cityName: "Minesing, ON" }, { postalCode: "P0B 1G0", cityName: "Minett, ON" }, { postalCode: "B2Z 1J6", cityName: "Mineville, NS" }, { postalCode: "A0K 3S0", cityName: "Mings Bight, NL" }, { postalCode: "R0M 1M0", cityName: "Miniota, MB" }, { postalCode: "E5B 0A4", cityName: "Ministers Island, NB" }, { postalCode: "R0L 1G0", cityName: "Minitonas, MB" }, { postalCode: "R0J 1E0", cityName: "Minnedosa, MB" }, { postalCode: "P0V 2E0", cityName: "Minnitaki, ON" }, { postalCode: "V0P 1L0", cityName: "Minstrel Island, BC" }, { postalCode: "E4B 1B6", cityName: "Minto, NB" }, { postalCode: "E4B 0B1", cityName: "Minto, NB" }, { postalCode: "R0K 1M0", cityName: "Minto, MB" }, { postalCode: "J0Y 2B0", cityName: "Miquelon, QC" }, { postalCode: "B1K 2V5", cityName: "Mira Gut, NS" }, { postalCode: "B1P 0B1", cityName: "Mira Road, NS" }, { postalCode: "J7J 2A4", cityName: "Mirabel Northeast, QC" }, { postalCode: "J7N 3H7", cityName: "Mirabel Southwest, QC" }, { postalCode: "E1N 0A2", cityName: "Miramichi Bay, NB" }, { postalCode: "E1V 1A1", cityName: "Miramichi North, NB" }, { postalCode: "E8L 1S3", cityName: "Miramichi Road, NB" }, { postalCode: "E1N 4R1", cityName: "Miramichi South, NB" }, { postalCode: "T0B 3C0", cityName: "Mirror, AB" }, { postalCode: "E8T 0A5", cityName: "Miscou, NB" }, { postalCode: "C0B 1T0", cityName: "Miscouche, PEI" }, { postalCode: "E2J 4W3", cityName: "Mispec, NB" }, { postalCode: "P0M 2H0", cityName: "Missanabie, ON" }, { postalCode: "V2V 1A1", cityName: "Mission East, BC" }, { postalCode: "V4S 1A1", cityName: "Mission West, BC" }, { postalCode: "L5S 1X1", cityName: "Mississauga (Cardiff / NE Gateway), ON" }, { postalCode: "L5E 3K9", cityName: "Mississauga (Central Lakeview), ON" }, { postalCode: "L5M 8E3", cityName: "Mississauga (Churchill Meadows / Central Erin Mills / South Streetsville), ON" }, { postalCode: "L5J 4V6", cityName: "Mississauga (Clarkson / Southdown), ON" }, { postalCode: "L5T 3A4", cityName: "Mississauga (Courtney Park / East Gateway), ON" }, { postalCode: "L4X 1E9", cityName: "Mississauga (East Applewood / East Dixie / NE Lakeview), ON" }, { postalCode: "L5V 3E1", cityName: "Mississauga (East Credit), ON" }, { postalCode: "L5L 6A4", cityName: "Mississauga (Erin Mills / Western Business Park), ON" }, { postalCode: "L5N 8R9", cityName: "Mississauga (Lisgar / Meadowvale), ON" }, { postalCode: "L4T 4M4", cityName: "Mississauga (Malton), ON" }, { postalCode: "L4W 5R5", cityName: "Mississauga (Matheson / East Rathwood), ON" }, { postalCode: "L5W 1Z6", cityName: "Mississauga (Meadowvale Village / West Gateway), ON" }, { postalCode: "L5A 4A6", cityName: "Mississauga (Mississauga Valleys / East Cooksville), ON" }, { postalCode: "L5G 4W3", cityName: "Mississauga (SW Lakeview / Mineola / East Port Credit), ON" }, { postalCode: "L4Y 4L2", cityName: "Mississauga (West Applewood / West Dixie / NW Lakeview), ON" }, { postalCode: "L5B 4M3", cityName: "Mississauga (West Cooksville / Fairview / City Centre / East Creditview), ON" }, { postalCode: "L5C 4T1", cityName: "Mississauga (West Creditview / Mavis / Erindale), ON" }, { postalCode: "L5R 4H8", cityName: "Mississauga (West Hurontario / SW Gateway), ON" }, { postalCode: "L5H 4L7", cityName: "Mississauga (West Port Credit / Lorne Park / East Sheridan), ON" }, { postalCode: "L4Z 4J1", cityName: "Mississauga (West Rathwood / East Hurontario / SE Gateway), ON" }, { postalCode: "L5K 2T1", cityName: "Mississauga (West Sheridan), ON" }, { postalCode: "L4V 1W5", cityName: "Mississauga (Wildwood), ON" }, { postalCode: "L5P 1A2", cityName: "Mississauga (YYZ), ON" }, { postalCode: "K0H 2C0", cityName: "Mississippi Station, ON" }, { postalCode: "S0E 1B0", cityName: "Mistatim, SK" }, { postalCode: "G0W 1C0", cityName: "Mistissini, QC" }, { postalCode: "N0K 1N0", cityName: "Mitchell, ON" }, { postalCode: "R5G 0A7", cityName: "Mitchell, MB" }, { postalCode: "V0C 1X0", cityName: "Moberly Lake, BC" }, { postalCode: "P0M 2J0", cityName: "Mobert, ON" }, { postalCode: "A0A 3A0", cityName: "Mobile, NL" }, { postalCode: "L0P 1J0", cityName: "Moffat, ON" }, { postalCode: "J0Z 2W0", cityName: "Moffet, QC" }, { postalCode: "E3L 5T8", cityName: "Mohannes, NB" }, { postalCode: "G0G 2B0", cityName: "Moisie, QC" }, { postalCode: "B4V 4W6", cityName: "Molega Lake, NS" }, { postalCode: "T0L 1M0", cityName: "Monarch, AB" }, { postalCode: "B0H 1W0", cityName: "Monastery, NS" }, { postalCode: "E1A 0A3", cityName: "Moncton, NB" }, { postalCode: "E1H 0A2", cityName: "Moncton, NB" }, { postalCode: "E1C 0C5", cityName: "Moncton Central, NB" }, { postalCode: "E1G 0B8", cityName: "Moncton Northwest, NB" }, { postalCode: "E1E 1A1", cityName: "Moncton West, NB" }, { postalCode: "P0M 2K0", cityName: "Monetville, ON" }, { postalCode: "T0C 2A0", cityName: "Monitor, AB" }, { postalCode: "K0C 1V0", cityName: "Monkland, ON" }, { postalCode: "A0E 2Z0", cityName: "Monkstown, NL" }, { postalCode: "N0K 1P0", cityName: "Monkton, ON" }, { postalCode: "E7J 2L9", cityName: "Monquart, NB" }, { postalCode: "J0T 1J2", cityName: "Mont Blanc, QC" }, { postalCode: "S0J 1X0", cityName: "Mont Nebo, SK" }, { postalCode: "J0R 1R3", cityName: "Mont Saint Sauveur, QC" }, { postalCode: "G0A 1E0", cityName: "Mont Sainte Anne, QC" }, { postalCode: "J0X 1Z0", cityName: "Mont Sainte Marie, QC" }, { postalCode: "J0R 1R3", cityName: "Mont St Sauveur, QC" }, { postalCode: "G0A 1E0", cityName: "Mont Ste Anne, QC" }, { postalCode: "J0X 1Z0", cityName: "Mont Ste Marie, QC" }, { postalCode: "J8E 2L9", cityName: "Mont Tremblant, QC" }, { postalCode: "J0Z 2Y0", cityName: "Mont-Brun, QC" }, { postalCode: "G0L 1W0", cityName: "Mont-Carmel, QC" }, { postalCode: "G5H 4B4", cityName: "Mont-Joli, QC" }, { postalCode: "J9L 3X6", cityName: "Mont-Laurier, QC" }, { postalCode: "J0W 1C0", cityName: "Mont-Laurier, QC" }, { postalCode: "G0E 1T0", cityName: "Mont-Louis, QC" }, { postalCode: "H2V 1B1", cityName: "Mont-Royal, QC" }, { postalCode: "H3S 1A1", cityName: "Mont-Royal, QC" }, { postalCode: "H4N 2P1", cityName: "Mont-Royal, QC" }, { postalCode: "J0J 1K0", cityName: "Mont-Saint-Gregoire, QC" }, { postalCode: "J3G 4S6", cityName: "Mont-Saint-Hilaire, QC" }, { postalCode: "J3H 0A1", cityName: "Mont-Saint-Hilaire, QC" }, { postalCode: "J0W 1P0", cityName: "Mont-Saint-Michel, QC" }, { postalCode: "G0E 1V0", cityName: "Mont-Saint-Pierre, QC" }, { postalCode: "G0A 1E0", cityName: "Mont-Sainte-Anne, QC" }, { postalCode: "J8E 2L9", cityName: "Mont-Tremblant, QC" }, { postalCode: "J0S 1A0", cityName: "Mont&eacute;r&eacute;gie- Ouest (Saint-Anicet), QC" }, { postalCode: "J0J 1B0", cityName: "Mont&eacute;r&eacute;gie-Est (Bedford), QC" }, { postalCode: "J0L 1A0", cityName: "Mont&eacute;r&eacute;gie-Nord (Saint-Antoine- Sur-Richelieu), QC" }, { postalCode: "C0A 1A0", cityName: "Montague, PEI" }, { postalCode: "C0A 1R0", cityName: "Montague, PEI" }, { postalCode: "C0A 1R0", cityName: "Montague, PEI" }, { postalCode: "B2R 1A9", cityName: "Montague Gold Mines, NS" }, { postalCode: "J0Z 2X0", cityName: "Montbeillard, QC" }, { postalCode: "J0T 2V0", cityName: "Montcalm, QC" }, { postalCode: "J0W 1N0", cityName: "Montcerf-Lytton, QC" }, { postalCode: "V0E 2M0", cityName: "Monte Creek, BC" }, { postalCode: "V0E 2N0", cityName: "Monte Lake, BC" }, { postalCode: "E4J 1S3", cityName: "Monteagle, NB" }, { postalCode: "J0V 1L0", cityName: "Montebello, QC" }, { postalCode: "P0K 1P0", cityName: "Monteith, ON" }, { postalCode: "G5V 4P6", cityName: "Montmagny, QC" }, { postalCode: "S0G 3M0", cityName: "Montmartre, SK" }, { postalCode: "V0C 1Y0", cityName: "Montney, BC" }, { postalCode: "J0V 1M0", cityName: "Montpellier, QC" }, { postalCode: "H1G 2J5", cityName: "Montreal, QC" }, { postalCode: "H1H 0A1", cityName: "Montreal, QC" }, { postalCode: "H1J 3B8", cityName: "Montreal, QC" }, { postalCode: "H1K 0C5", cityName: "Montreal, QC" }, { postalCode: "H1M 1A2", cityName: "Montreal, QC" }, { postalCode: "H2V 0A1", cityName: "Montreal, QC" }, { postalCode: "H3P 0A1", cityName: "Montreal, QC" }, { postalCode: "H3R 2B7", cityName: "Montreal, QC" }, { postalCode: "H3Y 1G9", cityName: "Montreal, QC" }, { postalCode: "H4P 0A2", cityName: "Montreal, QC" }, { postalCode: "H4W 1P7", cityName: "Montreal, QC" }, { postalCode: "H1B 5X3", cityName: "Montreal East, QC" }, { postalCode: "S0J 1Y0", cityName: "Montreal Lake, SK" }, { postalCode: "H1G 6P9", cityName: "Montreal North North, QC" }, { postalCode: "H1H 5W9", cityName: "Montreal North South, QC" }, { postalCode: "P0S 1H0", cityName: "Montreal River Harbour, ON" }, { postalCode: "H4X 2H5", cityName: "Montreal West, QC" }, { postalCode: "H1B 0A4", cityName: "Montreal-Est, QC" }, { postalCode: "H1C 1G4", cityName: "Montreal-Est, QC" }, { postalCode: "H1E 2S4", cityName: "Montreal-Est, QC" }, { postalCode: "H1L 0A5", cityName: "Montreal-Est, QC" }, { postalCode: "H4B 1W8", cityName: "Montreal-Ouest, QC" }, { postalCode: "V0G 1P0", cityName: "Montrose, BC" }, { postalCode: "E7N 2L2", cityName: "Monument, NB" }, { postalCode: "P0L 1V0", cityName: "Moonbeam, ON" }, { postalCode: "N0G 2K0", cityName: "Moorefield, ON" }, { postalCode: "E5A 1B1", cityName: "Moores Mills, NB" }, { postalCode: "E5A 0A3", cityName: "Moores Mills, NB" }, { postalCode: "N0N 1M0", cityName: "Mooretown, ON" }, { postalCode: "K0C 1W0", cityName: "Moose Creek, ON" }, { postalCode: "P0L 1W0", cityName: "Moose Factory, ON" }, { postalCode: "S6J 1N9", cityName: "Moose Jaw Northeast, SK" }, { postalCode: "S6H 8C5", cityName: "Moose Jaw Southeast, SK" }, { postalCode: "S6K 1C5", cityName: "Moose Jaw West, SK" }, { postalCode: "R0B 0Y0", cityName: "Moose Lake, MB" }, { postalCode: "E7J 1P6", cityName: "Moose Mountain, NB" }, { postalCode: "R0C 2E0", cityName: "Moosehorn, MB" }, { postalCode: "E5T 5A1", cityName: "Moosehorn Creek, NB" }, { postalCode: "B0J 2J0", cityName: "Mooseland, NS" }, { postalCode: "S0G 3N0", cityName: "Moosomin, SK" }, { postalCode: "P0L 1Y0", cityName: "Moosonee, ON" }, { postalCode: "R6M 1J2", cityName: "Morden, MB" }, { postalCode: "C0A 1S0", cityName: "Morell, PEI" }, { postalCode: "C0A 1S0", cityName: "Morell, PEI" }, { postalCode: "A0G 3H0", cityName: "Moretons Harbour, NL" }, { postalCode: "K0A 2R0", cityName: "Morewood, ON" }, { postalCode: "J0R 1H0", cityName: "Morin-Heights, QC" }, { postalCode: "T8R 0A8", cityName: "Morinville, AB" }, { postalCode: "T0L 1N0", cityName: "Morley, AB" }, { postalCode: "N0P 1X0", cityName: "Morpeth, ON" }, { postalCode: "E3Z 1Z8", cityName: "Morrell Siding, NB" }, { postalCode: "T0J 2B0", cityName: "Morrin, AB" }, { postalCode: "R0G 1K0", cityName: "Morris, MB" }, { postalCode: "K0C 1X0", cityName: "Morrisburg, ON" }, { postalCode: "E5K 4N3", cityName: "Morrisdale, NB" }, { postalCode: "N0B 2C0", cityName: "Morriston, ON" }, { postalCode: "S0H 3C0", cityName: "Morse, SK" }, { postalCode: "P0W 1J0", cityName: "Morson, ON" }, { postalCode: "S0H 3E0", cityName: "Mortlach, SK" }, { postalCode: "B0J 2K0", cityName: "Moser River, NS" }, { postalCode: "S0H 3G0", cityName: "Mossbank, SK" }, { postalCode: "T0L 1P0", cityName: "Mossleigh, AB" }, { postalCode: "N0L 1V0", cityName: "Mossley, ON" }, { postalCode: "A0B 2L0", cityName: "Mount Arlington Heights, NL" }, { postalCode: "N0L 1W0", cityName: "Mount Brydges, ON" }, { postalCode: "A0B 2M0", cityName: "Mount Carmel, NL" }, { postalCode: "V0N 2K0", cityName: "Mount Currie, BC" }, { postalCode: "E7K 1H4", cityName: "Mount Delight, NB" }, { postalCode: "N0J 1N0", cityName: "Mount Elgin, ON" }, { postalCode: "N0G 2L0", cityName: "Mount Forest, ON" }, { postalCode: "E4G 1B7", cityName: "Mount Hebron, NB" }, { postalCode: "E3A 9A3", cityName: "Mount Hope, NB" }, { postalCode: "L0R 1W0", cityName: "Mount Hope, ON" }, { postalCode: "A1N 1A1", cityName: "Mount Pearl, NL" }, { postalCode: "E4G 1E8", cityName: "Mount Pisgah, NB" }, { postalCode: "E7L 2P8", cityName: "Mount Pleasant, NB" }, { postalCode: "N0E 1K0", cityName: "Mount Pleasant, ON" }, { postalCode: "H3R 3L9", cityName: "Mount Royal Central, QC" }, { postalCode: "H3P 3P1", cityName: "Mount Royal North, QC" }, { postalCode: "H4P 2T9", cityName: "Mount Royal South, QC" }, { postalCode: "C0A 1T0", cityName: "Mount Stewart, PEI" }, { postalCode: "C0A 1T0", cityName: "Mount Stewart, PEI" }, { postalCode: "B0N 1Z0", cityName: "Mount Uniacke, NS" }, { postalCode: "K0E 1S0", cityName: "Mountain, ON" }, { postalCode: "K0H 2E0", cityName: "Mountain Grove, ON" }, { postalCode: "R0J 1G0", cityName: "Mountain Road, MB" }, { postalCode: "T0K 1N0", cityName: "Mountain View, AB" }, { postalCode: "V0B 2A0", cityName: "Moyie, BC" }, { postalCode: "S0A 2S0", cityName: "Mozart, SK" }, { postalCode: "E4G 1G3", cityName: "Mt Middleton, NB" }, { postalCode: "A0P 1K0", cityName: "Mud Lake, NL" }, { postalCode: "S0K 2Y0", cityName: "Muenster, SK" }, { postalCode: "N0L 1X0", cityName: "Muirkirk, ON" }, { postalCode: "B0E 2G0", cityName: "Mulgrave, NS" }, { postalCode: "J8L 0A8", cityName: "Mulgrave-Et-Derry, QC" }, { postalCode: "T0C 2C0", cityName: "Mulhurst Bay, AB" }, { postalCode: "S0M 2A0", cityName: "Mullingar, SK" }, { postalCode: "R0C 2G0", cityName: "Mulvihill, MB" }, { postalCode: "N0L 1Y0", cityName: "Muncey, ON" }, { postalCode: "V0C 1Z0", cityName: "Muncho Lake, BC" }, { postalCode: "T0B 3H0", cityName: "Mundare, AB" }, { postalCode: "E4W 0A2", cityName: "Mundleville, NB" }, { postalCode: "E7H 1A1", cityName: "Muniac, NB" }, { postalCode: "T0J 2C0", cityName: "Munson, AB" }, { postalCode: "K0A 3P0", cityName: "Munster, ON" }, { postalCode: "G0E 1W0", cityName: "Murdochville, QC" }, { postalCode: "P0T 2G0", cityName: "Murillo, ON" }, { postalCode: "E4M 0A8", cityName: "Murray Corner, NB" }, { postalCode: "C0A 1V0", cityName: "Murray Harbour, PEI" }, { postalCode: "C0A 1V0", cityName: "Murray Harbour, PEI" }, { postalCode: "C0A 1W0", cityName: "Murray River, PEI" }, { postalCode: "C0A 1W0", cityName: "Murray River, PEI" }, { postalCode: "E4Y 2S2", cityName: "Murray Settlement, NB" }, { postalCode: "A0G 3J0", cityName: "Musgrave Harbour, NL" }, { postalCode: "A0C 1Z0", cityName: "Musgravetown, NL" }, { postalCode: "T0B 3J0", cityName: "Musidora, AB" }, { postalCode: "S0J 3H0", cityName: "Muskoday, SK" }, { postalCode: "P0V 3B0", cityName: "Muskrat Dam, ON" }, { postalCode: "E5J 1P3", cityName: "Musquash, NB" }, { postalCode: "B0J 2L0", cityName: "Musquodoboit Harbour, NS" }, { postalCode: "G0G 2C0", cityName: "Mutton Bay, QC" }, { postalCode: "T0B 3K0", cityName: "Myrnam, AB" }, { postalCode: "E6G 1A1", cityName: "Nackawic, NB" }, { postalCode: "T0J 2E0", cityName: "Nacmine, AB" }, { postalCode: "S0K 2Z0", cityName: "Naicam, SK" }, { postalCode: "A0P 1L0", cityName: "Nain, NL" }, { postalCode: "P0M 2L0", cityName: "Nairn Centre, ON" }, { postalCode: "P0T 2H0", cityName: "Nakina, ON" }, { postalCode: "V0G 1R0", cityName: "Nakusp, BC" }, { postalCode: "T0A 2N0", cityName: "Namao, AB" }, { postalCode: "T0H 2R0", cityName: "Nampa, AB" }, { postalCode: "J0V 1N0", cityName: "Namur, QC" }, { postalCode: "V9S 1A1", cityName: "Nanaimo Central, BC" }, { postalCode: "V9T 1A1", cityName: "Nanaimo North, BC" }, { postalCode: "V9V 0A1", cityName: "Nanaimo Northwest, BC" }, { postalCode: "V9R 1A1", cityName: "Nanaimo South, BC" }, { postalCode: "X0A 0X0", cityName: "Nanisivik, NU" }, { postalCode: "V9P 9A1", cityName: "Nanoose Bay, BC" }, { postalCode: "G0Y 1G0", cityName: "Nantes, QC" }, { postalCode: "G6B 1A1", cityName: "Nantes, QC" }, { postalCode: "N0A 1L0", cityName: "Nanticoke, ON" }, { postalCode: "T0L 1R0", cityName: "Nanton, AB" }, { postalCode: "E6B 1M4", cityName: "Napadogan, NB" }, { postalCode: "E1N 4E6", cityName: "Napan, NB" }, { postalCode: "K7R 0A1", cityName: "Napanee, ON" }, { postalCode: "J0J 1L0", cityName: "Napierville, QC" }, { postalCode: "R0M 1N0", cityName: "Napinka, MB" }, { postalCode: "B0L 1C0", cityName: "Nappan, NS" }, { postalCode: "V0H 1N0", cityName: "Naramata, BC" }, { postalCode: "R0C 2H0", cityName: "Narcisse, MB" }, { postalCode: "E8G 1A1", cityName: "Nash Creek, NB" }, { postalCode: "E6C 0A2", cityName: "Nashwaak Bridge, NB" }, { postalCode: "E6C 0A1", cityName: "Nashwaak Village, NB" }, { postalCode: "E3B 0N6", cityName: "Nasonworth, NB" }, { postalCode: "E3C 1M2", cityName: "Nasonworth, NB" }, { postalCode: "V0J 3J0", cityName: "Nass Camp, BC" }, { postalCode: "G0G 2E0", cityName: "Natashquan, QC" }, { postalCode: "K0A 1B0", cityName: "National Capital Region (Almonte), ON" }, { postalCode: "P0M 2M0", cityName: "Naughton, ON" }, { postalCode: "E5N 0C1", cityName: "Nauwigewauk, NB" }, { postalCode: "J0Z 2Z0", cityName: "Nedelec, QC" }, { postalCode: "R0J 1H0", cityName: "Neepawa, MB" }, { postalCode: "T0G 1R0", cityName: "Neerlandia, AB" }, { postalCode: "R0B 0Z0", cityName: "Negginan, MB" }, { postalCode: "E9G 0A3", cityName: "Neguac, NB" }, { postalCode: "E9G 0A1", cityName: "Neguac, NB" }, { postalCode: "S0N 1S0", cityName: "Neidpath, SK" }, { postalCode: "S0M 2C0", cityName: "Neilburg, SK" }, { postalCode: "B0C 1N0", cityName: "Neils Harbour, NS" }, { postalCode: "V1L 1A1", cityName: "Nelson, BC" }, { postalCode: "E9C 1V2", cityName: "Nelson Hollow, NB" }, { postalCode: "V0L 1X0", cityName: "Nemaiah Valley, BC" }, { postalCode: "J0Y 3B0", cityName: "Nemiscau, QC" }, { postalCode: "K2J 1A1", cityName: "Nepean (Barrhaven), ON" }, { postalCode: "K2H 1A1", cityName: "Nepean (Bells Corners), ON" }, { postalCode: "K2G 0Z1", cityName: "Nepean (Davidson Heights), ON" }, { postalCode: "K2R 1A4", cityName: "Nepean (Fallowfield Village / Cedarhill Estates / Orchard Estates), ON" }, { postalCode: "K1A 0Y9", cityName: "Nepean (Government offices), ON" }, { postalCode: "E2A 6W7", cityName: "Nepisiguit Falls, NB" }, { postalCode: "E5K 0A5", cityName: "Nerepis, NB" }, { postalCode: "R0K 1P0", cityName: "Nesbitt, MB" }, { postalCode: "L0B 1L0", cityName: "Nestleton Station, ON" }, { postalCode: "P0X 1K0", cityName: "Nestor Falls, ON" }, { postalCode: "T0G 1S0", cityName: "Nestow, AB" }, { postalCode: "S0L 2M0", cityName: "Netherhill, SK" }, { postalCode: "S0A 2T0", cityName: "Neudorf, SK" }, { postalCode: "N0G 2M0", cityName: "Neustadt, ON" }, { postalCode: "G0A 2R0", cityName: "Neuville, QC" }, { postalCode: "S0N 1T0", cityName: "Neville, SK" }, { postalCode: "T0C 2E0", cityName: "Nevis, AB" }, { postalCode: "E4B 3T1", cityName: "New Avon, NB" }, { postalCode: "E2A 5P4", cityName: "New Bandon Gloucester Co, NB" }, { postalCode: "R0A 1C0", cityName: "New Bothwell, MB" }, { postalCode: "T0J 2G0", cityName: "New Brigden, AB" }, { postalCode: "B1X 1V8", cityName: "New Campbellton, NS" }, { postalCode: "E4Z 5Z5", cityName: "New Canaan, NB" }, { postalCode: "B4V 4V5", cityName: "New Canada, NS" }, { postalCode: "G0C 1Z0", cityName: "New Carlisle, QC" }, { postalCode: "A0B 2N0", cityName: "New Chelsea, NL" }, { postalCode: "T0K 1P0", cityName: "New Dayton, AB" }, { postalCode: "E7G 0A1", cityName: "New Denmark, NB" }, { postalCode: "V0G 1S0", cityName: "New Denver, BC" }, { postalCode: "N0B 2E0", cityName: "New Dundee, ON" }, { postalCode: "E4B 3S6", cityName: "New England Settlement, NB" }, { postalCode: "B0R 1E0", cityName: "New Germany, NS" }, { postalCode: "B2H 1A1", cityName: "New Glasgow, NS" }, { postalCode: "C0A 1N0", cityName: "New Glasgow, PEI" }, { postalCode: "C0A 1N0", cityName: "New Glasgow, PEI" }, { postalCode: "N3A 0A1", cityName: "New Hamburg, ON" }, { postalCode: "A0B 2P0", cityName: "New Harbour TB, NL" }, { postalCode: "B1X 1T1", cityName: "New Harris, NS" }, { postalCode: "B0C 1P0", cityName: "New Haven, NS" }, { postalCode: "V0J 2J0", cityName: "New Hazelton, BC" }, { postalCode: "E4H 1B9", cityName: "New Horton, NB" }, { postalCode: "E9G 0A9", cityName: "New Jersey, NB" }, { postalCode: "E4E 0A2", cityName: "New Line, NB" }, { postalCode: "P0J 1P0", cityName: "New Liskeard, ON" }, { postalCode: "L0M 1N0", cityName: "New Lowell, ON" }, { postalCode: "E6K 0A3", cityName: "New Market, NB" }, { postalCode: "E3C 1B4", cityName: "New Maryland, NB" }, { postalCode: "A0B 2R0", cityName: "New Melbourne, NL" }, { postalCode: "E8G 1C8", cityName: "New Mills, NB" }, { postalCode: "B4N 0A1", cityName: "New Minas, NS" }, { postalCode: "T0B 3L0", cityName: "New Norway, AB" }, { postalCode: "A0B 2S0", cityName: "New Perlican, NL" }, { postalCode: "G0C 1C0", cityName: "New Richmond, QC" }, { postalCode: "E5J 1E9", cityName: "New River Beach, NB" }, { postalCode: "B0J 2M0", cityName: "New Ross, NS" }, { postalCode: "T0B 3M0", cityName: "New Sarepta, AB" }, { postalCode: "E1G 2Z9", cityName: "New Scotland, NB" }, { postalCode: "B1H 4Y3", cityName: "New Victoria, NS" }, { postalCode: "B1H 5H3", cityName: "New Waterford, NS" }, { postalCode: "B1H 0A2", cityName: "New Waterford, NS" }, { postalCode: "V3L 1A1", cityName: "New Westminster Northeast, BC" }, { postalCode: "V3M 0A5", cityName: "New Westminster Southwest (Includes Annacis Island), BC" }, { postalCode: "E4B 1A5", cityName: "New Zion, NB" }, { postalCode: "K0G 1P0", cityName: "Newboro, ON" }, { postalCode: "E7N 1H8", cityName: "Newbridge, NB" }, { postalCode: "T0A 2P0", cityName: "Newbrook, AB" }, { postalCode: "E7N 1T3", cityName: "Newburg, NB" }, { postalCode: "K0K 2S0", cityName: "Newburgh, ON" }, { postalCode: "N0L 1Z0", cityName: "Newbury, ON" }, { postalCode: "E4B 0A8", cityName: "Newcastle Centre, NB" }, { postalCode: "E4B 2H8", cityName: "Newcastle Creek, NB" }, { postalCode: "B4V 7V5", cityName: "Newcombville, NS" }, { postalCode: "R0J 1J0", cityName: "Newdale, MB" }, { postalCode: "K0C 1Y0", cityName: "Newington, ON" }, { postalCode: "A0C 2A0", cityName: "Newmans Cove, NL" }, { postalCode: "L3Y 9C1", cityName: "Newmarket Northeast, ON" }, { postalCode: "L3X 3L4", cityName: "Newmarket Southwest, ON" }, { postalCode: "B0N 2A0", cityName: "Newport, NS" }, { postalCode: "G0C 2A0", cityName: "Newport, QC" }, { postalCode: "B0N 2B0", cityName: "Newport Station, NS" }, { postalCode: "N0K 1R0", cityName: "Newton, ON" }, { postalCode: "R0H 0X0", cityName: "Newton Siding, MB" }, { postalCode: "L0A 1J0", cityName: "Newtonville, ON" }, { postalCode: "A0G 3L0", cityName: "Newtown, NL" }, { postalCode: "B9A 1J2", cityName: "Newtown, NS" }, { postalCode: "E4G 1L3", cityName: "Newtown, NB" }, { postalCode: "L2E 7M7", cityName: "Niagara Falls Central, ON" }, { postalCode: "L2J 4C9", cityName: "Niagara Falls North, ON" }, { postalCode: "L2G 7W6", cityName: "Niagara Falls Southeast, ON" }, { postalCode: "L2H 3K3", cityName: "Niagara Falls West, ON" }, { postalCode: "L0S 1J0", cityName: "Niagara on the Lake, ON" }, { postalCode: "L0S 1A0", cityName: "Niagara Regional Municipality (Fonthill), ON" }, { postalCode: "E8K 0B1", cityName: "Nicholas Denys, NB" }, { postalCode: "J3T 2B7", cityName: "Nicolet, QC" }, { postalCode: "E7G 3A9", cityName: "Nictau, NB" }, { postalCode: "E8K 3L8", cityName: "Nigadoo, NB" }, { postalCode: "V0L 1R0", cityName: "Nimpo Lake, BC" }, { postalCode: "B2S 0B7", cityName: "Nine Mile River, NS" }, { postalCode: "R0K 1R0", cityName: "Ninette, MB" }, { postalCode: "R0K 1S0", cityName: "Ninga, MB" }, { postalCode: "S0E 1E0", cityName: "Nipawin, SK" }, { postalCode: "P0T 2J0", cityName: "Nipigon, ON" }, { postalCode: "P0H 1W0", cityName: "Nipissing, ON" }, { postalCode: "P0A 1A0", cityName: "Nipissing Central (Burk\'s Falls), ON" }, { postalCode: "P0H 1A0", cityName: "Nipissing North (Callander), ON" }, { postalCode: "P0B 1A0", cityName: "Nipissing South (Utterson), ON" }, { postalCode: "A0K 3T0", cityName: "Nippers Harbour, NL" }, { postalCode: "T9E 0A4", cityName: "Nisku, AB" }, { postalCode: "T0E 1S0", cityName: "Niton Junction, AB" }, { postalCode: "R0A 0A1", cityName: "Niverville, MB" }, { postalCode: "P0G 1G0", cityName: "Nobel, ON" }, { postalCode: "T0L 1S0", cityName: "Nobleford, AB" }, { postalCode: "L0G 1N0", cityName: "Nobleton, ON" }, { postalCode: "B0N 2C0", cityName: "Noel, NS" }, { postalCode: "A0N 1S0", cityName: "Noels Pond, NL" }, { postalCode: "P0M 2N0", cityName: "Noelville, ON" }, { postalCode: "E4Y 2J9", cityName: "Noinville, NB" }, { postalCode: "S0G 3R0", cityName: "Nokomis, SK" }, { postalCode: "P0T 2K0", cityName: "Nolalu, ON" }, { postalCode: "J0W 1R0", cityName: "Nominingue, QC" }, { postalCode: "E3A 0B2", cityName: "Noonan, NB" }, { postalCode: "G0P 1B0", cityName: "Norbertville, QC" }, { postalCode: "T0M 2H0", cityName: "Nordegg, AB" }, { postalCode: "T4S 1S5", cityName: "Norglenwold, AB" }, { postalCode: "K0M 2L0", cityName: "Norland, ON" }, { postalCode: "X0E 0V0", cityName: "Norman Wells, NT" }, { postalCode: "G8M 0A3", cityName: "Normandin, QC" }, { postalCode: "A0B 2T0", cityName: "Normans Cove, NL" }, { postalCode: "J0Z 3A0", cityName: "Normetal, QC" }, { postalCode: "S0A 2V0", cityName: "Norquay, SK" }, { postalCode: "A0G 3M0", cityName: "Norris Arm, NL" }, { postalCode: "A0G 3N0", cityName: "Norris Arm Northside, NL" }, { postalCode: "A0K 3V0", cityName: "Norris Point, NL" }, { postalCode: "K0G 1R0", cityName: "North Augusta, ON" }, { postalCode: "S9A 4B4", cityName: "North Battleford, SK" }, { postalCode: "P1B 9V6", cityName: "North Bay Central, ON" }, { postalCode: "P1C 1N7", cityName: "North Bay North, ON" }, { postalCode: "P1A 4H9", cityName: "North Bay South, ON" }, { postalCode: "N0P 1Y0", cityName: "North Buxton, ON" }, { postalCode: "T0G 1M0", cityName: "North Central Alberta (Slave Lake), AB" }, { postalCode: "V0P 1K0", cityName: "North Central Island and Bute Inlet Region (Gold River), BC" }, { postalCode: "P0J 1R0", cityName: "North Cobalt, ON" }, { postalCode: "B0E 2H0", cityName: "North East Margaree, NS" }, { postalCode: "B0W 2P0", cityName: "North East Point, NS" }, { postalCode: "E4A 1E7", cityName: "North Forks, NB" }, { postalCode: "K0A 2T0", cityName: "North Gower, ON" }, { postalCode: "A0E 2N0", cityName: "North Harbour PB, NL" }, { postalCode: "A0B 2V0", cityName: "North Harbour SMB, NL" }, { postalCode: "J0B 2C0", cityName: "North Hatley, QC" }, { postalCode: "R0C 0N0", cityName: "North Interlake (Stonewall), MB" }, { postalCode: "V0N 1A0", cityName: "North Island, Sunshine Coast, and Southern Gulf Islands (Whistler), BC" }, { postalCode: "E6H 0A3", cityName: "North Lake, NB" }, { postalCode: "K0C 1Z0", cityName: "North Lancaster, ON" }, { postalCode: "L0J 1C0", cityName: "North Peel Regional Municipality (Kleinburg), ON" }, { postalCode: "V0C 2A0", cityName: "North Pine, BC" }, { postalCode: "S0C 1W0", cityName: "North Portal, SK" }, { postalCode: "B2Z 1A1", cityName: "North Preston, NS" }, { postalCode: "C0A 1X0", cityName: "North Rustico, PEI" }, { postalCode: "C0A 1X0", cityName: "North Rustico, PEI" }, { postalCode: "E8E 2A5", cityName: "North Shannonvale, NB" }, { postalCode: "P0V 2G0", cityName: "North Spirit Lake, ON" }, { postalCode: "T0H 2T0", cityName: "North Star, AB" }, { postalCode: "B1V 1A8", cityName: "North Sydney North, NS" }, { postalCode: "B2A 0A2", cityName: "North Sydney South Central, NS" }, { postalCode: "E6B 1R1", cityName: "North Tay, NB" }, { postalCode: "E2A 4Y6", cityName: "North Tetagouche, NB" }, { postalCode: "A0A 3C0", cityName: "North Valley, NL" }, { postalCode: "V7J 1A1", cityName: "North Vancouver East Central, BC" }, { postalCode: "V7H 0A1", cityName: "North Vancouver Inner East, BC" }, { postalCode: "V7K 1A1", cityName: "North Vancouver North Central, BC" }, { postalCode: "V7R 1A1", cityName: "North Vancouver Northwest, BC" }, { postalCode: "V7N 0A1", cityName: "North Vancouver Northwest Central, BC" }, { postalCode: "V7G 1A1", cityName: "North Vancouver Outer East, BC" }, { postalCode: "V7L 0A1", cityName: "North Vancouver South Central, BC" }, { postalCode: "V7P 1A1", cityName: "North Vancouver Southwest, BC" }, { postalCode: "V7M 0A2", cityName: "North Vancouver Southwest Central, BC" }, { postalCode: "B0C 1C0", cityName: "North Victoria County (Dingwall), NS" }, { postalCode: "E7G 2J7", cityName: "North View, NB" }, { postalCode: "B2A 3X3", cityName: "North West ARM, NS" }, { postalCode: "A0E 2P0", cityName: "North West Brook, NL" }, { postalCode: "A0P 1M0", cityName: "North West River, NL" }, { postalCode: "S0C 1X0", cityName: "North Weyburn, SK" }, { postalCode: "C0A 1Y0", cityName: "North Wiltshire, PEI" }, { postalCode: "C0A 1Y0", cityName: "North Wiltshire, PEI" }, { postalCode: "M1L 4R9", cityName: "North York, ON" }, { postalCode: "M4G 3C8", cityName: "North York, ON" }, { postalCode: "M4P 1T2", cityName: "North York, ON" }, { postalCode: "M4R 1K5", cityName: "North York, ON" }, { postalCode: "M5N 1P1", cityName: "North York, ON" }, { postalCode: "M6B 1M9", cityName: "North York, ON" }, { postalCode: "M6E 4S7", cityName: "North York, ON" }, { postalCode: "M6M 0A1", cityName: "North York, ON" }, { postalCode: "M7A 2C5", cityName: "North York, ON" }, { postalCode: "M9N 0A2", cityName: "North York, ON" }, { postalCode: "M3H 6C5", cityName: "North York (Armour Heights / Wilson Heights / Downsview North), ON" }, { postalCode: "M2K 3E7", cityName: "North York (Bayview Village), ON" }, { postalCode: "M5M 4M4", cityName: "North York (Bedford Park / Lawrence Park West / Lawrence Manor East), ON" }, { postalCode: "M2J 1N5", cityName: "North York (Fairview / Henry Farm / Oriole), ON" }, { postalCode: "M6B 4N3", cityName: "North York (Glencairn), ON" }, { postalCode: "M2H 3N6", cityName: "North York (Hillcrest Village), ON" }, { postalCode: "M9L 2L6", cityName: "North York (Humber Summit), ON" }, { postalCode: "M9M 3A7", cityName: "North York (Humberlea / Emery), ON" }, { postalCode: "M3N 2T7", cityName: "North York (Jane and Finch), ON" }, { postalCode: "M6A 3E8", cityName: "North York (Lawrence Manor / Lawrence Heights), ON" }, { postalCode: "M6L 3G5", cityName: "North York (North Park / Maple Leaf Park / Upwood Park), ON" }, { postalCode: "M3J 3L4", cityName: "North York (Northwood Park / York University), ON" }, { postalCode: "M4A 2W3", cityName: "North York (Sweeney Park / Wigmore Park), ON" }, { postalCode: "M3A 3R4", cityName: "North York (York Heights / Victoria Village / Parkway East), ON" }, { postalCode: "M2L 2Y2", cityName: "North York (York Mills / Silver Hills), ON" }, { postalCode: "M2P 2H2", cityName: "North York (York Mills West), ON" }, { postalCode: "A0R 1A0", cityName: "North/Western Labrador (Churchill Falls), NL" }, { postalCode: "E7N 0A1", cityName: "Northampton, NB" }, { postalCode: "K0H 2G0", cityName: "Northbrook, ON" }, { postalCode: "A0G 1A0", cityName: "Northeast Newfoundland (Lewisporte), NL" }, { postalCode: "T0P 1B0", cityName: "Northeastern Alberta (Fort Chipewyan), AB" }, { postalCode: "S0P 0A0", cityName: "Northeastern Saskatchewan (Creighton), SK" }, { postalCode: "A0A 3B0", cityName: "Northern Bay, NL" }, { postalCode: "V0C 1C0", cityName: "Northern British Columbia (Fort Nelson), BC" }, { postalCode: "E5V 1G6", cityName: "Northern Harbour, NB" }, { postalCode: "R0B 1A0", cityName: "Northern Manitoba (Norway House), MB" }, { postalCode: "A0J 1B0", cityName: "Northern Newfoundland (Springdale), NL" }, { postalCode: "S0J 0C0", cityName: "Northern Saskatchewan (La Ronge), SK" }, { postalCode: "S0C 1V0", cityName: "Northgate, SK" }, { postalCode: "B0L 1E0", cityName: "Northport, NS" }, { postalCode: "B1J 0A3", cityName: "Northside East Bay, NS" }, { postalCode: "A0K 1A0", cityName: "Northwest Newfoundland/Eastern Labrador (Mary\'s Harbour), NL" }, { postalCode: "T0H 0E0", cityName: "Northwestern Alberta (High Level), AB" }, { postalCode: "P0V 1T0", cityName: "Northwestern Ontario (Red Lake), ON" }, { postalCode: "S0M 0T0", cityName: "Northwestern Saskatchewan (Battleford), SK" }, { postalCode: "E5T 1X5", cityName: "Norton, NB" }, { postalCode: "E6E 1N8", cityName: "Nortondale, NB" }, { postalCode: "L0P 1K0", cityName: "Norval, ON" }, { postalCode: "R0B 1B0", cityName: "Norway House, MB" }, { postalCode: "N0J 1P0", cityName: "Norwich, ON" }, { postalCode: "K0L 2V0", cityName: "Norwood, ON" }, { postalCode: "T0H 2V0", cityName: "Notikewin, AB" }, { postalCode: "E7E 0A1", cityName: "Notre Dame de Lourdes, NB" }, { postalCode: "R0G 1M0", cityName: "Notre Dame de Lourdes, MB" }, { postalCode: "H4A 3V4", cityName: "Notre-Dame-de-Gr&ocirc;ce Northeast, QC" }, { postalCode: "H4B 3A5", cityName: "Notre-Dame-de-Gr&ocirc;ce Southwest, QC" }, { postalCode: "G0P 1C0", cityName: "Notre-Dame-de-Ham, QC" }, { postalCode: "J7V 0J9", cityName: "Notre-Dame-de-l\'Ile-Perrot, QC" }, { postalCode: "J0T 2A0", cityName: "Notre-Dame-De-La-Merci, QC" }, { postalCode: "J0V 1P0", cityName: "Notre-Dame-de-la-Paix, QC" }, { postalCode: "J0X 2L0", cityName: "Notre-Dame-de-la-Salette, QC" }, { postalCode: "G0W 1B0", cityName: "Notre-Dame-de-Lorette, QC" }, { postalCode: "G0X 1W0", cityName: "Notre-Dame-de-Montauban, QC" }, { postalCode: "J0W 1S0", cityName: "Notre-Dame-De-Pontmain, QC" }, { postalCode: "J0J 1M0", cityName: "Notre-Dame-de-Stanbridge, QC" }, { postalCode: "J0B 2E0", cityName: "Notre-Dame-des-Bois, QC" }, { postalCode: "E8R 1K7", cityName: "Notre-Dame-des-Erables, NB" }, { postalCode: "G0M 1K0", cityName: "Notre-Dame-des-Pins, QC" }, { postalCode: "J6E 0B7", cityName: "Notre-Dame-des-Prairies, QC" }, { postalCode: "G0L 1K0", cityName: "Notre-Dame-Des-Sept-Douleurs, QC" }, { postalCode: "G0L 1X0", cityName: "Notre-Dame-du-Lac, QC" }, { postalCode: "J0X 2M0", cityName: "Notre-Dame-du-Laus, QC" }, { postalCode: "G0X 3J0", cityName: "Notre-Dame-du-Mont-Carmel, QC" }, { postalCode: "J0Z 3B0", cityName: "Notre-Dame-du-Nord, QC" }, { postalCode: "G0L 1Y0", cityName: "Notre-Dame-du-Portage, QC" }, { postalCode: "G0R 2H0", cityName: "Notre-Dame-du-Rosaire, QC" }, { postalCode: "L0M 1P0", cityName: "Nottawa, ON" }, { postalCode: "G0C 2E0", cityName: "Nouvelle, QC" }, { postalCode: "G0C 2G0", cityName: "Nouvelle-Ouest, QC" }, { postalCode: "P0A 1R0", cityName: "Novar, ON" }, { postalCode: "J0M 1A0", cityName: "Nunavik (Kuujjuaq), QC" }, { postalCode: "S0A 2W0", cityName: "Nut Mountain, SK" }, { postalCode: "R0E 1K0", cityName: "O\'Hanly, MB" }, { postalCode: "C0B 1V0", cityName: "O\'Leary, PEI" }, { postalCode: "E3L 0B3", cityName: "Oak Bay, NB" }, { postalCode: "V8R 1A2", cityName: "Oak Bay North, BC" }, { postalCode: "V8S 1A1", cityName: "Oak Bay South, BC" }, { postalCode: "R0G 1N0", cityName: "Oak Bluff, MB" }, { postalCode: "E3L 3S7", cityName: "Oak Haven, NB" }, { postalCode: "E5A 1A5", cityName: "Oak Hill, NB" }, { postalCode: "R0M 1P0", cityName: "Oak Lake, MB" }, { postalCode: "E7N 2S1", cityName: "Oak Mountain, NB" }, { postalCode: "E1V 7H9", cityName: "Oak Point, NB" }, { postalCode: "R0C 2J0", cityName: "Oak Point, MB" }, { postalCode: "E5M 1T8", cityName: "Oak Point Kings Co, NB" }, { postalCode: "R0K 1T0", cityName: "Oak River, MB" }, { postalCode: "R0E 1J0", cityName: "Oakbank, MB" }, { postalCode: "R0J 1L0", cityName: "Oakburn, MB" }, { postalCode: "B2T 0A3", cityName: "Oakfield, NS" }, { postalCode: "B4V 0B7", cityName: "Oakhill, NS" }, { postalCode: "E7L 2V1", cityName: "Oakland, NB" }, { postalCode: "N0E 1L0", cityName: "Oakland, ON" }, { postalCode: "R0C 2K0", cityName: "Oakview, MB" }, { postalCode: "E7M 5P7", cityName: "Oakville, NB" }, { postalCode: "R0H 0Y0", cityName: "Oakville, MB" }, { postalCode: "L6K 1A2", cityName: "Oakville East, ON" }, { postalCode: "L6H 6M1", cityName: "Oakville North, ON" }, { postalCode: "L6J 7V2", cityName: "Oakville Northeast, ON" }, { postalCode: "L6L 6N1", cityName: "Oakville South, ON" }, { postalCode: "L6M 5J6", cityName: "Oakville West, ON" }, { postalCode: "K0M 2M0", cityName: "Oakwood, ON" }, { postalCode: "P0M 2P0", cityName: "Oba, ON" }, { postalCode: "G0W 3B0", cityName: "Obedjiwan, QC" }, { postalCode: "V0T 1P0", cityName: "Ocean Falls, BC" }, { postalCode: "A0A 3E0", cityName: "Ochre Pit Cove, NL" }, { postalCode: "R0L 1K0", cityName: "Ochre River, MB" }, { postalCode: "J0G 1H0", cityName: "Odanak, QC" }, { postalCode: "E7G 2L1", cityName: "Odell, NB" }, { postalCode: "S0G 3S0", cityName: "Odessa, SK" }, { postalCode: "J0B 3E3", cityName: "Ogden, QC" }, { postalCode: "S0C 1Y0", cityName: "Ogema, SK" }, { postalCode: "P0T 2L0", cityName: "Ogoki, ON" }, { postalCode: "T0B 3P0", cityName: "Ohaton, AB" }, { postalCode: "N0A 1M0", cityName: "Ohsweken, ON" }, { postalCode: "N0N 1N0", cityName: "Oil City, ON" }, { postalCode: "N0N 1P0", cityName: "Oil Springs, ON" }, { postalCode: "J0N 1E0", cityName: "Oka, QC" }, { postalCode: "V4V 2H2", cityName: "Okanagan Centre, BC" }, { postalCode: "V0H 1R0", cityName: "Okanagan Falls, BC" }, { postalCode: "S0A 2X0", cityName: "Okla, SK" }, { postalCode: "T1S 0A6", cityName: "Okotoks, AB" }, { postalCode: "E4B 2H5", cityName: "Old Avon, NB" }, { postalCode: "Y0B 1N0", cityName: "Old Crow, YT" }, { postalCode: "G0G 2G0", cityName: "Old Fort Bay, QC" }, { postalCode: "H2Y 4B8", cityName: "Old Montreal, QC" }, { postalCode: "A0A 3G0", cityName: "Old Perlican, NL" }, { postalCode: "E3L 0A2", cityName: "Old Ridge, NB" }, { postalCode: "A0B 2W0", cityName: "Old Shop, NL" }, { postalCode: "N0R 1L0", cityName: "Oldcastle, ON" }, { postalCode: "B2T 0G2", cityName: "Oldham, NS" }, { postalCode: "T4H 1A1", cityName: "Olds, AB" }, { postalCode: "R0J 1K0", cityName: "Olha, MB" }, { postalCode: "V0H 1T0", cityName: "Oliver, BC" }, { postalCode: "K0L 2W0", cityName: "Omemee, ON" }, { postalCode: "V0J 1A0", cityName: "Omineca and Yellowhead (Smithers), BC" }, { postalCode: "K0H 2J0", cityName: "Ompah, ON" }, { postalCode: "R0J 1N0", cityName: "Onanole, MB" }, { postalCode: "P0M 2R0", cityName: "Onaping, ON" }, { postalCode: "T0K 1R0", cityName: "Onefour, AB" }, { postalCode: "S0M 2E0", cityName: "Onion Lake, SK" }, { postalCode: "T0E 1V0", cityName: "Onoway, AB" }, { postalCode: "L0G 1M0", cityName: "Ontario Centre (Queensville), ON" }, { postalCode: "V0V 1E0", cityName: "Oona River, BC" }, { postalCode: "T0A 2R0", cityName: "Opal, AB" }, { postalCode: "P0L 1Z0", cityName: "Opasatika, ON" }, { postalCode: "R0B 2J0", cityName: "Opaskwayak, MB" }, { postalCode: "A0C 2B0", cityName: "Open Hall, NL" }, { postalCode: "E5R 0A1", cityName: "Orange Hill, NB" }, { postalCode: "B0E 2K0", cityName: "Orangedale, NS" }, { postalCode: "L9V 1A2", cityName: "Orangeville North, ON" }, { postalCode: "L9W 5B5", cityName: "Orangeville South, ON" }, { postalCode: "J1X 0A2", cityName: "Orford, QC" }, { postalCode: "L3V 8B6", cityName: "Orillia, ON" }, { postalCode: "T0K 1S0", cityName: "Orion, AB" }, { postalCode: "S0N 1V0", cityName: "Orkney, SK" }, { postalCode: "K1W 0A1", cityName: "Orleans, ON" }, { postalCode: "K4A 0A1", cityName: "Orleans (Fallingbrook / Ottawa), ON" }, { postalCode: "K1E 1A4", cityName: "Orleans (Queenswood / Ottawa), ON" }, { postalCode: "S0H 3H0", cityName: "Ormiston, SK" }, { postalCode: "J0S 1K0", cityName: "Ormstown, QC" }, { postalCode: "L0L 2X0", cityName: "Oro, ON" }, { postalCode: "L0L 2E0", cityName: "Oro Station, ON" }, { postalCode: "E2V 1A1", cityName: "Oromocto, NB" }, { postalCode: "L0B 1M0", cityName: "Orono, ON" }, { postalCode: "L0N 1N0", cityName: "Orton, ON" }, { postalCode: "S0G 3T0", cityName: "Osage, SK" }, { postalCode: "E4H 3T9", cityName: "Osborne Corner, NB" }, { postalCode: "B0T 1R0", cityName: "Osborne Harbour, NS" }, { postalCode: "K0A 2W0", cityName: "Osgoode, ON" }, { postalCode: "L1G 1A1", cityName: "Oshawa Central, ON" }, { postalCode: "L1K 0A1", cityName: "Oshawa East, ON" }, { postalCode: "L1L 1A1", cityName: "Oshawa North, ON" }, { postalCode: "L1H 1A1", cityName: "Oshawa Southeast, ON" }, { postalCode: "L1J 1A1", cityName: "Oshawa Southwest, ON" }, { postalCode: "S0K 3A0", cityName: "Osler, SK" }, { postalCode: "P0V 2H0", cityName: "Osnaburgh House, ON" }, { postalCode: "V0H 1V0", cityName: "Osoyoos, BC" }, { postalCode: "K1H 1B2", cityName: "Ottawa (Alta Vista), ON" }, { postalCode: "K1L 1A6", cityName: "Ottawa (Beechwood), ON" }, { postalCode: "K2B 0A2", cityName: "Ottawa (Britannia / Pinecrest), ON" }, { postalCode: "K1T 0C6", cityName: "Ottawa (Cahill Drive / Hunt Club Road), ON" }, { postalCode: "K1Y 0B4", cityName: "Ottawa (Central West / Parkdale / Wellington / Gladstone), ON" }, { postalCode: "K2P 0A1", cityName: "Ottawa (Centre Town), ON" }, { postalCode: "K2G 6B2", cityName: "Ottawa (Clyde / Baseline), ON" }, { postalCode: "K1B 0A2", cityName: "Ottawa (East), ON" }, { postalCode: "K2A 0P9", cityName: "Ottawa (Highland Park / Carlingwood), ON" }, { postalCode: "K1N 8V2", cityName: "Ottawa (Lower Town / Sandy Hill / University of Ottawa), ON" }, { postalCode: "K1J 0A1", cityName: "Ottawa (Montreal Road), ON" }, { postalCode: "K2H 1C2", cityName: "Ottawa (Morrison Dr), ON" }, { postalCode: "K1K 0S5", cityName: "Ottawa (Overbrook), ON" }, { postalCode: "K1P 1A1", cityName: "Ottawa (Parliament Hill), ON" }, { postalCode: "K2C 0B8", cityName: "Ottawa (Queensway / Copeland / Carlington / Carleton Heights), ON" }, { postalCode: "K1V 0G3", cityName: "Ottawa (Riverside Park / Hunt Club West / Riverside South / YOW), ON" }, { postalCode: "K1G 0E2", cityName: "Ottawa (Riverview / Hawthorne), ON" }, { postalCode: "K1M 0G2", cityName: "Ottawa (Rockcliffe Park / New Edinburgh), ON" }, { postalCode: "K1S 0A2", cityName: "Ottawa (The Glebe / Ottawa South / Ottawa East), ON" }, { postalCode: "K1L 5C2", cityName: "Ottawa (Vanier), ON" }, { postalCode: "K1R 0A2", cityName: "Ottawa (West Downtown area / Centre Town), ON" }, { postalCode: "K1Z 1A1", cityName: "Ottawa (Westboro), ON" }, { postalCode: "B2C 1J1", cityName: "Ottawa Brook, NS" }, { postalCode: "K2E 6P8", cityName: "Ottawa West (Falaise Road), ON" }, { postalCode: "K2K 2W6", cityName: "Ottawa West (Kanata / Shirley Blvd), ON" }, { postalCode: "K2L 4G1", cityName: "Ottawa West (Kanata/ Stittsville / Robertson Road), ON" }, { postalCode: "K2C 3G2", cityName: "Ottawa West (Merivale), ON" }, { postalCode: "K2B 0A3", cityName: "Ottawa West (Nepean / Carling), ON" }, { postalCode: "K2E 1A3", cityName: "Ottawa West (Roydon Place / Colonnade Road), ON" }, { postalCode: "E4M 3V5", cityName: "Otter Creek, NB" }, { postalCode: "J0X 2P0", cityName: "Otter Lake, QC" }, { postalCode: "J3G 4S6", cityName: "Otterburn Park, QC" }, { postalCode: "R0A 1G0", cityName: "Otterburne, MB" }, { postalCode: "N0J 1R0", cityName: "Otterville, ON" }, { postalCode: "G0W 3C0", cityName: "Ouje-Bougoumou, QC" }, { postalCode: "S0C 1Z0", cityName: "Oungre, SK" }, { postalCode: "J0W 1A0", cityName: "Outaouais-Nord (Ferme-Neuve), QC" }, { postalCode: "J0X 1G0", cityName: "Outaouais-Sud (Thurso), QC" }, { postalCode: "A1K 4A1", cityName: "Outer Cove, NL" }, { postalCode: "X0A 0E0", cityName: "Outer Nunavut (Iqaluit), NU" }, { postalCode: "S0L 2N0", cityName: "Outlook, SK" }, { postalCode: "H2V 4V3", cityName: "Outremont, QC" }, { postalCode: "H3S 1A4", cityName: "Outremont, QC" }, { postalCode: "H3T 1A1", cityName: "Outremont, QC" }, { postalCode: "R0A 1H0", cityName: "Overstoneville, MB" }, { postalCode: "N4K 7A2", cityName: "Owen Sound, ON" }, { postalCode: "E7G 2J5", cityName: "Oxbow, NB" }, { postalCode: "S0C 2B0", cityName: "Oxbow, SK" }, { postalCode: "P0V 2J0", cityName: "Oxdrift, ON" }, { postalCode: "B0M 1P0", cityName: "Oxford, NS" }, { postalCode: "N0J 1A0", cityName: "Oxford (Norwich), ON" }, { postalCode: "R0B 1C0", cityName: "Oxford House, MB" }, { postalCode: "B0M 1R0", cityName: "Oxford Junction, NS" }, { postalCode: "K0G 1S0", cityName: "Oxford Mills, ON" }, { postalCode: "K0G 1T0", cityName: "Oxford Station, ON" }, { postalCode: "V4V 1Z5", cityName: "Oyama, BC" }, { postalCode: "T0J 2J0", cityName: "Oyen, AB" }, { postalCode: "E2A 6T3", cityName: "Pabineau Falls, NB" }, { postalCode: "E2A 7M2", cityName: "Pabineau First Nation, NB" }, { postalCode: "G0C 2H0", cityName: "Pabos, QC" }, { postalCode: "G0C 2J0", cityName: "Pabos Mills, QC" }, { postalCode: "G0L 1Z0", cityName: "Packington, QC" }, { postalCode: "A0K 3X0", cityName: "Pacquet, NL" }, { postalCode: "T0H 2W0", cityName: "Paddle Prairie, AB" }, { postalCode: "S0J 1Z0", cityName: "Paddockwood, SK" }, { postalCode: "G0J 1X0", cityName: "Padoue, QC" }, { postalCode: "N0P 1Z0", cityName: "Pain Court, ON" }, { postalCode: "N0G 2N0", cityName: "Paisley, ON" }, { postalCode: "K0A 2X0", cityName: "Pakenham, ON" }, { postalCode: "S0E 1G0", cityName: "Pakwaw Lake, SK" }, { postalCode: "L0N 1P0", cityName: "Palgrave, ON" }, { postalCode: "L7E 0C3", cityName: "Palgrave, ON" }, { postalCode: "J0Z 3C0", cityName: "Palmarolle, QC" }, { postalCode: "S0H 3J0", cityName: "Palmer, SK" }, { postalCode: "K0J 2E0", cityName: "Palmer Rapids, ON" }, { postalCode: "N0G 2P0", cityName: "Palmerston, ON" }, { postalCode: "S0N 1W0", cityName: "Pambrun, SK" }, { postalCode: "S0C 2C0", cityName: "Pangman, SK" }, { postalCode: "X0A 0R0", cityName: "Pangnirtung, NU" }, { postalCode: "V0A 1T0", cityName: "Panorama, BC" }, { postalCode: "R0A 1J0", cityName: "Pansy, MB" }, { postalCode: "J0V 1R0", cityName: "Papineauville, QC" }, { postalCode: "E8R 2C7", cityName: "Paquetville, NB" }, { postalCode: "E8R 0A2", cityName: "Paquetville, NB" }, { postalCode: "A1L 1A3", cityName: "Paradise, NL" }, { postalCode: "B0S 1R0", cityName: "Paradise, NS" }, { postalCode: "S0M 2G0", cityName: "Paradise Hill, SK" }, { postalCode: "A0K 3Y0", cityName: "Paradise River, NL" }, { postalCode: "T0B 3R0", cityName: "Paradise Valley, AB" }, { postalCode: "H3N 2Z2", cityName: "Parc-Extension, QC" }, { postalCode: "G0X 3P0", cityName: "Parent, QC" }, { postalCode: "K0H 2K0", cityName: "Parham, ON" }, { postalCode: "N3L 4H4", cityName: "Paris, ON" }, { postalCode: "G0S 1X0", cityName: "Parisville, QC" }, { postalCode: "S0H 3K0", cityName: "Parkbeg, SK" }, { postalCode: "E6A 1B5", cityName: "Parker Ridge, NB" }, { postalCode: "E1V 5E3", cityName: "Parker Road, NB" }, { postalCode: "S0A 2Y0", cityName: "Parkerview, SK" }, { postalCode: "N0M 2K0", cityName: "Parkhill, ON" }, { postalCode: "E4J 1P9", cityName: "Parkindale, NB" }, { postalCode: "E4Z 0C2", cityName: "Parkindale, NB" }, { postalCode: "T0L 1V0", cityName: "Parkland, AB" }, { postalCode: "S0C 2E0", cityName: "Parkman, SK" }, { postalCode: "S0J 2A0", cityName: "Parkside, SK" }, { postalCode: "V9P 0A9", cityName: "Parksville, BC" }, { postalCode: "E4E 4Y4", cityName: "Parlee Brook, NB" }, { postalCode: "E5P 3X6", cityName: "Parleeville, NB" }, { postalCode: "B0M 1S0", cityName: "Parrsboro, NS" }, { postalCode: "S0H 3L0", cityName: "Parry, SK" }, { postalCode: "P2A 3C4", cityName: "Parry Sound, ON" }, { postalCode: "P0C 1A0", cityName: "Parry Sound Mid-Shore (Bala), ON" }, { postalCode: "P0G 1A0", cityName: "Parry Sound North Shore (Nobel), ON" }, { postalCode: "P0E 1E0", cityName: "Parry Sound South Shore (Kilworthy), ON" }, { postalCode: "V0A 1L0", cityName: "Parson, BC" }, { postalCode: "A0K 3Z0", cityName: "Parsons Pond, NL" }, { postalCode: "A0L 1K0", cityName: "Pasadena, NL" }, { postalCode: "G0C 2K0", cityName: "Paspebiac, QC" }, { postalCode: "S0G 5M0", cityName: "Pasqua, SK" }, { postalCode: "P0T 2M0", cityName: "Pass Lake, ON" }, { postalCode: "E5N 2B8", cityName: "Passekeag, NB" }, { postalCode: "S0K 3B0", cityName: "Pathlow, SK" }, { postalCode: "T0J 2K0", cityName: "Patricia, AB" }, { postalCode: "S0M 2H0", cityName: "Patuanak, SK" }, { postalCode: "R0B 2G0", cityName: "Pauingassi, MB" }, { postalCode: "X0E 1N0", cityName: "Paulatuk, NT" }, { postalCode: "V0K 2H0", cityName: "Pavilion, BC" }, { postalCode: "P0X 1L0", cityName: "Pawitik, ON" }, { postalCode: "S0M 2J0", cityName: "Paynton, SK" }, { postalCode: "P0T 3C0", cityName: "Pays Plat, ON" }, { postalCode: "T8S 1A2", cityName: "Peace River, AB" }, { postalCode: "V0H 1X0", cityName: "Peachland, BC" }, { postalCode: "P0L 2H0", cityName: "Peawanuck, ON" }, { postalCode: "S0G 3V0", cityName: "Peebles, SK" }, { postalCode: "E7L 3Y3", cityName: "Peel, NB" }, { postalCode: "T0G 2W0", cityName: "Peerless Lake, AB" }, { postalCode: "T0E 1W0", cityName: "Peers, AB" }, { postalCode: "L0E 1N0", cityName: "Pefferlaw, ON" }, { postalCode: "B3Z 3R7", cityName: "Peggys Cove, NS" }, { postalCode: "R0C 3J0", cityName: "Peguis, MB" }, { postalCode: "N0R 1M0", cityName: "Pelee Island, ON" }, { postalCode: "E4V 3C6", cityName: "Pelerin, NB" }, { postalCode: "S0P 0E0", cityName: "Pelican Narrows, SK" }, { postalCode: "R0L 1L0", cityName: "Pelican Rapids, MB" }, { postalCode: "S0A 2Z0", cityName: "Pelly, SK" }, { postalCode: "Y0B 1P0", cityName: "Pelly Crossing, YT" }, { postalCode: "E5L 0A3", cityName: "Peltoma Settlement, NB" }, { postalCode: "V0N 2L0", cityName: "Pemberton, BC" }, { postalCode: "E6H 1Y7", cityName: "Pemberton Ridge, NB" }, { postalCode: "E7N 1S1", cityName: "Pembroke, NB" }, { postalCode: "K8B 1A1", cityName: "Pembroke (Pleasant View / Fairview), ON" }, { postalCode: "K8A 1A2", cityName: "Pembroke Central and northern subdivisions, ON" }, { postalCode: "V0N 2M0", cityName: "Pender Island, BC" }, { postalCode: "L9M 2J1", cityName: "Penetanguishene, ON" }, { postalCode: "T0M 1R0", cityName: "Penhold, AB" }, { postalCode: "S0N 1X0", cityName: "Pennant Station, SK" }, { postalCode: "E5H 1A9", cityName: "Pennfield, NB" }, { postalCode: "E5H 1R5", cityName: "Pennfield, NB" }, { postalCode: "E3A 8W9", cityName: "Penniac, NB" }, { postalCode: "V0J 2K0", cityName: "Penny, BC" }, { postalCode: "E4E 5S4", cityName: "Penobsquis, NB" }, { postalCode: "E4G 0A2", cityName: "Penobsquis, NB" }, { postalCode: "S0G 3W0", cityName: "Pense, SK" }, { postalCode: "V2A 1A1", cityName: "Penticton, BC" }, { postalCode: "S0G 3X0", cityName: "Penzance, SK" }, { postalCode: "G0C 2L0", cityName: "Perce, QC" }, { postalCode: "S0K 3C0", cityName: "Perdue, SK" }, { postalCode: "G0W 2G0", cityName: "Peribonka, QC" }, { postalCode: "L0L 2J0", cityName: "Perkinsfield, ON" }, { postalCode: "P0V 2K0", cityName: "Perrault Falls, ON" }, { postalCode: "E4G 1W1", cityName: "Perry Settlement, NB" }, { postalCode: "T0G 1T0", cityName: "Perryvale, AB" }, { postalCode: "K7H 1A1", cityName: "Perth, ON" }, { postalCode: "N0K 1A0", cityName: "Perth (Mitchell), ON" }, { postalCode: "K0H 2L0", cityName: "Perth Road, ON" }, { postalCode: "E7H 1H9", cityName: "Perth-Andover, NB" }, { postalCode: "K8H 1A1", cityName: "Petawawa, ON" }, { postalCode: "K9K 1A1", cityName: "Peterborough (Fairbairn Meadows / Jackson Heights), ON" }, { postalCode: "K9L 0A7", cityName: "Peterborough (Terra View Heights / Woodland Acres / Donwood), ON" }, { postalCode: "K0L 1P0", cityName: "Peterborough County and North Hastings County (Lakefield), ON" }, { postalCode: "K9H 1A3", cityName: "Peterborough North, ON" }, { postalCode: "K9J 0A6", cityName: "Peterborough South, ON" }, { postalCode: "N0B 2H0", cityName: "Petersburg, ON" }, { postalCode: "R0C 2L0", cityName: "Petersfield, MB" }, { postalCode: "A0H 1Y0", cityName: "Peterview, NL" }, { postalCode: "B0E 2M0", cityName: "Petit Etang, NS" }, { postalCode: "A0E 3A0", cityName: "Petit Forte, NL" }, { postalCode: "E1X 0A8", cityName: "Petit Tracadie, NB" }, { postalCode: "E4N 0A1", cityName: "Petit-Cap, NB" }, { postalCode: "E8J 0A5", cityName: "Petit-Rocher, NB" }, { postalCode: "E8J 0A1", cityName: "Petit-Rocher, NB" }, { postalCode: "E8J 0A4", cityName: "Petit-Rocher-Nord, NB" }, { postalCode: "E8J 1W3", cityName: "Petit-Rocher-Ouest, NB" }, { postalCode: "G0V 1N0", cityName: "Petit-Saguenay, QC" }, { postalCode: "E8T 0A7", cityName: "Petit-Shippagan, NB" }, { postalCode: "E4Z 1H3", cityName: "Petitcodiac, NB" }, { postalCode: "E4Z 0A2", cityName: "Petitcodiac, NB" }, { postalCode: "E4Z 3K2", cityName: "Petitcodiac East, NB" }, { postalCode: "B4V 5W7", cityName: "Petite Riviere, NS" }, { postalCode: "H3J 2W4", cityName: "Petite-Bourgogne, QC" }, { postalCode: "E8T 2L1", cityName: "Petite-Lameque, NB" }, { postalCode: "H2G 3G2", cityName: "Petite-Patrie Northeast, QC" }, { postalCode: "H2S 3S3", cityName: "Petite-Patrie Southwest, QC" }, { postalCode: "E8T 1V9", cityName: "Petite-Riviere-de-l\'Ile, NB" }, { postalCode: "G0A 2L0", cityName: "Petite-Riviere-Saint-Francois, QC" }, { postalCode: "G0E 1Y0", cityName: "Petite-Vallee, QC" }, { postalCode: "N0N 1R0", cityName: "Petrolia, ON" }, { postalCode: "A0A 3H0", cityName: "Petty Harbour, NL" }, { postalCode: "L0L 2K0", cityName: "Phelpston, ON" }, { postalCode: "J0J 1N0", cityName: "Philipsburg, QC" }, { postalCode: "S0K 3E0", cityName: "Phippen, SK" }, { postalCode: "S0N 1Y0", cityName: "Piapot, SK" }, { postalCode: "E4E 3G7", cityName: "Picadilly, NB" }, { postalCode: "T0G 1W0", cityName: "Pickardville, AB" }, { postalCode: "P0G 1J0", cityName: "Pickerel, ON" }, { postalCode: "L1X 2W8", cityName: "Pickering Central, ON" }, { postalCode: "L1Y 1A2", cityName: "Pickering North, ON" }, { postalCode: "L1W 4A7", cityName: "Pickering South, ON" }, { postalCode: "L1V 7E8", cityName: "Pickering Southwest, ON" }, { postalCode: "E4C 2M1", cityName: "Picketts Cove, NB" }, { postalCode: "P0V 3A0", cityName: "Pickle Lake, ON" }, { postalCode: "K0K 2T0", cityName: "Picton, ON" }, { postalCode: "B0K 1H0", cityName: "Pictou, NS" }, { postalCode: "B0K 1J0", cityName: "Pictou Island, NS" }, { postalCode: "T0K 1V0", cityName: "Picture Butte, AB" }, { postalCode: "J0R 1K0", cityName: "Piedmont, QC" }, { postalCode: "S0M 2K0", cityName: "Pierceland, SK" }, { postalCode: "E7J 2L3", cityName: "Piercemont, NB" }, { postalCode: "H8Z 3M4", cityName: "Pierrefonds, QC" }, { postalCode: "H9H 0A1", cityName: "Pierrefonds, QC" }, { postalCode: "J0G 1J0", cityName: "Pierreville, QC" }, { postalCode: "R0M 1S0", cityName: "Pierson, MB" }, { postalCode: "E8T 0B5", cityName: "Pigeon Hill, NB" }, { postalCode: "P0V 2L0", cityName: "Pikangikum, ON" }, { postalCode: "J0J 1P0", cityName: "Pike River, QC" }, { postalCode: "R0B 1E0", cityName: "Pikwitonei, MB" }, { postalCode: "S0K 3G0", cityName: "Pilger, SK" }, { postalCode: "A0J 1M0", cityName: "Pilleys Island, NL" }, { postalCode: "S0G 3Z0", cityName: "Pilot Butte, SK" }, { postalCode: "R0G 1P0", cityName: "Pilot Mound, MB" }, { postalCode: "V0E 3E0", cityName: "Pinantan Lake, BC" }, { postalCode: "R0E 1L0", cityName: "Pinawa, MB" }, { postalCode: "T0K 1W0", cityName: "Pincher Creek, AB" }, { postalCode: "J7V 0A3", cityName: "Pincourt, QC" }, { postalCode: "R0E 1M0", cityName: "Pine Falls, MB" }, { postalCode: "E1J 0A4", cityName: "Pine Glen, NB" }, { postalCode: "B4V 7P6", cityName: "Pine Grove, NS" }, { postalCode: "T0M 1S0", cityName: "Pine Lake, AB" }, { postalCode: "E4W 0C9", cityName: "Pine Ridge, NB" }, { postalCode: "R0L 1M0", cityName: "Pine River, MB" }, { postalCode: "S0J 2B0", cityName: "Pinehouse Lake, SK" }, { postalCode: "B4V 8X1", cityName: "Pinehurst, NS" }, { postalCode: "E9E 2G4", cityName: "Pineville, NB" }, { postalCode: "P0W 1K0", cityName: "Pinewood, ON" }, { postalCode: "R0A 1K0", cityName: "Piney, MB" }, { postalCode: "V0C 2B0", cityName: "Pink Mountain, BC" }, { postalCode: "G6C 1W3", cityName: "Pintendre, QC" }, { postalCode: "G0Y 1H0", cityName: "Piopolis, QC" }, { postalCode: "B1T 1E4", cityName: "Pipers Cove, NS" }, { postalCode: "R0M 1T0", cityName: "Pipestone, MB" }, { postalCode: "V3Y 0A1", cityName: "Pitt Meadows, BC" }, { postalCode: "H5A 1M1", cityName: "Place Bonaventure, QC" }, { postalCode: "H5B 1K4", cityName: "Place Desjardins, QC" }, { postalCode: "A0B 2Y0", cityName: "Placentia, NL" }, { postalCode: "K0K 2V0", cityName: "Plainfield, ON" }, { postalCode: "J0V 1S0", cityName: "Plaisance, QC" }, { postalCode: "T0A 2T0", cityName: "Plamondon, AB" }, { postalCode: "K0B 1L0", cityName: "Plantagenet, ON" }, { postalCode: "E7G 1A8", cityName: "Plaster Rock, NB" }, { postalCode: "A0C 2C0", cityName: "Plate Cove East, NL" }, { postalCode: "A0C 2E0", cityName: "Plate Cove West, NL" }, { postalCode: "H2H 2T4", cityName: "Plateau Mont-Royal North, QC" }, { postalCode: "H2J 4G2", cityName: "Plateau Mont-Royal North Central, QC" }, { postalCode: "H2W 2T6", cityName: "Plateau Mont-Royal South Central, QC" }, { postalCode: "H2X 4E3", cityName: "Plateau Mont-Royal Southeast, QC" }, { postalCode: "H2T 3C5", cityName: "Plateau Mont-Royal West, QC" }, { postalCode: "S0L 2P0", cityName: "Plato, SK" }, { postalCode: "N0J 1S0", cityName: "Plattsville, ON" }, { postalCode: "B0E 2P0", cityName: "Pleasant Bay, NS" }, { postalCode: "B9A 1X3", cityName: "Pleasant Hill, NS" }, { postalCode: "E5A 0A6", cityName: "Pleasant Ridge Char County, NB" }, { postalCode: "E5P 2A8", cityName: "Pleasant Ridge Kings Co, NB" }, { postalCode: "E5M 1Y7", cityName: "Pleasant Villa, NB" }, { postalCode: "S0K 3H0", cityName: "Pleasantdale, SK" }, { postalCode: "B0R 1G0", cityName: "Pleasantville, NS" }, { postalCode: "S0L 2R0", cityName: "Plenty, SK" }, { postalCode: "G6L 5V7", cityName: "Plessisville, QC" }, { postalCode: "K0H 2M0", cityName: "Plevna, ON" }, { postalCode: "R0G 1R0", cityName: "Plum Coulee, MB" }, { postalCode: "A0K 4A0", cityName: "Plum Point, NL" }, { postalCode: "R0J 1P0", cityName: "Plumas, MB" }, { postalCode: "E4G 1W8", cityName: "Plumweseep, NB" }, { postalCode: "S0K 3J0", cityName: "Plunkett, SK" }, { postalCode: "E7M 5X9", cityName: "Plymouth, NB" }, { postalCode: "B0W 2R0", cityName: "Plympton, NS" }, { postalCode: "E5J 1A1", cityName: "Pocologan, NB" }, { postalCode: "G0L 1J0", cityName: "Pohenegamook, QC" }, { postalCode: "B1Y 1Z5", cityName: "Point Aconi, NS" }, { postalCode: "E4L 2M7", cityName: "Point de Bute, NB" }, { postalCode: "B2A 4P3", cityName: "Point Edward, NS" }, { postalCode: "N7T 0A4", cityName: "Point Edward, ON" }, { postalCode: "N7V 0A2", cityName: "Point Edward, ON" }, { postalCode: "E3N 6B7", cityName: "Point la Nim, NB" }, { postalCode: "A0H 1Z0", cityName: "Point Leamington, NL" }, { postalCode: "A0H 2A0", cityName: "Point of Bay, NL" }, { postalCode: "B9A 1Y5", cityName: "Point Tupper, NS" }, { postalCode: "E1X 0A1", cityName: "Pointe A Bouleau, NB" }, { postalCode: "E1X 0A5", cityName: "Pointe a Tom, NB" }, { postalCode: "N0R 1N0", cityName: "Pointe aux Roches, ON" }, { postalCode: "E1X 1K5", cityName: "Pointe des Robichaud, NB" }, { postalCode: "E4S 3X6", cityName: "Pointe Dixon Point, NB" }, { postalCode: "R0E 1N0", cityName: "Pointe du Bois, MB" }, { postalCode: "G0C 1L0", cityName: "Pointe-A-la-Croix, QC" }, { postalCode: "G0C 2M0", cityName: "Pointe-A-la-Garde, QC" }, { postalCode: "E8T 0A1", cityName: "Pointe-Alexandre, NB" }, { postalCode: "P0G 1K0", cityName: "Pointe-au-Baril-Station, ON" }, { postalCode: "G4T 8A1", cityName: "Pointe-aux-Loups, QC" }, { postalCode: "G0H 1M0", cityName: "Pointe-aux-Outardes, QC" }, { postalCode: "H1A 5M4", cityName: "Pointe-Aux-Trembles, QC" }, { postalCode: "H1A 0A3", cityName: "Pointe-aux-Trembles, QC" }, { postalCode: "H1B 0A1", cityName: "Pointe-aux-Trembles, QC" }, { postalCode: "H1C 1G6", cityName: "Pointe-aux-Trembles, QC" }, { postalCode: "E8S 0A4", cityName: "Pointe-Brule, NB" }, { postalCode: "E8T 0A4", cityName: "Pointe-Canot, NB" }, { postalCode: "H9R 6R6", cityName: "Pointe-Claire, QC" }, { postalCode: "H4Y 1J4", cityName: "Pointe-Claire, QC" }, { postalCode: "H9B 2L3", cityName: "Pointe-Claire, QC" }, { postalCode: "H9P 1K1", cityName: "Pointe-Claire, QC" }, { postalCode: "H9S 0A2", cityName: "Pointe-Claire, QC" }, { postalCode: "J0P 1M0", cityName: "Pointe-des-Cascades, QC" }, { postalCode: "E4P 0A2", cityName: "Pointe-du-Chene, NB" }, { postalCode: "J0P 1N0", cityName: "Pointe-Fortune, QC" }, { postalCode: "G0H 1N0", cityName: "Pointe-Lebel, QC" }, { postalCode: "H3K 3K9", cityName: "Pointe-Saint-Charles, QC" }, { postalCode: "E8S 2X6", cityName: "Pointe-Sauvage, NB" }, { postalCode: "E8J 0A7", cityName: "Pointe-Verte, NB" }, { postalCode: "E8L 1R4", cityName: "Poirier Subdivision, NB" }, { postalCode: "E8P 0A1", cityName: "Pokemouche, NB" }, { postalCode: "E2A 5G9", cityName: "Pokeshaw, NB" }, { postalCode: "E1W 5S2", cityName: "Pokesudie, NB" }, { postalCode: "E6G 1N4", cityName: "Pokiok, NB" }, { postalCode: "E7P 1Z4", cityName: "Pole Hill, NB" }, { postalCode: "A0K 4B0", cityName: "Pollards Point, NL" }, { postalCode: "E4Z 3A5", cityName: "Pollett River, NB" }, { postalCode: "T0J 2L0", cityName: "Pollockville, AB" }, { postalCode: "R0J 1R0", cityName: "Polonia, MB" }, { postalCode: "E3L 5K5", cityName: "Pomeroy Ridge, NB" }, { postalCode: "X0A 0S0", cityName: "Pond Inlet, NU" }, { postalCode: "E4B 3Y1", cityName: "Pondstream, NB" }, { postalCode: "T4J 1A1", cityName: "Ponoka, AB" }, { postalCode: "E1X 0A7", cityName: "Pont Lafrance, NB" }, { postalCode: "E1X 2S3", cityName: "Pont Landry, NB" }, { postalCode: "G3H 3T2", cityName: "Pont-Rouge, QC" }, { postalCode: "H7G 4R2", cityName: "Pont-Viau, QC" }, { postalCode: "S0N 1Z0", cityName: "Ponteix, SK" }, { postalCode: "L0A 1K0", cityName: "Pontypool, ON" }, { postalCode: "E4E 0C2", cityName: "Poodiac, NB" }, { postalCode: "N0K 1S0", cityName: "Poole, ON" }, { postalCode: "A0H 2B0", cityName: "Pools Cove, NL" }, { postalCode: "A0G 3P0", cityName: "Pools Island, NL" }, { postalCode: "P0V 3E0", cityName: "Poplar Hill, ON" }, { postalCode: "R0H 0Z0", cityName: "Poplar Point, MB" }, { postalCode: "R0C 2N0", cityName: "Poplarfield, MB" }, { postalCode: "P0N 1C0", cityName: "Porcupine, ON" }, { postalCode: "S0E 1H0", cityName: "Porcupine Plain, SK" }, { postalCode: "P0N 1E0", cityName: "Porquis Junction, ON" }, { postalCode: "V9Y 1A3", cityName: "Port Alberni, BC" }, { postalCode: "A0G 3R0", cityName: "Port Albert, NL" }, { postalCode: "V0N 2N0", cityName: "Port Alice, BC" }, { postalCode: "N0P 2A0", cityName: "Port Alma, ON" }, { postalCode: "A0J 1N0", cityName: "Port Anson, NL" }, { postalCode: "A0K 4C0", cityName: "Port au Choix, NL" }, { postalCode: "A0N 1T0", cityName: "Port au Port, NL" }, { postalCode: "A0N 2E0", cityName: "Port au Port Peninsula region (St. George\'s), NL" }, { postalCode: "A0C 2G0", cityName: "Port Blandford, NL" }, { postalCode: "N0J 1T0", cityName: "Port Burwell, ON" }, { postalCode: "B1A 6T8", cityName: "Port Caledonia, NS" }, { postalCode: "P0B 1J0", cityName: "Port Carling, ON" }, { postalCode: "V0T 1R0", cityName: "Port Clements, BC" }, { postalCode: "B0W 2S0", cityName: "Port Clyde, NS" }, { postalCode: "L3K 6C6", cityName: "Port Colborne, ON" }, { postalCode: "V3E 0A6", cityName: "Port Coquitlam, BC" }, { postalCode: "V3B 0A1", cityName: "Port Coquitlam Central, BC" }, { postalCode: "V3E 1K9", cityName: "Port Coquitlam North, BC" }, { postalCode: "V3C 1A3", cityName: "Port Coquitlam South, BC" }, { postalCode: "A0A 3J0", cityName: "Port de Grave, NL" }, { postalCode: "B0J 2R0", cityName: "Port Dufferin, NS" }, { postalCode: "V0V 1G0", cityName: "Port Edward, BC" }, { postalCode: "E4M 1B5", cityName: "Port Elgin, NB" }, { postalCode: "N0H 0A0", cityName: "Port Elgin, ON" }, { postalCode: "N0M 2L0", cityName: "Port Franks, ON" }, { postalCode: "B0M 1T0", cityName: "Port Greville, NS" }, { postalCode: "V0N 2P0", cityName: "Port Hardy, BC" }, { postalCode: "B9A 1J8", cityName: "Port Hastings, NS" }, { postalCode: "B9A 1Z8", cityName: "Port Hawkesbury, NS" }, { postalCode: "B0E 2W0", cityName: "Port Hood, NS" }, { postalCode: "L1A 0A1", cityName: "Port Hope, ON" }, { postalCode: "A0K 4E0", cityName: "Port Hope Simpson, NL" }, { postalCode: "B0K 1K0", cityName: "Port Howe, NS" }, { postalCode: "B0T 1S0", cityName: "Port Joli, NS" }, { postalCode: "B0W 2T0", cityName: "Port la Tour, NS" }, { postalCode: "N0P 2B0", cityName: "Port Lambton, ON" }, { postalCode: "P0H 1Y0", cityName: "Port Loring, ON" }, { postalCode: "B0W 2V0", cityName: "Port Maitland, NS" }, { postalCode: "B9A 1Z6", cityName: "Port Malcolm, NS" }, { postalCode: "V0N 2R0", cityName: "Port McNeill, BC" }, { postalCode: "L0K 1R0", cityName: "Port McNicoll, ON" }, { postalCode: "B0J 2T0", cityName: "Port Medway, NS" }, { postalCode: "V0N 2S0", cityName: "Port Mellon, BC" }, { postalCode: "V3H 0B1", cityName: "Port Moody, BC" }, { postalCode: "B1B 1A1", cityName: "Port Morien, NS" }, { postalCode: "B0T 1T0", cityName: "Port Mouton, NS" }, { postalCode: "V0P 1M0", cityName: "Port Neville, BC" }, { postalCode: "L9L 2C9", cityName: "Port Perry, ON" }, { postalCode: "A0C 2H0", cityName: "Port Rexton, NL" }, { postalCode: "L0S 1K0", cityName: "Port Robinson, ON" }, { postalCode: "N0E 1M0", cityName: "Port Rowan, ON" }, { postalCode: "P0B 1K0", cityName: "Port Sandfield, ON" }, { postalCode: "A0K 4H0", cityName: "Port Saunders, NL" }, { postalCode: "L0K 1S0", cityName: "Port Severn, ON" }, { postalCode: "N5L 1K2", cityName: "Port Stanley, ON" }, { postalCode: "P0B 1L0", cityName: "Port Sydney, ON" }, { postalCode: "A0C 2J0", cityName: "Port Union, NL" }, { postalCode: "B0P 1T0", cityName: "Port Williams, NS" }, { postalCode: "G5B 2W7", cityName: "Port-Cartier, QC" }, { postalCode: "G0C 2N0", cityName: "Port-Daniel, QC" }, { postalCode: "G0G 2Y0", cityName: "Port-Menier, QC" }, { postalCode: "B1L 1A6", cityName: "Portage, NS" }, { postalCode: "E4N 0A5", cityName: "Portage, NB" }, { postalCode: "R1N 0X7", cityName: "Portage la Prairie, MB" }, { postalCode: "E4X 1J3", cityName: "Portage St-Louis, NB" }, { postalCode: "E4Z 3B9", cityName: "Portage Vale, NB" }, { postalCode: "J0X 2T0", cityName: "Portage-du-Fort, QC" }, { postalCode: "E9C 2G5", cityName: "Porter Cove, NB" }, { postalCode: "B3E 1A3", cityName: "Porters Lake, NS" }, { postalCode: "B3E 0A1", cityName: "Porters Lake, NS" }, { postalCode: "K0G 1V0", cityName: "Portland, ON" }, { postalCode: "A0K 4G0", cityName: "Portland Creek, NL" }, { postalCode: "G0A 2Y0", cityName: "Portneuf, QC" }, { postalCode: "G0T 1P0", cityName: "Portneuf-Sur-Mer, QC" }, { postalCode: "S0N 2A0", cityName: "Portreeve, SK" }, { postalCode: "A1M 1A1", cityName: "Portugal Cove-St. Philips, NL" }, { postalCode: "B3V 1J8", cityName: "Portuguese Cove, NS" }, { postalCode: "A0P 1N0", cityName: "Postville, NL" }, { postalCode: "V0C 2C0", cityName: "Pouce Coupe, BC" }, { postalCode: "A0A 3L0", cityName: "Pouch Cove, NL" }, { postalCode: "J0Z 3E0", cityName: "Poularies, QC" }, { postalCode: "A0G 3S0", cityName: "Pound Cove, NL" }, { postalCode: "P0H 1Z0", cityName: "Powassan, ON" }, { postalCode: "V8A 1A1", cityName: "Powell River, BC" }, { postalCode: "R0E 1P0", cityName: "Powerview, MB" }, { postalCode: "C0A 1Z0", cityName: "Pownal, PEI" }, { postalCode: "C0A 1Z0", cityName: "Pownal, PEI" }, { postalCode: "S0E 1J0", cityName: "Prairie River, SK" }, { postalCode: "S0H 3M0", cityName: "Prairie View, SK" }, { postalCode: "R0H 1A0", cityName: "Pratt, MB" }, { postalCode: "S0A 3B0", cityName: "Preeceville, SK" }, { postalCode: "J0Y 2E0", cityName: "Preissac, QC" }, { postalCode: "S0N 2B0", cityName: "Prelate, SK" }, { postalCode: "K0E 1T0", cityName: "Prescott, ON" }, { postalCode: "K0B 1E0", cityName: "Prescott and Russell United Counties (Alfred), ON" }, { postalCode: "V0C 2S0", cityName: "Prespatou, BC" }, { postalCode: "J0R 1T0", cityName: "Prevost, QC" }, { postalCode: "G0J 1Z0", cityName: "Price, QC" }, { postalCode: "E9C 2J4", cityName: "Priceville, NB" }, { postalCode: "N0C 1K0", cityName: "Priceville, ON" }, { postalCode: "T0L 1W0", cityName: "Priddis, AB" }, { postalCode: "S0L 2S0", cityName: "Primate, SK" }, { postalCode: "B1L 1E5", cityName: "Prime Brook, NS" }, { postalCode: "B1S 2J1", cityName: "Prime Brook, NS" }, { postalCode: "L9L 1C1", cityName: "Prince Albert, ON" }, { postalCode: "S6V 8G1", cityName: "Prince Albert Central, SK" }, { postalCode: "S6X 1C9", cityName: "Prince Albert East, SK" }, { postalCode: "S6W 1A6", cityName: "Prince Albert Southwest, SK" }, { postalCode: "C0B 1A0", cityName: "Prince County (Portage), PEI" }, { postalCode: "V2L 0A1", cityName: "Prince George East Central, BC" }, { postalCode: "V2K 1A1", cityName: "Prince George North, BC" }, { postalCode: "V2N 1A1", cityName: "Prince George South, BC" }, { postalCode: "V2M 0A5", cityName: "Prince George West Central, BC" }, { postalCode: "E5J 2K2", cityName: "Prince of Wales, NB" }, { postalCode: "V8J 0A1", cityName: "Prince Rupert, BC" }, { postalCode: "E6K 0A1", cityName: "Prince William, NB" }, { postalCode: "R0C 2P0", cityName: "Princess Harbour, MB" }, { postalCode: "E4B 1Z9", cityName: "Princess Park, NB" }, { postalCode: "A0C 2K0", cityName: "Princeton, NL" }, { postalCode: "N0J 1V0", cityName: "Princeton, ON" }, { postalCode: "V0X 1W0", cityName: "Princeton, BC" }, { postalCode: "G6L 0A1", cityName: "Princeville, QC" }, { postalCode: "E4B 2H6", cityName: "Printz Cove, NB" }, { postalCode: "V0E 2P0", cityName: "Pritchard, BC" }, { postalCode: "V0G 1V0", cityName: "Procter, BC" }, { postalCode: "V0C 2E0", cityName: "Progress, BC" }, { postalCode: "V0C 2V0", cityName: "Prophet River, BC" }, { postalCode: "B3T 0A7", cityName: "Prospect, NS" }, { postalCode: "B3T 1Z4", cityName: "Prospect Bay, NS" }, { postalCode: "B3T 2A4", cityName: "Prospect Village, NS" }, { postalCode: "E4Z 1M9", cityName: "Prosser Brook, NB" }, { postalCode: "N0C 1L0", cityName: "Proton Station, ON" }, { postalCode: "G0X 2B0", cityName: "Proulxville, QC" }, { postalCode: "P0P 1T0", cityName: "Providence Bay, ON" }, { postalCode: "T0B 3S0", cityName: "Provost, AB" }, { postalCode: "S0K 3K0", cityName: "Prud\'Homme, SK" }, { postalCode: "E5K 4K7", cityName: "Public Landing, NB" }, { postalCode: "B0W 2W0", cityName: "Pubnico, NS" }, { postalCode: "B0K 1L0", cityName: "Pugwash, NS" }, { postalCode: "B0K 1M0", cityName: "Pugwash Junction, NS" }, { postalCode: "R0B 1G0", cityName: "Pukatawagan, MB" }, { postalCode: "S0A 3C0", cityName: "Punnichy, SK" }, { postalCode: "T0K 1X0", cityName: "Purple Springs, AB" }, { postalCode: "N0B 2J0", cityName: "Puslinch, ON" }, { postalCode: "N0L 2B0", cityName: "Putnam, ON" }, { postalCode: "J0M 1P0", cityName: "Puvirnituq, QC" }, { postalCode: "A8A 3B1", cityName: "Pynn\'s Brook, NL" }, { postalCode: "X0A 0B0", cityName: "Qikiqtarjuaq, NU" }, { postalCode: "S0G 4A0", cityName: "Qu\'Appelle, SK" }, { postalCode: "K0J 2G0", cityName: "Quadeville, ON" }, { postalCode: "E7H 1T4", cityName: "Quaker Brook, NB" }, { postalCode: "V9K 1A1", cityName: "Qualicum Beach, BC" }, { postalCode: "J0M 1J0", cityName: "Quaqtaq, QC" }, { postalCode: "E9E 2J4", cityName: "Quarryville, NB" }, { postalCode: "V0P 1N0", cityName: "Quathiaski Cove, BC" }, { postalCode: "V0N 2V0", cityName: "Quatsino, BC" }, { postalCode: "G2E 1A1", cityName: "Quebec, QC" }, { postalCode: "G3A 0M2", cityName: "Quebec, QC" }, { postalCode: "G1R 6E2", cityName: "Quebec City East, QC" }, { postalCode: "G2J 1V4", cityName: "Quebec City Inner North, QC" }, { postalCode: "G1J 5M1", cityName: "Quebec City Lower Riverbank, QC" }, { postalCode: "G1K 9M6", cityName: "Quebec City Mid-Riverbank, QC" }, { postalCode: "G1M 4G1", cityName: "Quebec City North Central, QC" }, { postalCode: "G1L 5B2", cityName: "Quebec City Northeast, QC" }, { postalCode: "G2C 2J5", cityName: "Quebec City Northwest, QC" }, { postalCode: "G2K 0A1", cityName: "Quebec City Outer North, QC" }, { postalCode: "G1S 4X7", cityName: "Quebec City South, QC" }, { postalCode: "G1N 4V1", cityName: "Quebec City South Central, QC" }, { postalCode: "G1T 2W8", cityName: "Quebec City Upper Riverbank, QC" }, { postalCode: "G1P 4S8", cityName: "Quebec City West, QC" }, { postalCode: "G1A 0A2", cityName: "Quebec Provincial Government, QC" }, { postalCode: "V0T 1S0", cityName: "Queen Charlotte, BC" }, { postalCode: "M7A 2T3", cityName: "Queen\'s Park Ontario Provincial Government, ON" }, { postalCode: "B0T 1P0", cityName: "Queens County (Shelburne), NS" }, { postalCode: "L0S 1L0", cityName: "Queenston, ON" }, { postalCode: "E5M 1Z4", cityName: "Queenstown, NB" }, { postalCode: "B9A 1R7", cityName: "Queensville, NS" }, { postalCode: "L0G 1R0", cityName: "Queensville, ON" }, { postalCode: "V2J 1A3", cityName: "Quesnel, BC" }, { postalCode: "V0E 2R0", cityName: "Quilchena, BC" }, { postalCode: "S0A 3E0", cityName: "Quill Lake, SK" }, { postalCode: "K0K 1A0", cityName: "Quinte Shores, East Northumberland County &amp; Prince Edward County (Picton), ON" }, { postalCode: "S0A 3G0", cityName: "Quinton, SK" }, { postalCode: "E2G 1B9", cityName: "Quispamsis, NB" }, { postalCode: "E2E 0A2", cityName: "Quispamsis, NB" }, { postalCode: "J0X 2V0", cityName: "Quyon, QC" }, { postalCode: "J0N 1G0", cityName: "R&eacute;gion d\'Oka (Oka), QC" }, { postalCode: "G0M 1J0", cityName: "R&eacute;gion de Beauce (Saint-Prosper-De- Dorchester), QC" }, { postalCode: "G0W 1G0", cityName: "R&eacute;gion de Mistassini (Chambord), QC" }, { postalCode: "S0M 2L0", cityName: "Rabbit Lake, SK" }, { postalCode: "J0E 1Y0", cityName: "Racine, QC" }, { postalCode: "J0Y 2X0", cityName: "Radisson, QC" }, { postalCode: "S0K 3L0", cityName: "Radisson, SK" }, { postalCode: "V0A 1M0", cityName: "Radium Hot Springs, BC" }, { postalCode: "S0C 2G0", cityName: "Radville, SK" }, { postalCode: "T0A 2V0", cityName: "Radway, AB" }, { postalCode: "G0H 1S0", cityName: "Ragueneau, QC" }, { postalCode: "T0H 2Y0", cityName: "Rainbow Lake, AB" }, { postalCode: "T0J 2M0", cityName: "Rainier, AB" }, { postalCode: "P0W 1L0", cityName: "Rainy River, ON" }, { postalCode: "P0W 1A0", cityName: "Rainy River Region (Emo), ON" }, { postalCode: "P0T 2N0", cityName: "Raith, ON" }, { postalCode: "A0K 4J0", cityName: "Raleigh, NL" }, { postalCode: "T0J 2N0", cityName: "Ralston, AB" }, { postalCode: "L0K 1T0", cityName: "Rama, ON" }, { postalCode: "S0A 3H0", cityName: "Rama, SK" }, { postalCode: "A0N 2J0", cityName: "Ramea, NL" }, { postalCode: "P0K 1R0", cityName: "Ramore, ON" }, { postalCode: "K0A 2Y0", cityName: "Ramsayville, ON" }, { postalCode: "P0M 2S0", cityName: "Ramsey, ON" }, { postalCode: "R0A 1L0", cityName: "Randolph, MB" }, { postalCode: "T0B 3T0", cityName: "Ranfurly, AB" }, { postalCode: "E8R 1J9", cityName: "Rang-Saint-Georges, NB" }, { postalCode: "R0K 1W0", cityName: "Rapid City, MB" }, { postalCode: "J0W 2C0", cityName: "Rapid Lake, QC" }, { postalCode: "S0M 2M0", cityName: "Rapid View, SK" }, { postalCode: "J0Z 1W0", cityName: "Rapide-Danseur, QC" }, { postalCode: "J0X 3M0", cityName: "Rapides-des-Joachims, QC" }, { postalCode: "R0G 1S0", cityName: "Rathwell, MB" }, { postalCode: "E4E 3K5", cityName: "Ratter Corner, NB" }, { postalCode: "A0J 1P0", cityName: "Rattling Brook, NL" }, { postalCode: "N0H 2E0", cityName: "Ravenna, ON" }, { postalCode: "G0R 2L0", cityName: "Ravignan, QC" }, { postalCode: "J0K 1S0", cityName: "Rawdon, QC" }, { postalCode: "T0K 2S0", cityName: "Raymond, AB" }, { postalCode: "S0A 3J0", cityName: "Raymore, SK" }, { postalCode: "K0L 2X0", cityName: "Reaboro, ON" }, { postalCode: "E9E 1K2", cityName: "Red Bank, NB" }, { postalCode: "E9E 1A1", cityName: "Red Bank, NB" }, { postalCode: "E4A 2A7", cityName: "Red Bank Queens Co, NB" }, { postalCode: "E9E 1A3", cityName: "Red Bank Reserve, NB" }, { postalCode: "A0K 4K0", cityName: "Red Bay, NL" }, { postalCode: "E7M 5K8", cityName: "Red Bridge, NB" }, { postalCode: "T4N 0M8", cityName: "Red Deer Central, AB" }, { postalCode: "T4E 0A1", cityName: "Red Deer County, AB" }, { postalCode: "T4S 0B5", cityName: "Red Deer County, AB" }, { postalCode: "T4P 0A1", cityName: "Red Deer North, AB" }, { postalCode: "T4R 0C9", cityName: "Red Deer South, AB" }, { postalCode: "S0E 1K0", cityName: "Red Earth, SK" }, { postalCode: "T0G 1X0", cityName: "Red Earth Creek, AB" }, { postalCode: "A0E 2R0", cityName: "Red Harbour PB, NL" }, { postalCode: "A0A 3M0", cityName: "Red Head Cove, NL" }, { postalCode: "P0V 2M0", cityName: "Red Lake, ON" }, { postalCode: "B2C 1G4", cityName: "Red Point, NS" }, { postalCode: "E7H 1T2", cityName: "Red Rapids, NB" }, { postalCode: "P0T 2P0", cityName: "Red Rock, ON" }, { postalCode: "R0B 1H0", cityName: "Red Sucker Lake, MB" }, { postalCode: "T0B 3V0", cityName: "Red Willow, AB" }, { postalCode: "P0H 2A0", cityName: "Redbridge, ON" }, { postalCode: "T0J 2P0", cityName: "Redcliff, AB" }, { postalCode: "P0X 1M0", cityName: "Redditt, ON" }, { postalCode: "E1N 5C6", cityName: "Redmondville, NB" }, { postalCode: "V0L 1S0", cityName: "Redstone, BC" }, { postalCode: "S0C 2H0", cityName: "Redvers, SK" }, { postalCode: "T0A 2W0", cityName: "Redwater, AB" }, { postalCode: "T3Z 0A2", cityName: "Redwood Meadows, AB" }, { postalCode: "T3Z 1A1", cityName: "Redwood Meadows, AB" }, { postalCode: "A0K 4L0", cityName: "Reefs Harbour, NL" }, { postalCode: "V0P 1P0", cityName: "Refuge Cove, BC" }, { postalCode: "S0G 4C0", cityName: "Regina Beach, SK" }, { postalCode: "S4P 4W8", cityName: "Regina Central, SK" }, { postalCode: "S4L 0A5", cityName: "Regina East, SK" }, { postalCode: "S4R 8T9", cityName: "Regina North Central, SK" }, { postalCode: "S4Z 1A9", cityName: "Regina Northeast, SK" }, { postalCode: "S4N 5B7", cityName: "Regina Northeast and East Central, SK" }, { postalCode: "S4X 4L1", cityName: "Regina Northwest, SK" }, { postalCode: "S4Y 1H6", cityName: "Regina Outer Northwest, SK" }, { postalCode: "S4S 7K9", cityName: "Regina South Saskatchewan Provincial Government, SK" }, { postalCode: "S4V 3G5", cityName: "Regina Southeast, SK" }, { postalCode: "S4W 0A1", cityName: "Regina Southwest, SK" }, { postalCode: "S4T 7Y1", cityName: "Regina West, SK" }, { postalCode: "A8A 2V1", cityName: "Reidville, NL" }, { postalCode: "R6W 0A5", cityName: "Reinfeld, MB" }, { postalCode: "J0Z 3H0", cityName: "Remigny, QC" }, { postalCode: "T0V 1A0", cityName: "Remote Northeast (Fitzgerald), AB" }, { postalCode: "E4V 0B5", cityName: "Renauds Mills, NB" }, { postalCode: "A0H 2C0", cityName: "Rencontre East, NL" }, { postalCode: "A0A 3N0", cityName: "Renews, NL" }, { postalCode: "K7V 1A1", cityName: "Renfrew, ON" }, { postalCode: "K0J 2M0", cityName: "Renfrew County and Lanark Highlands Township (Deep River), ON" }, { postalCode: "R0E 1R0", cityName: "Rennie, MB" }, { postalCode: "E9E 2B6", cityName: "Renous, NB" }, { postalCode: "R0L 1N0", cityName: "Renwer, MB" }, { postalCode: "J5Z 0A5", cityName: "Repentigny, QC" }, { postalCode: "J5Y 3Y5", cityName: "Repentigny Northeast, QC" }, { postalCode: "J6A 8K9", cityName: "Repentigny South, QC" }, { postalCode: "J5Z 4Y3", cityName: "Repentigny West, QC" }, { postalCode: "X0C 0H0", cityName: "Repulse Bay, NU" }, { postalCode: "B1E 1A3", cityName: "Reserve Mines, NS" }, { postalCode: "X0A 0V0", cityName: "Resolute, NU" }, { postalCode: "R0M 1X0", cityName: "Reston, MB" }, { postalCode: "P0H 2R0", cityName: "Restoule, ON" }, { postalCode: "V0E 2S0", cityName: "Revelstoke, BC" }, { postalCode: "S0K 3N0", cityName: "Reward, SK" }, { postalCode: "E4W 0B3", cityName: "Rexton, NB" }, { postalCode: "S0A 3K0", cityName: "Rhein, SK" }, { postalCode: "B4V 5B9", cityName: "Rhodes Corner, NS" }, { postalCode: "S0G 4E0", cityName: "Riceton, SK" }, { postalCode: "E7N 2V5", cityName: "Riceville, NB" }, { postalCode: "S0M 2P0", cityName: "Richard, SK" }, { postalCode: "P0R 1J0", cityName: "Richards Landing, ON" }, { postalCode: "E5V 1R7", cityName: "Richardson, NB" }, { postalCode: "S0G 4G0", cityName: "Richardson, SK" }, { postalCode: "J3L 0A8", cityName: "Richelieu, QC" }, { postalCode: "R0E 1S0", cityName: "Richer, MB" }, { postalCode: "E4W 0A4", cityName: "Richibouctou-Village, NB" }, { postalCode: "E4W 3A8", cityName: "Richibucto, NB" }, { postalCode: "E4W 3T8", cityName: "Richibucto, NB" }, { postalCode: "E3A 0A5", cityName: "Richibucto Road, NB" }, { postalCode: "S0L 2T0", cityName: "Richlea, SK" }, { postalCode: "C0B 1Y0", cityName: "Richmond, PEI" }, { postalCode: "J0B 2B0", cityName: "Richmond, QC" }, { postalCode: "K0A 2Z0", cityName: "Richmond, ON" }, { postalCode: "V7B 1A1", cityName: "Richmond (Sea Island / YVR), BC" }, { postalCode: "V6Y 1A1", cityName: "Richmond Central, BC" }, { postalCode: "E7M 4V8", cityName: "Richmond Corner, NB" }, { postalCode: "L3T 3M9", cityName: "Richmond Hill, ON" }, { postalCode: "L4S 2X1", cityName: "Richmond Hill Central, ON" }, { postalCode: "L4E 4X8", cityName: "Richmond Hill North, ON" }, { postalCode: "L4B 4W7", cityName: "Richmond Hill Southeast, ON" }, { postalCode: "L4C 9X7", cityName: "Richmond Hill Southwest, ON" }, { postalCode: "V6X 0A1", cityName: "Richmond North, BC" }, { postalCode: "V6V 0A2", cityName: "Richmond Northeast, BC" }, { postalCode: "E7M 4X1", cityName: "Richmond Settlement, NB" }, { postalCode: "V7A 1A1", cityName: "Richmond South, BC" }, { postalCode: "V6W 1A1", cityName: "Richmond Southeast, BC" }, { postalCode: "V7E 1A1", cityName: "Richmond Southwest, BC" }, { postalCode: "V7C 1A1", cityName: "Richmond West, BC" }, { postalCode: "S0N 2E0", cityName: "Richmound, SK" }, { postalCode: "K0G 1W0", cityName: "Rideau Ferry, ON" }, { postalCode: "K0G 1J0", cityName: "Rideau Lakes area (Kemptville), ON" }, { postalCode: "S0E 1L0", cityName: "Ridgedale, SK" }, { postalCode: "N0P 2C0", cityName: "Ridgetown, ON" }, { postalCode: "L0S 1M0", cityName: "Ridgeville, ON" }, { postalCode: "R0A 1M0", cityName: "Ridgeville, MB" }, { postalCode: "L0S 1N0", cityName: "Ridgeway, ON" }, { postalCode: "R0J 1T0", cityName: "Riding Mountain, MB" }, { postalCode: "R0J 1B0", cityName: "Riding Mountain (Neepawa), MB" }, { postalCode: "J0P 1P0", cityName: "Rigaud, QC" }, { postalCode: "A0P 1P0", cityName: "Rigolet, NL" }, { postalCode: "E7G 1L4", cityName: "Riley Brook, NB" }, { postalCode: "T0C 2J0", cityName: "Rimbey, AB" }, { postalCode: "G5L 9J2", cityName: "Rimouski Central, QC" }, { postalCode: "G5M 0A1", cityName: "Rimouski Northeast, QC" }, { postalCode: "G5N 1T8", cityName: "Rimouski Southwest, QC" }, { postalCode: "E2A 6Y9", cityName: "Rio Grande, NB" }, { postalCode: "V0B 2B0", cityName: "Riondel, BC" }, { postalCode: "N0G 2R0", cityName: "Ripley, ON" }, { postalCode: "J0V 1V0", cityName: "Ripon, QC" }, { postalCode: "E4B 0B9", cityName: "Ripples, NB" }, { postalCode: "V0L 1T0", cityName: "Riske Creek, BC" }, { postalCode: "E6H 1G8", cityName: "Ritchie, NB" }, { postalCode: "B0E 2X0", cityName: "River Bourgeois, NS" }, { postalCode: "E7H 4S2", cityName: "River de Chute, NB" }, { postalCode: "B0E 2Y0", cityName: "River Denys, NS" }, { postalCode: "L9N 1A1", cityName: "River Drive Park, ON" }, { postalCode: "E4Z 3G4", cityName: "River Glade, NB" }, { postalCode: "B0L 1G0", cityName: "River Hebert, NS" }, { postalCode: "B0L 1H0", cityName: "River Hebert East, NS" }, { postalCode: "R0E 1T0", cityName: "River Hills, MB" }, { postalCode: "B0K 1N0", cityName: "River John, NS" }, { postalCode: "A0K 4M0", cityName: "River of Ponds, NL" }, { postalCode: "B0M 1V0", cityName: "River Philip, NS" }, { postalCode: "P0H 2C0", cityName: "River Valley, ON" }, { postalCode: "E7L 3Z6", cityName: "Riverbank Carleton Co, NB" }, { postalCode: "E5T 0A5", cityName: "Riverbank Kings Co, NB" }, { postalCode: "E5P 1Z9", cityName: "Riverbank South, NB" }, { postalCode: "T0B 3X0", cityName: "Rivercourse, AB" }, { postalCode: "A0A 3P0", cityName: "Riverhead Harbour Grace, NL" }, { postalCode: "S0H 3P0", cityName: "Riverhurst, SK" }, { postalCode: "B0J 2W0", cityName: "Riverport, NS" }, { postalCode: "R0K 1X0", cityName: "Rivers, MB" }, { postalCode: "S7T 1A1", cityName: "Riverside Estates, SK" }, { postalCode: "E4H 1A5", cityName: "Riverside-Albert, NB" }, { postalCode: "R0C 2R0", cityName: "Riverton, MB" }, { postalCode: "E1B 1A1", cityName: "Riverview, NB" }, { postalCode: "H1C 2L5", cityName: "Rivi&egrave;re-des-Prairies Northeast, QC" }, { postalCode: "H1E 7P8", cityName: "Rivi&egrave;re-Des-Prairies Southwest, QC" }, { postalCode: "G5R 6J1", cityName: "Rivi&egrave;re-du-Loup, QC" }, { postalCode: "E1X 0A6", cityName: "Riviere A la Truite, NB" }, { postalCode: "E8N 0A2", cityName: "Riviere du Nord, NB" }, { postalCode: "T0G 1Y0", cityName: "Riviere Qui Barre, AB" }, { postalCode: "G0E 1Z0", cityName: "Riviere-A-Claude, QC" }, { postalCode: "G0A 3A0", cityName: "Riviere-A-Pierre, QC" }, { postalCode: "G0G 2L0", cityName: "Riviere-au-Tonnerre, QC" }, { postalCode: "J0P 1R0", cityName: "Riviere-Beaudette, QC" }, { postalCode: "G0L 2B0", cityName: "Riviere-Bleue, QC" }, { postalCode: "E9H 0A8", cityName: "Riviere-du-Portage, NB" }, { postalCode: "G0V 1P0", cityName: "Riviere-Eternite, QC" }, { postalCode: "J0Y 2H0", cityName: "Riviere-Heva, QC" }, { postalCode: "G0E 2B0", cityName: "Riviere-Madeleine, QC" }, { postalCode: "G0L 2C0", cityName: "Riviere-Ouelle, QC" }, { postalCode: "G0C 2S0", cityName: "Riviere-Paspebiac, QC" }, { postalCode: "G0H 1R0", cityName: "Riviere-Pentecote, QC" }, { postalCode: "J0T 1T0", cityName: "Riviere-Rouge, QC" }, { postalCode: "G0G 2N0", cityName: "Riviere-Saint-Jean, QC" }, { postalCode: "G0G 2P0", cityName: "Riviere-Saint-Paul, QC" }, { postalCode: "G0L 2E0", cityName: "Riviere-Trois-Pistoles, QC" }, { postalCode: "E7C 2M6", cityName: "Riviere-Verte, NB" }, { postalCode: "E4G 0A3", cityName: "Roachville, NB" }, { postalCode: "T0E 1X0", cityName: "Robb, AB" }, { postalCode: "A0J 1R0", cityName: "Roberts Arm, NL" }, { postalCode: "V0N 2W0", cityName: "Roberts Creek, BC" }, { postalCode: "E8K 2P5", cityName: "Robertville, NB" }, { postalCode: "G8H 3P7", cityName: "Roberval, QC" }, { postalCode: "E9G 3A3", cityName: "Robichaud Settlement, NB" }, { postalCode: "A0N 1V0", cityName: "Robinsons, NL" }, { postalCode: "E3N 5C8", cityName: "Robinsonville, NB" }, { postalCode: "K0K 2W0", cityName: "Roblin, ON" }, { postalCode: "R0L 1P0", cityName: "Roblin, MB" }, { postalCode: "S0N 2G0", cityName: "Robsart, SK" }, { postalCode: "V0G 1X0", cityName: "Robson, BC" }, { postalCode: "S0A 3L0", cityName: "Rocanville, SK" }, { postalCode: "J0Y 2J0", cityName: "Rochebaucourt, QC" }, { postalCode: "L0E 1P0", cityName: "Roches Point, ON" }, { postalCode: "T0G 1Z0", cityName: "Rochester, AB" }, { postalCode: "E2A 5H9", cityName: "Rocheville, NB" }, { postalCode: "T0E 1Y0", cityName: "Rochfort Bridge, AB" }, { postalCode: "T0C 3B0", cityName: "Rochon Sands, AB" }, { postalCode: "V0H 1Y0", cityName: "Rock Creek, BC" }, { postalCode: "B1K 1S9", cityName: "Rock Elm, NS" }, { postalCode: "J1N 4L4", cityName: "Rock Forest, QC" }, { postalCode: "R0L 2K0", cityName: "Rock Ridge, MB" }, { postalCode: "K1K 3G6", cityName: "Rockcliffe, ON" }, { postalCode: "K1L 5A1", cityName: "Rockcliffe, ON" }, { postalCode: "K1M 0A1", cityName: "Rockcliffe, ON" }, { postalCode: "S0H 3R0", cityName: "Rockglen, SK" }, { postalCode: "S0M 2R0", cityName: "Rockhaven, SK" }, { postalCode: "K4K 0A5", cityName: "Rockland, ON" }, { postalCode: "E7P 1G1", cityName: "Rockland, NB" }, { postalCode: "E4K 3K9", cityName: "Rockport, NB" }, { postalCode: "K0E 1V0", cityName: "Rockport, ON" }, { postalCode: "L0R 1X0", cityName: "Rockton, ON" }, { postalCode: "N0B 2K0", cityName: "Rockwood, ON" }, { postalCode: "A0K 4N0", cityName: "Rocky Harbour, NL" }, { postalCode: "T4T 0A1", cityName: "Rocky Mountain House, AB" }, { postalCode: "T0E 1Z0", cityName: "Rocky Rapids, AB" }, { postalCode: "T1X 0G8", cityName: "Rocky View, AB" }, { postalCode: "T4A 0E2", cityName: "Rocky View, AB" }, { postalCode: "T0J 2R0", cityName: "Rockyford, AB" }, { postalCode: "A0K 4P0", cityName: "Roddickton, NL" }, { postalCode: "A0G 3T0", cityName: "Rodgers Cove, NL" }, { postalCode: "N0L 2C0", cityName: "Rodney, ON" }, { postalCode: "E4Y 1A1", cityName: "Rogersville, NB" }, { postalCode: "E4Y 0A7", cityName: "Rogersville-Est, NB" }, { postalCode: "E4Y 0A8", cityName: "Rogersville-Ouest, NB" }, { postalCode: "S0A 3N0", cityName: "Rokeby, SK" }, { postalCode: "R0G 1T0", cityName: "Roland, MB" }, { postalCode: "V0C 2G0", cityName: "Rolla, BC" }, { postalCode: "J0Z 3J0", cityName: "Rollet, QC" }, { postalCode: "T0J 2S0", cityName: "Rolling Hills, AB" }, { postalCode: "E5A 0A4", cityName: "Rollingdam, NB" }, { postalCode: "T0C 2K0", cityName: "Rolly View, AB" }, { postalCode: "K0J 2H0", cityName: "Rolphton, ON" }, { postalCode: "J0Z 3K0", cityName: "Roquemaure, QC" }, { postalCode: "R0L 1R0", cityName: "Rorketon, MB" }, { postalCode: "R0A 1N0", cityName: "Rosa, MB" }, { postalCode: "E4Y 1P3", cityName: "Rosaireville, NB" }, { postalCode: "T0B 3Y0", cityName: "Rosalind, AB" }, { postalCode: "B0J 2X0", cityName: "Rose Bay, NS" }, { postalCode: "A0M 1P0", cityName: "Rose Blanche, NL" }, { postalCode: "V0C 2H0", cityName: "Rose Prairie, BC" }, { postalCode: "S0E 1M0", cityName: "Rose Valley, SK" }, { postalCode: "R0A 1P0", cityName: "Roseau River, MB" }, { postalCode: "T0J 2T0", cityName: "Rosebud, AB" }, { postalCode: "E7M 3S6", cityName: "Rosedale, NB" }, { postalCode: "V0X 1X0", cityName: "Rosedale, BC" }, { postalCode: "T0J 2V0", cityName: "Rosedale Station, AB" }, { postalCode: "T4L 1X8", cityName: "Rosedale Valley, AB" }, { postalCode: "E2A 7H2", cityName: "Rosehill, NB" }, { postalCode: "R0G 1V0", cityName: "Roseisle, MB" }, { postalCode: "T0J 2W0", cityName: "Rosemary, AB" }, { postalCode: "J7B 0A1", cityName: "Rosemere, QC" }, { postalCode: "L0N 1R0", cityName: "Rosemont, ON" }, { postalCode: "H1X 3R2", cityName: "Rosemont Central, QC" }, { postalCode: "H1T 4C7", cityName: "Rosemont North, QC" }, { postalCode: "H1Y 3H5", cityName: "Rosemont South, QC" }, { postalCode: "K0K 2X0", cityName: "Roseneath, ON" }, { postalCode: "R0G 1X0", cityName: "Rosenfeld, MB" }, { postalCode: "R0G 1W0", cityName: "Rosenort, MB" }, { postalCode: "S0L 2V0", cityName: "Rosetown, SK" }, { postalCode: "E4H 1A2", cityName: "Rosevale, NB" }, { postalCode: "K0K 2Y0", cityName: "Roslin, ON" }, { postalCode: "B1X 0A4", cityName: "Ross Ferry, NS" }, { postalCode: "Y0B 1S0", cityName: "Ross River, YT" }, { postalCode: "R0J 1V0", cityName: "Rossburn, MB" }, { postalCode: "P0C 1J0", cityName: "Rosseau, ON" }, { postalCode: "P0C 1K0", cityName: "Rosseau Road, ON" }, { postalCode: "R0H 1C0", cityName: "Rossendale, MB" }, { postalCode: "R0H 1E0", cityName: "Rosser, MB" }, { postalCode: "V0G 1Y0", cityName: "Rossland, BC" }, { postalCode: "P0T 2R0", cityName: "Rossport, ON" }, { postalCode: "E6G 1Y9", cityName: "Rossville, NB" }, { postalCode: "S0K 3R0", cityName: "Rosthern, SK" }, { postalCode: "N0K 1T0", cityName: "Rostock, ON" }, { postalCode: "E2H 0A1", cityName: "Rothesay, NB" }, { postalCode: "E2S 0A7", cityName: "Rothesay, NB" }, { postalCode: "E2E 1A1", cityName: "Rothesay, Quispamsis, NB" }, { postalCode: "J0L 1M0", cityName: "Rougemont, QC" }, { postalCode: "E2A 6E3", cityName: "Rough Waters, NB" }, { postalCode: "S0G 4H0", cityName: "Rouleau, SK" }, { postalCode: "A0K 4R0", cityName: "Round Harbour GB, NL" }, { postalCode: "T0B 3Z0", cityName: "Round Hill, AB" }, { postalCode: "B1B 1P1", cityName: "Round Island, NS" }, { postalCode: "K0J 2J0", cityName: "Round Lake Centre, ON" }, { postalCode: "G0J 2A0", cityName: "Routhierville, QC" }, { postalCode: "J9Y 1A2", cityName: "Rouyn-Noranda North, QC" }, { postalCode: "J9X 7G5", cityName: "Rouyn-Noranda South, QC" }, { postalCode: "E7H 4N1", cityName: "Rowena, NB" }, { postalCode: "E2S 2C4", cityName: "Rowley, NB" }, { postalCode: "T0J 2X0", cityName: "Rowley, AB" }, { postalCode: "H8Y 3R2", cityName: "Roxboro, QC" }, { postalCode: "H8Y 1A1", cityName: "Roxboro, QC" }, { postalCode: "J0H 1E0", cityName: "Roxton Falls, QC" }, { postalCode: "J0E 1Z0", cityName: "Roxton Pond, QC" }, { postalCode: "E7K 2C3", cityName: "Royalton, NB" }, { postalCode: "V0R 2V0", cityName: "Royston, BC" }, { postalCode: "S0M 2S0", cityName: "Ruddell, SK" }, { postalCode: "G0E 2C0", cityName: "Ruisseau-A-Rebours, QC" }, { postalCode: "T0J 2Y0", cityName: "Rumsey, AB" }, { postalCode: "S0A 3P0", cityName: "Runnymede, SK" }, { postalCode: "E3B 0B3", cityName: "Rusagonis, NB" }, { postalCode: "N0R 1R0", cityName: "Ruscom Station, ON" }, { postalCode: "S0H 3S0", cityName: "Rush Lake, SK" }, { postalCode: "A0E 2S0", cityName: "Rushoon, NL" }, { postalCode: "K4R 1A1", cityName: "Russell, ON" }, { postalCode: "R0J 1W0", cityName: "Russell, MB" }, { postalCode: "E1V 6M2", cityName: "Russellville, NB" }, { postalCode: "P0H 2E0", cityName: "Rutherglen, ON" }, { postalCode: "S0K 3S0", cityName: "Ruthilda, SK" }, { postalCode: "N0P 2G0", cityName: "Ruthven, ON" }, { postalCode: "T0H 3A0", cityName: "Rycroft, AB" }, { postalCode: "T0B 4A0", cityName: "Ryley, AB" }, { postalCode: "V8Z 1A1", cityName: "Saanich Central, BC" }, { postalCode: "V8N 0A6", cityName: "Saanich East, BC" }, { postalCode: "V8Y 1A1", cityName: "Saanich North, BC" }, { postalCode: "V8X 1B5", cityName: "Saanich South, BC" }, { postalCode: "V8P 1A1", cityName: "Saanich Southeast, BC" }, { postalCode: "V9E 1C8", cityName: "Saanich West, BC" }, { postalCode: "V8M 0A1", cityName: "Saanichton, BC" }, { postalCode: "V8Z 0A9", cityName: "Saanichton, BC" }, { postalCode: "B0T 1V0", cityName: "Sable River, NS" }, { postalCode: "J0J 2G0", cityName: "Sabrevois, QC" }, { postalCode: "P0V 2P0", cityName: "Sachigo Lake, ON" }, { postalCode: "X0E 0Z0", cityName: "Sachs Harbour, NT" }, { postalCode: "E4L 1G6", cityName: "Sackville, NB" }, { postalCode: "E4K 3C2", cityName: "Sackville Road, NB" }, { postalCode: "G0T 1Y0", cityName: "Sacre-Coeur-Saguenay, QC" }, { postalCode: "T0A 3T0", cityName: "Saddle Lake, AB" }, { postalCode: "G0V 1A0", cityName: "Saguenay- Lac-St-Jean (Alouette), QC" }, { postalCode: "E2S 0A2", cityName: "Saint John, NB" }, { postalCode: "E2L 0A1", cityName: "Saint John Central, NB" }, { postalCode: "E2J 1A1", cityName: "Saint John East, NB" }, { postalCode: "E2R 1A6", cityName: "Saint John Grandview, NB" }, { postalCode: "E2N 1A1", cityName: "Saint John Lakewood, NB" }, { postalCode: "E2S 2V2", cityName: "Saint John Loch Lomond, NB" }, { postalCode: "E2K 1A1", cityName: "Saint John North, NB" }, { postalCode: "E2H 0A4", cityName: "Saint John Northeast, Renforth, NB" }, { postalCode: "E2P 0A1", cityName: "Saint John Red Head, NB" }, { postalCode: "E2M 0A4", cityName: "Saint John West, NB" }, { postalCode: "E1X 0A4", cityName: "Saint Pons, NB" }, { postalCode: "G6K 1R7", cityName: "Saint- Redempteur, QC" }, { postalCode: "G3E 2K7", cityName: "Saint-&Eacute;mile, QC" }, { postalCode: "G0R 2M0", cityName: "Saint-Adalbert, QC" }, { postalCode: "G0J 2B0", cityName: "Saint-Adelme, QC" }, { postalCode: "G0X 2G0", cityName: "Saint-Adelphe-de-Champlain, QC" }, { postalCode: "J0T 2B0", cityName: "Saint-Adolphe-d\'Howard, QC" }, { postalCode: "J0A 1C0", cityName: "Saint-Adrien, QC" }, { postalCode: "G0N 1M0", cityName: "Saint-Adrien-d\'Irlande, QC" }, { postalCode: "G0S 1Z0", cityName: "Saint-Agapit, QC" }, { postalCode: "J0G 1K0", cityName: "Saint-Aime, QC" }, { postalCode: "G0T 1S0", cityName: "Saint-Aime-des-Lacs, QC" }, { postalCode: "G0A 3B0", cityName: "Saint-Alban, QC" }, { postalCode: "J0A 1E0", cityName: "Saint-Albert, QC" }, { postalCode: "J0J 1S0", cityName: "Saint-Alexandre-d\'Iberville, QC" }, { postalCode: "G0L 2G0", cityName: "Saint-Alexandre-de-Kamouraska, QC" }, { postalCode: "G0J 2C0", cityName: "Saint-Alexandre-des-Lacs, QC" }, { postalCode: "G0J 2E0", cityName: "Saint-Alexis-de-Matapedia, QC" }, { postalCode: "J0K 1T0", cityName: "Saint-Alexis-de-Montcalm, QC" }, { postalCode: "J0K 1V0", cityName: "Saint-Alexis-des-Monts, QC" }, { postalCode: "G0M 1L0", cityName: "Saint-Alfred, QC" }, { postalCode: "G0C 2V0", cityName: "Saint-Alphonse-de-Caplan, QC" }, { postalCode: "J0E 2A0", cityName: "Saint-Alphonse-de-Granby, QC" }, { postalCode: "J0K 1W0", cityName: "Saint-Alphonse-Rodriguez, QC" }, { postalCode: "J0L 1N0", cityName: "Saint-Amable, QC" }, { postalCode: "E8R 1P6", cityName: "Saint-Amateur, NB" }, { postalCode: "G7P 1N4", cityName: "Saint-Ambroise, QC" }, { postalCode: "G7P 0A3", cityName: "Saint-Ambroise, QC" }, { postalCode: "J0K 1C0", cityName: "Saint-Ambroise-de-Kildare, QC" }, { postalCode: "G0K 1H0", cityName: "Saint-Anaclet, QC" }, { postalCode: "E3Y 0A2", cityName: "Saint-Andre, NB" }, { postalCode: "J0V 1W0", cityName: "Saint-Andre-Avellin, QC" }, { postalCode: "J0V 1X0", cityName: "Saint-Andre-d\'Argenteuil, QC" }, { postalCode: "G0L 2H0", cityName: "Saint-Andre-de-Kamouraska, QC" }, { postalCode: "G0J 2G0", cityName: "Saint-Andre-de-Restigouche, QC" }, { postalCode: "G0W 2K0", cityName: "Saint-Andre-du-Lac-Saint-Jean, QC" }, { postalCode: "E4P 5Z2", cityName: "Saint-Andre-Leblanc, NB" }, { postalCode: "J0S 1L0", cityName: "Saint-Anicet, QC" }, { postalCode: "G0R 2N0", cityName: "Saint-Anselme, QC" }, { postalCode: "E4V 2B1", cityName: "Saint-Antoine, NB" }, { postalCode: "E4V 1A1", cityName: "Saint-Antoine, NB" }, { postalCode: "E4V 0B3", cityName: "Saint-Antoine Sud, NB" }, { postalCode: "J0S 1N0", cityName: "Saint-Antoine-Abbe, QC" }, { postalCode: "E4V 1K9", cityName: "Saint-Antoine-de-Kent, NB" }, { postalCode: "G0S 2C0", cityName: "Saint-Antoine-de-Tilly, QC" }, { postalCode: "J0L 1R0", cityName: "Saint-Antoine-sur-Richelieu, QC" }, { postalCode: "G0L 2J0", cityName: "Saint-Antonin, QC" }, { postalCode: "G0S 2E0", cityName: "Saint-Apollinaire, QC" }, { postalCode: "J0J 1T0", cityName: "Saint-Armand, QC" }, { postalCode: "G0L 2K0", cityName: "Saint-Arsene, QC" }, { postalCode: "E3N 0A9", cityName: "Saint-Arthur, NB" }, { postalCode: "G0R 2R0", cityName: "Saint-Aubert, QC" }, { postalCode: "G0G 2R0", cityName: "Saint-Augustin-Saguenay, QC" }, { postalCode: "J0H 1G0", cityName: "Saint-Barnabe-Sud, QC" }, { postalCode: "J0K 1X0", cityName: "Saint-Barthelemy, QC" }, { postalCode: "E7C 1A1", cityName: "Saint-Basile, NB" }, { postalCode: "G0A 3G0", cityName: "Saint-Basile, QC" }, { postalCode: "J3N 1Z7", cityName: "Saint-Basile- Le-Grand, QC" }, { postalCode: "G0M 1N0", cityName: "Saint-Benjamin, QC" }, { postalCode: "J0B 2M0", cityName: "Saint-Benoit-du-Lac, QC" }, { postalCode: "G0M 1P0", cityName: "Saint-Benoit-Labre, QC" }, { postalCode: "G0S 2G0", cityName: "Saint-Bernard, QC" }, { postalCode: "J0J 1V0", cityName: "Saint-Bernard-de-Lacolle, QC" }, { postalCode: "J0H 1C0", cityName: "Saint-Bernard-de-Michaudville, QC" }, { postalCode: "G0A 3J0", cityName: "Saint-Bernard-sur-Mer, QC" }, { postalCode: "J0J 1W0", cityName: "Saint-Blaise-sur-Richelieu, QC" }, { postalCode: "J0C 1C0", cityName: "Saint-Bonaventure, QC" }, { postalCode: "G0X 2L0", cityName: "Saint-Boniface-de-Shawinigan, QC" }, { postalCode: "J3V 6R7", cityName: "Saint-Bruno, QC" }, { postalCode: "J0Z 2G0", cityName: "Saint-Bruno-de-Guigues, QC" }, { postalCode: "G0L 2M0", cityName: "Saint-Bruno-de-Kamouraska, QC" }, { postalCode: "G0W 2L0", cityName: "Saint-Bruno-Lac-Saint-Jean, QC" }, { postalCode: "J0K 1Z0", cityName: "Saint-Calixte, QC" }, { postalCode: "J0A 1G0", cityName: "Saint-Camille, QC" }, { postalCode: "G0R 2S0", cityName: "Saint-Camille-de-Bellechasse, QC" }, { postalCode: "G0A 3L0", cityName: "Saint-Casimir, QC" }, { postalCode: "J0C 1G0", cityName: "Saint-Celestin, QC" }, { postalCode: "J0L 1T0", cityName: "Saint-Cesaire, QC" }, { postalCode: "E4W 0A8", cityName: "Saint-Charles, NB" }, { postalCode: "G0R 2T0", cityName: "Saint-Charles-de-Bellechasse, QC" }, { postalCode: "G0V 1G0", cityName: "Saint-Charles-de-Bourget, QC" }, { postalCode: "J2B 7T5", cityName: "Saint-Charles-de-Drummond, QC" }, { postalCode: "G0K 1K0", cityName: "Saint-Charles-Garnier, QC" }, { postalCode: "J0H 2G0", cityName: "Saint-Charles-sur-Richelieu, QC" }, { postalCode: "G6R 0B2", cityName: "Saint-Christophe-d\'Arthabaska, QC" }, { postalCode: "G6S 0E3", cityName: "Saint-Christophe-d\'Arthabaska, QC" }, { postalCode: "J0S 1R0", cityName: "Saint-Chrysostome, QC" }, { postalCode: "J0B 2N0", cityName: "Saint-Claude, QC" }, { postalCode: "G0L 2N0", cityName: "Saint-Clement, QC" }, { postalCode: "G0J 3N0", cityName: "Saint-Cleophas, QC" }, { postalCode: "J0K 2A0", cityName: "Saint-Cleophas-de-Brandon, QC" }, { postalCode: "J0P 1S0", cityName: "Saint-Clet, QC" }, { postalCode: "J5K 2W2", cityName: "Saint-Colomban, QC" }, { postalCode: "J0K 2B0", cityName: "Saint-Come, QC" }, { postalCode: "J5A 2T4", cityName: "Saint-Constant, QC" }, { postalCode: "J0K 2C0", cityName: "Saint-Cuthbert, QC" }, { postalCode: "G0L 2P0", cityName: "Saint-Cyprien, QC" }, { postalCode: "G0R 1B0", cityName: "Saint-Cyprien-des-Etchemins, QC" }, { postalCode: "J1Z 2K9", cityName: "Saint-Cyrille- De-Wendover, QC" }, { postalCode: "G0R 2W0", cityName: "Saint-Cyrille-de-l\'Islet, QC" }, { postalCode: "J0H 1J0", cityName: "Saint-Damase, QC" }, { postalCode: "G0J 2J0", cityName: "Saint-Damase-de-Matapedia, QC" }, { postalCode: "G0R 2X0", cityName: "Saint-Damase-des-Aulnaies, QC" }, { postalCode: "E4V 3E1", cityName: "Saint-Damien, NB" }, { postalCode: "J0K 2E0", cityName: "Saint-Damien, QC" }, { postalCode: "G0R 2Y0", cityName: "Saint-Damien-de-Buckland, QC" }, { postalCode: "J0G 1L0", cityName: "Saint-David, QC" }, { postalCode: "J0B 2P0", cityName: "Saint-Denis-de-Brompton, QC" }, { postalCode: "G0L 2R0", cityName: "Saint-Denis-de-la-Bouteillerie, QC" }, { postalCode: "J0H 1K0", cityName: "Saint-Denis-sur-Richelieu, QC" }, { postalCode: "J0K 2G0", cityName: "Saint-Didace, QC" }, { postalCode: "J0H 1L0", cityName: "Saint-Dominique, QC" }, { postalCode: "J0Y 2K0", cityName: "Saint-Dominique-du-Rosaire, QC" }, { postalCode: "G0K 1L0", cityName: "Saint-Donat, QC" }, { postalCode: "J0T 2C0", cityName: "Saint-Donat-de-Montcalm, QC" }, { postalCode: "J0C 1K0", cityName: "Saint-Edmond-de-Grantham, QC" }, { postalCode: "G0W 2M0", cityName: "Saint-Edmond-les-Plaines, QC" }, { postalCode: "E4S 0A3", cityName: "Saint-Edouard-de-Kent, NB" }, { postalCode: "G0S 1Y0", cityName: "Saint-Edouard-de-Lotbiniere, QC" }, { postalCode: "J0K 2H0", cityName: "Saint-Edouard-de-Maskinonge, QC" }, { postalCode: "J0L 1Y0", cityName: "Saint-Edouard-de-Napierville, QC" }, { postalCode: "G0X 1E0", cityName: "Saint-Elie-De-Caxton, QC" }, { postalCode: "G0L 2V0", cityName: "Saint-Eloi, QC" }, { postalCode: "J0G 1J0", cityName: "Saint-Elphege, QC" }, { postalCode: "G0S 2J0", cityName: "Saint-Elzear, QC" }, { postalCode: "G0C 2W0", cityName: "Saint-Elzear-de-Bonaventure, QC" }, { postalCode: "G0L 2W0", cityName: "Saint-Elzear-de-Temiscouata, QC" }, { postalCode: "J0T 1K0", cityName: "Saint-Emile-de-Suffolk, QC" }, { postalCode: "J0V 1Y0", cityName: "Saint-Emile-de-Suffolk, QC" }, { postalCode: "G0M 1R0", cityName: "Saint-Ephrem-de-Beauce, QC" }, { postalCode: "G0L 2X0", cityName: "Saint-Epiphane, QC" }, { postalCode: "J0K 2L0", cityName: "Saint-Esprit, QC" }, { postalCode: "G6J 2C7", cityName: "Saint-Etienne- De-Lauzon, QC" }, { postalCode: "J0S 1S0", cityName: "Saint-Etienne-de-Beauharnois, QC" }, { postalCode: "J0E 2E0", cityName: "Saint-Etienne-de-Bolton, QC" }, { postalCode: "G0X 2P0", cityName: "Saint-Etienne-des-Gres, QC" }, { postalCode: "G0W 1B0", cityName: "Saint-Eugene-D\'Argentenay, QC" }, { postalCode: "J0C 1J0", cityName: "Saint-Eugene-de-Grantham, QC" }, { postalCode: "J0Z 3L0", cityName: "Saint-Eugene-de-Guigues, QC" }, { postalCode: "G0L 2Y0", cityName: "Saint-Eusebe, QC" }, { postalCode: "J7R 0A1", cityName: "Saint-Eustache, QC" }, { postalCode: "J7P 5R5", cityName: "Saint-Eustache Northeast, QC" }, { postalCode: "J7R 7J9", cityName: "Saint-Eustache Southwest, QC" }, { postalCode: "G0M 1S0", cityName: "Saint-Evariste-de-Forsyth, QC" }, { postalCode: "G8K 3K9", cityName: "Saint-F&eacute;licien, QC" }, { postalCode: "G0L 2Z0", cityName: "Saint-Fabien, QC" }, { postalCode: "G0R 2J0", cityName: "Saint-Fabien-de-Panet, QC" }, { postalCode: "J0T 1J0", cityName: "Saint-Faustin-Lac-Carre, QC" }, { postalCode: "G0V 1M0", cityName: "Saint-Felix-d\'Otis, QC" }, { postalCode: "J0Y 1G0", cityName: "Saint-Felix-de-Dalquier, QC" }, { postalCode: "J0B 2T0", cityName: "Saint-Felix-de-Kingsey, QC" }, { postalCode: "J0K 2M0", cityName: "Saint-Felix-de-Valois, QC" }, { postalCode: "G0N 1N0", cityName: "Saint-Ferdinand, QC" }, { postalCode: "G0A 3R0", cityName: "Saint-Ferreol-les-Neiges, QC" }, { postalCode: "G0S 2M0", cityName: "Saint-Flavien, QC" }, { postalCode: "G0P 1G0", cityName: "Saint-Fortunat, QC" }, { postalCode: "H7B 1A2", cityName: "Saint-Fran&ccedil;ois, QC" }, { postalCode: "G0J 2N0", cityName: "Saint-Francois-d\'Assise, QC" }, { postalCode: "G0A 3S0", cityName: "Saint-Francois-d\'Orleans, QC" }, { postalCode: "G0W 1M0", cityName: "Saint-Francois-de-Sales, QC" }, { postalCode: "G0L 3C0", cityName: "Saint-Francois-Xavier-de-Viger, QC" }, { postalCode: "G0N 1P0", cityName: "Saint-Frederic, QC" }, { postalCode: "G0V 1S0", cityName: "Saint-Fulgence, QC" }, { postalCode: "J0K 2N0", cityName: "Saint-Gabriel-de-Brandon, QC" }, { postalCode: "G0K 1M0", cityName: "Saint-Gabriel-de-Rimouski, QC" }, { postalCode: "G0A 4S0", cityName: "Saint-Gabriel-de-Valcartier, QC" }, { postalCode: "G0W 2P0", cityName: "Saint-Gedeon, QC" }, { postalCode: "G0M 1T0", cityName: "Saint-Gedeon-de-Beauce, QC" }, { postalCode: "G5Z 0A1", cityName: "Saint-Georges, QC" }, { postalCode: "G5Y 9Z7", cityName: "Saint-Georges Central, QC" }, { postalCode: "G6A 1K2", cityName: "Saint-Georges Northwest, QC" }, { postalCode: "G5Z 1G7", cityName: "Saint-Georges Southeast, QC" }, { postalCode: "G9T 0A1", cityName: "Saint-Georges-de-Champlain, QC" }, { postalCode: "G0C 2X0", cityName: "Saint-Georges-de-Malbaie, QC" }, { postalCode: "J0A 1J0", cityName: "Saint-Georges-de-Windsor, QC" }, { postalCode: "G5Y 5B8", cityName: "Saint-Georges-Est, QC" }, { postalCode: "G6A 1A3", cityName: "Saint-Georges-Est, QC" }, { postalCode: "G9N 6K8", cityName: "Saint-Gerard-des-Laurentides, QC" }, { postalCode: "G0L 3G0", cityName: "Saint-Germain, QC" }, { postalCode: "J0C 1K0", cityName: "Saint-Germain-De-Grantham, QC" }, { postalCode: "G0R 3C0", cityName: "Saint-Gervais, QC" }, { postalCode: "G0A 3T0", cityName: "Saint-Gilbert, QC" }, { postalCode: "G0S 2P0", cityName: "Saint-Gilles, QC" }, { postalCode: "G0C 3C0", cityName: "Saint-Godefroi, QC" }, { postalCode: "E4V 0C1", cityName: "Saint-Gregoire, NB" }, { postalCode: "J0C 1L0", cityName: "Saint-Guillaume, QC" }, { postalCode: "G0K 1W0", cityName: "Saint-Guy, QC" }, { postalCode: "H4C 3R8", cityName: "Saint-Henri, QC" }, { postalCode: "G0R 3E0", cityName: "Saint-Henri-de-Levis, QC" }, { postalCode: "J0B 2W0", cityName: "Saint-Hermenegilde, QC" }, { postalCode: "G0A 3V0", cityName: "Saint-Hilarion, QC" }, { postalCode: "J8A 3S5", cityName: "Saint-Hippolyte, QC" }, { postalCode: "G0V 1L0", cityName: "Saint-Honore-de-Chicoutimi, QC" }, { postalCode: "G0M 1V0", cityName: "Saint-Honore-de-Shenley, QC" }, { postalCode: "G0L 3K0", cityName: "Saint-Honore-de-Temiscouata, QC" }, { postalCode: "J3Y 9K6", cityName: "Saint-Hubert Central, QC" }, { postalCode: "J3Z 1K1", cityName: "Saint-Hubert East, QC" }, { postalCode: "J4T 3V2", cityName: "Saint-Hubert West, QC" }, { postalCode: "G0L 3L0", cityName: "Saint-Hubert-Riviere-du-Loup, QC" }, { postalCode: "J0H 1N0", cityName: "Saint-Hugues, QC" }, { postalCode: "J2T 5K2", cityName: "Saint-Hyacinthe East, QC" }, { postalCode: "J2R 1L4", cityName: "Saint-Hyacinthe Northwest, QC" }, { postalCode: "J2S 9E1", cityName: "Saint-Hyacinthe Southwest, QC" }, { postalCode: "E4X 0A3", cityName: "Saint-Ignace, NB" }, { postalCode: "J0K 2P0", cityName: "Saint-Ignace-de-Loyola, QC" }, { postalCode: "J0J 1Y0", cityName: "Saint-Ignace-de-Stanbridge, QC" }, { postalCode: "E1X 2A9", cityName: "Saint-Irenee, NB" }, { postalCode: "G0T 1V0", cityName: "Saint-Irenee, QC" }, { postalCode: "E8M 0A1", cityName: "Saint-Isidore, NB" }, { postalCode: "E8M 0A2", cityName: "Saint-Isidore, NB" }, { postalCode: "G0S 2S0", cityName: "Saint-Isidore, QC" }, { postalCode: "J0B 2X0", cityName: "Saint-Isidore-de-Clifton, QC" }, { postalCode: "J0L 2A0", cityName: "Saint-Isidore-de-Laprairie, QC" }, { postalCode: "J7Y 5J2", cityName: "Saint-J&eacute;r&ocirc;me North, QC" }, { postalCode: "J7Z 7H7", cityName: "Saint-J&eacute;r&ocirc;me Southeast, QC" }, { postalCode: "J5L 2K8", cityName: "Saint-J&eacute;r&ocirc;me West, QC" }, { postalCode: "E7B 1A1", cityName: "Saint-Jacques, NB" }, { postalCode: "J0K 2R0", cityName: "Saint-Jacques, QC" }, { postalCode: "G0N 1J0", cityName: "Saint-Jacques-de-Leeds, QC" }, { postalCode: "J0J 1Z0", cityName: "Saint-Jacques-le-Mineur, QC" }, { postalCode: "G6Z 3L7", cityName: "Saint-Jean- Chrysostome, QC" }, { postalCode: "J3B 8T3", cityName: "Saint-Jean- sur-Richelieu Central, QC" }, { postalCode: "J2X 5W5", cityName: "Saint-Jean- sur-Richelieu East, QC" }, { postalCode: "J3A 2B2", cityName: "Saint-Jean- sur-Richelieu North, QC" }, { postalCode: "J2Y 1M5", cityName: "Saint-Jean- sur-Richelieu West, QC" }, { postalCode: "J0L 2B0", cityName: "Saint-Jean-Baptiste, QC" }, { postalCode: "G0A 3W0", cityName: "Saint-Jean-d\'Orleans, QC" }, { postalCode: "G6G 0A1", cityName: "Saint-Jean-De-Brebeuf, QC" }, { postalCode: "G0J 2R0", cityName: "Saint-Jean-de-Cherbourg, QC" }, { postalCode: "G0L 3M0", cityName: "Saint-Jean-de-Dieu, QC" }, { postalCode: "G0L 3N0", cityName: "Saint-Jean-de-la-Lande, QC" }, { postalCode: "G0J 2S0", cityName: "Saint-Jean-de-Matapedia, QC" }, { postalCode: "J0K 2S0", cityName: "Saint-Jean-de-Matha, QC" }, { postalCode: "G0X 2V0", cityName: "Saint-Jean-des-Piles, QC" }, { postalCode: "G0R 3G0", cityName: "Saint-Jean-Port-Joli, QC" }, { postalCode: "J0J 1R0", cityName: "Saint-Jean-Sur-Richelieu, QC" }, { postalCode: "J1Z 2A1", cityName: "Saint-Joachim-de-Courval, QC" }, { postalCode: "J0E 2G0", cityName: "Saint-Joachim-de-Shefford, QC" }, { postalCode: "G0C 2Y0", cityName: "Saint-Jogues, QC" }, { postalCode: "G0S 2V0", cityName: "Saint-Joseph-de-Beauce, QC" }, { postalCode: "G0N 1B0", cityName: "Saint-Joseph-de-Coleraine, QC" }, { postalCode: "J0B 3J0", cityName: "Saint-Joseph-De-Ham-Sud, QC" }, { postalCode: "G0L 3P0", cityName: "Saint-Joseph-de-Kamouraska, QC" }, { postalCode: "E4S 0B6", cityName: "Saint-Joseph-de-Kent, NB" }, { postalCode: "G0A 3Y0", cityName: "Saint-Joseph-De-La-Rive, QC" }, { postalCode: "G5H 3K6", cityName: "Saint-Joseph-de-Lepage, QC" }, { postalCode: "J0N 1M0", cityName: "Saint-Joseph-du-Lac, QC" }, { postalCode: "J0H 1P0", cityName: "Saint-Jude, QC" }, { postalCode: "G0N 1R0", cityName: "Saint-Jules, QC" }, { postalCode: "G0N 1B0", cityName: "Saint-Julien, QC" }, { postalCode: "G0R 3H0", cityName: "Saint-Just-de-Bretenieres, QC" }, { postalCode: "G0L 3R0", cityName: "Saint-Juste-du-Lac, QC" }, { postalCode: "J0K 2V0", cityName: "Saint-Justin, QC" }, { postalCode: "H1P 2V8", cityName: "Saint-L&eacute;onard North, QC" }, { postalCode: "H1S 9Y9", cityName: "Saint-L&eacute;onard Southeast, QC" }, { postalCode: "H1R 4A4", cityName: "Saint-L&eacute;onard West, QC" }, { postalCode: "J4R 2V9", cityName: "Saint-Lambert Central, QC" }, { postalCode: "J4P 3T3", cityName: "Saint-Lambert North, QC" }, { postalCode: "J4S 1X4", cityName: "Saint-Lambert South, QC" }, { postalCode: "G0S 2W0", cityName: "Saint-Lambert-de-Lauzon, QC" }, { postalCode: "E8K 3K1", cityName: "Saint-Laurent, NB" }, { postalCode: "H4K 1H9", cityName: "Saint-Laurent, QC" }, { postalCode: "H4N 0A1", cityName: "Saint-Laurent, QC" }, { postalCode: "H4P 1A1", cityName: "Saint-Laurent, QC" }, { postalCode: "H4T 0A1", cityName: "Saint-Laurent, QC" }, { postalCode: "H4R 3N1", cityName: "Saint-Laurent Central, QC" }, { postalCode: "H4M 2Z5", cityName: "Saint-Laurent East, QC" }, { postalCode: "H4L 5P4", cityName: "Saint-Laurent Inner Northeast, QC" }, { postalCode: "E8K 3L2", cityName: "Saint-Laurent Nord, NB" }, { postalCode: "H4N 3M6", cityName: "Saint-Laurent Outer Northeast, QC" }, { postalCode: "H4T 4L1", cityName: "Saint-Laurent Southeast, QC" }, { postalCode: "H4S 2G1", cityName: "Saint-Laurent Southwest, QC" }, { postalCode: "G0A 3Z0", cityName: "Saint-Laurent-Ile-d\'Orleans, QC" }, { postalCode: "J7T 0A1", cityName: "Saint-Lazare, QC" }, { postalCode: "G0R 3J0", cityName: "Saint-Lazare-de-Bellechasse, QC" }, { postalCode: "G0J 2V0", cityName: "Saint-Leandre, QC" }, { postalCode: "E8N 2M9", cityName: "Saint-Leolin, NB" }, { postalCode: "J0K 2W0", cityName: "Saint-Leon, QC" }, { postalCode: "G0J 2W0", cityName: "Saint-Leon-le-Grand, QC" }, { postalCode: "E7E 1M5", cityName: "Saint-Leonard, NB" }, { postalCode: "H1P 0A1", cityName: "Saint-Leonard, QC" }, { postalCode: "H1S 0A1", cityName: "Saint-Leonard, QC" }, { postalCode: "H1T 1G5", cityName: "Saint-Leonard, QC" }, { postalCode: "J0C 1M0", cityName: "Saint-Leonard-d\'Aston, QC" }, { postalCode: "G0A 4A0", cityName: "Saint-Leonard-de-Portneuf, QC" }, { postalCode: "E7E 0A2", cityName: "Saint-Leonard-Parent, NB" }, { postalCode: "J0H 1R0", cityName: "Saint-Liboire, QC" }, { postalCode: "J0K 2X0", cityName: "Saint-Liguori, QC" }, { postalCode: "J5M 3E7", cityName: "Saint-Lin- Laurentides, QC" }, { postalCode: "E4X 0A1", cityName: "Saint-Louis, NB" }, { postalCode: "J0G 1K0", cityName: "Saint-Louis, QC" }, { postalCode: "G0Z 1B0", cityName: "Saint-Louis-de-Blandford, QC" }, { postalCode: "J0S 1T0", cityName: "Saint-Louis-de-Gonzague, QC" }, { postalCode: "G0L 2W0", cityName: "Saint-Louis-du-Ha-Ha, QC" }, { postalCode: "J2W 1B9", cityName: "Saint-Luc, QC" }, { postalCode: "G0R 1L0", cityName: "Saint-Luc-De-Bellechasse, QC" }, { postalCode: "G0X 2X0", cityName: "Saint-Luc-de-Vincennes, QC" }, { postalCode: "J0C 1N0", cityName: "Saint-Lucien, QC" }, { postalCode: "G0M 1W0", cityName: "Saint-Ludger, QC" }, { postalCode: "G0W 2B0", cityName: "Saint-Ludger-de-Milot, QC" }, { postalCode: "G0R 3M0", cityName: "Saint-Magloire, QC" }, { postalCode: "J2B 8A8", cityName: "Saint-Majorique, QC" }, { postalCode: "G0R 3N0", cityName: "Saint-Malachie, QC" }, { postalCode: "J0B 2Y0", cityName: "Saint-Malo, QC" }, { postalCode: "J0Y 1J0", cityName: "Saint-Marc-de-Figuery, QC" }, { postalCode: "G0A 4B0", cityName: "Saint-Marc-des-Carrieres, QC" }, { postalCode: "G0L 1T0", cityName: "Saint-Marc-du-Lac-Long, QC" }, { postalCode: "J0L 2E0", cityName: "Saint-Marc-sur-Richelieu, QC" }, { postalCode: "J0H 1T0", cityName: "Saint-Marcel-de-Richelieu, QC" }, { postalCode: "G0K 1R0", cityName: "Saint-Marcellin, QC" }, { postalCode: "G0M 1B0", cityName: "Saint-Martin, QC" }, { postalCode: "E8A 0A9", cityName: "Saint-Martin-de-Restigouche, NB" }, { postalCode: "J3L 0B9", cityName: "Saint-Mathias-sur-Richelieu, QC" }, { postalCode: "J0Y 1M0", cityName: "Saint-Mathieu-d\'Harricana, QC" }, { postalCode: "J3G 0B3", cityName: "Saint-Mathieu-de-Beloeil, QC" }, { postalCode: "J0L 2H0", cityName: "Saint-Mathieu-de-Laprairie, QC" }, { postalCode: "G0L 3T0", cityName: "Saint-Mathieu-de-Rioux, QC" }, { postalCode: "G0X 1N0", cityName: "Saint-Mathieu-du-Parc, QC" }, { postalCode: "E8E 0A7", cityName: "Saint-Maure, NB" }, { postalCode: "E4S 1R8", cityName: "Saint-Maurice, NB" }, { postalCode: "G0X 2X0", cityName: "Saint-Maurice, QC" }, { postalCode: "G0L 3V0", cityName: "Saint-Medard, QC" }, { postalCode: "J0L 2J0", cityName: "Saint-Michel, QC" }, { postalCode: "H2A 3N8", cityName: "Saint-Michel East, QC" }, { postalCode: "H1Z 4P6", cityName: "Saint-Michel West, QC" }, { postalCode: "G0R 3S0", cityName: "Saint-Michel-de-Bellechasse, QC" }, { postalCode: "J0K 3B0", cityName: "Saint-Michel-des-Saints, QC" }, { postalCode: "G0L 3W0", cityName: "Saint-Modeste, QC" }, { postalCode: "G0J 2Z0", cityName: "Saint-Moise, QC" }, { postalCode: "G0X 2Y0", cityName: "Saint-Narcisse, QC" }, { postalCode: "G0S 1W0", cityName: "Saint-Narcisse-de-Beaurivage, QC" }, { postalCode: "G0K 1S0", cityName: "Saint-Narcisse-de-Rimouski, QC" }, { postalCode: "J0H 1V0", cityName: "Saint-Nazaire-d\'Acton, QC" }, { postalCode: "G0R 3T0", cityName: "Saint-Nazaire-De-Dorchester, QC" }, { postalCode: "G0R 3V0", cityName: "Saint-Neree, QC" }, { postalCode: "J2B 7M6", cityName: "Saint-Nicephore, QC" }, { postalCode: "G7A 5K3", cityName: "Saint-Nicolas, QC" }, { postalCode: "G0J 3A0", cityName: "Saint-Noel, QC" }, { postalCode: "E4S 2M5", cityName: "Saint-Norbert, NB" }, { postalCode: "J0K 3C0", cityName: "Saint-Norbert, QC" }, { postalCode: "G0P 1B0", cityName: "Saint-Norbert-d\'Arthabaska, QC" }, { postalCode: "G0S 3A0", cityName: "Saint-Odilon, QC" }, { postalCode: "G0C 2Z0", cityName: "Saint-Omer, QC" }, { postalCode: "G0R 4R0", cityName: "Saint-Omer-l\'Islet, QC" }, { postalCode: "J0G 1P0", cityName: "Saint-Ours, QC" }, { postalCode: "G0L 3X0", cityName: "Saint-Pacome, QC" }, { postalCode: "G0R 3X0", cityName: "Saint-Pamphile, QC" }, { postalCode: "G0L 3Y0", cityName: "Saint-Pascal, QC" }, { postalCode: "K0A 3N0", cityName: "Saint-Pascal-Baylon, ON" }, { postalCode: "E4T 0A6", cityName: "Saint-Paul, NB" }, { postalCode: "J0K 3E0", cityName: "Saint-Paul, QC" }, { postalCode: "J6E 3H2", cityName: "Saint-Paul, QC" }, { postalCode: "J0E 1A0", cityName: "Saint-Paul-D\'Abbotsford, QC" }, { postalCode: "G0L 3Z0", cityName: "Saint-Paul-de-la-Croix, QC" }, { postalCode: "G0R 3Y0", cityName: "Saint-Paul-de-Montminy, QC" }, { postalCode: "J0K 3G0", cityName: "Saint-Paulin, QC" }, { postalCode: "G0R 4A0", cityName: "Saint-Philemon, QC" }, { postalCode: "G0M 1X0", cityName: "Saint-Philibert, QC" }, { postalCode: "E1H 0A1", cityName: "Saint-Philippe, NB" }, { postalCode: "J0L 2K0", cityName: "Saint-Philippe, QC" }, { postalCode: "G0L 4A0", cityName: "Saint-Philippe-de-Neri, QC" }, { postalCode: "J0H 1W0", cityName: "Saint-Pie, QC" }, { postalCode: "J0G 1R0", cityName: "Saint-Pie-de-Guire, QC" }, { postalCode: "H8R 4E1", cityName: "Saint-Pierre, QC" }, { postalCode: "G0P 1K0", cityName: "Saint-Pierre-Baptiste, QC" }, { postalCode: "G0N 1T0", cityName: "Saint-Pierre-de-Broughton, QC" }, { postalCode: "G0L 4B0", cityName: "Saint-Pierre-de-Lamy, QC" }, { postalCode: "G0A 4E0", cityName: "Saint-Pierre-Ile-d\'Orleans, QC" }, { postalCode: "G0X 2Z0", cityName: "Saint-Pierre-les-Becquets, QC" }, { postalCode: "J0V 2B0", cityName: "Saint-Placide, QC" }, { postalCode: "J0P 1X0", cityName: "Saint-Polycarpe, QC" }, { postalCode: "G8J 2B8", cityName: "Saint-Prime, QC" }, { postalCode: "G0X 3A0", cityName: "Saint-Prosper, QC" }, { postalCode: "G0M 1Y0", cityName: "Saint-Prosper-de-Dorchester, QC" }, { postalCode: "E8A 1E5", cityName: "Saint-Quentin, NB" }, { postalCode: "G0R 4C0", cityName: "Saint-Raphael, QC" }, { postalCode: "G3L 5B6", cityName: "Saint-Raymond, QC" }, { postalCode: "J0L 2L0", cityName: "Saint-Remi, QC" }, { postalCode: "J0T 1G0", cityName: "Saint-Remi-D\'Amherst, QC" }, { postalCode: "J0A 1K0", cityName: "Saint-Remi-de-Tingwick, QC" }, { postalCode: "G0M 1Z0", cityName: "Saint-Rene, QC" }, { postalCode: "G0J 3E0", cityName: "Saint-Rene-de-Matane, QC" }, { postalCode: "J0G 1S0", cityName: "Saint-Robert, QC" }, { postalCode: "G0M 2E0", cityName: "Saint-Robert-Bellarmin, QC" }, { postalCode: "J0K 3H0", cityName: "Saint-Roch-de-l\'Achigan, QC" }, { postalCode: "G0X 2E0", cityName: "Saint-Roch-De-Mekinac, QC" }, { postalCode: "J0L 2M0", cityName: "Saint-Roch-de-Richelieu, QC" }, { postalCode: "G0R 4E0", cityName: "Saint-Roch-des-Aulnaies, QC" }, { postalCode: "J0K 3H0", cityName: "Saint-Roch-Ouest, QC" }, { postalCode: "G0Y 1L0", cityName: "Saint-Romain, QC" }, { postalCode: "G6W 0A4", cityName: "Saint-Romuald, QC" }, { postalCode: "G0Z 1K0", cityName: "Saint-Rosaire, QC" }, { postalCode: "G0Z 1G0", cityName: "Saint-Samuel, QC" }, { postalCode: "E8L 1K9", cityName: "Saint-Sauveur, NB" }, { postalCode: "J0R 1R0", cityName: "Saint-Sauveur, QC" }, { postalCode: "J0J 2C0", cityName: "Saint-Sebastien, QC" }, { postalCode: "G0Y 1M0", cityName: "Saint-Sebastien-de-Frontenac, QC" }, { postalCode: "G0X 3B0", cityName: "Saint-Severe, QC" }, { postalCode: "G0N 1V0", cityName: "Saint-Severin-de-Beauce, QC" }, { postalCode: "G0T 1X0", cityName: "Saint-Simeon, QC" }, { postalCode: "G0C 3A0", cityName: "Saint-Simeon-de-Bonaventure, QC" }, { postalCode: "E8P 0A2", cityName: "Saint-Simon, NB" }, { postalCode: "J0H 1Y0", cityName: "Saint-Simon-de-Bagot, QC" }, { postalCode: "G0L 4C0", cityName: "Saint-Simon-de-Rimouski, QC" }, { postalCode: "G0M 1K0", cityName: "Saint-Simon-Les-Mines, QC" }, { postalCode: "J5J 2Z1", cityName: "Saint-Sophie, QC" }, { postalCode: "G8L 7A1", cityName: "Saint-Stanislas, QC" }, { postalCode: "G0X 3E0", cityName: "Saint-Stanislas-de-Champlain, QC" }, { postalCode: "J0S 1W0", cityName: "Saint-Stanislas-de-Kostka, QC" }, { postalCode: "J5W 0H2", cityName: "Saint-Sulpice, QC" }, { postalCode: "G0Z 1H0", cityName: "Saint-Sylvere, QC" }, { postalCode: "G0S 3C0", cityName: "Saint-Sylvestre, QC" }, { postalCode: "J0P 1Y0", cityName: "Saint-Telesphore, QC" }, { postalCode: "G0J 3G0", cityName: "Saint-Tharcisius, QC" }, { postalCode: "J0H 1Z0", cityName: "Saint-Theodore-d\'Acton, QC" }, { postalCode: "G0M 2A0", cityName: "Saint-Theophile, QC" }, { postalCode: "J0K 3L0", cityName: "Saint-Thomas, QC" }, { postalCode: "E4S 4Y5", cityName: "Saint-Thomas-de-Kent, NB" }, { postalCode: "G0W 1P0", cityName: "Saint-Thomas-Didyme, QC" }, { postalCode: "G0A 4H0", cityName: "Saint-Thuribe, QC" }, { postalCode: "G0X 3H0", cityName: "Saint-Tite, QC" }, { postalCode: "G0A 4J0", cityName: "Saint-Tite-des-Caps, QC" }, { postalCode: "G0A 4L0", cityName: "Saint-Ubalde, QC" }, { postalCode: "G0J 3H0", cityName: "Saint-Ulric, QC" }, { postalCode: "G0A 4K0", cityName: "Saint-Urbain-de-Charlevoix, QC" }, { postalCode: "J0S 1Y0", cityName: "Saint-Urbain-Premier, QC" }, { postalCode: "J0J 2E0", cityName: "Saint-Valentin, QC" }, { postalCode: "G0P 1M0", cityName: "Saint-Valere, QC" }, { postalCode: "G0L 4E0", cityName: "Saint-Valerien-de-Rimouski, QC" }, { postalCode: "G0R 4J0", cityName: "Saint-Vallier, QC" }, { postalCode: "G0J 3J0", cityName: "Saint-Vianney, QC" }, { postalCode: "G0M 2B0", cityName: "Saint-Victor, QC" }, { postalCode: "H7C 2S3", cityName: "Saint-Vincent-de-Paul, QC" }, { postalCode: "J0Z 3M0", cityName: "Saint-Vital-de-Clermont, QC" }, { postalCode: "G0Z 1J0", cityName: "Saint-Wenceslas, QC" }, { postalCode: "E9G 2S5", cityName: "Saint-Wilfred, NB" }, { postalCode: "G0M 2C0", cityName: "Saint-Zacharie, QC" }, { postalCode: "J0K 3N0", cityName: "Saint-Zenon, QC" }, { postalCode: "J0G 1V0", cityName: "Saint-Zephirin-de-Courval, QC" }, { postalCode: "J0P 1Z0", cityName: "Saint-Zotique, QC" }, { postalCode: "E1X 2W1", cityName: "Sainte Rose, NB" }, { postalCode: "J8B 3N1", cityName: "Sainte-Ad*egrave;le, QC" }, { postalCode: "J8C 3P9", cityName: "Sainte-Agathe- Des-Monts, QC" }, { postalCode: "G0S 2A0", cityName: "Sainte-Agathe-de-Lotbiniere, QC" }, { postalCode: "J8C 2Z7", cityName: "Sainte-Agathe-Nord, QC" }, { postalCode: "J0S 1L0", cityName: "Sainte-Agnes-de-Dundee, QC" }, { postalCode: "G0J 2H0", cityName: "Sainte-Angele-de-Merici, QC" }, { postalCode: "J0L 1P0", cityName: "Sainte-Angele-de-Monnoir, QC" }, { postalCode: "J0K 1R0", cityName: "Sainte-Angele-de-Premont, QC" }, { postalCode: "E2A 6Z2", cityName: "Sainte-Anne Gloucester Co, NB" }, { postalCode: "G4V 3T2", cityName: "Sainte-Anne- Des-Monts, QC" }, { postalCode: "H9X 4B4", cityName: "Sainte-Anne-De- Bellevue, QC" }, { postalCode: "G0A 3C0", cityName: "Sainte-Anne-de-Beaupre, QC" }, { postalCode: "H9X 0A1", cityName: "Sainte-Anne-de-Bellevue, QC" }, { postalCode: "E4S 1A1", cityName: "Sainte-Anne-de-Kent, NB" }, { postalCode: "G0X 2J0", cityName: "Sainte-Anne-de-la-Perade, QC" }, { postalCode: "J0E 2B0", cityName: "Sainte-Anne-de-la-Rochelle, QC" }, { postalCode: "E7E 0A7", cityName: "Sainte-Anne-de-Madawaska, NB" }, { postalCode: "J3P 1J9", cityName: "Sainte-Anne-de-Sorel, QC" }, { postalCode: "J0R 1B0", cityName: "Sainte-Anne-des-Lacs, QC" }, { postalCode: "J0N 1H0", cityName: "Sainte-Anne-Des-Plaines, QC" }, { postalCode: "J0W 1V0", cityName: "Sainte-Anne-du-Lac, QC" }, { postalCode: "G0Z 1C0", cityName: "Sainte-Anne-Du-Sault, QC" }, { postalCode: "G0R 2P0", cityName: "Sainte-Apolline-de-Patton, QC" }, { postalCode: "G0M 1M0", cityName: "Sainte-Aurelie, QC" }, { postalCode: "J0S 1P0", cityName: "Sainte-Barbe, QC" }, { postalCode: "J0K 1Y0", cityName: "Sainte-Beatrix, QC" }, { postalCode: "J0J 1X0", cityName: "Sainte-Brigide-d\'Iberville, QC" }, { postalCode: "G0A 3K0", cityName: "Sainte-Brigitte-de-Laval, QC" }, { postalCode: "J0C 1E0", cityName: "Sainte-Brigitte-des-Saults, QC" }, { postalCode: "J5C 0B1", cityName: "Sainte-Catherine, QC" }, { postalCode: "J0B 1W0", cityName: "Sainte-Catherine-De-Hatley, QC" }, { postalCode: "E8T 2X2", cityName: "Sainte-Cecile, NB" }, { postalCode: "G0X 2M0", cityName: "Sainte-Cecile-de-Levrard, QC" }, { postalCode: "J0X 2W0", cityName: "Sainte-Cecile-de-Masham, QC" }, { postalCode: "J0E 2C0", cityName: "Sainte-Cecile-de-Milton, QC" }, { postalCode: "G0Y 1J0", cityName: "Sainte-Cecile-de-Whitton, QC" }, { postalCode: "J0H 1H0", cityName: "Sainte-Christine, QC" }, { postalCode: "G0R 2V0", cityName: "Sainte-Claire, QC" }, { postalCode: "J0L 1W0", cityName: "Sainte-Clotilde-de-Chateauguay, QC" }, { postalCode: "J0A 1H0", cityName: "Sainte-Clotilde-de-Horton, QC" }, { postalCode: "G0S 2H0", cityName: "Sainte-Croix, QC" }, { postalCode: "H7X 4J2", cityName: "Sainte-Doroth&eacute;e, QC" }, { postalCode: "H7X 1A4", cityName: "Sainte-Dorothee, QC" }, { postalCode: "J0B 2R0", cityName: "Sainte-Edwidge, QC" }, { postalCode: "J0K 2J0", cityName: "Sainte-Elisabeth, QC" }, { postalCode: "G8L 8A1", cityName: "Sainte-Elisabeth-de-Proulx, QC" }, { postalCode: "J0A 1M0", cityName: "Sainte-Elizabeth-De-Warwick, QC" }, { postalCode: "J0K 2K0", cityName: "Sainte-Emelie-de-l\'Energie, QC" }, { postalCode: "G0Z 1E0", cityName: "Sainte-Eulalie, QC" }, { postalCode: "G0R 2Z0", cityName: "Sainte-Euphemie, QC" }, { postalCode: "G0A 3P0", cityName: "Sainte-Famille, QC" }, { postalCode: "G0J 2K0", cityName: "Sainte-Felicite, QC" }, { postalCode: "G0R 4P0", cityName: "Sainte-Felicite-de-l\'Islet, QC" }, { postalCode: "G0J 2L0", cityName: "Sainte-Flavie, QC" }, { postalCode: "G0J 2M0", cityName: "Sainte-Florence, QC" }, { postalCode: "G1V 5B9", cityName: "Sainte-Foy Northeast, QC" }, { postalCode: "G1W 5A7", cityName: "Sainte-Foy Southeast, QC" }, { postalCode: "G1X 4Z7", cityName: "Sainte-Foy West, QC" }, { postalCode: "G0L 3B0", cityName: "Sainte-Francoise, QC" }, { postalCode: "G0S 2N0", cityName: "Sainte-Francoise-de-Lotbiniere, QC" }, { postalCode: "H9H 5N3", cityName: "Sainte-Genevi&egrave;ve, QC" }, { postalCode: "G0X 2R0", cityName: "Sainte-Genevieve-De-Batiscan, QC" }, { postalCode: "J0Z 1M0", cityName: "Sainte-Germaine-Boule, QC" }, { postalCode: "J0Y 2L0", cityName: "Sainte-Gertrude-Manneville, QC" }, { postalCode: "G0W 2R0", cityName: "Sainte-Hedwidge-de-Roberval, QC" }, { postalCode: "J0H 1M0", cityName: "Sainte-Helene-de-Bagot, QC" }, { postalCode: "G0S 1E0", cityName: "Sainte-Helene-de-Breakeyville, QC" }, { postalCode: "G0P 1H0", cityName: "Sainte-Helene-de-Chester, QC" }, { postalCode: "G0L 3J0", cityName: "Sainte-Helene-de-Kamouraska, QC" }, { postalCode: "G0S 2R0", cityName: "Sainte-Henedine, QC" }, { postalCode: "J3E 3S1", cityName: "Sainte-Julie, QC" }, { postalCode: "J0K 2T0", cityName: "Sainte-Julienne, QC" }, { postalCode: "G0R 1Y0", cityName: "Sainte-Justine, QC" }, { postalCode: "J0P 1T0", cityName: "Sainte-Justine-de-Newton, QC" }, { postalCode: "E8K 2W8", cityName: "Sainte-Louise, NB" }, { postalCode: "G0R 3K0", cityName: "Sainte-Louise, QC" }, { postalCode: "G0K 1P0", cityName: "Sainte-Luce, QC" }, { postalCode: "G0R 3L0", cityName: "Sainte-Lucie-de-Beauregard, QC" }, { postalCode: "J0T 2J0", cityName: "Sainte-Lucie-des-Laurentides, QC" }, { postalCode: "J0H 1S0", cityName: "Sainte-Madeleine, QC" }, { postalCode: "J0K 2Y0", cityName: "Sainte-Marcelline-de-Kildare, QC" }, { postalCode: "G0J 2Y0", cityName: "Sainte-Marguerite-Marie, QC" }, { postalCode: "G6E 3V6", cityName: "Sainte-Marie, QC" }, { postalCode: "G0X 2W0", cityName: "Sainte-Marie-de-Blandford, QC" }, { postalCode: "E8T 0A3", cityName: "Sainte-Marie-Saint-Raphael, NB" }, { postalCode: "J0K 2Z0", cityName: "Sainte-Marie-Salome, QC" }, { postalCode: "J0P 1W0", cityName: "Sainte-Marthe, QC" }, { postalCode: "J0N 1P0", cityName: "Sainte-Marthe-sur-le-Lac, QC" }, { postalCode: "J0S 1V0", cityName: "Sainte-Martine, QC" }, { postalCode: "J0K 3A0", cityName: "Sainte-Melanie, QC" }, { postalCode: "J0G 1N0", cityName: "Sainte-Monique, QC" }, { postalCode: "G0W 2T0", cityName: "Sainte-Monique-Lac-Saint-Jean, QC" }, { postalCode: "G0J 3C0", cityName: "Sainte-Paule, QC" }, { postalCode: "J0C 1R0", cityName: "Sainte-Perpetue, QC" }, { postalCode: "G0R 3Z0", cityName: "Sainte-Perpetue-de-l\'Islet, QC" }, { postalCode: "G0A 4C0", cityName: "Sainte-Petronille, QC" }, { postalCode: "G0L 4G0", cityName: "Sainte-Rita, QC" }, { postalCode: "H7L 4B3", cityName: "Sainte-Rose, QC" }, { postalCode: "H7L 2Y8", cityName: "Sainte-Rose, QC" }, { postalCode: "G0R 4G0", cityName: "Sainte-Rose-de-Watford, QC" }, { postalCode: "G0V 1T0", cityName: "Sainte-Rose-du-Nord, QC" }, { postalCode: "E8K 0A5", cityName: "Sainte-Rosette, NB" }, { postalCode: "J0J 2B0", cityName: "Sainte-Sabine, QC" }, { postalCode: "G0R 4H0", cityName: "Sainte-Sabine-de-Bellechasse, QC" }, { postalCode: "J0A 1E0", cityName: "Sainte-Seraphine, QC" }, { postalCode: "G0P 1L0", cityName: "Sainte-Sophie-d\'Halifax, QC" }, { postalCode: "G0X 3C0", cityName: "Sainte-Sophie-de-Levrard, QC" }, { postalCode: "J7E 5X1", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville Central, QC" }, { postalCode: "J7A 4H8", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville East, QC" }, { postalCode: "J7B 2A1", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville North, QC" }, { postalCode: "J6Z 4X1", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville Northeast, QC" }, { postalCode: "J7C 6A6", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville Northwest, QC" }, { postalCode: "J7G 3J1", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville South, QC" }, { postalCode: "J7H 2T1", cityName: "Sainte-Th&eacute;r&egrave;se- de-Blainville Southwest, QC" }, { postalCode: "G0X 3G0", cityName: "Sainte-Thecle, QC" }, { postalCode: "J7G 2N3", cityName: "Sainte-Therese, QC" }, { postalCode: "E8K 2W2", cityName: "Sainte-Therese Sud, NB" }, { postalCode: "G0C 3B0", cityName: "Sainte-Therese-de-Gaspe, QC" }, { postalCode: "J0X 2X0", cityName: "Sainte-Therese-de-la-Gatineau, QC" }, { postalCode: "J0K 3M0", cityName: "Sainte-Ursule, QC" }, { postalCode: "J0G 1T0", cityName: "Sainte-Victoire-de-Sorel, QC" }, { postalCode: "G0S 3E0", cityName: "Saints-Anges, QC" }, { postalCode: "G0Y 1B0", cityName: "Saints-Martyrs-Canadiens, QC" }, { postalCode: "J6S 6V9", cityName: "Salaberry-de- Valleyfield North, QC" }, { postalCode: "J6T 6N4", cityName: "Salaberry-de- Valleyfield South, QC" }, { postalCode: "E4H 0A1", cityName: "Salem, NB" }, { postalCode: "N0J 1W0", cityName: "Salford, ON" }, { postalCode: "E4J 1A1", cityName: "Salisbury, NB" }, { postalCode: "E4J 0A1", cityName: "Salisbury, NB" }, { postalCode: "E4J 0A2", cityName: "Salisbury West, NB" }, { postalCode: "J0M 1S0", cityName: "Salluit, QC" }, { postalCode: "A0K 4Z0", cityName: "Sallys Cove, NL" }, { postalCode: "V0G 1Z0", cityName: "Salmo, BC" }, { postalCode: "V1E 0A2", cityName: "Salmon Arm, BC" }, { postalCode: "E2A 0A1", cityName: "Salmon Beach, NB" }, { postalCode: "A0A 3S0", cityName: "Salmon Cove Bdv, NL" }, { postalCode: "E4C 1G3", cityName: "Salmon Creek, NB" }, { postalCode: "B0W 2Y0", cityName: "Salmon River, NS" }, { postalCode: "E5R 1W4", cityName: "Salmon River, NB" }, { postalCode: "E4A 1N5", cityName: "Salmon River Road, NB" }, { postalCode: "B0K 1P0", cityName: "Salt Springs, NS" }, { postalCode: "E5N 3J3", cityName: "Salt Springs, NB" }, { postalCode: "S0A 3R0", cityName: "Saltcoats, SK" }, { postalCode: "V8K 1B3", cityName: "Saltspring Island, BC" }, { postalCode: "A0G 3X0", cityName: "Salvage, NL" }, { postalCode: "B3V 1E9", cityName: "Sambro, NS" }, { postalCode: "B3V 1L8", cityName: "Sambro Creek, NS" }, { postalCode: "B3V 1L1", cityName: "Sambro Head, NS" }, { postalCode: "B0E 3C0", cityName: "Sampson Cove, NS" }, { postalCode: "R0L 1T0", cityName: "San Clara, MB" }, { postalCode: "B1K 1W2", cityName: "Sandfield, NS" }, { postalCode: "L0C 1E0", cityName: "Sandford, ON" }, { postalCode: "R0A 1W0", cityName: "Sandilands, MB" }, { postalCode: "A0G 3Y0", cityName: "Sandringham, NL" }, { postalCode: "V0T 1T0", cityName: "Sandspit, BC" }, { postalCode: "S0P 0G0", cityName: "Sandy Bay, SK" }, { postalCode: "A0K 5C0", cityName: "Sandy Cove, NL" }, { postalCode: "B0V 1E0", cityName: "Sandy Cove, NS" }, { postalCode: "R0C 2W0", cityName: "Sandy Hook, MB" }, { postalCode: "P0V 1V0", cityName: "Sandy Lake, ON" }, { postalCode: "R0J 1X0", cityName: "Sandy Lake, MB" }, { postalCode: "R0G 2J0", cityName: "Sanford, MB" }, { postalCode: "T0E 2A0", cityName: "Sangudo, AB" }, { postalCode: "X0A 0W0", cityName: "Sanikiluaq, NU" }, { postalCode: "N7S 6L9", cityName: "Sarnia Central, ON" }, { postalCode: "N7X 1B6", cityName: "Sarnia Northeast, ON" }, { postalCode: "N7V 4J9", cityName: "Sarnia Northwest, ON" }, { postalCode: "N7W 1B6", cityName: "Sarnia Southeast, ON" }, { postalCode: "N7T 8H8", cityName: "Sarnia Southwest, ON" }, { postalCode: "K0A 3E0", cityName: "Sarsfield, ON" }, { postalCode: "R0A 1X0", cityName: "Sarto, MB" }, { postalCode: "S7W 0B1", cityName: "Saskatoon, SK" }, { postalCode: "S7T 0A1", cityName: "Saskatoon, SK" }, { postalCode: "S7H 5T5", cityName: "Saskatoon East Central, SK" }, { postalCode: "S7P 0A1", cityName: "Saskatoon North, SK" }, { postalCode: "S7K 8E7", cityName: "Saskatoon North Central, SK" }, { postalCode: "S7S 1P4", cityName: "Saskatoon Northeast, SK" }, { postalCode: "S7N 2T6", cityName: "Saskatoon Northeast Central, SK" }, { postalCode: "S7R 1B4", cityName: "Saskatoon Northwest, SK" }, { postalCode: "S7T 1A7", cityName: "Saskatoon South, SK" }, { postalCode: "S7J 5L9", cityName: "Saskatoon South Central, SK" }, { postalCode: "S7V 1K7", cityName: "Saskatoon Southeast, SK" }, { postalCode: "S7M 5W5", cityName: "Saskatoon Southwest, SK" }, { postalCode: "S7L 7N6", cityName: "Saskatoon West, SK" }, { postalCode: "V0N 2Y0", cityName: "Saturna, BC" }, { postalCode: "N0H 2G0", cityName: "Sauble Beach, ON" }, { postalCode: "B0W 2Z0", cityName: "Saulnierville, NS" }, { postalCode: "P6B 6L6", cityName: "Sault Ste. Marie Central, ON" }, { postalCode: "P6A 7C2", cityName: "Sault Ste. Marie East, ON" }, { postalCode: "P6C 6E9", cityName: "Sault Ste. Marie North, ON" }, { postalCode: "E1X 2J2", cityName: "Saumarez, NB" }, { postalCode: "P0V 2S0", cityName: "Savant Lake, ON" }, { postalCode: "E8S 1P7", cityName: "Savoie Landing, NB" }, { postalCode: "V0K 2J0", cityName: "Savona, BC" }, { postalCode: "J0B 3A0", cityName: "Sawyerville, QC" }, { postalCode: "G0J 3K0", cityName: "Sayabec, QC" }, { postalCode: "V0P 1R0", cityName: "Sayward, BC" }, { postalCode: "T0J 2Z0", cityName: "Scandia, AB" }, { postalCode: "R0E 1W0", cityName: "Scanterbury, MB" }, { postalCode: "M1R 0A1", cityName: "Scarborough, ON" }, { postalCode: "M4A 2L5", cityName: "Scarborough, ON" }, { postalCode: "M4B 2J1", cityName: "Scarborough, ON" }, { postalCode: "M4C 5H1", cityName: "Scarborough, ON" }, { postalCode: "M4E 1H4", cityName: "Scarborough, ON" }, { postalCode: "M1S 5W9", cityName: "Scarborough (Agincourt), ON" }, { postalCode: "M1N 2T7", cityName: "Scarborough (Birch Cliff / Cliffside West), ON" }, { postalCode: "M1H 3H7", cityName: "Scarborough (Cedarbrae), ON" }, { postalCode: "M1T 3X6", cityName: "Scarborough (Clarks Corners / Tam O\'Shanter / Sullivan), ON" }, { postalCode: "M1M 2K8", cityName: "Scarborough (Cliffside / Cliffcrest / Scarborough Village West), ON" }, { postalCode: "M1P 5H4", cityName: "Scarborough (Dorset Park / Wexford Heights / Scarborough Town Centre), ON" }, { postalCode: "M1J 3P4", cityName: "Scarborough (Eglinton), ON" }, { postalCode: "M1E 1A4", cityName: "Scarborough (Guildwood / Morningside / Ellesmere), ON" }, { postalCode: "M1K 1Y4", cityName: "Scarborough (Kennedy Park / Ionview / East Birchmount Park), ON" }, { postalCode: "M1B 6B8", cityName: "Scarborough (Malvern / Rouge River), ON" }, { postalCode: "M1V 5P7", cityName: "Scarborough (Milliken / Agincourt North / Steeles East / L\'Amoreaux East), ON" }, { postalCode: "M1C 5J9", cityName: "Scarborough (Rouge Hill / Port Union / Highland Creek), ON" }, { postalCode: "M1W 4A3", cityName: "Scarborough (Steeles West / L\'Amoreaux West), ON" }, { postalCode: "M1L 4W7", cityName: "Scarborough (The Golden Mile / Clairlea / Oakridge / Birchmount Park East), ON" }, { postalCode: "M1X 2E6", cityName: "Scarborough (Upper Rouge), ON" }, { postalCode: "M1R 1P6", cityName: "Scarborough (Wexford / Maryvale), ON" }, { postalCode: "M1G 3V7", cityName: "Scarborough (Woburn), ON" }, { postalCode: "S0N 2H0", cityName: "Sceptre, SK" }, { postalCode: "R6W 0A2", cityName: "Schanzenfeld, MB" }, { postalCode: "G0G 2T0", cityName: "Schefferville, QC" }, { postalCode: "L0G 1T0", cityName: "Schomberg, ON" }, { postalCode: "P0T 2S0", cityName: "Schreiber, ON" }, { postalCode: "T0J 3B0", cityName: "Schuler, AB" }, { postalCode: "P0N 1G0", cityName: "Schumacher, ON" }, { postalCode: "V0E 3L0", cityName: "Scotch Creek, BC" }, { postalCode: "B1Y 3K3", cityName: "Scotch Lake, NS" }, { postalCode: "E6L 0A7", cityName: "Scotch Lake, NB" }, { postalCode: "E3L 5J1", cityName: "Scotch Ridge, NB" }, { postalCode: "E1H 1X7", cityName: "Scotch Settlement, NB" }, { postalCode: "E6L 0A6", cityName: "Scotch Settlement York Co, NB" }, { postalCode: "B0N 2G0", cityName: "Scotch Village, NS" }, { postalCode: "B1H 1A3", cityName: "Scotchtown, NS" }, { postalCode: "E4B 0A1", cityName: "Scotchtown, NB" }, { postalCode: "N0E 1R0", cityName: "Scotland, ON" }, { postalCode: "B0K 1R0", cityName: "Scotsburn, NS" }, { postalCode: "J0B 3B0", cityName: "Scotstown, QC" }, { postalCode: "B0E 3E0", cityName: "Scotsville, NS" }, { postalCode: "G0S 3G0", cityName: "Scott, QC" }, { postalCode: "S0K 4A0", cityName: "Scott, SK" }, { postalCode: "E6H 1V7", cityName: "Scott Siding, NB" }, { postalCode: "E4P 0A5", cityName: "Scoudouc, NB" }, { postalCode: "E4P 0A6", cityName: "Scoudouc Road, NB" }, { postalCode: "S0H 3V0", cityName: "Scout Lake, SK" }, { postalCode: "E8G 0A1", cityName: "Sea Side, NB" }, { postalCode: "B3Z 0C4", cityName: "Seabright, NS" }, { postalCode: "N0K 1W0", cityName: "Seaforth, ON" }, { postalCode: "L0C 1G0", cityName: "Seagrave, ON" }, { postalCode: "A0H 2G0", cityName: "Seal Cove FB, NL" }, { postalCode: "A0K 5E0", cityName: "Seal Cove WB, NL" }, { postalCode: "P0S 1J0", cityName: "Searchmont, ON" }, { postalCode: "E5P 3E5", cityName: "Searsville, NB" }, { postalCode: "T0E 2B0", cityName: "Seba Beach, AB" }, { postalCode: "L0K 1W0", cityName: "Sebright, ON" }, { postalCode: "N0K 1X0", cityName: "Sebringville, ON" }, { postalCode: "V0N 3A0", cityName: "Sechelt, BC" }, { postalCode: "E5C 1E2", cityName: "Second Falls, NB" }, { postalCode: "E4J 0A5", cityName: "Second North River, NB" }, { postalCode: "T0J 3C0", cityName: "Sedalia, AB" }, { postalCode: "R0E 1X0", cityName: "Seddons Corner, MB" }, { postalCode: "T0B 4C0", cityName: "Sedgewick, AB" }, { postalCode: "S0G 4K0", cityName: "Sedley, SK" }, { postalCode: "K0H 2N0", cityName: "Seeleys Bay, ON" }, { postalCode: "E5H 2E5", cityName: "Seeleys Cove, NB" }, { postalCode: "K0K 2Z0", cityName: "Selby, ON" }, { postalCode: "A0G 3Z0", cityName: "Seldom, NL" }, { postalCode: "R1A 0N9", cityName: "Selkirk, MB" }, { postalCode: "N0A 1P0", cityName: "Selkirk, ON" }, { postalCode: "S0A 3S0", cityName: "Semans, SK" }, { postalCode: "S0L 2Y0", cityName: "Senlac, SK" }, { postalCode: "J0Y 2M0", cityName: "Senneterre, QC" }, { postalCode: "H9K 1R9", cityName: "Senneville, QC" }, { postalCode: "G4S 1T2", cityName: "Sept-&Icirc;les Northwest, QC" }, { postalCode: "G4R 5W1", cityName: "Sept-&Icirc;les Southeast, QC" }, { postalCode: "P0P 1V0", cityName: "Serpent River, ON" }, { postalCode: "P0K 1S0", cityName: "Sesekinika, ON" }, { postalCode: "V0N 3B0", cityName: "Seton Portage, BC" }, { postalCode: "T0K 1Z0", cityName: "Seven Persons, AB" }, { postalCode: "R0E 1Y0", cityName: "Seven Sisters Falls, MB" }, { postalCode: "P0E 1N0", cityName: "Severn Bridge, ON" }, { postalCode: "E9E 1M3", cityName: "Sevogle, NB" }, { postalCode: "T0H 3C0", cityName: "Sexsmith, AB" }, { postalCode: "S0N 2L0", cityName: "Shackleton, SK" }, { postalCode: "B3T 1Z3", cityName: "Shad Bay, NS" }, { postalCode: "B0W 3B0", cityName: "Shag Harbour, NS" }, { postalCode: "N0B 2P0", cityName: "Shakespeare, ON" }, { postalCode: "V0N 3C0", cityName: "Shalalth, BC" }, { postalCode: "N0H 2K0", cityName: "Shallow Lake, ON" }, { postalCode: "A0G 4A0", cityName: "Shalloway Cove, NL" }, { postalCode: "R0B 1K0", cityName: "Shamattawa, MB" }, { postalCode: "S0H 3W0", cityName: "Shamrock, SK" }, { postalCode: "E5R 2B9", cityName: "Shanklin, NB" }, { postalCode: "E5T 1K4", cityName: "Shannon, NB" }, { postalCode: "G0A 4N0", cityName: "Shannon, QC" }, { postalCode: "K0K 3A0", cityName: "Shannonville, ON" }, { postalCode: "L0L 2L0", cityName: "Shanty Bay, ON" }, { postalCode: "K0H 2P0", cityName: "Sharbot Lake, ON" }, { postalCode: "L0G 1V0", cityName: "Sharon, ON" }, { postalCode: "T0K 2A0", cityName: "Shaughnessy, AB" }, { postalCode: "S0N 2M0", cityName: "Shaunavon, SK" }, { postalCode: "G9R 1B3", cityName: "Shawinigan, QC" }, { postalCode: "G9N 8S1", cityName: "Shawinigan Central, QC" }, { postalCode: "G9R 1G9", cityName: "Shawinigan Northwest, QC" }, { postalCode: "G9P 5L4", cityName: "Shawinigan Southeast, QC" }, { postalCode: "G9N 0A6", cityName: "Shawinigan-Sud, QC" }, { postalCode: "V0R 2W0", cityName: "Shawnigan Lake, BC" }, { postalCode: "J0X 2Y0", cityName: "Shawville, QC" }, { postalCode: "A0A 1J0", cityName: "Shea Heights, NL" }, { postalCode: "A0A 3V0", cityName: "Shearstown, NL" }, { postalCode: "B0J 3A0", cityName: "Shearwater, NS" }, { postalCode: "P0T 2T0", cityName: "Shebandowan, ON" }, { postalCode: "N0L 2E0", cityName: "Shedden, ON" }, { postalCode: "E4P 1C4", cityName: "Shediac, NB" }, { postalCode: "E4R 0A7", cityName: "Shediac Bridge, NB" }, { postalCode: "E4R 1N5", cityName: "Shediac Bridge-Shediac River, NB" }, { postalCode: "E4P 0A7", cityName: "Shediac Cape, NB" }, { postalCode: "J0X 2Z0", cityName: "Sheenboro, QC" }, { postalCode: "B0J 3B0", cityName: "Sheet Harbour, NS" }, { postalCode: "E3A 8G8", cityName: "Sheffield, NB" }, { postalCode: "L0R 1Z0", cityName: "Sheffield, ON" }, { postalCode: "J2M 0B1", cityName: "Shefford (Bureau-Chef), QC" }, { postalCode: "P0P 1W0", cityName: "Sheguiandah, ON" }, { postalCode: "S0A 3T0", cityName: "Sheho, SK" }, { postalCode: "B0T 1W0", cityName: "Shelburne, NS" }, { postalCode: "L0N 1S0", cityName: "Shelburne, ON" }, { postalCode: "G0G 2V0", cityName: "Sheldrake, QC" }, { postalCode: "S0J 2G0", cityName: "Shell Lake, SK" }, { postalCode: "S0J 2E0", cityName: "Shellbrook, SK" }, { postalCode: "R0J 1Y0", cityName: "Shellmouth, MB" }, { postalCode: "E4N 0A6", cityName: "Shemogue, NB" }, { postalCode: "B1T 1M5", cityName: "Shenacadie, NS" }, { postalCode: "E4H 4G5", cityName: "Shenstone, NB" }, { postalCode: "E4H 4J6", cityName: "Shepody Albert Co, NB" }, { postalCode: "E4E 0C7", cityName: "Shepody Kings Co, NB" }, { postalCode: "J1C 0B1", cityName: "Sherbrooke, QC" }, { postalCode: "B0J 3C0", cityName: "Sherbrooke, NS" }, { postalCode: "J1R 0B1", cityName: "Sherbrooke (St-Eli-d\'Orford), QC" }, { postalCode: "J1H 3L3", cityName: "Sherbrooke Central, QC" }, { postalCode: "J1G 5L3", cityName: "Sherbrooke East, QC" }, { postalCode: "J1J 4P1", cityName: "Sherbrooke North, QC" }, { postalCode: "J1E 4M3", cityName: "Sherbrooke Northeast, QC" }, { postalCode: "J1L 2Z7", cityName: "Sherbrooke Northwest, QC" }, { postalCode: "J1M 2J8", cityName: "Sherbrooke Southeast, QC" }, { postalCode: "J1K 3C4", cityName: "Sherbrooke West, QC" }, { postalCode: "L0S 1R0", cityName: "Sherkston, ON" }, { postalCode: "R0B 1L0", cityName: "Sherridon, MB" }, { postalCode: "J0L 2N0", cityName: "Sherrington, QC" }, { postalCode: "T8E 1A1", cityName: "Sherwood Park Central, AB" }, { postalCode: "T8G 1A3", cityName: "Sherwood Park East, AB" }, { postalCode: "T8C 1A1", cityName: "Sherwood Park Inner Southwest, AB" }, { postalCode: "T8H 0J7", cityName: "Sherwood Park Northwest, AB" }, { postalCode: "T8B 0A4", cityName: "Sherwood Park Outer Southwest, AB" }, { postalCode: "T8A 1H1", cityName: "Sherwood Park West, AB" }, { postalCode: "P0P 1X0", cityName: "Sheshegwaning, ON" }, { postalCode: "G0C 3C0", cityName: "Shigawake, QC" }, { postalCode: "R0K 2A0", cityName: "Shilo, MB" }, { postalCode: "P0M 2X0", cityName: "Shining Tree, ON" }, { postalCode: "A0B 3E0", cityName: "Ship Harbour PB, NL" }, { postalCode: "S0J 2H0", cityName: "Shipman, SK" }, { postalCode: "E8S 1A1", cityName: "Shippagan, NB" }, { postalCode: "R0J 1Z0", cityName: "Shoal Lake, MB" }, { postalCode: "A0K 5G0", cityName: "Shoe Cove, NL" }, { postalCode: "R0L 1W0", cityName: "Shortdale, MB" }, { postalCode: "B0N 2H0", cityName: "Shubenacadie, NS" }, { postalCode: "T0J 3E0", cityName: "Sibbald, AB" }, { postalCode: "V0E 2V0", cityName: "Sicamous, BC" }, { postalCode: "V8L 1A1", cityName: "Sidney, BC" }, { postalCode: "V8L 0A1", cityName: "Sidney, BC" }, { postalCode: "E7E 1T5", cityName: "Siegas, NB" }, { postalCode: "R0L 1X0", cityName: "Sifton, MB" }, { postalCode: "T0J 3W0", cityName: "Siksika, AB" }, { postalCode: "E9E 1T3", cityName: "Sillikers, NB" }, { postalCode: "S0G 4L0", cityName: "Silton, SK" }, { postalCode: "R0C 2X0", cityName: "Silver, MB" }, { postalCode: "R0H 1M0", cityName: "Silver Ridge, MB" }, { postalCode: "T0H 3E0", cityName: "Silver Valley, AB" }, { postalCode: "P0P 1Y0", cityName: "Silver Water, ON" }, { postalCode: "V0G 2B0", cityName: "Silverton, BC" }, { postalCode: "N3Y 3B7", cityName: "Simcoe, ON" }, { postalCode: "V0X 1T0", cityName: "Similkameen (Hope), BC" }, { postalCode: "S0N 2N0", cityName: "Simmie, SK" }, { postalCode: "E7P 2Y4", cityName: "Simonds, NB" }, { postalCode: "V0P 1S0", cityName: "Simoom Sound, BC" }, { postalCode: "S0G 4M0", cityName: "Simpson, SK" }, { postalCode: "R0M 2A0", cityName: "Sinclair, MB" }, { postalCode: "V0J 3M0", cityName: "Sinclair Mills, BC" }, { postalCode: "N0C 1M0", cityName: "Singhampton, ON" }, { postalCode: "S0G 4N0", cityName: "Sintaluta, SK" }, { postalCode: "P8T 1C7", cityName: "Sioux Lookout, ON" }, { postalCode: "P0X 1N0", cityName: "Sioux Narrows, ON" }, { postalCode: "V0B 2C0", cityName: "Sirdar, BC" }, { postalCode: "E7G 2R1", cityName: "Sisson Brook, NB" }, { postalCode: "E7G 1A2", cityName: "Sisson Ridge, NB" }, { postalCode: "E1X 2W8", cityName: "Six Roads, NB" }, { postalCode: "P0M 2Y0", cityName: "Skead, ON" }, { postalCode: "T0K 2B0", cityName: "Skiff, AB" }, { postalCode: "V0B 2E0", cityName: "Skookumchuck, BC" }, { postalCode: "R0L 1Y0", cityName: "Skownan, MB" }, { postalCode: "P0V 3C0", cityName: "Slate Falls, ON" }, { postalCode: "T0G 2A0", cityName: "Slave Lake, AB" }, { postalCode: "P0W 1M0", cityName: "Sleeman, ON" }, { postalCode: "C0B 2A0", cityName: "Slemon Park, PEI" }, { postalCode: "V0G 2C0", cityName: "Slocan, BC" }, { postalCode: "V0G 2E0", cityName: "Slocan Park, BC" }, { postalCode: "E4B 3H5", cityName: "Slope, NB" }, { postalCode: "S0J 2J0", cityName: "Smeaton, SK" }, { postalCode: "S0L 2Z0", cityName: "Smiley, SK" }, { postalCode: "T0G 2B0", cityName: "Smith, AB" }, { postalCode: "E9B 0A9", cityName: "Smith Crossing, NB" }, { postalCode: "E4T 1B6", cityName: "Smith\'s Corner, NB" }, { postalCode: "V0J 2N0", cityName: "Smithers, BC" }, { postalCode: "E6K 0B1", cityName: "Smithfield, NB" }, { postalCode: "B0S 1S0", cityName: "Smiths Cove, NS" }, { postalCode: "E4G 1A3", cityName: "Smiths Creek, NB" }, { postalCode: "E4G 0A4", cityName: "Smiths Creek, NB" }, { postalCode: "K7A 1A1", cityName: "Smiths Falls, ON" }, { postalCode: "B0W 3C0", cityName: "Smithsville, NS" }, { postalCode: "E5N 2C5", cityName: "Smithtown, NB" }, { postalCode: "L0R 2A0", cityName: "Smithville, ON" }, { postalCode: "T0A 3C0", cityName: "Smoky Lake, AB" }, { postalCode: "P0L 2B0", cityName: "Smooth Rock Falls, ON" }, { postalCode: "E5P 1J8", cityName: "Snider Mountain, NB" }, { postalCode: "A0K 5H0", cityName: "Snooks Arm, NL" }, { postalCode: "R0B 1M0", cityName: "Snow Lake, MB" }, { postalCode: "K0H 2R0", cityName: "Snow Road Station, ON" }, { postalCode: "S0J 2K0", cityName: "Snowden, SK" }, { postalCode: "V0N 3E0", cityName: "Sointula, BC" }, { postalCode: "R0J 2B0", cityName: "Solsgirth, MB" }, { postalCode: "N0P 2H0", cityName: "Sombra, ON" }, { postalCode: "R0G 2L0", cityName: "Somerset, MB" }, { postalCode: "E7P 2R4", cityName: "Somerville, NB" }, { postalCode: "S0K 4B0", cityName: "Sonningdale, SK" }, { postalCode: "A0K 5K0", cityName: "Sops Arm, NL" }, { postalCode: "J3P 8C4", cityName: "Sorel Central, QC" }, { postalCode: "J3R 5M9", cityName: "Sorel Southwest, QC" }, { postalCode: "J3R 0A1", cityName: "Sorel-Tracy, QC" }, { postalCode: "E8K 0A6", cityName: "Sormany, NB" }, { postalCode: "V0E 2W0", cityName: "Sorrento, BC" }, { postalCode: "C0A 2B0", cityName: "Souris, PEI" }, { postalCode: "C0A 2B0", cityName: "Souris, PEI" }, { postalCode: "R0K 2C0", cityName: "Souris, MB" }, { postalCode: "T9S 1R7", cityName: "South Baptiste, AB" }, { postalCode: "B1N 0A3", cityName: "South Bar, NS" }, { postalCode: "P0P 1Z0", cityName: "South Baymouth, ON" }, { postalCode: "A0N 2B0", cityName: "South Branch, NL" }, { postalCode: "E4W 0A1", cityName: "South Branch Kent Co, NB" }, { postalCode: "E4E 3W6", cityName: "South Branch Kings Co, NB" }, { postalCode: "A0J 1S0", cityName: "South Brook GB, NL" }, { postalCode: "B0T 1X0", cityName: "South Brookfield, NS" }, { postalCode: "E4Z 0A3", cityName: "South Canaan, NB" }, { postalCode: "R0G 2K0", cityName: "South Central Manitoba (Altona), MB" }, { postalCode: "S0G 2J0", cityName: "South Central Saskatchewan (Fort Qu\'Appelle), SK" }, { postalCode: "A0B 1R0", cityName: "South Dildo, NL" }, { postalCode: "A0E 3B0", cityName: "South East Bight, NL" }, { postalCode: "E1V 4L4", cityName: "South Esk, NB" }, { postalCode: "P0T 2V0", cityName: "South Gillies, ON" }, { postalCode: "V0J 2R0", cityName: "South Hazelton, BC" }, { postalCode: "B1B 1R8", cityName: "South Head, NS" }, { postalCode: "R0B 1N0", cityName: "South Indian Lake, MB" }, { postalCode: "R0H 1L0", cityName: "South Interlake (MacGregor), MB" }, { postalCode: "R0A 1Y0", cityName: "South Junction, MB" }, { postalCode: "K0C 2C0", cityName: "South Lancaster, ON" }, { postalCode: "K0E 1A0", cityName: "South Leeds and Grenville United Counties (Prescott), ON" }, { postalCode: "K0E 1W0", cityName: "South Mountain, ON" }, { postalCode: "E1N 6C4", cityName: "South Nelson, NB" }, { postalCode: "B0W 3E0", cityName: "South Ohio, NS" }, { postalCode: "V0H 1A0", cityName: "South Okanagan (Summerland), BC" }, { postalCode: "E5L 1T1", cityName: "South Oromocto Lake, NB" }, { postalCode: "P0N 1H0", cityName: "South Porcupine, ON" }, { postalCode: "A0A 3W0", cityName: "South River, NL" }, { postalCode: "P0A 1X0", cityName: "South River, ON" }, { postalCode: "V0G 2G0", cityName: "South Slocan, BC" }, { postalCode: "E2A 4Z2", cityName: "South Tetagouche, NB" }, { postalCode: "B0E 3H0", cityName: "South West Margaree, NS" }, { postalCode: "N0R 1V0", cityName: "South Woodslee, ON" }, { postalCode: "B0M 1W0", cityName: "Southampton, NS" }, { postalCode: "E6G 1J2", cityName: "Southampton, NB" }, { postalCode: "N0H 2L0", cityName: "Southampton, ON" }, { postalCode: "V0J 2P0", cityName: "Southbank, BC" }, { postalCode: "T0J 1C0", cityName: "Southeastern Alberta (Drumheller), AB" }, { postalCode: "A0A 1A0", cityName: "Southeastern Avalon Peninsula (Ferryland), NL" }, { postalCode: "R0A 1A0", cityName: "Southeastern Manitoba (Lorette), MB" }, { postalCode: "S0C 1T0", cityName: "Southeastern Saskatchewan (Carlyle), SK" }, { postalCode: "Y0A 1C0", cityName: "Southeastern Yukon (Watson Lake), YT" }, { postalCode: "S0J 2L0", cityName: "Southend, SK" }, { postalCode: "A0C 2M0", cityName: "Southern Bay, NL" }, { postalCode: "A0B 3H0", cityName: "Southern Harbour PB, NL" }, { postalCode: "B0K 1B0", cityName: "Southern Northumberland Strait (Pictou), NS" }, { postalCode: "S0H 0C0", cityName: "Southern Saskatchewan (Assiniboia), SK" }, { postalCode: "S0G 4P0", cityName: "Southey, SK" }, { postalCode: "E4E 3H2", cityName: "Southfield, NB" }, { postalCode: "R0H 1N0", cityName: "Southport, MB" }, { postalCode: "B0W 2X0", cityName: "Southwest Mainland (Weymouth), NS" }, { postalCode: "R0M 1A0", cityName: "Southwestern Manitoba (Virden), MB" }, { postalCode: "A0M 1C0", cityName: "Southwestern Newfoundland (Channel-Port aux Basques), NL" }, { postalCode: "X0G 0A0", cityName: "Southwestern Northwest Territories (Fort Liard), NT" }, { postalCode: "S0N 1N0", cityName: "Southwestern Saskatchewan (Maple Creek), SK" }, { postalCode: "N0L 2G0", cityName: "Southwold, ON" }, { postalCode: "S0L 3A0", cityName: "Sovereign, SK" }, { postalCode: "S0K 4C0", cityName: "Spalding, SK" }, { postalCode: "A0A 3X0", cityName: "Spaniards Bay, NL" }, { postalCode: "P0P 2A0", cityName: "Spanish, ON" }, { postalCode: "N0L 2H0", cityName: "Sparta, ON" }, { postalCode: "V0B 2G0", cityName: "Sparwood, BC" }, { postalCode: "B4V 8S6", cityName: "Spectacle Lakes, NS" }, { postalCode: "T0A 3E0", cityName: "Spedden, AB" }, { postalCode: "S0M 2V0", cityName: "Speers, SK" }, { postalCode: "E7N 1S2", cityName: "Speerville, NB" }, { postalCode: "K0E 1X0", cityName: "Spencerville, ON" }, { postalCode: "V0K 2L0", cityName: "Spences Bridge, BC" }, { postalCode: "R0G 2M0", cityName: "Sperling, MB" }, { postalCode: "V0A 1P0", cityName: "Spillimacheen, BC" }, { postalCode: "T0H 3G0", cityName: "Spirit River, AB" }, { postalCode: "S0J 2M0", cityName: "Spiritwood, SK" }, { postalCode: "R0B 1P0", cityName: "Split Lake, MB" }, { postalCode: "P0R 1K0", cityName: "Spragge, ON" }, { postalCode: "R0A 1Z0", cityName: "Sprague, MB" }, { postalCode: "P0P 2B0", cityName: "Spring Bay, ON" }, { postalCode: "T0K 2C0", cityName: "Spring Coulee, AB" }, { postalCode: "T7Z 0A5", cityName: "Spring Lake, AB" }, { postalCode: "S0H 3X0", cityName: "Spring Valley, SK" }, { postalCode: "K0K 3C0", cityName: "Springbrook, ON" }, { postalCode: "T4S 0B5", cityName: "Springbrook, AB" }, { postalCode: "A0J 1T0", cityName: "Springdale, NL" }, { postalCode: "E4E 0B9", cityName: "Springdale, NB" }, { postalCode: "B0R 1H0", cityName: "Springfield, NS" }, { postalCode: "N0L 2J0", cityName: "Springfield, ON" }, { postalCode: "R2C 2Z2", cityName: "Springfield, MB" }, { postalCode: "R2E 0J5", cityName: "Springfield, MB" }, { postalCode: "R2J 4E6", cityName: "Springfield, MB" }, { postalCode: "R3X 0B9", cityName: "Springfield, MB" }, { postalCode: "E5T 0A3", cityName: "Springfield Kings Co, NB" }, { postalCode: "E6E 1S1", cityName: "Springfield York Co, NB" }, { postalCode: "N0J 1X0", cityName: "Springford, ON" }, { postalCode: "B0M 1X0", cityName: "Springhill, NS" }, { postalCode: "S0A 3V0", cityName: "Springside, SK" }, { postalCode: "R0G 2N0", cityName: "Springstein, MB" }, { postalCode: "S0K 4E0", cityName: "Springwater, SK" }, { postalCode: "T7X 1G9", cityName: "Spruce Grove North, AB" }, { postalCode: "T7Y 1A1", cityName: "Spruce Grove South, AB" }, { postalCode: "S0J 2N0", cityName: "Spruce Home, SK" }, { postalCode: "S0M 2W0", cityName: "Spruce Lake, SK" }, { postalCode: "T0M 1V0", cityName: "Spruce View, AB" }, { postalCode: "P0A 1Y0", cityName: "Sprucedale, ON" }, { postalCode: "T0A 3G0", cityName: "Sputinow, AB" }, { postalCode: "S0A 3W0", cityName: "Spy Hill, SK" }, { postalCode: "V8B 0B1", cityName: "Squamish, BC" }, { postalCode: "G0L 4H0", cityName: "Squatec, QC" }, { postalCode: "E3N 0A3", cityName: "Squaw Cap, NB" }, { postalCode: "V0P 1T0", cityName: "Squirrel Cove, BC" }, { postalCode: "N0B 2L0", cityName: "St Agatha, ON" }, { postalCode: "A0H 2E0", cityName: "St Albans, NL" }, { postalCode: "K0A 3C0", cityName: "St Albert, ON" }, { postalCode: "E7G 1K1", cityName: "St Almo, NB" }, { postalCode: "R0K 1Z0", cityName: "St Alphonse, MB" }, { postalCode: "R0H 1G0", cityName: "St Ambroise, MB" }, { postalCode: "A0N 1W0", cityName: "St Andrews, NL" }, { postalCode: "B0H 1X0", cityName: "St Andrews, NS" }, { postalCode: "R1A 0A1", cityName: "St Andrews, MB" }, { postalCode: "B1J 1R1", cityName: "St Andrews Channel, NS" }, { postalCode: "K0C 2A0", cityName: "St Andrews West, ON" }, { postalCode: "L0R 1Y0", cityName: "St Anns, ON" }, { postalCode: "A0K 4T0", cityName: "St Anthony East, NL" }, { postalCode: "S0K 3T0", cityName: "St Benedict, SK" }, { postalCode: "K0B 1N0", cityName: "St Bernardin, ON" }, { postalCode: "A0E 2T0", cityName: "St Bernards-Jacques Fontaine, NL" }, { postalCode: "A0G 3V0", cityName: "St Brendans, NL" }, { postalCode: "A0B 2Z0", cityName: "St Brides, NL" }, { postalCode: "T0A 2Y0", cityName: "St Brides, AB" }, { postalCode: "S0K 3V0", cityName: "St Brieux, SK" }, { postalCode: "L2V 3Y5", cityName: "St Catharines, ON" }, { postalCode: "A0G 3W0", cityName: "St Chads, NL" }, { postalCode: "P0M 2W0", cityName: "St Charles, ON" }, { postalCode: "R0G 1Z0", cityName: "St Claude, MB" }, { postalCode: "N0B 2M0", cityName: "St Clements, ON" }, { postalCode: "R2C 2Z2", cityName: "St Clements, MB" }, { postalCode: "B2C 1K1", cityName: "St Columba, NS" }, { postalCode: "E6J 1H1", cityName: "St Croix, NB" }, { postalCode: "E3L 4R3", cityName: "St David Ridge, NB" }, { postalCode: "A0N 1X0", cityName: "St Davids, NL" }, { postalCode: "L0S 1P0", cityName: "St Davids, ON" }, { postalCode: "S0K 3W0", cityName: "St Denis, SK" }, { postalCode: "K0B 1P0", cityName: "St Eugene, ON" }, { postalCode: "R0H 1H0", cityName: "St Eustache, MB" }, { postalCode: "A0N 1Y0", cityName: "St Fintans, NL" }, { postalCode: "E5C 0A9", cityName: "St George, NB" }, { postalCode: "N0E 1N0", cityName: "St George Brant, ON" }, { postalCode: "A0N 1Z0", cityName: "St Georges, NL" }, { postalCode: "R5A 1E8", cityName: "St Germain South, MB" }, { postalCode: "S0K 3X0", cityName: "St Gregor, SK" }, { postalCode: "K0C 2B0", cityName: "St Isidore, ON" }, { postalCode: "T0H 3B0", cityName: "St Isidore, AB" }, { postalCode: "N0B 2N0", cityName: "St Jacobs, ON" }, { postalCode: "R0G 2B0", cityName: "St Jean Baptiste, MB" }, { postalCode: "N0R 1S0", cityName: "St Joachim, ON" }, { postalCode: "R0G 2C0", cityName: "St Joseph, MB" }, { postalCode: "A0B 3A0", cityName: "St Josephs Sal, NL" }, { postalCode: "A8A 3A1", cityName: "St Judes, NL" }, { postalCode: "A0K 4V0", cityName: "St Juliens, NL" }, { postalCode: "R0C 2S0", cityName: "St Laurent, MB" }, { postalCode: "A0E 2V0", cityName: "St Lawrence, NL" }, { postalCode: "R0M 1Y0", cityName: "St Lazare, MB" }, { postalCode: "R0G 2E0", cityName: "St Leon, MB" }, { postalCode: "A0K 4W0", cityName: "St Lewis, NL" }, { postalCode: "T0A 2Z0", cityName: "St Lina, AB" }, { postalCode: "S0J 2C0", cityName: "St Louis, SK" }, { postalCode: "A0K 2X0", cityName: "St Lunaire-Griquet, NL" }, { postalCode: "R0A 1T0", cityName: "St Malo, MB" }, { postalCode: "B0C 1R0", cityName: "St Margaret Village, NS" }, { postalCode: "E1N 5A8", cityName: "St Margarets, NB" }, { postalCode: "R0H 1K0", cityName: "St Marks, MB" }, { postalCode: "R0C 2T0", cityName: "St Martin, MB" }, { postalCode: "E5R 0A2", cityName: "St Martins, NB" }, { postalCode: "E5R 1C8", cityName: "St Martins North, NB" }, { postalCode: "A0B 3B0", cityName: "St Marys, NL" }, { postalCode: "T0B 4B0", cityName: "St Michael, AB" }, { postalCode: "T0A 3A0", cityName: "St Paul, AB" }, { postalCode: "A0K 4Y0", cityName: "St Pauls, NL" }, { postalCode: "N0K 1V0", cityName: "St Pauls Station, ON" }, { postalCode: "B0E 3B0", cityName: "St Peters, NS" }, { postalCode: "R0A 1V0", cityName: "St Pierre Jolys, MB" }, { postalCode: "A0A 3R0", cityName: "St Shotts, NL" }, { postalCode: "R0B 1J0", cityName: "St Theresa Point, MB" }, { postalCode: "E7P 1M8", cityName: "St Thomas, NB" }, { postalCode: "S0H 3T0", cityName: "St Victor, SK" }, { postalCode: "T0A 3B0", cityName: "St Vincent, AB" }, { postalCode: "A0B 3C0", cityName: "St Vincents, NL" }, { postalCode: "S0M 2T0", cityName: "St Walburg, SK" }, { postalCode: "N0E 1P0", cityName: "St Williams, ON" }, { postalCode: "E4V 2Y7", cityName: "St-Antoine Nord, NB" }, { postalCode: "G0L 2L0", cityName: "St-Athanase, QC" }, { postalCode: "G3A 2W5", cityName: "St-Augustin- De-Desmaures, QC" }, { postalCode: "G0X 2K0", cityName: "St-Barnabe-Nord, QC" }, { postalCode: "G0R 3A0", cityName: "St-Francois-de-la-Riviere-du-S, QC" }, { postalCode: "J0B 2V0", cityName: "St-Francois-Xavier-de-Brompton, QC" }, { postalCode: "G0L 3E0", cityName: "St-Gabriel-de-Kamouraska, QC" }, { postalCode: "E3V 0C2", cityName: "St-Hilaire, NB" }, { postalCode: "E8B 1X4", cityName: "St-Jean-Baptiste, NB" }, { postalCode: "G0M 1E0", cityName: "St-Jean-de-la-Lande-de-Beauce, QC" }, { postalCode: "G0A 3X0", cityName: "St-Joachim-de-Montmorency, QC" }, { postalCode: "G6V 6N4", cityName: "St-Joseph-De-La-Pointe-De-Levy, QC" }, { postalCode: "E7B 0A2", cityName: "St-Joseph-de-Madawaska, NB" }, { postalCode: "B0E 3A0", cityName: "St-Joseph-du-Moine, NS" }, { postalCode: "C0B 1Z0", cityName: "St-Louis, PEI" }, { postalCode: "E4X 1A1", cityName: "St-Louis-de-Kent, NB" }, { postalCode: "G0R 3R0", cityName: "St-Marcel-de-l\'Islet, QC" }, { postalCode: "G0W 2V0", cityName: "St-Nazaire-du-Lac-St-Jean, QC" }, { postalCode: "G0J 3B0", cityName: "St-Octave, QC" }, { postalCode: "G0R 3W0", cityName: "St-Onesime, QC" }, { postalCode: "C0A 2A0", cityName: "St-Peters Bay, PEI" }, { postalCode: "C0A 2A0", cityName: "St-Peters Bay, PEI" }, { postalCode: "G0R 4B0", cityName: "St-Pierre-De-La-Riviere-Du-Sud, QC" }, { postalCode: "J0H 2B0", cityName: "St-Valerien, QC" }, { postalCode: "R5A 1A1", cityName: "St. Adolphe, MB" }, { postalCode: "T8N 0S1", cityName: "St. Albert, AB" }, { postalCode: "E5B 1B1", cityName: "St. Andrews, NB" }, { postalCode: "A0K 4S0", cityName: "St. Anthony, NL" }, { postalCode: "L2R 7S6", cityName: "St. Catharines Central, ON" }, { postalCode: "L2P 3Y5", cityName: "St. Catharines East, ON" }, { postalCode: "L2M 7Y3", cityName: "St. Catharines Northeast, ON" }, { postalCode: "L2N 7T3", cityName: "St. Catharines Northwest, ON" }, { postalCode: "L2T 1P5", cityName: "St. Catharines South, ON" }, { postalCode: "L2V 4Z4", cityName: "St. Catharines Southeast, ON" }, { postalCode: "L2S 4C7", cityName: "St. Catharines Southwest, ON" }, { postalCode: "L2W 1C6", cityName: "St. Catharines West, ON" }, { postalCode: "R4L 1A1", cityName: "St. Francois Xavier, MB" }, { postalCode: "E5C 0A4", cityName: "St. George, NB" }, { postalCode: "R0E 1V0", cityName: "St. Georges, MB" }, { postalCode: "A1N 2B9", cityName: "St. John\'s, NL" }, { postalCode: "A1E 0A3", cityName: "St. John\'s Central, NL" }, { postalCode: "A1A 1A1", cityName: "St. John\'s North, NL" }, { postalCode: "A1C 1A3", cityName: "St. John\'s North Central, NL" }, { postalCode: "A1B 1J5", cityName: "St. John\'s Northwest Newfoundland &amp; Labrador Provincial Government, NL" }, { postalCode: "A1G 1A1", cityName: "St. John\'s South, NL" }, { postalCode: "A1H 1A3", cityName: "St. John\'s Southwest, NL" }, { postalCode: "E5R 1B2", cityName: "St. Martins, NB" }, { postalCode: "N4X 1G2", cityName: "St. Mary\'s, ON" }, { postalCode: "E3L 1A1", cityName: "St. Stephen, NB" }, { postalCode: "N5P 4E3", cityName: "St. Thomas North, ON" }, { postalCode: "N5R 3K9", cityName: "St. Thomas South, ON" }, { postalCode: "N0K 1Y0", cityName: "Staffa, ON" }, { postalCode: "A0G 4B0", cityName: "Stag Harbour, NL" }, { postalCode: "S0G 4R0", cityName: "Stalwart, SK" }, { postalCode: "J0J 2H0", cityName: "Stanbridge East, QC" }, { postalCode: "J0J 2J0", cityName: "Stanbridge Station, QC" }, { postalCode: "T0L 1Y0", cityName: "Stand Off, AB" }, { postalCode: "T0J 3G0", cityName: "Standard, AB" }, { postalCode: "G0R 4L0", cityName: "Standon, QC" }, { postalCode: "J0B 3C0", cityName: "Stanhope, QC" }, { postalCode: "E6B 2C4", cityName: "Stanley, NB" }, { postalCode: "E6B 1A1", cityName: "Stanley, NB" }, { postalCode: "S0J 2P0", cityName: "Stanley Mission, SK" }, { postalCode: "J0B 1E0", cityName: "Stanstead, QC" }, { postalCode: "N0P 2J0", cityName: "Staples, ON" }, { postalCode: "E6E 1A5", cityName: "Staples Settlement, NB" }, { postalCode: "T0B 4E0", cityName: "Star, AB" }, { postalCode: "S0E 1P0", cityName: "Star City, SK" }, { postalCode: "R0G 2P0", cityName: "Starbuck, MB" }, { postalCode: "T0M 1W0", cityName: "Stauffer, AB" }, { postalCode: "T0L 1Z0", cityName: "Stavely, AB" }, { postalCode: "L0M 1S0", cityName: "Stayner, ON" }, { postalCode: "R0G 1Y0", cityName: "Ste Agathe, MB" }, { postalCode: "K0B 1M0", cityName: "Ste Anne de Prescott, ON" }, { postalCode: "B0N 2E0", cityName: "Ste Croix, NS" }, { postalCode: "R0L 1S0", cityName: "Ste Rose du Lac, MB" }, { postalCode: "G0J 2P0", cityName: "Ste-Irene-de-Matapedia, QC" }, { postalCode: "G0J 2T0", cityName: "Ste-Jeanne-d\'Arc-de-Matane, QC" }, { postalCode: "G0S 2X0", cityName: "Ste-Marguerite-de-Dorchester, QC" }, { postalCode: "J0T 1L0", cityName: "Ste-Marguerite-Du-Lac-Masson, QC" }, { postalCode: "R5H 1A2", cityName: "Ste. Anne, MB" }, { postalCode: "R0E 1Z0", cityName: "Stead, MB" }, { postalCode: "S0C 2J0", cityName: "Steelman, SK" }, { postalCode: "R0C 2Y0", cityName: "Steep Rock, MB" }, { postalCode: "E1G 0N6", cityName: "Steeves Mountain, NB" }, { postalCode: "E4Z 2S7", cityName: "Steeves Settlement, NB" }, { postalCode: "R5G 0A2", cityName: "Steinbach, MB" }, { postalCode: "K0H 2S0", cityName: "Stella, ON" }, { postalCode: "B0K 0A2", cityName: "Stellarton, NS" }, { postalCode: "S0A 3X0", cityName: "Stenen, SK" }, { postalCode: "R0G 2R0", cityName: "Stephenfield, MB" }, { postalCode: "A2N 1A1", cityName: "Stephenville, NL" }, { postalCode: "A2N 0A1", cityName: "Stephenville, NL" }, { postalCode: "A0N 2C0", cityName: "Stephenville Crossing, NL" }, { postalCode: "T0C 2L0", cityName: "Stettler, AB" }, { postalCode: "R0B 2H0", cityName: "Stevenson Island, MB" }, { postalCode: "L0S 1S0", cityName: "Stevensville, ON" }, { postalCode: "V0T 1W0", cityName: "Stewart, BC" }, { postalCode: "S0N 2P0", cityName: "Stewart Valley, SK" }, { postalCode: "B0N 2J0", cityName: "Stewiacke, NS" }, { postalCode: "E7L 3X6", cityName: "Stickney, NB" }, { postalCode: "E1G 3C2", cityName: "Stilesville, NB" }, { postalCode: "B3Z 0B4", cityName: "Stillwater Lake, NS" }, { postalCode: "B2J 1E9", cityName: "Stirling, NS" }, { postalCode: "K0K 3E0", cityName: "Stirling, ON" }, { postalCode: "T0K 2E0", cityName: "Stirling, AB" }, { postalCode: "K2S 0N4", cityName: "Stittsville - Kanata, ON" }, { postalCode: "S0A 3Y0", cityName: "Stockholm, SK" }, { postalCode: "R0K 2E0", cityName: "Stockton, MB" }, { postalCode: "J0B 3G0", cityName: "Stoke, QC" }, { postalCode: "N0H 2M0", cityName: "Stokes Bay, ON" }, { postalCode: "K0J 2K0", cityName: "Stonecliffe, ON" }, { postalCode: "E2A 5N5", cityName: "Stonehaven, NB" }, { postalCode: "A0G 4C0", cityName: "Stoneville, NL" }, { postalCode: "R0C 2Z0", cityName: "Stonewall, MB" }, { postalCode: "E1J 0B2", cityName: "Stoney Creek, NB" }, { postalCode: "L8G 0A2", cityName: "Stoney Creek, ON" }, { postalCode: "B0W 3J0", cityName: "Stoney Island, NS" }, { postalCode: "S0G 4S0", cityName: "Stony Beach, SK" }, { postalCode: "R0C 3A0", cityName: "Stony Mountain, MB" }, { postalCode: "T7Z 0A2", cityName: "Stony Plain, AB" }, { postalCode: "S0J 2R0", cityName: "Stony Rapids, SK" }, { postalCode: "E9C 0A2", cityName: "Storeytown, NB" }, { postalCode: "K0C 1G0", cityName: "Stormont, Dundas and Glengarry United Counties (Alexandria), ON" }, { postalCode: "G0Y 1N0", cityName: "Stornoway, QC" }, { postalCode: "S0A 3Z0", cityName: "Stornoway, SK" }, { postalCode: "S0C 2K0", cityName: "Storthoaks, SK" }, { postalCode: "L4A 8C2", cityName: "Stouffville, ON" }, { postalCode: "S0G 4T0", cityName: "Stoughton, SK" }, { postalCode: "N0J 1Y0", cityName: "Straffordville, ON" }, { postalCode: "S0L 3B0", cityName: "Stranraer, SK" }, { postalCode: "S0G 4V0", cityName: "Strasbourg, SK" }, { postalCode: "C1B 2V1", cityName: "Stratford, PEI" }, { postalCode: "C1A 0B5", cityName: "Stratford, PEI" }, { postalCode: "G0Y 1P0", cityName: "Stratford, QC" }, { postalCode: "N5A 8B4", cityName: "Stratford North, ON" }, { postalCode: "N4Z 1A2", cityName: "Stratford South, ON" }, { postalCode: "E1V 4G6", cityName: "Strathadam, NB" }, { postalCode: "R0J 2C0", cityName: "Strathclair, MB" }, { postalCode: "T1P 0A2", cityName: "Strathmore, AB" }, { postalCode: "N7G 4L8", cityName: "Strathroy, ON" }, { postalCode: "P0W 1N0", cityName: "Stratton, ON" }, { postalCode: "T0B 4G0", cityName: "Streamstown, AB" }, { postalCode: "P0L 2C0", cityName: "Strickland, ON" }, { postalCode: "T0B 4H0", cityName: "Strome, AB" }, { postalCode: "S0H 3Z0", cityName: "Strongfield, SK" }, { postalCode: "V0P 1V0", cityName: "Stuart Island, BC" }, { postalCode: "E5V 1B5", cityName: "Stuart Town, NB" }, { postalCode: "R0A 2B0", cityName: "Stuartburn, MB" }, { postalCode: "J0E 2J0", cityName: "Stukely-Sud, QC" }, { postalCode: "S0J 2S0", cityName: "Stump Lake, SK" }, { postalCode: "T8N 3S1", cityName: "Sturgeon County, AB" }, { postalCode: "P2B 3N8", cityName: "Sturgeon Falls, ON" }, { postalCode: "S0P 0H0", cityName: "Sturgeon Landing, SK" }, { postalCode: "S0A 4A0", cityName: "Sturgis, SK" }, { postalCode: "E9G 1W2", cityName: "Stymiest, NB" }, { postalCode: "S0N 2R0", cityName: "Success, SK" }, { postalCode: "B9A 1T4", cityName: "Sugar Camp, NS" }, { postalCode: "P0M 2Z0", cityName: "Sultan, ON" }, { postalCode: "P0T 3B0", cityName: "Summer Beaver, ON" }, { postalCode: "S0G 4W0", cityName: "Summerberry, SK" }, { postalCode: "E7K 2H6", cityName: "Summerfield Carleton Co, NB" }, { postalCode: "E4G 1M9", cityName: "Summerfield Kings Co, NB" }, { postalCode: "A0G 4E0", cityName: "Summerford, NL" }, { postalCode: "V0H 1Z0", cityName: "Summerland, BC" }, { postalCode: "C1N 6V3", cityName: "Summerside, PEI" }, { postalCode: "K0C 2E0", cityName: "Summerstown, ON" }, { postalCode: "A0C 2N0", cityName: "Summerville, NL" }, { postalCode: "B0N 2K0", cityName: "Summerville, NS" }, { postalCode: "V0J 2S0", cityName: "Summit Lake, BC" }, { postalCode: "V0E 5N0", cityName: "Sun Peaks, BC" }, { postalCode: "L0C 1H0", cityName: "Sunderland, ON" }, { postalCode: "R0A 2C0", cityName: "Sundown, MB" }, { postalCode: "T0M 1X0", cityName: "Sundre, AB" }, { postalCode: "P0A 1C0", cityName: "Sundridge, ON" }, { postalCode: "B0K 1T0", cityName: "Sunnybrae, NS" }, { postalCode: "T0C 2M0", cityName: "Sunnybrook, AB" }, { postalCode: "T0J 3J0", cityName: "Sunnynook, AB" }, { postalCode: "A0B 3J0", cityName: "Sunnyside, NL" }, { postalCode: "E4B 2A8", cityName: "Sunnyside Beach, NB" }, { postalCode: "T9S 1R6", cityName: "Sunset Beach, AB" }, { postalCode: "T0H 3H0", cityName: "Sunset House, AB" }, { postalCode: "V0C 2J0", cityName: "Sunset Prairie, BC" }, { postalCode: "V0P 1W0", cityName: "Surge Narrows, BC" }, { postalCode: "V1M 3G1", cityName: "Surrey, BC" }, { postalCode: "V3S 0P4", cityName: "Surrey East, BC" }, { postalCode: "V3T 1A1", cityName: "Surrey Inner Northwest, BC" }, { postalCode: "V3X 0A1", cityName: "Surrey Lower West, BC" }, { postalCode: "V3R 0A6", cityName: "Surrey North, BC" }, { postalCode: "V4N 0C9", cityName: "Surrey Northeast, BC" }, { postalCode: "V3V 1A1", cityName: "Surrey Outer Northwest, BC" }, { postalCode: "V4P 1M8", cityName: "Surrey South, BC" }, { postalCode: "V4A 1A1", cityName: "Surrey Southwest, BC" }, { postalCode: "V3W 0A1", cityName: "Surrey Upper West, BC" }, { postalCode: "E4E 0A6", cityName: "Sussex, NB" }, { postalCode: "E4E 0A4", cityName: "Sussex Corner, NB" }, { postalCode: "E4E 3R7", cityName: "Sussex East, NB" }, { postalCode: "E4G 2V4", cityName: "Sussex East, NB" }, { postalCode: "E4E 2J8", cityName: "Sussex South, NB" }, { postalCode: "J0E 2K0", cityName: "Sutton, QC" }, { postalCode: "L0E 1R0", cityName: "Sutton West, ON" }, { postalCode: "T0M 1Y0", cityName: "Swalwell, AB" }, { postalCode: "E2V 2X6", cityName: "Swan Creek, NB" }, { postalCode: "T0G 2C0", cityName: "Swan Hills, AB" }, { postalCode: "R0G 2S0", cityName: "Swan Lake, MB" }, { postalCode: "R0L 1Z0", cityName: "Swan River, MB" }, { postalCode: "V0E 2K2", cityName: "Swansea Point, BC" }, { postalCode: "P0K 1T0", cityName: "Swastika, ON" }, { postalCode: "A0C 2P0", cityName: "Sweet Bay, NL" }, { postalCode: "S9H 5M9", cityName: "Swift Current, SK" }, { postalCode: "A0E 2W0", cityName: "Swift Current, NL" }, { postalCode: "K0H 2T0", cityName: "Sydenham, ON" }, { postalCode: "B1L 1A5", cityName: "Sydney, NS" }, { postalCode: "B1M 1A1", cityName: "Sydney, NS" }, { postalCode: "B1S 1A1", cityName: "Sydney Central, NS" }, { postalCode: "B1M 0A1", cityName: "Sydney East, NS" }, { postalCode: "B1N 1A1", cityName: "Sydney North, NS" }, { postalCode: "B1P 1A8", cityName: "Sydney North Central, NS" }, { postalCode: "B1L 0A1", cityName: "Sydney River, NS" }, { postalCode: "B1S 1R2", cityName: "Sydney River, NS" }, { postalCode: "B1L 1A4", cityName: "Sydney Southwest, NS" }, { postalCode: "B1R 1A1", cityName: "Sydney West, NS" }, { postalCode: "T4S 0B1", cityName: "Sylvan Lake, AB" }, { postalCode: "S0E 1S0", cityName: "Sylvania, SK" }, { postalCode: "E4B 0A9", cityName: "Sypher Cove, NB" }, { postalCode: "V0B 2H0", cityName: "Ta Ta Creek, BC" }, { postalCode: "T1G 1A1", cityName: "Taber, AB" }, { postalCode: "R0B 2C0", cityName: "Tadoule Lake, MB" }, { postalCode: "G0T 2A0", cityName: "Tadoussac, QC" }, { postalCode: "Y0B 1T0", cityName: "Tagish, YT" }, { postalCode: "V0P 1X0", cityName: "Tahsis, BC" }, { postalCode: "G0W 2X0", cityName: "Taillon, QC" }, { postalCode: "V0J 2T0", cityName: "Takla Landing, BC" }, { postalCode: "N0L 2K0", cityName: "Talbotville Royal, ON" }, { postalCode: "X0B 1B0", cityName: "Taloyoak, NU" }, { postalCode: "K0K 3G0", cityName: "Tamworth, ON" }, { postalCode: "B0J 3G0", cityName: "Tancook Island, NS" }, { postalCode: "T0H 3J0", cityName: "Tangent, AB" }, { postalCode: "B0J 3H0", cityName: "Tangier, NS" }, { postalCode: "B3Z 3S4", cityName: "Tantallon, NS" }, { postalCode: "B3Z 0C2", cityName: "Tantallon, NS" }, { postalCode: "S0A 4B0", cityName: "Tantallon, SK" }, { postalCode: "V0E 2X0", cityName: "Tappen, BC" }, { postalCode: "N0H 2N0", cityName: "Tara, ON" }, { postalCode: "E4T 1P2", cityName: "Targettville, NB" }, { postalCode: "P0K 1V0", cityName: "Tarzwell, ON" }, { postalCode: "J0Z 3N0", cityName: "Taschereau, QC" }, { postalCode: "J0M 1T0", cityName: "Tasiujaq, QC" }, { postalCode: "B0K 1V0", cityName: "Tatamagouche, NS" }, { postalCode: "V0L 1V0", cityName: "Tatla Lake, BC" }, { postalCode: "V0L 1W0", cityName: "Tatlayoko Lake, BC" }, { postalCode: "N0B 2R0", cityName: "Tavistock, ON" }, { postalCode: "T0G 2E0", cityName: "Tawatinaw, AB" }, { postalCode: "E6B 1H7", cityName: "Tay Creek, NB" }, { postalCode: "E6B 1P5", cityName: "Tay Falls, NB" }, { postalCode: "V0C 2K0", cityName: "Taylor, BC" }, { postalCode: "E4K 2R1", cityName: "Taylor Village, NB" }, { postalCode: "N8N 0A9", cityName: "Tecumseh, ON" }, { postalCode: "N9K 1G5", cityName: "Tecumseh, ON" }, { postalCode: "N8V 1A2", cityName: "Tecumseh (YQG), ON" }, { postalCode: "N9K 0A1", cityName: "Tecumseh Central, ON" }, { postalCode: "N8N 4P9", cityName: "Tecumseh Outskirts, ON" }, { postalCode: "E7M 4T2", cityName: "Teeds Mills, NB" }, { postalCode: "T0C 2N0", cityName: "Tees, AB" }, { postalCode: "N0G 2S0", cityName: "Teeswater, ON" }, { postalCode: "N0E 1S0", cityName: "Teeterville, ON" }, { postalCode: "P0P 2C0", cityName: "Tehkummah, ON" }, { postalCode: "V0N 3J0", cityName: "Telegraph Cove, BC" }, { postalCode: "V0J 2W0", cityName: "Telegraph Creek, BC" }, { postalCode: "V0J 2X0", cityName: "Telkwa, BC" }, { postalCode: "P0H 2H0", cityName: "Temagami, ON" }, { postalCode: "J0Z 3R0", cityName: "Temiscaming, QC" }, { postalCode: "E6G 2B9", cityName: "Temperance Vale, NB" }, { postalCode: "E6H 1E7", cityName: "Temple, NB" }, { postalCode: "A0G 4G0", cityName: "Templeman, NL" }, { postalCode: "B3T 1X2", cityName: "Terence Bay, NS" }, { postalCode: "L7C 0E3", cityName: "Terra Cotta, ON" }, { postalCode: "L7K 1G4", cityName: "Terra Cotta, ON" }, { postalCode: "V8G 0E8", cityName: "Terrace, BC" }, { postalCode: "P0T 2W0", cityName: "Terrace Bay, ON" }, { postalCode: "J7V 3K7", cityName: "Terrasse-Vaudreuil, QC" }, { postalCode: "J0N 1H0", cityName: "Terrebonne, QC" }, { postalCode: "J7K 3C1", cityName: "Terrebonne, QC" }, { postalCode: "J6W 6L6", cityName: "Terrebonne Central, QC" }, { postalCode: "J6V 1T9", cityName: "Terrebonne East, QC" }, { postalCode: "J6X 3J5", cityName: "Terrebonne Northwest, QC" }, { postalCode: "J6Y 2B5", cityName: "Terrebonne Southwest, QC" }, { postalCode: "A0E 2X0", cityName: "Terrenceville, NL" }, { postalCode: "Y0A 1B0", cityName: "Teslin, YT" }, { postalCode: "S0L 3G0", cityName: "Tessier, SK" }, { postalCode: "E2A 7H8", cityName: "Tetagouche Falls, NB" }, { postalCode: "G0G 2W0", cityName: "Tete-A-la-Baleine, QC" }, { postalCode: "R0C 3B0", cityName: "Teulon, MB" }, { postalCode: "N0M 2M0", cityName: "Thamesford, ON" }, { postalCode: "N0P 2K0", cityName: "Thamesville, ON" }, { postalCode: "E4J 1W2", cityName: "The Glades, NB" }, { postalCode: "R9A 1K2", cityName: "The Pas, MB" }, { postalCode: "N0M 2N0", cityName: "Thedford, ON" }, { postalCode: "S0A 4C0", cityName: "Theodore, SK" }, { postalCode: "P0R 1L0", cityName: "Thessalon, ON" }, { postalCode: "G6G 8C4", cityName: "Thetford Mines, QC" }, { postalCode: "V0R 2Y0", cityName: "Thetis Island, BC" }, { postalCode: "R0B 1R0", cityName: "Thicket Portage, MB" }, { postalCode: "K0K 3H0", cityName: "Thomasburg, ON" }, { postalCode: "B0W 3L0", cityName: "Thomasville, NS" }, { postalCode: "R8N 0C5", cityName: "Thompson, MB" }, { postalCode: "B0K 1W0", cityName: "Thorburn, NS" }, { postalCode: "T0A 3J0", cityName: "Thorhild, AB" }, { postalCode: "N0H 2P0", cityName: "Thornbury, ON" }, { postalCode: "N0M 2P0", cityName: "Thorndale, ON" }, { postalCode: "P0H 2J0", cityName: "Thorne, ON" }, { postalCode: "R0G 2T0", cityName: "Thornhill, MB" }, { postalCode: "V8G 3K5", cityName: "Thornhill, BC" }, { postalCode: "L3T 2A6", cityName: "Thornhill East, ON" }, { postalCode: "L4J 8S3", cityName: "Thornhill West, ON" }, { postalCode: "P0J 1S0", cityName: "Thornloe, ON" }, { postalCode: "L0L 2N0", cityName: "Thornton, ON" }, { postalCode: "T0C 2P0", cityName: "Thorsby, AB" }, { postalCode: "E7G 2W5", cityName: "Three Brooks, NB" }, { postalCode: "B0J 1N0", cityName: "Three Fathom Harbour, NS" }, { postalCode: "T0M 2A0", cityName: "Three Hills, AB" }, { postalCode: "E5L 0A1", cityName: "Three Tree Creek, NB" }, { postalCode: "P7C 6A8", cityName: "Thunder Bay Central, ON" }, { postalCode: "P7G 2K4", cityName: "Thunder Bay North, ON" }, { postalCode: "P7B 7C5", cityName: "Thunder Bay North Central, ON" }, { postalCode: "P7A 8C5", cityName: "Thunder Bay Northeast, ON" }, { postalCode: "P7J 1C9", cityName: "Thunder Bay South, ON" }, { postalCode: "P7E 7J9", cityName: "Thunder Bay South Central, ON" }, { postalCode: "P7K 1A4", cityName: "Thunder Bay West, ON" }, { postalCode: "J0X 3B0", cityName: "Thurso, QC" }, { postalCode: "K0H 2V0", cityName: "Tichborne, ON" }, { postalCode: "A0C 2R0", cityName: "Tickle Cove, NL" }, { postalCode: "E3N 4G3", cityName: "Tide Head, NB" }, { postalCode: "T0G 2G0", cityName: "Tiger Lily, AB" }, { postalCode: "C0B 2B0", cityName: "Tignish, PEI" }, { postalCode: "N0P 2L0", cityName: "Tilbury, ON" }, { postalCode: "P0H 2K0", cityName: "Tilden Lake, ON" }, { postalCode: "E7H 0A3", cityName: "Tilley, NB" }, { postalCode: "T0J 3K0", cityName: "Tilley, AB" }, { postalCode: "N4G 5X9", cityName: "Tillsonburg, ON" }, { postalCode: "R0M 2B0", cityName: "Tilston, MB" }, { postalCode: "A0G 4H0", cityName: "Tilting, NL" }, { postalCode: "S0J 2T0", cityName: "Timber Bay, SK" }, { postalCode: "E4M 2K2", cityName: "Timber River, NB" }, { postalCode: "B3T 0A4", cityName: "Timberlea, NS" }, { postalCode: "P0K 1A0", cityName: "Timiskaming North (Iroquois Falls A), ON" }, { postalCode: "P0J 1A0", cityName: "Timiskaming South (Temiskaming Shores), ON" }, { postalCode: "P4P 1J2", cityName: "Timmins North, ON" }, { postalCode: "P0N 1A0", cityName: "Timmins Region (South Porcupine), ON" }, { postalCode: "P4N 8T3", cityName: "Timmins Southeast, ON" }, { postalCode: "P4R 1N8", cityName: "Timmins West, ON" }, { postalCode: "J0A 1L0", cityName: "Tingwick, QC" }, { postalCode: "E7H 5A2", cityName: "Tinker, NB" }, { postalCode: "S0E 1T0", cityName: "Tisdale, SK" }, { postalCode: "E5N 0E8", cityName: "Titusville, NB" }, { postalCode: "B0V 1G0", cityName: "Tiverton, NS" }, { postalCode: "N0G 2T0", cityName: "Tiverton, ON" }, { postalCode: "A0G 4J0", cityName: "Tizzards Harbour, NL" }, { postalCode: "V0T 1Y0", cityName: "Tlell, BC" }, { postalCode: "V0C 2X0", cityName: "Toad River, BC" }, { postalCode: "N0H 2R0", cityName: "Tobermory, ON" }, { postalCode: "E7H 1C6", cityName: "Tobique First Nation, NB" }, { postalCode: "E7H 2R7", cityName: "Tobique Narrows, NB" }, { postalCode: "T0B 4J0", cityName: "Tofield, AB" }, { postalCode: "V0R 2Z0", cityName: "Tofino, BC" }, { postalCode: "S0A 4E0", cityName: "Togo, SK" }, { postalCode: "K0E 1Y0", cityName: "Toledo, ON" }, { postalCode: "R0A 2E0", cityName: "Tolstoi, MB" }, { postalCode: "T0E 2H0", cityName: "Tomahawk, AB" }, { postalCode: "S0N 2S0", cityName: "Tompkins, SK" }, { postalCode: "V0C 2L0", cityName: "Tomslake, BC" }, { postalCode: "V0J 2Y0", cityName: "Topley, BC" }, { postalCode: "A1K 1A1", cityName: "Torbay, NL" }, { postalCode: "M3B 0A3", cityName: "Toronto, ON" }, { postalCode: "M3C 0C1", cityName: "Toronto, ON" }, { postalCode: "M3H 6A7", cityName: "Toronto, ON" }, { postalCode: "M3M 3G1", cityName: "Toronto, ON" }, { postalCode: "M4B 2J8", cityName: "Toronto, ON" }, { postalCode: "M4C 1A1", cityName: "Toronto, ON" }, { postalCode: "M4G 0A3", cityName: "Toronto, ON" }, { postalCode: "M4H 1B6", cityName: "Toronto, ON" }, { postalCode: "M4N 0A2", cityName: "Toronto, ON" }, { postalCode: "M5M 0A1", cityName: "Toronto, ON" }, { postalCode: "M6A 1Y5", cityName: "Toronto, ON" }, { postalCode: "M6B 0A1", cityName: "Toronto, ON" }, { postalCode: "M6C 0A1", cityName: "Toronto, ON" }, { postalCode: "M6L 2N1", cityName: "Toronto, ON" }, { postalCode: "M6M 3L1", cityName: "Toronto, ON" }, { postalCode: "M9M 3A6", cityName: "Toronto, ON" }, { postalCode: "M9N 2G4", cityName: "Toronto, ON" }, { postalCode: "M4P 3J7", cityName: "Toronto Central (Davisville North), ON" }, { postalCode: "M4S 3H9", cityName: "Toronto Central (Davisville), ON" }, { postalCode: "M4N 3M4", cityName: "Toronto Central (Lawrence Park East), ON" }, { postalCode: "M4T 3B6", cityName: "Toronto Central (Moore Park / Summerhill East), ON" }, { postalCode: "M4R 2J3", cityName: "Toronto Central (North Toronto West), ON" }, { postalCode: "M4V 2H2", cityName: "Toronto Central (Summerhill West / Rathnelly / South Hill / Forest Hill SE / Deer Park), ON" }, { postalCode: "M7Y 2G1", cityName: "Toronto East, ON" }, { postalCode: "M4L 6T1", cityName: "Toronto East (India Bazaar / The Beaches West), ON" }, { postalCode: "M4M 3P2", cityName: "Toronto East (Studio District), ON" }, { postalCode: "M4E 3B4", cityName: "Toronto East (The Beaches), ON" }, { postalCode: "M4J 5B9", cityName: "Toronto East (The Danforth East), ON" }, { postalCode: "M4K 3Y6", cityName: "Toronto East (The Danforth West / Riverdale), ON" }, { postalCode: "S0C 2L0", cityName: "Torquay, SK" }, { postalCode: "P0C 1M0", cityName: "Torrance, ON" }, { postalCode: "T0M 2B0", cityName: "Torrington, AB" }, { postalCode: "A0A 4A0", cityName: "Tors Cove, NL" }, { postalCode: "K0L 2Y0", cityName: "Tory Hill, ON" }, { postalCode: "L0G 1W0", cityName: "Tottenham, ON" }, { postalCode: "H4Z 1M1", cityName: "Tour de la Bourse, QC" }, { postalCode: "R0A 2G0", cityName: "Tourond, MB" }, { postalCode: "G0R 4M0", cityName: "Tourville, QC" }, { postalCode: "R0L 2A0", cityName: "Toutes Aides, MB" }, { postalCode: "E5A 0A1", cityName: "Tower Hill, NB" }, { postalCode: "B1B 1J5", cityName: "Tower Road, NS" }, { postalCode: "N0A 1S0", cityName: "Townsend, ON" }, { postalCode: "E1X 1K2", cityName: "Tracadie Beach, NB" }, { postalCode: "E1X 0A2", cityName: "Tracadie-Sheila, NB" }, { postalCode: "E1X 0A9", cityName: "Tracadie-Sheila, NB" }, { postalCode: "E7K 1G3", cityName: "Tracey Mills, NB" }, { postalCode: "E5L 1A1", cityName: "Tracy, NB" }, { postalCode: "E5L 1L7", cityName: "Tracyville, NB" }, { postalCode: "V1R 1A1", cityName: "Trail, BC" }, { postalCode: "S0K 4H0", cityName: "Tramping Lake, SK" }, { postalCode: "R0E 2A0", cityName: "Traverse Bay, MB" }, { postalCode: "A0G 4K0", cityName: "Traytown, NL" }, { postalCode: "J0Y 2S0", cityName: "Trecesson, QC" }, { postalCode: "R0G 2V0", cityName: "Treherne, MB" }, { postalCode: "E8J 2T2", cityName: "Tremblay, NB" }, { postalCode: "K0L 2Z0", cityName: "Trent River, ON" }, { postalCode: "K8V 1A1", cityName: "Trenton, ON" }, { postalCode: "B0K 1X0", cityName: "Trenton, NS" }, { postalCode: "A0A 4B0", cityName: "Trepassey, NL" }, { postalCode: "J0P 1P0", cityName: "Tres-Saint-Redempteur, QC" }, { postalCode: "S0C 2M0", cityName: "Tribune, SK" }, { postalCode: "G0N 1X0", cityName: "Tring-Jonction, QC" }, { postalCode: "A0G 4L0", cityName: "Trinity BB, NL" }, { postalCode: "A0C 2S0", cityName: "Trinity TB, NL" }, { postalCode: "A0J 1V0", cityName: "Triton, NL" }, { postalCode: "T0M 2C0", cityName: "Trochu, AB" }, { postalCode: "G0L 4K0", cityName: "Trois-Pistoles, QC" }, { postalCode: "G0X 2C0", cityName: "Trois-Rives, QC" }, { postalCode: "G8Y 7K8", cityName: "Trois-Rivi&egrave;res Central, QC" }, { postalCode: "G9A 5N4", cityName: "Trois-Rivi&egrave;res East, QC" }, { postalCode: "G8Z 4L3", cityName: "Trois-Rivi&egrave;res Northeast, QC" }, { postalCode: "G9B 2L7", cityName: "Trois-Rivi&egrave;res South, QC" }, { postalCode: "G9C 1N6", cityName: "Trois-Rivi&egrave;res West, QC" }, { postalCode: "E4N 2S9", cityName: "Trois-Ruisseaux, NB" }, { postalCode: "S0C 2N0", cityName: "Trossachs, SK" }, { postalCode: "E9E 0A2", cityName: "Trout Brook, NB" }, { postalCode: "P0H 2L0", cityName: "Trout Creek, ON" }, { postalCode: "T0G 2N0", cityName: "Trout Lake, AB" }, { postalCode: "X0E 1Z0", cityName: "Trout Lake, NT" }, { postalCode: "A0K 5P0", cityName: "Trout River, NL" }, { postalCode: "B9A 1E4", cityName: "Troy, NS" }, { postalCode: "L0R 2B0", cityName: "Troy, ON" }, { postalCode: "S0H 4A0", cityName: "Truax, SK" }, { postalCode: "E8R 1N1", cityName: "Trudel, NB" }, { postalCode: "B2N 5K4", cityName: "Truro, NS" }, { postalCode: "V4K 3N2", cityName: "Tsawwassen, BC" }, { postalCode: "V4M 2J3", cityName: "Tsawwassen, BC" }, { postalCode: "V0J 3N0", cityName: "Tsay Keh Dene, BC" }, { postalCode: "X0E 0B0", cityName: "Tsiigehtchic, NT" }, { postalCode: "T2W 1S6", cityName: "Tsuu T\'Ina, AB" }, { postalCode: "T3E 3X8", cityName: "Tsuu T\'Ina, AB" }, { postalCode: "S0A 4G0", cityName: "Tuffnell, SK" }, { postalCode: "S0H 4B0", cityName: "Tugaske, SK" }, { postalCode: "X0E 1C0", cityName: "Tuktoyaktuk, NT" }, { postalCode: "V0X 2L0", cityName: "Tulameen, BC" }, { postalCode: "X0E 0K0", cityName: "Tulita, NT" }, { postalCode: "T0A 3K0", cityName: "Tulliby Lake, AB" }, { postalCode: "V0C 2W0", cityName: "Tumbler Ridge, BC" }, { postalCode: "P0N 1J0", cityName: "Tunis, ON" }, { postalCode: "N0P 2M0", cityName: "Tupperville, ON" }, { postalCode: "T0K 2H0", cityName: "Turin, AB" }, { postalCode: "N0E 1T0", cityName: "Turkey Point, ON" }, { postalCode: "A0B 3P0", cityName: "Turks Cove, NL" }, { postalCode: "T0L 2A0", cityName: "Turner Valley, AB" }, { postalCode: "S0M 3E0", cityName: "Turnor Lake, SK" }, { postalCode: "E1J 0A3", cityName: "Turtle Creek, NB" }, { postalCode: "S0M 2Y0", cityName: "Turtleford, SK" }, { postalCode: "B0W 3M0", cityName: "Tusket, NS" }, { postalCode: "S0H 4C0", cityName: "Tuxford, SK" }, { postalCode: "S0K 4K0", cityName: "Tway, SK" }, { postalCode: "K0K 3J0", cityName: "Tweed, ON" }, { postalCode: "A0G 4M0", cityName: "Twillingate, NL" }, { postalCode: "T0K 2J0", cityName: "Twin Butte, AB" }, { postalCode: "E7G 3E1", cityName: "Two Brooks, NB" }, { postalCode: "T0B 4K0", cityName: "Two Hills, AB" }, { postalCode: "R0E 2B0", cityName: "Tyndall, MB" }, { postalCode: "C0B 2C0", cityName: "Tyne Valley, PEI" }, { postalCode: "E5R 0A7", cityName: "Tynemouth Creek, NB" }, { postalCode: "S0L 3H0", cityName: "Tyner, SK" }, { postalCode: "S0G 4X0", cityName: "Tyvan, SK" }, { postalCode: "V0R 3A0", cityName: "Ucluelet, BC" }, { postalCode: "L0C 1L0", cityName: "Udora, ON" }, { postalCode: "X0E 0S0", cityName: "Ulukhaktok, NT" }, { postalCode: "J0B 2B0", cityName: "Ulverton, QC" }, { postalCode: "J0M 1Y0", cityName: "Umiujaq, QC" }, { postalCode: "N0L 2L0", cityName: "Union, ON" }, { postalCode: "V0R 3B0", cityName: "Union Bay, BC" }, { postalCode: "E7N 2G2", cityName: "Union Corner, NB" }, { postalCode: "L3R 0E5", cityName: "Unionville, ON" }, { postalCode: "S0K 4L0", cityName: "Unity, SK" }, { postalCode: "E5N 0E9", cityName: "Upham, NB" }, { postalCode: "E9B 1T4", cityName: "Upper Blackville, NB" }, { postalCode: "B4V 4W4", cityName: "Upper Branch, NS" }, { postalCode: "E7P 2P3", cityName: "Upper Brighton, NB" }, { postalCode: "K0C 2G0", cityName: "Upper Canada Village, ON" }, { postalCode: "E4M 0A6", cityName: "Upper Cape, NB" }, { postalCode: "E6E 1L2", cityName: "Upper Caverhill, NB" }, { postalCode: "B4V 8G1", cityName: "Upper Chelsea, NS" }, { postalCode: "V0A 1K0", cityName: "Upper Columbia Region (Golden), BC" }, { postalCode: "E1J 0A8", cityName: "Upper Coverdale, NB" }, { postalCode: "E9E 2K1", cityName: "Upper Derby, NB" }, { postalCode: "E4K 3L6", cityName: "Upper Dorchester, NB" }, { postalCode: "V0J 2Z0", cityName: "Upper Fraser, BC" }, { postalCode: "E5M 1M4", cityName: "Upper Gagetown, NB" }, { postalCode: "E2S 0A4", cityName: "Upper Golden Grove, NB" }, { postalCode: "B1K 1L2", cityName: "Upper Grand Mira, NS" }, { postalCode: "E6E 1J1", cityName: "Upper Hainesville, NB" }, { postalCode: "B4B 0C2", cityName: "Upper Hammonds Plains, NS" }, { postalCode: "A0A 4E0", cityName: "Upper Island Cove, NL" }, { postalCode: "B0N 2L0", cityName: "Upper Kennetcook, NS" }, { postalCode: "E7J 1R6", cityName: "Upper Kent, NB" }, { postalCode: "E7H 0A4", cityName: "Upper Kintore, NB" }, { postalCode: "E7K 2S2", cityName: "Upper Knoxford, NB" }, { postalCode: "B4V 0G4", cityName: "Upper Lahave, NS" }, { postalCode: "B2A 3Y1", cityName: "Upper Leitches Creek, NS" }, { postalCode: "E5C 2C3", cityName: "Upper Letang, NB" }, { postalCode: "E2S 2H9", cityName: "Upper Loch Lomond, NB" }, { postalCode: "E3L 3E8", cityName: "Upper Mills, NB" }, { postalCode: "B0N 2M0", cityName: "Upper Musquodoboit, NS" }, { postalCode: "B2S 2Y2", cityName: "Upper Nine Mile River, NS" }, { postalCode: "B2A 3X5", cityName: "Upper North Sydney, NS" }, { postalCode: "B4V 4Y7", cityName: "Upper Northfield, NS" }, { postalCode: "B0W 3N0", cityName: "Upper Port la Tour, NS" }, { postalCode: "E6G 1W5", cityName: "Upper Queensbury, NB" }, { postalCode: "B0N 2N0", cityName: "Upper Rawdon, NS" }, { postalCode: "E4K 0A4", cityName: "Upper Rockport, NB" }, { postalCode: "B4E 3B7", cityName: "Upper Sackville, NS" }, { postalCode: "E4L 0A3", cityName: "Upper Sackville, NB" }, { postalCode: "E4A 1B9", cityName: "Upper Salmon Creek, NB" }, { postalCode: "B0N 2P0", cityName: "Upper Stewiacke, NS" }, { postalCode: "B3Z 0A3", cityName: "Upper Tantallon, NS" }, { postalCode: "E5L 1C9", cityName: "Upper Tracy, NB" }, { postalCode: "B2C 1L7", cityName: "Upper Washabuck, NS" }, { postalCode: "E7M 0C1", cityName: "Upper Woodstock, NB" }, { postalCode: "E5N 0C7", cityName: "Upperton, NB" }, { postalCode: "P0T 2Y0", cityName: "Upsala, ON" }, { postalCode: "E3N 6H7", cityName: "Upsalquitch, NB" }, { postalCode: "J0H 2E0", cityName: "Upton, QC" }, { postalCode: "S0J 2W0", cityName: "Uranium City, SK" }, { postalCode: "L0M 1T0", cityName: "Utopia, ON" }, { postalCode: "P0B 1M0", cityName: "Utterson, ON" }, { postalCode: "L9P 2A7", cityName: "Uxbridge, ON" }, { postalCode: "E1X 1H1", cityName: "Val Comeau, NB" }, { postalCode: "P0L 2E0", cityName: "Val Cote, ON" }, { postalCode: "P0K 1W0", cityName: "Val Gagne, ON" }, { postalCode: "S0N 2T0", cityName: "Val Marie, SK" }, { postalCode: "P0L 2G0", cityName: "Val Rita, ON" }, { postalCode: "P3P 1S3", cityName: "Val Therese, ON" }, { postalCode: "G0S 3H0", cityName: "Val-Alain, QC" }, { postalCode: "G3J 2A2", cityName: "Val-B&eacute;lair North, QC" }, { postalCode: "G3K 1Y1", cityName: "Val-B&eacute;lair South, QC" }, { postalCode: "G0J 3L0", cityName: "Val-Brillant, QC" }, { postalCode: "E3N 5E1", cityName: "Val-d\'Amour, NB" }, { postalCode: "G0C 3G0", cityName: "Val-d\'Espoir, QC" }, { postalCode: "J9P 7H5", cityName: "Val-d\'Or, QC" }, { postalCode: "J0T 2N0", cityName: "Val-David, QC" }, { postalCode: "J0X 3C0", cityName: "Val-des-Bois, QC" }, { postalCode: "J0T 2P0", cityName: "Val-des-Lacs, QC" }, { postalCode: "J8N 4K2", cityName: "Val-des-Monts, QC" }, { postalCode: "E8R 0A1", cityName: "Val-Doucet, NB" }, { postalCode: "J1S 0C1", cityName: "Val-Joli, QC" }, { postalCode: "J0T 2R0", cityName: "Val-Morin, QC" }, { postalCode: "J0Z 3S0", cityName: "Val-Paradis, QC" }, { postalCode: "G0Y 1E0", cityName: "Val-Racine, QC" }, { postalCode: "J0Z 3M0", cityName: "Val-Saint-Gilles, QC" }, { postalCode: "J0E 2L0", cityName: "Valcourt, QC" }, { postalCode: "V0E 2Z0", cityName: "Valemount, BC" }, { postalCode: "T0H 3M0", cityName: "Valhalla Centre, AB" }, { postalCode: "G0S 3J0", cityName: "Vallee-Jonction, QC" }, { postalCode: "A0G 4S0", cityName: "Valley Pond, NL" }, { postalCode: "R0L 2B0", cityName: "Valley River, MB" }, { postalCode: "E3L 0B6", cityName: "Valley Road, NB" }, { postalCode: "J7X 1P7", cityName: "Valleyfield, QC" }, { postalCode: "T0H 3N0", cityName: "Valleyview, AB" }, { postalCode: "V0N 3K0", cityName: "Van Anda, BC" }, { postalCode: "V7X 1A1", cityName: "Vancouver (Bentall Centre), BC" }, { postalCode: "V6K 1A1", cityName: "Vancouver (Central Kitsilano), BC" }, { postalCode: "V6S 0A1", cityName: "Vancouver (Chaldecutt / South University Endowment Lands), BC" }, { postalCode: "V6N 0A2", cityName: "Vancouver (Dunbar- Southlands / Musqueam), BC" }, { postalCode: "V5Z 0A1", cityName: "Vancouver (East Fairview / South Cambie), BC" }, { postalCode: "V5T 1A1", cityName: "Vancouver (East Mount Pleasant), BC" }, { postalCode: "V5S 0A1", cityName: "Vancouver (Killarney), BC" }, { postalCode: "V6B 0A1", cityName: "Vancouver (NE Downtown / Harbour Centre / Gastown / Yaletown), BC" }, { postalCode: "V5L 0A5", cityName: "Vancouver (North Grandview- Woodlands), BC" }, { postalCode: "V5K 1A1", cityName: "Vancouver (North Hastings- Sunrise), BC" }, { postalCode: "V6G 1A5", cityName: "Vancouver (North West End / Stanley Park), BC" }, { postalCode: "V6L 0A1", cityName: "Vancouver (NW Arbutus Ridge), BC" }, { postalCode: "V6J 1A1", cityName: "Vancouver (NW Shaughnessy / East Kitsilano / Quilchena), BC" }, { postalCode: "V7Y 1A1", cityName: "Vancouver (Pacific Centre), BC" }, { postalCode: "V5P 1A1", cityName: "Vancouver (SE Kensington / Victoria- Fraserview), BC" }, { postalCode: "V6P 1A1", cityName: "Vancouver (SE Kerrisdale / SW Oakridge / West Marpole), BC" }, { postalCode: "V5X 1A1", cityName: "Vancouver (SE Oakridge / East Marpole / South Sunset), BC" }, { postalCode: "V5W 0A1", cityName: "Vancouver (SE Riley Park- Little Mountain / SW Kensington / NE Oakridge / North Sunset), BC" }, { postalCode: "V5N 1A2", cityName: "Vancouver (South Grandview- Woodlands / NE Kensington), BC" }, { postalCode: "V5M 0A1", cityName: "Vancouver (South Hastings-Sunrise / North Renfrew- Collingwood), BC" }, { postalCode: "V5R 1A1", cityName: "Vancouver (South Renfrew- Collingwood), BC" }, { postalCode: "V6M 1A1", cityName: "Vancouver (South Shaughnessy / NW Oakridge / NE Kerrisdale / SE Arbutus Ridge), BC" }, { postalCode: "V6E 0A1", cityName: "Vancouver (South West End), BC" }, { postalCode: "V6A 1A3", cityName: "Vancouver (Strathcona / Chinatown / Downtown Eastside), BC" }, { postalCode: "V6Z 1A1", cityName: "Vancouver (SW Downtown), BC" }, { postalCode: "V6T 0A1", cityName: "Vancouver (UBC), BC" }, { postalCode: "V6C 0A1", cityName: "Vancouver (Waterfront / Coal Harbour / Canada Place), BC" }, { postalCode: "V6H 1A3", cityName: "Vancouver (West Fairview / Granville Island / NE Shaughnessy), BC" }, { postalCode: "V5V 1A1", cityName: "Vancouver (West Kensington / NE Riley Park- Little Mountain), BC" }, { postalCode: "V6R 1A1", cityName: "Vancouver (West Kitsilano / Jericho), BC" }, { postalCode: "V5Y 1A3", cityName: "Vancouver (West Mount Pleasant / West Riley Park- Little Mountain), BC" }, { postalCode: "V0J 3A0", cityName: "Vanderhoof, BC" }, { postalCode: "N0E 1V0", cityName: "Vanessa, ON" }, { postalCode: "S0N 2V0", cityName: "Vanguard, SK" }, { postalCode: "K1A 0R4", cityName: "Vanier, ON" }, { postalCode: "K1K 1K4", cityName: "Vanier, ON" }, { postalCode: "K0B 1R0", cityName: "Vankleek Hill, ON" }, { postalCode: "S0L 3J0", cityName: "Vanscoy, SK" }, { postalCode: "J3X 2B9", cityName: "Varennes, QC" }, { postalCode: "N0M 2R0", cityName: "Varna, ON" }, { postalCode: "K0A 3H0", cityName: "Vars, ON" }, { postalCode: "R0A 2J0", cityName: "Vassar, MB" }, { postalCode: "J7V 9R2", cityName: "Vaudreuil- Dorion, QC" }, { postalCode: "J7T 4A1", cityName: "Vaudreuil- Dorion RCM, QC" }, { postalCode: "J7T 2C8", cityName: "Vaudreuil-Dorion, QC" }, { postalCode: "J0P 1B0", cityName: "Vaudreuil-Soulanges (Coteau-du-Lac), QC" }, { postalCode: "J7V 8P3", cityName: "Vaudreuil-sur-le-Lac, QC" }, { postalCode: "L6A 0K9", cityName: "Vaughan, ON" }, { postalCode: "T0K 2K0", cityName: "Vauxhall, AB" }, { postalCode: "V0E 3A0", cityName: "Vavenby, BC" }, { postalCode: "S0M 2Z0", cityName: "Vawn, SK" }, { postalCode: "T0G 2H0", cityName: "Vega, AB" }, { postalCode: "T9C 1A3", cityName: "Vegreville, AB" }, { postalCode: "J0T 2T0", cityName: "Vendee, QC" }, { postalCode: "J0J 2K0", cityName: "Venise-En-Quebec, QC" }, { postalCode: "J0X 3E0", cityName: "Venosta, QC" }, { postalCode: "J0L 2R0", cityName: "Vercheres, QC" }, { postalCode: "H4G 3N1", cityName: "Verdun North, QC" }, { postalCode: "H4H 2T3", cityName: "Verdun South, QC" }, { postalCode: "S0A 4H0", cityName: "Veregin, SK" }, { postalCode: "R0G 2W0", cityName: "Vermette, MB" }, { postalCode: "T9X 0A1", cityName: "Vermilion, AB" }, { postalCode: "P0V 2V0", cityName: "Vermilion Bay, ON" }, { postalCode: "P0H 2M0", cityName: "Verner, ON" }, { postalCode: "K0A 3J0", cityName: "Vernon, ON" }, { postalCode: "V1B 2C7", cityName: "Vernon, BC" }, { postalCode: "C0A 2E0", cityName: "Vernon Bridge, PEI" }, { postalCode: "C0A 2E0", cityName: "Vernon Bridge, PEI" }, { postalCode: "V1T 1A1", cityName: "Vernon Central, BC" }, { postalCode: "V1B 1A5", cityName: "Vernon East, BC" }, { postalCode: "V1H 1A1", cityName: "Vernon West, BC" }, { postalCode: "K0H 2W0", cityName: "Verona, ON" }, { postalCode: "E3V 0B3", cityName: "Verret, NB" }, { postalCode: "S0H 4G0", cityName: "Verwood, SK" }, { postalCode: "E5L 1K7", cityName: "Vespra, NB" }, { postalCode: "T0C 2S0", cityName: "Veteran, AB" }, { postalCode: "S0G 4Y0", cityName: "Vibank, SK" }, { postalCode: "S0H 4H0", cityName: "Viceroy, SK" }, { postalCode: "S0J 2X0", cityName: "Victoire, SK" }, { postalCode: "C0A 2G0", cityName: "Victoria, PEI" }, { postalCode: "C0A 2G0", cityName: "Victoria, PEI" }, { postalCode: "R0E 2C0", cityName: "Victoria Beach, MB" }, { postalCode: "A0A 4G0", cityName: "Victoria Cb, NL" }, { postalCode: "V8W 0A1", cityName: "Victoria Central British Columbia Provincial Government, BC" }, { postalCode: "E7P 1C7", cityName: "Victoria Corner, NB" }, { postalCode: "A0G 4N0", cityName: "Victoria Cove, NL" }, { postalCode: "L0K 2A0", cityName: "Victoria Harbour, ON" }, { postalCode: "B1N 3J3", cityName: "Victoria Mines, NS" }, { postalCode: "V8T 1A1", cityName: "Victoria North, BC" }, { postalCode: "V8V 0A1", cityName: "Victoria South, BC" }, { postalCode: "G6P 9V7", cityName: "Victoriaville Central, QC" }, { postalCode: "G6S 1B7", cityName: "Victoriaville East, QC" }, { postalCode: "G6T 0A1", cityName: "Victoriaville Northwest, QC" }, { postalCode: "G6R 0A2", cityName: "Victoriaville South, QC" }, { postalCode: "S0N 2W0", cityName: "Vidora, SK" }, { postalCode: "N0J 1Z0", cityName: "Vienna, ON" }, { postalCode: "T0B 4N0", cityName: "Viking, AB" }, { postalCode: "E8P 1P4", cityName: "Village Blanchard, NB" }, { postalCode: "J6E 0H1", cityName: "Village Saint-Pierre, QC" }, { postalCode: "E9G 2J1", cityName: "Village-Saint-Laurent, NB" }, { postalCode: "H4E 4P4", cityName: "Ville &Eacute;mard, QC" }, { postalCode: "J9V 2B3", cityName: "Ville-Marie, QC" }, { postalCode: "J0Z 3V0", cityName: "Villebois, QC" }, { postalCode: "H2E 3B4", cityName: "Villeray Northeast, QC" }, { postalCode: "H2R 3C2", cityName: "Villeray Southeast, QC" }, { postalCode: "H2P 3A1", cityName: "Villeray West, QC" }, { postalCode: "G0S 3K0", cityName: "Villeroy, QC" }, { postalCode: "T0A 3L0", cityName: "Vilna, AB" }, { postalCode: "H7M 6G3", cityName: "Vimont, QC" }, { postalCode: "H7K 3G5", cityName: "Vimont, QC" }, { postalCode: "H7M 2N7", cityName: "Vimont, QC" }, { postalCode: "T0G 2J0", cityName: "Vimy, AB" }, { postalCode: "E4E 3Z2", cityName: "Vinegar Hill, NB" }, { postalCode: "L0R 2C0", cityName: "Vineland, ON" }, { postalCode: "L0R 2E0", cityName: "Vineland Station, ON" }, { postalCode: "R0M 2C0", cityName: "Virden, MB" }, { postalCode: "L0S 1T0", cityName: "Virgil, ON" }, { postalCode: "P0K 1X0", cityName: "Virginiatown, ON" }, { postalCode: "S0K 4M0", cityName: "Viscount, SK" }, { postalCode: "R0J 2E0", cityName: "Vista, MB" }, { postalCode: "R0A 2K0", cityName: "Vita, MB" }, { postalCode: "N0E 1W0", cityName: "Vittoria, ON" }, { postalCode: "R0C 3C0", cityName: "Vogar, MB" }, { postalCode: "S0K 4N0", cityName: "Vonda, SK" }, { postalCode: "T0L 2B0", cityName: "Vulcan, AB" }, { postalCode: "E3B 0A1", cityName: "Waasis, NB" }, { postalCode: "T0E 2K0", cityName: "Wabamun, AB" }, { postalCode: "T0G 2K0", cityName: "Wabasca, AB" }, { postalCode: "P0V 2W0", cityName: "Wabigoon, ON" }, { postalCode: "R0B 1S0", cityName: "Wabowden, MB" }, { postalCode: "A0R 1B0", cityName: "Wabush, NL" }, { postalCode: "S0A 4J0", cityName: "Wadena, SK" }, { postalCode: "B0E 3N0", cityName: "Wagmatcook, NS" }, { postalCode: "P0M 3C0", cityName: "Wahnapitae, ON" }, { postalCode: "L0S 1V0", cityName: "Wainfleet, ON" }, { postalCode: "T9W 1A7", cityName: "Wainwright, AB" }, { postalCode: "T0B 0C0", cityName: "Wainwright Region (Tofield), AB" }, { postalCode: "S0K 4P0", cityName: "Wakaw, SK" }, { postalCode: "E7M 1A3", cityName: "Wakefield, NB" }, { postalCode: "J0X 3G0", cityName: "Wakefield, QC" }, { postalCode: "S0H 4J0", cityName: "Waldeck, SK" }, { postalCode: "R0J 2G0", cityName: "Waldersee, MB" }, { postalCode: "S0K 4R0", cityName: "Waldheim, SK" }, { postalCode: "P0V 2X0", cityName: "Waldhof, ON" }, { postalCode: "S0A 4K0", cityName: "Waldron, SK" }, { postalCode: "P0P 2E0", cityName: "Walford Station, ON" }, { postalCode: "V0K 2P0", cityName: "Walhachin, BC" }, { postalCode: "E4E 4C6", cityName: "Walker Settlement, NB" }, { postalCode: "N0G 2V0", cityName: "Walkerton, ON" }, { postalCode: "B0K 1Y0", cityName: "Wallace, NS" }, { postalCode: "N8A 1W5", cityName: "Wallaceburg, ON" }, { postalCode: "N0L 2M0", cityName: "Wallacetown, ON" }, { postalCode: "N0B 2S0", cityName: "Wallenstein, ON" }, { postalCode: "T0J 3L0", cityName: "Walsh, AB" }, { postalCode: "N0E 1X0", cityName: "Walsingham, ON" }, { postalCode: "N0H 2S0", cityName: "Walters Falls, ON" }, { postalCode: "J0X 3H0", cityName: "Waltham, QC" }, { postalCode: "B0N 2R0", cityName: "Walton, NS" }, { postalCode: "N0K 1Z0", cityName: "Walton, ON" }, { postalCode: "T0A 3M0", cityName: "Wandering River, AB" }, { postalCode: "T0H 3P0", cityName: "Wanham, AB" }, { postalCode: "R0E 2E0", cityName: "Wanipigow, MB" }, { postalCode: "R0B 1T0", cityName: "Wanless, MB" }, { postalCode: "S0G 4Z0", cityName: "Wapella, SK" }, { postalCode: "E7G 1B8", cityName: "Wapske, NB" }, { postalCode: "T0C 2T0", cityName: "Warburg, AB" }, { postalCode: "E6B 1Z4", cityName: "Ward Settlement, NB" }, { postalCode: "J0E 2M0", cityName: "Warden, QC" }, { postalCode: "T0J 3M0", cityName: "Wardlow, AB" }, { postalCode: "V0B 2J0", cityName: "Wardner, BC" }, { postalCode: "E4E 3G4", cityName: "Wards Creek, NB" }, { postalCode: "N0L 2N0", cityName: "Wardsville, ON" }, { postalCode: "V0J 3B0", cityName: "Ware, BC" }, { postalCode: "A0G 4P0", cityName: "Wareham-Centreville, NL" }, { postalCode: "K0K 3K0", cityName: "Warkworth, ON" }, { postalCode: "S0K 0A1", cityName: "Warman, SK" }, { postalCode: "L0K 2G0", cityName: "Warminster, ON" }, { postalCode: "T0K 2L0", cityName: "Warner, AB" }, { postalCode: "P0H 2N0", cityName: "Warren, ON" }, { postalCode: "R0C 3E0", cityName: "Warren, MB" }, { postalCode: "K0L 3A0", cityName: "Warsaw, ON" }, { postalCode: "T0A 3N0", cityName: "Warspite, AB" }, { postalCode: "J0A 1M0", cityName: "Warwick, QC" }, { postalCode: "E9E 1Y6", cityName: "Warwick Settlement, NB" }, { postalCode: "V0B 2K0", cityName: "Wasa, BC" }, { postalCode: "L9Z 3C5", cityName: "Wasaga Beach, ON" }, { postalCode: "R0B 1Z0", cityName: "Wasagamack, MB" }, { postalCode: "R0J 2H0", cityName: "Wasagaming, MB" }, { postalCode: "S0M 3A0", cityName: "Waseca, SK" }, { postalCode: "B2C 1L4", cityName: "Washabuck Centre, NS" }, { postalCode: "L0K 2B0", cityName: "Washago, ON" }, { postalCode: "R0M 2E0", cityName: "Waskada, MB" }, { postalCode: "J0M 1R0", cityName: "Waskaganish, QC" }, { postalCode: "T0A 3P0", cityName: "Waskatenau, AB" }, { postalCode: "S0J 2Y0", cityName: "Waskesiu Lake, SK" }, { postalCode: "J0Y 3C0", cityName: "Waswanipi, QC" }, { postalCode: "T0M 2E0", cityName: "Water Valley, AB" }, { postalCode: "E4C 0A5", cityName: "Waterborough, NB" }, { postalCode: "L0R 2H0", cityName: "Waterdown, ON" }, { postalCode: "E4E 3H3", cityName: "Waterford, NB" }, { postalCode: "N0E 1Y0", cityName: "Waterford, ON" }, { postalCode: "R0L 2C0", cityName: "Waterhen, MB" }, { postalCode: "S0M 3B0", cityName: "Waterhen Lake, SK" }, { postalCode: "B4V 8J5", cityName: "Waterloo, NS" }, { postalCode: "J0E 2N0", cityName: "Waterloo, QC" }, { postalCode: "N2K 0A1", cityName: "Waterloo, ON" }, { postalCode: "N2V 2Y8", cityName: "Waterloo Northwest, ON" }, { postalCode: "N2L 6N5", cityName: "Waterloo South, ON" }, { postalCode: "N2J 5A3", cityName: "Waterloo Southeast, ON" }, { postalCode: "N2T 3A3", cityName: "Waterloo Southwest, ON" }, { postalCode: "E4H 4K9", cityName: "Waterside, NB" }, { postalCode: "T0K 2M0", cityName: "Waterton Park, AB" }, { postalCode: "B0P 1V0", cityName: "Waterville, NS" }, { postalCode: "J0B 3H0", cityName: "Waterville, QC" }, { postalCode: "E7P 0A4", cityName: "Waterville Carleton Co, NB" }, { postalCode: "E2V 3R8", cityName: "Waterville-Sunbury, NB" }, { postalCode: "N0M 2S0", cityName: "Watford, ON" }, { postalCode: "T0H 3R0", cityName: "Watino, AB" }, { postalCode: "S0K 4T0", cityName: "Watrous, SK" }, { postalCode: "S0K 4V0", cityName: "Watson, SK" }, { postalCode: "L0K 2C0", cityName: "Waubaushene, ON" }, { postalCode: "S0C 2P0", cityName: "Wauchope, SK" }, { postalCode: "B2R 0A1", cityName: "Waverley, NS" }, { postalCode: "P0S 1K0", cityName: "Wawa, ON" }, { postalCode: "R0K 2G0", cityName: "Wawanesa, MB" }, { postalCode: "E3L 0A4", cityName: "Waweig, NB" }, { postalCode: "S0G 5A0", cityName: "Wawota, SK" }, { postalCode: "E9E 0A4", cityName: "Wayerton, NB" }, { postalCode: "R0J 1S0", cityName: "Waywayseecappo, MB" }, { postalCode: "P0V 2Y0", cityName: "Weagamow Lake, ON" }, { postalCode: "E7G 2C2", cityName: "Weaver, NB" }, { postalCode: "E9C 1N1", cityName: "Weaver Siding, NB" }, { postalCode: "S0N 2X0", cityName: "Webb, SK" }, { postalCode: "P0P 2G0", cityName: "Webbwood, ON" }, { postalCode: "P0T 3A0", cityName: "Webequie, ON" }, { postalCode: "B0W 3P0", cityName: "Wedgeport, NS" }, { postalCode: "J0B 3J0", cityName: "Weedon, QC" }, { postalCode: "S0E 1V0", cityName: "Weekes, SK" }, { postalCode: "S0J 2Z0", cityName: "Weirdale, SK" }, { postalCode: "X0E 1W0", cityName: "Wekweti, NT" }, { postalCode: "E4H 0A6", cityName: "Weldon, NB" }, { postalCode: "S0J 3A0", cityName: "Weldon, SK" }, { postalCode: "L3B 6J3", cityName: "Welland East, ON" }, { postalCode: "L3C 7N6", cityName: "Welland West, ON" }, { postalCode: "L0R 2J0", cityName: "Wellandport, ON" }, { postalCode: "N0B 2T0", cityName: "Wellesley, ON" }, { postalCode: "T0K 2N0", cityName: "Welling, AB" }, { postalCode: "B2T 0B5", cityName: "Wellington, NS" }, { postalCode: "K0K 3L0", cityName: "Wellington, ON" }, { postalCode: "N0B 1A0", cityName: "Wellington (Elora), ON" }, { postalCode: "C0B 2E0", cityName: "Wellington Station, PEI" }, { postalCode: "V0K 2R0", cityName: "Wells, BC" }, { postalCode: "R0K 2H0", cityName: "Wellwood, MB" }, { postalCode: "E5K 3X7", cityName: "Welsford, NB" }, { postalCode: "E5E 1A1", cityName: "Welshpool, NB" }, { postalCode: "S0A 4L0", cityName: "Welwyn, SK" }, { postalCode: "T0H 3S0", cityName: "Wembley, AB" }, { postalCode: "J0M 1L0", cityName: "Wemindji, QC" }, { postalCode: "G0X 3R0", cityName: "Wemotaci, QC" }, { postalCode: "G0A 4V0", cityName: "Wendake, QC" }, { postalCode: "K0A 3K0", cityName: "Wendover, ON" }, { postalCode: "B0M 1Z0", cityName: "Wentworth, NS" }, { postalCode: "J8H 0A2", cityName: "Wentworth, QC" }, { postalCode: "J0T 1Y0", cityName: "Wentworth-Nord, QC" }, { postalCode: "B4V 8T5", cityName: "Wentzells Lake, NS" }, { postalCode: "A0G 4R0", cityName: "Wesleyville, NL" }, { postalCode: "B0S 1G0", cityName: "West Annapolis County (Middleton), NS" }, { postalCode: "B0E 3J0", cityName: "West Arichat, NS" }, { postalCode: "T9S 1R8", cityName: "West Baptiste, AB" }, { postalCode: "B0E 3K0", cityName: "West Bay, NS" }, { postalCode: "B0E 3L0", cityName: "West Bay Road, NS" }, { postalCode: "S0A 4M0", cityName: "West Bend, SK" }, { postalCode: "E4W 3G1", cityName: "West Branch, NB" }, { postalCode: "J0E 2P0", cityName: "West Brome, QC" }, { postalCode: "B0E 2L0", cityName: "West Cape Breton Island (Baddeck), NS" }, { postalCode: "B0J 1N0", cityName: "West Chezzetcook, NS" }, { postalCode: "B4V 8G8", cityName: "West Clifford, NS" }, { postalCode: "L0C 1A0", cityName: "West Durham Regional Municipality (Sunderland), ON" }, { postalCode: "K0M 2S0", cityName: "West Guilford, ON" }, { postalCode: "N0A 1N9", cityName: "West Haldimand (Port Dover), ON" }, { postalCode: "V0G 1C0", cityName: "West Kootenays (Rossland), BC" }, { postalCode: "N0L 2P0", cityName: "West Lorne, ON" }, { postalCode: "B0R 1A0", cityName: "West Lunenburg County (New Germany), NS" }, { postalCode: "N0B 2V0", cityName: "West Montrose, ON" }, { postalCode: "B4V 5B4", cityName: "West Northfield, NS" }, { postalCode: "L0A 1A0", cityName: "West Northumberland County (Millbrook), ON" }, { postalCode: "B3V 1M1", cityName: "West Pennant, NS" }, { postalCode: "B3E 1K4", cityName: "West Porters Lake, NS" }, { postalCode: "B0W 3S0", cityName: "West Pubnico, NS" }, { postalCode: "E5R 1H8", cityName: "West Quaco, NB" }, { postalCode: "E4H 2L1", cityName: "West River, NB" }, { postalCode: "B0K 1Z0", cityName: "West River Station, NS" }, { postalCode: "A0K 5S0", cityName: "West St Modeste, NL" }, { postalCode: "R2P 0G5", cityName: "West St Paul, MB" }, { postalCode: "R2V 4E8", cityName: "West St Paul, MB" }, { postalCode: "R4A 1A1", cityName: "West St. Paul, MB" }, { postalCode: "M6S 5B7", cityName: "West Toronto (Bloor West Village / Swansea), ON" }, { postalCode: "M6K 3S1", cityName: "West Toronto (Brockton / Parkdale Village / Exhibition Place), ON" }, { postalCode: "M6H 4J2", cityName: "West Toronto (Dufferin / Dovercourt Village), ON" }, { postalCode: "M6P 4J6", cityName: "West Toronto (High Park / The Junction South), ON" }, { postalCode: "M6R 3C2", cityName: "West Toronto (Parkdale / Roncesvalles Village), ON" }, { postalCode: "M6J 3X9", cityName: "West Toronto (Rua A&ccedil;ores / Trinity), ON" }, { postalCode: "V7P 0A7", cityName: "West Vancouver, BC" }, { postalCode: "V7S 0A4", cityName: "West Vancouver North, BC" }, { postalCode: "V7V 1A1", cityName: "West Vancouver South, BC" }, { postalCode: "V7T 0A1", cityName: "West Vancouver Southeast, BC" }, { postalCode: "V7W 1A1", cityName: "West Vancouver West, BC" }, { postalCode: "V4T 1A1", cityName: "Westbank, BC" }, { postalCode: "R0H 1P0", cityName: "Westbourne, MB" }, { postalCode: "V0H 2B0", cityName: "Westbridge, BC" }, { postalCode: "K7P 2Y7", cityName: "Westbrook, ON" }, { postalCode: "J0B 1R0", cityName: "Westbury, QC" }, { postalCode: "B0M 2A0", cityName: "Westchester Station, NS" }, { postalCode: "E4L 2E7", cityName: "Westcock, NB" }, { postalCode: "T0E 0J0", cityName: "Western Alberta (Jasper), AB" }, { postalCode: "A0B 1A0", cityName: "Western Avalon Peninsula (Argentia), NL" }, { postalCode: "A0A 4J0", cityName: "Western Bay, NL" }, { postalCode: "R0L 0K0", cityName: "Western Manitoba (Swan River), MB" }, { postalCode: "A0L 1J0", cityName: "Western Newfoundland (Lark Harbour), NL" }, { postalCode: "S0L 0A0", cityName: "Western Saskatchewan (Kindersley), SK" }, { postalCode: "B0J 3M0", cityName: "Western Shore, NS" }, { postalCode: "T0C 2V0", cityName: "Westerose, AB" }, { postalCode: "V0R 3C0", cityName: "Westholme, BC" }, { postalCode: "T7P 1A1", cityName: "Westlock, AB" }, { postalCode: "K0J 2L0", cityName: "Westmeath, ON" }, { postalCode: "B1P 5Z8", cityName: "Westmount, NS" }, { postalCode: "B1R 1H1", cityName: "Westmount, NS" }, { postalCode: "H3Z 0A1", cityName: "Westmount, QC" }, { postalCode: "H3Z 3K9", cityName: "Westmount East, QC" }, { postalCode: "H3Y 3K7", cityName: "Westmount West, QC" }, { postalCode: "M9N 4A2", cityName: "Weston, ON" }, { postalCode: "E7K 1A1", cityName: "Weston, NB" }, { postalCode: "B2W 6J6", cityName: "Westphal, NS" }, { postalCode: "B2Z 1B4", cityName: "Westphal, NS" }, { postalCode: "A0K 5R0", cityName: "Westport, NL" }, { postalCode: "B0V 1H0", cityName: "Westport, NS" }, { postalCode: "K0G 1X0", cityName: "Westport, ON" }, { postalCode: "B0K 2A0", cityName: "Westville, NS" }, { postalCode: "V0E 3B0", cityName: "Westwold, BC" }, { postalCode: "K0L 3B0", cityName: "Westwood, ON" }, { postalCode: "T9A 0M8", cityName: "Wetaskiwin, AB" }, { postalCode: "S0J 1W0", cityName: "Weyakwin, SK" }, { postalCode: "S4H 3N4", cityName: "Weyburn, SK" }, { postalCode: "B0W 3T0", cityName: "Weymouth, NS" }, { postalCode: "X0C 0J0", cityName: "Whale Cove, NU" }, { postalCode: "V0P 1Z0", cityName: "Whaletown, BC" }, { postalCode: "X0E 1P0", cityName: "Whati, NT" }, { postalCode: "N0P 2P0", cityName: "Wheatley, ON" }, { postalCode: "E4Z 0A4", cityName: "Wheaton Settlement, NB" }, { postalCode: "S0M 3C0", cityName: "Whelan, SK" }, { postalCode: "T9S 1S3", cityName: "Whispering Hills, AB" }, { postalCode: "V0N 1B0", cityName: "Whistler, BC" }, { postalCode: "A0B 3K0", cityName: "Whitbourne, NL" }, { postalCode: "L1R 3R1", cityName: "Whitby Central, ON" }, { postalCode: "L1M 1A1", cityName: "Whitby North, ON" }, { postalCode: "L0H 1A0", cityName: "Whitby Region (Gormley), ON" }, { postalCode: "L1N 1A1", cityName: "Whitby Southeast, ON" }, { postalCode: "L1P 1A1", cityName: "Whitby Southwest, ON" }, { postalCode: "S0L 3L0", cityName: "White Bear, SK" }, { postalCode: "S0J 3B0", cityName: "White Fox, SK" }, { postalCode: "T9S 1R9", cityName: "White Gull, AB" }, { postalCode: "E5G 4M3", cityName: "White Head, NB" }, { postalCode: "E5G 0A4", cityName: "White Head Island, NB" }, { postalCode: "K0A 3L0", cityName: "White Lake, ON" }, { postalCode: "E9B 0A4", cityName: "White Rapids, NB" }, { postalCode: "P0M 3G0", cityName: "White River, ON" }, { postalCode: "V4B 0A1", cityName: "White Rock, BC" }, { postalCode: "S7K 2L2", cityName: "Whitecap, SK" }, { postalCode: "T7S 0A3", cityName: "Whitecourt, AB" }, { postalCode: "P0X 1P0", cityName: "Whitedog, ON" }, { postalCode: "P0M 3E0", cityName: "Whitefish, ON" }, { postalCode: "P0P 2H0", cityName: "Whitefish Falls, ON" }, { postalCode: "Y1A 7A4", cityName: "Whitehorse, YT" }, { postalCode: "T0H 3T0", cityName: "Whitelaw, AB" }, { postalCode: "R0E 2G0", cityName: "Whitemouth, MB" }, { postalCode: "E8B 1Z5", cityName: "Whites Brook, NB" }, { postalCode: "E4C 0A4", cityName: "Whites Cove, NB" }, { postalCode: "B3T 1V3", cityName: "Whites Lake, NS" }, { postalCode: "E4G 2L6", cityName: "Whites Mountain, NB" }, { postalCode: "R0E 2H0", cityName: "Whiteshell, MB" }, { postalCode: "L0H 1M0", cityName: "Whitevale, ON" }, { postalCode: "A0B 3L0", cityName: "Whiteway, NL" }, { postalCode: "S0G 5C0", cityName: "Whitewood, SK" }, { postalCode: "E1V 4J5", cityName: "Whitney, NB" }, { postalCode: "B0E 3M0", cityName: "Whycocomagh, NS" }, { postalCode: "B4V 5T6", cityName: "Whynotts Settlement, NS" }, { postalCode: "N0H 2T0", cityName: "Wiarton, ON" }, { postalCode: "E4C 2E6", cityName: "Wickham, NB" }, { postalCode: "E5T 0A4", cityName: "Wickham, NB" }, { postalCode: "J0C 1S0", cityName: "Wickham, QC" }, { postalCode: "E7L 0A2", cityName: "Wicklow, NB" }, { postalCode: "T0G 2M0", cityName: "Widewater, AB" }, { postalCode: "E6E 1A1", cityName: "Wiggins Mill, NB" }, { postalCode: "P0P 2J0", cityName: "Wikwemikong, ON" }, { postalCode: "K0L 3C0", cityName: "Wilberforce, ON" }, { postalCode: "S0G 5E0", cityName: "Wilcox, SK" }, { postalCode: "A0K 5T0", cityName: "Wild Cove Wb, NL" }, { postalCode: "T0E 2M0", cityName: "Wildwood, AB" }, { postalCode: "B4V 5G2", cityName: "Wileville, NS" }, { postalCode: "N0P 2R0", cityName: "Wilkesport, ON" }, { postalCode: "S0K 4W0", cityName: "Wilkie, SK" }, { postalCode: "A0K 5V0", cityName: "Williams Harbour, NL" }, { postalCode: "V2G 0A1", cityName: "Williams Lake, BC" }, { postalCode: "E6B 1V9", cityName: "Williamsburg, NB" }, { postalCode: "K0C 2H0", cityName: "Williamsburg, ON" }, { postalCode: "N0H 2V0", cityName: "Williamsford, ON" }, { postalCode: "E1V 5E9", cityName: "Williamstown, NB" }, { postalCode: "K0C 2J0", cityName: "Williamstown, ON" }, { postalCode: "E7K 1H1", cityName: "Williamstown Carleton Co, NB" }, { postalCode: "T0B 4R0", cityName: "Willingdon, AB" }, { postalCode: "L0E 1S0", cityName: "Willow Beach, ON" }, { postalCode: "S0H 4K0", cityName: "Willow Bunch, SK" }, { postalCode: "E2S 0A3", cityName: "Willow Grove, NB" }, { postalCode: "V0J 3C0", cityName: "Willow River, BC" }, { postalCode: "S0A 4P0", cityName: "Willowbrook, SK" }, { postalCode: "M2M 4M6", cityName: "Willowdale East (Newtonbrook), ON" }, { postalCode: "M2N 7L7", cityName: "Willowdale South, ON" }, { postalCode: "M2R 3Y9", cityName: "Willowdale West, ON" }, { postalCode: "E7P 0A6", cityName: "Wilmot, NB" }, { postalCode: "B0P 1W0", cityName: "Wilmot Station, NS" }, { postalCode: "K0J 2N0", cityName: "Wilno, ON" }, { postalCode: "N0E 1Z0", cityName: "Wilsonville, ON" }, { postalCode: "A8A 3L1", cityName: "Wiltondale, NL" }, { postalCode: "T0M 2G0", cityName: "Wimborne, AB" }, { postalCode: "K0C 2K0", cityName: "Winchester, ON" }, { postalCode: "K0C 2L0", cityName: "Winchester Springs, ON" }, { postalCode: "P0B 1M0", cityName: "Windermere, ON" }, { postalCode: "V0B 2L0", cityName: "Windermere, BC" }, { postalCode: "N0E 2A0", cityName: "Windham Centre, ON" }, { postalCode: "A2B 0A1", cityName: "Windsor, NL" }, { postalCode: "J1S 3C2", cityName: "Windsor, QC" }, { postalCode: "B0N 2T0", cityName: "Windsor, NS" }, { postalCode: "E7L 3M1", cityName: "Windsor, NB" }, { postalCode: "N9A 7K6", cityName: "Windsor (City Centre / NW Walkerville), ON" }, { postalCode: "N8R 2K6", cityName: "Windsor (East Forest Glade), ON" }, { postalCode: "N8P 1W4", cityName: "Windsor (East Riverside), ON" }, { postalCode: "N8S 4T8", cityName: "Windsor (Riverside), ON" }, { postalCode: "N9G 2Z9", cityName: "Windsor (Roseland), ON" }, { postalCode: "N9C 4G9", cityName: "Windsor (Sandwich / Ojibway / West Malden), ON" }, { postalCode: "N8W 5M1", cityName: "Windsor (South Walkerville / West Fontainbleu / Walker Farm / Devonshire), ON" }, { postalCode: "N9B 3V1", cityName: "Windsor (University / South Cameron), ON" }, { postalCode: "N8T 3R3", cityName: "Windsor (West Forest Glade / East Fontainbleu), ON" }, { postalCode: "N8Y 5B9", cityName: "Windsor East (East Walkerville), ON" }, { postalCode: "B2T 0C4", cityName: "Windsor Junction, NS" }, { postalCode: "N9E 4Z4", cityName: "Windsor South (East Malden), ON" }, { postalCode: "N8X 5E5", cityName: "Windsor South Central (West Walkerville / Remington Park), ON" }, { postalCode: "S0G 5G0", cityName: "Windthorst, SK" }, { postalCode: "V4V 1A1", cityName: "Winfield, BC" }, { postalCode: "T0C 2X0", cityName: "Winfield, AB" }, { postalCode: "N0G 2W0", cityName: "Wingham, ON" }, { postalCode: "A0G 4T0", cityName: "Wings Point, NL" }, { postalCode: "R6W 0A3", cityName: "Winkler, MB" }, { postalCode: "V0G 2J0", cityName: "Winlaw, BC" }, { postalCode: "R4A 6A2", cityName: "Winnipeg, MB" }, { postalCode: "R3R 0G4", cityName: "Winnipeg (Assiniboine South / Betsworth), MB" }, { postalCode: "R3C 0Z7", cityName: "Winnipeg (Broadway / The Forks / Portage and Main) Manitoba Provincial Government, MB" }, { postalCode: "R3A 0A4", cityName: "Winnipeg (Centennial), MB" }, { postalCode: "R3B 0C2", cityName: "Winnipeg (Chinatown / Civic Centre / Exchange District), MB" }, { postalCode: "R3T 0A2", cityName: "Winnipeg (Fort Garry NE / University of Manitoba), MB" }, { postalCode: "R3P 0X6", cityName: "Winnipeg (Fort Garry NW / Tuxedo), MB" }, { postalCode: "R3V 1A2", cityName: "Winnipeg (Fort Garry South), MB" }, { postalCode: "R3Y 0A1", cityName: "Winnipeg (Fort Garry West), MB" }, { postalCode: "R3W 1S8", cityName: "Winnipeg (Grassie / Pequis), MB" }, { postalCode: "R2R 0N6", cityName: "Winnipeg (Inkster West), MB" }, { postalCode: "R3G 0G6", cityName: "Winnipeg (Minto / St. Mathews / Wolseley), MB" }, { postalCode: "R2W 0A7", cityName: "Winnipeg (Point Douglas East), MB" }, { postalCode: "R2X 0B9", cityName: "Winnipeg (Point Douglas West / Inkster East), MB" }, { postalCode: "R2K 0L8", cityName: "Winnipeg (River East Central), MB" }, { postalCode: "R2G 1A2", cityName: "Winnipeg (River East North), MB" }, { postalCode: "R2L 0G8", cityName: "Winnipeg (River East South), MB" }, { postalCode: "R3M 0B1", cityName: "Winnipeg (River Heights Central), MB" }, { postalCode: "R3L 0V9", cityName: "Winnipeg (River Heights East), MB" }, { postalCode: "R3N 0A1", cityName: "Winnipeg (River Heights West), MB" }, { postalCode: "R3E 0P6", cityName: "Winnipeg (Sargent Park / Daniel McIntyre / Inkster SE), MB" }, { postalCode: "R2V 0E8", cityName: "Winnipeg (Seven Oaks East), MB" }, { postalCode: "R2P 0K3", cityName: "Winnipeg (Seven Oaks West), MB" }, { postalCode: "R2J 0T9", cityName: "Winnipeg (St. Boniface NE), MB" }, { postalCode: "R2H 0Y8", cityName: "Winnipeg (St. Boniface NW), MB" }, { postalCode: "R3X 1E5", cityName: "Winnipeg (St. Boniface South / St. Vital SE), MB" }, { postalCode: "R3H 0A6", cityName: "Winnipeg (St. James-Assiniboia NE / YWG), MB" }, { postalCode: "R2Y 0H3", cityName: "Winnipeg (St. James-Assiniboia NW), MB" }, { postalCode: "R3J 0V9", cityName: "Winnipeg (St. James-Assiniboia SE), MB" }, { postalCode: "R3K 0X4", cityName: "Winnipeg (St. James-Assiniboia SW), MB" }, { postalCode: "R2M 0Y6", cityName: "Winnipeg (St. Vital North), MB" }, { postalCode: "R2N 0A4", cityName: "Winnipeg (St. Vital SW), MB" }, { postalCode: "R2C 0M5", cityName: "Winnipeg (Transcona), MB" }, { postalCode: "R3S 1B9", cityName: "Winnipeg (Wilkes South), MB" }, { postalCode: "R0C 3G0", cityName: "Winnipeg Beach, MB" }, { postalCode: "R0L 2G0", cityName: "Winnipegosis, MB" }, { postalCode: "C1E 1Z2", cityName: "Winsloe, PEI" }, { postalCode: "V0N 3L0", cityName: "Winter Harbour, BC" }, { postalCode: "A0E 2Y0", cityName: "Winterland, NL" }, { postalCode: "A0B 3M0", cityName: "Winterton, NL" }, { postalCode: "E5L 0A4", cityName: "Wirral, NB" }, { postalCode: "S0L 3M0", cityName: "Wiseton, SK" }, { postalCode: "S0A 4R0", cityName: "Wishart, SK" }, { postalCode: "A0A 4K0", cityName: "Witless Bay, NL" }, { postalCode: "G0Y 1R0", cityName: "Woburn, QC" }, { postalCode: "T0H 3V0", cityName: "Woking, AB" }, { postalCode: "K0H 2Y0", cityName: "Wolfe Island, ON" }, { postalCode: "B4P 0A1", cityName: "Wolfville, NS" }, { postalCode: "G0X 1B0", cityName: "Wolinak, QC" }, { postalCode: "S0J 3C0", cityName: "Wollaston Lake, SK" }, { postalCode: "S0G 5H0", cityName: "Wolseley, SK" }, { postalCode: "V0C 2N0", cityName: "Wonowon, BC" }, { postalCode: "S0H 4L0", cityName: "Wood Mountain, SK" }, { postalCode: "E4L 2J8", cityName: "Wood Point, NB" }, { postalCode: "L4H 2Y5", cityName: "Woodbridge North, ON" }, { postalCode: "L4L 9T8", cityName: "Woodbridge South, ON" }, { postalCode: "A0A 4L0", cityName: "Woodfords, NL" }, { postalCode: "N0K 2A0", cityName: "Woodham, ON" }, { postalCode: "E6B 1C4", cityName: "Woodlands, NB" }, { postalCode: "R0C 3H0", cityName: "Woodlands, MB" }, { postalCode: "K0A 3M0", cityName: "Woodlawn, ON" }, { postalCode: "E5K 3A1", cityName: "Woodmans Point, NB" }, { postalCode: "R0A 2M0", cityName: "Woodmore, MB" }, { postalCode: "R0A 2N0", cityName: "Woodridge, MB" }, { postalCode: "S0H 4M0", cityName: "Woodrow, SK" }, { postalCode: "E4M 3X1", cityName: "Woodside, NB" }, { postalCode: "R0H 1R0", cityName: "Woodside, MB" }, { postalCode: "E7M 1A1", cityName: "Woodstock, NB" }, { postalCode: "A0K 5X0", cityName: "Woodstock, NL" }, { postalCode: "N4S 9A3", cityName: "Woodstock Central, ON" }, { postalCode: "E7M 0B1", cityName: "Woodstock First Nation, NB" }, { postalCode: "N4T 1W6", cityName: "Woodstock North, ON" }, { postalCode: "N4V 8S3", cityName: "Woodstock South, ON" }, { postalCode: "K0L 3E0", cityName: "Woodview, ON" }, { postalCode: "K0M 2T0", cityName: "Woodville, ON" }, { postalCode: "K0K 3M0", cityName: "Wooler, ON" }, { postalCode: "T0H 3W0", cityName: "Worsley, AB" }, { postalCode: "P0M 3H0", cityName: "Worthington, ON" }, { postalCode: "V0N 3P0", cityName: "Woss, BC" }, { postalCode: "T0B 4S0", cityName: "Wostok, AB" }, { postalCode: "J0A 1N0", cityName: "Wotton, QC" }, { postalCode: "T0K 2P0", cityName: "Wrentham, AB" }, { postalCode: "X0E 1E0", cityName: "Wrigley, NT" }, { postalCode: "N0G 2X0", cityName: "Wroxeter, ON" }, { postalCode: "S0A 4S0", cityName: "Wroxton, SK" }, { postalCode: "P0V 2Z0", cityName: "Wunnumin Lake, ON" }, { postalCode: "L0K 2E0", cityName: "Wyebridge, ON" }, { postalCode: "E3N 6K4", cityName: "Wyers Brook, NB" }, { postalCode: "L0L 2T0", cityName: "Wyevale, ON" }, { postalCode: "S0N 2Y0", cityName: "Wymark, SK" }, { postalCode: "V0B 2N0", cityName: "Wynndel, BC" }, { postalCode: "S0A 4T0", cityName: "Wynyard, SK" }, { postalCode: "N0N 1T0", cityName: "Wyoming, ON" }, { postalCode: "V0B 2P0", cityName: "Yahk, BC" }, { postalCode: "V0K 2S0", cityName: "Yale, BC" }, { postalCode: "G0X 3L0", cityName: "Yamachiche, QC" }, { postalCode: "J0G 1W0", cityName: "Yamaska, QC" }, { postalCode: "J0G 1X0", cityName: "Yamaska-Est, QC" }, { postalCode: "S0A 4V0", cityName: "Yarbo, SK" }, { postalCode: "K0K 3N0", cityName: "Yarker, ON" }, { postalCode: "B5A 1A3", cityName: "Yarmouth, NS" }, { postalCode: "S0K 4X0", cityName: "Yellow Creek, SK" }, { postalCode: "S0G 5J0", cityName: "Yellow Grass, SK" }, { postalCode: "S0A 3A0", cityName: "Yellow Quill, SK" }, { postalCode: "X1A 1Z1", cityName: "Yellowknife, NT" }, { postalCode: "V0G 2K0", cityName: "Ymir, BC" }, { postalCode: "E6K 2K4", cityName: "Yoho, NB" }, { postalCode: "C0A 1P0", cityName: "York, PEI" }, { postalCode: "C0A 1P0", cityName: "York, PEI" }, { postalCode: "M5P 1N4", cityName: "York, ON" }, { postalCode: "M6E 1E4", cityName: "York, ON" }, { postalCode: "M6N 1L3", cityName: "York, ON" }, { postalCode: "M6S 1R2", cityName: "York, ON" }, { postalCode: "N0A 1R0", cityName: "York, ON" }, { postalCode: "M6C 4A9", cityName: "York (Cedarvale), ON" }, { postalCode: "M6M 5L9", cityName: "York (Del Ray / Keelsdale / Mount Dennis / Silverthorne), ON" }, { postalCode: "M6E 5B1", cityName: "York (Fairbank / Oakwood), ON" }, { postalCode: "M6N 5J3", cityName: "York (Runnymede / The Junction North), ON" }, { postalCode: "A0L 1L0", cityName: "York Harbour, NL" }, { postalCode: "R0B 2B0", cityName: "York Landing, MB" }, { postalCode: "S3N 4E5", cityName: "Yorkton, SK" }, { postalCode: "S0A 0B0", cityName: "Yorkton Region (Melville), SK" }, { postalCode: "V0R 3E1", cityName: "Youbou, BC" }, { postalCode: "S0K 4Y0", cityName: "Young, SK" }, { postalCode: "E4C 6B8", cityName: "Youngs Cove, NB" }, { postalCode: "E4C 0A9", cityName: "Youngs Cove, NB" }, { postalCode: "K0L 3G0", cityName: "Youngs Point, ON" }, { postalCode: "T0J 3P0", cityName: "Youngstown, AB" }, { postalCode: "T0H 4E0", cityName: "Zama City, AB" }, { postalCode: "E6L 1E9", cityName: "Zealand, NB" }, { postalCode: "S0L 3N0", cityName: "Zealandia, SK" }, { postalCode: "V0P 2A0", cityName: "Zeballos, BC" }, { postalCode: "S0G 5K0", cityName: "Zehner, SK" }, { postalCode: "S0E 1W0", cityName: "Zenon Park, SK" }, { postalCode: "L0E 1T0", cityName: "Zephyr, ON" }, { postalCode: "R0A 2P0", cityName: "Zhoda, MB" }, { postalCode: "E6C 1Y6", cityName: "Zionville, NB" }, { postalCode: "N0M 2T0", cityName: "Zurich, ON" }];

var fufcategories = [{ id: "82", category: "24 hour fitness" }, { id: "38", category: "Accountants" }, { id: "38", category: "Accounting" }, { id: "76", category: "Active Release Technique (ART)" }, { id: "215", category: "Acupuncture" }, { id: "289", category: "Aerobic classes" }, { id: "289", category: "Aerobics" }, { id: "266", category: "Air Travel and Sightseeing" }, { id: "100", category: "Airlines" }, { id: "118", category: "Alarm systems" }, { id: "332", category: "Allstate" }, { id: "245", category: "Annuals" }, { id: "119", category: "Appliance repair" }, { id: "116", category: "Appliances" }, { id: "35", category: "Aquarium services" }, { id: "76", category: "Aquatherapy" }, { id: "4", category: "Arcades and game rooms" }, { id: "275", category: "Architects" }, { id: "203", category: "Art Dealers and Galleries" }, { id: "104", category: "Attractions" }, { id: "255", category: "ATV Dealers" }, { id: "276", category: "Auto wrecking and recycling" }, { id: "101", category: "Automobile rental" }, { id: "fast15", category: "Automotive" }, { id: "202", category: "Automotive Parts and Service" }, { id: "55", category: "Automotive technicians" }, { id: "363", category: "Avis car and truck rental" }, { id: "277", category: "Baby furniture and products" }, { id: "120", category: "Bakery" }, { id: "251", category: "Ballroom dance lessons" }, { id: "121", category: "Bankruptcy and Trusts" }, { id: "267", category: "Banks" }, { id: "229", category: "Banquet and Reception Halls" }, { id: "24", category: "Bar and Grill" }, { id: "68", category: "Barber Shops" }, { id: "226", category: "Baseball Clubs" }, { id: "172", category: "Basement and Foundations" }, { id: "219", category: "Bathroom Renovation" }, { id: "64", category: "Beauty salons" }, { id: "106", category: "Bed and Breakfast" }, { id: "122", category: "Beer and Wine Making" }, { id: "311", category: "Best Buy" }, { id: "93", category: "Bicycle equipment" }, { id: "270", category: "Billiard equipment and supplies" }, { id: "3", category: "Billiards" }, { id: "238", category: "Bingo Halls" }, { id: "123", category: "Blinds and Shutters" }, { id: "76", category: "Blocked Milk Ducts" }, { id: "194", category: "Body and Collisions" }, { id: "38", category: "Book keeping services" }, { id: "291", category: "Book stores" }, { id: "292", category: "Book stores for college and univeristy" }, { id: "38", category: "Bookkeeper" }, { id: "38", category: "Bookkeeping" }, { id: "2", category: "Bowling" }, { id: "90", category: "Boxing" }, { id: "249", category: "Breakfast and Lunch" }, { id: "34", category: "Breeders" }, { id: "173", category: "Bricklaying and Masonry" }, { id: "124", category: "Bridal shops" }, { id: "25", category: "Buffet" }, { id: "14", category: "Burgers" }, { id: "105", category: "Bus lines" }, { id: "217", category: "Business card printing" }, { id: "259", category: "Business Consulting" }, { id: "fast24", category: "Business Services" }, { id: "125", category: "Butchers" }, { id: "248", category: "Cafes and coffee shops" }, { id: "231", category: "Cakes" }, { id: "158", category: "Cameras" }, { id: "94", category: "Camping equipment" }, { id: "272", category: "Canada Post Offices" }, { id: "312", category: "Canadian Tire" }, { id: "301", category: "Candies" }, { id: "361", category: "Car decals" }, { id: "202", category: "Car parts new" }, { id: "101", category: "Car Rentals" }, { id: "195", category: "Car sales new" }, { id: "196", category: "Car sales used" }, { id: "198", category: "Car wash" }, { id: "336", category: "Car wash coin" }, { id: "337", category: "Car wash touchless" }, { id: "71", category: "Care products" }, { id: "174", category: "Carpentry and Cabinets" }, { id: "46", category: "Carpet cleaning" }, { id: "46", category: "Carpet stain removal" }, { id: "364", category: "Carpets and rugs" }, { id: "195", category: "Cars new" }, { id: "196", category: "Cars used" }, { id: "126", category: "Catering" }, { id: "127", category: "Cell phone" }, { id: "127", category: "Cellular Sales and Service" }, { id: "365", category: "Ceramic tiles" }, { id: "251", category: "Cha Cha lessons" }, { id: "321", category: "Chapters" }, { id: "210", category: "Cheese, Wine and Gourmet" }, { id: "269", category: "Cheque Cashing and Cash Advances" }, { id: "13", category: "Chicken" }, { id: "128", category: "Child care services" }, { id: "113", category: "Children\'s boutique" }, { id: "175", category: "Chimney cleaning" }, { id: "11", category: "Chinese food" }, { id: "75", category: "Chiropractors" }, { id: "300", category: "Chocolates" }, { id: "253", category: "Christmas Trees" }, { id: "76", category: "Chronic Pain" }, { id: "282", category: "Churches" }, { id: "1", category: "Cinemas" }, { id: "307", category: "Cineplex Odeon Canada" }, { id: "299", category: "Cleaning equipment training " }, { id: "298", category: "Cleaning products" }, { id: "52", category: "Click flooring" }, { id: "82", category: "Coed fitness clubs" }, { id: "286", category: "College savings plan" }, { id: "8", category: "Comedy Clubs" }, { id: "299", category: "Commercial cleaning equipment" }, { id: "298", category: "Commercial cleaning supplies" }, { id: "129", category: "Computer Sales and Service" }, { id: "316", category: "Concierge services" }, { id: "130", category: "Consignment shops" }, { id: "181", category: "Construction" }, { id: "fast13", category: "Consumer Services" }, { id: "260", category: "Contact Lenses" }, { id: "220", category: "Convenience Stores" }, { id: "52", category: "Cork flooring" }, { id: "220", category: "Corner stores" }, { id: "72", category: "Cosmetics and Perfumes" }, { id: "339", category: "Cottages, chalets, and lodge rentals" }, { id: "131", category: "Courier and Delivery Services" }, { id: "76", category: "Craniosacral Therapy" }, { id: "fast2", category: "Currency conversion" }, { id: "268", category: "Currency exchange" }, { id: "347", category: "Custom braces" }, { id: "347", category: "Custom bracing" }, { id: "290", category: "Custom labels" }, { id: "290", category: "Custom stickers and decals" }, { id: "197", category: "Customization and Accessories" }, { id: "353", category: "Customs brokerage" }, { id: "353", category: "Customs consulting" }, { id: "93", category: "Cycling equipment" }, { id: "251", category: "Dance Classes for Adults" }, { id: "89", category: "Dance lessons" }, { id: "89", category: "Dance schools" }, { id: "57", category: "Dealerships" }, { id: "fast10", category: "Delivery and Takeout" }, { id: "74", category: "Dentists" }, { id: "198", category: "Detailing and Washing" }, { id: "235", category: "Diamond Rings" }, { id: "84", category: "Diet centres" }, { id: "234", category: "Disc Jockeys" }, { id: "362", category: "Discount Car and Truck Rentals" }, { id: "234", category: "DJs" }, { id: "73", category: "Doctors" }, { id: "fast7", category: "Domain name registration" }, { id: "62", category: "Driving instruction" }, { id: "92", category: "Driving ranges" }, { id: "157", category: "drug stores" }, { id: "132", category: "Dry cleaners" }, { id: "133", category: "Duct cleaning" }, { id: "216", category: "Ear and Body Piercing" }, { id: "176", category: "Eavestroughing" }, { id: "286", category: "Education savings plan" }, { id: "50", category: "Electrical" }, { id: "50", category: "Electricians" }, { id: "117", category: "Electronics" }, { id: "350", category: "Embroidery" }, { id: "308", category: "Empire Theatres" }, { id: "213", category: "Employment Agencies" }, { id: "302", category: "Employment consellors" }, { id: "302", category: "Employment consultants" }, { id: "fast9", category: "Entertainment" }, { id: "190", category: "Equipment and Tool Rentals" }, { id: "76", category: "Ergonomic Assessments" }, { id: "70", category: "Esthetician" }, { id: "355", category: "Event logistics trade shows" }, { id: "177", category: "Excavation" }, { id: "82", category: "Exercise clubs" }, { id: "85", category: "Exercise Equipment" }, { id: "82", category: "Exercise fitness training" }, { id: "80", category: "Eye care" }, { id: "19", category: "Family Diners" }, { id: "131", category: "FedEx" }, { id: "178", category: "Fencing and Decking" }, { id: "39", category: "Financial Services" }, { id: "305", category: "Fireplace sales and service" }, { id: "96", category: "Fishing equipment" }, { id: "fast26", category: "Fitness & Exercise" }, { id: "fast18", category: "Fitness & Recreation" }, { id: "82", category: "Fitness Clubs" }, { id: "52", category: "Floor restoration and sealing" }, { id: "52", category: "Flooring" }, { id: "109", category: "Florists" }, { id: "109", category: "Flowers" }, { id: "100", category: "Fly Porter Airlines" }, { id: "217", category: "Flyer printing" }, { id: "225", category: "Football Clubs" }, { id: "fast1", category: "Franchise opportunities" }, { id: "354", category: "Freight consulting" }, { id: "352", category: "Freight forwarding" }, { id: "214", category: "Funeral Services" }, { id: "76", category: "Funtional Capacity Evalutions" }, { id: "115", category: "Furniture" }, { id: "310", category: "Future Shop" }, { id: "76", category: "Gait Analysis/Training" }, { id: "fast25", category: "Game zone on FindusFast.com" }, { id: "4", category: "Gaming" }, { id: "179", category: "Garage Door Repair and Sales" }, { id: "245", category: "Garden Centres and Nurseries" }, { id: "340", category: "Gas stations" }, { id: "181", category: "General contractors" }, { id: "76", category: "Geriatrics" }, { id: "135", category: "Gift baskets" }, { id: "243", category: "Gift Shops" }, { id: "54", category: "Glass service" }, { id: "199", category: "Glass Servicing and Tinting" }, { id: "91", category: "Golf courses" }, { id: "342", category: "Golf Town" }, { id: "304", category: "Goodlife Fitness" }, { id: "180", category: "Granite countertops" }, { id: "360", category: "Graphic design services" }, { id: "145", category: "Grass Cutting and Maintenance" }, { id: "fast4", category: "Great gift ideas" }, { id: "12", category: "Greek Food" }, { id: "245", category: "Greenhouses" }, { id: "221", category: "Grocery Stores" }, { id: "29", category: "Grooming" }, { id: "82", category: "Group excercise" }, { id: "82", category: "Gyms and workout facilities" }, { id: "295", category: "H & R Block" }, { id: "64", category: "Hair stylist" }, { id: "265", category: "Handyman" }, { id: "294", category: "Hardware stores" }, { id: "52", category: "Hardwood flooring" }, { id: "302", category: "Headhunters" }, { id: "fast16", category: "Health & Beauty" }, { id: "fast17", category: "Health Care" }, { id: "367", category: "Health supplements" }, { id: "359", category: "Hearing aids" }, { id: "182", category: "Heating and Air Conditioning" }, { id: "222", category: "Hockey" }, { id: "98", category: "Hockey equipment" }, { id: "99", category: "Hockey schools" }, { id: "78", category: "Holistic health" }, { id: "317", category: "Home heaters" }, { id: "218", category: "Home Inspection" }, { id: "fast14", category: "Home Services" }, { id: "343", category: "Home staging" }, { id: "79", category: "Hospitals" }, { id: "314", category: "Hot tub service and repair" }, { id: "102", category: "Hotels and Motels" }, { id: "282", category: "House of prayer" }, { id: "97", category: "Hunting equipment" }, { id: "322", category: "IKEA" }, { id: "327", category: "Independent Grocer" }, { id: "16", category: "Indian Food" }, { id: "242", category: "Insurance Commercial" }, { id: "42", category: "Insurance Home and Auto" }, { id: "138", category: "Insurance Life and Disability" }, { id: "354", category: "Integrated logistics freight" }, { id: "139", category: "Interior decorator and design" }, { id: "183", category: "Interlocking driveway" }, { id: "212", category: "Internet Service Providers" }, { id: "76", category: "Intramuscular Stimulation (IMS)" }, { id: "78", category: "Ionic foot detoxification" }, { id: "20", category: "Italian Food" }, { id: "114", category: "Jewellers" }, { id: "114", category: "Jewellery" }, { id: "144", category: "Junk Removal and Waste Management" }, { id: "32", category: "Kennels" }, { id: "184", category: "Kitchen Renovation" }, { id: "290", category: "Labels" }, { id: "52", category: "Laminate" }, { id: "49", category: "Landscaping" }, { id: "261", category: "Laser Eye Surgery" }, { id: "67", category: "Laser Hair Removal" }, { id: "251", category: "Latin dance lessons" }, { id: "258", category: "Lawyers Commercial" }, { id: "205", category: "Lawyers Criminal" }, { id: "206", category: "Lawyers Family" }, { id: "37", category: "Lawyers General" }, { id: "207", category: "Lawyers Immigration" }, { id: "208", category: "Lawyers Real Estate" }, { id: "338", category: "LCBO" }, { id: "15", category: "Lebanese Food" }, { id: "82", category: "Les Mills classes" }, { id: "293", category: "Libraries" }, { id: "44", category: "Limousines" }, { id: "353", category: "Livingston International" }, { id: "326", category: "Loblaws" }, { id: "283", category: "Local schools" }, { id: "146", category: "Locksmith" }, { id: "fast5", category: "Lottery results 649 Lotto Max" }, { id: "108", category: "Luggage" }, { id: "76", category: "Lymphatic Drainage" }, { id: "237", category: "Magicians" }, { id: "278", category: "Magnet signs" }, { id: "147", category: "Maid services" }, { id: "271", category: "Mail, fax, email marketing lists" }, { id: "281", category: "Mailing machines" }, { id: "272", category: "Mailing solutions" }, { id: "65", category: "Manicure" }, { id: "365", category: "Marble tiles" }, { id: "148", category: "Marketing and Promotion" }, { id: "88", category: "Martial arts" }, { id: "77", category: "Massage therapy" }, { id: "149", category: "Mattresses" }, { id: "357", category: "McDonald's Restaurant" }, { id: "239", category: "Meat Shops" }, { id: "55", category: "Mechanics general repair" }, { id: "284", category: "Mechanics import repair" }, { id: "241", category: "Meeting Facilities" }, { id: "112", category: "Men\'s clothing" }, { id: "330", category: "Metro grocery store" }, { id: "26", category: "Mexican" }, { id: "163", category: "Mini storage" }, { id: "fast22", category: "Miscellaneous" }, { id: "198", category: "Mobile car wash and detailing" }, { id: "127", category: "Mobile phones" }, { id: "278", category: "Mobile signs" }, { id: "274", category: "Modeling and talent agencies" }, { id: "41", category: "Mortgage broker" }, { id: "254", category: "Motorcycle Dealers" }, { id: "150", category: "Movers" }, { id: "1", category: "Movies" }, { id: "150", category: "Moving" }, { id: "61", category: "Muffler" }, { id: "107", category: "Museums" }, { id: "151", category: "Music stores" }, { id: "76", category: "Myofascial Release" }, { id: "65", category: "Nail salon" }, { id: "297", category: "Naturopathy" }, { id: "348", category: "Neuro rehab" }, { id: "348", category: "Neuroligical conditions" }, { id: "195", category: "New car sales" }, { id: "329", category: "No Frills Grocers" }, { id: "152", category: "Nursing and Home Care" }, { id: "86", category: "Nutrition retail" }, { id: "288", category: "Nutritionists" }, { id: "280", category: "Office equipment" }, { id: "217", category: "Offset printing" }, { id: "58", category: "Oil and lube" }, { id: "fast3", category: "Online text translation" }, { id: "153", category: "Opticians" }, { id: "153", category: "Optometrist" }, { id: "154", category: "Orthodontist" }, { id: "155", category: "Orthopedist and Orthotics" }, { id: "fast6", category: "Ottawa bus times" }, { id: "6", category: "Paintball" }, { id: "186", category: "Painting" }, { id: "228", category: "Parking Garages" }, { id: "156", category: "Party supplies" }, { id: "187", category: "Paving and Driveway Sealing" }, { id: "65", category: "Pedicure" }, { id: "303", category: "Pedorthist" }, { id: "76", category: "Peripheral Joint and Spinal" }, { id: "245", category: "Perrenials" }, { id: "87", category: "Personal Trainers" }, { id: "36", category: "Pest control" }, { id: "fast12", category: "Pet Care" }, { id: "28", category: "Pet food" }, { id: "33", category: "Pet sitting" }, { id: "28", category: "Pet stores" }, { id: "31", category: "Pet training" }, { id: "325", category: "Petsmart" }, { id: "157", category: "Pharmacies" }, { id: "335", category: "Phone systems" }, { id: "280", category: "Photocopiers" }, { id: "43", category: "Photographer" }, { id: "158", category: "Photography equipment" }, { id: "73", category: "Physicians" }, { id: "76", category: "Physio Conditioning Exercises" }, { id: "76", category: "Physiotherapy" }, { id: "159", category: "Picture framing" }, { id: "272", category: "Pitney Bowes" }, { id: "10", category: "Pizza" }, { id: "344", category: "Pizza Pizza" }, { id: "282", category: "Places of worship" }, { id: "245", category: "Plants nurseries" }, { id: "48", category: "Plumbers" }, { id: "81", category: "Podiatrist" }, { id: "3", category: "Pool" }, { id: "160", category: "Pool and Hot Tub Sales and Service" }, { id: "3", category: "Pool hall" }, { id: "272", category: "Post offices" }, { id: "286", category: "Post Secondary Education Plan" }, { id: "157", category: "prescriptions" }, { id: "227", category: "Printer ink, toner and cartridges" }, { id: "217", category: "Printing and copy shops" }, { id: "124", category: "Prom dresses" }, { id: "349", category: "Promotional products" }, { id: "5", category: "Pubs and Clubs" }, { id: "263", category: "Real Estate Apartment Condos" }, { id: "40", category: "Real Estate Brokers and Agents" }, { id: "264", category: "Real Estate Distinctive Luxury" }, { id: "78", category: "Reflexology" }, { id: "286", category: "Registered education savings plan" }, { id: "78", category: "Reiki" }, { id: "53", category: "Renovations" }, { id: "236", category: "Reptile Zoos" }, { id: "286", category: "RESPs" }, { id: "fast11", category: "Restaurants" }, { id: "fast21", category: "Retail Shopping" }, { id: "250", category: "Retirement Residence" }, { id: "47", category: "Roofing" }, { id: "109", category: "Roses" }, { id: "200", category: "Rust proofing" }, { id: "262", category: "RVs" }, { id: "251", category: "Salsa lessons" }, { id: "298", category: "Sanitation products" }, { id: "341", category: "SAQ" }, { id: "21", category: "Seafood" }, { id: "118", category: "Security systems" }, { id: "163", category: "Self storage" }, { id: "131", category: "Shipping services" }, { id: "76", category: "Shockwave Therapy" }, { id: "162", category: "Shoe repair" }, { id: "110", category: "Shoes" }, { id: "296", category: "Shoppers Drug Mart" }, { id: "287", category: "Shopping Malls" }, { id: "188", category: "Siding and Insulation" }, { id: "334", category: "Sign shops" }, { id: "217", category: "Silkscreening" }, { id: "345", category: "Single - social dining club" }, { id: "345", category: "Singles dining social clubs" }, { id: "95", category: "Skateboarding equipment" }, { id: "7", category: "Skiing" }, { id: "335", category: "Small Business Phone Systems" }, { id: "244", category: "Small Engines" }, { id: "189", category: "Snow removal" }, { id: "257", category: "Snowblowers" }, { id: "223", category: "Soccer Clubs" }, { id: "315", category: "Solar panels and solar energy" }, { id: "69", category: "Spas" }, { id: "247", category: "Sporting Goods" }, { id: "fast19", category: "Sports & Recreation" }, { id: "346", category: "Sports doctors" }, { id: "76", category: "Sports physiotherapists" }, { id: "76", category: "Sports therapy" }, { id: "256", category: "Stairs and Railings" }, { id: "272", category: "Stamps" }, { id: "309", category: "Staples Business Depot" }, { id: "331", category: "Starbucks" }, { id: "23", category: "Steak house" }, { id: "60", category: "Stereos and Alarms" }, { id: "163", category: "Storage" }, { id: "18", category: "Subs" }, { id: "22", category: "Sushi" }, { id: "160", category: "Swimming Pool Sales and Service" }, { id: "251", category: "Swing lessons" }, { id: "282", category: "Synagogues" }, { id: "217", category: "T-Shirt printing" }, { id: "164", category: "Tailors and Seamstress" }, { id: "251", category: "Tango lessons" }, { id: "66", category: "Tanning salon" }, { id: "211", category: "Tattoo Shop" }, { id: "165", category: "Tax services" }, { id: "204", category: "Taxis" }, { id: "45", category: "Tech support" }, { id: "282", category: "Temples" }, { id: "224", category: "Tennis Clubs" }, { id: "17", category: "Thai Food" }, { id: "319", category: "The Bay" }, { id: "356", category: "The Beer Store" }, { id: "323", category: "The Brick" }, { id: "324", category: "The Home Depot" }, { id: "320", category: "The Source" }, { id: "52", category: "The Stainmaster Flooring Centre" }, { id: "358", category: "The UPS Store" }, { id: "9", category: "Theatre and Plays" }, { id: "366", category: "Tile grout cleaning" }, { id: "273", category: "Tim Hortons" }, { id: "59", category: "Tires and Rims" }, { id: "56", category: "Towing" }, { id: "201", category: "Trailer Sales and Rental" }, { id: "306", category: "Train and railroad transportation" }, { id: "252", category: "Translation Services" }, { id: "63", category: "Transmission" }, { id: "fast20", category: "Travel & Tourism" }, { id: "103", category: "Travel agency" }, { id: "191", category: "Tree Pruning and Removal" }, { id: "351", category: "Trophies" }, { id: "232", category: "Tuxedo Rentals" }, { id: "317", category: "UFO Heaters" }, { id: "317", category: "UFO Infrared Heaters" }, { id: "279", category: "Uniforms" }, { id: "286", category: "University savings plan" }, { id: "166", category: "Upholsters" }, { id: "286", category: "USC - RESPs" }, { id: "202", category: "Used auto parts" }, { id: "196", category: "Used cars" }, { id: "167", category: "Vacuum cleaner sales and service" }, { id: "109", category: "Valentines flowers" }, { id: "101", category: "Vehicle rental" }, { id: "361", category: "Vehicle wraps and car advertising" }, { id: "30", category: "Veterinarians" }, { id: "168", category: "Video rentals" }, { id: "27", category: "Vietnamese" }, { id: "52", category: "Vinyl flooring" }, { id: "169", category: "Walkin clinics" }, { id: "313", category: "Walmart" }, { id: "192", category: "Water heater sales and service" }, { id: "51", category: "Water treatment" }, { id: "170", category: "Website design" 