PHP 8.2.31
Preview: osclassified.sql Size: 3.89 MB
/var/softaculous/osclassified/osclassified.sql

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `osclassified831`
--

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_admin`
--

CREATE TABLE `[[dbprefix]]t_admin` (
  `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `s_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `s_username` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  `s_password` char(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `s_email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_secret` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `b_moderator` tinyint(1) NOT NULL DEFAULT '0',
  `s_moderator_access` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `i_login_fails` int(3) DEFAULT '0',
  `dt_login_fail_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pk_i_id`),
  UNIQUE KEY `s_username` (`s_username`),
  UNIQUE KEY `s_email` (`s_email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=2 ;

--
-- Dumping data for table `[[dbprefix]]t_admin`
--

INSERT INTO `[[dbprefix]]t_admin` VALUES
(1, 'Administrator', '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', NULL, 0, NULL, 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_alerts`
--

CREATE TABLE `[[dbprefix]]t_alerts` (
  `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `s_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `fk_i_user_id` int(10) unsigned DEFAULT NULL,
  `s_search` text COLLATE utf8mb4_unicode_ci,
  `s_param` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_sql` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_secret` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `b_active` tinyint(1) NOT NULL DEFAULT '0',
  `e_type` enum('INSTANT','HOURLY','DAILY','WEEKLY','CUSTOM') COLLATE utf8mb4_unicode_ci NOT NULL,
  `i_num_trigger` int(10) DEFAULT '0',
  `dt_date` datetime DEFAULT NULL,
  `dt_unsub_date` datetime DEFAULT NULL,
  PRIMARY KEY (`pk_i_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_alerts_sent`
--

CREATE TABLE `[[dbprefix]]t_alerts_sent` (
  `d_date` date NOT NULL,
  `i_num_alerts_sent` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`d_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_ban_rule`
--

CREATE TABLE `[[dbprefix]]t_ban_rule` (
  `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `s_name` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `s_ip` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `s_email` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `i_hit` int(10) DEFAULT '1',
  `dt_date` datetime DEFAULT CURRENT_TIMESTAMP,
  `dt_expire_date` date DEFAULT NULL,
  PRIMARY KEY (`pk_i_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_category`
--

CREATE TABLE `[[dbprefix]]t_category` (
  `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `fk_i_parent_id` int(10) unsigned DEFAULT NULL,
  `i_expiration_days` int(3) unsigned NOT NULL DEFAULT '0',
  `i_position` int(2) unsigned NOT NULL DEFAULT '0',
  `b_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `b_price_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `s_icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_color` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`pk_i_id`),
  KEY `fk_i_parent_id` (`fk_i_parent_id`),
  KEY `i_position` (`i_position`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=96 ;

--
-- Dumping data for table `[[dbprefix]]t_category`
--

INSERT INTO `[[dbprefix]]t_category` VALUES
(1, NULL, 0, 1, 1, 1, NULL, NULL),
(2, NULL, 0, 2, 1, 1, NULL, NULL),
(3, NULL, 0, 3, 1, 1, NULL, NULL),
(4, NULL, 0, 4, 1, 1, NULL, NULL),
(5, NULL, 0, 5, 1, 1, NULL, NULL),
(6, NULL, 0, 6, 1, 1, NULL, NULL),
(7, NULL, 0, 7, 1, 1, NULL, NULL),
(8, NULL, 0, 8, 1, 1, NULL, NULL),
(9, 1, 0, 1, 1, 1, NULL, NULL),
(10, 1, 0, 2, 1, 1, NULL, NULL),
(11, 1, 0, 3, 1, 1, NULL, NULL),
(12, 1, 0, 4, 1, 1, NULL, NULL),
(13, 1, 0, 5, 1, 1, NULL, NULL),
(14, 1, 0, 6, 1, 1, NULL, NULL),
(15, 1, 0, 7, 1, 1, NULL, NULL),
(16, 1, 0, 8, 1, 1, NULL, NULL),
(17, 1, 0, 9, 1, 1, NULL, NULL),
(18, 1, 0, 10, 1, 1, NULL, NULL),
(19, 1, 0, 11, 1, 1, NULL, NULL),
(20, 1, 0, 12, 1, 1, NULL, NULL),
(21, 1, 0, 13, 1, 1, NULL, NULL),
(22, 1, 0, 14, 1, 1, NULL, NULL),
(23, 1, 0, 15, 1, 1, NULL, NULL),
(24, 1, 0, 16, 1, 1, NULL, NULL),
(25, 1, 0, 17, 1, 1, NULL, NULL),
(26, 1, 0, 18, 1, 1, NULL, NULL),
(27, 1, 0, 19, 1, 1, NULL, NULL),
(28, 1, 0, 20, 1, 1, NULL, NULL),
(29, 1, 0, 21, 1, 1, NULL, NULL),
(30, 1, 0, 22, 1, 1, NULL, NULL),
(31, 2, 0, 1, 1, 1, NULL, NULL),
(32, 2, 0, 2, 1, 1, NULL, NULL),
(33, 2, 0, 3, 1, 1, NULL, NULL),
(34, 2, 0, 4, 1, 1, NULL, NULL),
(35, 2, 0, 5, 1, 1, NULL, NULL),
(36, 2, 0, 6, 1, 1, NULL, NULL),
(37, 2, 0, 7, 1, 1, NULL, NULL),
(38, 3, 0, 1, 1, 1, NULL, NULL),
(39, 3, 0, 2, 1, 1, NULL, NULL),
(40, 3, 0, 3, 1, 1, NULL, NULL),
(41, 3, 0, 4, 1, 1, NULL, NULL),
(42, 3, 0, 5, 1, 1, NULL, NULL),
(43, 4, 0, 1, 1, 1, NULL, NULL),
(44, 4, 0, 2, 1, 1, NULL, NULL),
(45, 4, 0, 3, 1, 1, NULL, NULL),
(46, 4, 0, 4, 1, 1, NULL, NULL),
(47, 4, 0, 5, 1, 1, NULL, NULL),
(48, 4, 0, 6, 1, 1, NULL, NULL),
(49, 4, 0, 7, 1, 1, NULL, NULL),
(50, 4, 0, 8, 1, 1, NULL, NULL),
(51, 4, 0, 9, 1, 1, NULL, NULL),
(52, 5, 0, 1, 1, 1, NULL, NULL),
(53, 5, 0, 2, 1, 1, NULL, NULL),
(54, 5, 0, 3, 1, 1, NULL, NULL),
(55, 5, 0, 4, 1, 1, NULL, NULL),
(56, 5, 0, 5, 1, 1, NULL, NULL),
(57, 5, 0, 6, 1, 1, NULL, NULL),
(58, 5, 0, 7, 1, 1, NULL, NULL),
(59, 5, 0, 8, 1, 1, NULL, NULL),
(60, 5, 0, 9, 1, 1, NULL, NULL),
(61, 5, 0, 10, 1, 1, NULL, NULL),
(62, 5, 0, 11, 1, 1, NULL, NULL),
(63, 6, 0, 1, 1, 1, NULL, NULL),
(64, 6, 0, 2, 1, 1, NULL, NULL),
(65, 6, 0, 3, 1, 1, NULL, NULL),
(66, 6, 0, 4, 1, 1, NULL, NULL),
(67, 6, 0, 5, 1, 1, NULL, NULL),
(68, 6, 0, 6, 1, 1, NULL, NULL),
(69, 7, 0, 1, 1, 1, NULL, NULL),
(70, 7, 0, 2, 1, 1, NULL, NULL),
(71, 7, 0, 3, 1, 1, NULL, NULL),
(72, 7, 0, 4, 1, 1, NULL, NULL),
(73, 7, 0, 5, 1, 1, NULL, NULL),
(74, 7, 0, 6, 1, 1, NULL, NULL),
(75, 8, 0, 1, 1, 1, NULL, NULL),
(76, 8, 0, 2, 1, 1, NULL, NULL),
(77, 8, 0, 3, 1, 1, NULL, NULL),
(78, 8, 0, 4, 1, 1, NULL, NULL),
(79, 8, 0, 5, 1, 1, NULL, NULL),
(80, 8, 0, 6, 1, 1, NULL, NULL),
(81, 8, 0, 7, 1, 1, NULL, NULL),
(82, 8, 0, 8, 1, 1, NULL, NULL),
(83, 8, 0, 9, 1, 1, NULL, NULL),
(84, 8, 0, 10, 1, 1, NULL, NULL),
(85, 8, 0, 11, 1, 1, NULL, NULL),
(86, 8, 0, 12, 1, 1, NULL, NULL),
(87, 8, 0, 13, 1, 1, NULL, NULL),
(88, 8, 0, 14, 1, 1, NULL, NULL),
(89, 8, 0, 15, 1, 1, NULL, NULL),
(90, 8, 0, 16, 1, 1, NULL, NULL),
(91, 8, 0, 17, 1, 1, NULL, NULL),
(92, 8, 0, 18, 1, 1, NULL, NULL),
(93, 8, 0, 19, 1, 1, NULL, NULL),
(94, 8, 0, 20, 1, 1, NULL, NULL),
(95, 8, 0, 21, 1, 1, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_category_description`
--

CREATE TABLE `[[dbprefix]]t_category_description` (
  `fk_i_category_id` int(10) unsigned NOT NULL,
  `fk_c_locale_code` char(5) COLLATE utf8mb4_unicode_ci NOT NULL,
  `s_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_description` text COLLATE utf8mb4_unicode_ci,
  `s_slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`fk_i_category_id`,`fk_c_locale_code`),
  KEY `idx_s_slug` (`s_slug`),
  KEY `fk_c_locale_code` (`fk_c_locale_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `[[dbprefix]]t_category_description`
--

INSERT INTO `[[dbprefix]]t_category_description` VALUES
(1, 'en_US', 'For sale', NULL, 'for-sale'),
(2, 'en_US', 'Vehicles', NULL, 'vehicles'),
(3, 'en_US', 'Classes', NULL, 'classes'),
(4, 'en_US', 'Real estate', NULL, 'real-estate'),
(5, 'en_US', 'Services', NULL, 'services'),
(6, 'en_US', 'Community', NULL, 'community'),
(7, 'en_US', 'Personals', NULL, 'personals'),
(8, 'en_US', 'Jobs', NULL, 'jobs'),
(9, 'en_US', 'Animals', NULL, 'animals'),
(10, 'en_US', 'Art - Collectibles', NULL, 'art-collectibles'),
(11, 'en_US', 'Barter', NULL, 'barter'),
(12, 'en_US', 'Books - Magazines', NULL, 'books-magazines'),
(13, 'en_US', 'Cameras - Camera Accessories', NULL, 'cameras-camera-accessories'),
(14, 'en_US', 'CDs - Records', NULL, 'cds-records'),
(15, 'en_US', 'Cell Phones - Accessories', NULL, 'cell-phones-accessories'),
(16, 'en_US', 'Clothing', NULL, 'clothing'),
(17, 'en_US', 'Computers - Hardware', NULL, 'computers-hardware'),
(18, 'en_US', 'DVD', NULL, 'dvd'),
(19, 'en_US', 'Electronics', NULL, 'electronics'),
(20, 'en_US', 'For Babies - Infants', NULL, 'for-babies-infants'),
(21, 'en_US', 'Garage Sale', NULL, 'garage-sale'),
(22, 'en_US', 'Health - Beauty', NULL, 'health-beauty'),
(23, 'en_US', 'Home - Furniture - Garden Supplies', NULL, 'home-furniture-garden-supplies'),
(24, 'en_US', 'Jewelry - Watches', NULL, 'jewelry-watches'),
(25, 'en_US', 'Musical Instruments', NULL, 'musical-instruments'),
(26, 'en_US', 'Sporting Goods - Bicycles', NULL, 'sporting-goods-bicycles'),
(27, 'en_US', 'Tickets', NULL, 'tickets'),
(28, 'en_US', 'Toys - Games - Hobbies', NULL, 'toys-games-hobbies'),
(29, 'en_US', 'Video Games - Consoles', NULL, 'video-games-consoles'),
(30, 'en_US', 'Everything Else', NULL, 'everything-else'),
(31, 'en_US', 'Cars', NULL, 'cars'),
(32, 'en_US', 'Car Parts', NULL, 'car-parts'),
(33, 'en_US', 'Motorcycles', NULL, 'motorcycles'),
(34, 'en_US', 'Boats - Ships', NULL, 'boats-ships'),
(35, 'en_US', 'RVs - Campers - Caravans', NULL, 'rvs-campers-caravans'),
(36, 'en_US', 'Trucks - Commercial Vehicles', NULL, 'trucks-commercial-vehicles'),
(37, 'en_US', 'Other Vehicles', NULL, 'other-vehicles'),
(38, 'en_US', 'Computer - Multimedia Classes', NULL, 'computer-multimedia-classes'),
(39, 'en_US', 'Language Classes', NULL, 'language-classes'),
(40, 'en_US', 'Music - Theatre - Dance Classes', NULL, 'music-theatre-dance-classes'),
(41, 'en_US', 'Tutoring - Private Lessons', NULL, 'tutoring-private-lessons'),
(42, 'en_US', 'Other Classes', NULL, 'other-classes'),
(43, 'en_US', 'Houses - Apartments for Sale', NULL, 'houses-apartments-for-sale'),
(44, 'en_US', 'Houses - Apartments for Rent', NULL, 'houses-apartments-for-rent'),
(45, 'en_US', 'Rooms for Rent - Shared', NULL, 'rooms-for-rent-shared'),
(46, 'en_US', 'Housing Swap', NULL, 'housing-swap'),
(47, 'en_US', 'Vacation Rentals', NULL, 'vacation-rentals'),
(48, 'en_US', 'Parking Spots', NULL, 'parking-spots'),
(49, 'en_US', 'Land', NULL, 'land'),
(50, 'en_US', 'Office - Commercial Space', NULL, 'office-commercial-space'),
(51, 'en_US', 'Shops for Rent - Sale', NULL, 'shops-for-rent-sale'),
(52, 'en_US', 'Babysitter - Nanny', NULL, 'babysitter-nanny'),
(53, 'en_US', 'Casting - Auditions', NULL, 'casting-auditions'),
(54, 'en_US', 'Computer', NULL, 'computer'),
(55, 'en_US', 'Event Services', NULL, 'event-services'),
(56, 'en_US', 'Health - Beauty - Fitness', NULL, 'health-beauty-fitness'),
(57, 'en_US', 'Horoscopes - Tarot', NULL, 'horoscopes-tarot'),
(58, 'en_US', 'Household - Domestic Help', NULL, 'household-domestic-help'),
(59, 'en_US', 'Moving - Storage', NULL, 'moving-storage'),
(60, 'en_US', 'Repair', NULL, 'repair'),
(61, 'en_US', 'Writing - Editing - Translating', NULL, 'writing-editing-translating'),
(62, 'en_US', 'Other Services', NULL, 'other-services'),
(63, 'en_US', 'Carpool', NULL, 'carpool'),
(64, 'en_US', 'Community Activities', NULL, 'community-activities'),
(65, 'en_US', 'Events', NULL, 'events'),
(66, 'en_US', 'Musicians - Artists - Bands', NULL, 'musicians-artists-bands'),
(67, 'en_US', 'Volunteers', NULL, 'volunteers'),
(68, 'en_US', 'Lost And Found', NULL, 'lost-and-found'),
(69, 'en_US', 'Women looking for Men', NULL, 'women-looking-for-men'),
(70, 'en_US', 'Men looking for Women', NULL, 'men-looking-for-women'),
(71, 'en_US', 'Men looking for Men', NULL, 'men-looking-for-men'),
(72, 'en_US', 'Women looking for Women', NULL, 'women-looking-for-women'),
(73, 'en_US', 'Friendship - Activity Partners', NULL, 'friendship-activity-partners'),
(74, 'en_US', 'Missed Connections', NULL, 'missed-connections'),
(75, 'en_US', 'Accounting - Finance', NULL, 'accounting-finance'),
(76, 'en_US', 'Advertising - Public Relations', NULL, 'advertising-public-relations'),
(77, 'en_US', 'Arts - Entertainment - Publishing', NULL, 'arts-entertainment-publishing'),
(78, 'en_US', 'Clerical - Administrative', NULL, 'clerical-administrative'),
(79, 'en_US', 'Customer Service', NULL, 'customer-service'),
(80, 'en_US', 'Education - Training', NULL, 'education-training'),
(81, 'en_US', 'Engineering - Architecture', NULL, 'engineering-architecture'),
(82, 'en_US', 'Healthcare', NULL, 'healthcare'),
(83, 'en_US', 'Human Resource', NULL, 'human-resource'),
(84, 'en_US', 'Internet', NULL, 'internet'),
(85, 'en_US', 'Legal', NULL, 'legal'),
(86, 'en_US', 'Manual Labor', NULL, 'manual-labor'),
(87, 'en_US', 'Manufacturing - Operations', NULL, 'manufacturing-operations'),
(88, 'en_US', 'Marketing', NULL, 'marketing'),
(89, 'en_US', 'Non-profit - Volunteer', NULL, 'non-profit-volunteer'),
(90, 'en_US', 'Real Estate', NULL, 'real-estate'),
(91, 'en_US', 'Restaurant - Food Service', NULL, 'restaurant-food-service'),
(92, 'en_US', 'Retail', NULL, 'retail'),
(93, 'en_US', 'Sales', NULL, 'sales'),
(94, 'en_US', 'Technology', NULL, 'technology'),
(95, 'en_US', 'Other Jobs', NULL, 'other-jobs');

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_category_stats`
--

CREATE TABLE `[[dbprefix]]t_category_stats` (
  `fk_i_category_id` int(10) unsigned NOT NULL,
  `i_num_items` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`fk_i_category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `[[dbprefix]]t_category_stats`
--

INSERT INTO `[[dbprefix]]t_category_stats` VALUES
(1, 1),
(9, 1);

-- --------------------------------------------------------

--
-- Table structure for table `[[dbprefix]]t_city`
--

CREATE TABLE `[[dbprefix]]t_city` (
  `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `fk_i_region_id` int(10) unsigned NOT NULL,
  `fk_c_country_code` char(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `s_name_native` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `s_slug` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `b_active` tinyint(1) NOT NULL DEFAULT '1',
  `d_coord_lat` decimal(20,10) DEFAULT NULL,
  `d_coord_long` decimal(20,10) DEFAULT NULL,
  PRIMARY KEY (`pk_i_id`),
  KEY `fk_i_region_id` (`fk_i_region_id`),
  KEY `fk_c_country_code` (`fk_c_country_code`),
  KEY `idx_s_name` (`s_name`),
  KEY `idx_s_name_native` (`s_name_native`),
  KEY `idx_s_slug` (`s_slug`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=15212747 ;

--
-- Dumping data for table `[[dbprefix]]t_city`
--

INSERT INTO `[[dbprefix]]t_city` VALUES
(7046255, 7829764, 'US', 'Bay Minette', NULL, 'bay-minette', 1, '30.8829600000', '-87.7730500000'),
(7046274, 7736286, 'US', 'Edna', NULL, 'edna', 1, '28.9785900000', '-96.6460900000'),
(7046319, 7829764, 'US', 'Bayou La Batre', NULL, 'bayou-la-batre', 1, '30.4035200000', '-88.2485200000'),
(7046332, 7736286, 'US', 'Henderson', NULL, 'henderson', 1, '32.1532200000', '-94.7993800000'),
(7046430, 7736286, 'US', 'Natalia', NULL, 'natalia', 1, '29.1896800000', '-98.8625300000'),
(7046434, 7736286, 'US', 'New Falcon', NULL, 'new-falcon', 1, '26.6386600000', '-99.0955900000'),
(7046474, 7736286, 'US', 'Rankin', NULL, 'rankin', 1, '32.2057000000', '-96.7066600000'),
(7046499, 7829764, 'US', 'Bear Creek', NULL, 'bear-creek', 1, '34.2748200000', '-87.7005800000'),
(7046538, 7736286, 'US', 'South Toledo Bend', NULL, 'south-toledo-bend', 1, '31.1532400000', '-93.6046200000'),
(7046667, 7829764, 'US', 'Beatrice', NULL, 'beatrice', 1, '31.7334900000', '-87.2047100000'),
(7046704, 9254928, 'US', 'Fort Hunt', NULL, 'fort-hunt', 1, '38.7328900000', '-77.0580300000'),
(7046734, 9254928, 'US', 'Hallwood', NULL, 'hallwood', 1, '37.8776300000', '-75.5890900000'),
(7046820, 9254928, 'US', 'Nelsonia', NULL, 'nelsonia', 1, '37.8198500000', '-75.5871500000'),
(7046890, 9254928, 'US', 'Sperryville', NULL, 'sperryville', 1, '38.6570700000', '-78.2261100000'),
(7046907, 7829764, 'US', 'Beaverton', NULL, 'beaverton', 1, '33.9312200000', '-88.0203100000'),
(7046946, 9254928, 'US', 'Yorktown', NULL, 'yorktown', 1, '37.2387600000', '-76.5096700000'),
(7047028, 7826850, 'US', 'Hambleton', NULL, 'hambleton', 1, '39.0820500000', '-79.6453400000'),
(7047094, 7826850, 'US', 'New Richmond', NULL, 'new-richmond', 1, '37.5701100000', '-81.4887200000'),
(7047198, 7829764, 'US', 'Brighton', NULL, 'brighton', 1, '33.4342800000', '-86.9472100000'),
(7047199, 7829764, 'US', 'Belgreen', NULL, 'belgreen', 1, '34.4748200000', '-87.8664200000'),
(7047204, 7829764, 'US', 'Akron', NULL, 'akron', 1, '32.8765200000', '-87.7425100000'),
(7047225, 7829764, 'US', 'Belk', NULL, 'belk', 1, '33.6476100000', '-87.9314100000'),
(7047321, 7829764, 'US', 'Bellamy', NULL, 'bellamy', 1, '32.4490300000', '-88.1336300000'),
(7047357, 7829764, 'US', 'Bellefontaine', NULL, 'bellefontaine', 1, '30.4935300000', '-88.1036100000'),
(7047424, 7099753, 'US', 'East Camden', NULL, 'east-camden', 1, '33.6078900000', '-92.7401600000'),
(7047464, 7829764, 'US', 'Colony', NULL, 'colony', 1, '33.9456600000', '-86.9016700000'),
(7047474, 7829764, 'US', 'Wilton', NULL, 'wilton', 1, '33.0787300000', '-86.8816600000'),
(7047540, 7099753, 'US', 'Cove', NULL, 'cove', 1, '34.4351100000', '-94.4113300000'),
(7047572, 7099753, 'US', 'Guy', NULL, 'guy', 1, '35.3253600000', '-92.3343200000'),
(7047658, 7099753, 'US', 'Pollard', NULL, 'pollard', 1, '36.4308900000', '-90.2684300000'),
(7047692, 7099753, 'US', 'Thornton', NULL, 'thornton', 1, '33.7790000000', '-92.4918200000'),
(7047719, 7829764, 'US', 'Benton', NULL, 'benton', 1, '32.3068100000', '-86.8177600000'),
(7047734, 7142224, 'US', 'Ocean View', NULL, 'ocean-view', 1, '38.5451100000', '-75.0890700000'),
(7047827, 7829764, 'US', 'Berry', NULL, 'berry', 1, '33.6598300000', '-87.6000100000'),
(7047852, 7155751, 'US', 'Matlacha', NULL, 'matlacha', 1, '26.6298000000', '-82.0709200000'),
(7047906, 7155751, 'US', 'Trinity', NULL, 'trinity', 1, '28.1808500000', '-82.6817700000'),
(7047914, 7155751, 'US', 'Villas', NULL, 'villas', 1, '26.5503500000', '-81.8687000000'),
(7048023, 7829764, 'US', 'Bessemer', NULL, 'bessemer', 1, '33.4017800000', '-86.9544400000'),
(7048084, 7197000, 'US', 'Lenox', NULL, 'lenox', 1, '31.2715800000', '-83.4648800000'),
(7048094, 7197000, 'US', 'Patterson', NULL, 'patterson', 1, '31.3874400000', '-82.1401200000'),
(7048270, 7896861, 'US', 'LaPlace', NULL, 'laplace', 1, '39.8000400000', '-88.7175700000'),
(7048332, 7921868, 'US', 'Aurora', NULL, 'aurora', 1, '39.0570000000', '-84.9013400000'),
(7048388, 7921868, 'US', 'New Pekin', NULL, 'new-pekin', 1, '38.5050600000', '-86.0169200000'),
(7048408, 7921868, 'US', 'Troy', NULL, 'troy', 1, '37.9953300000', '-86.7977700000'),
(7048446, 9254925, 'US', 'Fairview', NULL, 'fairview', 1, '36.8433800000', '-87.3038900000'),
(7048466, 7273857, 'US', 'Severance', NULL, 'severance', 1, '39.7672200000', '-95.2499800000'),
(7048468, 7273857, 'US', 'Prairie View', NULL, 'prairie-view', 1, '39.8325100000', '-99.5726100000'),
(7048488, 7273857, 'US', 'Stockton', NULL, 'stockton', 1, '39.4380700000', '-99.2651000000'),
(7048512, 9254925, 'US', 'Chaplin', NULL, 'chaplin', 1, '37.8978400000', '-85.2213400000'),
(7048514, 9254925, 'US', 'Broeck Pointe', NULL, 'broeck-pointe', 1, '38.2956300000', '-85.5860700000'),
(7048662, 9254925, 'US', 'Paducah', NULL, 'paducah', 1, '37.0833900000', '-88.6000500000'),
(7048794, 7331987, 'US', 'Dixie Inn', NULL, 'dixie-inn', 1, '32.5951500000', '-93.3385000000'),
(7048850, 7331987, 'US', 'Monticello', NULL, 'monticello', 1, '32.5965300000', '-91.3940000000'),
(7048888, 7331987, 'US', 'Red Chute', NULL, 'red-chute', 1, '32.5559800000', '-93.6132300000'),
(7048920, 7331987, 'US', 'Sun', NULL, 'sun', 1, '30.6490800000', '-89.8925700000'),
(7049008, 7361885, 'US', 'Ernstville', NULL, 'ernstville', 1, '39.6328700000', '-78.0266700000'),
(7049018, 7361885, 'US', 'Fairview', NULL, 'fairview', 1, '39.7123200000', '-77.8430500000'),
(7049032, 7361885, 'US', 'Jessup', NULL, 'jessup', 1, '39.1492700000', '-76.7752500000'),
(7049046, 7361885, 'US', 'McCoole', NULL, 'mccoole', 1, '39.4464800000', '-78.9722500000'),
(7049120, 7398678, 'US', 'Amoret', NULL, 'amoret', 1, '38.2553000000', '-94.5877300000'),
(7049182, 7398678, 'US', 'Cowgill', NULL, 'cowgill', 1, '39.5591800000', '-93.9268800000'),
(7049194, 7398678, 'US', 'Gordonville', NULL, 'gordonville', 1, '37.3111600000', '-89.6792600000'),
(7049312, 7398678, 'US', 'Prathersville', NULL, 'prathersville', 1, '39.0181000000', '-92.3218500000'),
(7049714, 7482348, 'US', 'Faith', NULL, 'faith', 1, '35.5870800000', '-80.4628400000'),
(7049843, 7829764, 'US', 'Billingsley', NULL, 'billingsley', 1, '32.6595700000', '-86.7177600000'),
(7049858, 7482348, 'US', 'Polkville', NULL, 'polkville', 1, '35.4176300000', '-81.6428700000'),
(7049908, 7482348, 'US', 'Vass', NULL, 'vass', 1, '35.2562700000', '-79.2822500000'),
(7049950, 7482348, 'US', 'Waves', NULL, 'waves', 1, '35.5668500000', '-75.4684900000'),
(7049979, 7829764, 'US', 'Birmingham', NULL, 'birmingham', 1, '33.5206600000', '-86.8024900000'),
(7050006, 8165418, 'US', 'Delhi Hills', NULL, 'delhi-hills', 1, '39.0928400000', '-84.6127200000'),
(7050068, 8165418, 'US', 'Racine', NULL, 'racine', 1, '38.9711900000', '-81.9143000000'),
(7050081, 7829764, 'US', 'Black', NULL, 'black', 1, '31.0093500000', '-85.7443800000'),
(7050118, 8165418, 'US', 'Turpin Hills', NULL, 'turpin-hills', 1, '39.1100600000', '-84.3799400000'),
(7050166, 7544379, 'US', 'Dale', NULL, 'dale', 1, '35.3900700000', '-97.0450300000'),
(7050172, 7544379, 'US', 'Christie', NULL, 'christie', 1, '35.9581400000', '-94.6902300000'),
(7050178, 7544379, 'US', 'Cole', NULL, 'cole', 1, '35.1022900000', '-97.5728100000'),
(7050296, 7544379, 'US', 'Watts', NULL, 'watts', 1, '36.1092500000', '-94.5702200000'),
(7050356, 7597040, 'US', 'Lugoff', NULL, 'lugoff', 1, '34.2273700000', '-80.6892500000'),
(7050655, 7829764, 'US', 'Blountsville', NULL, 'blountsville', 1, '34.0814900000', '-86.5911000000'),
(7050834, 7662168, 'US', 'Slayden', NULL, 'slayden', 1, '36.2947800000', '-87.4702900000'),
(7050845, 7829764, 'US', 'Blue Mountain', NULL, 'blue-mountain', 1, '33.6845500000', '-85.8427400000'),
(7050879, 7829764, 'US', 'Blue Ridge', NULL, 'blue-ridge', 1, '32.4926400000', '-86.1905200000'),
(7050880, 7736286, 'US', 'Buda', NULL, 'buda', 1, '30.0852100000', '-97.8402800000'),
(7050916, 7736286, 'US', 'Beasley', NULL, 'beasley', 1, '29.4974600000', '-95.9180100000'),
(7050960, 7829764, 'US', 'Blue Springs', NULL, 'blue-springs', 1, '31.6637800000', '-85.5066100000'),
(7051059, 7829764, 'US', 'Boaz', NULL, 'boaz', 1, '34.2006500000', '-86.1663700000'),
(7051184, 7829764, 'US', 'Boligee', NULL, 'boligee', 1, '32.7559700000', '-88.0289100000'),
(7051214, 7829764, 'US', 'Bon Air', NULL, 'bon-air', 1, '33.2637200000', '-86.3355300000'),
(7051458, 7829764, 'US', 'Boykin', NULL, 'boykin', 1, '32.0779200000', '-87.2813800000'),
(7051560, 7829764, 'US', 'Branchville', NULL, 'branchville', 1, '33.7000000000', '-86.4000000000'),
(7051581, 7829764, 'US', 'Brantley', NULL, 'brantley', 1, '31.5823800000', '-86.2571800000'),
(7051597, 7829764, 'US', 'Brantleyville', NULL, 'brantleyville', 1, '33.2159500000', '-86.8749900000'),
(7051669, 7829764, 'US', 'Brent', NULL, 'brent', 1, '32.9373500000', '-87.1647200000'),
(7051714, 7829764, 'US', 'Brewton', NULL, 'brewton', 1, '31.1051800000', '-87.0721900000'),
(7051774, 7829764, 'US', 'Bridgeport', NULL, 'bridgeport', 1, '34.9475800000', '-85.7144200000'),
(7051827, 7829764, 'US', 'Brilliant', NULL, 'brilliant', 1, '34.0253800000', '-87.7583600000'),
(7051894, 7829764, 'US', 'Brook Highland', NULL, 'brook-highland', 1, '33.4356600000', '-86.6738800000'),
(7051955, 7829764, 'US', 'Brookside', NULL, 'brookside', 1, '33.6378800000', '-86.9166600000'),
(7051971, 7829764, 'US', 'Brookwood', NULL, 'brookwood', 1, '33.2556700000', '-87.3208300000'),
(7051994, 7829764, 'US', 'Broomtown', NULL, 'broomtown', 1, '34.3606500000', '-85.5216300000'),
(7052177, 7829764, 'US', 'Brundidge', NULL, 'brundidge', 1, '31.7201600000', '-85.8160600000'),
(7052393, 7829764, 'US', 'Bucks', NULL, 'bucks', 1, '31.0104600000', '-88.0241700000'),
(7052726, 7829764, 'US', 'Butler', NULL, 'butler', 1, '32.0895900000', '-88.2219700000'),
(7052824, 7829764, 'US', 'Bynum', NULL, 'bynum', 1, '33.6131600000', '-85.9610800000'),
(7052964, 7829764, 'US', 'Cahaba Heights', NULL, 'cahaba-heights', 1, '33.4640000000', '-86.7319300000'),
(7053050, 7829764, 'US', 'Calera', NULL, 'calera', 1, '33.1029000000', '-86.7536000000'),
(7053172, 7829764, 'US', 'Calvert', NULL, 'calvert', 1, '31.1551700000', '-88.0100000000'),
(7053200, 7829764, 'US', 'Camden', NULL, 'camden', 1, '31.9909800000', '-87.2905500000'),
(7053318, 7829764, 'US', 'Camp Hill', NULL, 'camp-hill', 1, '32.8004100000', '-85.6535700000'),
(7053671, 7829764, 'US', 'Carbon Hill', NULL, 'carbon-hill', 1, '33.8917700000', '-87.5261200000'),
(7053684, 7829764, 'US', 'Cardiff', NULL, 'cardiff', 1, '33.6456600000', '-86.9336100000'),
(7053726, 7829764, 'US', 'Carlton', NULL, 'carlton', 1, '31.3432200000', '-87.8455500000'),
(7053757, 7829764, 'US', 'Carolina', NULL, 'carolina', 1, '31.2407300000', '-86.5277400000'),
(7053823, 7829764, 'US', 'Carrollton', NULL, 'carrollton', 1, '33.2616900000', '-88.0950300000'),
(7053940, 7829764, 'US', 'Castleberry', NULL, 'castleberry', 1, '31.2990600000', '-87.0224700000'),
(7053980, 7829764, 'US', 'Catherine', NULL, 'catherine', 1, '32.1845900000', '-87.4694400000'),
(7054073, 7829764, 'US', 'Cedar Bluff', NULL, 'cedar-bluff', 1, '34.2200900000', '-85.6077400000'),
(7054378, 7829764, 'US', 'Center Point', NULL, 'center-point', 1, '33.6456600000', '-86.6836000000'),
(7054555, 7829764, 'US', 'Centre', NULL, 'centre', 1, '34.1520400000', '-85.6788500000'),
(7054566, 7829764, 'US', 'Centreville', NULL, 'centreville', 1, '32.9462000000', '-87.1166900000'),
(7054593, 7829764, 'US', 'Chalkville', NULL, 'chalkville', 1, '33.6531600000', '-86.6477700000'),
(7054818, 7829764, 'US', 'Chatom', NULL, 'chatom', 1, '31.4651700000', '-88.2544600000'),
(7054852, 7829764, 'US', 'Chelsea', NULL, 'chelsea', 1, '33.3401100000', '-86.6302600000'),
(7054866, 7829764, 'US', 'Cherokee', NULL, 'cherokee', 1, '34.7570300000', '-87.9728100000'),
(7054996, 7829764, 'US', 'Chickasaw', NULL, 'chickasaw', 1, '30.7638000000', '-88.0747200000'),
(7055045, 7829764, 'US', 'Childersburg', NULL, 'childersburg', 1, '33.2781700000', '-86.3549800000'),
(7055139, 7829764, 'US', 'Choccolocco', NULL, 'choccolocco', 1, '33.6592700000', '-85.7035700000'),
(7055294, 7829764, 'US', 'Chunchula', NULL, 'chunchula', 1, '30.9218500000', '-88.2005600000'),
(7055535, 7829764, 'US', 'Citronelle', NULL, 'citronelle', 1, '31.0907300000', '-88.2280600000'),
(7055577, 7829764, 'US', 'Clanton', NULL, 'clanton', 1, '32.8387400000', '-86.6294300000'),
(7055597, 7829764, 'US', 'Susan Moore', NULL, 'susan-moore', 1, '34.0837100000', '-86.4283200000'),
(7055650, 7829764, 'US', 'Clay', NULL, 'clay', 1, '33.7026000000', '-86.5997100000'),
(7055684, 7829764, 'US', 'Clayhatchee', NULL, 'clayhatchee', 1, '31.2357300000', '-85.7227100000'),
(7055696, 7829764, 'US', 'Clayton', NULL, 'clayton', 1, '31.8782200000', '-85.4496600000'),
(7055815, 7829764, 'US', 'Cleveland', NULL, 'cleveland', 1, '33.9909300000', '-86.5774900000'),
(7055879, 7829764, 'US', 'Clio', NULL, 'clio', 1, '31.7087800000', '-85.6105000000'),
(7056017, 7829764, 'US', 'Coaling', NULL, 'coaling', 1, '33.1590100000', '-87.3408300000'),
(7056114, 7829764, 'US', 'Coffee Springs', NULL, 'coffee-springs', 1, '31.1646200000', '-85.9093800000'),
(7056118, 7829764, 'US', 'Coffeeville', NULL, 'coffeeville', 1, '31.7579400000', '-88.0897300000'),
(7056154, 7829764, 'US', 'Coker', NULL, 'coker', 1, '33.2459500000', '-87.6877900000'),
(7056381, 7829764, 'US', 'Collinsville', NULL, 'collinsville', 1, '34.2639800000', '-85.8605300000'),
(7056419, 7829764, 'US', 'Columbia', NULL, 'columbia', 1, '31.2927100000', '-85.1126700000'),
(7056427, 7829764, 'US', 'Columbiana', NULL, 'columbiana', 1, '33.1781700000', '-86.6072100000'),
(7056515, 7829764, 'US', 'Concord', NULL, 'concord', 1, '33.4676100000', '-87.0311100000'),
(7056837, 7829764, 'US', 'Coosada', NULL, 'coosada', 1, '32.4979100000', '-86.3313600000'),
(7056920, 7829764, 'US', 'Cordova', NULL, 'cordova', 1, '33.7598300000', '-87.1833300000'),
(7057139, 7829764, 'US', 'Cottonwood', NULL, 'cottonwood', 1, '31.0487900000', '-85.3049300000'),
(7057203, 7829764, 'US', 'County Line', NULL, 'county-line', 1, '33.8214900000', '-86.7186000000'),
(7057261, 7829764, 'US', 'Courtland', NULL, 'courtland', 1, '34.6689800000', '-87.3094600000'),
(7057320, 7829764, 'US', 'Cowarts', NULL, 'cowarts', 1, '31.2001800000', '-85.3046500000'),
(7057531, 7829764, 'US', 'Creola', NULL, 'creola', 1, '30.8918500000', '-88.0397200000'),
(7057731, 7829764, 'US', 'Crossville', NULL, 'crossville', 1, '34.2875900000', '-85.9941400000'),
(7057830, 7829764, 'US', 'Cuba', NULL, 'cuba', 1, '32.4287700000', '-88.3767900000'),
(7057835, 7829764, 'US', 'Cullman', NULL, 'cullman', 1, '34.1748200000', '-86.8436100000'),
(7057856, 7829764, 'US', 'Cullomburg', NULL, 'cullomburg', 1, '31.7137700000', '-88.2969600000'),
(7057961, 7829764, 'US', 'Cusseta', NULL, 'cusseta', 1, '32.7848500000', '-85.3057800000'),
(7058027, 7829764, 'US', 'Dadeville', NULL, 'dadeville', 1, '32.8312400000', '-85.7635700000'),
(7058061, 7829764, 'US', 'Daleville', NULL, 'daleville', 1, '31.3101700000', '-85.7129900000'),
(7058198, 7829764, 'US', 'Danville', NULL, 'danville', 1, '34.4145400000', '-87.0875100000'),
(7058219, 7829764, 'US', 'Daphne', NULL, 'daphne', 1, '30.6035300000', '-87.9036000000'),
(7058262, 7829764, 'US', 'Dauphin Island', NULL, 'dauphin-island', 1, '30.2554800000', '-88.1097200000'),
(7058417, 7829764, 'US', 'Daviston', NULL, 'daviston', 1, '33.0529000000', '-85.6396800000'),
(7058460, 7829764, 'US', 'Dayton', NULL, 'dayton', 1, '32.3502400000', '-87.6419300000'),
(7058543, 7829764, 'US', 'Deatsville', NULL, 'deatsville', 1, '32.6081900000', '-86.3958100000'),
(7058553, 7829764, 'US', 'Decatur', NULL, 'decatur', 1, '34.6059300000', '-86.9833400000'),
(7058595, 7829764, 'US', 'Deer Park', NULL, 'deer-park', 1, '31.2168400000', '-88.3172300000'),
(7058643, 7829764, 'US', 'Delta', NULL, 'delta', 1, '33.4401100000', '-85.6905200000'),
(7058662, 7829764, 'US', 'Demopolis', NULL, 'demopolis', 1, '32.5176400000', '-87.8364000000'),
(7058738, 7829764, 'US', 'Detroit', NULL, 'detroit', 1, '34.0281600000', '-88.1700400000'),
(7058904, 7829764, 'US', 'Dixonville', NULL, 'dixonville', 1, '31.0004600000', '-87.0360800000'),
(7058971, 7829764, 'US', 'Dodge City', NULL, 'dodge-city', 1, '34.0406600000', '-86.8858300000'),
(7059070, 7829764, 'US', 'Dora', NULL, 'dora', 1, '33.7287200000', '-87.0902800000'),
(7059102, 7829764, 'US', 'Dothan', NULL, 'dothan', 1, '31.2232300000', '-85.3904900000'),
(7059162, 7829764, 'US', 'Double Springs', NULL, 'double-springs', 1, '34.1463700000', '-87.4024700000'),
(7059172, 7829764, 'US', 'Douglas', NULL, 'douglas', 1, '34.1737100000', '-86.3235900000'),
(7059229, 7829764, 'US', 'Dozier', NULL, 'dozier', 1, '31.4921100000', '-86.3649600000'),
(7059584, 7829764, 'US', 'Dunnavant', NULL, 'dunnavant', 1, '33.4934400000', '-86.5441500000'),
(7059701, 7829764, 'US', 'Dutton', NULL, 'dutton', 1, '34.6109200000', '-85.9169200000'),
(7059831, 7829764, 'US', 'East Brewton', NULL, 'east-brewton', 1, '31.0932300000', '-87.0627500000'),
(7059870, 7829764, 'US', 'East Florence', NULL, 'east-florence', 1, '34.8095300000', '-87.6494700000'),
(7059956, 7829764, 'US', 'East Point', NULL, 'east-point', 1, '34.1831500000', '-86.7936100000'),
(7060176, 7829764, 'US', 'Eclectic', NULL, 'eclectic', 1, '32.6354100000', '-86.0344100000'),
(7060232, 7829764, 'US', 'Edgewater', NULL, 'edgewater', 1, '33.5267700000', '-86.9577700000'),
(7060298, 7829764, 'US', 'Edwardsville', NULL, 'edwardsville', 1, '33.7073300000', '-85.5091200000'),
(7060324, 7829764, 'US', 'Egypt', NULL, 'egypt', 1, '34.0737100000', '-86.1558100000'),
(7060381, 7829764, 'US', 'Elberta', NULL, 'elberta', 1, '30.4143600000', '-87.5977600000'),
(7060398, 7829764, 'US', 'Eldridge', NULL, 'eldridge', 1, '33.9228800000', '-87.6172400000'),
(7060461, 7829764, 'US', 'Elkmont', NULL, 'elkmont', 1, '34.9289700000', '-86.9739000000'),
(7060625, 7829764, 'US', 'Emelle', NULL, 'emelle', 1, '32.7293000000', '-88.3144800000'),
(7060791, 7829764, 'US', 'Enterprise', NULL, 'enterprise', 1, '31.3151700000', '-85.8552200000'),
(7060819, 7829764, 'US', 'Epes', NULL, 'epes', 1, '32.6904100000', '-88.1261300000'),
(7060927, 7829764, 'US', 'Ethelsville', NULL, 'ethelsville', 1, '33.4156700000', '-88.2167000000'),
(7060954, 7829764, 'US', 'Eufaula', NULL, 'eufaula', 1, '31.8912700000', '-85.1454900000'),
(7060971, 7829764, 'US', 'Eunola', NULL, 'eunola', 1, '31.0399000000', '-85.8474400000'),
(7060991, 7829764, 'US', 'Eutaw', NULL, 'eutaw', 1, '32.8405900000', '-87.8876200000'),
(7060998, 7829764, 'US', 'Eva', NULL, 'eva', 1, '34.3323200000', '-86.7588900000'),
(7061064, 7829764, 'US', 'Evergreen', NULL, 'evergreen', 1, '31.4335000000', '-86.9569200000'),
(7061113, 7829764, 'US', 'Excel', NULL, 'excel', 1, '31.4279400000', '-87.3413700000'),
(7061206, 7829764, 'US', 'Fairfield', NULL, 'fairfield', 1, '33.4859400000', '-86.9119400000'),
(7061231, 7829764, 'US', 'Fairford', NULL, 'fairford', 1, '31.1682300000', '-88.0641700000'),
(7061234, 7829764, 'US', 'Fairhope', NULL, 'fairhope', 1, '30.5229700000', '-87.9033300000'),
(7061265, 7829764, 'US', 'Fairview', NULL, 'fairview', 1, '34.2553700000', '-86.6880500000'),
(7061466, 7829764, 'US', 'Falkville', NULL, 'falkville', 1, '34.3684300000', '-86.9086200000'),
(7061575, 7829764, 'US', 'Faunsdale', NULL, 'faunsdale', 1, '32.4598600000', '-87.5938900000'),
(7061586, 7829764, 'US', 'Fayette', NULL, 'fayette', 1, '33.6845500000', '-87.8308500000'),
(7061602, 7829764, 'US', 'Fayetteville', NULL, 'fayetteville', 1, '33.1456700000', '-86.4058100000'),
(7062297, 7829764, 'US', 'Fitzpatrick', NULL, 'fitzpatrick', 1, '32.2165300000', '-85.8888400000'),
(7062312, 7829764, 'US', 'Five Points', NULL, 'five-points', 1, '33.0181800000', '-85.3502300000'),
(7062523, 7829764, 'US', 'Flint City', NULL, 'flint-city', 1, '34.5231500000', '-86.9702900000'),
(7062568, 7829764, 'US', 'Florala', NULL, 'florala', 1, '31.0051800000', '-86.3280000000'),
(7062577, 7829764, 'US', 'Florence', NULL, 'florence', 1, '34.7998100000', '-87.6772500000'),
(7062595, 7829764, 'US', 'Flomaton', NULL, 'flomaton', 1, '31.0001800000', '-87.2608100000'),
(7062644, 7829764, 'US', 'Foley', NULL, 'foley', 1, '30.4065900000', '-87.6836000000'),
(7062774, 7829764, 'US', 'Forestdale', NULL, 'forestdale', 1, '33.5701100000', '-86.8963800000'),
(7062791, 7829764, 'US', 'Forkland', NULL, 'forkland', 1, '32.6481900000', '-87.8833500000'),
(7062824, 7829764, 'US', 'Fort Deposit', NULL, 'fort-deposit', 1, '31.9845900000', '-86.5785900000'),
(7062861, 7829764, 'US', 'Fort Payne', NULL, 'fort-payne', 1, '34.4442500000', '-85.7196900000'),
(7063118, 7829764, 'US', 'Franklin', NULL, 'franklin', 1, '32.4784700000', '-85.8024600000'),
(7063182, 7829764, 'US', 'Fredonia', NULL, 'fredonia', 1, '32.9898500000', '-85.2885600000'),
(7063475, 7829764, 'US', 'Frisco City', NULL, 'frisco-city', 1, '31.4335000000', '-87.4013800000'),
(7063514, 7829764, 'US', 'Fruithurst', NULL, 'fruithurst', 1, '33.7309400000', '-85.4338400000'),
(7063533, 7829764, 'US', 'Fruitdale', NULL, 'fruitdale', 1, '31.3426700000', '-88.4077900000'),
(7063555, 7829764, 'US', 'Fulton', NULL, 'fulton', 1, '31.7884900000', '-87.7272200000'),
(7063570, 7829764, 'US', 'Fultondale', NULL, 'fultondale', 1, '33.6048300000', '-86.7938800000'),
(7063613, 7829764, 'US', 'Fyffe', NULL, 'fyffe', 1, '34.4467600000', '-85.9041400000'),
(7063619, 7829764, 'US', 'Gadsden', NULL, 'gadsden', 1, '34.0143400000', '-86.0063900000'),
(7063652, 7829764, 'US', 'Gainesville', NULL, 'gainesville', 1, '32.8209600000', '-88.1589100000'),
(7063684, 7829764, 'US', 'Gallant', NULL, 'gallant', 1, '33.9987100000', '-86.2452600000'),
(7063738, 7829764, 'US', 'Gantt', NULL, 'gantt', 1, '31.4068300000', '-86.4841300000'),
(7063753, 7829764, 'US', 'Garden City', NULL, 'garden-city', 1, '34.0145400000', '-86.7469400000'),
(7063765, 7829764, 'US', 'Gardendale', NULL, 'gardendale', 1, '33.6601000000', '-86.8127700000'),
(7063902, 7829764, 'US', 'Gaylesville', NULL, 'gaylesville', 1, '34.2684300000', '-85.5569100000'),
(7063917, 7829764, 'US', 'Geiger', NULL, 'geiger', 1, '32.8681900000', '-88.3050300000'),
(7063926, 7829764, 'US', 'Geneva', NULL, 'geneva', 1, '31.0329600000', '-85.8638200000'),
(7064006, 7829764, 'US', 'Georgiana', NULL, 'georgiana', 1, '31.6371000000', '-86.7419200000'),
(7064020, 7829764, 'US', 'Geraldine', NULL, 'geraldine', 1, '34.3514800000', '-86.0008100000'),
(7064105, 7829764, 'US', 'Gilbertown', NULL, 'gilbertown', 1, '31.8771000000', '-88.3214100000'),
(7064310, 7829764, 'US', 'Glencoe', NULL, 'glencoe', 1, '33.9570400000', '-85.9324700000'),
(7064341, 7829764, 'US', 'Glen Allen', NULL, 'glen-allen', 1, '33.9151000000', '-87.7416900000'),
(7064354, 7829764, 'US', 'Glenwood', NULL, 'glenwood', 1, '31.6646000000', '-86.1713400000'),
(7064484, 7829764, 'US', 'Goldville', NULL, 'goldville', 1, '33.0837300000', '-85.7838500000'),
(7064548, 7829764, 'US', 'Good Hope', NULL, 'good-hope', 1, '34.1159300000', '-86.8636100000'),
(7064598, 7829764, 'US', 'Goodwater', NULL, 'goodwater', 1, '33.0656700000', '-86.0533000000'),
(7064664, 7829764, 'US', 'Gordo', NULL, 'gordo', 1, '33.3201200000', '-87.9028000000'),
(7064671, 7829764, 'US', 'Gordon', NULL, 'gordon', 1, '31.1412900000', '-85.0966000000'),
(7064706, 7829764, 'US', 'Goshen', NULL, 'goshen', 1, '31.7229400000', '-86.1182900000'),
(7064812, 7829764, 'US', 'Graham', NULL, 'graham', 1, '33.4576100000', '-85.3207800000'),
(7064840, 7829764, 'US', 'Grand Bay', NULL, 'grand-bay', 1, '30.4763100000', '-88.3422300000'),
(7064871, 7829764, 'US', 'Grant', NULL, 'grant', 1, '34.5287000000', '-86.2533200000'),
(7065029, 7829764, 'US', 'Grayson Valley', NULL, 'grayson-valley', 1, '33.6481600000', '-86.6394300000'),
(7065034, 7829764, 'US', 'Graysville', NULL, 'graysville', 1, '33.6206600000', '-86.9713800000'),
(7065282, 7829764, 'US', 'Greensboro', NULL, 'greensboro', 1, '32.7041500000', '-87.5955000000'),
(7065302, 7829764, 'US', 'Greenville', NULL, 'greenville', 1, '31.8296000000', '-86.6177500000'),
(7065421, 7829764, 'US', 'Grimes', NULL, 'grimes', 1, '31.3046200000', '-85.4479900000'),
(7065475, 7829764, 'US', 'Grove Hill', NULL, 'grove-hill', 1, '31.7087700000', '-87.7772200000'),
(7065508, 7829764, 'US', 'Gu-Win', NULL, 'gu-win', 1, '33.9609400000', '-87.8805800000'),
(7065524, 7829764, 'US', 'Guin', NULL, 'guin', 1, '33.9656600000', '-87.9147500000'),
(7065552, 7829764, 'US', 'Gulf Shores', NULL, 'gulf-shores', 1, '30.2460400000', '-87.7008200000'),
(7065575, 7829764, 'US', 'Gulfcrest', NULL, 'gulfcrest', 1, '30.9954600000', '-88.2375100000'),
(7065649, 7829764, 'US', 'Guntersville', NULL, 'guntersville', 1, '34.3582300000', '-86.2944600000'),
(7065664, 7829764, 'US', 'Gurley', NULL, 'gurley', 1, '33.7764900000', '-86.6377700000'),
(7065731, 7829764, 'US', 'Hackleburg', NULL, 'hackleburg', 1, '34.2773200000', '-87.8286400000'),
(7065747, 7829764, 'US', 'Hackneyville', NULL, 'hackneyville', 1, '33.0604000000', '-85.9330200000'),
(7065814, 7829764, 'US', 'Haleburg', NULL, 'haleburg', 1, '31.4065600000', '-85.1371500000'),
(7065830, 7829764, 'US', 'Haleyville', NULL, 'haleyville', 1, '34.2264900000', '-87.6214100000'),
(7065965, 7829764, 'US', 'Hamilton', NULL, 'hamilton', 1, '34.1423200000', '-87.9886400000'),
(7066038, 7829764, 'US', 'Hammondville', NULL, 'hammondville', 1, '34.5817500000', '-85.6266300000'),
(7066065, 7829764, 'US', 'Hanceville', NULL, 'hanceville', 1, '34.0606500000', '-86.7675000000'),
(7066335, 7829764, 'US', 'Harpersville', NULL, 'harpersville', 1, '33.3440000000', '-86.4380400000'),
(7066437, 7829764, 'US', 'Hartford', NULL, 'hartford', 1, '31.1024000000', '-85.6968800000'),
(7066449, 7829764, 'US', 'Hartselle', NULL, 'hartselle', 1, '34.4434300000', '-86.9352800000'),
(7066463, 7829764, 'US', 'Harvest', NULL, 'harvest', 1, '34.8556400000', '-86.7508300000'),
(7066542, 7829764, 'US', 'Hatton', NULL, 'hatton', 1, '34.5628700000', '-87.4153000000'),
(7066613, 7829764, 'US', 'Hayden', NULL, 'hayden', 1, '33.8926000000', '-86.7577700000'),
(7066661, 7829764, 'US', 'Hayneville', NULL, 'hayneville', 1, '32.1840300000', '-86.5802500000'),
(7066686, 7829764, 'US', 'Hazel Green', NULL, 'hazel-green', 1, '34.9323100000', '-86.5719400000'),
(7066716, 7829764, 'US', 'Headland', NULL, 'headland', 1, '31.3512800000', '-85.3421600000'),
(7066751, 7829764, 'US', 'Heath', NULL, 'heath', 1, '31.3607200000', '-86.4696800000'),
(7066793, 7829764, 'US', 'Heflin', NULL, 'heflin', 1, '33.6489900000', '-85.5874600000'),
(7066811, 7829764, 'US', 'Helena', NULL, 'helena', 1, '33.2962200000', '-86.8436000000'),
(7066844, 7829764, 'US', 'Henagar', NULL, 'henagar', 1, '34.6350800000', '-85.7671900000'),
(7067245, 7829764, 'US', 'Highland Lake', NULL, 'highland-lake', 1, '33.8851000000', '-86.4197100000'),
(7067432, 7829764, 'US', 'Hillsboro', NULL, 'hillsboro', 1, '34.6392600000', '-87.1916800000'),
(7067501, 7829764, 'US', 'Hissop', NULL, 'hissop', 1, '32.8923500000', '-86.1533000000'),
(7067532, 7829764, 'US', 'Hobson', NULL, 'hobson', 1, '31.4723900000', '-88.1533400000'),
(7067534, 7829764, 'US', 'Hobson City', NULL, 'hobson-city', 1, '33.6214900000', '-85.8441300000'),
(7067557, 7829764, 'US', 'Hodges', NULL, 'hodges', 1, '34.3270400000', '-87.9264200000'),
(7067623, 7829764, 'US', 'Hokes Bluff', NULL, 'hokes-bluff', 1, '33.9981500000', '-85.8663600000'),
(7067725, 7829764, 'US', 'Hollins', NULL, 'hollins', 1, '33.1176200000', '-86.1444200000'),
(7067752, 7829764, 'US', 'Hollis Crossroads', NULL, 'hollis-crossroads', 1, '33.5237200000', '-85.6371800000'),
(7067784, 7829764, 'US', 'Holly Pond', NULL, 'holly-pond', 1, '34.1742600000', '-86.6163800000'),
(7067814, 7829764, 'US', 'Hollywood', NULL, 'hollywood', 1, '34.7242500000', '-85.9724800000'),
(7067840, 7829764, 'US', 'Holt', NULL, 'holt', 1, '33.2340100000', '-87.4844500000'),
(7067862, 7829764, 'US', 'Holtville', NULL, 'holtville', 1, '32.6362400000', '-86.3266400000'),
(7067927, 7829764, 'US', 'Homewood', NULL, 'homewood', 1, '33.4717700000', '-86.8008200000'),
(7067994, 7829764, 'US', 'Hoover', NULL, 'hoover', 1, '33.4053900000', '-86.8113800000'),
(7068149, 7829764, 'US', 'Horn Hill', NULL, 'horn-hill', 1, '31.2457300000', '-86.3166200000'),
(7068226, 7829764, 'US', 'Horton', NULL, 'horton', 1, '34.2009300000', '-86.2969200000'),
(7068446, 7829764, 'US', 'Hueytown', NULL, 'hueytown', 1, '33.4512200000', '-86.9966600000'),
(7068506, 7829764, 'US', 'Huguley', NULL, 'huguley', 1, '32.8345700000', '-85.2296600000'),
(7068590, 7829764, 'US', 'Huntsville', NULL, 'huntsville', 1, '34.7304000000', '-86.5859400000'),
(7068707, 7829764, 'US', 'Hurtsboro', NULL, 'hurtsboro', 1, '32.2418100000', '-85.4163300000'),
(7068761, 7829764, 'US', 'Hytop', NULL, 'hytop', 1, '34.9162000000', '-86.0880400000'),
(7068778, 7829764, 'US', 'Ider', NULL, 'ider', 1, '34.7142500000', '-85.6808000000'),
(7068933, 7829764, 'US', 'Indian Springs Village', NULL, 'indian-springs-village', 1, '33.3553900000', '-86.7544300000'),
(7069210, 7829764, 'US', 'Inverness', NULL, 'inverness', 1, '32.0148800000', '-85.7460600000'),
(7069243, 7829764, 'US', 'Irondale', NULL, 'irondale', 1, '33.5381600000', '-86.7072100000'),
(7069309, 7829764, 'US', 'Ivalee', NULL, 'ivalee', 1, '34.0345400000', '-86.1452500000'),
(7069458, 7829764, 'US', 'Jackson', NULL, 'jackson', 1, '31.5090500000', '-87.8944400000'),
(7069545, 7829764, 'US', 'Jacksons Gap', NULL, 'jacksons-gap', 1, '32.8862400000', '-85.8116300000'),
(7069553, 7829764, 'US', 'Jacksonville', NULL, 'jacksonville', 1, '33.8138200000', '-85.7613000000'),
(7069659, 7829764, 'US', 'Jasper', NULL, 'jasper', 1, '33.8312200000', '-87.2775100000'),
(7069722, 7829764, 'US', 'Jemison', NULL, 'jemison', 1, '32.9598500000', '-86.7466500000'),
(7070318, 7829764, 'US', 'Joppa', NULL, 'joppa', 1, '34.2978700000', '-86.5561000000'),
(7070324, 7829764, 'US', 'Joquin', NULL, 'joquin', 1, '31.7865400000', '-86.1641200000'),
(7070478, 7829764, 'US', 'Kansas', NULL, 'kansas', 1, '33.9017700000', '-87.5519600000'),
(7070603, 7829764, 'US', 'Kellyton', NULL, 'kellyton', 1, '32.9798400000', '-86.0335800000'),
(7070649, 7829764, 'US', 'Kennedy', NULL, 'kennedy', 1, '33.5870600000', '-87.9844700000'),
(7070786, 7829764, 'US', 'Killen', NULL, 'killen', 1, '34.8628600000', '-87.5375300000'),
(7070806, 7829764, 'US', 'Kimberly', NULL, 'kimberly', 1, '33.7734400000', '-86.8138800000'),
(7070997, 7829764, 'US', 'Kinsey', NULL, 'kinsey', 1, '31.2990600000', '-85.3443800000'),
(7071000, 7829764, 'US', 'Kinston', NULL, 'kinston', 1, '31.2160000000', '-86.1710600000'),
(7071262, 7829764, 'US', 'Ladonia', NULL, 'ladonia', 1, '32.4682000000', '-85.0791000000'),
(7071267, 7829764, 'US', 'Lafayette', NULL, 'lafayette', 1, '32.8998500000', '-85.4010600000'),
(7071488, 7829764, 'US', 'Lake Purdy', NULL, 'lake-purdy', 1, '33.4301100000', '-86.6805400000'),
(7071540, 7829764, 'US', 'Lake View', NULL, 'lake-view', 1, '33.2806700000', '-87.1375000000'),
(7071611, 7829764, 'US', 'Lakeview', NULL, 'lakeview', 1, '34.3909200000', '-85.9783100000'),
(7071763, 7829764, 'US', 'Lanett', NULL, 'lanett', 1, '32.8687400000', '-85.1905000000'),
(7071801, 7829764, 'US', 'Langston', NULL, 'langston', 1, '34.5389800000', '-86.0744200000'),
(7072130, 7829764, 'US', 'Leeds', NULL, 'leeds', 1, '33.5481600000', '-86.5444300000'),
(7072156, 7829764, 'US', 'Leesburg', NULL, 'leesburg', 1, '34.1798200000', '-85.7613600000'),
(7072183, 7829764, 'US', 'Leighton', NULL, 'leighton', 1, '34.7009200000', '-87.5289200000'),
(7072240, 7829764, 'US', 'Leroy', NULL, 'leroy', 1, '31.5046100000', '-87.9847200000'),
(7072250, 7829764, 'US', 'Lester', NULL, 'lester', 1, '33.9992600000', '-86.1210900000'),
(7072271, 7829764, 'US', 'Level Plains', NULL, 'level-plains', 1, '31.2996200000', '-85.7779900000'),
(7072339, 7829764, 'US', 'Lexington', NULL, 'lexington', 1, '34.9692500000', '-87.3711300000'),
(7072543, 7829764, 'US', 'Libertyville', NULL, 'libertyville', 1, '31.2415600000', '-86.4613400000'),
(7072752, 7829764, 'US', 'Linden', NULL, 'linden', 1, '32.3062500000', '-87.7980700000'),
(7072767, 7829764, 'US', 'Lincoln', NULL, 'lincoln', 1, '33.6131600000', '-86.1183100000'),
(7072814, 7829764, 'US', 'Lineville', NULL, 'lineville', 1, '33.3106700000', '-85.7544100000'),
(7072834, 7829764, 'US', 'Lisman', NULL, 'lisman', 1, '32.1687600000', '-88.2825300000'),
(7072842, 7829764, 'US', 'Lipscomb', NULL, 'lipscomb', 1, '33.4256600000', '-86.9266600000'),
(7073357, 7829764, 'US', 'Littleville', NULL, 'littleville', 1, '34.5906500000', '-87.6769700000'),
(7073383, 7829764, 'US', 'Livingston', NULL, 'livingston', 1, '32.5843000000', '-88.1872500000'),
(7073413, 7829764, 'US', 'Loachapoka', NULL, 'loachapoka', 1, '32.6043000000', '-85.5932900000'),
(7073483, 7829764, 'US', 'Lockhart', NULL, 'lockhart', 1, '31.0104600000', '-86.3496700000'),
(7073504, 7829764, 'US', 'Locust Fork', NULL, 'locust-fork', 1, '33.9076000000', '-86.6152700000'),
(7073771, 7829764, 'US', 'Louisville', NULL, 'louisville', 1, '31.7835000000', '-85.5557800000'),
(7073889, 7829764, 'US', 'Lowndesboro', NULL, 'lowndesboro', 1, '32.2751400000', '-86.6113700000'),
(7073897, 7829764, 'US', 'Loxley', NULL, 'loxley', 1, '30.6182500000', '-87.7530500000'),
(7073985, 7829764, 'US', 'Luverne', NULL, 'luverne', 1, '31.7165500000', '-86.2638500000'),
(7074013, 7829764, 'US', 'Lynn', NULL, 'lynn', 1, '34.0470500000', '-87.5497400000'),
(7074076, 7829764, 'US', 'Macedonia', NULL, 'macedonia', 1, '33.3915100000', '-88.2333700000'),
(7074267, 7829764, 'US', 'Madison', NULL, 'madison', 1, '34.6992600000', '-86.7483300000'),
(7074307, 7829764, 'US', 'Madrid', NULL, 'madrid', 1, '31.0357400000', '-85.3932700000'),
(7074363, 7829764, 'US', 'Magnolia Springs', NULL, 'magnolia-springs', 1, '30.3996400000', '-87.7761000000'),
(7074407, 7829764, 'US', 'Malcolm', NULL, 'malcolm', 1, '31.1912800000', '-88.0075000000'),
(7074452, 7829764, 'US', 'Malvern', NULL, 'malvern', 1, '31.1393400000', '-85.5191000000'),
(7074544, 7829764, 'US', 'Maplesville', NULL, 'maplesville', 1, '32.7889700000', '-86.8735300000'),
(7074568, 7829764, 'US', 'Marbury', NULL, 'marbury', 1, '32.7012400000', '-86.4710900000'),
(7074599, 7829764, 'US', 'Margaret', NULL, 'margaret', 1, '33.6862100000', '-86.4749800000'),
(7074673, 7829764, 'US', 'Marion', NULL, 'marion', 1, '32.6323500000', '-87.3191700000'),
(7074991, 7829764, 'US', 'Matthews', NULL, 'matthews', 1, '32.2654200000', '-86.0038500000'),
(7075138, 7829764, 'US', 'Maytown', NULL, 'maytown', 1, '33.5359400000', '-86.9972200000'),
(7075368, 7829764, 'US', 'McDonald Chapel', NULL, 'mcdonald-chapel', 1, '33.5217700000', '-86.9336000000'),
(7075481, 7829764, 'US', 'McIntosh', NULL, 'mcintosh', 1, '31.2662800000', '-88.0313900000'),
(7075526, 7829764, 'US', 'McKenzie', NULL, 'mckenzie', 1, '31.5423800000', '-86.7149700000'),
(7075581, 7829764, 'US', 'McMullen', NULL, 'mcmullen', 1, '33.1487300000', '-88.1764200000'),
(7075692, 7829764, 'US', 'Meadowbrook', NULL, 'meadowbrook', 1, '33.4020500000', '-86.6966500000'),
(7075759, 7829764, 'US', 'Megargel', NULL, 'megargel', 1, '31.3798900000', '-87.4283200000'),
(7075831, 7829764, 'US', 'Memphis', NULL, 'memphis', 1, '31.1326800000', '-85.3754900000'),
(7075854, 7829764, 'US', 'Meridianville', NULL, 'meridianville', 1, '34.8514800000', '-86.5722200000'),
(7075871, 7829764, 'US', 'Mentone', NULL, 'mentone', 1, '34.5791800000', '-85.5900900000'),
(7075977, 7829764, 'US', 'Midfield', NULL, 'midfield', 1, '33.4615000000', '-86.9088800000'),
(7075984, 7829764, 'US', 'Midland City', NULL, 'midland-city', 1, '31.3190600000', '-85.4938200000'),
(7075989, 7829764, 'US', 'Midway', NULL, 'midway', 1, '32.0771000000', '-85.5221700000'),
(7076066, 7829764, 'US', 'Mignon', NULL, 'mignon', 1, '33.1834500000', '-86.2610900000'),
(7076239, 7829764, 'US', 'Millbrook', NULL, 'millbrook', 1, '32.4798600000', '-86.3619200000'),
(7076341, 7829764, 'US', 'Millerville', NULL, 'millerville', 1, '33.1915100000', '-85.9258000000'),
(7076358, 7829764, 'US', 'Millport', NULL, 'millport', 1, '33.5634500000', '-88.0814200000'),
(7076361, 7829764, 'US', 'Millry', NULL, 'millry', 1, '31.6340500000', '-88.3133500000'),
(7076468, 7829764, 'US', 'Minor', NULL, 'minor', 1, '33.5373300000', '-86.9405500000'),
(7076598, 7829764, 'US', 'Mobile', NULL, 'mobile', 1, '30.6943600000', '-88.0430500000'),
(7076725, 7829764, 'US', 'Monroeville', NULL, 'monroeville', 1, '31.5279400000', '-87.3247100000'),
(7076771, 7829764, 'US', 'Montevallo', NULL, 'montevallo', 1, '33.1006700000', '-86.8641600000'),
(7076784, 7829764, 'US', 'Montgomery', NULL, 'montgomery', 1, '32.3668100000', '-86.2999700000'),
(7076842, 7829764, 'US', 'Moody', NULL, 'moody', 1, '33.5909400000', '-86.4908200000'),
(7076982, 7829764, 'US', 'Moores Mill', NULL, 'moores-mill', 1, '34.8439800000', '-86.5183200000'),
(7076991, 7829764, 'US', 'Mooresville', NULL, 'mooresville', 1, '34.6264200000', '-86.8805700000'),
(7077143, 7829764, 'US', 'Morris', NULL, 'morris', 1, '33.7481600000', '-86.8086000000'),
(7077216, 7829764, 'US', 'Morrison Crossroads', NULL, 'morrison-crossroads', 1, '33.4265000000', '-85.4932900000'),
(7077283, 7829764, 'US', 'Mosses', NULL, 'mosses', 1, '32.1745900000', '-86.6719200000'),
(7077329, 7829764, 'US', 'Moulton', NULL, 'moulton', 1, '34.4812100000', '-87.2933500000'),
(7077349, 7829764, 'US', 'Moundville', NULL, 'moundville', 1, '32.9976200000', '-87.6300100000'),
(7077865, 7829764, 'US', 'Mount Olive', NULL, 'mount-olive', 1, '33.0695600000', '-86.1349700000'),
(7078346, 7829764, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '34.2925900000', '-85.7877500000'),
(7078646, 7829764, 'US', 'Mountain Brook', NULL, 'mountain-brook', 1, '33.5009400000', '-86.7522100000'),
(7078753, 7829764, 'US', 'Mountainboro', NULL, 'mountainboro', 1, '34.1470400000', '-86.1305300000'),
(7078764, 7829764, 'US', 'Movico', NULL, 'movico', 1, '31.0646200000', '-88.0255500000'),
(7078859, 7829764, 'US', 'Mulga', NULL, 'mulga', 1, '33.5498300000', '-86.9741600000'),
(7078898, 7829764, 'US', 'Munford', NULL, 'munford', 1, '33.5298300000', '-85.9508000000'),
(7078964, 7829764, 'US', 'Muscle Shoals', NULL, 'muscle-shoals', 1, '34.7448100000', '-87.6675300000'),
(7079016, 7829764, 'US', 'Myrtlewood', NULL, 'myrtlewood', 1, '32.2504200000', '-87.9497400000'),
(7079053, 7829764, 'US', 'Nanafalia', NULL, 'nanafalia', 1, '32.1129300000', '-87.9880700000'),
(7079067, 7829764, 'US', 'Nances Creek', NULL, 'nances-creek', 1, '33.8578800000', '-85.6569100000'),
(7079080, 7829764, 'US', 'Napier Field', NULL, 'napier-field', 1, '31.3154500000', '-85.4541000000'),
(7079142, 7829764, 'US', 'Natural Bridge', NULL, 'natural-bridge', 1, '34.0934400000', '-87.6019700000'),
(7079154, 7829764, 'US', 'Nauvoo', NULL, 'nauvoo', 1, '33.9895500000', '-87.4889000000'),
(7079226, 7829764, 'US', 'Nectar', NULL, 'nectar', 1, '33.9598200000', '-86.6394400000'),
(7079234, 7829764, 'US', 'Needham', NULL, 'needham', 1, '31.9879300000', '-88.3366900000'),
(7079423, 7829764, 'US', 'New Brockton', NULL, 'new-brockton', 1, '31.3857200000', '-85.9293900000'),
(7079630, 7829764, 'US', 'New Hope', NULL, 'new-hope', 1, '34.5371200000', '-86.3942600000'),
(7079916, 7829764, 'US', 'New Market', NULL, 'new-market', 1, '34.9100300000', '-86.4277900000'),
(7080080, 7829764, 'US', 'New Site', NULL, 'new-site', 1, '33.0373400000', '-85.7741300000'),
(7080144, 7829764, 'US', 'Newbern', NULL, 'newbern', 1, '32.5931900000', '-87.5327800000'),
(7080193, 7829764, 'US', 'Newton', NULL, 'newton', 1, '31.3351700000', '-85.6052100000'),
(7080208, 7829764, 'US', 'Newville', NULL, 'newville', 1, '31.4218400000', '-85.3377100000'),
(7080395, 7829764, 'US', 'North Bibb', NULL, 'north-bibb', 1, '33.2040100000', '-87.1530500000'),
(7080417, 7829764, 'US', 'North Courtland', NULL, 'north-courtland', 1, '34.6723100000', '-87.3297400000'),
(7080476, 7829764, 'US', 'North Johns', NULL, 'north-johns', 1, '33.3673300000', '-87.1036100000'),
(7080555, 7829764, 'US', 'Northport', NULL, 'northport', 1, '33.2290100000', '-87.5772300000'),
(7080646, 7829764, 'US', 'Notasulga', NULL, 'notasulga', 1, '32.5606900000', '-85.6724500000'),
(7080754, 7829764, 'US', 'Oak Grove', NULL, 'oak-grove', 1, '33.1917800000', '-86.2994200000'),
(7081047, 7829764, 'US', 'Oak Hill', NULL, 'oak-hill', 1, '31.9218600000', '-87.0834900000'),
(7081082, 7829764, 'US', 'Oakman', NULL, 'oakman', 1, '33.7134400000', '-87.3886200000'),
(7081166, 7829764, 'US', 'Odenville', NULL, 'odenville', 1, '33.6773200000', '-86.3966500000'),
(7081197, 7829764, 'US', 'Ohatchee', NULL, 'ohatchee', 1, '33.7834300000', '-86.0024700000'),
(7081643, 7829764, 'US', 'Onycha', NULL, 'onycha', 1, '31.2140600000', '-86.2832800000'),
(7081644, 7829764, 'US', 'Opelika', NULL, 'opelika', 1, '32.6454100000', '-85.3782800000'),
(7081671, 7829764, 'US', 'Oneonta', NULL, 'oneonta', 1, '33.9481500000', '-86.4727600000'),
(7081683, 7829764, 'US', 'Opp', NULL, 'opp', 1, '31.2826700000', '-86.2555100000'),
(7081696, 7829764, 'US', 'Orange Beach', NULL, 'orange-beach', 1, '30.2943700000', '-87.5735900000'),
(7081740, 7829764, 'US', 'Orrville', NULL, 'orrville', 1, '32.3062500000', '-87.2455500000'),
(7081816, 7829764, 'US', 'Our Town', NULL, 'our-town', 1, '32.8281800000', '-85.9619100000'),
(7081904, 7829764, 'US', 'Owens Cross Roads', NULL, 'owens-cross-roads', 1, '34.5881500000', '-86.4588800000'),
(7081914, 7829764, 'US', 'Oxford', NULL, 'oxford', 1, '33.6142700000', '-85.8349600000'),
(7081936, 7829764, 'US', 'Ozark', NULL, 'ozark', 1, '31.4590600000', '-85.6404900000'),
(7081981, 7829764, 'US', 'Paint Rock', NULL, 'paint-rock', 1, '34.6606400000', '-86.3288700000'),
(7082061, 7829764, 'US', 'Panola', NULL, 'panola', 1, '32.9506800000', '-88.2689200000'),
(7082250, 7829764, 'US', 'Parrish', NULL, 'parrish', 1, '33.7306600000', '-87.2844500000'),
(7082569, 7829764, 'US', 'Pelham', NULL, 'pelham', 1, '33.2856700000', '-86.8099900000'),
(7082589, 7829764, 'US', 'Pell City', NULL, 'pell-city', 1, '33.5862100000', '-86.2860900000'),
(7082633, 7829764, 'US', 'Pennington', NULL, 'pennington', 1, '32.2070900000', '-88.0561300000'),
(7082665, 7829764, 'US', 'Penton', NULL, 'penton', 1, '33.0065100000', '-85.4655100000'),
(7082688, 7829764, 'US', 'Perdido Beach', NULL, 'perdido-beach', 1, '30.3407600000', '-87.5049800000'),
(7082804, 7829764, 'US', 'Peterman', NULL, 'peterman', 1, '31.5846000000', '-87.2594300000'),
(7082833, 7829764, 'US', 'Petrey', NULL, 'petrey', 1, '31.8487600000', '-86.2077400000'),
(7082866, 7829764, 'US', 'Phenix City', NULL, 'phenix-city', 1, '32.4709800000', '-85.0007700000'),
(7082869, 7829764, 'US', 'Phil Campbell', NULL, 'phil-campbell', 1, '34.3509300000', '-87.7064200000'),
(7082983, 7829764, 'US', 'Pickensville', NULL, 'pickensville', 1, '33.2273400000', '-88.2664200000'),
(7083004, 7829764, 'US', 'Piedmont', NULL, 'piedmont', 1, '33.9245500000', '-85.6113500000'),
(7083073, 7829764, 'US', 'Pike Road', NULL, 'pike-road', 1, '32.2843100000', '-86.1030200000'),
(7083181, 7829764, 'US', 'Pinckard', NULL, 'pinckard', 1, '31.3115600000', '-85.5529900000'),
(7083190, 7829764, 'US', 'Pine Apple', NULL, 'pine-apple', 1, '31.8734200000', '-86.9892200000'),
(7083370, 7829764, 'US', 'Pine Hill', NULL, 'pine-hill', 1, '31.9795900000', '-87.5880600000'),
(7083414, 7829764, 'US', 'Pine Level', NULL, 'pine-level', 1, '32.5837400000', '-86.4655300000'),
(7083461, 7829764, 'US', 'Pine Ridge', NULL, 'pine-ridge', 1, '34.4395300000', '-85.7844100000'),
(7083697, 7829764, 'US', 'Pinson', NULL, 'pinson', 1, '33.6889900000', '-86.6833200000'),
(7083725, 7829764, 'US', 'Pisgah', NULL, 'pisgah', 1, '34.6809200000', '-85.8477500000'),
(7083844, 7829764, 'US', 'Pleasant Grove', NULL, 'pleasant-grove', 1, '34.9436900000', '-85.9216500000'),
(7084324, 7829764, 'US', 'Point Clear', NULL, 'point-clear', 1, '30.4740800000', '-87.9191600000'),
(7084382, 7829764, 'US', 'Pollard', NULL, 'pollard', 1, '31.0271300000', '-87.1735800000'),
(7084691, 7829764, 'US', 'Powell', NULL, 'powell', 1, '34.5318300000', '-85.8945500000'),
(7084796, 7829764, 'US', 'Prattville', NULL, 'prattville', 1, '32.4640200000', '-86.4597000000'),
(7084883, 7829764, 'US', 'Priceville', NULL, 'priceville', 1, '34.5250900000', '-86.8947300000'),
(7084888, 7829764, 'US', 'Prichard', NULL, 'prichard', 1, '30.7388000000', '-88.0788900000'),
(7085003, 7829764, 'US', 'Providence', NULL, 'providence', 1, '32.3418100000', '-87.7805700000'),
(7085190, 7829764, 'US', 'Putnam', NULL, 'putnam', 1, '32.0226500000', '-88.0314000000'),
(7085311, 7829764, 'US', 'Ragland', NULL, 'ragland', 1, '33.7445400000', '-86.1558100000'),
(7085336, 7829764, 'US', 'Rainbow City', NULL, 'rainbow-city', 1, '33.9548200000', '-86.0419200000'),
(7085373, 7829764, 'US', 'Rainsville', NULL, 'rainsville', 1, '34.4942500000', '-85.8477500000'),
(7085416, 7829764, 'US', 'Ranburne', NULL, 'ranburne', 1, '33.5228900000', '-85.3446700000'),
(7085474, 7829764, 'US', 'Ray', NULL, 'ray', 1, '32.8873500000', '-86.0377400000'),
(7085521, 7829764, 'US', 'Red Bay', NULL, 'red-bay', 1, '34.4398200000', '-88.1408700000'),
(7085582, 7829764, 'US', 'Red Level', NULL, 'red-level', 1, '31.4071100000', '-86.6121900000'),
(7085659, 7829764, 'US', 'Reece City', NULL, 'reece-city', 1, '34.0723200000', '-86.0333100000'),
(7085711, 7829764, 'US', 'Reeltown', NULL, 'reeltown', 1, '32.6037400000', '-85.8052400000'),
(7085739, 7829764, 'US', 'Reform', NULL, 'reform', 1, '33.3784500000', '-88.0153000000'),
(7085771, 7829764, 'US', 'Rehobeth', NULL, 'rehobeth', 1, '31.1229600000', '-85.4527100000'),
(7085852, 7829764, 'US', 'Repton', NULL, 'repton', 1, '31.4090600000', '-87.2391500000'),
(7086082, 7829764, 'US', 'Ridgeville', NULL, 'ridgeville', 1, '34.0556500000', '-86.1022000000'),
(7086224, 7829764, 'US', 'Riverside', NULL, 'riverside', 1, '33.6062100000', '-86.2044200000'),
(7086254, 7829764, 'US', 'Riverview', NULL, 'riverview', 1, '31.0604600000', '-87.0599700000'),
(7086277, 7829764, 'US', 'River Falls', NULL, 'river-falls', 1, '31.3532700000', '-86.5410200000'),
(7086285, 7829764, 'US', 'Roanoke', NULL, 'roanoke', 1, '33.1512300000', '-85.3721700000'),
(7086363, 7829764, 'US', 'Robertsdale', NULL, 'robertsdale', 1, '30.5538000000', '-87.7119300000'),
(7086500, 7829764, 'US', 'Rock Creek', NULL, 'rock-creek', 1, '33.4770500000', '-87.0802700000'),
(7086552, 7829764, 'US', 'Rock Mills', NULL, 'rock-mills', 1, '33.1598400000', '-85.2874500000'),
(7086637, 7829764, 'US', 'Rockford', NULL, 'rockford', 1, '32.8895700000', '-86.2196900000'),
(7086661, 7829764, 'US', 'Rockville', NULL, 'rockville', 1, '31.4201700000', '-87.8425000000'),
(7086921, 7829764, 'US', 'Rogersville', NULL, 'rogersville', 1, '34.8257800000', '-87.2967600000'),
(7087004, 7829764, 'US', 'Rosa', NULL, 'rosa', 1, '33.9906500000', '-86.5133200000'),
(7087313, 7829764, 'US', 'Russellville', NULL, 'russellville', 1, '34.5078700000', '-87.7286400000'),
(7087350, 7829764, 'US', 'Rutledge', NULL, 'rutledge', 1, '31.7304300000', '-86.3096800000'),
(7087519, 7829764, 'US', 'St. Florian', NULL, 'st-florian', 1, '34.8734200000', '-87.6233600000'),
(7088087, 7829764, 'US', 'Saint Stephens', NULL, 'saint-stephens', 1, '31.5398000000', '-88.0546300000'),
(7088146, 7829764, 'US', 'Saks', NULL, 'saks', 1, '33.6987100000', '-85.8396900000'),
(7088360, 7829764, 'US', 'Samson', NULL, 'samson', 1, '31.1129500000', '-86.0460500000'),
(7088458, 7829764, 'US', 'Sand Rock', NULL, 'sand-rock', 1, '34.2428700000', '-85.7685800000'),
(7088594, 7829764, 'US', 'Sanford', NULL, 'sanford', 1, '31.2982300000', '-86.3891200000'),
(7088628, 7829764, 'US', 'Saraland', NULL, 'saraland', 1, '30.8207400000', '-88.0705600000'),
(7088704, 7829764, 'US', 'Sardis City', NULL, 'sardis-city', 1, '34.1742600000', '-86.1227500000'),
(7088737, 7829764, 'US', 'Satsuma', NULL, 'satsuma', 1, '30.8532400000', '-88.0561100000'),
(7088916, 7829764, 'US', 'Scottsboro', NULL, 'scottsboro', 1, '34.6723100000', '-86.0341500000'),
(7089040, 7829764, 'US', 'Section', NULL, 'section', 1, '34.5789700000', '-85.9866400000'),
(7089114, 7829764, 'US', 'Selma', NULL, 'selma', 1, '32.4073600000', '-87.0211000000'),
(7089148, 7829764, 'US', 'Semmes', NULL, 'semmes', 1, '30.7782400000', '-88.2591700000'),
(7089536, 7829764, 'US', 'Sheffield', NULL, 'sheffield', 1, '34.7650900000', '-87.6986400000'),
(7089549, 7829764, 'US', 'Shelby', NULL, 'shelby', 1, '33.1104000000', '-86.5841500000'),
(7089709, 7829764, 'US', 'Shiloh', NULL, 'shiloh', 1, '34.4625900000', '-85.8796900000'),
(7090008, 7829764, 'US', 'Shorter', NULL, 'shorter', 1, '32.3948600000', '-85.9169000000'),
(7090084, 7829764, 'US', 'Silas', NULL, 'silas', 1, '31.7654300000', '-88.3291800000'),
(7090139, 7829764, 'US', 'Silverhill', NULL, 'silverhill', 1, '30.5454700000', '-87.7516600000'),
(7090208, 7829764, 'US', 'Sims Chapel', NULL, 'sims-chapel', 1, '31.2196200000', '-88.1486200000'),
(7090262, 7829764, 'US', 'Sipsey', NULL, 'sipsey', 1, '33.8248300000', '-87.0861100000'),
(7090386, 7829764, 'US', 'Skyline', NULL, 'skyline', 1, '34.8139700000', '-86.1152600000'),
(7090470, 7829764, 'US', 'Slocomb', NULL, 'slocomb', 1, '31.1082300000', '-85.5943800000'),
(7090684, 7829764, 'US', 'Smiths Station', NULL, 'smiths-station', 1, '32.5401400000', '-85.0985500000'),
(7090700, 7829764, 'US', 'Smoke Rise', NULL, 'smoke-rise', 1, '33.8917700000', '-86.8202700000'),
(7090747, 7829764, 'US', 'Snead', NULL, 'snead', 1, '34.1195400000', '-86.3955400000'),
(7090853, 7829764, 'US', 'Somerville', NULL, 'somerville', 1, '34.4733800000', '-86.7987000000'),
(7091006, 7829764, 'US', 'South Vinemont', NULL, 'south-vinemont', 1, '34.2389900000', '-86.8644500000'),
(7091058, 7829764, 'US', 'Southside', NULL, 'southside', 1, '33.9245400000', '-86.0224700000'),
(7091136, 7829764, 'US', 'Spanish Fort', NULL, 'spanish-fort', 1, '30.6749100000', '-87.9152700000'),
(7091338, 7829764, 'US', 'Spring Garden', NULL, 'spring-garden', 1, '33.9728800000', '-85.5538500000'),
(7091542, 7829764, 'US', 'Springville', NULL, 'springville', 1, '33.7750500000', '-86.4719100000'),
(7091553, 7829764, 'US', 'Spruce Pine', NULL, 'spruce-pine', 1, '34.3920400000', '-87.7264200000'),
(7091611, 7829764, 'US', 'Standing Rock', NULL, 'standing-rock', 1, '33.0798400000', '-85.2530000000'),
(7091755, 7829764, 'US', 'Steele', NULL, 'steele', 1, '33.9398200000', '-86.2016400000'),
(7091847, 7829764, 'US', 'Sterrett', NULL, 'sterrett', 1, '33.4487200000', '-86.4799800000'),
(7091859, 7829764, 'US', 'Stevenson', NULL, 'stevenson', 1, '34.8686900000', '-85.8394200000'),
(7091923, 7829764, 'US', 'Stewartville', NULL, 'stewartville', 1, '33.0792900000', '-86.2444200000'),
(7092267, 7829764, 'US', 'Sulligent', NULL, 'sulligent', 1, '33.9017700000', '-88.1344800000'),
(7092333, 7829764, 'US', 'Sumiton', NULL, 'sumiton', 1, '33.7556600000', '-87.0500000000'),
(7092347, 7829764, 'US', 'Summerdale', NULL, 'summerdale', 1, '30.4877000000', '-87.6997100000'),
(7092589, 7829764, 'US', 'Sweet Water', NULL, 'sweet-water', 1, '32.0973700000', '-87.8675100000'),
(7092671, 7829764, 'US', 'Sylacauga', NULL, 'sylacauga', 1, '33.1731700000', '-86.2516400000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7092689, 7829764, 'US', 'Sylvan Springs', NULL, 'sylvan-springs', 1, '33.5156600000', '-87.0149900000'),
(7092692, 7829764, 'US', 'Sylvania', NULL, 'sylvania', 1, '34.5623100000', '-85.8124700000'),
(7092788, 7829764, 'US', 'Talladega', NULL, 'talladega', 1, '33.4359400000', '-86.1058000000'),
(7092817, 7829764, 'US', 'Talladega Springs', NULL, 'talladega-springs', 1, '33.1215100000', '-86.4433100000'),
(7092853, 7829764, 'US', 'Tallassee', NULL, 'tallassee', 1, '32.5359700000', '-85.8932900000'),
(7092970, 7829764, 'US', 'Tarrant', NULL, 'tarrant', 1, '33.5834400000', '-86.7727700000'),
(7093048, 7829764, 'US', 'Taylor', NULL, 'taylor', 1, '31.1649000000', '-85.4682700000'),
(7093399, 7829764, 'US', 'Theodore', NULL, 'theodore', 1, '30.5476900000', '-88.1752800000'),
(7093487, 7829764, 'US', 'Thomaston', NULL, 'thomaston', 1, '32.2666700000', '-87.6254600000'),
(7093488, 7829764, 'US', 'Thomasville', NULL, 'thomasville', 1, '31.9134900000', '-87.7358400000'),
(7093619, 7829764, 'US', 'Thorsby', NULL, 'thorsby', 1, '32.9156800000', '-86.7158200000'),
(7093697, 7829764, 'US', 'Tibbie', NULL, 'tibbie', 1, '31.3621100000', '-88.2486200000'),
(7093753, 7829764, 'US', 'Tillmans Corner', NULL, 'tillmans-corner', 1, '30.5901900000', '-88.1708400000'),
(7093897, 7829764, 'US', 'Town Creek', NULL, 'town-creek', 1, '34.6812000000', '-87.4061300000'),
(7093954, 7829764, 'US', 'Toxey', NULL, 'toxey', 1, '31.9129300000', '-88.3094600000'),
(7093961, 7829764, 'US', 'Trafford', NULL, 'trafford', 1, '33.8181600000', '-86.7427700000'),
(7094025, 7829764, 'US', 'Triana', NULL, 'triana', 1, '34.5862000000', '-86.7333300000'),
(7094048, 7829764, 'US', 'Trinity', NULL, 'trinity', 1, '34.6067600000', '-87.0883500000'),
(7094163, 7829764, 'US', 'Troy', NULL, 'troy', 1, '31.8087700000', '-85.9699500000'),
(7094212, 7829764, 'US', 'Trussville', NULL, 'trussville', 1, '33.6198300000', '-86.6088800000'),
(7094455, 7829764, 'US', 'Tuscaloosa', NULL, 'tuscaloosa', 1, '33.2098400000', '-87.5691700000'),
(7094484, 7829764, 'US', 'Tuscumbia', NULL, 'tuscumbia', 1, '34.7312000000', '-87.7025300000'),
(7094490, 7829764, 'US', 'Tuskegee', NULL, 'tuskegee', 1, '32.4241500000', '-85.6909600000'),
(7094655, 7829764, 'US', 'Union', NULL, 'union', 1, '32.9881800000', '-87.9150200000'),
(7094803, 7829764, 'US', 'Union Grove', NULL, 'union-grove', 1, '34.4017600000', '-86.4491500000'),
(7094975, 7829764, 'US', 'Union Springs', NULL, 'union-springs', 1, '32.1443200000', '-85.7149500000'),
(7094997, 7829764, 'US', 'Uniontown', NULL, 'uniontown', 1, '32.4495800000', '-87.5141700000'),
(7095185, 7829764, 'US', 'Uriah', NULL, 'uriah', 1, '31.3051700000', '-87.5022100000'),
(7095186, 7829764, 'US', 'Valley', NULL, 'valley', 1, '32.8187400000', '-85.1793900000'),
(7095213, 7829764, 'US', 'Valley Grande', NULL, 'valley-grande', 1, '32.5090200000', '-86.9874900000'),
(7095233, 7829764, 'US', 'Valley Head', NULL, 'valley-head', 1, '34.5689700000', '-85.6149700000'),
(7095288, 7829764, 'US', 'Vandiver', NULL, 'vandiver', 1, '33.4706600000', '-86.5133200000'),
(7095294, 7829764, 'US', 'Vance', NULL, 'vance', 1, '33.1742800000', '-87.2336100000'),
(7095392, 7829764, 'US', 'Vernon', NULL, 'vernon', 1, '33.7570500000', '-88.1089200000'),
(7095415, 7829764, 'US', 'Vestavia Hills', NULL, 'vestavia-hills', 1, '33.4487200000', '-86.7877700000'),
(7095516, 7829764, 'US', 'Vina', NULL, 'vina', 1, '34.3764900000', '-88.0586500000'),
(7095522, 7829764, 'US', 'Vincent', NULL, 'vincent', 1, '33.3845500000', '-86.4119200000'),
(7095536, 7829764, 'US', 'Vinegar Bend', NULL, 'vinegar-bend', 1, '31.2637800000', '-88.3447400000'),
(7095595, 7829764, 'US', 'Vredenburgh', NULL, 'vredenburgh', 1, '31.8284900000', '-87.3216600000'),
(7096021, 7829764, 'US', 'Wadley', NULL, 'wadley', 1, '33.1228900000', '-85.5696800000'),
(7096076, 7829764, 'US', 'Waldo', NULL, 'waldo', 1, '33.3803900000', '-86.0269100000'),
(7096248, 7829764, 'US', 'Walnut Grove', NULL, 'walnut-grove', 1, '34.0656500000', '-86.3063700000'),
(7096404, 7829764, 'US', 'Warrior', NULL, 'warrior', 1, '33.8142700000', '-86.8094400000'),
(7096497, 7829764, 'US', 'Waterloo', NULL, 'waterloo', 1, '34.9181400000', '-88.0642000000'),
(7096607, 7829764, 'US', 'Waverly', NULL, 'waverly', 1, '32.7354100000', '-85.5791200000'),
(7096645, 7829764, 'US', 'Weaver', NULL, 'weaver', 1, '33.7520500000', '-85.8113500000'),
(7096678, 7829764, 'US', 'Webb', NULL, 'webb', 1, '31.2604500000', '-85.2732700000'),
(7096712, 7829764, 'US', 'Wedowee', NULL, 'wedowee', 1, '33.3090000000', '-85.4846700000'),
(7096863, 7829764, 'US', 'Weogufka', NULL, 'weogufka', 1, '33.0165100000', '-86.3122000000'),
(7096956, 7829764, 'US', 'West Blocton', NULL, 'west-blocton', 1, '33.1181700000', '-87.1250000000'),
(7097071, 7829764, 'US', 'West Jefferson', NULL, 'west-jefferson', 1, '33.6492700000', '-87.0686100000'),
(7097095, 7829764, 'US', 'West Point', NULL, 'west-point', 1, '34.2387100000', '-86.9591700000'),
(7097206, 7829764, 'US', 'Weston', NULL, 'weston', 1, '34.1598200000', '-88.0319800000'),
(7097211, 7829764, 'US', 'Westover', NULL, 'westover', 1, '33.3495500000', '-86.5358200000'),
(7097257, 7829764, 'US', 'Wetumpka', NULL, 'wetumpka', 1, '32.5437400000', '-86.2119100000'),
(7097283, 7829764, 'US', 'Whatley', NULL, 'whatley', 1, '31.6507100000', '-87.7050000000'),
(7097406, 7829764, 'US', 'White Hall', NULL, 'white-hall', 1, '32.3270800000', '-86.7119200000'),
(7097459, 7829764, 'US', 'White Plains', NULL, 'white-plains', 1, '33.7473200000', '-85.6891300000'),
(7097588, 7829764, 'US', 'Whitesboro', NULL, 'whitesboro', 1, '34.1634300000', '-86.0694200000'),
(7098005, 7829764, 'US', 'Wilmer', NULL, 'wilmer', 1, '30.8232400000', '-88.3614000000'),
(7098110, 7829764, 'US', 'Wilsonville', NULL, 'wilsonville', 1, '33.2342800000', '-86.4835900000'),
(7098161, 7829764, 'US', 'Winfield', NULL, 'winfield', 1, '33.9289900000', '-87.8172500000'),
(7098388, 7829764, 'US', 'Woodland', NULL, 'woodland', 1, '32.5298600000', '-85.7727300000'),
(7098518, 7829764, 'US', 'Woodstock', NULL, 'woodstock', 1, '33.2067800000', '-87.1500000000'),
(7098527, 7829764, 'US', 'Woodville', NULL, 'woodville', 1, '34.6278700000', '-86.2744300000'),
(7098720, 7829764, 'US', 'Yellow Bluff', NULL, 'yellow-bluff', 1, '31.9676500000', '-87.4680500000'),
(7098776, 7829764, 'US', 'York', NULL, 'york', 1, '32.4862500000', '-88.2964200000'),
(7099116, 7099753, 'US', 'Adona', NULL, 'adona', 1, '35.0381400000', '-92.8979500000'),
(7099194, 7099753, 'US', 'Alexander', NULL, 'alexander', 1, '34.6295400000', '-92.4412700000'),
(7099224, 7099753, 'US', 'Alicia', NULL, 'alicia', 1, '35.8931300000', '-91.0829000000'),
(7099293, 7099753, 'US', 'Allport', NULL, 'allport', 1, '34.5420400000', '-91.7840200000'),
(7099296, 7099753, 'US', 'Alma', NULL, 'alma', 1, '35.4778700000', '-94.2218800000'),
(7099313, 7099753, 'US', 'Almyra', NULL, 'almyra', 1, '34.4062100000', '-91.4095700000'),
(7099318, 7099753, 'US', 'Alpena', NULL, 'alpena', 1, '36.2947900000', '-93.2921300000'),
(7099347, 7099753, 'US', 'Altheimer', NULL, 'altheimer', 1, '34.3192600000', '-91.8473600000'),
(7099350, 7099753, 'US', 'Altus', NULL, 'altus', 1, '35.4462000000', '-93.7624200000'),
(7099369, 7099753, 'US', 'Amagon', NULL, 'amagon', 1, '35.5620200000', '-91.1104000000'),
(7099390, 7099753, 'US', 'Amity', NULL, 'amity', 1, '34.2648200000', '-93.4610200000'),
(7099489, 7099753, 'US', 'Anthonyville', NULL, 'anthonyville', 1, '35.0395400000', '-90.3409300000'),
(7099573, 7099753, 'US', 'Antoine', NULL, 'antoine', 1, '34.0362200000', '-93.4207300000'),
(7099647, 7099753, 'US', 'Arkadelphia', NULL, 'arkadelphia', 1, '34.1209300000', '-93.0537800000'),
(7099673, 7099753, 'US', 'Arkansas City', NULL, 'arkansas-city', 1, '33.6087200000', '-91.2067800000'),
(7099837, 7099753, 'US', 'Ash Flat', NULL, 'ash-flat', 1, '36.2239600000', '-91.6084800000'),
(7099852, 7099753, 'US', 'Ashdown', NULL, 'ashdown', 1, '33.6742900000', '-94.1313100000'),
(7099932, 7099753, 'US', 'Atkins', NULL, 'atkins', 1, '35.2464700000', '-92.9365600000'),
(7099952, 7099753, 'US', 'Augusta', NULL, 'augusta', 1, '35.2823100000', '-91.3654100000'),
(7099974, 7099753, 'US', 'Austin', NULL, 'austin', 1, '34.9984200000', '-91.9837600000'),
(7100003, 7099753, 'US', 'Aubrey', NULL, 'aubrey', 1, '34.7167600000', '-90.9003900000'),
(7100008, 7099753, 'US', 'Avoca', NULL, 'avoca', 1, '36.4020200000', '-94.0707600000'),
(7100028, 7099753, 'US', 'Avilla', NULL, 'avilla', 1, '34.6825900000', '-92.5851600000'),
(7100170, 7099753, 'US', 'Bald Knob', NULL, 'bald-knob', 1, '35.3098100000', '-91.5679100000'),
(7100255, 7099753, 'US', 'Banks', NULL, 'banks', 1, '33.5748300000', '-92.2690300000'),
(7100348, 7099753, 'US', 'Barling', NULL, 'barling', 1, '35.3256500000', '-94.3016000000'),
(7100496, 7099753, 'US', 'Bassett', NULL, 'bassett', 1, '35.5364700000', '-90.1267600000'),
(7100525, 7099753, 'US', 'Batesville', NULL, 'batesville', 1, '35.7698000000', '-91.6409700000'),
(7100574, 7099753, 'US', 'Bauxite', NULL, 'bauxite', 1, '34.5556500000', '-92.5212700000'),
(7100592, 7099753, 'US', 'Bay', NULL, 'bay', 1, '35.7423000000', '-90.5623300000'),
(7100808, 7099753, 'US', 'Bearden', NULL, 'bearden', 1, '33.7245500000', '-92.6157100000'),
(7100856, 7099753, 'US', 'Beaver', NULL, 'beaver', 1, '36.4736800000', '-93.7674200000'),
(7100984, 7099753, 'US', 'Beebe', NULL, 'beebe', 1, '35.0706400000', '-91.8795900000'),
(7101049, 7099753, 'US', 'Beedeville', NULL, 'beedeville', 1, '35.4289700000', '-91.1098500000'),
(7101114, 7099753, 'US', 'Bella Vista', NULL, 'bella-vista', 1, '36.4807000000', '-94.2713400000'),
(7101133, 7099753, 'US', 'Bellefonte', NULL, 'bellefonte', 1, '36.2009100000', '-93.0485100000'),
(7101139, 7099753, 'US', 'Belleville', NULL, 'belleville', 1, '35.0931500000', '-93.4485200000'),
(7101196, 7099753, 'US', 'Ben Lomond', NULL, 'ben-lomond', 1, '33.8354000000', '-94.1185300000'),
(7101241, 7099753, 'US', 'Benton', NULL, 'benton', 1, '34.5645400000', '-92.5868300000'),
(7101260, 7099753, 'US', 'Bentonville', NULL, 'bentonville', 1, '36.3728500000', '-94.2088200000'),
(7101279, 7099753, 'US', 'Bergman', NULL, 'bergman', 1, '36.3161800000', '-93.0076700000'),
(7101309, 7099753, 'US', 'Berryville', NULL, 'berryville', 1, '36.3647900000', '-93.5679700000'),
(7101456, 7099753, 'US', 'Bethel Heights', NULL, 'bethel-heights', 1, '36.2142400000', '-94.1293700000'),
(7101759, 7099753, 'US', 'Big Flat', NULL, 'big-flat', 1, '36.0050700000', '-92.4043300000'),
(7101907, 7099753, 'US', 'Bigelow', NULL, 'bigelow', 1, '35.0012000000', '-92.6298800000'),
(7101909, 7099753, 'US', 'Biggers', NULL, 'biggers', 1, '36.3325600000', '-90.8062300000'),
(7101970, 7099753, 'US', 'Birdsong', NULL, 'birdsong', 1, '35.4584200000', '-90.2626000000'),
(7101989, 7099753, 'US', 'Biscoe', NULL, 'biscoe', 1, '34.8209300000', '-91.4043000000'),
(7102065, 7099753, 'US', 'Black Oak', NULL, 'black-oak', 1, '35.8389600000', '-90.3681600000'),
(7102088, 7099753, 'US', 'Black Rock', NULL, 'black-rock', 1, '36.1084000000', '-91.0973500000'),
(7102096, 7099753, 'US', 'Black Springs', NULL, 'black-springs', 1, '34.4612100000', '-93.7126900000'),
(7102238, 7099753, 'US', 'Blevins', NULL, 'blevins', 1, '33.8717800000', '-93.5771200000'),
(7102305, 7099753, 'US', 'Blue Eye', NULL, 'blue-eye', 1, '36.4978400000', '-93.3979600000'),
(7102362, 7099753, 'US', 'Blue Mountain', NULL, 'blue-mountain', 1, '35.1303700000', '-93.7115800000'),
(7102380, 7099753, 'US', 'Bluff City', NULL, 'bluff-city', 1, '33.7184400000', '-93.1340600000'),
(7102412, 7099753, 'US', 'Blytheville', NULL, 'blytheville', 1, '35.9273000000', '-89.9189800000'),
(7102466, 7099753, 'US', 'Bodcaw', NULL, 'bodcaw', 1, '33.5584500000', '-93.4071200000'),
(7102553, 7099753, 'US', 'Bonanza', NULL, 'bonanza', 1, '35.2392600000', '-94.4260500000'),
(7102581, 7099753, 'US', 'Bono', NULL, 'bono', 1, '35.9086800000', '-90.8026200000'),
(7102622, 7099753, 'US', 'Booneville', NULL, 'booneville', 1, '35.1400900000', '-93.9215900000'),
(7102782, 7099753, 'US', 'Bradford', NULL, 'bradford', 1, '35.4231400000', '-91.4559600000'),
(7102790, 7099753, 'US', 'Bradley', NULL, 'bradley', 1, '33.0981900000', '-93.6549000000'),
(7102849, 7099753, 'US', 'Branch', NULL, 'branch', 1, '35.3056500000', '-93.9535400000'),
(7102963, 7099753, 'US', 'Briarcliff', NULL, 'briarcliff', 1, '36.2750700000', '-92.2862700000'),
(7103042, 7099753, 'US', 'Brinkley', NULL, 'brinkley', 1, '34.8878700000', '-91.1945700000'),
(7103117, 7099753, 'US', 'Brookland', NULL, 'brookland', 1, '35.9000700000', '-90.5820500000'),
(7103448, 7099753, 'US', 'Bryant', NULL, 'bryant', 1, '34.5959300000', '-92.4890500000'),
(7103554, 7099753, 'US', 'Buckner', NULL, 'buckner', 1, '33.3584600000', '-93.4360100000'),
(7103678, 7099753, 'US', 'Bull Shoals', NULL, 'bull-shoals', 1, '36.3839600000', '-92.5815500000'),
(7103737, 7099753, 'US', 'Burdette', NULL, 'burdette', 1, '35.8173000000', '-89.9392500000'),
(7103957, 7099753, 'US', 'Cabot', NULL, 'cabot', 1, '34.9745300000', '-92.0165300000'),
(7104004, 7099753, 'US', 'Caddo Valley', NULL, 'caddo-valley', 1, '34.1820400000', '-93.0710100000'),
(7104037, 7099753, 'US', 'Caldwell', NULL, 'caldwell', 1, '35.0745400000', '-90.8167800000'),
(7104049, 7099753, 'US', 'Cale', NULL, 'cale', 1, '33.6262300000', '-93.2404500000'),
(7104078, 7099753, 'US', 'Calico Rock', NULL, 'calico-rock', 1, '36.1195100000', '-92.1359900000'),
(7104089, 7099753, 'US', 'Calion', NULL, 'calion', 1, '33.3290100000', '-92.5384900000'),
(7104182, 7099753, 'US', 'Camden', NULL, 'camden', 1, '33.5845600000', '-92.8343300000'),
(7104189, 7099753, 'US', 'Cammack Village', NULL, 'cammack-village', 1, '34.7781500000', '-92.3490400000'),
(7104297, 7099753, 'US', 'Campbell Station', NULL, 'campbell-station', 1, '35.6684100000', '-91.2448500000'),
(7104566, 7099753, 'US', 'Caraway', NULL, 'caraway', 1, '35.7581300000', '-90.3223200000'),
(7104602, 7099753, 'US', 'Carlisle', NULL, 'carlisle', 1, '34.7831500000', '-91.7465200000'),
(7104718, 7099753, 'US', 'Carthage', NULL, 'carthage', 1, '34.0751000000', '-92.5554400000'),
(7104737, 7099753, 'US', 'Casa', NULL, 'casa', 1, '35.0228700000', '-93.0476700000'),
(7104754, 7099753, 'US', 'Cash', NULL, 'cash', 1, '35.7942400000', '-90.9365100000'),
(7104836, 7099753, 'US', 'Caulksville', NULL, 'caulksville', 1, '35.3020300000', '-93.8640900000'),
(7104857, 7099753, 'US', 'Cave City', NULL, 'cave-city', 1, '35.9417400000', '-91.5484700000'),
(7104897, 7099753, 'US', 'Cave Springs', NULL, 'cave-springs', 1, '36.2634100000', '-94.2318700000'),
(7105064, 7099753, 'US', 'Cedarville', NULL, 'cedarville', 1, '35.5698100000', '-94.3668800000'),
(7105138, 7099753, 'US', 'Center Ridge', NULL, 'center-ridge', 1, '35.3739700000', '-92.5629400000'),
(7105168, 7099753, 'US', 'Centerton', NULL, 'centerton', 1, '36.3598000000', '-94.2852100000'),
(7105215, 7099753, 'US', 'Central City', NULL, 'central-city', 1, '35.3192600000', '-94.2521500000'),
(7105377, 7099753, 'US', 'Charleston', NULL, 'charleston', 1, '35.2970400000', '-94.0363200000'),
(7105427, 7099753, 'US', 'Cherokee City', NULL, 'cherokee-city', 1, '36.2984100000', '-94.5777200000'),
(7105435, 7099753, 'US', 'Cherokee Village', NULL, 'cherokee-village', 1, '36.2978400000', '-91.5159700000'),
(7105468, 7099753, 'US', 'Cherry Valley', NULL, 'cherry-valley', 1, '35.4020300000', '-90.7531700000'),
(7105478, 7099753, 'US', 'Chester', NULL, 'chester', 1, '35.6809200000', '-94.1752100000'),
(7105514, 7099753, 'US', 'Chidester', NULL, 'chidester', 1, '33.7023300000', '-93.0204400000'),
(7105824, 7099753, 'US', 'Clarendon', NULL, 'clarendon', 1, '34.6931500000', '-91.3137400000'),
(7105865, 7099753, 'US', 'Clarkedale', NULL, 'clarkedale', 1, '35.3092500000', '-90.2362100000'),
(7105879, 7099753, 'US', 'Clarksville', NULL, 'clarksville', 1, '35.4714700000', '-93.4665700000'),
(7106074, 7099753, 'US', 'Clinton', NULL, 'clinton', 1, '35.5914700000', '-92.4604400000'),
(7106126, 7099753, 'US', 'Coal Hill', NULL, 'coal-hill', 1, '35.4373100000', '-93.6729700000'),
(7106276, 7099753, 'US', 'College City', NULL, 'college-city', 1, '36.1253500000', '-90.9392900000'),
(7106292, 7099753, 'US', 'College Station', NULL, 'college-station', 1, '34.7081500000', '-92.2212600000'),
(7106336, 7099753, 'US', 'Colt', NULL, 'colt', 1, '35.1314800000', '-90.8112200000'),
(7106405, 7099753, 'US', 'Concord', NULL, 'concord', 1, '35.6636900000', '-91.8476400000'),
(7106458, 7099753, 'US', 'Conway', NULL, 'conway', 1, '35.0887000000', '-92.4421000000'),
(7106638, 7099753, 'US', 'Corinth', NULL, 'corinth', 1, '35.0734200000', '-93.4293500000'),
(7106689, 7099753, 'US', 'Corning', NULL, 'corning', 1, '36.4078400000', '-90.5798300000'),
(7106721, 7099753, 'US', 'Cotter', NULL, 'cotter', 1, '36.2711800000', '-92.5354400000'),
(7106733, 7099753, 'US', 'Cotton Plant', NULL, 'cotton-plant', 1, '35.0081500000', '-91.2512400000'),
(7106951, 7099753, 'US', 'Coy', NULL, 'coy', 1, '34.5387100000', '-91.8740300000'),
(7107039, 7099753, 'US', 'Crawfordsville', NULL, 'crawfordsville', 1, '35.2250900000', '-90.3251000000'),
(7107198, 7099753, 'US', 'Crossett', NULL, 'crossett', 1, '33.1281800000', '-91.9612400000'),
(7107437, 7099753, 'US', 'Cushman', NULL, 'cushman', 1, '35.8728500000', '-91.7540300000'),
(7107556, 7099753, 'US', 'Daisy', NULL, 'daisy', 1, '34.2373300000', '-93.7421300000'),
(7107594, 7099753, 'US', 'Damascus', NULL, 'damascus', 1, '35.3673000000', '-92.4096000000'),
(7107630, 7099753, 'US', 'Danville', NULL, 'danville', 1, '35.0539800000', '-93.3935200000'),
(7107641, 7099753, 'US', 'Dardanelle', NULL, 'dardanelle', 1, '35.2231400000', '-93.1579500000'),
(7107674, 7099753, 'US', 'Datto', NULL, 'datto', 1, '36.3917300000', '-90.7309500000'),
(7107802, 7099753, 'US', 'De Queen', NULL, 'de-queen', 1, '34.0378900000', '-94.3413200000'),
(7107820, 7099753, 'US', 'De Valls Bluff', NULL, 'de-valls-bluff', 1, '34.7848200000', '-91.4584600000'),
(7107823, 7099753, 'US', 'De Witt', NULL, 'de-witt', 1, '34.2928800000', '-91.3379000000'),
(7107903, 7099753, 'US', 'Decatur', NULL, 'decatur', 1, '36.3359100000', '-94.4607700000'),
(7107991, 7099753, 'US', 'Delaplaine', NULL, 'delaplaine', 1, '36.2336800000', '-90.7265000000'),
(7107997, 7099753, 'US', 'Delight', NULL, 'delight', 1, '34.0314900000', '-93.5029600000'),
(7108001, 7099753, 'US', 'Dell', NULL, 'dell', 1, '35.8553500000', '-90.0417600000'),
(7108038, 7099753, 'US', 'Dennard', NULL, 'dennard', 1, '35.7567400000', '-92.5246100000'),
(7108043, 7099753, 'US', 'Denning', NULL, 'denning', 1, '35.4292500000', '-93.7571400000'),
(7108090, 7099753, 'US', 'Dermott', NULL, 'dermott', 1, '33.5253900000', '-91.4359500000'),
(7108091, 7099753, 'US', 'Des Arc', NULL, 'des-arc', 1, '34.9770400000', '-91.4951300000'),
(7108167, 7099753, 'US', 'Diamond City', NULL, 'diamond-city', 1, '36.4645100000', '-92.9201700000'),
(7108184, 7099753, 'US', 'Diaz', NULL, 'diaz', 1, '35.6384100000', '-91.2651300000'),
(7108212, 7099753, 'US', 'Dierks', NULL, 'dierks', 1, '34.1192800000', '-94.0165800000'),
(7108849, 7099753, 'US', 'Donaldson', NULL, 'donaldson', 1, '34.2367600000', '-92.9235000000'),
(7108950, 7099753, 'US', 'Dover', NULL, 'dover', 1, '35.4014700000', '-93.1143400000'),
(7109226, 7099753, 'US', 'Dumas', NULL, 'dumas', 1, '33.8870500000', '-91.4917900000'),
(7109338, 7099753, 'US', 'Dyer', NULL, 'dyer', 1, '35.4923100000', '-94.1377100000'),
(7109346, 7099753, 'US', 'Dyess', NULL, 'dyess', 1, '35.5898000000', '-90.2134300000'),
(7109406, 7099753, 'US', 'Earle', NULL, 'earle', 1, '35.2750900000', '-90.4667700000'),
(7109452, 7099753, 'US', 'East End', NULL, 'east-end', 1, '34.5506500000', '-92.3409900000'),
(7109724, 7099753, 'US', 'Edmondson', NULL, 'edmondson', 1, '35.1064800000', '-90.3103800000'),
(7109755, 7099753, 'US', 'Egypt', NULL, 'egypt', 1, '35.8681300000', '-90.9456800000'),
(7109785, 7099753, 'US', 'El Dorado', NULL, 'el-dorado', 1, '33.2076300000', '-92.6662700000'),
(7109800, 7099753, 'US', 'Elaine', NULL, 'elaine', 1, '34.3084400000', '-90.8520500000'),
(7109857, 7099753, 'US', 'Elkins', NULL, 'elkins', 1, '36.0014700000', '-94.0082500000'),
(7109878, 7099753, 'US', 'Salesville', NULL, 'salesville', 1, '36.2453500000', '-92.2651600000'),
(7109927, 7099753, 'US', 'Elm Springs', NULL, 'elm-springs', 1, '36.2061900000', '-94.2343700000'),
(7109968, 7099753, 'US', 'Emerson', NULL, 'emerson', 1, '33.0976300000', '-93.1929400000'),
(7109987, 7099753, 'US', 'Emmet', NULL, 'emmet', 1, '33.7262300000', '-93.4704500000'),
(7110001, 7099753, 'US', 'England', NULL, 'england', 1, '34.5442600000', '-91.9690300000'),
(7110025, 7099753, 'US', 'Enola', NULL, 'enola', 1, '35.1953600000', '-92.2032100000'),
(7110094, 7099753, 'US', 'Etowah', NULL, 'etowah', 1, '35.7289700000', '-90.2323200000'),
(7110100, 7099753, 'US', 'Eudora', NULL, 'eudora', 1, '33.1095700000', '-91.2620600000'),
(7110119, 7099753, 'US', 'Eureka Springs', NULL, 'eureka-springs', 1, '36.4011800000', '-93.7379700000'),
(7110165, 7099753, 'US', 'Evening Shade', NULL, 'evening-shade', 1, '36.0717400000', '-91.6193100000'),
(7110197, 7099753, 'US', 'Everton', NULL, 'everton', 1, '36.1553500000', '-92.9068400000'),
(7110233, 7099753, 'US', 'Fairfield Bay', NULL, 'fairfield-bay', 1, '35.5942400000', '-92.2779300000'),
(7110427, 7099753, 'US', 'Fargo', NULL, 'fargo', 1, '34.9514800000', '-91.1801200000'),
(7110443, 7099753, 'US', 'Farmington', NULL, 'farmington', 1, '36.0420200000', '-94.2471500000'),
(7110486, 7099753, 'US', 'Fayetteville', NULL, 'fayetteville', 1, '36.0625800000', '-94.1574300000'),
(7110518, 7099753, 'US', 'Felsenthal', NULL, 'felsenthal', 1, '33.0595700000', '-92.1568000000'),
(7110598, 7099753, 'US', 'Fifty-Six', NULL, 'fifty-six', 1, '35.9575700000', '-92.2184900000'),
(7111014, 7099753, 'US', 'Fisher', NULL, 'fisher', 1, '35.4914700000', '-90.9742900000'),
(7111212, 7099753, 'US', 'Flippin', NULL, 'flippin', 1, '36.2789600000', '-92.5971100000'),
(7111307, 7099753, 'US', 'Foreman', NULL, 'foreman', 1, '33.7217800000', '-94.3968700000'),
(7111319, 7099753, 'US', 'Fordyce', NULL, 'fordyce', 1, '33.8137200000', '-92.4129300000'),
(7111382, 7099753, 'US', 'Forrest City', NULL, 'forrest-city', 1, '35.0081500000', '-90.7898300000'),
(7111410, 7099753, 'US', 'Fort Smith', NULL, 'fort-smith', 1, '35.3859200000', '-94.3985500000'),
(7111470, 7099753, 'US', 'Fouke', NULL, 'fouke', 1, '33.2612400000', '-93.8854600000'),
(7111479, 7099753, 'US', 'Fountain Hill', NULL, 'fountain-hill', 1, '33.3578900000', '-91.8504100000'),
(7111484, 7099753, 'US', 'Fountain Lake', NULL, 'fountain-lake', 1, '34.5728700000', '-92.9876800000'),
(7111497, 7099753, 'US', 'Fourche', NULL, 'fourche', 1, '34.9939800000', '-92.6210000000'),
(7111592, 7099753, 'US', 'Franklin', NULL, 'franklin', 1, '36.1703500000', '-91.7759800000'),
(7111735, 7099753, 'US', 'Friendship', NULL, 'friendship', 1, '34.2231500000', '-93.0029500000'),
(7111853, 7099753, 'US', 'Fulton', NULL, 'fulton', 1, '33.6145600000', '-93.8135200000'),
(7112036, 7099753, 'US', 'Garfield', NULL, 'garfield', 1, '36.4484100000', '-93.9740900000'),
(7112042, 7099753, 'US', 'Garland', NULL, 'garland', 1, '33.3629000000', '-93.7099000000'),
(7112067, 7099753, 'US', 'Garner', NULL, 'garner', 1, '35.1414800000', '-91.7862500000'),
(7112110, 7099753, 'US', 'Gassville', NULL, 'gassville', 1, '36.2831200000', '-92.4940500000'),
(7112129, 7099753, 'US', 'Gateway', NULL, 'gateway', 1, '36.4903500000', '-93.9318700000'),
(7112163, 7099753, 'US', 'Gentry', NULL, 'gentry', 1, '36.2675800000', '-94.4846600000'),
(7112204, 7099753, 'US', 'Georgetown', NULL, 'georgetown', 1, '35.1270300000', '-91.4551300000'),
(7112254, 7099753, 'US', 'Gibson', NULL, 'gibson', 1, '34.8842600000', '-92.2357000000'),
(7112280, 7099753, 'US', 'Gilbert', NULL, 'gilbert', 1, '35.9878500000', '-92.7162800000'),
(7112321, 7099753, 'US', 'Gillett', NULL, 'gillett', 1, '34.1173200000', '-91.3765100000'),
(7112324, 7099753, 'US', 'Gillham', NULL, 'gillham', 1, '34.1692800000', '-94.3163200000'),
(7112341, 7099753, 'US', 'Gilmore', NULL, 'gilmore', 1, '35.4117500000', '-90.2784300000'),
(7112430, 7099753, 'US', 'Glenwood', NULL, 'glenwood', 1, '34.3267700000', '-93.5507400000'),
(7112638, 7099753, 'US', 'Gosnell', NULL, 'gosnell', 1, '35.9597900000', '-89.9720300000'),
(7112660, 7099753, 'US', 'Goshen', NULL, 'goshen', 1, '36.1011900000', '-93.9913100000'),
(7112662, 7099753, 'US', 'Gould', NULL, 'gould', 1, '33.9851000000', '-91.5609600000'),
(7112712, 7099753, 'US', 'Grady', NULL, 'grady', 1, '34.0801000000', '-91.7006800000'),
(7112765, 7099753, 'US', 'Grannis', NULL, 'grannis', 1, '34.2406700000', '-94.3349300000'),
(7112871, 7099753, 'US', 'Gravel Ridge', NULL, 'gravel-ridge', 1, '34.8684200000', '-92.1907000000'),
(7112898, 7099753, 'US', 'Gravette', NULL, 'gravette', 1, '36.4220200000', '-94.4535500000'),
(7113015, 7099753, 'US', 'Green Forest', NULL, 'green-forest', 1, '36.3353500000', '-93.4360200000'),
(7113067, 7099753, 'US', 'Greenbrier', NULL, 'greenbrier', 1, '35.2339700000', '-92.3876500000'),
(7113113, 7099753, 'US', 'Greenland', NULL, 'greenland', 1, '35.9942500000', '-94.1752000000'),
(7113140, 7099753, 'US', 'Greenway', NULL, 'greenway', 1, '36.3411700000', '-90.2203800000'),
(7113143, 7099753, 'US', 'Greenwood', NULL, 'greenwood', 1, '35.2156500000', '-94.2557700000'),
(7113167, 7099753, 'US', 'Greers Ferry', NULL, 'greers-ferry', 1, '35.5770200000', '-92.1773700000'),
(7113213, 7099753, 'US', 'Griffithville', NULL, 'griffithville', 1, '35.1237000000', '-91.6451300000'),
(7113265, 7099753, 'US', 'Grubbs', NULL, 'grubbs', 1, '35.6498000000', '-91.0740100000'),
(7113292, 7099753, 'US', 'Guion', NULL, 'guion', 1, '35.9253500000', '-91.9407000000'),
(7113366, 7099753, 'US', 'Gum Springs', NULL, 'gum-springs', 1, '34.0673200000', '-93.0918400000'),
(7113407, 7099753, 'US', 'Gurdon', NULL, 'gurdon', 1, '33.9209400000', '-93.1540600000'),
(7113457, 7099753, 'US', 'Hackett', NULL, 'hackett', 1, '35.1903700000', '-94.4110500000'),
(7113467, 7099753, 'US', 'Hagarville', NULL, 'hagarville', 1, '35.5156400000', '-93.3249000000'),
(7113607, 7099753, 'US', 'Hamburg', NULL, 'hamburg', 1, '33.2281800000', '-91.7976300000'),
(7113647, 7099753, 'US', 'Hampton', NULL, 'hampton', 1, '33.5378900000', '-92.4698800000'),
(7113770, 7099753, 'US', 'Hardy', NULL, 'hardy', 1, '36.3159000000', '-91.4826400000'),
(7113878, 7099753, 'US', 'Harrell', NULL, 'harrell', 1, '33.5101100000', '-92.3987600000'),
(7113951, 7099753, 'US', 'Harrisburg', NULL, 'harrisburg', 1, '35.5642500000', '-90.7167800000'),
(7113956, 7099753, 'US', 'Harrison', NULL, 'harrison', 1, '36.2297900000', '-93.1076800000'),
(7113994, 7099753, 'US', 'Hartford', NULL, 'hartford', 1, '35.0228800000', '-94.3813300000'),
(7114001, 7099753, 'US', 'Hartman', NULL, 'hartman', 1, '35.4325800000', '-93.6154700000'),
(7114047, 7099753, 'US', 'Haskell', NULL, 'haskell', 1, '34.5014800000', '-92.6365500000'),
(7114074, 7099753, 'US', 'Hatfield', NULL, 'hatfield', 1, '34.4856600000', '-94.3785500000'),
(7114104, 7099753, 'US', 'Havana', NULL, 'havana', 1, '35.1112000000', '-93.5296300000'),
(7114166, 7099753, 'US', 'Haynes', NULL, 'haynes', 1, '34.8909300000', '-90.7920600000'),
(7114220, 7099753, 'US', 'Hazen', NULL, 'hazen', 1, '34.7809300000', '-91.5809700000'),
(7114225, 7099753, 'US', 'Heber Springs', NULL, 'heber-springs', 1, '35.4914700000', '-92.0312600000'),
(7114243, 7099753, 'US', 'Hector', NULL, 'hector', 1, '35.4673000000', '-92.9748900000'),
(7114272, 7099753, 'US', 'Helena', NULL, 'helena', 1, '34.5295500000', '-90.5917700000'),
(7114368, 7099753, 'US', 'Hensley', NULL, 'hensley', 1, '34.5053700000', '-92.2057000000'),
(7114413, 7099753, 'US', 'Hermitage', NULL, 'hermitage', 1, '33.4465000000', '-92.1740300000'),
(7114553, 7099753, 'US', 'Hickory Ridge', NULL, 'hickory-ridge', 1, '35.3973100000', '-90.9965100000'),
(7114620, 7099753, 'US', 'Higden', NULL, 'higden', 1, '35.5734100000', '-92.2032100000'),
(7114635, 7099753, 'US', 'Higginson', NULL, 'higginson', 1, '35.1948100000', '-91.7126400000'),
(7114673, 7099753, 'US', 'Highland', NULL, 'highland', 1, '36.2759000000', '-91.5240300000'),
(7114693, 7099753, 'US', 'Highfill', NULL, 'highfill', 1, '36.2614700000', '-94.3577100000'),
(7114802, 7099753, 'US', 'Hindsville', NULL, 'hindsville', 1, '36.1442400000', '-93.8621400000'),
(7114830, 7099753, 'US', 'Hiwasse', NULL, 'hiwasse', 1, '36.4317400000', '-94.3338200000'),
(7114930, 7099753, 'US', 'Holiday Island', NULL, 'holiday-island', 1, '36.4853500000', '-93.7321400000'),
(7114945, 7099753, 'US', 'Holland', NULL, 'holland', 1, '35.1714700000', '-92.2737600000'),
(7114992, 7099753, 'US', 'Holly Grove', NULL, 'holly-grove', 1, '34.5959300000', '-91.1998400000'),
(7115181, 7099753, 'US', 'Hope', NULL, 'hope', 1, '33.6670600000', '-93.5915700000'),
(7115281, 7099753, 'US', 'Horatio', NULL, 'horatio', 1, '33.9384500000', '-94.3571500000'),
(7115334, 7099753, 'US', 'Horseshoe Bend', NULL, 'horseshoe-bend', 1, '36.2292300000', '-91.7643100000'),
(7115352, 7099753, 'US', 'Horseshoe Lake', NULL, 'horseshoe-lake', 1, '34.9134300000', '-90.3073200000'),
(7115412, 7099753, 'US', 'Hot Springs', NULL, 'hot-springs', 1, '34.5037000000', '-93.0551800000'),
(7115429, 7099753, 'US', 'Hot Springs Village', NULL, 'hot-springs-village', 1, '34.6720400000', '-92.9987900000'),
(7115450, 7099753, 'US', 'Houston', NULL, 'houston', 1, '35.0334200000', '-92.6946100000'),
(7115508, 7099753, 'US', 'Hoxie', NULL, 'hoxie', 1, '36.0503500000', '-90.9751200000'),
(7115578, 7099753, 'US', 'Hughes', NULL, 'hughes', 1, '34.9492600000', '-90.4714900000'),
(7115608, 7099753, 'US', 'Humnoke', NULL, 'humnoke', 1, '34.5414800000', '-91.7570800000'),
(7115613, 7099753, 'US', 'Humphrey', NULL, 'humphrey', 1, '34.4220400000', '-91.7062400000'),
(7115634, 7099753, 'US', 'Hunter', NULL, 'hunter', 1, '35.0528700000', '-91.1262300000'),
(7115654, 7099753, 'US', 'Huntington', NULL, 'huntington', 1, '35.0823200000', '-94.2632700000'),
(7115658, 7099753, 'US', 'Huntsville', NULL, 'huntsville', 1, '36.0861900000', '-93.7413000000'),
(7115759, 7099753, 'US', 'Huttig', NULL, 'huttig', 1, '33.0395700000', '-92.1826400000'),
(7115796, 7099753, 'US', 'Imboden', NULL, 'imboden', 1, '36.2025700000', '-91.1745700000'),
(7116311, 7099753, 'US', 'Jacksonport', NULL, 'jacksonport', 1, '35.6417500000', '-91.3095700000'),
(7116315, 7099753, 'US', 'Jacksonville', NULL, 'jacksonville', 1, '34.8662000000', '-92.1101500000'),
(7116400, 7099753, 'US', 'Jasper', NULL, 'jasper', 1, '36.0081300000', '-93.1865700000'),
(7116494, 7099753, 'US', 'Jennette', NULL, 'jennette', 1, '35.1664800000', '-90.4045400000'),
(7116519, 7099753, 'US', 'Jericho', NULL, 'jericho', 1, '35.2859200000', '-90.2270400000'),
(7116526, 7099753, 'US', 'Jerome', NULL, 'jerome', 1, '33.3995600000', '-91.4701200000'),
(7116660, 7099753, 'US', 'Johnson', NULL, 'johnson', 1, '36.1328600000', '-94.1654800000'),
(7116746, 7099753, 'US', 'Joiner', NULL, 'joiner', 1, '35.5078600000', '-90.1470400000'),
(7116816, 7099753, 'US', 'Jones Mills', NULL, 'jones-mills', 1, '34.4375900000', '-92.8876700000'),
(7116834, 7099753, 'US', 'Jonesboro', NULL, 'jonesboro', 1, '35.8423000000', '-90.7042800000'),
(7116896, 7099753, 'US', 'Judsonia', NULL, 'judsonia', 1, '35.2700900000', '-91.6398600000'),
(7116918, 7099753, 'US', 'Junction City', NULL, 'junction-city', 1, '33.0162500000', '-92.7243200000'),
(7117286, 7099753, 'US', 'Keiser', NULL, 'keiser', 1, '35.6745200000', '-90.0998100000'),
(7117358, 7099753, 'US', 'Kensett', NULL, 'kensett', 1, '35.2317500000', '-91.6676400000'),
(7117378, 7099753, 'US', 'Keo', NULL, 'keo', 1, '34.6028700000', '-92.0090300000'),
(7117417, 7099753, 'US', 'Kibler', NULL, 'kibler', 1, '35.4303700000', '-94.2316000000'),
(7117552, 7099753, 'US', 'Kingsland', NULL, 'kingsland', 1, '33.8584400000', '-92.2940400000'),
(7117585, 7099753, 'US', 'Kirby', NULL, 'kirby', 1, '34.2503800000', '-93.6413000000'),
(7117643, 7099753, 'US', 'Knobel', NULL, 'knobel', 1, '36.3200600000', '-90.6020600000'),
(7117661, 7099753, 'US', 'Knoxville', NULL, 'knoxville', 1, '35.3820300000', '-93.3643500000'),
(7117725, 7099753, 'US', 'La Grange', NULL, 'la-grange', 1, '34.6564900000', '-90.7328900000'),
(7117784, 7099753, 'US', 'Lafe', NULL, 'lafe', 1, '36.2042300000', '-90.5140000000'),
(7117869, 7099753, 'US', 'Lake City', NULL, 'lake-city', 1, '35.8161900000', '-90.4342700000'),
(7117942, 7099753, 'US', 'Lake Hamilton', NULL, 'lake-hamilton', 1, '34.4245300000', '-93.0951800000'),
(7118121, 7099753, 'US', 'Lake Village', NULL, 'lake-village', 1, '33.3287300000', '-91.2817800000'),
(7118196, 7099753, 'US', 'Lakeview', NULL, 'lakeview', 1, '36.3686800000', '-92.5454400000'),
(7118223, 7099753, 'US', 'Lamar', NULL, 'lamar', 1, '35.4406400000', '-93.3879600000'),
(7118277, 7099753, 'US', 'Landmark', NULL, 'landmark', 1, '34.6112000000', '-92.3196000000'),
(7118450, 7099753, 'US', 'Lavaca', NULL, 'lavaca', 1, '35.3362000000', '-94.1732600000'),
(7118507, 7099753, 'US', 'Leachville', NULL, 'leachville', 1, '35.9359100000', '-90.2578800000'),
(7118513, 7099753, 'US', 'Lead Hill', NULL, 'lead-hill', 1, '36.4197900000', '-92.9148900000'),
(7118678, 7099753, 'US', 'Leola', NULL, 'leola', 1, '34.1695400000', '-92.5909900000'),
(7118687, 7099753, 'US', 'Lepanto', NULL, 'lepanto', 1, '35.6111900000', '-90.3298200000'),
(7118695, 7099753, 'US', 'Leslie', NULL, 'leslie', 1, '35.8303500000', '-92.5579400000'),
(7118711, 7099753, 'US', 'Letona', NULL, 'letona', 1, '35.3617500000', '-91.8293100000'),
(7118755, 7099753, 'US', 'Lewisville', NULL, 'lewisville', 1, '33.3584600000', '-93.5776800000'),
(7118826, 7099753, 'US', 'Lexa', NULL, 'lexa', 1, '34.5978800000', '-90.7523300000'),
(7118981, 7099753, 'US', 'Lincoln', NULL, 'lincoln', 1, '35.9495300000', '-94.4235500000'),
(7119245, 7099753, 'US', 'Little Flock', NULL, 'little-flock', 1, '36.3859100000', '-94.1352000000'),
(7119403, 7099753, 'US', 'Little Rock', NULL, 'little-rock', 1, '34.7464800000', '-92.2895900000'),
(7119512, 7099753, 'US', 'Lockesburg', NULL, 'lockesburg', 1, '33.9673400000', '-94.1685300000'),
(7119617, 7099753, 'US', 'London', NULL, 'london', 1, '35.3289700000', '-93.2529600000'),
(7119817, 7099753, 'US', 'Lonoke', NULL, 'lonoke', 1, '34.7839800000', '-91.8998600000'),
(7119835, 7099753, 'US', 'Lonsdale', NULL, 'lonsdale', 1, '34.5445400000', '-92.8082200000'),
(7119864, 7099753, 'US', 'Lost Bridge Village', NULL, 'lost-bridge-village', 1, '36.3884100000', '-93.9068600000'),
(7119911, 7099753, 'US', 'Louann', NULL, 'louann', 1, '33.3909600000', '-92.7918300000'),
(7119972, 7099753, 'US', 'Lowell', NULL, 'lowell', 1, '36.2553500000', '-94.1307600000'),
(7120104, 7099753, 'US', 'Luxora', NULL, 'luxora', 1, '35.7561900000', '-89.9281400000'),
(7120117, 7099753, 'US', 'Lynn', NULL, 'lynn', 1, '36.0072900000', '-91.2523500000'),
(7120274, 7099753, 'US', 'Madison', NULL, 'madison', 1, '35.0131500000', '-90.7226100000'),
(7120286, 7099753, 'US', 'Magazine', NULL, 'magazine', 1, '35.1509200000', '-93.8068700000'),
(7120302, 7099753, 'US', 'Magness', NULL, 'magness', 1, '35.7023000000', '-91.4804100000'),
(7120315, 7099753, 'US', 'Magnet Cove', NULL, 'magnet-cove', 1, '34.4542600000', '-92.8446100000'),
(7120323, 7099753, 'US', 'Magnolia', NULL, 'magnolia', 1, '33.2670700000', '-93.2393300000'),
(7120388, 7099753, 'US', 'Malvern', NULL, 'malvern', 1, '34.3623100000', '-92.8129500000'),
(7120398, 7099753, 'US', 'Mammoth Spring', NULL, 'mammoth-spring', 1, '36.4956200000', '-91.5407000000'),
(7120426, 7099753, 'US', 'Manila', NULL, 'manila', 1, '35.8800700000', '-90.1670400000'),
(7120438, 7099753, 'US', 'Mansfield', NULL, 'mansfield', 1, '35.0595400000', '-94.2527100000'),
(7120508, 7099753, 'US', 'Marianna', NULL, 'marianna', 1, '34.7737100000', '-90.7576100000'),
(7120519, 7099753, 'US', 'Marie', NULL, 'marie', 1, '35.6103600000', '-90.0809200000'),
(7120524, 7099753, 'US', 'Marion', NULL, 'marion', 1, '35.2145300000', '-90.1964800000'),
(7120544, 7099753, 'US', 'Marked Tree', NULL, 'marked-tree', 1, '35.5328600000', '-90.4206600000'),
(7120581, 7099753, 'US', 'Marmaduke', NULL, 'marmaduke', 1, '36.1870100000', '-90.3831600000'),
(7120611, 7099753, 'US', 'Marshall', NULL, 'marshall', 1, '35.9089600000', '-92.6312700000'),
(7120684, 7099753, 'US', 'Marvell', NULL, 'marvell', 1, '34.5556600000', '-90.9128900000'),
(7120792, 7099753, 'US', 'Maumelle', NULL, 'maumelle', 1, '34.8667600000', '-92.4043200000'),
(7120843, 7099753, 'US', 'Mayflower', NULL, 'mayflower', 1, '34.9570300000', '-92.4273800000'),
(7120855, 7099753, 'US', 'Maynard', NULL, 'maynard', 1, '36.4197900000', '-90.8973400000'),
(7120865, 7099753, 'US', 'Maysville', NULL, 'maysville', 1, '36.4036900000', '-94.6018900000'),
(7120886, 7099753, 'US', 'McAlmont', NULL, 'mcalmont', 1, '34.8084200000', '-92.1818100000'),
(7120918, 7099753, 'US', 'McCaskill', NULL, 'mccaskill', 1, '33.9167800000', '-93.6415700000'),
(7120981, 7099753, 'US', 'McCrory', NULL, 'mccrory', 1, '35.2562000000', '-91.2001200000'),
(7121013, 7099753, 'US', 'McDougal', NULL, 'mcdougal', 1, '36.4400600000', '-90.3914900000'),
(7121052, 7099753, 'US', 'McGehee', NULL, 'mcgehee', 1, '33.6290000000', '-91.3995600000'),
(7121158, 7099753, 'US', 'McNab', NULL, 'mcnab', 1, '33.6612300000', '-93.8326800000'),
(7121166, 7099753, 'US', 'McNeil', NULL, 'mcneil', 1, '33.3479000000', '-93.2098900000'),
(7121185, 7099753, 'US', 'McRae', NULL, 'mcrae', 1, '35.1128600000', '-91.8223600000'),
(7121256, 7099753, 'US', 'Melbourne', NULL, 'melbourne', 1, '36.0595100000', '-91.9084800000'),
(7121297, 7099753, 'US', 'Mena', NULL, 'mena', 1, '34.5862200000', '-94.2396600000'),
(7121315, 7099753, 'US', 'Menifee', NULL, 'menifee', 1, '35.1484200000', '-92.5540500000'),
(7121426, 7099753, 'US', 'Midland', NULL, 'midland', 1, '35.0931500000', '-94.3532700000'),
(7121436, 7099753, 'US', 'Midway', NULL, 'midway', 1, '36.3853400000', '-92.4618300000'),
(7121792, 7099753, 'US', 'Mineral Springs', NULL, 'mineral-springs', 1, '33.8751200000', '-93.9138000000'),
(7121819, 7099753, 'US', 'Minturn', NULL, 'minturn', 1, '35.9745200000', '-91.0276200000'),
(7121899, 7099753, 'US', 'Mitchellville', NULL, 'mitchellville', 1, '33.9056600000', '-91.4990100000'),
(7121954, 7099753, 'US', 'Monette', NULL, 'monette', 1, '35.8906300000', '-90.3442700000'),
(7122015, 7099753, 'US', 'Monticello', NULL, 'monticello', 1, '33.6290000000', '-91.7909600000'),
(7122029, 7099753, 'US', 'Montrose', NULL, 'montrose', 1, '33.2976200000', '-91.4937300000'),
(7122092, 7099753, 'US', 'Moorefield', NULL, 'moorefield', 1, '35.7684100000', '-91.5704100000'),
(7122203, 7099753, 'US', 'Moro', NULL, 'moro', 1, '34.7951000000', '-90.9912300000'),
(7122218, 7099753, 'US', 'Morrilton', NULL, 'morrilton', 1, '35.1509200000', '-92.7440500000'),
(7122254, 7099753, 'US', 'Morrison Bluff', NULL, 'morrison-bluff', 1, '35.3878600000', '-93.5285200000'),
(7122466, 7099753, 'US', 'Mount Ida', NULL, 'mount-ida', 1, '34.5567600000', '-93.6340800000'),
(7122657, 7099753, 'US', 'Mount Pleasant', NULL, 'mount-pleasant', 1, '35.9617400000', '-91.7557000000'),
(7122766, 7099753, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '35.2264700000', '-92.1240400000'),
(7122962, 7099753, 'US', 'Mountain Pine', NULL, 'mountain-pine', 1, '34.5720300000', '-93.1732400000'),
(7122986, 7099753, 'US', 'Mountain View', NULL, 'mountain-view', 1, '35.8684100000', '-92.1176500000'),
(7123018, 7099753, 'US', 'Mountainburg', NULL, 'mountainburg', 1, '35.6356400000', '-94.1674300000'),
(7123037, 7099753, 'US', 'Mountain Home', NULL, 'mountain-home', 1, '36.3353400000', '-92.3851600000'),
(7123120, 7099753, 'US', 'Mulberry', NULL, 'mulberry', 1, '35.5006400000', '-94.0515900000'),
(7123162, 7099753, 'US', 'Murfreesboro', NULL, 'murfreesboro', 1, '34.0623300000', '-93.6899000000'),
(7123271, 7099753, 'US', 'Nashville', NULL, 'nashville', 1, '33.9456700000', '-93.8471300000'),
(7123296, 7099753, 'US', 'Natural Steps', NULL, 'natural-steps', 1, '34.8620300000', '-92.4754400000'),
(7123473, 7099753, 'US', 'New Blaine', NULL, 'new-blaine', 1, '35.2895300000', '-93.4201800000'),
(7123492, 7099753, 'US', 'New Edinburg', NULL, 'new-edinburg', 1, '33.7573300000', '-92.2384800000'),
(7123800, 7099753, 'US', 'Newark', NULL, 'newark', 1, '35.7017400000', '-91.4415200000'),
(7123830, 7099753, 'US', 'Newport', NULL, 'newport', 1, '35.6048000000', '-91.2818000000'),
(7123905, 7099753, 'US', 'Nimmons', NULL, 'nimmons', 1, '36.3067300000', '-90.0945400000'),
(7123970, 7099753, 'US', 'Norfork', NULL, 'norfork', 1, '36.2095100000', '-92.2843200000'),
(7123981, 7099753, 'US', 'Norman', NULL, 'norman', 1, '34.4553700000', '-93.6814900000'),
(7123988, 7099753, 'US', 'Norphlet', NULL, 'norphlet', 1, '33.3159600000', '-92.6629300000'),
(7124039, 7099753, 'US', 'North Crossett', NULL, 'north-crossett', 1, '33.1656800000', '-91.9415200000'),
(7124112, 7099753, 'US', 'North Little Rock', NULL, 'north-little-rock', 1, '34.7695400000', '-92.2670900000'),
(7124304, 7099753, 'US', 'O''Kean', NULL, 'o-kean', 1, '36.1692300000', '-90.8142800000'),
(7124437, 7099753, 'US', 'Oak Grove Heights', NULL, 'oak-grove-heights', 1, '36.1209000000', '-90.5106600000'),
(7124545, 7099753, 'US', 'Oakgrove', NULL, 'oakgrove', 1, '36.4561800000', '-93.4365700000'),
(7124548, 7099753, 'US', 'Oakhaven', NULL, 'oakhaven', 1, '33.7292800000', '-93.6207300000'),
(7124630, 7099753, 'US', 'Oden', NULL, 'oden', 1, '34.6189900000', '-93.7768600000'),
(7124649, 7099753, 'US', 'Ogden', NULL, 'ogden', 1, '33.5826200000', '-94.0426900000'),
(7124654, 7099753, 'US', 'Oil Trough', NULL, 'oil-trough', 1, '35.6309100000', '-91.4604100000'),
(7124667, 7099753, 'US', 'Okolona', NULL, 'okolona', 1, '33.9973300000', '-93.3379500000'),
(7124671, 7099753, 'US', 'Ola', NULL, 'ola', 1, '35.0323100000', '-93.2232300000'),
(7124911, 7099753, 'US', 'Omaha', NULL, 'omaha', 1, '36.4522900000', '-93.1885100000'),
(7124966, 7099753, 'US', 'Oppelo', NULL, 'oppelo', 1, '35.1012000000', '-92.7676700000'),
(7125027, 7099753, 'US', 'Osceola', NULL, 'osceola', 1, '35.7050800000', '-89.9695300000'),
(7125168, 7099753, 'US', 'Oxford', NULL, 'oxford', 1, '36.2211800000', '-91.9293200000'),
(7125176, 7099753, 'US', 'Ozan', NULL, 'ozan', 1, '33.8478900000', '-93.7190700000'),
(7125181, 7099753, 'US', 'Ozark', NULL, 'ozark', 1, '35.4870300000', '-93.8277000000'),
(7125265, 7099753, 'US', 'Palestine', NULL, 'palestine', 1, '34.9723200000', '-90.9026200000'),
(7125312, 7099753, 'US', 'Pangburn', NULL, 'pangburn', 1, '35.4267500000', '-91.8368100000'),
(7125388, 7099753, 'US', 'Paragould', NULL, 'paragould', 1, '36.0584000000', '-90.4973300000'),
(7125402, 7099753, 'US', 'Paris', NULL, 'paris', 1, '35.2920300000', '-93.7299200000'),
(7125450, 7099753, 'US', 'Parkdale', NULL, 'parkdale', 1, '33.1215100000', '-91.5456800000'),
(7125487, 7099753, 'US', 'Parkin', NULL, 'parkin', 1, '35.2634200000', '-90.5712200000'),
(7125583, 7099753, 'US', 'Patmos', NULL, 'patmos', 1, '33.5117900000', '-93.5662900000'),
(7125599, 7099753, 'US', 'Patterson', NULL, 'patterson', 1, '35.2567500000', '-91.2351300000'),
(7125668, 7099753, 'US', 'Pea Ridge', NULL, 'pea-ridge', 1, '33.9206600000', '-91.3367900000'),
(7125713, 7099753, 'US', 'Peach Orchard', NULL, 'peach-orchard', 1, '36.2786800000', '-90.6628900000'),
(7125843, 7099753, 'US', 'Perla', NULL, 'perla', 1, '34.3645400000', '-92.7715600000'),
(7125851, 7099753, 'US', 'Perry', NULL, 'perry', 1, '35.0475900000', '-92.7940600000'),
(7125874, 7099753, 'US', 'Perrytown', NULL, 'perrytown', 1, '33.6965000000', '-93.5371200000'),
(7125875, 7099753, 'US', 'Perryville', NULL, 'perryville', 1, '35.0048100000', '-92.8026700000'),
(7126105, 7099753, 'US', 'Piggott', NULL, 'piggott', 1, '36.3828400000', '-90.1906500000'),
(7126224, 7099753, 'US', 'Pindall', NULL, 'pindall', 1, '36.0661900000', '-92.8812800000'),
(7126226, 7099753, 'US', 'Pine Bluff', NULL, 'pine-bluff', 1, '34.2284300000', '-92.0032000000'),
(7126409, 7099753, 'US', 'Pineville', NULL, 'pineville', 1, '36.1628500000', '-92.1071000000'),
(7126416, 7099753, 'US', 'Piney', NULL, 'piney', 1, '34.5031400000', '-93.1260200000'),
(7126548, 7099753, 'US', 'Plainview', NULL, 'plainview', 1, '34.9895400000', '-93.2974000000'),
(7126769, 7099753, 'US', 'Pleasant Plains', NULL, 'pleasant-plains', 1, '35.5500800000', '-91.6262500000'),
(7126911, 7099753, 'US', 'Plumerville', NULL, 'plumerville', 1, '35.1600800000', '-92.6407200000'),
(7126923, 7099753, 'US', 'Pocahontas', NULL, 'pocahontas', 1, '36.2614600000', '-90.9712300000'),
(7127139, 7099753, 'US', 'Portia', NULL, 'portia', 1, '36.0864600000', '-91.0673500000'),
(7127143, 7099753, 'US', 'Portland', NULL, 'portland', 1, '33.2379000000', '-91.5115100000'),
(7127256, 7099753, 'US', 'Pottsville', NULL, 'pottsville', 1, '35.2481400000', '-93.0490600000'),
(7127308, 7099753, 'US', 'Poyen', NULL, 'poyen', 1, '34.3242600000', '-92.6398800000'),
(7127314, 7099753, 'US', 'Powhatan', NULL, 'powhatan', 1, '36.0822900000', '-91.1184600000'),
(7127332, 7099753, 'US', 'Prairie Creek', NULL, 'prairie-creek', 1, '36.3420200000', '-94.0618700000'),
(7127359, 7099753, 'US', 'Prairie Grove', NULL, 'prairie-grove', 1, '35.9759100000', '-94.3177100000'),
(7127421, 7099753, 'US', 'Prattsville', NULL, 'prattsville', 1, '34.3148200000', '-92.5534900000'),
(7127433, 7099753, 'US', 'Prescott', NULL, 'prescott', 1, '33.8026100000', '-93.3810100000'),
(7127688, 7099753, 'US', 'Pyatt', NULL, 'pyatt', 1, '36.2459000000', '-92.8448900000'),
(7127735, 7099753, 'US', 'Quitman', NULL, 'quitman', 1, '35.3842500000', '-92.2157100000'),
(7127899, 7099753, 'US', 'Ratcliff', NULL, 'ratcliff', 1, '35.3084200000', '-93.8835300000'),
(7127923, 7099753, 'US', 'Ravenden', NULL, 'ravenden', 1, '36.2334000000', '-91.2518000000'),
(7127924, 7099753, 'US', 'Ravenden Springs', NULL, 'ravenden-springs', 1, '36.3164500000', '-91.2226300000'),
(7127961, 7099753, 'US', 'Reader', NULL, 'reader', 1, '33.7520500000', '-93.1051700000'),
(7127973, 7099753, 'US', 'Rector', NULL, 'rector', 1, '36.2631200000', '-90.2926000000'),
(7128103, 7099753, 'US', 'Redfield', NULL, 'redfield', 1, '34.4451000000', '-92.1832000000'),
(7128125, 7099753, 'US', 'Reed', NULL, 'reed', 1, '33.7020500000', '-91.4431800000'),
(7128259, 7099753, 'US', 'Reyno', NULL, 'reyno', 1, '36.3628400000', '-90.7537300000'),
(7128469, 7099753, 'US', 'Rison', NULL, 'rison', 1, '33.9584300000', '-92.1901500000'),
(7128764, 7099753, 'US', 'Rockport', NULL, 'rockport', 1, '34.3875900000', '-92.8254500000'),
(7128767, 7099753, 'US', 'Rockwell', NULL, 'rockwell', 1, '34.4642600000', '-93.1337900000'),
(7128889, 7099753, 'US', 'Roe', NULL, 'roe', 1, '34.6334300000', '-91.3851300000'),
(7128894, 7099753, 'US', 'Rogers', NULL, 'rogers', 1, '36.3320200000', '-94.1185400000'),
(7128927, 7099753, 'US', 'Roland', NULL, 'roland', 1, '34.9006400000', '-92.4982100000'),
(7128965, 7099753, 'US', 'Rondo', NULL, 'rondo', 1, '34.6592700000', '-90.8206700000'),
(7129013, 7099753, 'US', 'Rose Bud', NULL, 'rose-bud', 1, '35.3314700000', '-92.0812600000'),
(7129114, 7099753, 'US', 'Rosston', NULL, 'rosston', 1, '33.5926200000', '-93.2765600000'),
(7129317, 7099753, 'US', 'Rudy', NULL, 'rudy', 1, '35.5278600000', '-94.2707700000'),
(7129376, 7099753, 'US', 'Russell', NULL, 'russell', 1, '35.3625800000', '-91.5076300000'),
(7129397, 7099753, 'US', 'Russellville', NULL, 'russellville', 1, '35.2784200000', '-93.1337900000'),
(7129429, 7099753, 'US', 'Rye', NULL, 'rye', 1, '33.7462200000', '-91.9979200000'),
(7129507, 7099753, 'US', 'Saint Charles', NULL, 'saint-charles', 1, '34.3717700000', '-91.1365100000'),
(7129526, 7099753, 'US', 'Saint Francis', NULL, 'saint-francis', 1, '36.4533900000', '-90.1453800000'),
(7129576, 7099753, 'US', 'Saint Joe', NULL, 'saint-joe', 1, '36.0300700000', '-92.8046100000'),
(7129816, 7099753, 'US', 'Saint Paul', NULL, 'saint-paul', 1, '35.8242500000', '-93.7640800000'),
(7129962, 7099753, 'US', 'Salem', NULL, 'salem', 1, '36.3711800000', '-91.8226500000'),
(7130357, 7099753, 'US', 'Scott', NULL, 'scott', 1, '34.6964800000', '-92.0962600000'),
(7130418, 7099753, 'US', 'Scranton', NULL, 'scranton', 1, '35.3612000000', '-93.5357400000'),
(7130430, 7099753, 'US', 'Searcy', NULL, 'searcy', 1, '35.2506400000', '-91.7362500000'),
(7130499, 7099753, 'US', 'Sedgwick', NULL, 'sedgwick', 1, '35.9778500000', '-90.8640100000'),
(7130703, 7099753, 'US', 'Shannon Hills', NULL, 'shannon-hills', 1, '34.6200900000', '-92.3954300000'),
(7130821, 7099753, 'US', 'Sheridan', NULL, 'sheridan', 1, '34.3070400000', '-92.4012700000'),
(7130853, 7099753, 'US', 'Sherrill', NULL, 'sherrill', 1, '34.3853700000', '-91.9506900000'),
(7130982, 7099753, 'US', 'Shirley', NULL, 'shirley', 1, '35.6561900000', '-92.3193200000'),
(7131084, 7099753, 'US', 'Sidney', NULL, 'sidney', 1, '36.0031300000', '-91.6598600000'),
(7131116, 7099753, 'US', 'Siloam Springs', NULL, 'siloam-springs', 1, '36.1881400000', '-94.5405000000'),
(7131396, 7099753, 'US', 'Smackover', NULL, 'smackover', 1, '33.3648500000', '-92.7248800000'),
(7131523, 7099753, 'US', 'Smithville', NULL, 'smithville', 1, '36.0803500000', '-91.3037400000'),
(7131740, 7099753, 'US', 'South Lead Hill', NULL, 'south-lead-hill', 1, '36.3947900000', '-92.9107300000'),
(7131812, 7099753, 'US', 'Southside', NULL, 'southside', 1, '35.6984100000', '-91.6234700000'),
(7131875, 7099753, 'US', 'Sparkman', NULL, 'sparkman', 1, '33.9167700000', '-92.8482200000'),
(7132093, 7099753, 'US', 'Springdale', NULL, 'springdale', 1, '36.1867400000', '-94.1288100000'),
(7132127, 7099753, 'US', 'Springtown', NULL, 'springtown', 1, '36.2609100000', '-94.4232700000'),
(7132194, 7099753, 'US', 'Stamps', NULL, 'stamps', 1, '33.3654000000', '-93.4951800000'),
(7132227, 7099753, 'US', 'Star City', NULL, 'star-city', 1, '33.9428800000', '-91.8434700000'),
(7132285, 7099753, 'US', 'Staves', NULL, 'staves', 1, '34.0392700000', '-92.2773700000'),
(7132344, 7099753, 'US', 'Stephens', NULL, 'stephens', 1, '33.4112300000', '-93.0696100000'),
(7132548, 7099753, 'US', 'Strawberry', NULL, 'strawberry', 1, '35.9675700000', '-91.3212400000'),
(7132582, 7099753, 'US', 'Strong', NULL, 'strong', 1, '33.1076300000', '-92.3348600000'),
(7132625, 7099753, 'US', 'Stuttgart', NULL, 'stuttgart', 1, '34.5003700000', '-91.5526300000'),
(7132643, 7099753, 'US', 'Subiaco', NULL, 'subiaco', 1, '35.2928700000', '-93.6346400000'),
(7132650, 7099753, 'US', 'Success', NULL, 'success', 1, '36.4545100000', '-90.7215100000'),
(7132758, 7099753, 'US', 'Sulphur Rock', NULL, 'sulphur-rock', 1, '35.7511900000', '-91.5006900000'),
(7132771, 7099753, 'US', 'Sulphur Springs', NULL, 'sulphur-springs', 1, '36.4834100000', '-94.4585500000'),
(7132814, 7099753, 'US', 'Summit', NULL, 'summit', 1, '36.2522900000', '-92.6907200000'),
(7132873, 7099753, 'US', 'Sunset', NULL, 'sunset', 1, '35.2217600000', '-90.2056500000'),
(7132976, 7099753, 'US', 'Sweet Home', NULL, 'sweet-home', 1, '34.6864800000', '-92.2423700000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7133024, 7099753, 'US', 'Swifton', NULL, 'swifton', 1, '35.8217400000', '-91.1284600000'),
(7133234, 7099753, 'US', 'Taylor', NULL, 'taylor', 1, '33.1004100000', '-93.4610100000'),
(7133367, 7099753, 'US', 'Texarkana', NULL, 'texarkana', 1, '33.4417900000', '-94.0376900000'),
(7133574, 7099753, 'US', 'Tillar', NULL, 'tillar', 1, '33.7123300000', '-91.4529000000'),
(7133615, 7099753, 'US', 'Tinsman', NULL, 'tinsman', 1, '33.6298300000', '-92.3551500000'),
(7133652, 7099753, 'US', 'Tollette', NULL, 'tollette', 1, '33.8198400000', '-93.8943500000'),
(7133707, 7099753, 'US', 'Tontitown', NULL, 'tontitown', 1, '36.1778600000', '-94.2335400000'),
(7133806, 7099753, 'US', 'Traskwood', NULL, 'traskwood', 1, '34.4492600000', '-92.6540500000'),
(7133933, 7099753, 'US', 'Trumann', NULL, 'trumann', 1, '35.6736900000', '-90.5073300000'),
(7133971, 7099753, 'US', 'Tuckerman', NULL, 'tuckerman', 1, '35.7306300000', '-91.1984600000'),
(7133992, 7099753, 'US', 'Tull', NULL, 'tull', 1, '34.4478700000', '-92.5762700000'),
(7133998, 7099753, 'US', 'Tumbling Shoals', NULL, 'tumbling-shoals', 1, '35.5420200000', '-91.9673700000'),
(7134010, 7099753, 'US', 'Tupelo', NULL, 'tupelo', 1, '35.3931400000', '-91.2306800000'),
(7134132, 7099753, 'US', 'Turrell', NULL, 'turrell', 1, '35.3798100000', '-90.2578700000'),
(7134166, 7099753, 'US', 'Twin Groves', NULL, 'twin-groves', 1, '35.3194200000', '-92.4154500000'),
(7134232, 7099753, 'US', 'Tyronza', NULL, 'tyronza', 1, '35.4900800000', '-90.3587100000'),
(7134246, 7099753, 'US', 'Ulm', NULL, 'ulm', 1, '34.5759300000', '-91.4606800000'),
(7134657, 7099753, 'US', 'Valley Springs', NULL, 'valley-springs', 1, '36.1575700000', '-92.9929500000'),
(7134716, 7099753, 'US', 'Van Buren', NULL, 'van-buren', 1, '35.4367600000', '-94.3482700000'),
(7134734, 7099753, 'US', 'Vandervoort', NULL, 'vandervoort', 1, '34.3815000000', '-94.3657700000'),
(7134837, 7099753, 'US', 'Victoria', NULL, 'victoria', 1, '35.7567400000', '-90.0559200000'),
(7134871, 7099753, 'US', 'Vilonia', NULL, 'vilonia', 1, '35.0839800000', '-92.2079300000'),
(7134888, 7099753, 'US', 'Viola', NULL, 'viola', 1, '36.3967300000', '-91.9826500000'),
(7134923, 7099753, 'US', 'Wabbaseka', NULL, 'wabbaseka', 1, '34.3609300000', '-91.7959700000'),
(7134992, 7099753, 'US', 'Waldenburg', NULL, 'waldenburg', 1, '35.5653600000', '-90.9337300000'),
(7134993, 7099753, 'US', 'Waldo', NULL, 'waldo', 1, '33.3515100000', '-93.2957300000'),
(7135004, 7099753, 'US', 'Waldron', NULL, 'waldron', 1, '34.8984300000', '-94.0907600000'),
(7135205, 7099753, 'US', 'Walnut Ridge', NULL, 'walnut-ridge', 1, '36.0684000000', '-90.9559500000'),
(7135279, 7099753, 'US', 'Ward', NULL, 'ward', 1, '35.0303600000', '-91.9504200000'),
(7135349, 7099753, 'US', 'Warren', NULL, 'warren', 1, '33.6126100000', '-92.0645800000'),
(7135386, 7099753, 'US', 'Washington', NULL, 'washington', 1, '33.7740100000', '-93.6826800000'),
(7135477, 7099753, 'US', 'Watson', NULL, 'watson', 1, '33.8951000000', '-91.2562300000'),
(7135644, 7099753, 'US', 'Weldon', NULL, 'weldon', 1, '35.4453600000', '-91.2315200000'),
(7135648, 7099753, 'US', 'Weiner', NULL, 'weiner', 1, '35.6203600000', '-90.8984500000'),
(7135746, 7099753, 'US', 'West Crossett', NULL, 'west-crossett', 1, '33.1409600000', '-91.9940200000'),
(7135763, 7099753, 'US', 'West Fork', NULL, 'west-fork', 1, '35.9242500000', '-94.1885400000'),
(7135840, 7099753, 'US', 'West Helena', NULL, 'west-helena', 1, '34.5506600000', '-90.6417700000'),
(7135865, 7099753, 'US', 'West Memphis', NULL, 'west-memphis', 1, '35.1464800000', '-90.1845400000'),
(7135885, 7099753, 'US', 'West Point', NULL, 'west-point', 1, '35.2070300000', '-91.6143000000'),
(7135950, 7099753, 'US', 'Western Grove', NULL, 'western-grove', 1, '36.1009100000', '-92.9537800000'),
(7136045, 7099753, 'US', 'Wheatley', NULL, 'wheatley', 1, '34.9128700000', '-91.1101200000'),
(7136068, 7099753, 'US', 'Whelen Springs', NULL, 'whelen-springs', 1, '33.8309400000', '-93.1262800000'),
(7136153, 7099753, 'US', 'White Hall', NULL, 'white-hall', 1, '34.2739900000', '-92.0909800000'),
(7136413, 7099753, 'US', 'Wickes', NULL, 'wickes', 1, '34.3031700000', '-94.3382700000'),
(7136423, 7099753, 'US', 'Widener', NULL, 'widener', 1, '35.0234300000', '-90.6848300000'),
(7136430, 7099753, 'US', 'Wiederkehr Village', NULL, 'wiederkehr-village', 1, '35.4731400000', '-93.7646400000'),
(7136624, 7099753, 'US', 'Williford', NULL, 'williford', 1, '36.2528500000', '-91.3559700000'),
(7136637, 7099753, 'US', 'Willisville', NULL, 'willisville', 1, '33.5170600000', '-93.2982300000'),
(7136679, 7099753, 'US', 'Wilmar', NULL, 'wilmar', 1, '33.6290000000', '-91.9315200000'),
(7136688, 7099753, 'US', 'Wilmot', NULL, 'wilmot', 1, '33.0573500000', '-91.5734500000'),
(7136692, 7099753, 'US', 'Wilson', NULL, 'wilson', 1, '35.5681400000', '-90.0420300000'),
(7136764, 7099753, 'US', 'Wilton', NULL, 'wilton', 1, '33.7412300000', '-94.1482500000'),
(7136771, 7099753, 'US', 'Winchester', NULL, 'winchester', 1, '33.7745500000', '-91.4745700000'),
(7136831, 7099753, 'US', 'Winslow', NULL, 'winslow', 1, '35.8009100000', '-94.1349300000'),
(7136860, 7099753, 'US', 'Winthrop', NULL, 'winthrop', 1, '33.8317800000', '-94.3546500000'),
(7137082, 7099753, 'US', 'Woodson', NULL, 'woodson', 1, '34.5292600000', '-92.2109800000'),
(7137113, 7099753, 'US', 'Wooster', NULL, 'wooster', 1, '35.2020300000', '-92.4559900000'),
(7137171, 7099753, 'US', 'Wrightsville', NULL, 'wrightsville', 1, '34.6023200000', '-92.2168100000'),
(7137215, 7099753, 'US', 'Wynne', NULL, 'wynne', 1, '35.2245300000', '-90.7867800000'),
(7137252, 7099753, 'US', 'Yarborough Landing', NULL, 'yarborough-landing', 1, '33.7206800000', '-94.0182500000'),
(7137291, 7099753, 'US', 'Yellville', NULL, 'yellville', 1, '36.2261800000', '-92.6848900000'),
(7137377, 7099753, 'US', 'Zinc', NULL, 'zinc', 1, '36.2853500000', '-92.9143400000'),
(7137457, 7138106, 'US', 'Adams Morgan', NULL, 'adams-morgan', 1, '38.9215000000', '-77.0422000000'),
(7137775, 7138106, 'US', 'Bloomingdale', NULL, 'bloomingdale', 1, '38.9167800000', '-77.0113700000'),
(7138011, 7138106, 'US', 'Chevy Chase', NULL, 'chevy-chase', 1, '38.9640000000', '-77.0677600000'),
(7140463, 7138106, 'US', 'Shaw', NULL, 'shaw', 1, '38.9120600000', '-77.0213700000'),
(7140963, 7138106, 'US', 'Washington', NULL, 'washington', 1, '38.8951100000', '-77.0363700000'),
(7141246, 7142224, 'US', 'Arden', NULL, 'arden', 1, '39.8092800000', '-75.4865900000'),
(7141248, 7142224, 'US', 'Ardencroft', NULL, 'ardencroft', 1, '39.8042800000', '-75.4913100000'),
(7141249, 7142224, 'US', 'Ardentown', NULL, 'ardentown', 1, '39.8084500000', '-75.4829800000'),
(7141363, 7142224, 'US', 'Bear', NULL, 'bear', 1, '39.6292800000', '-75.6582600000'),
(7141402, 7142224, 'US', 'Bellefonte', NULL, 'bellefonte', 1, '39.7662200000', '-75.5093600000'),
(7141435, 7142224, 'US', 'Bethany Beach', NULL, 'bethany-beach', 1, '38.5395600000', '-75.0551800000'),
(7141443, 7142224, 'US', 'Bethel', NULL, 'bethel', 1, '39.2342800000', '-75.5815900000'),
(7141541, 7142224, 'US', 'Blades', NULL, 'blades', 1, '38.6356700000', '-75.6099300000'),
(7141582, 7142224, 'US', 'Bowers Beach', NULL, 'bowers-beach', 1, '39.0598300000', '-75.4013100000'),
(7141632, 7142224, 'US', 'Bridgeville', NULL, 'bridgeville', 1, '38.7426100000', '-75.6043700000'),
(7141674, 7142224, 'US', 'Brookside', NULL, 'brookside', 1, '39.6670600000', '-75.7268800000'),
(7141748, 7142224, 'US', 'Camden', NULL, 'camden', 1, '39.1134500000', '-75.5418700000'),
(7141903, 7142224, 'US', 'Cheswold', NULL, 'cheswold', 1, '39.2192800000', '-75.5857600000'),
(7141974, 7142224, 'US', 'Claymont', NULL, 'claymont', 1, '39.8006700000', '-75.4596400000'),
(7141982, 7142224, 'US', 'Clayton', NULL, 'clayton', 1, '39.2906700000', '-75.6343700000'),
(7142137, 7142224, 'US', 'Dagsboro', NULL, 'dagsboro', 1, '38.5492800000', '-75.2457400000'),
(7142191, 7142224, 'US', 'Delaware City', NULL, 'delaware-city', 1, '39.5778900000', '-75.5888100000'),
(7142226, 7142224, 'US', 'Delmar', NULL, 'delmar', 1, '38.4565100000', '-75.5771500000'),
(7142256, 7142224, 'US', 'Dewey Beach', NULL, 'dewey-beach', 1, '38.6928900000', '-75.0746200000'),
(7142290, 7142224, 'US', 'Dover', NULL, 'dover', 1, '39.1581700000', '-75.5243700000'),
(7142398, 7142224, 'US', 'Edgemoor', NULL, 'edgemoor', 1, '39.7501100000', '-75.4996400000'),
(7142412, 7142224, 'US', 'Ellendale', NULL, 'ellendale', 1, '38.8070600000', '-75.4227000000'),
(7142424, 7142224, 'US', 'Elsmere', NULL, 'elsmere', 1, '39.7392800000', '-75.5979800000'),
(7142477, 7142224, 'US', 'Farmington', NULL, 'farmington', 1, '38.8692800000', '-75.5785400000'),
(7142485, 7142224, 'US', 'Felton', NULL, 'felton', 1, '39.0084500000', '-75.5779800000'),
(7142495, 7142224, 'US', 'Fenwick Island', NULL, 'fenwick-island', 1, '38.4623300000', '-75.0512900000'),
(7142601, 7142224, 'US', 'Frankford', NULL, 'frankford', 1, '38.5173400000', '-75.2349100000'),
(7142605, 7142224, 'US', 'Frederica', NULL, 'frederica', 1, '39.0090000000', '-75.4657500000'),
(7142643, 7142224, 'US', 'Georgetown', NULL, 'georgetown', 1, '38.6901100000', '-75.3854700000'),
(7142683, 7142224, 'US', 'Glasgow', NULL, 'glasgow', 1, '39.6048300000', '-75.7452100000'),
(7142766, 7142224, 'US', 'Greenville', NULL, 'greenville', 1, '39.7790000000', '-75.5982600000'),
(7142770, 7142224, 'US', 'Greenwood', NULL, 'greenwood', 1, '38.8070600000', '-75.5913200000'),
(7142841, 7142224, 'US', 'Harrington', NULL, 'harrington', 1, '38.9237200000', '-75.5777000000'),
(7142850, 7142224, 'US', 'Hartly', NULL, 'hartly', 1, '39.1687200000', '-75.7132600000'),
(7142895, 7142224, 'US', 'Henlopen Acres', NULL, 'henlopen-acres', 1, '38.7298300000', '-75.0862900000'),
(7142942, 7142224, 'US', 'Highland Acres', NULL, 'highland-acres', 1, '39.1209500000', '-75.5218700000'),
(7142969, 7142224, 'US', 'Hockessin', NULL, 'hockessin', 1, '39.7876100000', '-75.6966000000'),
(7143057, 7142224, 'US', 'Houston', NULL, 'houston', 1, '38.9176100000', '-75.5052000000'),
(7143218, 7142224, 'US', 'Kent Acres', NULL, 'kent-acres', 1, '39.1317800000', '-75.5249200000'),
(7143230, 7142224, 'US', 'Kenton', NULL, 'kenton', 1, '39.2276100000', '-75.6629800000'),
(7143319, 7142224, 'US', 'Laurel', NULL, 'laurel', 1, '38.5565000000', '-75.5713100000'),
(7143348, 7142224, 'US', 'Leipsic', NULL, 'leipsic', 1, '39.2409500000', '-75.5168700000'),
(7143354, 7142224, 'US', 'Lewes', NULL, 'lewes', 1, '38.7745600000', '-75.1393500000'),
(7143408, 7142224, 'US', 'Little Creek', NULL, 'little-creek', 1, '39.1670600000', '-75.4482500000'),
(7143459, 7142224, 'US', 'Long Neck', NULL, 'long-neck', 1, '38.6201100000', '-75.1507400000'),
(7143506, 7142224, 'US', 'Magnolia', NULL, 'magnolia', 1, '39.0712200000', '-75.4760300000'),
(7143637, 7142224, 'US', 'Middletown', NULL, 'middletown', 1, '39.4495600000', '-75.7163200000'),
(7143658, 7142224, 'US', 'Milford', NULL, 'milford', 1, '38.9126100000', '-75.4279700000'),
(7143690, 7142224, 'US', 'Millsboro', NULL, 'millsboro', 1, '38.5915000000', '-75.2913000000'),
(7143696, 7142224, 'US', 'Millville', NULL, 'millville', 1, '38.5495600000', '-75.1232400000'),
(7143698, 7142224, 'US', 'Milton', NULL, 'milton', 1, '38.7776100000', '-75.3099100000'),
(7143834, 7142224, 'US', 'New Castle', NULL, 'new-castle', 1, '39.6620600000', '-75.5663100000'),
(7143861, 7142224, 'US', 'Newark', NULL, 'newark', 1, '39.6837200000', '-75.7496600000'),
(7143871, 7142224, 'US', 'Newport', NULL, 'newport', 1, '39.7137200000', '-75.6093700000'),
(7143897, 7142224, 'US', 'North Star', NULL, 'north-star', 1, '39.7612200000', '-75.7191000000'),
(7143946, 7142224, 'US', 'Odessa', NULL, 'odessa', 1, '39.4573300000', '-75.6613200000'),
(7144100, 7142224, 'US', 'Pike Creek', NULL, 'pike-creek', 1, '39.7309500000', '-75.7041000000'),
(7144101, 7142224, 'US', 'Pike Creek Valley', NULL, 'pike-creek-valley', 1, '39.7362200000', '-75.6982700000'),
(7144284, 7142224, 'US', 'Rehoboth Beach', NULL, 'rehoboth-beach', 1, '38.7209500000', '-75.0760100000'),
(7144338, 7142224, 'US', 'Riverview', NULL, 'riverview', 1, '39.0265000000', '-75.5107600000'),
(7144366, 7142224, 'US', 'Rodney Village', NULL, 'rodney-village', 1, '39.1320600000', '-75.5324200000'),
(7144600, 7142224, 'US', 'Seaford', NULL, 'seaford', 1, '38.6412300000', '-75.6110400000'),
(7144620, 7142224, 'US', 'Selbyville', NULL, 'selbyville', 1, '38.4603900000', '-75.2207400000'),
(7144743, 7142224, 'US', 'Slaughter Beach', NULL, 'slaughter-beach', 1, '38.9128900000', '-75.3040800000'),
(7144764, 7142224, 'US', 'Smyrna', NULL, 'smyrna', 1, '39.2998300000', '-75.6046500000'),
(7144787, 7142224, 'US', 'South Bethany', NULL, 'south-bethany', 1, '38.5165000000', '-75.0529600000'),
(7145047, 7142224, 'US', 'Townsend', NULL, 'townsend', 1, '39.3951100000', '-75.6916000000'),
(7145151, 7142224, 'US', 'Viola', NULL, 'viola', 1, '39.0428900000', '-75.5718700000'),
(7145381, 7142224, 'US', 'Wilmington', NULL, 'wilmington', 1, '39.7459500000', '-75.5465900000'),
(7145395, 7142224, 'US', 'Wilmington Manor', NULL, 'wilmington-manor', 1, '39.6867800000', '-75.5843700000'),
(7145471, 7142224, 'US', 'Woodside', NULL, 'woodside', 1, '39.0715000000', '-75.5682600000'),
(7145483, 7142224, 'US', 'Wyoming', NULL, 'wyoming', 1, '39.1181700000', '-75.5588100000'),
(7145571, 7155751, 'US', 'Aberdeen', NULL, 'aberdeen', 1, '26.5506300000', '-80.1486600000'),
(7145719, 7155751, 'US', 'Alachua', NULL, 'alachua', 1, '29.7516300000', '-82.4248300000'),
(7145765, 7155751, 'US', 'Alford', NULL, 'alford', 1, '30.6938000000', '-85.3921500000'),
(7145805, 7155751, 'US', 'Allapattah', NULL, 'allapattah', 1, '25.8145400000', '-80.2239400000'),
(7145837, 7155751, 'US', 'Allentown', NULL, 'allentown', 1, '30.7626900000', '-87.0421900000'),
(7145941, 7155751, 'US', 'Altamonte Springs', NULL, 'altamonte-springs', 1, '28.6611100000', '-81.3656200000'),
(7145945, 7155751, 'US', 'Altha', NULL, 'altha', 1, '30.5704700000', '-85.1271400000'),
(7145953, 7155751, 'US', 'Altoona', NULL, 'altoona', 1, '28.9658200000', '-81.6486900000'),
(7145956, 7155751, 'US', 'Alturas', NULL, 'alturas', 1, '27.8716900000', '-81.7150800000'),
(7145959, 7155751, 'US', 'Alva', NULL, 'alva', 1, '26.7156200000', '-81.6100800000'),
(7146039, 7155751, 'US', 'Andover', NULL, 'andover', 1, '25.9684300000', '-80.2128300000'),
(7146051, 7155751, 'US', 'Andrews', NULL, 'andrews', 1, '29.5329300000', '-82.8816900000'),
(7146082, 7155751, 'US', 'Anna Maria', NULL, 'anna-maria', 1, '27.5311500000', '-82.7334300000'),
(7146148, 7155751, 'US', 'Apalachicola', NULL, 'apalachicola', 1, '29.7260000000', '-84.9856000000'),
(7146161, 7155751, 'US', 'Apollo Beach', NULL, 'apollo-beach', 1, '27.7730800000', '-82.4075900000'),
(7146166, 7155751, 'US', 'Apopka', NULL, 'apopka', 1, '28.6761700000', '-81.5118600000'),
(7146206, 7155751, 'US', 'Arcadia', NULL, 'arcadia', 1, '27.2158800000', '-81.8584200000'),
(7146219, 7155751, 'US', 'Archer', NULL, 'archer', 1, '29.5299700000', '-82.5190000000'),
(7146245, 7155751, 'US', 'Aripeka', NULL, 'aripeka', 1, '28.4322200000', '-82.6642700000'),
(7146302, 7155751, 'US', 'Asbury Lake', NULL, 'asbury-lake', 1, '30.0491300000', '-81.8214900000'),
(7146338, 7155751, 'US', 'Astatula', NULL, 'astatula', 1, '28.7097200000', '-81.7328500000'),
(7146339, 7155751, 'US', 'Astor', NULL, 'astor', 1, '29.1624800000', '-81.5253500000'),
(7146354, 7155751, 'US', 'Atlantic Beach', NULL, 'atlantic-beach', 1, '30.3344100000', '-81.3987000000'),
(7146372, 7155751, 'US', 'Atlantis', NULL, 'atlantis', 1, '26.5909000000', '-80.1008800000'),
(7146389, 7155751, 'US', 'Auburndale', NULL, 'auburndale', 1, '28.0653000000', '-81.7886900000'),
(7146395, 7155751, 'US', 'Aucilla', NULL, 'aucilla', 1, '30.4799300000', '-83.7543300000'),
(7146429, 7155751, 'US', 'Aventura', NULL, 'aventura', 1, '25.9564800000', '-80.1392100000'),
(7146440, 7155751, 'US', 'Avon Park', NULL, 'avon-park', 1, '27.5958700000', '-81.5061900000'),
(7146464, 7155751, 'US', 'Azalea Park', NULL, 'azalea-park', 1, '28.5411100000', '-81.3006200000'),
(7146481, 7155751, 'US', 'Babson Park', NULL, 'babson-park', 1, '27.8319700000', '-81.5223000000'),
(7146494, 7155751, 'US', 'Bagdad', NULL, 'bagdad', 1, '30.5988000000', '-87.0322300000'),
(7146564, 7155751, 'US', 'Bal Harbour', NULL, 'bal-harbour', 1, '25.8917600000', '-80.1269900000'),
(7146570, 7155751, 'US', 'Baldwin', NULL, 'baldwin', 1, '30.3027400000', '-81.9753900000'),
(7146588, 7155751, 'US', 'Balm', NULL, 'balm', 1, '27.7594700000', '-82.2612000000'),
(7146723, 7155751, 'US', 'Bartow', NULL, 'bartow', 1, '27.8964100000', '-81.8431400000'),
(7146736, 7155751, 'US', 'Bascom', NULL, 'bascom', 1, '30.9279700000', '-85.1185400000'),
(7146823, 7155751, 'US', 'Bay Harbor Islands', NULL, 'bay-harbor-islands', 1, '25.8875900000', '-80.1311600000'),
(7146830, 7155751, 'US', 'Bay Hill', NULL, 'bay-hill', 1, '28.4680600000', '-81.5161800000'),
(7146844, 7155751, 'US', 'Bay Lake', NULL, 'bay-lake', 1, '28.3886200000', '-81.5659100000'),
(7146855, 7155751, 'US', 'Bay Pines', NULL, 'bay-pines', 1, '27.8141900000', '-82.7781600000'),
(7146901, 7155751, 'US', 'Bayonet Point', NULL, 'bayonet-point', 1, '28.3266700000', '-82.6834300000'),
(7146934, 7155751, 'US', 'Bayshore Gardens', NULL, 'bayshore-gardens', 1, '27.4253200000', '-82.5903800000'),
(7146950, 7155751, 'US', 'Bayport', NULL, 'bayport', 1, '28.5506800000', '-82.6458800000'),
(7146984, 7155751, 'US', 'Beacon Square', NULL, 'beacon-square', 1, '28.2086200000', '-82.7553800000'),
(7147145, 7155751, 'US', 'Bee Ridge', NULL, 'bee-ridge', 1, '27.2839400000', '-82.4806500000'),
(7147193, 7155751, 'US', 'Bell', NULL, 'bell', 1, '29.7555100000', '-82.8626200000'),
(7147241, 7155751, 'US', 'Belle Glade', NULL, 'belle-glade', 1, '26.6845100000', '-80.6675600000'),
(7147242, 7155751, 'US', 'Belle Glade Camp', NULL, 'belle-glade-camp', 1, '26.6575700000', '-80.6828400000'),
(7147247, 7155751, 'US', 'Belle Isle', NULL, 'belle-isle', 1, '28.4583400000', '-81.3592400000'),
(7147255, 7155751, 'US', 'Belleair', NULL, 'belleair', 1, '27.9358500000', '-82.8062100000'),
(7147257, 7155751, 'US', 'Belleair Beach', NULL, 'belleair-beach', 1, '27.9230800000', '-82.8431600000'),
(7147258, 7155751, 'US', 'Belleair Bluffs', NULL, 'belleair-bluffs', 1, '27.9214100000', '-82.8170500000'),
(7147262, 7155751, 'US', 'Belleair Shores', NULL, 'belleair-shores', 1, '27.9166900000', '-82.8453800000'),
(7147263, 7155751, 'US', 'Belleview', NULL, 'belleview', 1, '29.0552600000', '-82.0623100000'),
(7147290, 7155751, 'US', 'Bellview', NULL, 'bellview', 1, '30.4615900000', '-87.3149700000'),
(7147390, 7155751, 'US', 'Berrydale', NULL, 'berrydale', 1, '30.8993500000', '-87.0138500000'),
(7147580, 7155751, 'US', 'Beverly Beach', NULL, 'beverly-beach', 1, '29.5147000000', '-81.1445000000'),
(7147581, 7155751, 'US', 'Beverly Hills', NULL, 'beverly-hills', 1, '28.9169200000', '-82.4581500000'),
(7147679, 7155751, 'US', 'Big Coppitt Key', NULL, 'big-coppitt-key', 1, '24.5965300000', '-81.6600900000'),
(7147801, 7155751, 'US', 'Big Pine Key', NULL, 'big-pine-key', 1, '24.6698700000', '-81.3539700000'),
(7147988, 7155751, 'US', 'Biscayne Park', NULL, 'biscayne-park', 1, '25.8826000000', '-80.1806000000'),
(7148012, 7155751, 'US', 'Bithlo', NULL, 'bithlo', 1, '28.5547200000', '-81.1064500000'),
(7148053, 7155751, 'US', 'Black Diamond', NULL, 'black-diamond', 1, '28.9124800000', '-82.4859300000'),
(7148207, 7155751, 'US', 'Bloomingdale', NULL, 'bloomingdale', 1, '27.8936400000', '-82.2403700000'),
(7148237, 7155751, 'US', 'Blountstown', NULL, 'blountstown', 1, '30.4437900000', '-85.0474400000'),
(7148399, 7155751, 'US', 'Boca Del Mar', NULL, 'boca-del-mar', 1, '26.3450800000', '-80.1467100000'),
(7148410, 7155751, 'US', 'Boca Pointe', NULL, 'boca-pointe', 1, '26.3331300000', '-80.1594900000'),
(7148411, 7155751, 'US', 'Boca Raton', NULL, 'boca-raton', 1, '26.3586900000', '-80.0831000000'),
(7148504, 7155751, 'US', 'Bokeelia', NULL, 'bokeelia', 1, '26.7056300000', '-82.1589800000'),
(7148526, 7155751, 'US', 'Bonifay', NULL, 'bonifay', 1, '30.7918600000', '-85.6796500000'),
(7148533, 7155751, 'US', 'Bonita Springs', NULL, 'bonita-springs', 1, '26.3398100000', '-81.7787000000'),
(7148659, 7155751, 'US', 'Bowling Green', NULL, 'bowling-green', 1, '27.6383700000', '-81.8239700000'),
(7148674, 7155751, 'US', 'Boyette', NULL, 'boyette', 1, '27.8175300000', '-82.2225900000'),
(7148677, 7155751, 'US', 'Boynton Beach', NULL, 'boynton-beach', 1, '26.5253500000', '-80.0664300000'),
(7148708, 7155751, 'US', 'Bradenton', NULL, 'bradenton', 1, '27.4989300000', '-82.5748200000'),
(7148710, 7155751, 'US', 'Bradenton Beach', NULL, 'bradenton-beach', 1, '27.4669800000', '-82.7039900000'),
(7148747, 7155751, 'US', 'Bradley Junction', NULL, 'bradley-junction', 1, '27.7953100000', '-81.9803600000'),
(7148757, 7155751, 'US', 'Brandon', NULL, 'brandon', 1, '27.9378000000', '-82.2859200000'),
(7148776, 7155751, 'US', 'Branford', NULL, 'branford', 1, '29.9591200000', '-82.9281800000'),
(7148803, 7155751, 'US', 'Brent', NULL, 'brent', 1, '30.4688100000', '-87.2360800000'),
(7148910, 7155751, 'US', 'Briny Breezes', NULL, 'briny-breezes', 1, '26.5084100000', '-80.0508700000'),
(7148912, 7155751, 'US', 'Bristol', NULL, 'bristol', 1, '30.4324700000', '-84.9770200000'),
(7148944, 7155751, 'US', 'Broadview Park', NULL, 'broadview-park', 1, '26.0995300000', '-80.2086600000'),
(7148957, 7155751, 'US', 'Bronson', NULL, 'bronson', 1, '29.4477400000', '-82.6423300000'),
(7148962, 7155751, 'US', 'Brooker', NULL, 'brooker', 1, '29.8888500000', '-82.3326100000'),
(7148975, 7155751, 'US', 'Brookridge', NULL, 'brookridge', 1, '28.5511000000', '-82.4920400000'),
(7148986, 7155751, 'US', 'Brooksville', NULL, 'brooksville', 1, '28.5555400000', '-82.3899100000'),
(7149010, 7155751, 'US', 'Broward Estates', NULL, 'broward-estates', 1, '26.1256400000', '-80.1933800000'),
(7149075, 7155751, 'US', 'Brownsdale', NULL, 'brownsdale', 1, '30.8824100000', '-87.2255300000'),
(7149077, 7155751, 'US', 'Brownsville', NULL, 'brownsville', 1, '25.8217600000', '-80.2411600000'),
(7149226, 7155751, 'US', 'Buckhead Ridge', NULL, 'buckhead-ridge', 1, '27.1303300000', '-80.8936700000'),
(7149241, 7155751, 'US', 'Buckingham', NULL, 'buckingham', 1, '26.6750700000', '-81.7320300000'),
(7149269, 7155751, 'US', 'Buenaventura Lakes', NULL, 'buenaventura-lakes', 1, '28.3358400000', '-81.3531300000'),
(7149342, 7155751, 'US', 'Bunche Park', NULL, 'bunche-park', 1, '25.9206500000', '-80.2369900000'),
(7149363, 7155751, 'US', 'Bunnell', NULL, 'bunnell', 1, '29.4660900000', '-81.2578400000'),
(7149412, 7155751, 'US', 'Burnt Store Marina', NULL, 'burnt-store-marina', 1, '26.7650700000', '-82.0509200000'),
(7149433, 7155751, 'US', 'Bushnell', NULL, 'bushnell', 1, '28.6649900000', '-82.1128600000'),
(7149453, 7155751, 'US', 'Butler Beach', NULL, 'butler-beach', 1, '29.7983000000', '-81.2670100000'),
(7149631, 7155751, 'US', 'Callahan', NULL, 'callahan', 1, '30.5621800000', '-81.8306600000'),
(7149635, 7155751, 'US', 'Callaway', NULL, 'callaway', 1, '30.1529800000', '-85.5699300000'),
(7149845, 7155751, 'US', 'Campbell', NULL, 'campbell', 1, '28.2589000000', '-81.4564600000'),
(7149898, 7155751, 'US', 'Canal Point', NULL, 'canal-point', 1, '26.8592300000', '-80.6336700000'),
(7149918, 7155751, 'US', 'Campbellton', NULL, 'campbellton', 1, '30.9493500000', '-85.4021500000'),
(7149956, 7155751, 'US', 'Cantonment', NULL, 'cantonment', 1, '30.6085300000', '-87.3399800000'),
(7149959, 7155751, 'US', 'Cape Canaveral', NULL, 'cape-canaveral', 1, '28.4058400000', '-80.6047700000'),
(7149962, 7155751, 'US', 'Cape Coral', NULL, 'cape-coral', 1, '26.5628500000', '-81.9495300000'),
(7150010, 7155751, 'US', 'Captiva', NULL, 'captiva', 1, '26.5220200000', '-82.1892600000'),
(7150066, 7155751, 'US', 'Carol City', NULL, 'carol-city', 1, '25.9406500000', '-80.2456000000'),
(7150103, 7155751, 'US', 'Carrabelle', NULL, 'carrabelle', 1, '29.8532600000', '-84.6643500000'),
(7150115, 7155751, 'US', 'Carrollwood', NULL, 'carrollwood', 1, '28.0500200000', '-82.4928700000'),
(7150118, 7155751, 'US', 'Carrollwood Village', NULL, 'carrollwood-village', 1, '28.0675200000', '-82.5209300000'),
(7150159, 7155751, 'US', 'Carver Ranches', NULL, 'carver-ranches', 1, '25.9884200000', '-80.1922700000'),
(7150168, 7155751, 'US', 'Caryville', NULL, 'caryville', 1, '30.7732400000', '-85.8141000000'),
(7150190, 7155751, 'US', 'Casselberry', NULL, 'casselberry', 1, '28.6777800000', '-81.3278500000'),
(7150340, 7155751, 'US', 'Cedar Grove', NULL, 'cedar-grove', 1, '30.1710300000', '-85.6252000000'),
(7150356, 7155751, 'US', 'Cedar Key', NULL, 'cedar-key', 1, '29.1385800000', '-83.0351200000'),
(7150394, 7155751, 'US', 'Celebration', NULL, 'celebration', 1, '28.3252900000', '-81.5331300000'),
(7150411, 7155751, 'US', 'Center Hill', NULL, 'center-hill', 1, '28.6499900000', '-81.9925800000'),
(7150517, 7155751, 'US', 'Century', NULL, 'century', 1, '30.9732400000', '-87.2638600000'),
(7150614, 7155751, 'US', 'Charleston Park', NULL, 'charleston-park', 1, '26.7056200000', '-81.5803600000'),
(7150632, 7155751, 'US', 'Charlotte Harbor', NULL, 'charlotte-harbor', 1, '26.9583900000', '-82.0670300000'),
(7150637, 7155751, 'US', 'Charlotte Park', NULL, 'charlotte-park', 1, '26.9100600000', '-82.0539800000'),
(7150673, 7155751, 'US', 'Chattahoochee', NULL, 'chattahoochee', 1, '30.7054600000', '-84.8457400000'),
(7150727, 7155751, 'US', 'Cheval', NULL, 'cheval', 1, '28.1486200000', '-82.5145400000'),
(7150733, 7155751, 'US', 'Chiefland', NULL, 'chiefland', 1, '29.4749600000', '-82.8598400000'),
(7150769, 7155751, 'US', 'Chipley', NULL, 'chipley', 1, '30.7818600000', '-85.5385400000'),
(7150879, 7155751, 'US', 'Chokoloskee', NULL, 'chokoloskee', 1, '25.8128800000', '-81.3620200000'),
(7150880, 7155751, 'US', 'Christmas', NULL, 'christmas', 1, '28.5363900000', '-81.0175600000'),
(7150904, 7155751, 'US', 'Chumuckla', NULL, 'chumuckla', 1, '30.7765800000', '-87.2371900000'),
(7150914, 7155751, 'US', 'Chuluota', NULL, 'chuluota', 1, '28.6419400000', '-81.1234000000'),
(7151120, 7155751, 'US', 'Cinco Bayou', NULL, 'cinco-bayou', 1, '30.4225500000', '-86.6092600000'),
(7151132, 7155751, 'US', 'Citra', NULL, 'citra', 1, '29.4119200000', '-82.1098200000'),
(7151153, 7155751, 'US', 'Citrus Hills', NULL, 'citrus-hills', 1, '28.8883100000', '-82.4326000000'),
(7151157, 7155751, 'US', 'Citrus Park', NULL, 'citrus-park', 1, '28.0783500000', '-82.5698200000'),
(7151162, 7155751, 'US', 'Citrus Ridge', NULL, 'citrus-ridge', 1, '28.3338500000', '-81.6423200000'),
(7151163, 7155751, 'US', 'Citrus Springs', NULL, 'citrus-springs', 1, '28.9974800000', '-82.4706500000'),
(7151207, 7155751, 'US', 'Clarcona', NULL, 'clarcona', 1, '28.6127800000', '-81.4986800000'),
(7151316, 7155751, 'US', 'Clearwater', NULL, 'clearwater', 1, '27.9658500000', '-82.8001000000'),
(7151352, 7155751, 'US', 'Clermont', NULL, 'clermont', 1, '28.5494400000', '-81.7728500000'),
(7151366, 7155751, 'US', 'Clewiston', NULL, 'clewiston', 1, '26.7542300000', '-80.9336800000'),
(7151385, 7155751, 'US', 'Cloud Lake', NULL, 'cloud-lake', 1, '26.6761800000', '-80.0739300000'),
(7151416, 7155751, 'US', 'Cleveland', NULL, 'cleveland', 1, '26.9617300000', '-81.9839800000'),
(7151426, 7155751, 'US', 'Cobbtown', NULL, 'cobbtown', 1, '30.8829600000', '-87.1196900000'),
(7151440, 7155751, 'US', 'Cocoa', NULL, 'cocoa', 1, '28.3861200000', '-80.7420000000'),
(7151441, 7155751, 'US', 'Cocoa Beach', NULL, 'cocoa-beach', 1, '28.3205500000', '-80.6092200000'),
(7151455, 7155751, 'US', 'Coconut Creek', NULL, 'coconut-creek', 1, '26.2517500000', '-80.1789400000'),
(7151460, 7155751, 'US', 'Coconut Grove', NULL, 'coconut-grove', 1, '25.7126000000', '-80.2569900000'),
(7151509, 7155751, 'US', 'Coleman', NULL, 'coleman', 1, '28.7997100000', '-82.0700900000'),
(7151607, 7155751, 'US', 'Combee Settlement', NULL, 'combee-settlement', 1, '28.0583500000', '-81.9053600000'),
(7151745, 7155751, 'US', 'Conway', NULL, 'conway', 1, '28.5027800000', '-81.3306200000'),
(7151824, 7155751, 'US', 'Cooper City', NULL, 'cooper-city', 1, '26.0573100000', '-80.2717200000'),
(7151871, 7155751, 'US', 'Coral Gables', NULL, 'coral-gables', 1, '25.7214900000', '-80.2683800000'),
(7151909, 7155751, 'US', 'Coral Springs', NULL, 'coral-springs', 1, '26.2711900000', '-80.2706000000'),
(7151921, 7155751, 'US', 'Coral Terrace', NULL, 'coral-terrace', 1, '25.7459300000', '-80.3045000000'),
(7152003, 7155751, 'US', 'Cortez', NULL, 'cortez', 1, '27.4692100000', '-82.6862100000'),
(7152043, 7155751, 'US', 'Cottondale', NULL, 'cottondale', 1, '30.7971400000', '-85.3766000000'),
(7152064, 7155751, 'US', 'Country Walk', NULL, 'country-walk', 1, '25.6339900000', '-80.4322800000'),
(7152093, 7155751, 'US', 'Country Club', NULL, 'country-club', 1, '25.9481500000', '-80.3170000000'),
(7152267, 7155751, 'US', 'Crawfordville', NULL, 'crawfordville', 1, '30.1760400000', '-84.3751800000'),
(7152290, 7155751, 'US', 'Crescent Beach', NULL, 'crescent-beach', 1, '29.7688600000', '-81.2536800000'),
(7152291, 7155751, 'US', 'Crescent City', NULL, 'crescent-city', 1, '29.4302500000', '-81.5106300000'),
(7152311, 7155751, 'US', 'Crestview', NULL, 'crestview', 1, '30.7621300000', '-86.5705100000'),
(7152360, 7155751, 'US', 'Crooked Lake Park', NULL, 'crooked-lake-park', 1, '27.8291900000', '-81.5839700000'),
(7152395, 7155751, 'US', 'Cross City', NULL, 'cross-city', 1, '29.6346500000', '-83.1269400000'),
(7152472, 7155751, 'US', 'Crystal Lake', NULL, 'crystal-lake', 1, '28.0355800000', '-81.9084100000'),
(7152487, 7155751, 'US', 'Crystal River', NULL, 'crystal-river', 1, '28.9024800000', '-82.5926000000'),
(7152498, 7155751, 'US', 'Crystal Springs', NULL, 'crystal-springs', 1, '28.1814000000', '-82.1575800000'),
(7152513, 7155751, 'US', 'Cudjoe Key', NULL, 'cudjoe-key', 1, '24.6715300000', '-81.4984200000'),
(7152564, 7155751, 'US', 'Cutler', NULL, 'cutler', 1, '25.6151000000', '-80.3106100000'),
(7152574, 7155751, 'US', 'Cutler Ridge', NULL, 'cutler-ridge', 1, '25.5806600000', '-80.3467200000'),
(7152628, 7155751, 'US', 'Cypress Gardens', NULL, 'cypress-gardens', 1, '27.9939100000', '-81.6900800000'),
(7152639, 7155751, 'US', 'Cypress Lake', NULL, 'cypress-lake', 1, '26.5381300000', '-81.8992500000'),
(7152671, 7155751, 'US', 'Cypress Quarters', NULL, 'cypress-quarters', 1, '27.2519900000', '-80.8139500000'),
(7152695, 7155751, 'US', 'Dade City', NULL, 'dade-city', 1, '28.3647200000', '-82.1959200000'),
(7152772, 7155751, 'US', 'Dania Beach', NULL, 'dania-beach', 1, '26.0523100000', '-80.1439300000'),
(7152805, 7155751, 'US', 'Davenport', NULL, 'davenport', 1, '28.1614000000', '-81.6017400000'),
(7152820, 7155751, 'US', 'Davie', NULL, 'davie', 1, '26.0628700000', '-80.2331000000'),
(7152865, 7155751, 'US', 'Day', NULL, 'day', 1, '30.1941100000', '-83.2912500000'),
(7152872, 7155751, 'US', 'Daytona Beach', NULL, 'daytona-beach', 1, '29.2108100000', '-81.0228300000'),
(7152881, 7155751, 'US', 'Daytona Beach Shores', NULL, 'daytona-beach-shores', 1, '29.1760900000', '-80.9828300000'),
(7152888, 7155751, 'US', 'DeFuniak Springs', NULL, 'defuniak-springs', 1, '30.7210200000', '-86.1152200000'),
(7152890, 7155751, 'US', 'DeLand', NULL, 'deland', 1, '29.0283200000', '-81.3031200000'),
(7152898, 7155751, 'US', 'De Leon Springs', NULL, 'de-leon-springs', 1, '29.1198900000', '-81.3528600000'),
(7152926, 7155751, 'US', 'DeBary', NULL, 'debary', 1, '28.8830500000', '-81.3086800000'),
(7153071, 7155751, 'US', 'Deerfield Beach', NULL, 'deerfield-beach', 1, '26.3184100000', '-80.0997700000'),
(7153132, 7155751, 'US', 'Delray Beach', NULL, 'delray-beach', 1, '26.4614600000', '-80.0728200000'),
(7153146, 7155751, 'US', 'Deltona', NULL, 'deltona', 1, '28.9005400000', '-81.2636700000'),
(7153186, 7155751, 'US', 'Desoto Lakes', NULL, 'desoto-lakes', 1, '27.3714300000', '-82.4898200000'),
(7153188, 7155751, 'US', 'Destin', NULL, 'destin', 1, '30.3935300000', '-86.4957800000'),
(7153367, 7155751, 'US', 'Doctor Phillips', NULL, 'doctor-phillips', 1, '28.4494500000', '-81.4922900000'),
(7153471, 7155751, 'US', 'Doral', NULL, 'doral', 1, '25.8195400000', '-80.3553300000'),
(7153553, 7155751, 'US', 'Dover', NULL, 'dover', 1, '27.9941900000', '-82.2195300000'),
(7153693, 7155751, 'US', 'Duck Key', NULL, 'duck-key', 1, '24.7709700000', '-80.9120100000'),
(7153757, 7155751, 'US', 'Dundee', NULL, 'dundee', 1, '28.0225200000', '-81.6192400000'),
(7153759, 7155751, 'US', 'Dunedin', NULL, 'dunedin', 1, '28.0199000000', '-82.7732300000'),
(7153775, 7155751, 'US', 'Dunes Road', NULL, 'dunes-road', 1, '26.4845200000', '-80.1183800000'),
(7153790, 7155751, 'US', 'Dunnellon', NULL, 'dunnellon', 1, '29.0491400000', '-82.4609300000'),
(7153884, 7155751, 'US', 'Eagle Lake', NULL, 'eagle-lake', 1, '27.9783600000', '-81.7564700000'),
(7154008, 7155751, 'US', 'East Lake', NULL, 'east-lake', 1, '28.1108500000', '-82.6948200000'),
(7154023, 7155751, 'US', 'East Milton', NULL, 'east-milton', 1, '30.6151900000', '-87.0216300000'),
(7154031, 7155751, 'US', 'East Naples', NULL, 'east-naples', 1, '26.1384200000', '-81.7664800000'),
(7154037, 7155751, 'US', 'East Palatka', NULL, 'east-palatka', 1, '29.6583000000', '-81.5984100000'),
(7154047, 7155751, 'US', 'East Pensacola Heights', NULL, 'east-pensacola-heights', 1, '30.4288100000', '-87.1799700000'),
(7154051, 7155751, 'US', 'East Perrine', NULL, 'east-perrine', 1, '25.6087200000', '-80.3389400000'),
(7154106, 7155751, 'US', 'Eastpoint', NULL, 'eastpoint', 1, '29.7366000000', '-84.8785200000'),
(7154127, 7155751, 'US', 'Eatonville', NULL, 'eatonville', 1, '28.6147200000', '-81.3806200000'),
(7154157, 7155751, 'US', 'Ebro', NULL, 'ebro', 1, '30.4479700000', '-85.8741000000'),
(7154205, 7155751, 'US', 'Edgewater', NULL, 'edgewater', 1, '28.9888800000', '-80.9022800000'),
(7154216, 7155751, 'US', 'Edgewood', NULL, 'edgewood', 1, '28.4861200000', '-81.3722900000'),
(7154270, 7155751, 'US', 'Eglin Village', NULL, 'eglin-village', 1, '30.4629800000', '-86.5394000000'),
(7154280, 7155751, 'US', 'Egypt Lake-Leto', NULL, 'egypt-lake-leto', 1, '28.0176900000', '-82.5061900000'),
(7154299, 7155751, 'US', 'El Portal', NULL, 'el-portal', 1, '25.8553700000', '-80.1931000000'),
(7154336, 7155751, 'US', 'Elfers', NULL, 'elfers', 1, '28.2166800000', '-82.7223200000'),
(7154367, 7155751, 'US', 'Ellenton', NULL, 'ellenton', 1, '27.5217100000', '-82.5276000000'),
(7154465, 7155751, 'US', 'Englewood', NULL, 'englewood', 1, '26.9620100000', '-82.3526000000'),
(7154489, 7155751, 'US', 'Ensley', NULL, 'ensley', 1, '30.5188100000', '-87.2727500000'),
(7154568, 7155751, 'US', 'Estero', NULL, 'estero', 1, '26.4381400000', '-81.8067500000'),
(7154578, 7155751, 'US', 'Esto', NULL, 'esto', 1, '30.9874000000', '-85.6460400000'),
(7154606, 7155751, 'US', 'Eustis', NULL, 'eustis', 1, '28.8527700000', '-81.6853500000'),
(7154657, 7155751, 'US', 'Everglades City', NULL, 'everglades-city', 1, '25.8601000000', '-81.3803600000'),
(7154769, 7155751, 'US', 'Fairview Shores', NULL, 'fairview-shores', 1, '28.5911100000', '-81.3942400000'),
(7154891, 7155751, 'US', 'Fanning Springs', NULL, 'fanning-springs', 1, '29.5907900000', '-82.9292900000'),
(7154937, 7155751, 'US', 'Feather Sound', NULL, 'feather-sound', 1, '27.9007900000', '-82.6734900000'),
(7154972, 7155751, 'US', 'Fellsmere', NULL, 'fellsmere', 1, '27.7678100000', '-80.6014400000'),
(7155000, 7155751, 'US', 'Fern Park', NULL, 'fern-park', 1, '28.6491600000', '-81.3511800000'),
(7155006, 7155751, 'US', 'Fernandina Beach', NULL, 'fernandina-beach', 1, '30.6696800000', '-81.4625900000'),
(7155011, 7155751, 'US', 'Ferndale', NULL, 'ferndale', 1, '28.6219400000', '-81.7034100000'),
(7155017, 7155751, 'US', 'Ferry Pass', NULL, 'ferry-pass', 1, '30.5102000000', '-87.2124700000'),
(7155033, 7155751, 'US', 'Fidelis', NULL, 'fidelis', 1, '30.9362900000', '-87.0241300000'),
(7155430, 7155751, 'US', 'Fish Hawk', NULL, 'fish-hawk', 1, '27.8505800000', '-82.2109200000'),
(7155468, 7155751, 'US', 'Fisher Island', NULL, 'fisher-island', 1, '25.7609300000', '-80.1400500000'),
(7155502, 7155751, 'US', 'Five Points', NULL, 'five-points', 1, '30.2091200000', '-82.6373500000'),
(7155529, 7155751, 'US', 'Flagami', NULL, 'flagami', 1, '25.7623200000', '-80.3161600000'),
(7155533, 7155751, 'US', 'Flagler Beach', NULL, 'flagler-beach', 1, '29.4749800000', '-81.1270000000'),
(7155594, 7155751, 'US', 'Fleming Island', NULL, 'fleming-island', 1, '30.0933000000', '-81.7189800000'),
(7155623, 7155751, 'US', 'Floral City', NULL, 'floral-city', 1, '28.7499900000', '-82.2967600000'),
(7155669, 7155751, 'US', 'Florida City', NULL, 'florida-city', 1, '25.4478900000', '-80.4792200000'),
(7155726, 7155751, 'US', 'Florida Ridge', NULL, 'florida-ridge', 1, '27.5803100000', '-80.3867200000'),
(7155755, 7155751, 'US', 'Floridatown', NULL, 'floridatown', 1, '30.5950700000', '-87.1471200000'),
(7155824, 7155751, 'US', 'Forest City', NULL, 'forest-city', 1, '28.6667800000', '-81.4433400000'),
(7155946, 7155751, 'US', 'Fort Green', NULL, 'fort-green', 1, '27.6125300000', '-81.9434200000'),
(7155948, 7155751, 'US', 'Fort Green Springs', NULL, 'fort-green-springs', 1, '27.5917000000', '-81.9392500000'),
(7155966, 7155751, 'US', 'Fort Lauderdale', NULL, 'fort-lauderdale', 1, '26.1223100000', '-80.1433800000'),
(7155988, 7155751, 'US', 'Fort Meade', NULL, 'fort-meade', 1, '27.7522500000', '-81.8017500000'),
(7155995, 7155751, 'US', 'Fort Myers', NULL, 'fort-myers', 1, '26.6216800000', '-81.8405900000'),
(7155996, 7155751, 'US', 'Fort Myers Beach', NULL, 'fort-myers-beach', 1, '26.4527100000', '-81.9501100000'),
(7156006, 7155751, 'US', 'Fort Myers Shores', NULL, 'fort-myers-shores', 1, '26.7092400000', '-81.7459200000'),
(7156018, 7155751, 'US', 'Fort Pierce', NULL, 'fort-pierce', 1, '27.4467100000', '-80.3256100000'),
(7156042, 7155751, 'US', 'Fort Walton Beach', NULL, 'fort-walton-beach', 1, '30.4205900000', '-86.6170700000'),
(7156050, 7155751, 'US', 'Fort White', NULL, 'fort-white', 1, '29.9232900000', '-82.7137300000'),
(7156091, 7155751, 'US', 'Fountainebleau', NULL, 'fountainebleau', 1, '25.7728800000', '-80.3478300000'),
(7156268, 7155751, 'US', 'Freeport', NULL, 'freeport', 1, '30.4982500000', '-86.1360500000'),
(7156326, 7155751, 'US', 'Frostproof', NULL, 'frostproof', 1, '27.7458600000', '-81.5306300000'),
(7156331, 7155751, 'US', 'Fruit Cove', NULL, 'fruit-cove', 1, '30.1110700000', '-81.6417600000'),
(7156337, 7155751, 'US', 'Fruitland Park', NULL, 'fruitland-park', 1, '28.8613800000', '-81.9064700000'),
(7156340, 7155751, 'US', 'Fruitville', NULL, 'fruitville', 1, '27.3297700000', '-82.4576000000'),
(7156367, 7155751, 'US', 'Fuller Heights', NULL, 'fuller-heights', 1, '27.9091900000', '-81.9981400000'),
(7156370, 7155751, 'US', 'Fussels Corner', NULL, 'fussels-corner', 1, '28.0541900000', '-81.8606400000'),
(7156404, 7155751, 'US', 'Gainesville', NULL, 'gainesville', 1, '29.6516300000', '-82.3248300000'),
(7156462, 7155751, 'US', 'Gandy', NULL, 'gandy', 1, '27.8685000000', '-82.6161200000'),
(7156501, 7155751, 'US', 'Garden Grove', NULL, 'garden-grove', 1, '28.4802700000', '-82.4350900000'),
(7156527, 7155751, 'US', 'Gardner', NULL, 'gardner', 1, '27.3517100000', '-81.7998000000'),
(7156601, 7155751, 'US', 'Gateway', NULL, 'gateway', 1, '26.5775700000', '-81.7503600000'),
(7156657, 7155751, 'US', 'Geneva', NULL, 'geneva', 1, '28.7397200000', '-81.1150600000'),
(7156746, 7155751, 'US', 'Gibsonia', NULL, 'gibsonia', 1, '28.1147400000', '-81.9736900000'),
(7156748, 7155751, 'US', 'Gibsonton', NULL, 'gibsonton', 1, '27.8536400000', '-82.3825900000'),
(7156752, 7155751, 'US', 'Gifford', NULL, 'gifford', 1, '27.6753100000', '-80.4092200000'),
(7156824, 7155751, 'US', 'Gladeview', NULL, 'gladeview', 1, '25.8392600000', '-80.2356000000'),
(7156840, 7155751, 'US', 'Glen Ridge', NULL, 'glen-ridge', 1, '26.6695100000', '-80.0742100000'),
(7156841, 7155751, 'US', 'Glen Saint Mary', NULL, 'glen-saint-mary', 1, '30.2757900000', '-82.1606700000'),
(7156844, 7155751, 'US', 'Glencoe', NULL, 'glencoe', 1, '29.0258200000', '-80.9720000000'),
(7156857, 7155751, 'US', 'Glenvar Heights', NULL, 'glenvar-heights', 1, '25.7076000000', '-80.3256100000'),
(7156918, 7155751, 'US', 'Golden Beach', NULL, 'golden-beach', 1, '25.9650900000', '-80.1222700000'),
(7156920, 7155751, 'US', 'Golden Gate', NULL, 'golden-gate', 1, '26.1878700000', '-81.6950900000'),
(7156931, 7155751, 'US', 'Golden Glades', NULL, 'golden-glades', 1, '25.9117600000', '-80.2003300000'),
(7156959, 7155751, 'US', 'Goldenrod', NULL, 'goldenrod', 1, '28.6102800000', '-81.2886800000'),
(7156961, 7155751, 'US', 'Golf', NULL, 'golf', 1, '26.4986800000', '-80.1086500000'),
(7156964, 7155751, 'US', 'Golfview', NULL, 'golfview', 1, '26.6889500000', '-80.1125400000'),
(7156975, 7155751, 'US', 'Gonzalez', NULL, 'gonzalez', 1, '30.5815800000', '-87.2913600000'),
(7157015, 7155751, 'US', 'Goodland', NULL, 'goodland', 1, '25.9248200000', '-81.6456400000'),
(7157092, 7155751, 'US', 'Gotha', NULL, 'gotha', 1, '28.5277800000', '-81.5231300000'),
(7157095, 7155751, 'US', 'Goulding', NULL, 'goulding', 1, '30.4429800000', '-87.2224700000'),
(7157097, 7155751, 'US', 'Goulds', NULL, 'goulds', 1, '25.5626100000', '-80.3822800000'),
(7157193, 7155751, 'US', 'Graceville', NULL, 'graceville', 1, '30.9568500000', '-85.5166000000'),
(7157237, 7155751, 'US', 'Grand Ridge', NULL, 'grand-ridge', 1, '30.7129100000', '-85.0232800000'),
(7157427, 7155751, 'US', 'Green Cove Springs', NULL, 'green-cove-springs', 1, '29.9919100000', '-81.6781500000'),
(7157467, 7155751, 'US', 'Greenacres City', NULL, 'greenacres-city', 1, '26.6236800000', '-80.1253200000'),
(7157500, 7155751, 'US', 'Greensboro', NULL, 'greensboro', 1, '30.5696100000', '-84.7452700000'),
(7157505, 7155751, 'US', 'Greenville', NULL, 'greenville', 1, '30.4693700000', '-83.6301500000'),
(7157509, 7155751, 'US', 'Greenwood', NULL, 'greenwood', 1, '30.8701900000', '-85.1618700000'),
(7157537, 7155751, 'US', 'Gretna', NULL, 'gretna', 1, '30.6171400000', '-84.6599100000'),
(7157593, 7155751, 'US', 'Grove City', NULL, 'grove-city', 1, '26.9142300000', '-82.3270400000'),
(7157605, 7155751, 'US', 'Groveland', NULL, 'groveland', 1, '28.5580500000', '-81.8511900000'),
(7157634, 7155751, 'US', 'Gulf Breeze', NULL, 'gulf-breeze', 1, '30.3571400000', '-87.1638600000'),
(7157657, 7155751, 'US', 'Gulf Gate Estates', NULL, 'gulf-gate-estates', 1, '27.2517300000', '-82.5147100000'),
(7157680, 7155751, 'US', 'Gulf Stream', NULL, 'gulf-stream', 1, '26.4936800000', '-80.0550400000'),
(7157687, 7155751, 'US', 'Gulfport', NULL, 'gulfport', 1, '27.7483600000', '-82.7034300000'),
(7157774, 7155751, 'US', 'Gun Club Estates', NULL, 'gun-club-estates', 1, '26.6753400000', '-80.1072700000'),
(7157827, 7155751, 'US', 'Haines City', NULL, 'haines-city', 1, '28.1145000000', '-81.6200900000'),
(7157898, 7155751, 'US', 'Hallandale Beach', NULL, 'hallandale-beach', 1, '25.9812000000', '-80.1483800000'),
(7157969, 7155751, 'US', 'Hampton', NULL, 'hampton', 1, '29.8644100000', '-82.1309400000'),
(7158032, 7155751, 'US', 'Harbor Bluffs', NULL, 'harbor-bluffs', 1, '27.9094700000', '-82.8276000000'),
(7158060, 7155751, 'US', 'Harbour Heights', NULL, 'harbour-heights', 1, '26.9908900000', '-82.0023100000'),
(7158091, 7155751, 'US', 'Harlem', NULL, 'harlem', 1, '26.7375700000', '-80.9509000000'),
(7158094, 7155751, 'US', 'Harlem Heights', NULL, 'harlem-heights', 1, '26.5161900000', '-81.9278700000'),
(7158112, 7155751, 'US', 'Harold', NULL, 'harold', 1, '30.6590800000', '-86.8802400000'),
(7158198, 7155751, 'US', 'Hastings', NULL, 'hastings', 1, '29.7180200000', '-81.5081300000'),
(7158224, 7155751, 'US', 'Havana', NULL, 'havana', 1, '30.6238100000', '-84.4146300000'),
(7158239, 7155751, 'US', 'Haverhill', NULL, 'haverhill', 1, '26.6911800000', '-80.1200400000'),
(7158256, 7155751, 'US', 'Hawthorne', NULL, 'hawthorne', 1, '29.5919100000', '-82.0873200000'),
(7158296, 7155751, 'US', 'Heathrow', NULL, 'heathrow', 1, '28.7633300000', '-81.3722500000'),
(7158445, 7155751, 'US', 'Hernando', NULL, 'hernando', 1, '28.8999800000', '-82.3745400000'),
(7158446, 7155751, 'US', 'Hernando Beach', NULL, 'hernando-beach', 1, '28.4694400000', '-82.6592700000'),
(7158476, 7155751, 'US', 'Hialeah', NULL, 'hialeah', 1, '25.8576000000', '-80.2781100000'),
(7158482, 7155751, 'US', 'Hialeah Gardens', NULL, 'hialeah-gardens', 1, '25.8651000000', '-80.3245000000'),
(7158595, 7155751, 'US', 'High Springs', NULL, 'high-springs', 1, '29.8269100000', '-82.5967800000'),
(7158599, 7155751, 'US', 'Highland Beach', NULL, 'highland-beach', 1, '26.3995200000', '-80.0656000000'),
(7158604, 7155751, 'US', 'Highland City', NULL, 'highland-city', 1, '27.9653000000', '-81.8778600000'),
(7158618, 7155751, 'US', 'Highland Park', NULL, 'highland-park', 1, '27.8650300000', '-81.5617400000'),
(7158662, 7155751, 'US', 'Hiland Park', NULL, 'hiland-park', 1, '30.2010300000', '-85.6268700000'),
(7158668, 7155751, 'US', 'Hill ''n Dale', NULL, 'hill-n-dale', 1, '28.5197200000', '-82.2992600000'),
(7158684, 7155751, 'US', 'Hillcrest Heights', NULL, 'hillcrest-heights', 1, '27.8211400000', '-81.5306300000'),
(7158693, 7155751, 'US', 'Hilliard', NULL, 'hilliard', 1, '30.6910700000', '-81.9173300000'),
(7158700, 7155751, 'US', 'Hillsboro Beach', NULL, 'hillsboro-beach', 1, '26.2939700000', '-80.0789300000'),
(7158758, 7155751, 'US', 'Hobe Sound', NULL, 'hobe-sound', 1, '27.0595000000', '-80.1364300000'),
(7158844, 7155751, 'US', 'Holden Heights', NULL, 'holden-heights', 1, '28.4966700000', '-81.3878500000'),
(7158865, 7155751, 'US', 'Holiday', NULL, 'holiday', 1, '28.1877900000', '-82.7395500000'),
(7158891, 7155751, 'US', 'Holley', NULL, 'holley', 1, '30.4468600000', '-86.9069100000'),
(7158914, 7155751, 'US', 'Holly Hill', NULL, 'holly-hill', 1, '29.2435900000', '-81.0375600000'),
(7158928, 7155751, 'US', 'Hollywood', NULL, 'hollywood', 1, '26.0112000000', '-80.1494900000'),
(7158966, 7155751, 'US', 'Holmes Beach', NULL, 'holmes-beach', 1, '27.4953200000', '-82.7109300000'),
(7159047, 7155751, 'US', 'Homeland', NULL, 'homeland', 1, '27.8178100000', '-81.8245300000'),
(7159050, 7155751, 'US', 'Homestead', NULL, 'homestead', 1, '25.4687200000', '-80.4775600000'),
(7159071, 7155751, 'US', 'Homosassa', NULL, 'homosassa', 1, '28.7813700000', '-82.6151000000'),
(7159077, 7155751, 'US', 'Homosassa Springs', NULL, 'homosassa-springs', 1, '28.8035900000', '-82.5759300000'),
(7159207, 7155751, 'US', 'Horseshoe Beach', NULL, 'horseshoe-beach', 1, '29.4413500000', '-83.2873600000'),
(7159247, 7155751, 'US', 'Hosford', NULL, 'hosford', 1, '30.3870500000', '-84.7994300000'),
(7159315, 7155751, 'US', 'Howey-in-the-Hills', NULL, 'howey-in-the-hills', 1, '28.7169400000', '-81.7734100000'),
(7159335, 7155751, 'US', 'Hudson', NULL, 'hudson', 1, '28.3644500000', '-82.6934300000'),
(7159416, 7155751, 'US', 'Hunters Creek', NULL, 'hunters-creek', 1, '28.3605600000', '-81.4222900000'),
(7159484, 7155751, 'US', 'Hypoluxo', NULL, 'hypoluxo', 1, '26.5664600000', '-80.0533700000'),
(7159553, 7155751, 'US', 'Immokalee', NULL, 'immokalee', 1, '26.4186900000', '-81.4173000000'),
(7159575, 7155751, 'US', 'Indialantic', NULL, 'indialantic', 1, '28.0894600000', '-80.5656100000'),
(7159603, 7155751, 'US', 'Indian Creek Village', NULL, 'indian-creek-village', 1, '25.8781500000', '-80.1361600000'),
(7159608, 7155751, 'US', 'Indian Harbour Beach', NULL, 'indian-harbour-beach', 1, '28.1489000000', '-80.5883900000'),
(7159659, 7155751, 'US', 'Indian River Estates', NULL, 'indian-river-estates', 1, '27.3644900000', '-80.3097700000'),
(7159672, 7155751, 'US', 'Indian River Shores', NULL, 'indian-river-shores', 1, '27.7167000000', '-80.3842200000'),
(7159675, 7155751, 'US', 'Indian Rocks Beach', NULL, 'indian-rocks-beach', 1, '27.8753000000', '-82.8512200000'),
(7159677, 7155751, 'US', 'Indian Shores', NULL, 'indian-shores', 1, '27.8628000000', '-82.8484400000'),
(7159687, 7155751, 'US', 'Indiantown', NULL, 'indiantown', 1, '27.0272800000', '-80.4856100000'),
(7159702, 7155751, 'US', 'Inglis', NULL, 'inglis', 1, '29.0302500000', '-82.6687200000'),
(7159765, 7155751, 'US', 'Interlachen', NULL, 'interlachen', 1, '29.6242100000', '-81.8925600000'),
(7159786, 7155751, 'US', 'Inverness', NULL, 'inverness', 1, '28.8358200000', '-82.3303700000'),
(7159796, 7155751, 'US', 'Inwood', NULL, 'inwood', 1, '28.0369700000', '-81.7650800000'),
(7159805, 7155751, 'US', 'Iona', NULL, 'iona', 1, '26.5203600000', '-81.9639800000'),
(7159839, 7155751, 'US', 'Islamorada', NULL, 'islamorada', 1, '24.9243000000', '-80.6278400000'),
(7159872, 7155751, 'US', 'Islandia', NULL, 'islandia', 1, '25.3781700000', '-80.2525500000'),
(7159873, 7155751, 'US', 'Isle of Normandy', NULL, 'isle-of-normandy', 1, '25.8528700000', '-80.1350500000'),
(7159882, 7155751, 'US', 'Istachatta', NULL, 'istachatta', 1, '28.6599900000', '-82.2775900000'),
(7159896, 7155751, 'US', 'Ives Estates', NULL, 'ives-estates', 1, '25.9623100000', '-80.1767100000'),
(7160021, 7155751, 'US', 'Jacksonville', NULL, 'jacksonville', 1, '30.3321800000', '-81.6556500000'),
(7160023, 7155751, 'US', 'Jacksonville Beach', NULL, 'jacksonville-beach', 1, '30.2946900000', '-81.3931400000'),
(7160052, 7155751, 'US', 'Jacobs', NULL, 'jacobs', 1, '30.8949100000', '-85.3977100000'),
(7160086, 7155751, 'US', 'Jan-Phyl Village', NULL, 'jan-phyl-village', 1, '28.0147400000', '-81.7717500000'),
(7160100, 7155751, 'US', 'Jasmine Estates', NULL, 'jasmine-estates', 1, '28.2930600000', '-82.6901000000'),
(7160102, 7155751, 'US', 'Jasper', NULL, 'jasper', 1, '30.5182700000', '-82.9481900000'),
(7160103, 7155751, 'US', 'Jay', NULL, 'jay', 1, '30.9529600000', '-87.1513600000'),
(7160163, 7155751, 'US', 'Jennings', NULL, 'jennings', 1, '30.6041000000', '-83.0979200000'),
(7160171, 7155751, 'US', 'Jensen Beach', NULL, 'jensen-beach', 1, '27.2544900000', '-80.2297700000'),
(7160570, 7155751, 'US', 'June Park', NULL, 'june-park', 1, '28.0722400000', '-80.6800600000'),
(7160604, 7155751, 'US', 'Juno Beach', NULL, 'juno-beach', 1, '26.8797800000', '-80.0533700000'),
(7160609, 7155751, 'US', 'Juno Ridge', NULL, 'juno-ridge', 1, '26.8481200000', '-80.0622600000'),
(7160610, 7155751, 'US', 'Jupiter', NULL, 'jupiter', 1, '26.9342200000', '-80.0942100000'),
(7160615, 7155751, 'US', 'Jupiter Inlet Beach Colony', NULL, 'jupiter-inlet-beach-colony', 1, '26.9489500000', '-80.0747600000'),
(7160617, 7155751, 'US', 'Jupiter Island', NULL, 'jupiter-island', 1, '27.0314400000', '-80.1014300000'),
(7160651, 7155751, 'US', 'Kathleen', NULL, 'kathleen', 1, '28.1208500000', '-82.0231400000'),
(7160705, 7155751, 'US', 'Kendale Lakes', NULL, 'kendale-lakes', 1, '25.7081600000', '-80.4070000000'),
(7160711, 7155751, 'US', 'Kendall', NULL, 'kendall', 1, '25.6792700000', '-80.3172700000'),
(7160717, 7155751, 'US', 'Kendall Green', NULL, 'kendall-green', 1, '26.2539700000', '-80.1239300000'),
(7160749, 7155751, 'US', 'Kenneth City', NULL, 'kenneth-city', 1, '27.8155800000', '-82.7201000000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7160752, 7155751, 'US', 'Kensington Park', NULL, 'kensington-park', 1, '27.3594900000', '-82.4964900000'),
(7160789, 7155751, 'US', 'Key Biscayne', NULL, 'key-biscayne', 1, '25.6937100000', '-80.1628200000'),
(7160792, 7155751, 'US', 'Key Colony Beach', NULL, 'key-colony-beach', 1, '24.7209700000', '-81.0186800000'),
(7160795, 7155751, 'US', 'Key Largo', NULL, 'key-largo', 1, '25.0865200000', '-80.4472800000'),
(7160812, 7155751, 'US', 'Key West', NULL, 'key-west', 1, '24.5552400000', '-81.7816300000'),
(7160822, 7155751, 'US', 'Keystone', NULL, 'keystone', 1, '28.1558500000', '-82.6212100000'),
(7160830, 7155751, 'US', 'Keystone Heights', NULL, 'keystone-heights', 1, '29.7860800000', '-82.0314900000'),
(7160932, 7155751, 'US', 'Kings Point', NULL, 'kings-point', 1, '26.4453500000', '-80.1397700000'),
(7160983, 7155751, 'US', 'Kissimmee', NULL, 'kissimmee', 1, '28.3046800000', '-81.4166700000'),
(7161075, 7155751, 'US', 'LaBelle', NULL, 'labelle', 1, '26.7617300000', '-81.4384100000'),
(7161079, 7155751, 'US', 'La Crosse', NULL, 'la-crosse', 1, '29.8433000000', '-82.4048300000'),
(7161110, 7155751, 'US', 'Lacoochee', NULL, 'lacoochee', 1, '28.4658300000', '-82.1720300000'),
(7161118, 7155751, 'US', 'Lady Lake', NULL, 'lady-lake', 1, '28.9174900000', '-81.9228600000'),
(7161141, 7155751, 'US', 'Laguna Beach', NULL, 'laguna-beach', 1, '30.2396500000', '-85.9241000000'),
(7161150, 7155751, 'US', 'Lake Alfred', NULL, 'lake-alfred', 1, '28.0919600000', '-81.7234100000'),
(7161161, 7155751, 'US', 'Lake Belvedere Estates', NULL, 'lake-belvedere-estates', 1, '26.6892300000', '-80.1333800000'),
(7161168, 7155751, 'US', 'Lake Buena Vista', NULL, 'lake-buena-vista', 1, '28.3936200000', '-81.5386800000'),
(7161171, 7155751, 'US', 'Lake Butler', NULL, 'lake-butler', 1, '30.0227400000', '-82.3395600000'),
(7161187, 7155751, 'US', 'Lake City', NULL, 'lake-city', 1, '30.1896800000', '-82.6392900000'),
(7161195, 7155751, 'US', 'Lake Clarke Shores', NULL, 'lake-clarke-shores', 1, '26.6453400000', '-80.0758800000'),
(7161228, 7155751, 'US', 'Lake Forest', NULL, 'lake-forest', 1, '25.9775900000', '-80.1831000000'),
(7161250, 7155751, 'US', 'Lake Hamilton', NULL, 'lake-hamilton', 1, '28.0444600000', '-81.6278500000'),
(7161252, 7155751, 'US', 'Lake Harbor', NULL, 'lake-harbor', 1, '26.6931200000', '-80.8145100000'),
(7161253, 7155751, 'US', 'Lake Hart', NULL, 'lake-hart', 1, '28.3927800000', '-81.2406200000'),
(7161254, 7155751, 'US', 'Lake Helen', NULL, 'lake-helen', 1, '28.9808200000', '-81.2333900000'),
(7161283, 7155751, 'US', 'Lake Kathryn', NULL, 'lake-kathryn', 1, '29.0152600000', '-81.4914600000'),
(7161292, 7155751, 'US', 'Lake Lindsey Village', NULL, 'lake-lindsey-village', 1, '28.6344400000', '-82.3623600000'),
(7161293, 7155751, 'US', 'Lake Lindsey', NULL, 'lake-lindsey', 1, '28.6319400000', '-82.3616500000'),
(7161296, 7155751, 'US', 'Lake Lorraine', NULL, 'lake-lorraine', 1, '30.4415900000', '-86.5652300000'),
(7161298, 7155751, 'US', 'Lake Lucerne', NULL, 'lake-lucerne', 1, '25.9650900000', '-80.2414400000'),
(7161313, 7155751, 'US', 'Lake Magdalene', NULL, 'lake-magdalene', 1, '28.0741800000', '-82.4717600000'),
(7161327, 7155751, 'US', 'Lake Panasoffkee', NULL, 'lake-panasoffkee', 1, '28.7558200000', '-82.0948100000'),
(7161334, 7155751, 'US', 'Lake Park', NULL, 'lake-park', 1, '26.8003400000', '-80.0664300000'),
(7161344, 7155751, 'US', 'Lake Placid', NULL, 'lake-placid', 1, '27.3519700000', '-81.3263100000'),
(7161352, 7155751, 'US', 'Lake Sarasota', NULL, 'lake-sarasota', 1, '27.2925500000', '-82.4376000000'),
(7161373, 7155751, 'US', 'Lake Mary', NULL, 'lake-mary', 1, '28.7588800000', '-81.3178400000'),
(7161400, 7155751, 'US', 'Lake Wales', NULL, 'lake-wales', 1, '27.9014100000', '-81.5859100000'),
(7161422, 7155751, 'US', 'Lake Worth', NULL, 'lake-worth', 1, '26.6170800000', '-80.0723100000'),
(7161424, 7155751, 'US', 'Lake Worth Corridor', NULL, 'lake-worth-corridor', 1, '26.6164900000', '-80.1010200000'),
(7161438, 7155751, 'US', 'Lakeland', NULL, 'lakeland', 1, '28.0394700000', '-81.9498000000'),
(7161444, 7155751, 'US', 'Lakeland Highlands', NULL, 'lakeland-highlands', 1, '27.9597500000', '-81.9500800000'),
(7161460, 7155751, 'US', 'Lakes by the Bay', NULL, 'lakes-by-the-bay', 1, '25.5723300000', '-80.3253300000'),
(7161461, 7155751, 'US', 'Lakeside', NULL, 'lakeside', 1, '30.1299600000', '-81.7681500000'),
(7161510, 7155751, 'US', 'Lakewood Park', NULL, 'lakewood-park', 1, '27.5430900000', '-80.4022700000'),
(7161523, 7155751, 'US', 'Lamont', NULL, 'lamont', 1, '30.3771500000', '-83.8129400000'),
(7161534, 7155751, 'US', 'Land O'' Lakes', NULL, 'land-o-lakes', 1, '28.2189000000', '-82.4575900000'),
(7161571, 7155751, 'US', 'Lantana', NULL, 'lantana', 1, '26.5867400000', '-80.0519900000'),
(7161580, 7155751, 'US', 'Largo', NULL, 'largo', 1, '27.9097900000', '-82.7884200000'),
(7161616, 7155751, 'US', 'Lauderdale Lakes', NULL, 'lauderdale-lakes', 1, '26.1664700000', '-80.2083800000'),
(7161624, 7155751, 'US', 'Lauderdale-by-the-Sea', NULL, 'lauderdale-by-the-sea', 1, '26.1920300000', '-80.0964300000'),
(7161625, 7155751, 'US', 'Lauderhill', NULL, 'lauderhill', 1, '26.1403600000', '-80.2133800000'),
(7161659, 7155751, 'US', 'Laurel', NULL, 'laurel', 1, '27.1437800000', '-82.4615800000'),
(7161662, 7155751, 'US', 'Laurel Hill', NULL, 'laurel-hill', 1, '30.9657400000', '-86.4596700000'),
(7161685, 7155751, 'US', 'Lawtey', NULL, 'lawtey', 1, '30.0441300000', '-82.0717700000'),
(7161692, 7155751, 'US', 'Layton', NULL, 'layton', 1, '24.8242500000', '-80.8149600000'),
(7161695, 7155751, 'US', 'Lazy Lake', NULL, 'lazy-lake', 1, '26.1562000000', '-80.1447700000'),
(7161705, 7155751, 'US', 'Lealman', NULL, 'lealman', 1, '27.8211400000', '-82.6792700000'),
(7161733, 7155751, 'US', 'Lecanto', NULL, 'lecanto', 1, '28.8516500000', '-82.4876000000'),
(7161739, 7155751, 'US', 'Lee', NULL, 'lee', 1, '30.4199600000', '-83.3011300000'),
(7161771, 7155751, 'US', 'Leesburg', NULL, 'leesburg', 1, '28.8108200000', '-81.8778600000'),
(7161785, 7155751, 'US', 'Lehigh Acres', NULL, 'lehigh-acres', 1, '26.6253500000', '-81.6248000000'),
(7161797, 7155751, 'US', 'Leisure City', NULL, 'leisure-city', 1, '25.4953900000', '-80.4292200000'),
(7161807, 7155751, 'US', 'Lely', NULL, 'lely', 1, '26.1006500000', '-81.7284200000'),
(7161810, 7155751, 'US', 'Lely Resort', NULL, 'lely-resort', 1, '26.0809300000', '-81.6978600000'),
(7161855, 7155751, 'US', 'Lemon Grove', NULL, 'lemon-grove', 1, '27.5583700000', '-81.6781400000'),
(7161957, 7155751, 'US', 'Lighthouse Point', NULL, 'lighthouse-point', 1, '26.2756400000', '-80.0872700000'),
(7161994, 7155751, 'US', 'Limestone', NULL, 'limestone', 1, '27.3656000000', '-81.8989700000'),
(7162004, 7155751, 'US', 'Limestone Creek', NULL, 'limestone-creek', 1, '26.9428400000', '-80.1411500000'),
(7162071, 7155751, 'US', 'Lisbon', NULL, 'lisbon', 1, '28.8705400000', '-81.7895200000'),
(7162461, 7155751, 'US', 'Live Oak', NULL, 'live-oak', 1, '30.2949500000', '-82.9840200000'),
(7162518, 7155751, 'US', 'Lloyd', NULL, 'lloyd', 1, '30.4777500000', '-84.0227900000'),
(7162532, 7155751, 'US', 'Lochmoor Waterway Estates', NULL, 'lochmoor-waterway-estates', 1, '26.6442400000', '-81.9098100000'),
(7162539, 7155751, 'US', 'Lockhart', NULL, 'lockhart', 1, '28.6194400000', '-81.4425700000'),
(7162776, 7155751, 'US', 'Longboat Key', NULL, 'longboat-key', 1, '27.4125400000', '-82.6589900000'),
(7162783, 7155751, 'US', 'Longwood', NULL, 'longwood', 1, '28.7030500000', '-81.3384000000'),
(7162856, 7155751, 'US', 'Loughman', NULL, 'loughman', 1, '28.2419600000', '-81.5667400000'),
(7162911, 7155751, 'US', 'Lower Grand Lagoon', NULL, 'lower-grand-lagoon', 1, '30.1440900000', '-85.7507600000'),
(7162948, 7155751, 'US', 'Loxahatchee Groves', NULL, 'loxahatchee-groves', 1, '26.6836800000', '-80.2797700000'),
(7163033, 7155751, 'US', 'Lutz', NULL, 'lutz', 1, '28.1511200000', '-82.4614800000'),
(7163049, 7155751, 'US', 'Lynn Haven', NULL, 'lynn-haven', 1, '30.2454800000', '-85.6482600000'),
(7163083, 7155751, 'US', 'Macclenny', NULL, 'macclenny', 1, '30.2821800000', '-82.1220600000'),
(7163129, 7155751, 'US', 'Madeira Beach', NULL, 'madeira-beach', 1, '27.7980800000', '-82.7973200000'),
(7163140, 7155751, 'US', 'Madison', NULL, 'madison', 1, '30.4693800000', '-83.4129300000'),
(7163220, 7155751, 'US', 'Maitland', NULL, 'maitland', 1, '28.6277800000', '-81.3631200000'),
(7163232, 7155751, 'US', 'Malabar', NULL, 'malabar', 1, '28.0036300000', '-80.5656100000'),
(7163248, 7155751, 'US', 'Malone', NULL, 'malone', 1, '30.9576900000', '-85.1621500000'),
(7163263, 7155751, 'US', 'Manalapan', NULL, 'manalapan', 1, '26.5692400000', '-80.0447600000'),
(7163267, 7155751, 'US', 'Manasota Key', NULL, 'manasota-key', 1, '26.9253400000', '-82.3520400000'),
(7163296, 7155751, 'US', 'Manatee Road', NULL, 'manatee-road', 1, '29.5130200000', '-82.9142900000'),
(7163318, 7155751, 'US', 'Mango', NULL, 'mango', 1, '27.9797400000', '-82.3064800000'),
(7163322, 7155751, 'US', 'Mangonia Park', NULL, 'mangonia-park', 1, '26.7603400000', '-80.0736500000'),
(7163379, 7155751, 'US', 'Marathon', NULL, 'marathon', 1, '24.7137500000', '-81.0903500000'),
(7163384, 7155751, 'US', 'Marco', NULL, 'marco', 1, '25.9726000000', '-81.7289800000'),
(7163388, 7155751, 'US', 'Marco Island', NULL, 'marco-island', 1, '25.9412100000', '-81.7184200000'),
(7163407, 7155751, 'US', 'Margate', NULL, 'margate', 1, '26.2445300000', '-80.2064400000'),
(7163428, 7155751, 'US', 'Marianna', NULL, 'marianna', 1, '30.7743600000', '-85.2268700000'),
(7163446, 7155751, 'US', 'Marineland', NULL, 'marineland', 1, '29.6688600000', '-81.2134000000'),
(7163599, 7155751, 'US', 'Mary Esther', NULL, 'mary-esther', 1, '30.4101500000', '-86.6650900000'),
(7163633, 7155751, 'US', 'Masaryktown', NULL, 'masaryktown', 1, '28.4416700000', '-82.4570400000'),
(7163635, 7155751, 'US', 'Mascotte', NULL, 'mascotte', 1, '28.5783300000', '-81.8867500000'),
(7163723, 7155751, 'US', 'Mayo', NULL, 'mayo', 1, '30.0530000000', '-83.1748600000'),
(7163833, 7155751, 'US', 'McGregor', NULL, 'mcgregor', 1, '26.5609100000', '-81.9145300000'),
(7163839, 7155751, 'US', 'McIntosh', NULL, 'mcintosh', 1, '29.4488600000', '-82.2220400000'),
(7163918, 7155751, 'US', 'Meadow Woods', NULL, 'meadow-woods', 1, '28.3855600000', '-81.3664600000'),
(7163952, 7155751, 'US', 'Medley', NULL, 'medley', 1, '25.8406500000', '-80.3264400000'),
(7163954, 7155751, 'US', 'Medulla', NULL, 'medulla', 1, '27.9678000000', '-81.9734200000'),
(7163971, 7155751, 'US', 'Melbourne', NULL, 'melbourne', 1, '28.0836300000', '-80.6081100000'),
(7163972, 7155751, 'US', 'Melbourne Beach', NULL, 'melbourne-beach', 1, '28.0683500000', '-80.5603300000'),
(7163984, 7155751, 'US', 'Melbourne Village', NULL, 'melbourne-village', 1, '28.0852900000', '-80.6664400000'),
(7163994, 7155751, 'US', 'Melrose Park', NULL, 'melrose-park', 1, '26.1134200000', '-80.1933800000'),
(7164047, 7155751, 'US', 'Memphis', NULL, 'memphis', 1, '27.5358700000', '-82.5612100000'),
(7164092, 7155751, 'US', 'Merritt Island', NULL, 'merritt-island', 1, '28.5391700000', '-80.6720000000'),
(7164131, 7155751, 'US', 'Mexico Beach', NULL, 'mexico-beach', 1, '29.9480900000', '-85.4199500000'),
(7164138, 7155751, 'US', 'Miami', NULL, 'miami', 1, '25.7742700000', '-80.1936600000'),
(7164143, 7155751, 'US', 'Miami Beach', NULL, 'miami-beach', 1, '25.7906500000', '-80.1300500000'),
(7164166, 7155751, 'US', 'Miami Gardens', NULL, 'miami-gardens', 1, '25.9798100000', '-80.2025500000'),
(7164186, 7155751, 'US', 'Miami Lakes', NULL, 'miami-lakes', 1, '25.9087100000', '-80.3086600000'),
(7164211, 7155751, 'US', 'Miami Shores', NULL, 'miami-shores', 1, '25.8631500000', '-80.1928300000'),
(7164223, 7155751, 'US', 'Miami Springs', NULL, 'miami-springs', 1, '25.8223200000', '-80.2895000000'),
(7164250, 7155751, 'US', 'Micanopy', NULL, 'micanopy', 1, '29.5046900000', '-82.2798200000'),
(7164253, 7155751, 'US', 'Micco', NULL, 'micco', 1, '27.8805800000', '-80.5003300000'),
(7164343, 7155751, 'US', 'Midway', NULL, 'midway', 1, '30.4954800000', '-84.4543500000'),
(7164387, 7155751, 'US', 'Middleburg', NULL, 'middleburg', 1, '30.0688500000', '-81.8603800000'),
(7164547, 7155751, 'US', 'Milton', NULL, 'milton', 1, '30.6324100000', '-87.0396900000'),
(7164554, 7155751, 'US', 'Mims', NULL, 'mims', 1, '28.6652700000', '-80.8447800000'),
(7164575, 7155751, 'US', 'Minneola', NULL, 'minneola', 1, '28.5744400000', '-81.7461900000'),
(7164601, 7155751, 'US', 'Miramar', NULL, 'miramar', 1, '25.9873100000', '-80.2322700000'),
(7164602, 7155751, 'US', 'Miramar Beach', NULL, 'miramar-beach', 1, '30.3743700000', '-86.3585600000'),
(7164728, 7155751, 'US', 'Molino', NULL, 'molino', 1, '30.7240800000', '-87.3141400000'),
(7164803, 7155751, 'US', 'Monticello', NULL, 'monticello', 1, '30.5451500000', '-83.8713000000'),
(7164806, 7155751, 'US', 'Montverde', NULL, 'montverde', 1, '28.6002800000', '-81.6739600000'),
(7164836, 7155751, 'US', 'Moore Haven', NULL, 'moore-haven', 1, '26.8331200000', '-81.0931200000'),
(7164950, 7155751, 'US', 'Morriston', NULL, 'morriston', 1, '29.2816400000', '-82.4378800000'),
(7165055, 7155751, 'US', 'Mount Carmel', NULL, 'mount-carmel', 1, '30.9810200000', '-87.1185800000'),
(7165069, 7155751, 'US', 'Mount Dora', NULL, 'mount-dora', 1, '28.8024900000', '-81.6445200000'),
(7165218, 7155751, 'US', 'Mount Plymouth', NULL, 'mount-plymouth', 1, '28.8080500000', '-81.5331300000'),
(7165406, 7155751, 'US', 'Mulat', NULL, 'mulat', 1, '30.5513100000', '-87.1233000000'),
(7165419, 7155751, 'US', 'Mulberry', NULL, 'mulberry', 1, '27.8953000000', '-81.9734200000'),
(7165457, 7155751, 'US', 'Munson', NULL, 'munson', 1, '30.8576900000', '-86.8730200000'),
(7165519, 7155751, 'US', 'Myrtle Grove', NULL, 'myrtle-grove', 1, '30.4210300000', '-87.3074700000'),
(7165565, 7155751, 'US', 'Naples', NULL, 'naples', 1, '26.1423400000', '-81.7959600000'),
(7165574, 7155751, 'US', 'Naples Manor', NULL, 'naples-manor', 1, '26.0887000000', '-81.7262000000'),
(7165576, 7155751, 'US', 'Naples Park', NULL, 'naples-park', 1, '26.2617500000', '-81.8092500000'),
(7165580, 7155751, 'US', 'Naranja', NULL, 'naranja', 1, '25.5181600000', '-80.4228300000'),
(7165637, 7155751, 'US', 'Navarre', NULL, 'navarre', 1, '30.4015900000', '-86.8635700000'),
(7165695, 7155751, 'US', 'Neptune Beach', NULL, 'neptune-beach', 1, '30.3119100000', '-81.3964700000'),
(7165869, 7155751, 'US', 'New Port Richey', NULL, 'new-port-richey', 1, '28.2441800000', '-82.7192700000'),
(7165913, 7155751, 'US', 'New Smyrna Beach', NULL, 'new-smyrna-beach', 1, '29.0258200000', '-80.9270000000'),
(7165961, 7155751, 'US', 'Newberry', NULL, 'newberry', 1, '29.6463500000', '-82.6065000000'),
(7165995, 7155751, 'US', 'Niceville', NULL, 'niceville', 1, '30.5168600000', '-86.4821700000'),
(7166046, 7155751, 'US', 'Nobleton', NULL, 'nobleton', 1, '28.6455500000', '-82.2639800000'),
(7166047, 7155751, 'US', 'Nocatee', NULL, 'nocatee', 1, '27.1603300000', '-81.8823100000'),
(7166049, 7155751, 'US', 'Nokomis', NULL, 'nokomis', 1, '27.1192200000', '-82.4442600000'),
(7166054, 7155751, 'US', 'Noma', NULL, 'noma', 1, '30.9821300000', '-85.6185400000'),
(7166066, 7155751, 'US', 'Norland', NULL, 'norland', 1, '25.9489800000', '-80.2122700000'),
(7166096, 7155751, 'US', 'North Andrews Gardens', NULL, 'north-andrews-gardens', 1, '26.1914700000', '-80.1442100000'),
(7166105, 7155751, 'US', 'North Bay Village', NULL, 'north-bay-village', 1, '25.8462100000', '-80.1539400000'),
(7166109, 7155751, 'US', 'North Beach', NULL, 'north-beach', 1, '27.7883600000', '-80.4142200000'),
(7166124, 7155751, 'US', 'North Brooksville', NULL, 'north-brooksville', 1, '28.5730500000', '-82.4081500000'),
(7166154, 7155751, 'US', 'North DeLand', NULL, 'north-deland', 1, '29.0494300000', '-81.2981200000'),
(7166195, 7155751, 'US', 'North Fort Myers', NULL, 'north-fort-myers', 1, '26.6672900000', '-81.8800900000'),
(7166208, 7155751, 'US', 'North Key Largo', NULL, 'north-key-largo', 1, '25.2673400000', '-80.3233900000'),
(7166222, 7155751, 'US', 'North Lauderdale', NULL, 'north-lauderdale', 1, '26.2173000000', '-80.2258800000'),
(7166232, 7155751, 'US', 'North Miami', NULL, 'north-miami', 1, '25.8900900000', '-80.1867100000'),
(7166233, 7155751, 'US', 'North Miami Beach', NULL, 'north-miami-beach', 1, '25.9331500000', '-80.1625500000'),
(7166253, 7155751, 'US', 'North Palm Beach', NULL, 'north-palm-beach', 1, '26.8175600000', '-80.0819900000'),
(7166274, 7155751, 'US', 'North Port', NULL, 'north-port', 1, '27.0442200000', '-82.2359300000'),
(7166288, 7155751, 'US', 'North Redington Beach', NULL, 'north-redington-beach', 1, '27.8161400000', '-82.8206600000'),
(7166293, 7155751, 'US', 'North River Shores', NULL, 'north-river-shores', 1, '27.2175500000', '-80.2697700000'),
(7166298, 7155751, 'US', 'North Sarasota', NULL, 'north-sarasota', 1, '27.3739300000', '-82.5184300000'),
(7166547, 7155751, 'US', 'Oak Hill', NULL, 'oak-hill', 1, '28.8644300000', '-80.8545000000'),
(7166583, 7155751, 'US', 'Oak Ridge', NULL, 'oak-ridge', 1, '28.4711200000', '-81.4245200000'),
(7166628, 7155751, 'US', 'Oakland', NULL, 'oakland', 1, '28.5550000000', '-81.6331300000'),
(7166638, 7155751, 'US', 'Oakland Park', NULL, 'oakland-park', 1, '26.1723100000', '-80.1319900000'),
(7166673, 7155751, 'US', 'Ocala', NULL, 'ocala', 1, '29.1872000000', '-82.1400900000'),
(7166721, 7155751, 'US', 'Ocean Breeze Park', NULL, 'ocean-breeze-park', 1, '27.2358800000', '-80.2206000000'),
(7166723, 7155751, 'US', 'Ocean City', NULL, 'ocean-city', 1, '30.4410300000', '-86.6135600000'),
(7166738, 7155751, 'US', 'Ocean Ridge', NULL, 'ocean-ridge', 1, '26.5270200000', '-80.0483700000'),
(7166776, 7155751, 'US', 'Ocoee', NULL, 'ocoee', 1, '28.5691700000', '-81.5439600000'),
(7166787, 7155751, 'US', 'Odessa', NULL, 'odessa', 1, '28.1939000000', '-82.5917600000'),
(7166805, 7155751, 'US', 'Ojus', NULL, 'ojus', 1, '25.9484300000', '-80.1506000000'),
(7166809, 7155751, 'US', 'Okahumpka', NULL, 'okahumpka', 1, '28.7477700000', '-81.8959100000'),
(7166822, 7155751, 'US', 'Okeechobee', NULL, 'okeechobee', 1, '27.2439300000', '-80.8297800000'),
(7166936, 7155751, 'US', 'Oldsmar', NULL, 'oldsmar', 1, '28.0341800000', '-82.6651000000'),
(7166943, 7155751, 'US', 'Olga', NULL, 'olga', 1, '26.7189600000', '-81.7123000000'),
(7166979, 7155751, 'US', 'Olympia Heights', NULL, 'olympia-heights', 1, '25.7267700000', '-80.3553300000'),
(7166988, 7155751, 'US', 'Ona', NULL, 'ona', 1, '27.4819800000', '-81.9189700000'),
(7167003, 7155751, 'US', 'Opa-locka', NULL, 'opa-locka', 1, '25.9023200000', '-80.2503300000'),
(7167055, 7155751, 'US', 'Orange City', NULL, 'orange-city', 1, '28.9488800000', '-81.2986700000'),
(7167102, 7155751, 'US', 'Orange Park', NULL, 'orange-park', 1, '30.1660700000', '-81.7064800000'),
(7167127, 7155751, 'US', 'Orangetree', NULL, 'orangetree', 1, '26.2928600000', '-81.5884200000'),
(7167133, 7155751, 'US', 'Orchid', NULL, 'orchid', 1, '27.7728100000', '-80.4170000000'),
(7167142, 7155751, 'US', 'Oriole Beach', NULL, 'oriole-beach', 1, '30.3738100000', '-87.0913600000'),
(7167147, 7155751, 'US', 'Orlando', NULL, 'orlando', 1, '28.5383400000', '-81.3792400000'),
(7167176, 7155751, 'US', 'Orlovista', NULL, 'orlovista', 1, '28.5383400000', '-81.4603500000'),
(7167178, 7155751, 'US', 'Ormond Beach', NULL, 'ormond-beach', 1, '29.2858100000', '-81.0558900000'),
(7167190, 7155751, 'US', 'Ormond-by-the-Sea', NULL, 'ormond-by-the-sea', 1, '29.3491400000', '-81.0664500000'),
(7167245, 7155751, 'US', 'Osprey', NULL, 'osprey', 1, '27.1961600000', '-82.4903700000'),
(7167267, 7155751, 'US', 'Otter Creek', NULL, 'otter-creek', 1, '29.3249700000', '-82.7717800000'),
(7167348, 7155751, 'US', 'Oviedo', NULL, 'oviedo', 1, '28.6700000000', '-81.2081200000'),
(7167424, 7155751, 'US', 'Pace', NULL, 'pace', 1, '30.5993600000', '-87.1610800000'),
(7167465, 7155751, 'US', 'Page Park', NULL, 'page-park', 1, '26.5792400000', '-81.8620300000'),
(7167473, 7155751, 'US', 'Pahokee', NULL, 'pahokee', 1, '26.8200600000', '-80.6653400000'),
(7167478, 7155751, 'US', 'Paisley', NULL, 'paisley', 1, '28.9836000000', '-81.5417400000'),
(7167482, 7155751, 'US', 'Palatka', NULL, 'palatka', 1, '29.6485800000', '-81.6375800000'),
(7167495, 7155751, 'US', 'Palm Aire', NULL, 'palm-aire', 1, '26.2061900000', '-80.1917100000'),
(7167499, 7155751, 'US', 'Palm Bay', NULL, 'palm-bay', 1, '28.0344600000', '-80.5886600000'),
(7167505, 7155751, 'US', 'Palm Beach', NULL, 'palm-beach', 1, '26.7056200000', '-80.0364300000'),
(7167519, 7155751, 'US', 'Palm Beach Gardens', NULL, 'palm-beach-gardens', 1, '26.8233900000', '-80.1386500000'),
(7167533, 7155751, 'US', 'Palm Beach Shores', NULL, 'palm-beach-shores', 1, '26.7781200000', '-80.0356000000'),
(7167536, 7155751, 'US', 'Palm City', NULL, 'palm-city', 1, '27.1678300000', '-80.2661600000'),
(7167538, 7155751, 'US', 'Palm Coast', NULL, 'palm-coast', 1, '29.5849700000', '-81.2078400000'),
(7167545, 7155751, 'US', 'Palm Harbor', NULL, 'palm-harbor', 1, '28.0780700000', '-82.7637100000'),
(7167581, 7155751, 'US', 'Palm Shores', NULL, 'palm-shores', 1, '28.1844600000', '-80.6528300000'),
(7167583, 7155751, 'US', 'Palm Springs', NULL, 'palm-springs', 1, '26.6359000000', '-80.0961500000'),
(7167594, 7155751, 'US', 'Palm Springs North', NULL, 'palm-springs-north', 1, '25.9351000000', '-80.3338300000'),
(7167601, 7155751, 'US', 'Palm Valley', NULL, 'palm-valley', 1, '30.1774600000', '-81.3875800000'),
(7167632, 7155751, 'US', 'Palmetto', NULL, 'palmetto', 1, '27.5214300000', '-82.5723200000'),
(7167634, 7155751, 'US', 'Palmetto Bay', NULL, 'palmetto-bay', 1, '25.6217700000', '-80.3247700000'),
(7167647, 7155751, 'US', 'Palmetto Estates', NULL, 'palmetto-estates', 1, '25.6214900000', '-80.3620000000'),
(7167671, 7155751, 'US', 'Palmona Park', NULL, 'palmona-park', 1, '26.6864600000', '-81.8964800000'),
(7167689, 7155751, 'US', 'Panacea', NULL, 'panacea', 1, '30.0374300000', '-84.3876800000'),
(7167694, 7155751, 'US', 'Panama City', NULL, 'panama-city', 1, '30.1594600000', '-85.6598300000'),
(7167695, 7155751, 'US', 'Panama City Beach', NULL, 'panama-city-beach', 1, '30.1765900000', '-85.8054900000'),
(7167738, 7155751, 'US', 'Paradise Heights', NULL, 'paradise-heights', 1, '28.6236100000', '-81.5439600000'),
(7167797, 7155751, 'US', 'Parker', NULL, 'parker', 1, '30.1310400000', '-85.6032600000'),
(7167829, 7155751, 'US', 'Parkland', NULL, 'parkland', 1, '26.3100800000', '-80.2372700000'),
(7167966, 7155751, 'US', 'Paxton', NULL, 'paxton', 1, '30.9818000000', '-86.3085500000'),
(7168062, 7155751, 'US', 'Pebble Creek', NULL, 'pebble-creek', 1, '28.1483500000', '-82.3456500000'),
(7168095, 7155751, 'US', 'Pelican Bay', NULL, 'pelican-bay', 1, '26.2312000000', '-81.8056400000'),
(7168138, 7155751, 'US', 'Pembroke Park', NULL, 'pembroke-park', 1, '25.9878700000', '-80.1747700000'),
(7168139, 7155751, 'US', 'Pembroke Pines', NULL, 'pembroke-pines', 1, '26.0031500000', '-80.2239400000'),
(7168161, 7155751, 'US', 'Penney Farms', NULL, 'penney-farms', 1, '29.9796900000', '-81.8103700000'),
(7168228, 7155751, 'US', 'Pensacola', NULL, 'pensacola', 1, '30.4213100000', '-87.2169100000'),
(7168244, 7155751, 'US', 'Perry', NULL, 'perry', 1, '30.1176600000', '-83.5827400000'),
(7168371, 7155751, 'US', 'Pierson', NULL, 'pierson', 1, '29.2394200000', '-81.4656300000'),
(7168418, 7155751, 'US', 'Pine Castle', NULL, 'pine-castle', 1, '28.4719500000', '-81.3678500000'),
(7168459, 7155751, 'US', 'Pine Hills', NULL, 'pine-hills', 1, '28.5577800000', '-81.4534000000'),
(7168475, 7155751, 'US', 'Pine Island', NULL, 'pine-island', 1, '28.5752700000', '-82.6526000000'),
(7168493, 7155751, 'US', 'Pine Island Center', NULL, 'pine-island-center', 1, '26.6136900000', '-82.1181500000'),
(7168506, 7155751, 'US', 'Pine Island Ridge', NULL, 'pine-island-ridge', 1, '26.0948100000', '-80.2739400000'),
(7168525, 7155751, 'US', 'Pine Lakes', NULL, 'pine-lakes', 1, '28.9411000000', '-81.4300700000'),
(7168556, 7155751, 'US', 'Pine Manor', NULL, 'pine-manor', 1, '26.5728500000', '-81.8781400000'),
(7168563, 7155751, 'US', 'Pine Ridge', NULL, 'pine-ridge', 1, '28.9383100000', '-82.4734300000'),
(7168590, 7155751, 'US', 'Pinecrest', NULL, 'pinecrest', 1, '25.6670500000', '-80.3081100000'),
(7168609, 7155751, 'US', 'Pineland', NULL, 'pineland', 1, '26.6606300000', '-82.1534300000'),
(7168630, 7155751, 'US', 'Pinellas Park', NULL, 'pinellas-park', 1, '27.8428000000', '-82.6995400000'),
(7168659, 7155751, 'US', 'Pinewood', NULL, 'pinewood', 1, '25.8689800000', '-80.2169900000'),
(7168741, 7155751, 'US', 'Pittman', NULL, 'pittman', 1, '28.9999800000', '-81.6417400000'),
(7168761, 7155751, 'US', 'Placid Lakes', NULL, 'placid-lakes', 1, '27.2414400000', '-81.4070200000'),
(7168773, 7155751, 'US', 'Plant City', NULL, 'plant-city', 1, '28.0188800000', '-82.1146900000'),
(7168782, 7155751, 'US', 'Plantation', NULL, 'plantation', 1, '26.1342100000', '-80.2318400000'),
(7168793, 7155751, 'US', 'Plantation Island', NULL, 'plantation-island', 1, '25.8439900000', '-81.3659100000'),
(7168804, 7155751, 'US', 'Plantation Mobile Home Park', NULL, 'plantation-mobile-home-park', 1, '26.7031200000', '-80.1322700000'),
(7168930, 7155751, 'US', 'Poinciana', NULL, 'poinciana', 1, '28.1402900000', '-81.4584100000'),
(7168947, 7155751, 'US', 'Point Baker', NULL, 'point-baker', 1, '30.6901900000', '-87.0535800000'),
(7168985, 7155751, 'US', 'Polk City', NULL, 'polk-city', 1, '28.1825100000', '-81.8239700000'),
(7169012, 7155751, 'US', 'Pomona Park', NULL, 'pomona-park', 1, '29.5002500000', '-81.5914700000'),
(7169014, 7155751, 'US', 'Pompano Beach', NULL, 'pompano-beach', 1, '26.2378600000', '-80.1247700000'),
(7169018, 7155751, 'US', 'Pompano Beach Highlands', NULL, 'pompano-beach-highlands', 1, '26.2828600000', '-80.1069900000'),
(7169033, 7155751, 'US', 'Ponce Inlet', NULL, 'ponce-inlet', 1, '29.0963700000', '-80.9370000000'),
(7169035, 7155751, 'US', 'Ponce de Leon', NULL, 'ponce-de-leon', 1, '30.7229700000', '-85.9374400000'),
(7169060, 7155751, 'US', 'Ponte Vedra Beach', NULL, 'ponte-vedra-beach', 1, '30.2396900000', '-81.3856400000'),
(7169130, 7155751, 'US', 'Port Charlotte', NULL, 'port-charlotte', 1, '26.9761700000', '-82.0906400000'),
(7169144, 7155751, 'US', 'Port LaBelle', NULL, 'port-labelle', 1, '26.7564500000', '-81.4050800000'),
(7169156, 7155751, 'US', 'Port Orange', NULL, 'port-orange', 1, '29.1383200000', '-80.9956100000'),
(7169160, 7155751, 'US', 'Port Richey', NULL, 'port-richey', 1, '28.2716800000', '-82.7195500000'),
(7169166, 7155751, 'US', 'Port Saint Joe', NULL, 'port-saint-joe', 1, '29.8118800000', '-85.3029700000'),
(7169170, 7155751, 'US', 'Port Saint John', NULL, 'port-saint-john', 1, '28.4769500000', '-80.7886700000'),
(7169171, 7155751, 'US', 'Port Saint Lucie', NULL, 'port-saint-lucie', 1, '27.2939300000', '-80.3503300000'),
(7169176, 7155751, 'US', 'Port Salerno', NULL, 'port-salerno', 1, '27.1442200000', '-80.2006000000'),
(7169302, 7155751, 'US', 'Pretty Bayou', NULL, 'pretty-bayou', 1, '30.1965900000', '-85.6966000000'),
(7169345, 7155751, 'US', 'Princeton', NULL, 'princeton', 1, '25.5384400000', '-80.4089400000'),
(7169378, 7155751, 'US', 'Progress Village', NULL, 'progress-village', 1, '27.9003000000', '-82.3645400000'),
(7169452, 7155751, 'US', 'Punta Gorda', NULL, 'punta-gorda', 1, '26.9297800000', '-82.0453700000'),
(7169455, 7155751, 'US', 'Punta Gorda Isles', NULL, 'punta-gorda-isles', 1, '26.9175600000', '-82.0784200000'),
(7169461, 7155751, 'US', 'Punta Rassa', NULL, 'punta-rassa', 1, '26.4878600000', '-82.0123100000'),
(7169510, 7155751, 'US', 'Quincy', NULL, 'quincy', 1, '30.5871400000', '-84.5832500000'),
(7169576, 7155751, 'US', 'Raiford', NULL, 'raiford', 1, '30.0638500000', '-82.2365000000'),
(7169606, 7155751, 'US', 'Raleigh', NULL, 'raleigh', 1, '29.4416400000', '-82.4662200000'),
(7169780, 7155751, 'US', 'Reddick', NULL, 'reddick', 1, '29.3666400000', '-82.1973200000'),
(7169810, 7155751, 'US', 'Redington Beach', NULL, 'redington-beach', 1, '27.8086400000', '-82.8112100000'),
(7169811, 7155751, 'US', 'Redington Shores', NULL, 'redington-shores', 1, '27.8261400000', '-82.8289900000'),
(7170000, 7155751, 'US', 'Richmond Heights', NULL, 'richmond-heights', 1, '25.6314900000', '-80.3689400000'),
(7170005, 7155751, 'US', 'Richmond West', NULL, 'richmond-west', 1, '25.6105000000', '-80.4297100000'),
(7170014, 7155751, 'US', 'Ridge Manor', NULL, 'ridge-manor', 1, '28.5075000000', '-82.1703600000'),
(7170018, 7155751, 'US', 'Ridge Wood Heights', NULL, 'ridge-wood-heights', 1, '27.2872700000', '-82.5131500000'),
(7170019, 7155751, 'US', 'Ridgecrest', NULL, 'ridgecrest', 1, '27.8975000000', '-82.8052900000'),
(7170062, 7155751, 'US', 'Rio', NULL, 'rio', 1, '27.2194900000', '-80.2392100000'),
(7170092, 7155751, 'US', 'River Park', NULL, 'river-park', 1, '27.3142100000', '-80.3472700000'),
(7170156, 7155751, 'US', 'Riverview', NULL, 'riverview', 1, '27.8661400000', '-82.3264800000'),
(7170174, 7155751, 'US', 'Riviera Beach', NULL, 'riviera-beach', 1, '26.7753400000', '-80.0581000000'),
(7170301, 7155751, 'US', 'Rock Island', NULL, 'rock-island', 1, '26.1550900000', '-80.1769900000'),
(7170358, 7155751, 'US', 'Rockledge', NULL, 'rockledge', 1, '28.3508400000', '-80.7253300000'),
(7170446, 7155751, 'US', 'Roeville', NULL, 'roeville', 1, '30.6768600000', '-86.9935800000'),
(7170520, 7155751, 'US', 'Roseland', NULL, 'roseland', 1, '27.8358600000', '-80.4931100000'),
(7170556, 7155751, 'US', 'Rotonda West', NULL, 'rotonda-west', 1, '26.8836800000', '-82.2900900000'),
(7170617, 7155751, 'US', 'Royal Palm Beach', NULL, 'royal-palm-beach', 1, '26.7084000000', '-80.2306000000'),
(7170625, 7155751, 'US', 'Royal Palm Estates', NULL, 'royal-palm-estates', 1, '26.6817300000', '-80.1250400000'),
(7170688, 7155751, 'US', 'Ruskin', NULL, 'ruskin', 1, '27.7208600000', '-82.4331500000'),
(7170797, 7155751, 'US', 'Safety Harbor', NULL, 'safety-harbor', 1, '27.9908500000', '-82.6931600000'),
(7170894, 7155751, 'US', 'Saint Augustine', NULL, 'saint-augustine', 1, '29.8946900000', '-81.3145200000'),
(7170896, 7155751, 'US', 'Saint Augustine Beach', NULL, 'saint-augustine-beach', 1, '29.8505300000', '-81.2653500000'),
(7170908, 7155751, 'US', 'Saint Augustine Shores', NULL, 'saint-augustine-shores', 1, '29.8108000000', '-81.3103500000'),
(7170965, 7155751, 'US', 'Saint Cloud', NULL, 'saint-cloud', 1, '28.2489000000', '-81.2811800000'),
(7171010, 7155751, 'US', 'Saint George', NULL, 'saint-george', 1, '28.0564100000', '-82.7278800000'),
(7171061, 7155751, 'US', 'Saint James City', NULL, 'saint-james-city', 1, '26.4975800000', '-82.0784300000'),
(7171250, 7155751, 'US', 'Saint Leo', NULL, 'saint-leo', 1, '28.3372300000', '-82.2584200000'),
(7171257, 7155751, 'US', 'Saint Lucie', NULL, 'saint-lucie', 1, '27.4894800000', '-80.3397700000'),
(7171272, 7155751, 'US', 'Town of Saint Lucie Village', NULL, 'town-of-saint-lucie-village', 1, '27.4969900000', '-80.3417600000'),
(7171315, 7155751, 'US', 'Saint Marks', NULL, 'saint-marks', 1, '30.1612700000', '-84.2078400000'),
(7171522, 7155751, 'US', 'Saint Pete Beach', NULL, 'saint-pete-beach', 1, '27.7253100000', '-82.7412100000'),
(7171563, 7155751, 'US', 'St. Petersburg', NULL, 'st-petersburg', 1, '27.7708600000', '-82.6792700000'),
(7171741, 7155751, 'US', 'Samoset', NULL, 'samoset', 1, '27.4694800000', '-82.5414900000'),
(7171771, 7155751, 'US', 'San Antonio', NULL, 'san-antonio', 1, '28.3361100000', '-82.2745300000'),
(7171782, 7155751, 'US', 'San Carlos Park', NULL, 'san-carlos-park', 1, '26.4673000000', '-81.8014700000'),
(7172052, 7155751, 'US', 'Sanibel', NULL, 'sanibel', 1, '26.4489700000', '-82.0223100000'),
(7172086, 7155751, 'US', 'Sanford', NULL, 'sanford', 1, '28.8005500000', '-81.2731200000'),
(7172131, 7155751, 'US', 'Sarasota', NULL, 'sarasota', 1, '27.3364300000', '-82.5306500000'),
(7172150, 7155751, 'US', 'Sarasota Springs', NULL, 'sarasota-springs', 1, '27.3089400000', '-82.4795400000'),
(7172173, 7155751, 'US', 'Satellite Beach', NULL, 'satellite-beach', 1, '28.1761200000', '-80.5900500000'),
(7172206, 7155751, 'US', 'Sawgrass', NULL, 'sawgrass', 1, '30.1927400000', '-81.3706400000'),
(7172248, 7155751, 'US', 'Schall Circle', NULL, 'schall-circle', 1, '26.7156200000', '-80.1150400000'),
(7172294, 7155751, 'US', 'Scott Lake', NULL, 'scott-lake', 1, '25.9414800000', '-80.2319900000'),
(7172330, 7155751, 'US', 'Sea Ranch Lakes', NULL, 'sea-ranch-lakes', 1, '26.2025800000', '-80.0939300000'),
(7172366, 7155751, 'US', 'Seaside', NULL, 'seaside', 1, '30.3210300000', '-86.1416100000'),
(7172372, 7155751, 'US', 'Sebastian', NULL, 'sebastian', 1, '27.8164100000', '-80.4706100000'),
(7172383, 7155751, 'US', 'Sebring', NULL, 'sebring', 1, '27.4955900000', '-81.4409100000'),
(7172413, 7155751, 'US', 'Seffner', NULL, 'seffner', 1, '27.9836300000', '-82.2756500000'),
(7172434, 7155751, 'US', 'Seminole', NULL, 'seminole', 1, '27.8397500000', '-82.7912100000'),
(7172460, 7155751, 'US', 'Seminole Manor', NULL, 'seminole-manor', 1, '26.5836800000', '-80.1003200000'),
(7172552, 7155751, 'US', 'Seville', NULL, 'seville', 1, '29.3169200000', '-81.4925700000'),
(7172557, 7155751, 'US', 'Sewall''s Point', NULL, 'sewall-s-point', 1, '27.1994900000', '-80.2022700000'),
(7172602, 7155751, 'US', 'Shady Hills', NULL, 'shady-hills', 1, '28.4100000000', '-82.5428800000'),
(7172620, 7155751, 'US', 'Shalimar', NULL, 'shalimar', 1, '30.4457500000', '-86.5791200000'),
(7172658, 7155751, 'US', 'Sharpes', NULL, 'sharpes', 1, '28.4322300000', '-80.7600500000'),
(7172935, 7155751, 'US', 'Siesta Key', NULL, 'siesta-key', 1, '27.2678500000', '-82.5452600000'),
(7172971, 7155751, 'US', 'Silver Lake', NULL, 'silver-lake', 1, '28.8419300000', '-81.7984100000'),
(7173002, 7155751, 'US', 'Silver Springs', NULL, 'silver-springs', 1, '29.2166400000', '-82.0575900000'),
(7173007, 7155751, 'US', 'Silver Springs Shores', NULL, 'silver-springs-shores', 1, '29.1044200000', '-82.0206400000'),
(7173124, 7155751, 'US', 'Sky Lake', NULL, 'sky-lake', 1, '28.4572300000', '-81.3914600000'),
(7173293, 7155751, 'US', 'Sneads', NULL, 'sneads', 1, '30.7080100000', '-84.9255200000'),
(7173330, 7155751, 'US', 'Solana', NULL, 'solana', 1, '26.9470100000', '-82.0259200000'),
(7173350, 7155751, 'US', 'Sopchoppy', NULL, 'sopchoppy', 1, '30.0602500000', '-84.4906100000'),
(7173355, 7155751, 'US', 'Sorrento', NULL, 'sorrento', 1, '28.8077700000', '-81.5636800000'),
(7173376, 7155751, 'US', 'South Bay', NULL, 'south-bay', 1, '26.6639600000', '-80.7161700000'),
(7173380, 7155751, 'US', 'South Beach', NULL, 'south-beach', 1, '27.5911500000', '-80.3442200000'),
(7173392, 7155751, 'US', 'South Bradenton', NULL, 'south-bradenton', 1, '27.4631000000', '-82.5817600000'),
(7173394, 7155751, 'US', 'South Apopka', NULL, 'south-apopka', 1, '28.6619400000', '-81.5095200000'),
(7173396, 7155751, 'US', 'South Brooksville', NULL, 'south-brooksville', 1, '28.5358200000', '-82.3840300000'),
(7173431, 7155751, 'US', 'South Daytona', NULL, 'south-daytona', 1, '29.1658200000', '-81.0045000000'),
(7173460, 7155751, 'US', 'South Gate Ridge', NULL, 'south-gate-ridge', 1, '27.2864400000', '-82.4967600000'),
(7173467, 7155751, 'US', 'South Highpoint', NULL, 'south-highpoint', 1, '27.9169700000', '-82.7128800000'),
(7173495, 7155751, 'US', 'South Miami', NULL, 'south-miami', 1, '25.7076000000', '-80.2933800000'),
(7173497, 7155751, 'US', 'South Miami Heights', NULL, 'south-miami-heights', 1, '25.5976100000', '-80.3806100000'),
(7173522, 7155751, 'US', 'South Palm Beach', NULL, 'south-palm-beach', 1, '26.5889600000', '-80.0386500000'),
(7173524, 7155751, 'US', 'South Pasadena', NULL, 'south-pasadena', 1, '27.7550300000', '-82.7376000000'),
(7173528, 7155751, 'US', 'South Patrick Shores', NULL, 'south-patrick-shores', 1, '28.2022300000', '-80.6095000000'),
(7173558, 7155751, 'US', 'South Sarasota', NULL, 'south-sarasota', 1, '27.2861600000', '-82.5328800000'),
(7173593, 7155751, 'US', 'South Venice', NULL, 'south-venice', 1, '27.0531100000', '-82.4242600000'),
(7173600, 7155751, 'US', 'Southchase', NULL, 'southchase', 1, '28.3930600000', '-81.3834000000'),
(7173634, 7155751, 'US', 'Southgate', NULL, 'southgate', 1, '27.3081000000', '-82.5098200000'),
(7173717, 7155751, 'US', 'Southwest Ranches', NULL, 'southwest-ranches', 1, '26.0587000000', '-80.3372700000'),
(7173838, 7155751, 'US', 'Spring Hill', NULL, 'spring-hill', 1, '28.4768800000', '-82.5254600000'),
(7173857, 7155751, 'US', 'Spring Lake', NULL, 'spring-lake', 1, '28.4936100000', '-82.3028700000'),
(7173892, 7155751, 'US', 'Springfield', NULL, 'springfield', 1, '30.1532600000', '-85.6113200000'),
(7173944, 7155751, 'US', 'Stacey Street', NULL, 'stacey-street', 1, '26.6984000000', '-80.1236500000'),
(7173999, 7155751, 'US', 'Starke', NULL, 'starke', 1, '29.9441300000', '-82.1098300000'),
(7174059, 7155751, 'US', 'Steinhatchee', NULL, 'steinhatchee', 1, '29.6710600000', '-83.3876400000'),
(7174131, 7155751, 'US', 'Stock Island', NULL, 'stock-island', 1, '24.5670900000', '-81.7384200000'),
(7174201, 7155751, 'US', 'Stuart', NULL, 'stuart', 1, '27.1975500000', '-80.2528300000'),
(7174252, 7155751, 'US', 'Sugarmill Woods', NULL, 'sugarmill-woods', 1, '28.7322100000', '-82.5062100000'),
(7174274, 7155751, 'US', 'Sumatra', NULL, 'sumatra', 1, '30.0205800000', '-84.9805800000'),
(7174317, 7155751, 'US', 'Sun City Center', NULL, 'sun-city-center', 1, '27.7180900000', '-82.3517600000'),
(7174343, 7155751, 'US', 'Suncoast Estates', NULL, 'suncoast-estates', 1, '26.7117400000', '-81.8689700000'),
(7174383, 7155751, 'US', 'Sunny Isles Beach', NULL, 'sunny-isles-beach', 1, '25.9506500000', '-80.1228200000'),
(7174402, 7155751, 'US', 'Sunrise', NULL, 'sunrise', 1, '26.1339700000', '-80.1131000000'),
(7174425, 7155751, 'US', 'Sunset', NULL, 'sunset', 1, '25.7059400000', '-80.3522800000'),
(7174503, 7155751, 'US', 'Sunshine Ranches', NULL, 'sunshine-ranches', 1, '26.0459200000', '-80.3289400000'),
(7174518, 7155751, 'US', 'Surfside', NULL, 'surfside', 1, '25.8784300000', '-80.1256000000'),
(7174600, 7155751, 'US', 'Sweetwater', NULL, 'sweetwater', 1, '25.7634300000', '-80.3731100000'),
(7174700, 7155751, 'US', 'Taft', NULL, 'taft', 1, '28.4297300000', '-81.3650700000'),
(7174715, 7155751, 'US', 'Tallahassee', NULL, 'tallahassee', 1, '30.4382600000', '-84.2807300000'),
(7174738, 7155751, 'US', 'Tamarac', NULL, 'tamarac', 1, '26.2128600000', '-80.2497700000'),
(7174744, 7155751, 'US', 'Tamiami', NULL, 'tamiami', 1, '25.7587100000', '-80.3983900000'),
(7174757, 7155751, 'US', 'Tampa', NULL, 'tampa', 1, '27.9475200000', '-82.4584300000'),
(7174791, 7155751, 'US', 'Tangelo Park', NULL, 'tangelo-park', 1, '28.4558400000', '-81.4459000000'),
(7174793, 7155751, 'US', 'Tangerine', NULL, 'tangerine', 1, '28.7649900000', '-81.6306300000'),
(7174855, 7155751, 'US', 'Tarpon Springs', NULL, 'tarpon-springs', 1, '28.1461200000', '-82.7567700000'),
(7174861, 7155751, 'US', 'Tavares', NULL, 'tavares', 1, '28.8041600000', '-81.7256300000'),
(7174870, 7155751, 'US', 'Tavernier', NULL, 'tavernier', 1, '25.0115200000', '-80.5150600000'),
(7174888, 7155751, 'US', 'Taylor Creek', NULL, 'taylor-creek', 1, '27.2167100000', '-80.7895000000'),
(7174921, 7155751, 'US', 'Tedder', NULL, 'tedder', 1, '26.2842500000', '-80.1222700000'),
(7174969, 7155751, 'US', 'Temple Terrace', NULL, 'temple-terrace', 1, '28.0353000000', '-82.3892600000'),
(7175011, 7155751, 'US', 'Tequesta', NULL, 'tequesta', 1, '26.9681100000', '-80.1286500000'),
(7175022, 7155751, 'US', 'Terra Mar', NULL, 'terra-mar', 1, '26.2161900000', '-80.0953200000'),
(7175091, 7155751, 'US', 'The Crossings', NULL, 'the-crossings', 1, '25.6706600000', '-80.4011700000'),
(7175117, 7155751, 'US', 'The Hammocks', NULL, 'the-hammocks', 1, '25.6714900000', '-80.4445000000'),
(7175136, 7155751, 'US', 'The Meadows', NULL, 'the-meadows', 1, '27.3617100000', '-82.4689800000'),
(7175179, 7155751, 'US', 'The Villages', NULL, 'the-villages', 1, '28.9340800000', '-81.9599400000'),
(7175269, 7155751, 'US', 'Thonotosassa', NULL, 'thonotosassa', 1, '28.0614100000', '-82.3023100000'),
(7175296, 7155751, 'US', 'Three Lakes', NULL, 'three-lakes', 1, '25.6420500000', '-80.3983900000'),
(7175298, 7155751, 'US', 'Three Oaks', NULL, 'three-oaks', 1, '26.4700800000', '-81.7939700000'),
(7175319, 7155751, 'US', 'Tice', NULL, 'tice', 1, '26.6747900000', '-81.8150800000'),
(7175331, 7155751, 'US', 'Tierra Verde', NULL, 'tierra-verde', 1, '27.6919700000', '-82.7234300000'),
(7175363, 7155751, 'US', 'Tiger Point', NULL, 'tiger-point', 1, '30.3785300000', '-87.0555200000'),
(7175374, 7155751, 'US', 'Tildenville', NULL, 'tildenville', 1, '28.5597200000', '-81.6084100000'),
(7175391, 7155751, 'US', 'Timber Pines', NULL, 'timber-pines', 1, '28.4702800000', '-82.6031600000'),
(7175437, 7155751, 'US', 'Titusville', NULL, 'titusville', 1, '28.6122200000', '-80.8075500000'),
(7175538, 7155751, 'US', 'Town ''n'' Country', NULL, 'town-n-country', 1, '28.0105700000', '-82.5773200000'),
(7175626, 7155751, 'US', 'Treasure Island', NULL, 'treasure-island', 1, '27.7691900000', '-82.7689900000'),
(7175637, 7155751, 'US', 'Trenton', NULL, 'trenton', 1, '29.6132900000', '-82.8176200000'),
(7175650, 7155751, 'US', 'Trilby', NULL, 'trilby', 1, '28.4625000000', '-82.1948100000'),
(7175993, 7155751, 'US', 'Twin Lakes', NULL, 'twin-lakes', 1, '26.1809200000', '-80.1600500000'),
(7176059, 7155751, 'US', 'Umatilla', NULL, 'umatilla', 1, '28.9294300000', '-81.6656300000'),
(7176109, 7155751, 'US', 'Union Park', NULL, 'union-park', 1, '28.5680600000', '-81.2861800000'),
(7176217, 7155751, 'US', 'University Park', NULL, 'university-park', 1, '25.7464900000', '-80.3675500000'),
(7176277, 7155751, 'US', 'Upper Grand Lagoon', NULL, 'upper-grand-lagoon', 1, '30.1632600000', '-85.7407600000'),
(7176299, 7155751, 'US', 'Utopia', NULL, 'utopia', 1, '27.2900500000', '-82.3600900000'),
(7176316, 7155751, 'US', 'Valparaiso', NULL, 'valparaiso', 1, '30.5085300000', '-86.5027300000'),
(7176318, 7155751, 'US', 'Valrico', NULL, 'valrico', 1, '27.9378900000', '-82.2364400000'),
(7176324, 7155751, 'US', 'Vamo', NULL, 'vamo', 1, '27.2220000000', '-82.4978700000'),
(7176380, 7155751, 'US', 'Venice', NULL, 'venice', 1, '27.0997800000', '-82.4542600000'),
(7176387, 7155751, 'US', 'Venice Gardens', NULL, 'venice-gardens', 1, '27.0731100000', '-82.4076000000'),
(7176407, 7155751, 'US', 'Vernon', NULL, 'vernon', 1, '30.6229700000', '-85.7121500000'),
(7176409, 7155751, 'US', 'Vero Beach', NULL, 'vero-beach', 1, '27.6386400000', '-80.3972700000'),
(7176508, 7155751, 'US', 'Villages of Oriole', NULL, 'villages-of-oriole', 1, '26.4623000000', '-80.1528200000'),
(7176509, 7155751, 'US', 'Villano Beach', NULL, 'villano-beach', 1, '29.9385800000', '-81.3020200000'),
(7176527, 7155751, 'US', 'Vineyards', NULL, 'vineyards', 1, '26.2237300000', '-81.7279800000'),
(7176550, 7155751, 'US', 'Virginia Gardens', NULL, 'virginia-gardens', 1, '25.8103800000', '-80.3022700000'),
(7177268, 7155751, 'US', 'Wabasso', NULL, 'wabasso', 1, '27.7483600000', '-80.4361600000'),
(7177270, 7155751, 'US', 'Wabasso Beach', NULL, 'wabasso-beach', 1, '27.7647500000', '-80.3989400000'),
(7177287, 7155751, 'US', 'Wacissa', NULL, 'wacissa', 1, '30.3585400000', '-83.9871100000'),
(7177308, 7155751, 'US', 'Wahneta', NULL, 'wahneta', 1, '27.9528000000', '-81.7270200000'),
(7177334, 7155751, 'US', 'Waldo', NULL, 'waldo', 1, '29.7896900000', '-82.1673200000'),
(7177380, 7155751, 'US', 'Wallace', NULL, 'wallace', 1, '30.6774100000', '-87.1799700000'),
(7177450, 7155751, 'US', 'Warm Mineral Springs', NULL, 'warm-mineral-springs', 1, '27.0597800000', '-82.2600900000'),
(7177465, 7155751, 'US', 'Warrington', NULL, 'warrington', 1, '30.3840900000', '-87.2749700000'),
(7177492, 7155751, 'US', 'Washington Park', NULL, 'washington-park', 1, '26.1325900000', '-80.1811600000'),
(7177542, 7155751, 'US', 'Watertown', NULL, 'watertown', 1, '30.1924500000', '-82.6145700000'),
(7177569, 7155751, 'US', 'Wauchula', NULL, 'wauchula', 1, '27.5472600000', '-81.8114700000'),
(7177575, 7155751, 'US', 'Waukeenah', NULL, 'waukeenah', 1, '30.4113100000', '-83.9529400000'),
(7177577, 7155751, 'US', 'Wausau', NULL, 'wausau', 1, '30.6321400000', '-85.5888200000'),
(7177580, 7155751, 'US', 'Waverly', NULL, 'waverly', 1, '27.9789100000', '-81.6139700000'),
(7177609, 7155751, 'US', 'Webster', NULL, 'webster', 1, '28.6099900000', '-82.0550800000'),
(7177617, 7155751, 'US', 'Wedgefield', NULL, 'wedgefield', 1, '28.4877800000', '-81.0772900000'),
(7177633, 7155751, 'US', 'Weeki Wachee', NULL, 'weeki-wachee', 1, '28.5155500000', '-82.5728800000'),
(7177635, 7155751, 'US', 'Weeki Wachee Gardens', NULL, 'weeki-wachee-gardens', 1, '28.5336100000', '-82.6295400000'),
(7177671, 7155751, 'US', 'Wekiwa Springs', NULL, 'wekiwa-springs', 1, '28.6986100000', '-81.4256300000'),
(7177674, 7155751, 'US', 'Welaka', NULL, 'welaka', 1, '29.4791400000', '-81.6714700000'),
(7177698, 7155751, 'US', 'Wellborn', NULL, 'wellborn', 1, '30.2310600000', '-82.8195700000'),
(7177703, 7155751, 'US', 'Wellington', NULL, 'wellington', 1, '26.6586800000', '-80.2414400000'),
(7177727, 7155751, 'US', 'Wesley Chapel', NULL, 'wesley-chapel', 1, '28.2397300000', '-82.3278700000'),
(7177759, 7155751, 'US', 'West Bradenton', NULL, 'west-bradenton', 1, '27.5025400000', '-82.6139900000'),
(7177779, 7155751, 'US', 'Westchase', NULL, 'westchase', 1, '28.0550200000', '-82.6098200000'),
(7177787, 7155751, 'US', 'West DeLand', NULL, 'west-deland', 1, '29.0158200000', '-81.3331200000'),
(7177816, 7155751, 'US', 'West Gate', NULL, 'west-gate', 1, '26.7025700000', '-80.0981000000'),
(7177834, 7155751, 'US', 'West Hollywood', NULL, 'west-hollywood', 1, '26.0206500000', '-80.1839400000'),
(7177865, 7155751, 'US', 'West Little River', NULL, 'west-little-river', 1, '25.8570400000', '-80.2369900000'),
(7177872, 7155751, 'US', 'West Melbourne', NULL, 'west-melbourne', 1, '28.0716800000', '-80.6533900000'),
(7177874, 7155751, 'US', 'West Miami', NULL, 'west-miami', 1, '25.7634300000', '-80.2961600000'),
(7177887, 7155751, 'US', 'West Palm Beach', NULL, 'west-palm-beach', 1, '26.7153400000', '-80.0533700000'),
(7177897, 7155751, 'US', 'West Park', NULL, 'west-park', 1, '25.9845400000', '-80.1989400000'),
(7177908, 7155751, 'US', 'West Pensacola', NULL, 'west-pensacola', 1, '30.4265900000', '-87.2796900000'),
(7177917, 7155751, 'US', 'West Perrine', NULL, 'west-perrine', 1, '25.6059400000', '-80.3628300000'),
(7177930, 7155751, 'US', 'West Samoset', NULL, 'west-samoset', 1, '27.4694800000', '-82.5567600000'),
(7177950, 7155751, 'US', 'West Vero Corridor', NULL, 'west-vero-corridor', 1, '27.6377500000', '-80.4857600000'),
(7177960, 7155751, 'US', 'West and East Lealman', NULL, 'west-and-east-lealman', 1, '27.8199300000', '-82.6894400000'),
(7177965, 7155751, 'US', 'Westchester', NULL, 'westchester', 1, '25.7548200000', '-80.3272700000'),
(7178003, 7155751, 'US', 'Weston', NULL, 'weston', 1, '26.1003700000', '-80.3997700000'),
(7178032, 7155751, 'US', 'Westview', NULL, 'westview', 1, '25.8820400000', '-80.2419900000'),
(7178040, 7155751, 'US', 'Westville', NULL, 'westville', 1, '30.7746300000', '-85.8516000000'),
(7178053, 7155751, 'US', 'Westwood Lake', NULL, 'westwood-lake', 1, '25.7292700000', '-80.3728300000'),
(7178074, 7155751, 'US', 'Wewahitchka', NULL, 'wewahitchka', 1, '30.1127000000', '-85.2004700000'),
(7178111, 7155751, 'US', 'Whiskey Creek', NULL, 'whiskey-creek', 1, '26.5725800000', '-81.8900900000'),
(7178137, 7155751, 'US', 'White City', NULL, 'white-city', 1, '27.3739300000', '-80.3339400000'),
(7178180, 7155751, 'US', 'White Springs', NULL, 'white-springs', 1, '30.3296700000', '-82.7590200000'),
(7178215, 7155751, 'US', 'Whitfield', NULL, 'whitfield', 1, '27.4117100000', '-82.5659300000'),
(7178292, 7155751, 'US', 'Wildwood', NULL, 'wildwood', 1, '28.8654200000', '-82.0405800000'),
(7178397, 7155751, 'US', 'Williamsburg', NULL, 'williamsburg', 1, '28.4144500000', '-81.4428500000'),
(7178414, 7155751, 'US', 'Williston', NULL, 'williston', 1, '29.3874700000', '-82.4467700000'),
(7178419, 7155751, 'US', 'Williston Highlands', NULL, 'williston-highlands', 1, '29.3405200000', '-82.5415000000'),
(7178449, 7155751, 'US', 'Willow Oak', NULL, 'willow-oak', 1, '27.9161400000', '-82.0178600000'),
(7178485, 7155751, 'US', 'Wilton Manors', NULL, 'wilton-manors', 1, '26.1603600000', '-80.1389300000'),
(7178488, 7155751, 'US', 'Wimauma', NULL, 'wimauma', 1, '27.7125300000', '-82.2989800000'),
(7178501, 7155751, 'US', 'Windermere', NULL, 'windermere', 1, '28.4955600000', '-81.5348000000'),
(7178540, 7155751, 'US', 'Winston', NULL, 'winston', 1, '28.0316900000', '-82.0148100000'),
(7178548, 7155751, 'US', 'Winter Beach', NULL, 'winter-beach', 1, '27.7192000000', '-80.4206100000'),
(7178550, 7155751, 'US', 'Winter Garden', NULL, 'winter-garden', 1, '28.5652800000', '-81.5861800000'),
(7178552, 7155751, 'US', 'Winter Haven', NULL, 'winter-haven', 1, '28.0222400000', '-81.7328600000'),
(7178560, 7155751, 'US', 'Winter Park', NULL, 'winter-park', 1, '28.6000000000', '-81.3392400000'),
(7178573, 7155751, 'US', 'Winter Springs', NULL, 'winter-springs', 1, '28.6988900000', '-81.3081200000'),
(7178585, 7155751, 'US', 'Wiscon', NULL, 'wiscon', 1, '28.5408300000', '-82.4620400000'),
(7178694, 7155751, 'US', 'Woodlawn Beach', NULL, 'woodlawn-beach', 1, '30.3882500000', '-86.9908000000'),
(7178741, 7155751, 'US', 'Woodville', NULL, 'woodville', 1, '30.3140900000', '-84.2474000000'),
(7178774, 7155751, 'US', 'Worthington Springs', NULL, 'worthington-springs', 1, '29.9294100000', '-82.4234500000'),
(7178775, 7155751, 'US', 'Wright', NULL, 'wright', 1, '30.4557500000', '-86.6382900000'),
(7178817, 7155751, 'US', 'Yalaha', NULL, 'yalaha', 1, '28.7386000000', '-81.8086900000'),
(7178826, 7155751, 'US', 'Yankeetown', NULL, 'yankeetown', 1, '29.0299700000', '-82.7159400000'),
(7178857, 7155751, 'US', 'Yeehaw Junction', NULL, 'yeehaw-junction', 1, '27.7003100000', '-80.9042300000'),
(7178909, 7155751, 'US', 'Youngstown', NULL, 'youngstown', 1, '30.3643600000', '-85.4382600000'),
(7178919, 7155751, 'US', 'Yulee', NULL, 'yulee', 1, '30.6319000000', '-81.6064900000'),
(7178933, 7155751, 'US', 'Zellwood', NULL, 'zellwood', 1, '28.7311100000', '-81.6011800000'),
(7178941, 7155751, 'US', 'Zephyrhills', NULL, 'zephyrhills', 1, '28.2336200000', '-82.1811900000'),
(7178972, 7155751, 'US', 'Zolfo Springs', NULL, 'zolfo-springs', 1, '27.4933700000', '-81.7959200000'),
(7178992, 7197000, 'US', 'Abbeville', NULL, 'abbeville', 1, '31.9921200000', '-83.3068200000'),
(7179074, 7197000, 'US', 'Acworth', NULL, 'acworth', 1, '34.0663500000', '-84.6783700000'),
(7179094, 7197000, 'US', 'Adairsville', NULL, 'adairsville', 1, '34.3687000000', '-84.9341100000'),
(7179193, 7197000, 'US', 'Adel', NULL, 'adel', 1, '31.1372700000', '-83.4240800000'),
(7179213, 7197000, 'US', 'Adrian', NULL, 'adrian', 1, '32.5307200000', '-82.5893000000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7179253, 7197000, 'US', 'Ailey', NULL, 'ailey', 1, '32.1874000000', '-82.5656900000'),
(7179313, 7197000, 'US', 'Alamo', NULL, 'alamo', 1, '32.1471200000', '-82.7779200000'),
(7179317, 7197000, 'US', 'Alapaha', NULL, 'alapaha', 1, '31.3852000000', '-83.2229300000'),
(7179320, 7197000, 'US', 'Albany', NULL, 'albany', 1, '31.5785100000', '-84.1557400000'),
(7179363, 7197000, 'US', 'Aldora', NULL, 'aldora', 1, '33.0520700000', '-84.1757500000'),
(7179499, 7197000, 'US', 'Allenhurst', NULL, 'allenhurst', 1, '31.7841000000', '-81.6076100000'),
(7179510, 7197000, 'US', 'Allentown', NULL, 'allentown', 1, '32.5932100000', '-83.2257100000'),
(7179557, 7197000, 'US', 'Alma', NULL, 'alma', 1, '31.5393700000', '-82.4623600000'),
(7179574, 7197000, 'US', 'Alpharetta', NULL, 'alpharetta', 1, '34.0753800000', '-84.2940900000'),
(7179593, 7197000, 'US', 'Alston', NULL, 'alston', 1, '32.0807400000', '-82.4776300000'),
(7179624, 7197000, 'US', 'Alto', NULL, 'alto', 1, '34.4673200000', '-83.5737800000'),
(7179650, 7197000, 'US', 'Ambrose', NULL, 'ambrose', 1, '31.5938000000', '-83.0143100000'),
(7179667, 7197000, 'US', 'Americus', NULL, 'americus', 1, '32.0723900000', '-84.2326900000'),
(7179781, 7197000, 'US', 'Andersonville', NULL, 'andersonville', 1, '32.1959900000', '-84.1399100000'),
(7180106, 7197000, 'US', 'Arabi', NULL, 'arabi', 1, '31.8315700000', '-83.7379500000'),
(7180114, 7197000, 'US', 'Aragon', NULL, 'aragon', 1, '34.0456500000', '-85.0560600000'),
(7180134, 7197000, 'US', 'Arcade', NULL, 'arcade', 1, '34.0778900000', '-83.5615500000'),
(7180170, 7197000, 'US', 'Argyle', NULL, 'argyle', 1, '31.0741000000', '-82.6484700000'),
(7180183, 7197000, 'US', 'Arlington', NULL, 'arlington', 1, '31.4399000000', '-84.7249200000'),
(7180253, 7197000, 'US', 'Arnoldsville', NULL, 'arnoldsville', 1, '33.9051200000', '-83.2168200000'),
(7180316, 7197000, 'US', 'Ashburn', NULL, 'ashburn', 1, '31.7060100000', '-83.6532200000'),
(7180386, 7197000, 'US', 'Athens', NULL, 'athens', 1, '33.9609500000', '-83.3779400000'),
(7180439, 7197000, 'US', 'Atlanta', NULL, 'atlanta', 1, '33.7490000000', '-84.3879800000'),
(7180493, 7197000, 'US', 'Attapulgus', NULL, 'attapulgus', 1, '30.7493200000', '-84.4856800000'),
(7180512, 7197000, 'US', 'Auburn', NULL, 'auburn', 1, '34.0137200000', '-83.8276800000'),
(7180531, 7197000, 'US', 'Augusta', NULL, 'augusta', 1, '33.4709700000', '-81.9748400000'),
(7180564, 7197000, 'US', 'Austell', NULL, 'austell', 1, '33.8126100000', '-84.6343800000'),
(7180593, 7197000, 'US', 'Avalon', NULL, 'avalon', 1, '34.5020500000', '-83.1951600000'),
(7180603, 7197000, 'US', 'Avera', NULL, 'avera', 1, '33.1940400000', '-82.5270700000'),
(7180638, 7197000, 'US', 'Avondale Estates', NULL, 'avondale-estates', 1, '33.7714900000', '-84.2671400000'),
(7180723, 7197000, 'US', 'Baconton', NULL, 'baconton', 1, '31.3796200000', '-84.1610200000'),
(7180775, 7197000, 'US', 'Bainbridge', NULL, 'bainbridge', 1, '30.9038000000', '-84.5754700000'),
(7180868, 7197000, 'US', 'Baldwin', NULL, 'baldwin', 1, '34.4917700000', '-83.5373900000'),
(7180913, 7197000, 'US', 'Ball Ground', NULL, 'ball-ground', 1, '34.3381500000', '-84.3765900000'),
(7181110, 7197000, 'US', 'Barnesville', NULL, 'barnesville', 1, '33.0545700000', '-84.1557500000'),
(7181215, 7197000, 'US', 'Bartow', NULL, 'bartow', 1, '32.8787700000', '-82.4737400000'),
(7181225, 7197000, 'US', 'Barwick', NULL, 'barwick', 1, '30.8901900000', '-83.7407200000'),
(7181333, 7197000, 'US', 'Baxley', NULL, 'baxley', 1, '31.7782500000', '-82.3484600000'),
(7181905, 7197000, 'US', 'Bellville', NULL, 'bellville', 1, '32.1524100000', '-81.9742800000'),
(7181936, 7197000, 'US', 'Belvedere Park', NULL, 'belvedere-park', 1, '33.7548300000', '-84.2674200000'),
(7182083, 7197000, 'US', 'Berkeley Lake', NULL, 'berkeley-lake', 1, '33.9837100000', '-84.1865800000'),
(7182096, 7197000, 'US', 'Berlin', NULL, 'berlin', 1, '31.0682400000', '-83.6237800000'),
(7182522, 7197000, 'US', 'Bethlehem', NULL, 'bethlehem', 1, '33.9320600000', '-83.7137800000'),
(7182664, 7197000, 'US', 'Between', NULL, 'between', 1, '33.8176100000', '-83.8074000000'),
(7182753, 7197000, 'US', 'Bibb City', NULL, 'bibb-city', 1, '32.4957000000', '-84.9918800000'),
(7183152, 7197000, 'US', 'Bishop', NULL, 'bishop', 1, '33.8192900000', '-83.4387700000'),
(7183305, 7197000, 'US', 'Blackshear', NULL, 'blackshear', 1, '31.3060500000', '-82.2420700000'),
(7183354, 7197000, 'US', 'Blairsville', NULL, 'blairsville', 1, '34.8762000000', '-83.9582400000'),
(7183363, 7197000, 'US', 'Blakely', NULL, 'blakely', 1, '31.3776800000', '-84.9340900000'),
(7183463, 7197000, 'US', 'Bloomingdale', NULL, 'bloomingdale', 1, '32.1324200000', '-81.2990000000'),
(7183521, 7197000, 'US', 'Blue Ridge', NULL, 'blue-ridge', 1, '34.8639700000', '-84.3240900000'),
(7183608, 7197000, 'US', 'Bluffton', NULL, 'bluffton', 1, '31.5229500000', '-84.8677000000'),
(7183623, 7197000, 'US', 'Blythe', NULL, 'blythe', 1, '33.2926400000', '-82.2015100000'),
(7183682, 7197000, 'US', 'Bogart', NULL, 'bogart', 1, '33.9492800000', '-83.5346100000'),
(7183772, 7197000, 'US', 'Bonanza', NULL, 'bonanza', 1, '33.4656700000', '-84.3365900000'),
(7183849, 7197000, 'US', 'Boston', NULL, 'boston', 1, '30.7918600000', '-83.7898900000'),
(7183857, 7197000, 'US', 'Bostwick', NULL, 'bostwick', 1, '33.7373400000', '-83.5143300000'),
(7183899, 7197000, 'US', 'Bowdon', NULL, 'bowdon', 1, '33.5378900000', '-85.2532800000'),
(7183944, 7197000, 'US', 'Bowersville', NULL, 'bowersville', 1, '34.3728800000', '-83.0826500000'),
(7183954, 7197000, 'US', 'Bowman', NULL, 'bowman', 1, '34.2048300000', '-83.0307000000'),
(7184000, 7197000, 'US', 'Boykin', NULL, 'boykin', 1, '31.1046300000', '-84.6865800000'),
(7184165, 7197000, 'US', 'Braselton', NULL, 'braselton', 1, '34.1092700000', '-83.7626700000'),
(7184180, 7197000, 'US', 'Braswell', NULL, 'braswell', 1, '33.7601200000', '-83.5540600000'),
(7184222, 7197000, 'US', 'Bremen', NULL, 'bremen', 1, '33.7212200000', '-85.1455000000'),
(7184410, 7197000, 'US', 'Brinson', NULL, 'brinson', 1, '30.9768500000', '-84.7377000000'),
(7184507, 7197000, 'US', 'Bronwood', NULL, 'bronwood', 1, '31.8310000000', '-84.3643600000'),
(7184530, 7197000, 'US', 'Brookhaven', NULL, 'brookhaven', 1, '33.8584400000', '-84.3402000000'),
(7184540, 7197000, 'US', 'Brooklet', NULL, 'brooklet', 1, '32.3796300000', '-81.6631700000'),
(7184547, 7197000, 'US', 'Brooks', NULL, 'brooks', 1, '33.2909500000', '-84.4593700000'),
(7184813, 7197000, 'US', 'Broxton', NULL, 'broxton', 1, '31.6251900000', '-82.8868100000'),
(7184845, 7197000, 'US', 'Brunswick', NULL, 'brunswick', 1, '31.1499500000', '-81.4914900000'),
(7184962, 7197000, 'US', 'Buchanan', NULL, 'buchanan', 1, '33.8026000000', '-85.1885600000'),
(7185043, 7197000, 'US', 'Buckhead', NULL, 'buckhead', 1, '33.5684600000', '-83.3623900000'),
(7185076, 7197000, 'US', 'Buena Vista', NULL, 'buena-vista', 1, '32.3190400000', '-84.5171400000'),
(7185110, 7197000, 'US', 'Buford', NULL, 'buford', 1, '34.1206600000', '-84.0043500000'),
(7185437, 7197000, 'US', 'Butler', NULL, 'butler', 1, '32.5570900000', '-84.2382500000'),
(7185550, 7197000, 'US', 'Byromville', NULL, 'byromville', 1, '32.2021100000', '-83.9085100000'),
(7185553, 7197000, 'US', 'Byron', NULL, 'byron', 1, '32.6537600000', '-83.7596300000'),
(7185607, 7197000, 'US', 'Cadwell', NULL, 'cadwell', 1, '32.3396200000', '-83.0420900000'),
(7185632, 7197000, 'US', 'Cairo', NULL, 'cairo', 1, '30.8775100000', '-84.2021400000'),
(7185657, 7197000, 'US', 'Calhoun', NULL, 'calhoun', 1, '34.5025900000', '-84.9510500000'),
(7185731, 7197000, 'US', 'Calvary', NULL, 'calvary', 1, '30.7269700000', '-84.3508800000'),
(7185823, 7197000, 'US', 'Camak', NULL, 'camak', 1, '33.4534700000', '-82.6459700000'),
(7185863, 7197000, 'US', 'Camilla', NULL, 'camilla', 1, '31.2312900000', '-84.2104600000'),
(7186200, 7197000, 'US', 'Canon', NULL, 'canon', 1, '34.3462200000', '-83.1098700000'),
(7186202, 7197000, 'US', 'Canoochee', NULL, 'canoochee', 1, '32.6721100000', '-82.1790100000'),
(7186213, 7197000, 'US', 'Canton', NULL, 'canton', 1, '34.2367600000', '-84.4907600000'),
(7186279, 7197000, 'US', 'Carl', NULL, 'carl', 1, '34.0056600000', '-83.8112900000'),
(7186300, 7197000, 'US', 'Carlton', NULL, 'carlton', 1, '34.0431700000', '-83.0337600000'),
(7186352, 7197000, 'US', 'Carnesville', NULL, 'carnesville', 1, '34.3698300000', '-83.2351600000'),
(7186416, 7197000, 'US', 'Carrollton', NULL, 'carrollton', 1, '33.5801100000', '-85.0766100000'),
(7186531, 7197000, 'US', 'Cartersville', NULL, 'cartersville', 1, '34.1653300000', '-84.8023100000'),
(7186741, 7197000, 'US', 'Cave Spring', NULL, 'cave-spring', 1, '34.1076000000', '-85.3363400000'),
(7186785, 7197000, 'US', 'Cecil', NULL, 'cecil', 1, '31.0454700000', '-83.3921000000'),
(7186932, 7197000, 'US', 'Cedar Springs', NULL, 'cedar-springs', 1, '31.1835100000', '-85.0379800000'),
(7186955, 7197000, 'US', 'Cedartown', NULL, 'cedartown', 1, '34.0112300000', '-85.2559300000'),
(7187055, 7197000, 'US', 'Centerville', NULL, 'centerville', 1, '32.6301400000', '-83.6896300000'),
(7187162, 7197000, 'US', 'Centralhatchee', NULL, 'centralhatchee', 1, '33.3690000000', '-85.1035500000'),
(7187204, 7197000, 'US', 'Chamblee', NULL, 'chamblee', 1, '33.8920500000', '-84.2988100000'),
(7187435, 7197000, 'US', 'Chatsworth', NULL, 'chatsworth', 1, '34.7659100000', '-84.7699400000'),
(7187446, 7197000, 'US', 'Chattanooga Valley', NULL, 'chattanooga-valley', 1, '34.9328500000', '-85.3555100000'),
(7187473, 7197000, 'US', 'Chauncey', NULL, 'chauncey', 1, '32.1046200000', '-83.0645900000'),
(7187608, 7197000, 'US', 'Cherry Log', NULL, 'cherry-log', 1, '34.7803600000', '-84.3907600000'),
(7187637, 7197000, 'US', 'Chester', NULL, 'chester', 1, '32.3937800000', '-83.1529300000'),
(7187696, 7197000, 'US', 'Chickamauga', NULL, 'chickamauga', 1, '34.8711900000', '-85.2907900000'),
(7188197, 7197000, 'US', 'Clarkesville', NULL, 'clarkesville', 1, '34.6126000000', '-83.5248900000'),
(7188233, 7197000, 'US', 'Clarkston', NULL, 'clarkston', 1, '33.8095500000', '-84.2396400000'),
(7188239, 7197000, 'US', 'Claxton', NULL, 'claxton', 1, '32.1615800000', '-81.9040000000'),
(7188287, 7197000, 'US', 'Clayton', NULL, 'clayton', 1, '34.8781500000', '-83.4009900000'),
(7188375, 7197000, 'US', 'Clermont', NULL, 'clermont', 1, '34.4778800000', '-83.7735100000'),
(7188377, 7197000, 'US', 'Cleveland', NULL, 'cleveland', 1, '34.5970400000', '-83.7632400000'),
(7188431, 7197000, 'US', 'Climax', NULL, 'climax', 1, '30.8760200000', '-84.4313000000'),
(7188588, 7197000, 'US', 'Cobbtown', NULL, 'cobbtown', 1, '32.2804600000', '-82.1387300000'),
(7188590, 7197000, 'US', 'Cochran', NULL, 'cochran', 1, '32.3868300000', '-83.3546100000'),
(7188682, 7197000, 'US', 'Cohutta', NULL, 'cohutta', 1, '34.9595200000', '-84.9527200000'),
(7188708, 7197000, 'US', 'Colbert', NULL, 'colbert', 1, '34.0378900000', '-83.2126500000'),
(7188752, 7197000, 'US', 'Coleman', NULL, 'coleman', 1, '31.6729400000', '-84.8890900000'),
(7188815, 7197000, 'US', 'College Park', NULL, 'college-park', 1, '33.6534400000', '-84.4493700000'),
(7188852, 7197000, 'US', 'Collins', NULL, 'collins', 1, '32.1813000000', '-82.1090100000'),
(7188934, 7197000, 'US', 'Colquitt', NULL, 'colquitt', 1, '31.1712900000', '-84.7332500000'),
(7188985, 7197000, 'US', 'Columbus', NULL, 'columbus', 1, '32.4609800000', '-84.9877100000'),
(7189003, 7197000, 'US', 'Comer', NULL, 'comer', 1, '34.0637200000', '-83.1254300000'),
(7189014, 7197000, 'US', 'Commerce', NULL, 'commerce', 1, '34.2040000000', '-83.4571100000'),
(7189077, 7197000, 'US', 'Concord', NULL, 'concord', 1, '33.0912400000', '-84.4374200000'),
(7189157, 7197000, 'US', 'Conley', NULL, 'conley', 1, '33.6448300000', '-84.3257600000'),
(7189213, 7197000, 'US', 'Conyers', NULL, 'conyers', 1, '33.6676100000', '-84.0176900000'),
(7189308, 7197000, 'US', 'Coolidge', NULL, 'coolidge', 1, '31.0113000000', '-83.8662800000'),
(7189423, 7197000, 'US', 'Cordele', NULL, 'cordele', 1, '31.9635100000', '-83.7823900000'),
(7189440, 7197000, 'US', 'Corinth', NULL, 'corinth', 1, '33.2301200000', '-84.9454900000'),
(7189529, 7197000, 'US', 'Cornelia', NULL, 'cornelia', 1, '34.5114900000', '-83.5271200000'),
(7189612, 7197000, 'US', 'Country Club Estates', NULL, 'country-club-estates', 1, '33.9892800000', '-83.4096000000'),
(7189785, 7197000, 'US', 'Covington', NULL, 'covington', 1, '33.5967800000', '-83.8601800000'),
(7189931, 7197000, 'US', 'Crawford', NULL, 'crawford', 1, '33.8829000000', '-83.1546000000'),
(7189960, 7197000, 'US', 'Crawfordville', NULL, 'crawfordville', 1, '33.5540200000', '-82.8959800000'),
(7190335, 7197000, 'US', 'Culloden', NULL, 'culloden', 1, '32.8631900000', '-84.0938000000'),
(7190396, 7197000, 'US', 'Cumming', NULL, 'cumming', 1, '34.2073200000', '-84.1401900000'),
(7190434, 7197000, 'US', 'Cusseta', NULL, 'cusseta', 1, '32.3054300000', '-84.7727000000'),
(7190451, 7197000, 'US', 'Cuthbert', NULL, 'cuthbert', 1, '31.7712700000', '-84.7893700000'),
(7190523, 7197000, 'US', 'Dacula', NULL, 'dacula', 1, '33.9887200000', '-83.8979600000'),
(7190542, 7197000, 'US', 'Dahlonega', NULL, 'dahlonega', 1, '34.5325900000', '-83.9849100000'),
(7190554, 7197000, 'US', 'Daisy', NULL, 'daisy', 1, '32.1518600000', '-81.8345600000'),
(7190581, 7197000, 'US', 'Dalton', NULL, 'dalton', 1, '34.7698000000', '-84.9702200000'),
(7190598, 7197000, 'US', 'Dallas', NULL, 'dallas', 1, '33.9237100000', '-84.8407700000'),
(7190604, 7197000, 'US', 'Damascus', NULL, 'damascus', 1, '31.2990700000', '-84.7188100000'),
(7190721, 7197000, 'US', 'Danielsville', NULL, 'danielsville', 1, '34.1242800000', '-83.2212600000'),
(7190729, 7197000, 'US', 'Danville', NULL, 'danville', 1, '32.6057100000', '-83.2454400000'),
(7190744, 7197000, 'US', 'Darien', NULL, 'darien', 1, '31.3702300000', '-81.4339900000'),
(7190779, 7197000, 'US', 'Dasher', NULL, 'dasher', 1, '30.7474300000', '-83.2207000000'),
(7190940, 7197000, 'US', 'Davisboro', NULL, 'davisboro', 1, '32.9790400000', '-82.6079100000'),
(7190953, 7197000, 'US', 'Dawson', NULL, 'dawson', 1, '31.7738200000', '-84.4480000000'),
(7190979, 7197000, 'US', 'Dawsonville', NULL, 'dawsonville', 1, '34.4212100000', '-84.1190800000'),
(7191032, 7197000, 'US', 'DeSoto', NULL, 'desoto', 1, '31.9554500000', '-84.0621300000'),
(7191099, 7197000, 'US', 'Dearing', NULL, 'dearing', 1, '33.4131900000', '-82.3851300000'),
(7191124, 7197000, 'US', 'Decatur', NULL, 'decatur', 1, '33.7748300000', '-84.2963100000'),
(7191144, 7197000, 'US', 'Deenwood', NULL, 'deenwood', 1, '31.2220100000', '-82.3872500000'),
(7191181, 7197000, 'US', 'Deepstep', NULL, 'deepstep', 1, '33.0182100000', '-82.9690300000'),
(7191294, 7197000, 'US', 'Demorest', NULL, 'demorest', 1, '34.5651000000', '-83.5451700000'),
(7191337, 7197000, 'US', 'Denton', NULL, 'denton', 1, '31.7226900000', '-82.6937500000'),
(7191405, 7197000, 'US', 'Dewy Rose', NULL, 'dewy-rose', 1, '34.1698300000', '-82.9529200000'),
(7191408, 7197000, 'US', 'Dexter', NULL, 'dexter', 1, '32.4323900000', '-83.0612600000'),
(7191497, 7197000, 'US', 'Dillard', NULL, 'dillard', 1, '34.9700900000', '-83.3871000000'),
(7191628, 7197000, 'US', 'Dock Junction', NULL, 'dock-junction', 1, '31.2024500000', '-81.5167700000'),
(7191671, 7197000, 'US', 'Doerun', NULL, 'doerun', 1, '31.3196300000', '-83.9171200000'),
(7191735, 7197000, 'US', 'Donalsonville', NULL, 'donalsonville', 1, '31.0404600000', '-84.8790900000'),
(7191754, 7197000, 'US', 'Dooling', NULL, 'dooling', 1, '32.2304400000', '-83.9279600000'),
(7191768, 7197000, 'US', 'Doraville', NULL, 'doraville', 1, '33.8981600000', '-84.2832600000'),
(7191916, 7197000, 'US', 'Douglas', NULL, 'douglas', 1, '31.5088100000', '-82.8498700000'),
(7191955, 7197000, 'US', 'Douglasville', NULL, 'douglasville', 1, '33.7515000000', '-84.7477100000'),
(7192088, 7197000, 'US', 'Druid Hills', NULL, 'druid-hills', 1, '33.7803800000', '-84.3360400000'),
(7192205, 7197000, 'US', 'Dublin', NULL, 'dublin', 1, '32.5404400000', '-82.9037500000'),
(7192222, 7197000, 'US', 'Du Pont', NULL, 'du-pont', 1, '30.9885400000', '-82.8715300000'),
(7192271, 7197000, 'US', 'Dudley', NULL, 'dudley', 1, '32.5423900000', '-83.0704300000'),
(7192289, 7197000, 'US', 'Duluth', NULL, 'duluth', 1, '34.0028800000', '-84.1446400000'),
(7192375, 7197000, 'US', 'Dunwoody', NULL, 'dunwoody', 1, '33.9462100000', '-84.3346500000'),
(7192516, 7197000, 'US', 'Eagle Grove', NULL, 'eagle-grove', 1, '34.2962200000', '-83.0068100000'),
(7192606, 7197000, 'US', 'East Dublin', NULL, 'east-dublin', 1, '32.5482200000', '-82.8718100000'),
(7192608, 7197000, 'US', 'East Ellijay', NULL, 'east-ellijay', 1, '34.6839700000', '-84.4727000000'),
(7192627, 7197000, 'US', 'East Griffin', NULL, 'east-griffin', 1, '33.2437300000', '-84.2288100000'),
(7192674, 7197000, 'US', 'East Point', NULL, 'east-point', 1, '33.6795500000', '-84.4393700000'),
(7192686, 7197000, 'US', 'East Newnan', NULL, 'east-newnan', 1, '33.3506700000', '-84.7766000000'),
(7192754, 7197000, 'US', 'Eastman', NULL, 'eastman', 1, '32.1976700000', '-83.1776500000'),
(7192800, 7197000, 'US', 'Eatonton', NULL, 'eatonton', 1, '33.3268000000', '-83.3885000000'),
(7192957, 7197000, 'US', 'Edgehill', NULL, 'edgehill', 1, '33.1523700000', '-82.6243000000'),
(7192985, 7197000, 'US', 'Edison', NULL, 'edison', 1, '31.5582300000', '-84.7382500000'),
(7193099, 7197000, 'US', 'Elberton', NULL, 'elberton', 1, '34.1115900000', '-82.8686300000'),
(7193210, 7197000, 'US', 'Ellaville', NULL, 'ellaville', 1, '32.2382100000', '-84.3090800000'),
(7193214, 7197000, 'US', 'Ellenton', NULL, 'ellenton', 1, '31.1760200000', '-83.5873900000'),
(7193229, 7197000, 'US', 'Ellijay', NULL, 'ellijay', 1, '34.6948100000', '-84.4821500000'),
(7193354, 7197000, 'US', 'Emerson', NULL, 'emerson', 1, '34.1270400000', '-84.7554900000'),
(7193420, 7197000, 'US', 'Empire', NULL, 'empire', 1, '32.3404400000', '-83.2962700000'),
(7193464, 7197000, 'US', 'Enigma', NULL, 'enigma', 1, '31.4129700000', '-83.3290500000'),
(7193516, 7197000, 'US', 'Ephesus', NULL, 'ephesus', 1, '33.4070600000', '-85.2543900000'),
(7193542, 7197000, 'US', 'Epworth', NULL, 'epworth', 1, '34.9506400000', '-84.3849200000'),
(7193631, 7197000, 'US', 'Eton', NULL, 'eton', 1, '34.8250800000', '-84.7632700000'),
(7193661, 7197000, 'US', 'Euharlee', NULL, 'euharlee', 1, '34.1448200000', '-84.9330000000'),
(7193699, 7197000, 'US', 'Evans', NULL, 'evans', 1, '33.5337500000', '-82.1306700000'),
(7194072, 7197000, 'US', 'Experiment', NULL, 'experiment', 1, '33.2653900000', '-84.2815900000'),
(7194111, 7197000, 'US', 'Fair Oaks', NULL, 'fair-oaks', 1, '33.9164900000', '-84.5446500000'),
(7194121, 7197000, 'US', 'Fairburn', NULL, 'fairburn', 1, '33.5670600000', '-84.5810400000'),
(7194184, 7197000, 'US', 'Fairmount', NULL, 'fairmount', 1, '34.4362000000', '-84.6999300000'),
(7194202, 7197000, 'US', 'Fairview', NULL, 'fairview', 1, '34.9456300000', '-85.2844000000'),
(7194396, 7197000, 'US', 'Fargo', NULL, 'fargo', 1, '30.6818800000', '-82.5665200000'),
(7194474, 7197000, 'US', 'Fayetteville', NULL, 'fayetteville', 1, '33.4487300000', '-84.4549300000'),
(7195168, 7197000, 'US', 'Fitzgerald', NULL, 'fitzgerald', 1, '31.7149100000', '-83.2526500000'),
(7195413, 7197000, 'US', 'Flemington', NULL, 'flemington', 1, '31.8596500000', '-81.5640000000'),
(7195511, 7197000, 'US', 'Flovilla', NULL, 'flovilla', 1, '33.2537300000', '-83.8985200000'),
(7195544, 7197000, 'US', 'Flowery Branch', NULL, 'flowery-branch', 1, '34.1851000000', '-83.9251800000'),
(7195600, 7197000, 'US', 'Folkston', NULL, 'folkston', 1, '30.8309500000', '-82.0113100000'),
(7195701, 7197000, 'US', 'Forest Park', NULL, 'forest-park', 1, '33.6220500000', '-84.3690900000'),
(7195771, 7197000, 'US', 'Forsyth', NULL, 'forsyth', 1, '33.0343000000', '-83.9382400000'),
(7195809, 7197000, 'US', 'Fort Gaines', NULL, 'fort-gaines', 1, '31.6092400000', '-85.0493300000'),
(7195850, 7197000, 'US', 'Fort Oglethorpe', NULL, 'fort-oglethorpe', 1, '34.9489600000', '-85.2569000000'),
(7195869, 7197000, 'US', 'Fort Valley', NULL, 'fort-valley', 1, '32.5537600000', '-83.8874100000'),
(7196083, 7197000, 'US', 'Franklin', NULL, 'franklin', 1, '33.2776200000', '-85.0980000000'),
(7196122, 7197000, 'US', 'Franklin Springs', NULL, 'franklin-springs', 1, '34.2848300000', '-83.1443200000'),
(7196528, 7197000, 'US', 'Funston', NULL, 'funston', 1, '31.1999100000', '-83.8735100000'),
(7196586, 7197000, 'US', 'Gainesville', NULL, 'gainesville', 1, '34.2978800000', '-83.8240700000'),
(7196688, 7197000, 'US', 'Garden City', NULL, 'garden-city', 1, '32.1143700000', '-81.1540000000'),
(7196719, 7197000, 'US', 'Garfield', NULL, 'garfield', 1, '32.6498800000', '-82.0981700000'),
(7196832, 7197000, 'US', 'Gay', NULL, 'gay', 1, '33.0937400000', '-84.5738200000'),
(7196863, 7197000, 'US', 'Geneva', NULL, 'geneva', 1, '32.5798600000', '-84.5507600000'),
(7196917, 7197000, 'US', 'Georgetown', NULL, 'georgetown', 1, '31.9832600000', '-81.2273300000'),
(7197055, 7197000, 'US', 'Gibson', NULL, 'gibson', 1, '33.2334800000', '-82.5954100000'),
(7197141, 7197000, 'US', 'Gillsville', NULL, 'gillsville', 1, '34.3078800000', '-83.6335000000'),
(7197200, 7197000, 'US', 'Girard', NULL, 'girard', 1, '33.0404300000', '-81.7120600000'),
(7197325, 7197000, 'US', 'Glennville', NULL, 'glennville', 1, '31.9365900000', '-81.9284500000'),
(7197332, 7197000, 'US', 'Glenwood', NULL, 'glenwood', 1, '32.1799000000', '-82.6695800000'),
(7197508, 7197000, 'US', 'Good Hope', NULL, 'good-hope', 1, '33.7848400000', '-83.6090600000'),
(7197593, 7197000, 'US', 'Gordon', NULL, 'gordon', 1, '32.8820900000', '-83.3323800000'),
(7197821, 7197000, 'US', 'Graham', NULL, 'graham', 1, '31.8315800000', '-82.5023600000'),
(7197884, 7197000, 'US', 'Grantville', NULL, 'grantville', 1, '33.2348400000', '-84.8357700000'),
(7197938, 7197000, 'US', 'Gray', NULL, 'gray', 1, '33.0095800000', '-83.5337800000'),
(7197968, 7197000, 'US', 'Grayson', NULL, 'grayson', 1, '33.8942700000', '-83.9557400000'),
(7198204, 7197000, 'US', 'Greensboro', NULL, 'greensboro', 1, '33.5756800000', '-83.1823800000'),
(7198218, 7197000, 'US', 'Greenville', NULL, 'greenville', 1, '33.0287400000', '-84.7129800000'),
(7198298, 7197000, 'US', 'Gresham Park', NULL, 'gresham-park', 1, '33.7034400000', '-84.3143700000'),
(7198322, 7197000, 'US', 'Griffin', NULL, 'griffin', 1, '33.2467800000', '-84.2640900000'),
(7198514, 7197000, 'US', 'Grovetown', NULL, 'grovetown', 1, '33.4504200000', '-82.1981800000'),
(7198554, 7197000, 'US', 'Gum Branch', NULL, 'gum-branch', 1, '31.8582600000', '-81.7267800000'),
(7198592, 7197000, 'US', 'Gumlog', NULL, 'gumlog', 1, '34.4917700000', '-83.0965400000'),
(7198633, 7197000, 'US', 'Guyton', NULL, 'guyton', 1, '32.3363000000', '-81.3915000000'),
(7198732, 7197000, 'US', 'Hagan', NULL, 'hagan', 1, '32.1560300000', '-81.9337300000'),
(7198750, 7197000, 'US', 'Hahira', NULL, 'hahira', 1, '30.9913100000', '-83.3726600000'),
(7198912, 7197000, 'US', 'Hamilton', NULL, 'hamilton', 1, '32.7579100000', '-84.8749300000'),
(7198972, 7197000, 'US', 'Hampton', NULL, 'hampton', 1, '33.3870600000', '-84.2829800000'),
(7199055, 7197000, 'US', 'Hannahs Mill', NULL, 'hannahs-mill', 1, '32.9329100000', '-84.3493600000'),
(7199075, 7197000, 'US', 'Hapeville', NULL, 'hapeville', 1, '33.6601100000', '-84.4102000000'),
(7199098, 7197000, 'US', 'Haralson', NULL, 'haralson', 1, '33.2265100000', '-84.5713200000'),
(7199185, 7197000, 'US', 'Hardwick', NULL, 'hardwick', 1, '33.0682000000', '-83.2234900000'),
(7199219, 7197000, 'US', 'Harlem', NULL, 'harlem', 1, '33.4145800000', '-82.3126200000'),
(7199475, 7197000, 'US', 'Harrison', NULL, 'harrison', 1, '32.8262700000', '-82.7251400000'),
(7199572, 7197000, 'US', 'Hartwell', NULL, 'hartwell', 1, '34.3528800000', '-82.9320900000'),
(7199694, 7197000, 'US', 'Hawkinsville', NULL, 'hawkinsville', 1, '32.2837700000', '-83.4721200000'),
(7199778, 7197000, 'US', 'Hazlehurst', NULL, 'hazlehurst', 1, '31.8696300000', '-82.5943000000'),
(7199921, 7197000, 'US', 'Helen', NULL, 'helen', 1, '34.7014800000', '-83.7315700000'),
(7199928, 7197000, 'US', 'Helena', NULL, 'helena', 1, '32.0737900000', '-82.9145900000'),
(7200088, 7197000, 'US', 'Hephzibah', NULL, 'hephzibah', 1, '33.3140300000', '-82.0967900000'),
(7200188, 7197000, 'US', 'Hiawassee', NULL, 'hiawassee', 1, '34.9492600000', '-83.7573900000'),
(7200353, 7197000, 'US', 'Higgston', NULL, 'higgston', 1, '32.2165700000', '-82.4670700000'),
(7200644, 7197000, 'US', 'Hilltop', NULL, 'hilltop', 1, '33.1040100000', '-84.4360300000'),
(7200661, 7197000, 'US', 'Hiltonia', NULL, 'hiltonia', 1, '32.8834900000', '-81.6581700000'),
(7200671, 7197000, 'US', 'Hinesville', NULL, 'hinesville', 1, '31.8468800000', '-81.5959500000'),
(7200707, 7197000, 'US', 'Hiram', NULL, 'hiram', 1, '33.8756600000', '-84.7621600000'),
(7200749, 7197000, 'US', 'Hoboken', NULL, 'hoboken', 1, '31.1810600000', '-82.1348400000'),
(7200849, 7197000, 'US', 'Hogansville', NULL, 'hogansville', 1, '33.1731800000', '-84.9149400000'),
(7201047, 7197000, 'US', 'Holly Springs', NULL, 'holly-springs', 1, '34.1739900000', '-84.5013200000'),
(7201138, 7197000, 'US', 'Homeland', NULL, 'homeland', 1, '30.8563700000', '-82.0226400000'),
(7201141, 7197000, 'US', 'Homer', NULL, 'homer', 1, '34.3337200000', '-83.4990500000'),
(7201144, 7197000, 'US', 'Homerville', NULL, 'homerville', 1, '31.0366000000', '-82.7470800000'),
(7201465, 7197000, 'US', 'Hoschton', NULL, 'hoschton', 1, '34.0965000000', '-83.7612800000'),
(7201536, 7197000, 'US', 'Howard', NULL, 'howard', 1, '32.5959800000', '-84.3843600000'),
(7201697, 7197000, 'US', 'Hull', NULL, 'hull', 1, '34.0148400000', '-83.2937700000'),
(7201905, 7197000, 'US', 'Ideal', NULL, 'ideal', 1, '32.3696000000', '-84.1879700000'),
(7201923, 7197000, 'US', 'Ila', NULL, 'ila', 1, '34.1726100000', '-83.2921000000'),
(7202021, 7197000, 'US', 'Indian Springs', NULL, 'indian-springs', 1, '33.2426200000', '-83.9207400000'),
(7202242, 7197000, 'US', 'Iron City', NULL, 'iron-city', 1, '31.0135200000', '-84.8129800000'),
(7202260, 7197000, 'US', 'Irondale', NULL, 'irondale', 1, '33.4806700000', '-84.3588100000'),
(7202277, 7197000, 'US', 'Irwinton', NULL, 'irwinton', 1, '32.8112600000', '-83.1726500000'),
(7202308, 7197000, 'US', 'Isle of Hope', NULL, 'isle-of-hope', 1, '31.9818800000', '-81.0609400000'),
(7202321, 7197000, 'US', 'Ivey', NULL, 'ivey', 1, '32.9070900000', '-83.2907100000'),
(7202426, 7197000, 'US', 'Jackson', NULL, 'jackson', 1, '33.2945700000', '-83.9660200000'),
(7202524, 7197000, 'US', 'Jacksonville', NULL, 'jacksonville', 1, '31.8129900000', '-82.9813700000'),
(7202543, 7197000, 'US', 'Jakin', NULL, 'jakin', 1, '31.0910200000', '-84.9821500000'),
(7202634, 7197000, 'US', 'Jasper', NULL, 'jasper', 1, '34.4678700000', '-84.4290900000'),
(7202672, 7197000, 'US', 'Jefferson', NULL, 'jefferson', 1, '34.1170500000', '-83.5723900000'),
(7202699, 7197000, 'US', 'Jeffersonville', NULL, 'jeffersonville', 1, '32.6876500000', '-83.3465600000'),
(7202739, 7197000, 'US', 'Jenkinsburg', NULL, 'jenkinsburg', 1, '33.3245600000', '-84.0357500000'),
(7202795, 7197000, 'US', 'Jersey', NULL, 'jersey', 1, '33.7156700000', '-83.7987900000'),
(7202810, 7197000, 'US', 'Jesup', NULL, 'jesup', 1, '31.6078500000', '-81.8863400000'),
(7203316, 7197000, 'US', 'Jonesboro', NULL, 'jonesboro', 1, '33.5215000000', '-84.3538100000'),
(7203466, 7197000, 'US', 'Junction City', NULL, 'junction-city', 1, '32.6034700000', '-84.4593600000'),
(7203696, 7197000, 'US', 'Kennesaw', NULL, 'kennesaw', 1, '34.0234300000', '-84.6154900000'),
(7203777, 7197000, 'US', 'Keysville', NULL, 'keysville', 1, '33.2337600000', '-82.2323400000'),
(7204007, 7197000, 'US', 'Kingsland', NULL, 'kingsland', 1, '30.7999600000', '-81.6898300000'),
(7204015, 7197000, 'US', 'Kingston', NULL, 'kingston', 1, '34.2370400000', '-84.9441100000'),
(7204096, 7197000, 'US', 'Kite', NULL, 'kite', 1, '32.6923800000', '-82.5145800000'),
(7204196, 7197000, 'US', 'Knoxville', NULL, 'knoxville', 1, '32.7243100000', '-83.9976900000'),
(7204230, 7197000, 'US', 'LaGrange', NULL, 'lagrange', 1, '33.0392900000', '-85.0313300000'),
(7204241, 7197000, 'US', 'LaFayette', NULL, 'lafayette', 1, '34.7048000000', '-85.2819000000'),
(7204350, 7197000, 'US', 'Lake City', NULL, 'lake-city', 1, '33.6065000000', '-84.3352000000'),
(7204623, 7197000, 'US', 'Lake Park', NULL, 'lake-park', 1, '30.6821500000', '-83.1795900000'),
(7204775, 7197000, 'US', 'Lakeland', NULL, 'lakeland', 1, '31.0410400000', '-83.0751500000'),
(7204818, 7197000, 'US', 'Lakeview', NULL, 'lakeview', 1, '34.9792400000', '-85.2588400000'),
(7204838, 7197000, 'US', 'Lakeview Estates', NULL, 'lakeview-estates', 1, '33.7067800000', '-84.0315800000'),
(7205164, 7197000, 'US', 'Lavonia', NULL, 'lavonia', 1, '34.4359400000', '-83.1068200000'),
(7205196, 7197000, 'US', 'Lawrenceville', NULL, 'lawrenceville', 1, '33.9562100000', '-83.9879600000'),
(7205269, 7197000, 'US', 'Leary', NULL, 'leary', 1, '31.4857300000', '-84.5138000000'),
(7205392, 7197000, 'US', 'Leesburg', NULL, 'leesburg', 1, '31.7321200000', '-84.1707400000'),
(7205457, 7197000, 'US', 'Leslie', NULL, 'leslie', 1, '31.9554500000', '-84.0865700000'),
(7205541, 7197000, 'US', 'Lexington', NULL, 'lexington', 1, '33.8698400000', '-83.1118200000'),
(7205724, 7197000, 'US', 'Lilburn', NULL, 'lilburn', 1, '33.8901000000', '-84.1429700000'),
(7205738, 7197000, 'US', 'Lilly', NULL, 'lilly', 1, '32.1471100000', '-83.8774000000'),
(7205793, 7197000, 'US', 'Lincoln Park', NULL, 'lincoln-park', 1, '32.8679100000', '-84.3304700000'),
(7205797, 7197000, 'US', 'Lincolnton', NULL, 'lincolnton', 1, '33.7923500000', '-82.4790200000'),
(7205805, 7197000, 'US', 'Lindale', NULL, 'lindale', 1, '34.1867600000', '-85.1746700000'),
(7205853, 7197000, 'US', 'Linwood', NULL, 'linwood', 1, '34.7128600000', '-85.2891200000'),
(7205885, 7197000, 'US', 'Lithia Springs', NULL, 'lithia-springs', 1, '33.7940000000', '-84.6604900000'),
(7205889, 7197000, 'US', 'Lithonia', NULL, 'lithonia', 1, '33.7123300000', '-84.1051900000'),
(7206502, 7197000, 'US', 'Locust Grove', NULL, 'locust-grove', 1, '33.3459500000', '-84.1090800000'),
(7206547, 7197000, 'US', 'Loganville', NULL, 'loganville', 1, '33.8390000000', '-83.9007400000'),
(7206584, 7197000, 'US', 'Lone Oak', NULL, 'lone-oak', 1, '33.1717900000', '-84.8160400000'),
(7206783, 7197000, 'US', 'Lookout Mountain', NULL, 'lookout-mountain', 1, '34.9775800000', '-85.3577400000'),
(7206882, 7197000, 'US', 'Louisville', NULL, 'louisville', 1, '33.0015400000', '-82.4112400000'),
(7206905, 7197000, 'US', 'Lovejoy', NULL, 'lovejoy', 1, '33.4362200000', '-84.3143700000'),
(7207083, 7197000, 'US', 'Ludowici', NULL, 'ludowici', 1, '31.7079900000', '-81.7423400000'),
(7207098, 7197000, 'US', 'Lula', NULL, 'lula', 1, '34.3876000000', '-83.6662900000'),
(7207114, 7197000, 'US', 'Lumber City', NULL, 'lumber-city', 1, '31.9293500000', '-82.6795800000'),
(7207128, 7197000, 'US', 'Lumpkin', NULL, 'lumpkin', 1, '32.0509900000', '-84.7990900000'),
(7207163, 7197000, 'US', 'Luthersville', NULL, 'luthersville', 1, '33.2101200000', '-84.7443800000'),
(7207167, 7197000, 'US', 'Lyerly', NULL, 'lyerly', 1, '34.4039800000', '-85.4032900000'),
(7207205, 7197000, 'US', 'Lyons', NULL, 'lyons', 1, '32.2043500000', '-82.3217900000'),
(7207226, 7197000, 'US', 'Mableton', NULL, 'mableton', 1, '33.8187200000', '-84.5824300000'),
(7207400, 7197000, 'US', 'Macon', NULL, 'macon', 1, '32.8406900000', '-83.6324000000'),
(7207447, 7197000, 'US', 'Madison', NULL, 'madison', 1, '33.5956800000', '-83.4679400000'),
(7207612, 7197000, 'US', 'Manassas', NULL, 'manassas', 1, '32.1604700000', '-82.0195600000'),
(7207625, 7197000, 'US', 'Manchester', NULL, 'manchester', 1, '32.8598500000', '-84.6199300000'),
(7207676, 7197000, 'US', 'Mansfield', NULL, 'mansfield', 1, '33.5179000000', '-83.7343400000'),
(7207783, 7197000, 'US', 'Marietta', NULL, 'marietta', 1, '33.9526000000', '-84.5499300000'),
(7207892, 7197000, 'US', 'Marshallville', NULL, 'marshallville', 1, '32.4562600000', '-83.9401900000'),
(7207916, 7197000, 'US', 'Martin', NULL, 'martin', 1, '34.4870500000', '-83.1848800000'),
(7207981, 7197000, 'US', 'Martinez', NULL, 'martinez', 1, '33.5173600000', '-82.0756700000'),
(7208137, 7197000, 'US', 'Matthews', NULL, 'matthews', 1, '33.2109800000', '-82.3076200000'),
(7208176, 7197000, 'US', 'Maxeys', NULL, 'maxeys', 1, '33.7542900000', '-83.1734900000'),
(7208245, 7197000, 'US', 'Maysville', NULL, 'maysville', 1, '34.2528800000', '-83.5615500000'),
(7208302, 7197000, 'US', 'McCaysville', NULL, 'mccaysville', 1, '34.9861900000', '-84.3713100000'),
(7208442, 7197000, 'US', 'McDonough', NULL, 'mcdonough', 1, '33.4473400000', '-84.1468600000'),
(7208556, 7197000, 'US', 'McIntyre', NULL, 'mcintyre', 1, '32.8462600000', '-83.1907100000'),
(7208683, 7197000, 'US', 'McRae', NULL, 'mcrae', 1, '32.0679500000', '-82.9007000000'),
(7208785, 7197000, 'US', 'Meansville', NULL, 'meansville', 1, '33.0492900000', '-84.3068600000'),
(7208828, 7197000, 'US', 'Meigs', NULL, 'meigs', 1, '31.0724100000', '-84.0890700000'),
(7208912, 7197000, 'US', 'Mendes', NULL, 'mendes', 1, '31.9988100000', '-81.9740100000'),
(7208914, 7197000, 'US', 'Menlo', NULL, 'menlo', 1, '34.4848100000', '-85.4763500000'),
(7209013, 7197000, 'US', 'Metter', NULL, 'metter', 1, '32.3971200000', '-82.0601200000'),
(7209120, 7197000, 'US', 'Midville', NULL, 'midville', 1, '32.8190500000', '-82.2348500000'),
(7209132, 7197000, 'US', 'Midway', NULL, 'midway', 1, '31.8057700000', '-81.4306600000'),
(7209235, 7197000, 'US', 'Milan', NULL, 'milan', 1, '32.0174000000', '-83.0626500000'),
(7209448, 7197000, 'US', 'Milledgeville', NULL, 'milledgeville', 1, '33.0801400000', '-83.2321000000'),
(7209454, 7197000, 'US', 'Millen', NULL, 'millen', 1, '32.8040500000', '-81.9492800000'),
(7209602, 7197000, 'US', 'Milner', NULL, 'milner', 1, '33.1167900000', '-84.1965900000'),
(7209639, 7197000, 'US', 'Mineral Bluff', NULL, 'mineral-bluff', 1, '34.9145300000', '-84.2765900000'),
(7209728, 7197000, 'US', 'Mitchell', NULL, 'mitchell', 1, '33.2198700000', '-82.7031900000'),
(7209858, 7197000, 'US', 'Molena', NULL, 'molena', 1, '33.0120700000', '-84.5002000000'),
(7209884, 7197000, 'US', 'Monroe', NULL, 'monroe', 1, '33.7948400000', '-83.7132300000'),
(7209927, 7197000, 'US', 'Montezuma', NULL, 'montezuma', 1, '32.3051600000', '-84.0274100000'),
(7209934, 7197000, 'US', 'Montgomery', NULL, 'montgomery', 1, '31.9404900000', '-81.1220500000'),
(7209951, 7197000, 'US', 'Monticello', NULL, 'monticello', 1, '33.3048500000', '-83.6832300000'),
(7209969, 7197000, 'US', 'Montrose', NULL, 'montrose', 1, '32.5596100000', '-83.1532100000'),
(7210088, 7197000, 'US', 'Moreland', NULL, 'moreland', 1, '33.2867900000', '-84.7677100000'),
(7210099, 7197000, 'US', 'Morgan', NULL, 'morgan', 1, '31.5376700000', '-84.5993600000'),
(7210146, 7197000, 'US', 'Morganton', NULL, 'morganton', 1, '34.8750800000', '-84.2554700000'),
(7210254, 7197000, 'US', 'Morrow', NULL, 'morrow', 1, '33.5831700000', '-84.3393700000'),
(7210266, 7197000, 'US', 'Morven', NULL, 'morven', 1, '30.9415800000', '-83.4993300000'),
(7210382, 7197000, 'US', 'Mount Airy', NULL, 'mount-airy', 1, '34.5187100000', '-83.5007300000'),
(7210397, 7197000, 'US', 'Moultrie', NULL, 'moultrie', 1, '31.1799100000', '-83.7890600000'),
(7211083, 7197000, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '32.1785100000', '-82.5945800000'),
(7211143, 7197000, 'US', 'Mount Zion', NULL, 'mount-zion', 1, '33.6342800000', '-85.1871700000'),
(7211386, 7197000, 'US', 'Mountain City', NULL, 'mountain-city', 1, '34.9181500000', '-83.3854400000'),
(7211428, 7197000, 'US', 'Mountain Park', NULL, 'mountain-park', 1, '33.8442700000', '-84.1293600000'),
(7211775, 7197000, 'US', 'Nahunta', NULL, 'nahunta', 1, '31.2043900000', '-81.9812300000'),
(7211839, 7197000, 'US', 'Nashville', NULL, 'nashville', 1, '31.2074200000', '-83.2501500000'),
(7211865, 7197000, 'US', 'Naylor', NULL, 'naylor', 1, '30.9088200000', '-83.0782000000'),
(7211941, 7197000, 'US', 'Nelson', NULL, 'nelson', 1, '34.3820400000', '-84.3710300000'),
(7212661, 7197000, 'US', 'Newborn', NULL, 'newborn', 1, '33.5170600000', '-83.6960100000'),
(7212674, 7197000, 'US', 'Newington', NULL, 'newington', 1, '32.5901700000', '-81.5040000000'),
(7212684, 7197000, 'US', 'Newnan', NULL, 'newnan', 1, '33.3806700000', '-84.7996600000'),
(7212728, 7197000, 'US', 'Newton', NULL, 'newton', 1, '31.3129600000', '-84.3357400000'),
(7212770, 7197000, 'US', 'Nicholls', NULL, 'nicholls', 1, '31.5174200000', '-82.6348600000'),
(7212779, 7197000, 'US', 'Nicholson', NULL, 'nicholson', 1, '34.1140000000', '-83.4315500000'),
(7212888, 7197000, 'US', 'Norcross', NULL, 'norcross', 1, '33.9412100000', '-84.2135300000'),
(7212913, 7197000, 'US', 'Norman Park', NULL, 'norman-park', 1, '31.2690700000', '-83.6871200000'),
(7212934, 7197000, 'US', 'Norristown', NULL, 'norristown', 1, '32.5068300000', '-82.4943000000'),
(7212937, 7197000, 'US', 'North Atlanta', NULL, 'north-atlanta', 1, '33.8651000000', '-84.3365900000'),
(7212992, 7197000, 'US', 'North Decatur', NULL, 'north-decatur', 1, '33.7903800000', '-84.3060300000'),
(7212995, 7197000, 'US', 'North Druid Hills', NULL, 'north-druid-hills', 1, '33.8167700000', '-84.3132600000'),
(7213063, 7197000, 'US', 'North High Shoals', NULL, 'north-high-shoals', 1, '33.8201200000', '-83.5060000000'),
(7213314, 7197000, 'US', 'Norwood', NULL, 'norwood', 1, '33.4626400000', '-82.7051400000'),
(7213347, 7197000, 'US', 'Nunez', NULL, 'nunez', 1, '32.4912800000', '-82.3470700000'),
(7213633, 7197000, 'US', 'Oak Park', NULL, 'oak-park', 1, '32.3582300000', '-82.3145700000'),
(7213771, 7197000, 'US', 'Oakwood', NULL, 'oakwood', 1, '34.2276000000', '-83.8843500000'),
(7213805, 7197000, 'US', 'Ochlocknee', NULL, 'ochlocknee', 1, '30.9741500000', '-84.0550200000'),
(7213812, 7197000, 'US', 'Ocilla', NULL, 'ocilla', 1, '31.5944700000', '-83.2513000000'),
(7213828, 7197000, 'US', 'Oconee', NULL, 'oconee', 1, '32.8554300000', '-82.9498700000'),
(7213881, 7197000, 'US', 'Odum', NULL, 'odum', 1, '31.6660400000', '-82.0279000000'),
(7213895, 7197000, 'US', 'Offerman', NULL, 'offerman', 1, '31.4096600000', '-82.1117800000'),
(7213919, 7197000, 'US', 'Oglethorpe', NULL, 'oglethorpe', 1, '32.2937700000', '-84.0610200000'),
(7214266, 7197000, 'US', 'Oliver', NULL, 'oliver', 1, '32.5215700000', '-81.5331600000'),
(7214292, 7197000, 'US', 'Omaha', NULL, 'omaha', 1, '32.1462600000', '-85.0132600000'),
(7214294, 7197000, 'US', 'Omega', NULL, 'omega', 1, '31.3410200000', '-83.5935000000'),
(7214365, 7197000, 'US', 'Orchard Hill', NULL, 'orchard-hill', 1, '33.1865100000', '-84.2113100000'),
(7214538, 7197000, 'US', 'Oxford', NULL, 'oxford', 1, '33.6190000000', '-83.8674100000'),
(7214627, 7197000, 'US', 'Palmetto', NULL, 'palmetto', 1, '33.5178900000', '-84.6696500000'),
(7214693, 7197000, 'US', 'Panthersville', NULL, 'panthersville', 1, '33.7073300000', '-84.2718700000'),
(7214884, 7197000, 'US', 'Parrott', NULL, 'parrott', 1, '31.8935000000', '-84.5132500000'),
(7215033, 7197000, 'US', 'Pavo', NULL, 'pavo', 1, '30.9599100000', '-83.7379500000'),
(7215039, 7197000, 'US', 'Payne', NULL, 'payne', 1, '32.8529200000', '-83.6879600000'),
(7215110, 7197000, 'US', 'Peachtree City', NULL, 'peachtree-city', 1, '33.3967800000', '-84.5957600000'),
(7215114, 7197000, 'US', 'Peachtree Corners', NULL, 'peachtree-corners', 1, '33.9701000000', '-84.2215900000'),
(7215163, 7197000, 'US', 'Pearson', NULL, 'pearson', 1, '31.2977000000', '-82.8523700000'),
(7215243, 7197000, 'US', 'Pelham', NULL, 'pelham', 1, '31.1280200000', '-84.1530400000'),
(7215251, 7197000, 'US', 'Pembroke', NULL, 'pembroke', 1, '32.1363400000', '-81.6234800000'),
(7215255, 7197000, 'US', 'Pendergrass', NULL, 'pendergrass', 1, '34.1623300000', '-83.6779500000'),
(7215371, 7197000, 'US', 'Perkins', NULL, 'perkins', 1, '32.9096000000', '-81.9528900000'),
(7215391, 7197000, 'US', 'Perry', NULL, 'perry', 1, '32.4582100000', '-83.7315700000'),
(7215613, 7197000, 'US', 'Phillipsburg', NULL, 'phillipsburg', 1, '31.4396300000', '-83.5193300000'),
(7215999, 7197000, 'US', 'Pine Lake', NULL, 'pine-lake', 1, '33.7937200000', '-84.2060300000'),
(7216043, 7197000, 'US', 'Pine Mountain', NULL, 'pine-mountain', 1, '33.6759400000', '-84.1149200000'),
(7216154, 7197000, 'US', 'Pinehurst', NULL, 'pinehurst', 1, '32.1960000000', '-83.7629500000'),
(7216189, 7197000, 'US', 'Pineview', NULL, 'pineview', 1, '32.1101700000', '-83.5010000000'),
(7216398, 7197000, 'US', 'Pitts', NULL, 'pitts', 1, '31.9446200000', '-83.5407200000'),
(7216423, 7197000, 'US', 'Plains', NULL, 'plains', 1, '32.0340500000', '-84.3926900000'),
(7216438, 7197000, 'US', 'Plainville', NULL, 'plainville', 1, '34.4050900000', '-85.0371700000'),
(7216948, 7197000, 'US', 'Pooler', NULL, 'pooler', 1, '32.1154800000', '-81.2470600000'),
(7217075, 7197000, 'US', 'Port Wentworth', NULL, 'port-wentworth', 1, '32.1490900000', '-81.1631700000'),
(7217080, 7197000, 'US', 'Portal', NULL, 'portal', 1, '32.5382200000', '-81.9323400000'),
(7217100, 7197000, 'US', 'Porterdale', NULL, 'porterdale', 1, '33.5751100000', '-83.8938000000'),
(7217195, 7197000, 'US', 'Poulan', NULL, 'poulan', 1, '31.5129600000', '-83.7876700000'),
(7217214, 7197000, 'US', 'Powder Springs', NULL, 'powder-springs', 1, '33.8595500000', '-84.6838200000'),
(7217343, 7197000, 'US', 'Preston', NULL, 'preston', 1, '32.0659900000', '-84.5374200000'),
(7217562, 7197000, 'US', 'Pulaski', NULL, 'pulaski', 1, '32.3901800000', '-81.9567800000'),
(7217634, 7197000, 'US', 'Putney', NULL, 'putney', 1, '31.4701800000', '-84.1176800000'),
(7217712, 7197000, 'US', 'Quitman', NULL, 'quitman', 1, '30.7849200000', '-83.5598800000'),
(7217921, 7197000, 'US', 'Ranger', NULL, 'ranger', 1, '34.5012000000', '-84.7096600000'),
(7217931, 7197000, 'US', 'Raoul', NULL, 'raoul', 1, '34.4495400000', '-83.5943400000'),
(7217984, 7197000, 'US', 'Ray City', NULL, 'ray-city', 1, '31.0746400000', '-83.1993200000'),
(7218038, 7197000, 'US', 'Rayle', NULL, 'rayle', 1, '33.7898500000', '-82.8998700000'),
(7218041, 7197000, 'US', 'Rebecca', NULL, 'rebecca', 1, '31.8065700000', '-83.4868300000'),
(7218165, 7197000, 'US', 'Redan', NULL, 'redan', 1, '33.7453800000', '-84.1315800000'),
(7218244, 7197000, 'US', 'Reed Creek', NULL, 'reed-creek', 1, '34.4459400000', '-82.9248700000'),
(7218366, 7197000, 'US', 'Register', NULL, 'register', 1, '32.3671200000', '-81.8840000000'),
(7218414, 7197000, 'US', 'Reidsville', NULL, 'reidsville', 1, '32.0868600000', '-82.1179000000'),
(7218427, 7197000, 'US', 'Remerton', NULL, 'remerton', 1, '30.8440900000', '-83.3104300000'),
(7218442, 7197000, 'US', 'Rentz', NULL, 'rentz', 1, '32.3835000000', '-82.9912600000'),
(7218450, 7197000, 'US', 'Resaca', NULL, 'resaca', 1, '34.5803600000', '-84.9432800000'),
(7218549, 7197000, 'US', 'Rest Haven', NULL, 'rest-haven', 1, '34.1331600000', '-83.9765700000'),
(7218581, 7197000, 'US', 'Reynolds', NULL, 'reynolds', 1, '32.5598700000', '-84.0963000000'),
(7218611, 7197000, 'US', 'Rhine', NULL, 'rhine', 1, '31.9896200000', '-83.2001500000'),
(7218659, 7197000, 'US', 'Riceboro', NULL, 'riceboro', 1, '31.7354900000', '-81.4334400000'),
(7218732, 7197000, 'US', 'Richland', NULL, 'richland', 1, '32.0879300000', '-84.6674200000'),
(7218752, 7197000, 'US', 'Richmond Hill', NULL, 'richmond-hill', 1, '31.9382700000', '-81.3034400000'),
(7218785, 7197000, 'US', 'Riddleville', NULL, 'riddleville', 1, '32.9068200000', '-82.6656900000'),
(7218882, 7197000, 'US', 'Rincon', NULL, 'rincon', 1, '32.2960300000', '-81.2353900000'),
(7218896, 7197000, 'US', 'Ringgold', NULL, 'ringgold', 1, '34.9159100000', '-85.1091200000'),
(7219001, 7197000, 'US', 'Riverdale', NULL, 'riverdale', 1, '33.5726100000', '-84.4132600000'),
(7219031, 7197000, 'US', 'Riverside', NULL, 'riverside', 1, '31.1801900000', '-83.8062900000'),
(7219161, 7197000, 'US', 'Roberta', NULL, 'roberta', 1, '32.7218100000', '-84.0132400000'),
(7219255, 7197000, 'US', 'Rochelle', NULL, 'rochelle', 1, '31.9510100000', '-83.4562700000'),
(7219453, 7197000, 'US', 'Rockingham', NULL, 'rockingham', 1, '31.5479800000', '-82.4165200000'),
(7219459, 7197000, 'US', 'Rockmart', NULL, 'rockmart', 1, '34.0026000000', '-85.0416100000'),
(7219581, 7197000, 'US', 'Rocky Ford', NULL, 'rocky-ford', 1, '32.6635000000', '-81.8295600000'),
(7219762, 7197000, 'US', 'Rome', NULL, 'rome', 1, '34.2570400000', '-85.1646700000'),
(7219778, 7197000, 'US', 'Roopville', NULL, 'roopville', 1, '33.4565000000', '-85.1307800000'),
(7219934, 7197000, 'US', 'Roswell', NULL, 'roswell', 1, '34.0231600000', '-84.3615900000'),
(7219964, 7197000, 'US', 'Rossville', NULL, 'rossville', 1, '34.9831300000', '-85.2860700000'),
(7220073, 7197000, 'US', 'Royston', NULL, 'royston', 1, '34.2870500000', '-83.1101500000'),
(7220151, 7197000, 'US', 'Russell', NULL, 'russell', 1, '33.9787200000', '-83.7001700000'),
(7220204, 7197000, 'US', 'Rutledge', NULL, 'rutledge', 1, '33.6259500000', '-83.6123900000'),
(7220217, 7197000, 'US', 'Rydal', NULL, 'rydal', 1, '34.3353700000', '-84.7154900000'),
(7220629, 7197000, 'US', 'St. Marys', NULL, 'st-marys', 1, '30.7305100000', '-81.5464900000'),
(7220861, 7197000, 'US', 'Saint Simon Mills', NULL, 'saint-simon-mills', 1, '31.1707900000', '-81.4073200000'),
(7220866, 7197000, 'US', 'Saint Simons Island', NULL, 'saint-simons-island', 1, '31.1505100000', '-81.3695400000'),
(7220924, 7197000, 'US', 'Salem', NULL, 'salem', 1, '32.7587500000', '-84.1876900000'),
(7221050, 7197000, 'US', 'Sale City', NULL, 'sale-city', 1, '31.2643500000', '-84.0212900000'),
(7221206, 7197000, 'US', 'Sandersville', NULL, 'sandersville', 1, '32.9815400000', '-82.8101400000'),
(7221333, 7197000, 'US', 'Sandy Springs', NULL, 'sandy-springs', 1, '33.9242700000', '-84.3785400000'),
(7221352, 7197000, 'US', 'Santa Claus', NULL, 'santa-claus', 1, '32.1715800000', '-82.3315100000'),
(7221394, 7197000, 'US', 'Sardis', NULL, 'sardis', 1, '32.9751600000', '-81.7576100000'),
(7221492, 7197000, 'US', 'Sasser', NULL, 'sasser', 1, '31.7198900000', '-84.3471400000'),
(7221500, 7197000, 'US', 'Satilla', NULL, 'satilla', 1, '31.7874100000', '-82.5679100000'),
(7221552, 7197000, 'US', 'Savannah', NULL, 'savannah', 1, '32.0835400000', '-81.0998300000'),
(7221697, 7197000, 'US', 'Scotland', NULL, 'scotland', 1, '32.0487900000', '-82.8170900000'),
(7221732, 7197000, 'US', 'Scottdale', NULL, 'scottdale', 1, '33.7898300000', '-84.2640900000'),
(7221755, 7197000, 'US', 'Screven', NULL, 'screven', 1, '31.4863300000', '-82.0170600000'),
(7221953, 7197000, 'US', 'Senoia', NULL, 'senoia', 1, '33.3023400000', '-84.5538200000'),
(7222014, 7197000, 'US', 'Seville', NULL, 'seville', 1, '31.9604500000', '-83.6010000000'),
(7222072, 7197000, 'US', 'Shady Dale', NULL, 'shady-dale', 1, '33.4006800000', '-83.5901700000'),
(7222182, 7197000, 'US', 'Shannon', NULL, 'shannon', 1, '34.3367600000', '-85.0713400000'),
(7222196, 7197000, 'US', 'Sharon', NULL, 'sharon', 1, '33.5598600000', '-82.7948600000'),
(7222258, 7197000, 'US', 'Sharpsburg', NULL, 'sharpsburg', 1, '33.3392800000', '-84.6485400000'),
(7222333, 7197000, 'US', 'Shellman', NULL, 'shellman', 1, '31.7562800000', '-84.6152000000'),
(7222433, 7197000, 'US', 'Shiloh', NULL, 'shiloh', 1, '32.8101300000', '-84.6960400000'),
(7222764, 7197000, 'US', 'Siloam', NULL, 'siloam', 1, '33.5368000000', '-83.0809900000'),
(7223004, 7197000, 'US', 'Skidaway Island', NULL, 'skidaway-island', 1, '31.9349400000', '-81.0470500000'),
(7223030, 7197000, 'US', 'Sky Valley', NULL, 'sky-valley', 1, '34.9875900000', '-83.3332100000'),
(7223313, 7197000, 'US', 'Smithville', NULL, 'smithville', 1, '31.9004500000', '-84.2518500000'),
(7223379, 7197000, 'US', 'Smyrna', NULL, 'smyrna', 1, '33.8839900000', '-84.5143800000'),
(7223413, 7197000, 'US', 'Snellville', NULL, 'snellville', 1, '33.8573300000', '-84.0199100000'),
(7223469, 7197000, 'US', 'Social Circle', NULL, 'social-circle', 1, '33.6562300000', '-83.7182300000'),
(7223516, 7197000, 'US', 'Soperton', NULL, 'soperton', 1, '32.3771200000', '-82.5923600000'),
(7223871, 7197000, 'US', 'Sparks', NULL, 'sparks', 1, '31.1668600000', '-83.4373800000'),
(7223880, 7197000, 'US', 'Sparta', NULL, 'sparta', 1, '33.2757000000', '-82.9762600000'),
(7224162, 7197000, 'US', 'Springfield', NULL, 'springfield', 1, '32.3724100000', '-81.3115000000'),
(7224342, 7197000, 'US', 'Stapleton', NULL, 'stapleton', 1, '33.2157000000', '-82.4681800000'),
(7224412, 7197000, 'US', 'Statenville', NULL, 'statenville', 1, '30.7032700000', '-83.0276400000'),
(7224413, 7197000, 'US', 'Statesboro', NULL, 'statesboro', 1, '32.4487900000', '-81.7831700000'),
(7224427, 7197000, 'US', 'Statham', NULL, 'statham', 1, '33.9651100000', '-83.5965500000'),
(7224653, 7197000, 'US', 'Stillmore', NULL, 'stillmore', 1, '32.4421200000', '-82.2151200000'),
(7224681, 7197000, 'US', 'Stockbridge', NULL, 'stockbridge', 1, '33.5442800000', '-84.2338100000'),
(7224745, 7197000, 'US', 'Stone Mountain', NULL, 'stone-mountain', 1, '33.8081600000', '-84.1702000000'),
(7225039, 7197000, 'US', 'Sugar Hill', NULL, 'sugar-hill', 1, '34.1064900000', '-84.0335200000'),
(7225118, 7197000, 'US', 'Summertown', NULL, 'summertown', 1, '32.7459900000', '-82.2762400000'),
(7225122, 7197000, 'US', 'Summerville', NULL, 'summerville', 1, '34.4806400000', '-85.3477300000'),
(7225146, 7197000, 'US', 'Sumner', NULL, 'sumner', 1, '31.5129600000', '-83.7385100000'),
(7225207, 7197000, 'US', 'Sunny Side', NULL, 'sunny-side', 1, '33.3406700000', '-84.2907600000'),
(7225215, 7197000, 'US', 'Sunnyside', NULL, 'sunnyside', 1, '31.2393800000', '-82.3420700000'),
(7225268, 7197000, 'US', 'Sunset Village', NULL, 'sunset-village', 1, '32.8979100000', '-84.4038100000'),
(7225279, 7197000, 'US', 'Surrency', NULL, 'surrency', 1, '31.7238100000', '-82.1979000000'),
(7225309, 7197000, 'US', 'Suwanee', NULL, 'suwanee', 1, '34.0514900000', '-84.0713000000'),
(7225346, 7197000, 'US', 'Swainsboro', NULL, 'swainsboro', 1, '32.5973900000', '-82.3337400000'),
(7225487, 7197000, 'US', 'Sycamore', NULL, 'sycamore', 1, '31.6743500000', '-83.6373900000'),
(7225515, 7197000, 'US', 'Sylvania', NULL, 'sylvania', 1, '32.7504400000', '-81.6367800000'),
(7225522, 7197000, 'US', 'Sylvester', NULL, 'sylvester', 1, '31.5309200000', '-83.8369300000'),
(7225613, 7197000, 'US', 'Talbotton', NULL, 'talbotton', 1, '32.6776400000', '-84.5393700000'),
(7225631, 7197000, 'US', 'Talking Rock', NULL, 'talking-rock', 1, '34.5092600000', '-84.5049300000'),
(7225658, 7197000, 'US', 'Tallapoosa', NULL, 'tallapoosa', 1, '33.7445500000', '-85.2880100000'),
(7225664, 7197000, 'US', 'Tallulah Falls', NULL, 'tallulah-falls', 1, '34.7306500000', '-83.3943300000'),
(7225687, 7197000, 'US', 'Talmo', NULL, 'talmo', 1, '34.1851100000', '-83.7207300000'),
(7225773, 7197000, 'US', 'Tarrytown', NULL, 'tarrytown', 1, '32.3187900000', '-82.5593000000'),
(7225790, 7197000, 'US', 'Tate City', NULL, 'tate-city', 1, '34.9817600000', '-83.5543300000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7225913, 7197000, 'US', 'Taylorsville', NULL, 'taylorsville', 1, '34.0862100000', '-84.9874400000'),
(7225973, 7197000, 'US', 'Temple', NULL, 'temple', 1, '33.7370500000', '-85.0324400000'),
(7226031, 7197000, 'US', 'Tennille', NULL, 'tennille', 1, '32.9359900000', '-82.8115300000'),
(7226208, 7197000, 'US', 'The Rock', NULL, 'the-rock', 1, '32.9640200000', '-84.2410300000'),
(7226348, 7197000, 'US', 'Thomasville', NULL, 'thomasville', 1, '30.8365800000', '-83.9787800000'),
(7226364, 7197000, 'US', 'Thomaston', NULL, 'thomaston', 1, '32.8881900000', '-84.3265900000'),
(7226435, 7197000, 'US', 'Thomson', NULL, 'thomson', 1, '33.4706900000', '-82.5045700000'),
(7226499, 7197000, 'US', 'Thunderbolt', NULL, 'thunderbolt', 1, '32.0335400000', '-81.0498300000'),
(7226552, 7197000, 'US', 'Tifton', NULL, 'tifton', 1, '31.4504600000', '-83.5085000000'),
(7226562, 7197000, 'US', 'Tiger', NULL, 'tiger', 1, '34.8470400000', '-83.4329400000'),
(7226586, 7197000, 'US', 'Tignall', NULL, 'tignall', 1, '33.8676200000', '-82.7412500000'),
(7226722, 7197000, 'US', 'Toccoa', NULL, 'toccoa', 1, '34.5773200000', '-83.3323900000'),
(7226808, 7197000, 'US', 'Toomsboro', NULL, 'toomsboro', 1, '32.8268200000', '-83.0793200000'),
(7227012, 7197000, 'US', 'Trenton', NULL, 'trenton', 1, '34.8720200000', '-85.5091300000'),
(7227128, 7197000, 'US', 'Trion', NULL, 'trion', 1, '34.5439700000', '-85.3105100000'),
(7227213, 7197000, 'US', 'Tucker', NULL, 'tucker', 1, '33.8545500000', '-84.2171400000'),
(7227277, 7197000, 'US', 'Tunnel Hill', NULL, 'tunnel-hill', 1, '34.8406300000', '-85.0427300000'),
(7227283, 7197000, 'US', 'Turin', NULL, 'turin', 1, '33.3265100000', '-84.6357600000'),
(7227521, 7197000, 'US', 'Twin City', NULL, 'twin-city', 1, '32.5829400000', '-82.1551200000'),
(7227582, 7197000, 'US', 'Ty Ty', NULL, 'ty-ty', 1, '31.4718500000', '-83.6468400000'),
(7227593, 7197000, 'US', 'Tybee Island', NULL, 'tybee-island', 1, '32.0002200000', '-80.8456700000'),
(7227612, 7197000, 'US', 'Tyrone', NULL, 'tyrone', 1, '33.4712300000', '-84.5971500000'),
(7227639, 7197000, 'US', 'Unadilla', NULL, 'unadilla', 1, '32.2615500000', '-83.7365700000'),
(7227777, 7197000, 'US', 'Union City', NULL, 'union-city', 1, '33.5870600000', '-84.5424300000'),
(7227871, 7197000, 'US', 'Union Point', NULL, 'union-point', 1, '33.6156800000', '-83.0746000000'),
(7227917, 7197000, 'US', 'Unionville', NULL, 'unionville', 1, '31.4349100000', '-83.5096100000'),
(7228139, 7197000, 'US', 'Uvalda', NULL, 'uvalda', 1, '32.0357400000', '-82.5081900000'),
(7228147, 7197000, 'US', 'Valdosta', NULL, 'valdosta', 1, '30.8333400000', '-83.2803200000'),
(7228262, 7197000, 'US', 'Varnell', NULL, 'varnell', 1, '34.9011900000', '-84.9738300000'),
(7228345, 7197000, 'US', 'Vernonburg', NULL, 'vernonburg', 1, '31.9657700000', '-81.1201100000'),
(7228425, 7197000, 'US', 'Vidalia', NULL, 'vidalia', 1, '32.2176900000', '-82.4134600000'),
(7228439, 7197000, 'US', 'Vidette', NULL, 'vidette', 1, '33.0376500000', '-82.2473500000'),
(7228440, 7197000, 'US', 'Vienna', NULL, 'vienna', 1, '32.0915600000', '-83.7954500000'),
(7228452, 7197000, 'US', 'Villa Rica', NULL, 'villa-rica', 1, '33.7320500000', '-84.9191100000'),
(7228518, 7197000, 'US', 'Vinings', NULL, 'vinings', 1, '33.8648300000', '-84.4643700000'),
(7229053, 7197000, 'US', 'Waco', NULL, 'waco', 1, '33.7028800000', '-85.1832800000'),
(7229079, 7197000, 'US', 'Wadley', NULL, 'wadley', 1, '32.8668200000', '-82.4040200000'),
(7229129, 7197000, 'US', 'Waleska', NULL, 'waleska', 1, '34.3164800000', '-84.5521500000'),
(7229317, 7197000, 'US', 'Walnut Grove', NULL, 'walnut-grove', 1, '33.7426100000', '-83.8524000000'),
(7229357, 7197000, 'US', 'Walthourville', NULL, 'walthourville', 1, '31.7741000000', '-81.6326100000'),
(7229468, 7197000, 'US', 'Warm Springs', NULL, 'warm-springs', 1, '32.8904100000', '-84.6810400000'),
(7229476, 7197000, 'US', 'Warner Robins', NULL, 'warner-robins', 1, '32.6157400000', '-83.6266400000'),
(7229517, 7197000, 'US', 'Warrenton', NULL, 'warrenton', 1, '33.4070800000', '-82.6620800000'),
(7229530, 7197000, 'US', 'Warwick', NULL, 'warwick', 1, '31.8310100000', '-83.9187900000'),
(7229546, 7197000, 'US', 'Washington', NULL, 'washington', 1, '33.7367900000', '-82.7393100000'),
(7229691, 7197000, 'US', 'Watkinsville', NULL, 'watkinsville', 1, '33.8629000000', '-83.4087700000'),
(7229763, 7197000, 'US', 'Waycross', NULL, 'waycross', 1, '31.2136800000', '-82.3557000000'),
(7229791, 7197000, 'US', 'Waynesboro', NULL, 'waynesboro', 1, '33.0898700000', '-82.0156700000'),
(7229824, 7197000, 'US', 'Waverly Hall', NULL, 'waverly-hall', 1, '32.6834700000', '-84.7382600000'),
(7230259, 7197000, 'US', 'West Point', NULL, 'west-point', 1, '32.8779100000', '-85.1832700000'),
(7230387, 7197000, 'US', 'Weston', NULL, 'weston', 1, '31.9759900000', '-84.6149200000'),
(7230524, 7197000, 'US', 'Whigham', NULL, 'whigham', 1, '30.8829700000', '-84.3237900000'),
(7230567, 7197000, 'US', 'White', NULL, 'white', 1, '34.2828700000', '-84.7452100000'),
(7230675, 7197000, 'US', 'White Plains', NULL, 'white-plains', 1, '33.4720800000', '-83.0354300000'),
(7230760, 7197000, 'US', 'Whitemarsh Island', NULL, 'whitemarsh-island', 1, '32.0288200000', '-81.0167800000'),
(7230789, 7197000, 'US', 'Whitesburg', NULL, 'whitesburg', 1, '33.4940000000', '-84.9138300000'),
(7231065, 7197000, 'US', 'Willacoochee', NULL, 'willacoochee', 1, '31.3407600000', '-83.0459800000'),
(7231238, 7197000, 'US', 'Williamson', NULL, 'williamson', 1, '33.1823400000', '-84.3615900000'),
(7231354, 7197000, 'US', 'Wilmington Island', NULL, 'wilmington-island', 1, '32.0035500000', '-80.9737200000'),
(7231523, 7197000, 'US', 'Winder', NULL, 'winder', 1, '33.9926100000', '-83.7201700000'),
(7231567, 7197000, 'US', 'Winterville', NULL, 'winterville', 1, '33.9670600000', '-83.2782100000'),
(7231725, 7197000, 'US', 'Woodbine', NULL, 'woodbine', 1, '30.9639600000', '-81.7241600000'),
(7231738, 7197000, 'US', 'Woodbury', NULL, 'woodbury', 1, '32.9837400000', '-84.5827000000'),
(7231769, 7197000, 'US', 'Woodland', NULL, 'woodland', 1, '32.7873600000', '-84.5618700000'),
(7231874, 7197000, 'US', 'Woodstock', NULL, 'woodstock', 1, '34.1014900000', '-84.5193800000'),
(7231895, 7197000, 'US', 'Woodville', NULL, 'woodville', 1, '33.6715100000', '-83.1059900000'),
(7231935, 7197000, 'US', 'Woolsey', NULL, 'woolsey', 1, '33.3623400000', '-84.4121500000'),
(7231997, 7197000, 'US', 'Wrens', NULL, 'wrens', 1, '33.2076500000', '-82.3917900000'),
(7232049, 7197000, 'US', 'Wrightsville', NULL, 'wrightsville', 1, '32.7293300000', '-82.7198600000'),
(7232124, 7197000, 'US', 'Yatesville', NULL, 'yatesville', 1, '32.9137400000', '-84.1426900000'),
(7232183, 7197000, 'US', 'Yonah', NULL, 'yonah', 1, '34.6412100000', '-83.7535100000'),
(7232246, 7197000, 'US', 'Young Harris', NULL, 'young-harris', 1, '34.9331500000', '-83.8471200000'),
(7232308, 7197000, 'US', 'Zebulon', NULL, 'zebulon', 1, '33.1023500000', '-84.3427000000'),
(7232522, 7896861, 'US', 'Addieville', NULL, 'addieville', 1, '38.3914400000', '-89.4900900000'),
(7232564, 7896861, 'US', 'Albers', NULL, 'albers', 1, '38.5433800000', '-89.6123100000'),
(7232568, 7896861, 'US', 'Albion', NULL, 'albion', 1, '38.3775500000', '-88.0561500000'),
(7232599, 7896861, 'US', 'Alhambra', NULL, 'alhambra', 1, '38.8883800000', '-89.7314800000'),
(7232624, 7896861, 'US', 'Allendale', NULL, 'allendale', 1, '38.5267100000', '-87.7097500000'),
(7232632, 7896861, 'US', 'Allenville', NULL, 'allenville', 1, '39.5555900000', '-88.5297800000'),
(7232633, 7896861, 'US', 'Allerton', NULL, 'allerton', 1, '39.9117000000', '-87.9364200000'),
(7232649, 7896861, 'US', 'Alma', NULL, 'alma', 1, '38.7217100000', '-88.9092200000'),
(7232652, 7896861, 'US', 'Alorton', NULL, 'alorton', 1, '38.5897700000', '-90.1201100000'),
(7232653, 7896861, 'US', 'Alsey', NULL, 'alsey', 1, '39.5606000000', '-90.4340100000'),
(7232662, 7896861, 'US', 'Altamont', NULL, 'altamont', 1, '39.0619900000', '-88.7481100000'),
(7232675, 7896861, 'US', 'Alto Pass', NULL, 'alto-pass', 1, '37.5703300000', '-89.3175900000'),
(7232679, 7896861, 'US', 'Alton', NULL, 'alton', 1, '38.8906000000', '-90.1842800000'),
(7232776, 7896861, 'US', 'Anna', NULL, 'anna', 1, '37.4603300000', '-89.2470300000'),
(7232790, 7896861, 'US', 'Annapolis', NULL, 'annapolis', 1, '39.1444800000', '-87.8167000000'),
(7232862, 7896861, 'US', 'Arcola', NULL, 'arcola', 1, '39.6847600000', '-88.3064400000'),
(7232872, 7896861, 'US', 'Arenzville', NULL, 'arenzville', 1, '39.8769900000', '-90.3734600000'),
(7232876, 7896861, 'US', 'Argenta', NULL, 'argenta', 1, '39.9819800000', '-88.8228500000'),
(7232911, 7896861, 'US', 'Arthur', NULL, 'arthur', 1, '39.7147600000', '-88.4722800000'),
(7232953, 7896861, 'US', 'Ashland', NULL, 'ashland', 1, '39.8878300000', '-90.0078900000'),
(7232964, 7896861, 'US', 'Ashley', NULL, 'ashley', 1, '38.3294900000', '-89.1909100000'),
(7232973, 7896861, 'US', 'Ashmore', NULL, 'ashmore', 1, '39.5330900000', '-88.0222600000'),
(7232987, 7896861, 'US', 'Assumption', NULL, 'assumption', 1, '39.5203200000', '-89.0489700000'),
(7232997, 7896861, 'US', 'Athens', NULL, 'athens', 1, '39.9608800000', '-89.7239900000'),
(7233022, 7896861, 'US', 'Atwood', NULL, 'atwood', 1, '39.7994800000', '-88.4622800000'),
(7233029, 7896861, 'US', 'Auburn', NULL, 'auburn', 1, '39.5917200000', '-89.7464900000'),
(7233069, 7896861, 'US', 'Ava', NULL, 'ava', 1, '37.8883800000', '-89.4948200000'),
(7233090, 7896861, 'US', 'Aviston', NULL, 'aviston', 1, '38.6067200000', '-89.6075900000'),
(7233151, 7896861, 'US', 'Baldwin', NULL, 'baldwin', 1, '38.1831100000', '-89.8426000000'),
(7233255, 7896861, 'US', 'Barry', NULL, 'barry', 1, '39.6942100000', '-91.0390200000'),
(7233261, 7896861, 'US', 'Bartelso', NULL, 'bartelso', 1, '38.5364400000', '-89.4664700000'),
(7233288, 7896861, 'US', 'Batchtown', NULL, 'batchtown', 1, '39.0331000000', '-90.6576200000'),
(7233324, 7896861, 'US', 'Baylis', NULL, 'baylis', 1, '39.7283800000', '-90.9081900000'),
(7233430, 7896861, 'US', 'Beckemeyer', NULL, 'beckemeyer', 1, '38.6056000000', '-89.4359200000'),
(7233467, 7896861, 'US', 'Beecher City', NULL, 'beecher-city', 1, '39.1881000000', '-88.7867300000'),
(7233492, 7896861, 'US', 'Belknap', NULL, 'belknap', 1, '37.3250500000', '-88.9389600000'),
(7233516, 7896861, 'US', 'Belle Prairie City', NULL, 'belle-prairie-city', 1, '38.2225500000', '-88.5553300000'),
(7233518, 7896861, 'US', 'Belle Rive', NULL, 'belle-rive', 1, '38.2328300000', '-88.7406200000'),
(7233541, 7896861, 'US', 'Bellmont', NULL, 'bellmont', 1, '38.3844900000', '-87.9114200000'),
(7233552, 7896861, 'US', 'Bement', NULL, 'bement', 1, '39.9219800000', '-88.5720100000'),
(7233572, 7896861, 'US', 'Benld', NULL, 'benld', 1, '39.0928200000', '-89.8039800000'),
(7233586, 7896861, 'US', 'Benton', NULL, 'benton', 1, '37.9967200000', '-88.9200700000'),
(7233627, 7896861, 'US', 'Berlin', NULL, 'berlin', 1, '39.7589400000', '-89.9031600000'),
(7233662, 7896861, 'US', 'Bethalto', NULL, 'bethalto', 1, '38.9092100000', '-90.0406600000'),
(7233670, 7896861, 'US', 'Bethany', NULL, 'bethany', 1, '39.6455900000', '-88.7381300000'),
(7233813, 7896861, 'US', 'Belleville', NULL, 'belleville', 1, '38.5200500000', '-89.9839900000'),
(7233923, 7896861, 'US', 'Bingham', NULL, 'bingham', 1, '39.1142100000', '-89.2134100000'),
(7233940, 7896861, 'US', 'Birds', NULL, 'birds', 1, '38.8369900000', '-87.6678000000'),
(7234081, 7896861, 'US', 'Blue Mound', NULL, 'blue-mound', 1, '39.7011500000', '-89.1231400000'),
(7234125, 7896861, 'US', 'Bluffs', NULL, 'bluffs', 1, '39.7519900000', '-90.5351300000'),
(7234131, 7896861, 'US', 'Bluford', NULL, 'bluford', 1, '38.3308800000', '-88.7258900000'),
(7234198, 7896861, 'US', 'Bone Gap', NULL, 'bone-gap', 1, '38.4475500000', '-87.9958700000'),
(7234209, 7896861, 'US', 'Bonnie', NULL, 'bonnie', 1, '38.2028300000', '-88.9034000000'),
(7234217, 7896861, 'US', 'Boody', NULL, 'boody', 1, '39.7664300000', '-89.0492400000'),
(7234362, 7896861, 'US', 'Breese', NULL, 'breese', 1, '38.6106000000', '-89.5270300000'),
(7234416, 7896861, 'US', 'Bridgeport', NULL, 'bridgeport', 1, '38.7058800000', '-87.7600300000'),
(7234436, 7896861, 'US', 'Brighton', NULL, 'brighton', 1, '39.0397700000', '-90.1406600000'),
(7234464, 7896861, 'US', 'Broadlands', NULL, 'broadlands', 1, '39.9086500000', '-87.9942000000'),
(7234468, 7896861, 'US', 'Brocton', NULL, 'brocton', 1, '39.7155900000', '-87.9325300000'),
(7234474, 7896861, 'US', 'Brooklyn', NULL, 'brooklyn', 1, '38.6586600000', '-90.1659400000'),
(7234477, 7896861, 'US', 'Brookport', NULL, 'brookport', 1, '37.1236700000', '-88.6303300000'),
(7234499, 7896861, 'US', 'Broughton', NULL, 'broughton', 1, '37.9347700000', '-88.4619900000'),
(7234560, 7896861, 'US', 'Browns', NULL, 'browns', 1, '38.3769900000', '-87.9830900000'),
(7234577, 7896861, 'US', 'Brownstown', NULL, 'brownstown', 1, '38.9958800000', '-88.9528400000'),
(7234671, 7896861, 'US', 'Brussels', NULL, 'brussels', 1, '38.9494900000', '-90.5887300000'),
(7234753, 7896861, 'US', 'Buckner', NULL, 'buckner', 1, '37.9831100000', '-89.0161800000'),
(7234762, 7896861, 'US', 'Buffalo', NULL, 'buffalo', 1, '39.8525500000', '-89.4087000000'),
(7234790, 7896861, 'US', 'Bulpitt', NULL, 'bulpitt', 1, '39.5917200000', '-89.4239800000'),
(7234796, 7896861, 'US', 'Buncombe', NULL, 'buncombe', 1, '37.4714400000', '-88.9770200000'),
(7234810, 7896861, 'US', 'Bunker Hill', NULL, 'bunker-hill', 1, '39.0428200000', '-89.9517700000'),
(7234876, 7896861, 'US', 'Burnt Prairie', NULL, 'burnt-prairie', 1, '38.2517100000', '-88.2614300000'),
(7234905, 7896861, 'US', 'Bush', NULL, 'bush', 1, '37.8433800000', '-89.1311900000'),
(7234916, 7896861, 'US', 'Butler', NULL, 'butler', 1, '39.1994900000', '-89.5339800000'),
(7234969, 7896861, 'US', 'Cahokia', NULL, 'cahokia', 1, '38.5708800000', '-90.1901100000'),
(7234985, 7896861, 'US', 'Cairo', NULL, 'cairo', 1, '37.0053300000', '-89.1764600000'),
(7235014, 7896861, 'US', 'Calhoun', NULL, 'calhoun', 1, '38.6503300000', '-88.0436500000'),
(7235067, 7896861, 'US', 'Camargo', NULL, 'camargo', 1, '39.8003100000', '-88.1639300000'),
(7235075, 7896861, 'US', 'Cambria', NULL, 'cambria', 1, '37.7814400000', '-89.1192500000'),
(7235127, 7896861, 'US', 'Campbell Hill', NULL, 'campbell-hill', 1, '37.9300500000', '-89.5489900000'),
(7235177, 7896861, 'US', 'Cantrall', NULL, 'cantrall', 1, '39.9378300000', '-89.6759400000'),
(7235193, 7896861, 'US', 'Carbondale', NULL, 'carbondale', 1, '37.7272700000', '-89.2167500000'),
(7235211, 7896861, 'US', 'Carlinville', NULL, 'carlinville', 1, '39.2797700000', '-89.8817700000'),
(7235229, 7896861, 'US', 'Carlyle', NULL, 'carlyle', 1, '38.6103300000', '-89.3725800000'),
(7235246, 7896861, 'US', 'Carmi', NULL, 'carmi', 1, '38.0908800000', '-88.1586500000'),
(7235274, 7896861, 'US', 'Carrier Mills', NULL, 'carrier-mills', 1, '37.6842200000', '-88.6328300000'),
(7235288, 7896861, 'US', 'Carrollton', NULL, 'carrollton', 1, '39.3022700000', '-90.4070600000'),
(7235311, 7896861, 'US', 'Carterville', NULL, 'carterville', 1, '37.7600500000', '-89.0773000000'),
(7235334, 7896861, 'US', 'Casey', NULL, 'casey', 1, '39.2992000000', '-87.9925300000'),
(7235355, 7896861, 'US', 'Caseyville', NULL, 'caseyville', 1, '38.6367200000', '-90.0256600000'),
(7235415, 7896861, 'US', 'Cave-in-Rock', NULL, 'cave-in-rock', 1, '37.4692200000', '-88.1653100000'),
(7235535, 7896861, 'US', 'Central City', NULL, 'central-city', 1, '38.5489400000', '-89.1270100000'),
(7235587, 7896861, 'US', 'Centralia', NULL, 'centralia', 1, '38.5250500000', '-89.1334000000'),
(7235600, 7896861, 'US', 'Centreville', NULL, 'centreville', 1, '38.5833800000', '-90.1251100000'),
(7235607, 7896861, 'US', 'Cerro Gordo', NULL, 'cerro-gordo', 1, '39.8905900000', '-88.7281300000'),
(7235645, 7896861, 'US', 'Chapin', NULL, 'chapin', 1, '39.8814200000', '-88.7739600000'),
(7235668, 7896861, 'US', 'Charleston', NULL, 'charleston', 1, '39.4961500000', '-88.1761500000'),
(7235683, 7896861, 'US', 'Chatham', NULL, 'chatham', 1, '39.6761600000', '-89.7045400000'),
(7235724, 7896861, 'US', 'Chester', NULL, 'chester', 1, '37.9136600000', '-89.8220500000'),
(7235730, 7896861, 'US', 'Chesterfield', NULL, 'chesterfield', 1, '39.2550500000', '-90.0631600000'),
(7235766, 7896861, 'US', 'Chrisman', NULL, 'chrisman', 1, '39.8036500000', '-87.6736400000'),
(7235804, 7896861, 'US', 'Christopher', NULL, 'christopher', 1, '37.9725500000', '-89.0534100000'),
(7235915, 7896861, 'US', 'Cisne', NULL, 'cisne', 1, '38.5158800000', '-88.4375500000'),
(7235937, 7896861, 'US', 'Claremont', NULL, 'claremont', 1, '38.7194900000', '-87.9714200000'),
(7235980, 7896861, 'US', 'Clay City', NULL, 'clay-city', 1, '38.6886600000', '-88.3542100000'),
(7236022, 7896861, 'US', 'Clear Lake', NULL, 'clear-lake', 1, '39.8136600000', '-89.5687100000'),
(7236102, 7896861, 'US', 'Cobden', NULL, 'cobden', 1, '37.5314400000', '-89.2534200000'),
(7236119, 7896861, 'US', 'Coello', NULL, 'coello', 1, '37.9942200000', '-89.0673000000'),
(7236124, 7896861, 'US', 'Coffeen', NULL, 'coffeen', 1, '39.0892100000', '-89.3906400000'),
(7236191, 7896861, 'US', 'Collinsville', NULL, 'collinsville', 1, '38.6703300000', '-89.9845500000'),
(7236204, 7896861, 'US', 'Colp', NULL, 'colp', 1, '37.8053300000', '-89.0800800000'),
(7236206, 7896861, 'US', 'Columbia', NULL, 'columbia', 1, '38.4436600000', '-90.2012200000'),
(7236222, 7896861, 'US', 'Columbus', NULL, 'columbus', 1, '39.9881000000', '-91.1468100000'),
(7236257, 7896861, 'US', 'Concord', NULL, 'concord', 1, '39.8167100000', '-90.3729000000'),
(7236408, 7896861, 'US', 'Cornland', NULL, 'cornland', 1, '39.9372700000', '-89.4023200000'),
(7236454, 7896861, 'US', 'Coulterville', NULL, 'coulterville', 1, '38.1864400000', '-89.6056500000'),
(7236486, 7896861, 'US', 'Cowden', NULL, 'cowden', 1, '39.2483800000', '-88.8622900000'),
(7236506, 7896861, 'US', 'Crab Orchard', NULL, 'crab-orchard', 1, '37.7292200000', '-88.8042300000'),
(7236555, 7896861, 'US', 'Crainville', NULL, 'crainville', 1, '37.7519900000', '-89.0678500000'),
(7236588, 7896861, 'US', 'Creal Springs', NULL, 'creal-springs', 1, '37.6194900000', '-88.8367300000'),
(7236687, 7896861, 'US', 'Crossville', NULL, 'crossville', 1, '38.1617100000', '-88.0653100000'),
(7236757, 7896861, 'US', 'Curran', NULL, 'curran', 1, '39.7422700000', '-89.7720500000'),
(7236768, 7896861, 'US', 'Cutler', NULL, 'cutler', 1, '38.0322700000', '-89.5656500000'),
(7236773, 7896861, 'US', 'Cypress', NULL, 'cypress', 1, '37.3650500000', '-89.0181300000'),
(7236786, 7896861, 'US', 'Dahlgren', NULL, 'dahlgren', 1, '38.1981000000', '-88.6845000000'),
(7236804, 7896861, 'US', 'Dalton City', NULL, 'dalton-city', 1, '39.7119800000', '-88.8045200000'),
(7236809, 7896861, 'US', 'Damiansville', NULL, 'damiansville', 1, '38.5100500000', '-89.6195400000'),
(7236834, 7896861, 'US', 'Darmstadt', NULL, 'darmstadt', 1, '38.3208800000', '-89.7317600000'),
(7236853, 7896861, 'US', 'Dawson', NULL, 'dawson', 1, '39.8528300000', '-89.4634300000'),
(7236879, 7896861, 'US', 'De Soto', NULL, 'de-soto', 1, '37.8175500000', '-89.2278600000'),
(7236895, 7896861, 'US', 'Decatur', NULL, 'decatur', 1, '39.8403100000', '-88.9548000000'),
(7237004, 7896861, 'US', 'Detroit', NULL, 'detroit', 1, '39.6206000000', '-90.6767900000'),
(7237047, 7896861, 'US', 'Dieterich', NULL, 'dieterich', 1, '39.0619900000', '-88.3797700000'),
(7237076, 7896861, 'US', 'Divernon', NULL, 'divernon', 1, '39.5656100000', '-89.6573200000'),
(7237085, 7896861, 'US', 'Dix', NULL, 'dix', 1, '38.4417200000', '-88.9375600000'),
(7237155, 7896861, 'US', 'Dongola', NULL, 'dongola', 1, '37.3611600000', '-89.1659100000'),
(7237168, 7896861, 'US', 'Donnellson', NULL, 'donnellson', 1, '39.0278200000', '-89.4734200000'),
(7237178, 7896861, 'US', 'Dorchester', NULL, 'dorchester', 1, '39.0856000000', '-89.8876000000'),
(7237236, 7896861, 'US', 'Dowell', NULL, 'dowell', 1, '37.9397700000', '-89.2378600000'),
(7237309, 7896861, 'US', 'Du Bois', NULL, 'du-bois', 1, '38.2239400000', '-89.2123000000'),
(7237312, 7896861, 'US', 'Du Quoin', NULL, 'du-quoin', 1, '38.0114400000', '-89.2361900000'),
(7237383, 7896861, 'US', 'Dupo', NULL, 'dupo', 1, '38.5161600000', '-90.2103900000'),
(7237434, 7896861, 'US', 'Eagerville', NULL, 'eagerville', 1, '39.1117100000', '-89.7839800000'),
(7237473, 7896861, 'US', 'East Alton', NULL, 'east-alton', 1, '38.8803300000', '-90.1112200000'),
(7237491, 7896861, 'US', 'East Cape Girardeau', NULL, 'east-cape-girardeau', 1, '37.2958800000', '-89.4962000000'),
(7237494, 7896861, 'US', 'East Carondelet', NULL, 'east-carondelet', 1, '38.5420000000', '-90.2328900000'),
(7237543, 7896861, 'US', 'East Gillespie', NULL, 'east-gillespie', 1, '39.1408800000', '-89.8123200000'),
(7237579, 7896861, 'US', 'East Saint Louis', NULL, 'east-saint-louis', 1, '38.6245000000', '-90.1509400000'),
(7237664, 7896861, 'US', 'Eddyville', NULL, 'eddyville', 1, '37.4989400000', '-88.5878300000'),
(7237680, 7896861, 'US', 'Edgewood', NULL, 'edgewood', 1, '38.9206000000', '-88.6614400000'),
(7237687, 7896861, 'US', 'Edinburg', NULL, 'edinburg', 1, '39.6572700000', '-89.3895300000'),
(7237717, 7896861, 'US', 'Edwardsville', NULL, 'edwardsville', 1, '38.8114400000', '-89.9531600000'),
(7237727, 7896861, 'US', 'Effingham', NULL, 'effingham', 1, '39.1200400000', '-88.5433800000'),
(7237755, 7896861, 'US', 'El Dara', NULL, 'el-dara', 1, '39.6225500000', '-90.9918000000'),
(7237767, 7896861, 'US', 'Eldorado', NULL, 'eldorado', 1, '37.8136600000', '-88.4381000000'),
(7237777, 7896861, 'US', 'Eldred', NULL, 'eldred', 1, '39.2875500000', '-90.5523400000'),
(7237790, 7896861, 'US', 'Elizabethtown', NULL, 'elizabethtown', 1, '37.4458800000', '-88.3050400000'),
(7237807, 7896861, 'US', 'Elkville', NULL, 'elkville', 1, '37.9100500000', '-89.2359200000'),
(7237838, 7896861, 'US', 'Ellis Grove', NULL, 'ellis-grove', 1, '38.0089400000', '-89.9059400000'),
(7237889, 7896861, 'US', 'Elsah', NULL, 'elsah', 1, '38.9561600000', '-90.3598400000'),
(7237953, 7896861, 'US', 'Energy', NULL, 'energy', 1, '37.7739400000', '-89.0264600000'),
(7237956, 7896861, 'US', 'Enfield', NULL, 'enfield', 1, '38.0994900000', '-88.3375400000'),
(7237989, 7896861, 'US', 'Equality', NULL, 'equality', 1, '37.7339400000', '-88.3433800000'),
(7238033, 7896861, 'US', 'Evansville', NULL, 'evansville', 1, '38.0903300000', '-89.9384400000'),
(7238049, 7896861, 'US', 'Ewing', NULL, 'ewing', 1, '38.0886600000', '-88.8522900000'),
(7238064, 7896861, 'US', 'Exeter', NULL, 'exeter', 1, '39.7208800000', '-90.4965100000'),
(7238081, 7896861, 'US', 'Fairfield', NULL, 'fairfield', 1, '38.3789400000', '-88.3597700000'),
(7238104, 7896861, 'US', 'Fairmont City', NULL, 'fairmont-city', 1, '38.6497700000', '-90.0931600000'),
(7238132, 7896861, 'US', 'Fairview Heights', NULL, 'fairview-heights', 1, '38.5889400000', '-89.9903800000'),
(7238210, 7896861, 'US', 'Farina', NULL, 'farina', 1, '38.8342100000', '-88.7722800000'),
(7238226, 7896861, 'US', 'Farmersville', NULL, 'farmersville', 1, '39.4433900000', '-89.6517600000'),
(7238252, 7896861, 'US', 'Fayetteville', NULL, 'fayetteville', 1, '38.3775500000', '-89.7953800000'),
(7238291, 7896861, 'US', 'Fidelity', NULL, 'fidelity', 1, '39.1528200000', '-90.1645500000'),
(7238296, 7896861, 'US', 'Fieldon', NULL, 'fieldon', 1, '39.1086600000', '-90.4984500000'),
(7238310, 7896861, 'US', 'Fillmore', NULL, 'fillmore', 1, '39.1153200000', '-89.2789700000'),
(7238324, 7896861, 'US', 'Findlay', NULL, 'findlay', 1, '39.5225400000', '-88.7536800000'),
(7238754, 7896861, 'US', 'Flat Rock', NULL, 'flat-rock', 1, '38.9017100000', '-87.6716900000'),
(7238777, 7896861, 'US', 'Flora', NULL, 'flora', 1, '38.6689400000', '-88.4856000000'),
(7238783, 7896861, 'US', 'Floraville', NULL, 'floraville', 1, '38.3764400000', '-90.0562200000'),
(7238785, 7896861, 'US', 'Florence', NULL, 'florence', 1, '39.6272700000', '-90.6106800000'),
(7238858, 7896861, 'US', 'Forsyth', NULL, 'forsyth', 1, '39.9325400000', '-88.9511900000'),
(7238975, 7896861, 'US', 'Franklin', NULL, 'franklin', 1, '39.6203300000', '-90.0440000000'),
(7239058, 7896861, 'US', 'Freeburg', NULL, 'freeburg', 1, '38.4275500000', '-89.9137100000'),
(7239077, 7896861, 'US', 'Freeman Spur', NULL, 'freeman-spur', 1, '37.8611600000', '-88.9972900000'),
(7239195, 7896861, 'US', 'Fults', NULL, 'fults', 1, '38.1661600000', '-90.2159500000'),
(7239218, 7896861, 'US', 'Galatia', NULL, 'galatia', 1, '37.8406000000', '-88.6092200000'),
(7239274, 7896861, 'US', 'Garrett', NULL, 'garrett', 1, '39.7986400000', '-88.4242200000'),
(7239314, 7896861, 'US', 'Geff', NULL, 'geff', 1, '38.4425500000', '-88.4042100000'),
(7239337, 7896861, 'US', 'Georgetown', NULL, 'georgetown', 1, '39.9753100000', '-87.6358500000'),
(7239368, 7896861, 'US', 'Germantown', NULL, 'germantown', 1, '38.5536600000', '-89.5384200000'),
(7239423, 7896861, 'US', 'Gillespie', NULL, 'gillespie', 1, '39.1297700000', '-89.8195400000'),
(7239459, 7896861, 'US', 'Glasgow', NULL, 'glasgow', 1, '39.5506000000', '-90.4801200000'),
(7239465, 7896861, 'US', 'Glen Carbon', NULL, 'glen-carbon', 1, '38.7483800000', '-89.9831600000'),
(7239483, 7896861, 'US', 'Girard', NULL, 'girard', 1, '39.4464400000', '-89.7809300000'),
(7239509, 7896861, 'US', 'Godfrey', NULL, 'godfrey', 1, '38.9556000000', '-90.1867800000'),
(7239519, 7896861, 'US', 'Golconda', NULL, 'golconda', 1, '37.3672700000', '-88.4864300000'),
(7239536, 7896861, 'US', 'Golden Gate', NULL, 'golden-gate', 1, '38.3594900000', '-88.2042100000'),
(7239597, 7896861, 'US', 'Goreville', NULL, 'goreville', 1, '37.5545000000', '-88.9722900000'),
(7239605, 7896861, 'US', 'Gorham', NULL, 'gorham', 1, '37.7183800000', '-89.4859300000'),
(7239660, 7896861, 'US', 'Grafton', NULL, 'grafton', 1, '38.9700500000', '-90.4315000000'),
(7239675, 7896861, 'US', 'Grand Chain', NULL, 'grand-chain', 1, '37.2517200000', '-89.0234000000'),
(7239696, 7896861, 'US', 'Grand Tower', NULL, 'grand-tower', 1, '37.6264400000', '-89.4978700000'),
(7239702, 7896861, 'US', 'Grandview', NULL, 'grandview', 1, '39.8164400000', '-89.6187100000'),
(7239714, 7896861, 'US', 'Granite City', NULL, 'granite-city', 1, '38.7014400000', '-90.1487200000'),
(7239734, 7896861, 'US', 'Grantfork', NULL, 'grantfork', 1, '38.8300500000', '-89.6656500000'),
(7239773, 7896861, 'US', 'Grayville', NULL, 'grayville', 1, '38.2575500000', '-87.9936400000'),
(7239840, 7896861, 'US', 'Greenfield', NULL, 'greenfield', 1, '39.3436600000', '-90.2126100000'),
(7239858, 7896861, 'US', 'Greenup', NULL, 'greenup', 1, '39.2478200000', '-88.1633700000'),
(7239867, 7896861, 'US', 'Greenville', NULL, 'greenville', 1, '38.8922700000', '-89.4131400000'),
(7239932, 7896861, 'US', 'Griggsville', NULL, 'griggsville', 1, '39.7089400000', '-90.7245700000'),
(7240130, 7896861, 'US', 'Hamburg', NULL, 'hamburg', 1, '39.2300500000', '-90.7176200000'),
(7240137, 7896861, 'US', 'Hamel', NULL, 'hamel', 1, '38.8889400000', '-89.8453800000'),
(7240155, 7896861, 'US', 'Hamletsburg', NULL, 'hamletsburg', 1, '37.1386700000', '-88.4317100000'),
(7240161, 7896861, 'US', 'Hammond', NULL, 'hammond', 1, '39.7969800000', '-88.5917300000'),
(7240174, 7896861, 'US', 'Logan', NULL, 'logan', 1, '37.9558800000', '-88.8403400000'),
(7240209, 7896861, 'US', 'Hardin', NULL, 'hardin', 1, '39.1567100000', '-90.6179000000'),
(7240284, 7896861, 'US', 'Harrisburg', NULL, 'harrisburg', 1, '37.7383800000', '-88.5406100000'),
(7240292, 7896861, 'US', 'Harrison', NULL, 'harrison', 1, '37.7967200000', '-89.3370300000'),
(7240306, 7896861, 'US', 'Harristown', NULL, 'harristown', 1, '39.8539300000', '-89.0839700000'),
(7240319, 7896861, 'US', 'Hartford', NULL, 'hartford', 1, '38.8333800000', '-90.0959400000'),
(7240348, 7896861, 'US', 'Harvel', NULL, 'harvel', 1, '39.3561600000', '-89.5323200000'),
(7240454, 7896861, 'US', 'Hecker', NULL, 'hecker', 1, '38.3050500000', '-89.9942700000'),
(7240496, 7896861, 'US', 'Henderson', NULL, 'henderson', 1, '39.1558800000', '-89.7953700000'),
(7240537, 7896861, 'US', 'Herrick', NULL, 'herrick', 1, '39.2203200000', '-88.9845200000'),
(7240540, 7896861, 'US', 'Herrin', NULL, 'herrin', 1, '37.8031100000', '-89.0275700000'),
(7240586, 7896861, 'US', 'Hettick', NULL, 'hettick', 1, '39.3550500000', '-90.0370500000'),
(7240659, 7896861, 'US', 'Hidalgo', NULL, 'hidalgo', 1, '39.1558700000', '-88.1469800000'),
(7240679, 7896861, 'US', 'Highland', NULL, 'highland', 1, '38.7394900000', '-89.6712000000'),
(7240760, 7896861, 'US', 'Hillview', NULL, 'hillview', 1, '39.4506000000', '-90.5412400000'),
(7240772, 7896861, 'US', 'Hindsboro', NULL, 'hindsboro', 1, '39.6850300000', '-88.1336500000'),
(7240782, 7896861, 'US', 'Hillsboro', NULL, 'hillsboro', 1, '39.1612800000', '-89.4954000000'),
(7240808, 7896861, 'US', 'Hoffman', NULL, 'hoffman', 1, '38.5414400000', '-89.2636900000'),
(7240857, 7896861, 'US', 'Holiday Shores', NULL, 'holiday-shores', 1, '38.9219900000', '-89.9406600000'),
(7241091, 7896861, 'US', 'Hoyleton', NULL, 'hoyleton', 1, '38.4417200000', '-89.2742500000'),
(7241117, 7896861, 'US', 'Huey', NULL, 'huey', 1, '38.6044900000', '-89.2911900000'),
(7241143, 7896861, 'US', 'Hull', NULL, 'hull', 1, '39.7069900000', '-91.2068100000'),
(7241149, 7896861, 'US', 'Humboldt', NULL, 'humboldt', 1, '39.6042000000', '-88.3189400000'),
(7241155, 7896861, 'US', 'Hume', NULL, 'hume', 1, '39.7967000000', '-87.8686400000'),
(7241201, 7896861, 'US', 'Hurst', NULL, 'hurst', 1, '37.8331100000', '-89.1428600000'),
(7241211, 7896861, 'US', 'Hutsonville', NULL, 'hutsonville', 1, '39.1094900000', '-87.6564100000'),
(7241302, 7896861, 'US', 'Illiopolis', NULL, 'illiopolis', 1, '39.8536500000', '-89.2420300000'),
(7241354, 7896861, 'US', 'Ina', NULL, 'ina', 1, '38.1511600000', '-88.9039600000'),
(7241429, 7896861, 'US', 'Indianola', NULL, 'indianola', 1, '39.9272600000', '-87.7400300000'),
(7241592, 7896861, 'US', 'Iola', NULL, 'iola', 1, '38.8344900000', '-88.6281100000'),
(7241607, 7896861, 'US', 'Irving', NULL, 'irving', 1, '39.2058800000', '-89.4045300000'),
(7241612, 7896861, 'US', 'Irvington', NULL, 'irvington', 1, '38.4392200000', '-89.1628500000'),
(7241655, 7896861, 'US', 'Iuka', NULL, 'iuka', 1, '38.6161600000', '-88.7903300000'),
(7241660, 7896861, 'US', 'Ivesdale', NULL, 'ivesdale', 1, '39.9433700000', '-88.4553400000'),
(7241704, 7896861, 'US', 'Jacksonville', NULL, 'jacksonville', 1, '39.7339400000', '-90.2290100000'),
(7241798, 7896861, 'US', 'Jeisyville', NULL, 'jeisyville', 1, '39.5772700000', '-89.4050900000'),
(7241810, 7896861, 'US', 'Jerome', NULL, 'jerome', 1, '39.7675500000', '-89.6806600000'),
(7241822, 7896861, 'US', 'Jerseyville', NULL, 'jerseyville', 1, '39.1200500000', '-90.3284500000'),
(7241842, 7896861, 'US', 'Jewett', NULL, 'jewett', 1, '39.2078200000', '-88.2458700000'),
(7241928, 7896861, 'US', 'Johnsonville', NULL, 'johnsonville', 1, '38.5222700000', '-88.5370000000'),
(7241934, 7896861, 'US', 'Johnston City', NULL, 'johnston-city', 1, '37.8206100000', '-88.9275700000'),
(7241992, 7896861, 'US', 'Jonesboro', NULL, 'jonesboro', 1, '37.4517200000', '-89.2681400000'),
(7242002, 7896861, 'US', 'Joppa', NULL, 'joppa', 1, '37.2064400000', '-88.8447800000'),
(7242042, 7896861, 'US', 'Junction', NULL, 'junction', 1, '37.7233800000', '-88.2367000000'),
(7242043, 7896861, 'US', 'Junction City', NULL, 'junction-city', 1, '38.5803300000', '-89.1278500000'),
(7242057, 7896861, 'US', 'Kampsville', NULL, 'kampsville', 1, '39.2978300000', '-90.6090100000'),
(7242062, 7896861, 'US', 'Kane', NULL, 'kane', 1, '39.1900500000', '-90.3537300000'),
(7242066, 7896861, 'US', 'Kansas', NULL, 'kansas', 1, '39.5528100000', '-87.9394800000'),
(7242084, 7896861, 'US', 'Karnak', NULL, 'karnak', 1, '37.2936600000', '-88.9753500000'),
(7242091, 7896861, 'US', 'Kaskaskia', NULL, 'kaskaskia', 1, '37.9214400000', '-89.9131600000'),
(7242126, 7896861, 'US', 'Keenes', NULL, 'keenes', 1, '38.3381000000', '-88.6431100000'),
(7242128, 7896861, 'US', 'Keensburg', NULL, 'keensburg', 1, '38.3506000000', '-87.8686400000'),
(7242136, 7896861, 'US', 'Kell', NULL, 'kell', 1, '38.4911600000', '-88.9064500000'),
(7242202, 7896861, 'US', 'Keyesport', NULL, 'keyesport', 1, '38.7419900000', '-89.2736800000'),
(7242242, 7896861, 'US', 'Kincaid', NULL, 'kincaid', 1, '39.5886600000', '-89.4145400000'),
(7242252, 7896861, 'US', 'Kinderhook', NULL, 'kinderhook', 1, '39.7022700000', '-91.1532000000'),
(7242307, 7896861, 'US', 'Kinmundy', NULL, 'kinmundy', 1, '38.7733800000', '-88.8467200000'),
(7242552, 7896861, 'US', 'Lake Ka-Ho', NULL, 'lake-ka-ho', 1, '39.0997700000', '-89.7470400000'),
(7242718, 7896861, 'US', 'Langleyville', NULL, 'langleyville', 1, '39.5622700000', '-89.3553700000'),
(7242739, 7896861, 'US', 'Latham', NULL, 'latham', 1, '39.9686500000', '-89.1623100000'),
(7242769, 7896861, 'US', 'Lawrenceville', NULL, 'lawrenceville', 1, '38.7292100000', '-87.6816900000'),
(7242790, 7896861, 'US', 'Lebanon', NULL, 'lebanon', 1, '38.6039400000', '-89.8073200000'),
(7242842, 7896861, 'US', 'Leland Grove', NULL, 'leland-grove', 1, '39.7770000000', '-89.6792700000'),
(7242857, 7896861, 'US', 'Lenzburg', NULL, 'lenzburg', 1, '38.2872700000', '-89.8173200000'),
(7242861, 7896861, 'US', 'Lerna', NULL, 'lerna', 1, '39.4183700000', '-88.2886600000'),
(7242896, 7896861, 'US', 'Liberty', NULL, 'liberty', 1, '39.8794900000', '-91.1079200000'),
(7243131, 7896861, 'US', 'Litchfield', NULL, 'litchfield', 1, '39.1753300000', '-89.6542600000'),
(7243334, 7896861, 'US', 'Livingston', NULL, 'livingston', 1, '38.9675500000', '-89.7639800000'),
(7243342, 7896861, 'US', 'Loami', NULL, 'loami', 1, '39.6756100000', '-89.8467700000'),
(7243455, 7896861, 'US', 'Long Creek', NULL, 'long-creek', 1, '39.8119800000', '-88.8475700000'),
(7243503, 7896861, 'US', 'Longview', NULL, 'longview', 1, '39.8867000000', '-88.0664300000'),
(7243551, 7896861, 'US', 'Louisville', NULL, 'louisville', 1, '38.7722700000', '-88.5025500000'),
(7243574, 7896861, 'US', 'Lovington', NULL, 'lovington', 1, '39.7155900000', '-88.6325600000'),
(7243678, 7896861, 'US', 'Lynnville', NULL, 'lynnville', 1, '39.6869900000', '-90.3459600000'),
(7243695, 7896861, 'US', 'Macedonia', NULL, 'macedonia', 1, '38.0519900000', '-88.7053400000'),
(7243717, 7896861, 'US', 'Macon', NULL, 'macon', 1, '39.7128200000', '-88.9970200000'),
(7243740, 7896861, 'US', 'Madison', NULL, 'madison', 1, '38.6825500000', '-90.1570500000'),
(7243764, 7896861, 'US', 'Maeystown', NULL, 'maeystown', 1, '38.2247800000', '-90.2334500000'),
(7243794, 7896861, 'US', 'Makanda', NULL, 'makanda', 1, '37.6175500000', '-89.2089700000'),
(7243802, 7896861, 'US', 'Manchester', NULL, 'manchester', 1, '39.5422700000', '-90.3323400000'),
(7243890, 7896861, 'US', 'Marine', NULL, 'marine', 1, '38.7864400000', '-89.7775900000'),
(7243899, 7896861, 'US', 'Marion', NULL, 'marion', 1, '37.7306100000', '-88.9331300000'),
(7243918, 7896861, 'US', 'Marissa', NULL, 'marissa', 1, '38.2500500000', '-89.7501000000'),
(7243951, 7896861, 'US', 'Marshall', NULL, 'marshall', 1, '39.3914300000', '-87.6936400000'),
(7244005, 7896861, 'US', 'Martinsville', NULL, 'martinsville', 1, '39.3355900000', '-87.8819800000'),
(7244026, 7896861, 'US', 'Maryville', NULL, 'maryville', 1, '38.7236600000', '-89.9559300000'),
(7244031, 7896861, 'US', 'Mascoutah', NULL, 'mascoutah', 1, '38.4903300000', '-89.7931500000'),
(7244051, 7896861, 'US', 'Mason', NULL, 'mason', 1, '38.9531000000', '-88.6236600000'),
(7244099, 7896861, 'US', 'Mattoon', NULL, 'mattoon', 1, '39.4830900000', '-88.3728300000'),
(7244102, 7896861, 'US', 'Maunie', NULL, 'maunie', 1, '38.0356000000', '-88.0455900000'),
(7244183, 7896861, 'US', 'McClure', NULL, 'mcclure', 1, '37.3178300000', '-89.4314800000'),
(7244307, 7896861, 'US', 'McLeansboro', NULL, 'mcleansboro', 1, '38.0933800000', '-88.5356100000'),
(7244351, 7896861, 'US', 'Mechanicsburg', NULL, 'mechanicsburg', 1, '39.8094900000', '-89.3973100000'),
(7244418, 7896861, 'US', 'Meredosia', NULL, 'meredosia', 1, '39.8311600000', '-90.5595700000'),
(7244453, 7896861, 'US', 'Metcalf', NULL, 'metcalf', 1, '39.8011500000', '-87.8072500000'),
(7244462, 7896861, 'US', 'Metropolis', NULL, 'metropolis', 1, '37.1511700000', '-88.7320000000'),
(7244546, 7896861, 'US', 'Mill Creek', NULL, 'mill-creek', 1, '37.3417200000', '-89.2525800000'),
(7244562, 7896861, 'US', 'Mill Shoals', NULL, 'mill-shoals', 1, '38.2486600000', '-88.3467100000'),
(7244637, 7896861, 'US', 'Millstadt', NULL, 'millstadt', 1, '38.4614400000', '-90.0917800000'),
(7244653, 7896861, 'US', 'Milton', NULL, 'milton', 1, '39.5644900000', '-90.6504000000'),
(7244696, 7896861, 'US', 'Mitchell', NULL, 'mitchell', 1, '38.7619900000', '-90.0853800000'),
(7244726, 7896861, 'US', 'Modesto', NULL, 'modesto', 1, '39.4783800000', '-89.9820500000'),
(7244783, 7896861, 'US', 'Montrose', NULL, 'montrose', 1, '39.1653200000', '-88.3792100000'),
(7244880, 7896861, 'US', 'Morrisonville', NULL, 'morrisonville', 1, '39.4200500000', '-89.4556500000'),
(7244928, 7896861, 'US', 'Mound City', NULL, 'mound-city', 1, '37.0853300000', '-89.1625700000'),
(7244951, 7896861, 'US', 'Mounds', NULL, 'mounds', 1, '37.1142200000', '-89.1978500000'),
(7244954, 7896861, 'US', 'Mount Auburn', NULL, 'mount-auburn', 1, '39.7661500000', '-89.2617500000'),
(7244967, 7896861, 'US', 'Mount Carmel', NULL, 'mount-carmel', 1, '38.4108800000', '-87.7614200000'),
(7244995, 7896861, 'US', 'Mount Clare', NULL, 'mount-clare', 1, '39.0986600000', '-89.8262100000'),
(7244997, 7896861, 'US', 'Mount Erie', NULL, 'mount-erie', 1, '38.5150500000', '-88.2311500000'),
(7245045, 7896861, 'US', 'Mount Olive', NULL, 'mount-olive', 1, '39.0722700000', '-89.7273100000'),
(7245136, 7896861, 'US', 'Mount Sterling', NULL, 'mount-sterling', 1, '39.9872700000', '-90.7634600000'),
(7245152, 7896861, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '38.3172700000', '-88.9031200000'),
(7245174, 7896861, 'US', 'Mount Zion', NULL, 'mount-zion', 1, '39.7714300000', '-88.8742400000'),
(7245258, 7896861, 'US', 'Moweaqua', NULL, 'moweaqua', 1, '39.6247600000', '-89.0189700000'),
(7245280, 7896861, 'US', 'Muddy', NULL, 'muddy', 1, '37.7650500000', '-88.5167200000'),
(7245302, 7896861, 'US', 'Mulberry Grove', NULL, 'mulberry-grove', 1, '38.9250500000', '-89.2689600000'),
(7245311, 7896861, 'US', 'Mulkeytown', NULL, 'mulkeytown', 1, '37.9708800000', '-89.1114700000'),
(7245336, 7896861, 'US', 'Murphysboro', NULL, 'murphysboro', 1, '37.7645000000', '-89.3350900000'),
(7245345, 7896861, 'US', 'Murrayville', NULL, 'murrayville', 1, '39.5856000000', '-90.2520600000'),
(7245369, 7896861, 'US', 'Naples', NULL, 'naples', 1, '39.7572700000', '-90.6073500000'),
(7245376, 7896861, 'US', 'Nashville', NULL, 'nashville', 1, '38.3436600000', '-89.3806400000'),
(7245386, 7896861, 'US', 'Nason', NULL, 'nason', 1, '38.1761600000', '-88.9675700000'),
(7245392, 7896861, 'US', 'National City', NULL, 'national-city', 1, '38.6456100000', '-90.1609400000'),
(7245412, 7896861, 'US', 'Nebo', NULL, 'nebo', 1, '39.4425500000', '-90.7909600000'),
(7245443, 7896861, 'US', 'Neoga', NULL, 'neoga', 1, '39.3194800000', '-88.4528300000'),
(7245463, 7896861, 'US', 'New Athens', NULL, 'new-athens', 1, '38.3264400000', '-89.8770500000'),
(7245474, 7896861, 'US', 'New Baden', NULL, 'new-baden', 1, '38.5350500000', '-89.7006500000'),
(7245481, 7896861, 'US', 'New Berlin', NULL, 'new-berlin', 1, '39.7253300000', '-89.9106600000'),
(7245490, 7896861, 'US', 'New Burnside', NULL, 'new-burnside', 1, '37.5792200000', '-88.7708900000'),
(7245494, 7896861, 'US', 'New Canton', NULL, 'new-canton', 1, '39.6361600000', '-91.0959700000'),
(7245512, 7896861, 'US', 'New Douglas', NULL, 'new-douglas', 1, '38.9700500000', '-89.6664800000'),
(7245524, 7896861, 'US', 'New Grand Chain', NULL, 'new-grand-chain', 1, '37.2520000000', '-89.0211800000'),
(7245538, 7896861, 'US', 'New Haven', NULL, 'new-haven', 1, '37.9086600000', '-88.1292000000'),
(7245616, 7896861, 'US', 'New Minden', NULL, 'new-minden', 1, '38.4414400000', '-89.3703600000'),
(7245635, 7896861, 'US', 'New Salem', NULL, 'new-salem', 1, '39.7075500000', '-90.8476300000'),
(7245681, 7896861, 'US', 'Newman', NULL, 'newman', 1, '39.7986500000', '-87.9858700000'),
(7245709, 7896861, 'US', 'Niantic', NULL, 'niantic', 1, '39.8539300000', '-89.1661900000'),
(7245723, 7896861, 'US', 'Nilwood', NULL, 'nilwood', 1, '39.3981100000', '-89.8087100000'),
(7245740, 7896861, 'US', 'Noble', NULL, 'noble', 1, '38.6975500000', '-88.2236500000'),
(7245744, 7896861, 'US', 'Nokomis', NULL, 'nokomis', 1, '39.3011600000', '-89.2850800000'),
(7245780, 7896861, 'US', 'Norris City', NULL, 'norris-city', 1, '37.9811600000', '-88.3292100000'),
(7245926, 7896861, 'US', 'O''Fallon', NULL, 'o-fallon', 1, '38.5922700000', '-89.9112100000'),
(7246066, 7896861, 'US', 'Oakdale', NULL, 'oakdale', 1, '38.2617200000', '-89.5014800000'),
(7246083, 7896861, 'US', 'Oakland', NULL, 'oakland', 1, '39.6539200000', '-88.0261500000'),
(7246130, 7896861, 'US', 'Oblong', NULL, 'oblong', 1, '39.0019900000', '-87.9089200000'),
(7246138, 7896861, 'US', 'Oconee', NULL, 'oconee', 1, '39.2856000000', '-89.1075800000'),
(7246147, 7896861, 'US', 'Odin', NULL, 'odin', 1, '38.6172700000', '-89.0522900000'),
(7246168, 7896861, 'US', 'Ohlman', NULL, 'ohlman', 1, '39.3450400000', '-89.2187000000'),
(7246180, 7896861, 'US', 'Okawville', NULL, 'okawville', 1, '38.4342200000', '-89.5503700000'),
(7246286, 7896861, 'US', 'Old Ripley', NULL, 'old-ripley', 1, '38.8961600000', '-89.5700900000'),
(7246313, 7896861, 'US', 'Old Shawneetown', NULL, 'old-shawneetown', 1, '37.6969900000', '-88.1367000000'),
(7246345, 7896861, 'US', 'Olive Branch', NULL, 'olive-branch', 1, '37.1686600000', '-89.3517500000'),
(7246378, 7896861, 'US', 'Olivet', NULL, 'olivet', 1, '39.9419800000', '-87.6436300000'),
(7246380, 7896861, 'US', 'Olmsted', NULL, 'olmsted', 1, '37.1806100000', '-89.0889600000'),
(7246382, 7896861, 'US', 'Olney', NULL, 'olney', 1, '38.7308800000', '-88.0853200000'),
(7246389, 7896861, 'US', 'Omaha', NULL, 'omaha', 1, '37.8903200000', '-88.3031000000'),
(7246413, 7896861, 'US', 'Opdyke', NULL, 'opdyke', 1, '38.2597700000', '-88.7906200000'),
(7246442, 7896861, 'US', 'Oreana', NULL, 'oreana', 1, '39.9386500000', '-88.8656300000'),
(7246449, 7896861, 'US', 'Orient', NULL, 'orient', 1, '37.9183800000', '-88.9775700000'),
(7246497, 7896861, 'US', 'Otterville', NULL, 'otterville', 1, '39.0506000000', '-90.3984500000'),
(7246520, 7896861, 'US', 'Owaneco', NULL, 'owaneco', 1, '39.4822700000', '-89.1937000000'),
(7246551, 7896861, 'US', 'Paderborn', NULL, 'paderborn', 1, '38.3603300000', '-90.0426100000'),
(7246560, 7896861, 'US', 'Palestine', NULL, 'palestine', 1, '39.0036500000', '-87.6128000000'),
(7246580, 7896861, 'US', 'Palmer', NULL, 'palmer', 1, '39.4578300000', '-89.4039800000'),
(7246587, 7896861, 'US', 'Palmyra', NULL, 'palmyra', 1, '39.4347700000', '-89.9959400000'),
(7246595, 7896861, 'US', 'Pana', NULL, 'pana', 1, '39.3889300000', '-89.0800800000'),
(7246608, 7896861, 'US', 'Panama', NULL, 'panama', 1, '39.0294900000', '-89.5242500000'),
(7246659, 7896861, 'US', 'Paris', NULL, 'paris', 1, '39.6111500000', '-87.6961400000'),
(7246687, 7896861, 'US', 'Parkersburg', NULL, 'parkersburg', 1, '38.5897700000', '-88.0567000000'),
(7246717, 7896861, 'US', 'Patoka', NULL, 'patoka', 1, '38.7553300000', '-89.0953400000'),
(7246733, 7896861, 'US', 'Patterson', NULL, 'patterson', 1, '39.4806000000', '-90.4829000000'),
(7246757, 7896861, 'US', 'Pawnee', NULL, 'pawnee', 1, '39.5917200000', '-89.5803700000'),
(7246765, 7896861, 'US', 'Payson', NULL, 'payson', 1, '39.8169900000', '-91.2423700000'),
(7246787, 7896861, 'US', 'Pearl', NULL, 'pearl', 1, '39.4597700000', '-90.6259600000'),
(7246821, 7896861, 'US', 'Percy', NULL, 'percy', 1, '38.0164400000', '-89.6187100000'),
(7246837, 7896861, 'US', 'Perry', NULL, 'perry', 1, '39.7831000000', '-90.7454100000'),
(7246860, 7896861, 'US', 'Pesotum', NULL, 'pesotum', 1, '39.9147500000', '-88.2733800000'),
(7246910, 7896861, 'US', 'Phillipstown', NULL, 'phillipstown', 1, '38.1419900000', '-88.0217000000'),
(7246939, 7896861, 'US', 'Pierron', NULL, 'pierron', 1, '38.7800500000', '-89.5981400000'),
(7246940, 7896861, 'US', 'East Pierron', NULL, 'east-pierron', 1, '38.7764400000', '-89.5203600000'),
(7246983, 7896861, 'US', 'Pinckneyville', NULL, 'pinckneyville', 1, '38.0803300000', '-89.3820300000'),
(7247059, 7896861, 'US', 'Pittsburg', NULL, 'pittsburg', 1, '37.7769900000', '-88.8495100000'),
(7247060, 7896861, 'US', 'Pittsfield', NULL, 'pittsfield', 1, '39.6078300000', '-90.8051300000'),
(7247080, 7896861, 'US', 'Plainville', NULL, 'plainville', 1, '39.7858800000', '-91.1854200000'),
(7247145, 7896861, 'US', 'Pleasant Hill', NULL, 'pleasant-hill', 1, '39.4433800000', '-90.8723500000'),
(7247214, 7896861, 'US', 'Pleasant Plains', NULL, 'pleasant-plains', 1, '39.8728300000', '-89.9212200000'),
(7247323, 7896861, 'US', 'Pocahontas', NULL, 'pocahontas', 1, '38.8278200000', '-89.5400800000'),
(7247379, 7896861, 'US', 'Pontoon Beach', NULL, 'pontoon-beach', 1, '38.7317200000', '-90.0803800000'),
(7247545, 7896861, 'US', 'Prairie du Rocher', NULL, 'prairie-du-rocher', 1, '38.0831100000', '-90.0959500000'),
(7247654, 7896861, 'US', 'Pulaski', NULL, 'pulaski', 1, '37.2136600000', '-89.2059100000'),
(7247703, 7896861, 'US', 'Quincy', NULL, 'quincy', 1, '39.9356000000', '-91.4098700000'),
(7247758, 7896861, 'US', 'Radom', NULL, 'radom', 1, '38.2819900000', '-89.1923000000'),
(7247770, 7896861, 'US', 'Raleigh', NULL, 'raleigh', 1, '37.8269900000', '-88.5320000000'),
(7247779, 7896861, 'US', 'Ramsey', NULL, 'ramsey', 1, '39.1444900000', '-89.1086800000'),
(7247860, 7896861, 'US', 'Raymond', NULL, 'raymond', 1, '39.3194900000', '-89.5720400000'),
(7247880, 7896861, 'US', 'Red Bud', NULL, 'red-bud', 1, '38.2117200000', '-89.9942700000'),
(7247917, 7896861, 'US', 'Redmon', NULL, 'redmon', 1, '39.6453100000', '-87.8617000000'),
(7247985, 7896861, 'US', 'Rentchler', NULL, 'rentchler', 1, '38.4914400000', '-89.8731600000'),
(7248077, 7896861, 'US', 'Richview', NULL, 'richview', 1, '38.3783800000', '-89.1800800000'),
(7248106, 7896861, 'US', 'Ridge Farm', NULL, 'ridge-farm', 1, '39.8955900000', '-87.6519700000'),
(7248128, 7896861, 'US', 'Ridgway', NULL, 'ridgway', 1, '37.7992100000', '-88.2611500000'),
(7248205, 7896861, 'US', 'Riverton', NULL, 'riverton', 1, '39.8442200000', '-89.5395400000'),
(7248256, 7896861, 'US', 'Robinson', NULL, 'robinson', 1, '39.0053200000', '-87.7391900000'),
(7248284, 7896861, 'US', 'Rochester', NULL, 'rochester', 1, '39.7494900000', '-89.5317600000'),
(7248330, 7896861, 'US', 'Rockbridge', NULL, 'rockbridge', 1, '39.2692100000', '-90.2042800000'),
(7248345, 7896861, 'US', 'Rockwood', NULL, 'rockwood', 1, '37.8406100000', '-89.7006600000'),
(7248420, 7896861, 'US', 'Roodhouse', NULL, 'roodhouse', 1, '39.4839400000', '-90.3715100000'),
(7248451, 7896861, 'US', 'Rose Hill', NULL, 'rose-hill', 1, '39.1036500000', '-88.1472600000'),
(7248480, 7896861, 'US', 'Rosewood Heights', NULL, 'rosewood-heights', 1, '38.8878300000', '-90.0848300000'),
(7248482, 7896861, 'US', 'Rosiclare', NULL, 'rosiclare', 1, '37.4236600000', '-88.3461500000'),
(7248546, 7896861, 'US', 'Roxana', NULL, 'roxana', 1, '38.8483800000', '-90.0762200000'),
(7248554, 7896861, 'US', 'Royal Lakes', NULL, 'royal-lakes', 1, '39.1103200000', '-89.9614900000'),
(7248562, 7896861, 'US', 'Royalton', NULL, 'royalton', 1, '37.8769900000', '-89.1145200000'),
(7248577, 7896861, 'US', 'Ruma', NULL, 'ruma', 1, '38.1350500000', '-89.9978900000'),
(7248613, 7896861, 'US', 'Russellville', NULL, 'russellville', 1, '38.8189300000', '-87.5316900000'),
(7248648, 7896861, 'US', 'Sadorus', NULL, 'sadorus', 1, '39.9669800000', '-88.3464400000'),
(7248655, 7896861, 'US', 'Sailor Springs', NULL, 'sailor-springs', 1, '38.7639400000', '-88.3631000000'),
(7248788, 7896861, 'US', 'Saint Elmo', NULL, 'saint-elmo', 1, '39.0272700000', '-88.8481100000'),
(7248810, 7896861, 'US', 'Saint Francisville', NULL, 'saint-francisville', 1, '38.5911600000', '-87.6466900000'),
(7248819, 7896861, 'US', 'Saint Jacob', NULL, 'saint-jacob', 1, '38.7139400000', '-89.7681500000'),
(7248876, 7896861, 'US', 'Saint Johns', NULL, 'saint-johns', 1, '38.0308800000', '-89.2409200000'),
(7248990, 7896861, 'US', 'Saint Libory', NULL, 'saint-libory', 1, '38.3625500000', '-89.7098200000'),
(7249203, 7896861, 'US', 'Saint Peter', NULL, 'saint-peter', 1, '38.8681000000', '-88.8539500000'),
(7249276, 7896861, 'US', 'Sainte Marie', NULL, 'sainte-marie', 1, '38.9322700000', '-88.0233700000'),
(7249286, 7896861, 'US', 'Salem', NULL, 'salem', 1, '38.6269900000', '-88.9456200000'),
(7249437, 7896861, 'US', 'Sandoval', NULL, 'sandoval', 1, '38.6156000000', '-89.1142300000'),
(7249511, 7896861, 'US', 'Sauget', NULL, 'sauget', 1, '38.5964400000', '-90.1848300000'),
(7249520, 7896861, 'US', 'Sawyerville', NULL, 'sawyerville', 1, '39.0783800000', '-89.8073200000'),
(7249584, 7896861, 'US', 'Schram City', NULL, 'schram-city', 1, '39.1642100000', '-89.4637000000'),
(7249632, 7896861, 'US', 'Scottville', NULL, 'scottville', 1, '39.4803300000', '-90.1048300000'),
(7249704, 7896861, 'US', 'Sesser', NULL, 'sesser', 1, '38.0917200000', '-89.0503500000'),
(7249830, 7896861, 'US', 'Shawneetown', NULL, 'shawneetown', 1, '37.7131000000', '-88.1867000000'),
(7249857, 7896861, 'US', 'Shelbyville', NULL, 'shelbyville', 1, '39.4064300000', '-88.7900700000'),
(7249885, 7896861, 'US', 'Sherman', NULL, 'sherman', 1, '39.8936600000', '-89.6048200000'),
(7249910, 7896861, 'US', 'Shiloh', NULL, 'shiloh', 1, '38.5614400000', '-89.8973200000'),
(7249973, 7896861, 'US', 'Shipman', NULL, 'shipman', 1, '39.1175500000', '-90.0442700000'),
(7250027, 7896861, 'US', 'Shumway', NULL, 'shumway', 1, '39.1850400000', '-88.6522800000'),
(7250033, 7896861, 'US', 'Sidell', NULL, 'sidell', 1, '39.9097600000', '-87.8211400000'),
(7250039, 7896861, 'US', 'Sigel', NULL, 'sigel', 1, '39.2261500000', '-88.4942200000'),
(7250077, 7896861, 'US', 'Simpson', NULL, 'simpson', 1, '37.4672700000', '-88.7550600000'),
(7250098, 7896861, 'US', 'Sims', NULL, 'sims', 1, '38.3603300000', '-88.5306100000'),
(7250205, 7896861, 'US', 'Smithboro', NULL, 'smithboro', 1, '38.8961600000', '-89.3406300000'),
(7250209, 7896861, 'US', 'Smithton', NULL, 'smithton', 1, '38.4086600000', '-89.9920500000'),
(7250276, 7896861, 'US', 'Sorento', NULL, 'sorento', 1, '38.9989400000', '-89.5737000000'),
(7250334, 7896861, 'US', 'South Jacksonville', NULL, 'south-jacksonville', 1, '39.7086600000', '-90.2281800000'),
(7250399, 7896861, 'US', 'South Roxana', NULL, 'south-roxana', 1, '38.8294900000', '-90.0628800000'),
(7250404, 7896861, 'US', 'Southern View', NULL, 'southern-view', 1, '39.7572700000', '-89.6537100000'),
(7250450, 7896861, 'US', 'Spaulding', NULL, 'spaulding', 1, '39.8661600000', '-89.5403800000'),
(7250467, 7896861, 'US', 'Spillertown', NULL, 'spillertown', 1, '37.7664400000', '-88.9195100000'),
(7250476, 7896861, 'US', 'Sparta', NULL, 'sparta', 1, '38.1231100000', '-89.7017700000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7250540, 7896861, 'US', 'Springerton', NULL, 'springerton', 1, '38.1794900000', '-88.3542100000'),
(7250542, 7896861, 'US', 'Springfield', NULL, 'springfield', 1, '39.8017200000', '-89.6437100000'),
(7250573, 7896861, 'US', 'Standard City', NULL, 'standard-city', 1, '39.3522700000', '-89.7876000000'),
(7250608, 7896861, 'US', 'Staunton', NULL, 'staunton', 1, '39.0122700000', '-89.7912100000'),
(7250627, 7896861, 'US', 'Steeleville', NULL, 'steeleville', 1, '38.0072700000', '-89.6584300000'),
(7250661, 7896861, 'US', 'Stewardson', NULL, 'stewardson', 1, '39.2631000000', '-88.6297800000'),
(7250718, 7896861, 'US', 'Stonefort', NULL, 'stonefort', 1, '37.6142200000', '-88.7081100000'),
(7250724, 7896861, 'US', 'Stonington', NULL, 'stonington', 1, '39.6400400000', '-89.1928600000'),
(7250738, 7896861, 'US', 'Stoy', NULL, 'stoy', 1, '38.9975400000', '-87.8330800000'),
(7250740, 7896861, 'US', 'Strasburg', NULL, 'strasburg', 1, '39.3525400000', '-88.6192200000'),
(7250862, 7896861, 'US', 'Sullivan', NULL, 'sullivan', 1, '39.5994800000', '-88.6078400000'),
(7250888, 7896861, 'US', 'Summerfield', NULL, 'summerfield', 1, '38.5972700000', '-89.7517600000'),
(7250909, 7896861, 'US', 'Sumner', NULL, 'sumner', 1, '38.7169900000', '-87.8614200000'),
(7251003, 7896861, 'US', 'Swansea', NULL, 'swansea', 1, '38.5339400000', '-89.9889900000'),
(7251063, 7896861, 'US', 'Tallula', NULL, 'tallula', 1, '39.9444900000', '-89.9373300000'),
(7251074, 7896861, 'US', 'Tamaroa', NULL, 'tamaroa', 1, '38.1378300000', '-89.2300800000'),
(7251082, 7896861, 'US', 'Tamms', NULL, 'tamms', 1, '37.2350500000', '-89.2700800000'),
(7251138, 7896861, 'US', 'Taylor Springs', NULL, 'taylor-springs', 1, '39.1308800000', '-89.4920300000'),
(7251141, 7896861, 'US', 'Taylorville', NULL, 'taylorville', 1, '39.5489400000', '-89.2945300000'),
(7251185, 7896861, 'US', 'Teutopolis', NULL, 'teutopolis', 1, '39.1331000000', '-88.4719900000'),
(7251201, 7896861, 'US', 'Thayer', NULL, 'thayer', 1, '39.5381100000', '-89.7631500000'),
(7251217, 7896861, 'US', 'Thebes', NULL, 'thebes', 1, '37.2208800000', '-89.4609200000'),
(7251252, 7896861, 'US', 'Thompsonville', NULL, 'thompsonville', 1, '37.9175500000', '-88.7622800000'),
(7251276, 7896861, 'US', 'Tilden', NULL, 'tilden', 1, '38.2119900000', '-89.6826000000'),
(7251291, 7896861, 'US', 'Time', NULL, 'time', 1, '39.5614400000', '-90.7242900000'),
(7251330, 7896861, 'US', 'Toledo', NULL, 'toledo', 1, '39.2736500000', '-88.2436500000'),
(7251341, 7896861, 'US', 'Tolono', NULL, 'tolono', 1, '39.9861400000', '-88.2589400000'),
(7251371, 7896861, 'US', 'Tower Hill', NULL, 'tower-hill', 1, '39.3878200000', '-88.9606300000'),
(7251391, 7896861, 'US', 'Tovey', NULL, 'tovey', 1, '39.5889400000', '-89.4562000000'),
(7251413, 7896861, 'US', 'Trenton', NULL, 'trenton', 1, '38.6056000000', '-89.6820400000'),
(7251513, 7896861, 'US', 'Troy', NULL, 'troy', 1, '38.7292100000', '-89.8831500000'),
(7251593, 7896861, 'US', 'Tuscola', NULL, 'tuscola', 1, '39.7992000000', '-88.2831000000'),
(7251646, 7896861, 'US', 'Ullin', NULL, 'ullin', 1, '37.2769900000', '-89.1834100000'),
(7251841, 7896861, 'US', 'Upper Alton', NULL, 'upper-alton', 1, '38.9114400000', '-90.1506600000'),
(7251879, 7896861, 'US', 'Valier', NULL, 'valier', 1, '38.0153300000', '-89.0425700000'),
(7251886, 7896861, 'US', 'Valley City', NULL, 'valley-city', 1, '39.7069900000', '-90.6526300000'),
(7251900, 7896861, 'US', 'Valmeyer', NULL, 'valmeyer', 1, '38.3056100000', '-90.2765100000'),
(7251917, 7896861, 'US', 'Vandalia', NULL, 'vandalia', 1, '38.9606000000', '-89.0936800000'),
(7251954, 7896861, 'US', 'Venedy', NULL, 'venedy', 1, '38.3950500000', '-89.6459300000'),
(7251958, 7896861, 'US', 'Venice', NULL, 'venice', 1, '38.6722700000', '-90.1698300000'),
(7251966, 7896861, 'US', 'Vergennes', NULL, 'vergennes', 1, '37.9022700000', '-89.3356400000'),
(7251969, 7896861, 'US', 'Vermilion', NULL, 'vermilion', 1, '39.5811500000', '-87.5889100000'),
(7251977, 7896861, 'US', 'Vernon', NULL, 'vernon', 1, '38.8022700000', '-89.0870100000'),
(7251983, 7896861, 'US', 'Versailles', NULL, 'versailles', 1, '39.8850500000', '-90.6559600000'),
(7252025, 7896861, 'US', 'Vienna', NULL, 'vienna', 1, '37.4153300000', '-88.8978400000'),
(7252041, 7896861, 'US', 'Villa Grove', NULL, 'villa-grove', 1, '39.8628100000', '-88.1622700000'),
(7252060, 7896861, 'US', 'Virden', NULL, 'virden', 1, '39.5008900000', '-89.7678700000'),
(7252071, 7896861, 'US', 'Virginia', NULL, 'virginia', 1, '39.9511600000', '-90.2123400000'),
(7252277, 7896861, 'US', 'Waggoner', NULL, 'waggoner', 1, '39.3775500000', '-89.6531500000'),
(7252381, 7896861, 'US', 'Walnut Hill', NULL, 'walnut-hill', 1, '38.4772700000', '-89.0434000000'),
(7252401, 7896861, 'US', 'Walshville', NULL, 'walshville', 1, '39.0708800000', '-89.6189800000'),
(7252425, 7896861, 'US', 'Wamac', NULL, 'wamac', 1, '38.5089400000', '-89.1406300000'),
(7252440, 7896861, 'US', 'Waltonville', NULL, 'waltonville', 1, '38.2089400000', '-89.0389600000'),
(7252469, 7896861, 'US', 'Warrensburg', NULL, 'warrensburg', 1, '39.9328200000', '-89.0620300000'),
(7252512, 7896861, 'US', 'Washington Park', NULL, 'washington-park', 1, '38.6350500000', '-90.0928900000'),
(7252548, 7896861, 'US', 'Waterloo', NULL, 'waterloo', 1, '38.3358900000', '-90.1498300000'),
(7252573, 7896861, 'US', 'Watson', NULL, 'watson', 1, '39.0253200000', '-88.5697700000'),
(7252603, 7896861, 'US', 'Wayne City', NULL, 'wayne-city', 1, '38.3453300000', '-88.5878300000'),
(7252616, 7896861, 'US', 'Waverly', NULL, 'waverly', 1, '39.5917200000', '-89.9528800000'),
(7252702, 7896861, 'US', 'Wenonah', NULL, 'wenonah', 1, '39.3269900000', '-89.2889700000'),
(7252752, 7896861, 'US', 'West City', NULL, 'west-city', 1, '37.9939400000', '-88.9350700000'),
(7252812, 7896861, 'US', 'West Frankfort', NULL, 'west-frankfort', 1, '37.8978300000', '-88.9314600000'),
(7252841, 7896861, 'US', 'West Salem', NULL, 'west-salem', 1, '38.5208800000', '-88.0047600000'),
(7252871, 7896861, 'US', 'West Union', NULL, 'west-union', 1, '39.2158700000', '-87.6661400000'),
(7252889, 7896861, 'US', 'West York', NULL, 'west-york', 1, '39.1711500000', '-87.6736400000'),
(7252895, 7896861, 'US', 'Westervelt', NULL, 'westervelt', 1, '39.4789300000', '-88.8617400000'),
(7252897, 7896861, 'US', 'Westfield', NULL, 'westfield', 1, '39.4564200000', '-87.9961500000'),
(7252923, 7896861, 'US', 'Wheeler', NULL, 'wheeler', 1, '39.0467100000', '-88.3164300000'),
(7252948, 7896861, 'US', 'White Ash', NULL, 'white-ash', 1, '37.7894900000', '-88.9247900000'),
(7252954, 7896861, 'US', 'White City', NULL, 'white-city', 1, '39.0647700000', '-89.7634300000'),
(7252975, 7896861, 'US', 'White Hall', NULL, 'white-hall', 1, '39.4369900000', '-90.4031800000'),
(7253168, 7896861, 'US', 'Williamson', NULL, 'williamson', 1, '38.9856000000', '-89.7639800000'),
(7253179, 7896861, 'US', 'Williamsville', NULL, 'williamsville', 1, '39.9542200000', '-89.5487100000'),
(7253187, 7896861, 'US', 'Willisville', NULL, 'willisville', 1, '37.9839400000', '-89.5895400000'),
(7253212, 7896861, 'US', 'Willow Hill', NULL, 'willow-hill', 1, '38.9958800000', '-88.0225300000'),
(7253265, 7896861, 'US', 'Wilsonville', NULL, 'wilsonville', 1, '39.0708800000', '-89.8562100000'),
(7253268, 7896861, 'US', 'Winchester', NULL, 'winchester', 1, '39.6297700000', '-90.4562400000'),
(7253280, 7896861, 'US', 'Windsor', NULL, 'windsor', 1, '39.4408700000', '-88.5947800000'),
(7253325, 7896861, 'US', 'Witt', NULL, 'witt', 1, '39.2564400000', '-89.3481400000'),
(7253387, 7896861, 'US', 'Wood River', NULL, 'wood-river', 1, '38.8611600000', '-90.0976100000'),
(7253423, 7896861, 'US', 'Woodlawn', NULL, 'woodlawn', 1, '38.3300500000', '-89.0325700000'),
(7253461, 7896861, 'US', 'Woodson', NULL, 'woodson', 1, '39.6289400000', '-90.2190100000'),
(7253472, 7896861, 'US', 'Worden', NULL, 'worden', 1, '38.9314400000', '-89.8389900000'),
(7253511, 7896861, 'US', 'Xenia', NULL, 'xenia', 1, '38.6358800000', '-88.6347700000'),
(7253518, 7896861, 'US', 'Yale', NULL, 'yale', 1, '39.1197600000', '-88.0247600000'),
(7253591, 7896861, 'US', 'Zeigler', NULL, 'zeigler', 1, '37.8994900000', '-89.0520200000'),
(7253754, 7921868, 'US', 'Advance', NULL, 'advance', 1, '39.9958800000', '-86.6200000000'),
(7253766, 7921868, 'US', 'Alamo', NULL, 'alamo', 1, '39.9819900000', '-87.0572300000'),
(7253788, 7921868, 'US', 'Alfordsville', NULL, 'alfordsville', 1, '38.5606100000', '-86.9483400000'),
(7253833, 7921868, 'US', 'Alton', NULL, 'alton', 1, '38.1225600000', '-86.4177600000'),
(7253846, 7921868, 'US', 'Amo', NULL, 'amo', 1, '39.6881000000', '-86.6136100000'),
(7253916, 7921868, 'US', 'Arlington', NULL, 'arlington', 1, '39.6425500000', '-85.5763600000'),
(7254010, 7921868, 'US', 'Austin', NULL, 'austin', 1, '38.7583900000', '-85.8080300000'),
(7254020, 7921868, 'US', 'Avoca', NULL, 'avoca', 1, '38.9119900000', '-86.5477700000'),
(7254021, 7921868, 'US', 'Avon', NULL, 'avon', 1, '39.7628200000', '-86.3997200000'),
(7254062, 7921868, 'US', 'Bainbridge', NULL, 'bainbridge', 1, '39.7611600000', '-86.8119500000'),
(7254124, 7921868, 'US', 'Bargersville', NULL, 'bargersville', 1, '39.5208800000', '-86.1677700000'),
(7254185, 7921868, 'US', 'Batesville', NULL, 'batesville', 1, '39.3000500000', '-85.2221800000'),
(7254282, 7921868, 'US', 'Bedford', NULL, 'bedford', 1, '38.8611600000', '-86.4872100000'),
(7254304, 7921868, 'US', 'Beech Grove', NULL, 'beech-grove', 1, '39.7219900000', '-86.0899800000'),
(7254426, 7921868, 'US', 'Bethany', NULL, 'bethany', 1, '39.5325500000', '-86.3758300000'),
(7254515, 7921868, 'US', 'Bicknell', NULL, 'bicknell', 1, '38.7742100000', '-87.3077900000'),
(7254612, 7921868, 'US', 'Birdseye', NULL, 'birdseye', 1, '38.3167200000', '-86.6958200000'),
(7254658, 7921868, 'US', 'Blanford', NULL, 'blanford', 1, '39.6650400000', '-87.5205800000'),
(7254671, 7921868, 'US', 'Bloomfield', NULL, 'bloomfield', 1, '39.0269900000', '-86.9375100000'),
(7254677, 7921868, 'US', 'Bloomingdale', NULL, 'bloomingdale', 1, '39.8333700000', '-87.2497400000'),
(7254679, 7921868, 'US', 'Bloomington', NULL, 'bloomington', 1, '39.1653300000', '-86.5263900000'),
(7254797, 7921868, 'US', 'Boonville', NULL, 'boonville', 1, '38.0492100000', '-87.2741700000'),
(7254805, 7921868, 'US', 'Borden', NULL, 'borden', 1, '38.4667300000', '-85.9458000000'),
(7254810, 7921868, 'US', 'Boston', NULL, 'boston', 1, '39.7411600000', '-84.8519000000'),
(7254884, 7921868, 'US', 'Brazil', NULL, 'brazil', 1, '39.5236500000', '-87.1250200000'),
(7254944, 7921868, 'US', 'Bright', NULL, 'bright', 1, '39.2183900000', '-84.8560600000'),
(7254957, 7921868, 'US', 'Broad Ripple', NULL, 'broad-ripple', 1, '39.8667100000', '-86.1416500000'),
(7254985, 7921868, 'US', 'Brooklyn', NULL, 'brooklyn', 1, '39.5392100000', '-86.3691600000'),
(7254994, 7921868, 'US', 'Brooksburg', NULL, 'brooksburg', 1, '38.7364500000', '-85.2435700000'),
(7254999, 7921868, 'US', 'Brookville', NULL, 'brookville', 1, '39.4231100000', '-85.0127400000'),
(7255056, 7921868, 'US', 'Brownsburg', NULL, 'brownsburg', 1, '39.8433800000', '-86.3977700000'),
(7255063, 7921868, 'US', 'Brownstown', NULL, 'brownstown', 1, '38.8789400000', '-86.0419200000'),
(7255069, 7921868, 'US', 'Bruceville', NULL, 'bruceville', 1, '38.7594900000', '-87.4155700000'),
(7255211, 7921868, 'US', 'Burns City', NULL, 'burns-city', 1, '38.8225500000', '-86.8869500000'),
(7255263, 7921868, 'US', 'Butlerville', NULL, 'butlerville', 1, '39.0345000000', '-85.5127400000'),
(7255287, 7921868, 'US', 'Cadiz', NULL, 'cadiz', 1, '39.9514300000', '-85.4866400000'),
(7255339, 7921868, 'US', 'Cambridge City', NULL, 'cambridge-city', 1, '39.8125500000', '-85.1716300000'),
(7255413, 7921868, 'US', 'Campbellsburg', NULL, 'campbellsburg', 1, '38.6514400000', '-86.2610900000'),
(7255420, 7921868, 'US', 'Canaan', NULL, 'canaan', 1, '38.8667200000', '-85.2957900000'),
(7255446, 7921868, 'US', 'Cannelburg', NULL, 'cannelburg', 1, '38.6697700000', '-86.9983400000'),
(7255455, 7921868, 'US', 'Carbon', NULL, 'carbon', 1, '39.5978200000', '-87.1186300000'),
(7255457, 7921868, 'US', 'Cannelton', NULL, 'cannelton', 1, '37.9114400000', '-86.7444300000'),
(7255462, 7921868, 'US', 'Carlisle', NULL, 'carlisle', 1, '38.9683800000', '-87.4055700000'),
(7255465, 7921868, 'US', 'Carefree', NULL, 'carefree', 1, '38.2517300000', '-86.3513700000'),
(7255466, 7921868, 'US', 'Carmel', NULL, 'carmel', 1, '39.9783700000', '-86.1180400000'),
(7255506, 7921868, 'US', 'Carthage', NULL, 'carthage', 1, '39.7383800000', '-85.5719200000'),
(7255535, 7921868, 'US', 'Castleton', NULL, 'castleton', 1, '39.9069800000', '-86.0522100000'),
(7255557, 7921868, 'US', 'Cayuga', NULL, 'cayuga', 1, '39.9486500000', '-87.4597400000'),
(7255571, 7921868, 'US', 'Cedar Grove', NULL, 'cedar-grove', 1, '39.3570000000', '-84.9377300000'),
(7255602, 7921868, 'US', 'Center Point', NULL, 'center-point', 1, '39.4169900000', '-87.0772400000'),
(7255627, 7921868, 'US', 'Centerville', NULL, 'centerville', 1, '39.8178200000', '-84.9963500000'),
(7255673, 7921868, 'US', 'Chandler', NULL, 'chandler', 1, '38.0417100000', '-87.3680600000'),
(7255704, 7921868, 'US', 'Charlestown', NULL, 'charlestown', 1, '38.4531200000', '-85.6702400000'),
(7255778, 7921868, 'US', 'Chrisney', NULL, 'chrisney', 1, '38.0147700000', '-87.0363900000'),
(7255833, 7921868, 'US', 'Clarksburg', NULL, 'clarksburg', 1, '39.4333800000', '-85.3477400000'),
(7255836, 7921868, 'US', 'Clarksville', NULL, 'clarksville', 1, '38.2967400000', '-85.7599600000'),
(7255841, 7921868, 'US', 'Clay City', NULL, 'clay-city', 1, '39.2767100000', '-87.1127900000'),
(7255864, 7921868, 'US', 'Clayton', NULL, 'clayton', 1, '39.6892100000', '-86.5225000000'),
(7255897, 7921868, 'US', 'Clermont', NULL, 'clermont', 1, '39.8097700000', '-86.3224900000'),
(7255906, 7921868, 'US', 'Clifford', NULL, 'clifford', 1, '39.2822700000', '-85.8691600000'),
(7255937, 7921868, 'US', 'Clinton', NULL, 'clinton', 1, '39.6569800000', '-87.3980700000'),
(7255948, 7921868, 'US', 'Cloverdale', NULL, 'cloverdale', 1, '39.5147700000', '-86.7939000000'),
(7255957, 7921868, 'US', 'Coalmont', NULL, 'coalmont', 1, '39.1933800000', '-87.2311300000'),
(7255959, 7921868, 'US', 'Coatesville', NULL, 'coatesville', 1, '39.6878200000', '-86.6702800000'),
(7256038, 7921868, 'US', 'Columbus', NULL, 'columbus', 1, '39.2014400000', '-85.9213800000'),
(7256085, 7921868, 'US', 'Connersville', NULL, 'connersville', 1, '39.6411600000', '-85.1410700000'),
(7256184, 7921868, 'US', 'Corydon', NULL, 'corydon', 1, '38.2120100000', '-86.1219200000'),
(7256223, 7921868, 'US', 'Country Squire Lakes', NULL, 'country-squire-lakes', 1, '39.0347800000', '-85.6985800000'),
(7256247, 7921868, 'US', 'Crandall', NULL, 'crandall', 1, '38.2875700000', '-86.0663600000'),
(7256252, 7921868, 'US', 'Crane', NULL, 'crane', 1, '38.8911600000', '-86.9038900000'),
(7256339, 7921868, 'US', 'Crothersville', NULL, 'crothersville', 1, '38.8006100000', '-85.8416400000'),
(7256360, 7921868, 'US', 'Crows Nest', NULL, 'crows-nest', 1, '39.8581000000', '-86.1686000000'),
(7256384, 7921868, 'US', 'Cumberland', NULL, 'cumberland', 1, '39.7761500000', '-85.9572000000'),
(7256407, 7921868, 'US', 'Cynthiana', NULL, 'cynthiana', 1, '38.1875400000', '-87.7103000000'),
(7256426, 7921868, 'US', 'Dale', NULL, 'dale', 1, '38.1689400000', '-86.9900000000'),
(7256437, 7921868, 'US', 'Dana', NULL, 'dana', 1, '39.8078100000', '-87.4950200000'),
(7256447, 7921868, 'US', 'Danville', NULL, 'danville', 1, '39.7606000000', '-86.5263900000'),
(7256460, 7921868, 'US', 'Darmstadt', NULL, 'darmstadt', 1, '38.0992100000', '-87.5789100000'),
(7256522, 7921868, 'US', 'Decker', NULL, 'decker', 1, '38.5189400000', '-87.5230800000'),
(7256585, 7921868, 'US', 'Deputy', NULL, 'deputy', 1, '38.7942200000', '-85.6533000000'),
(7256645, 7921868, 'US', 'Dillsboro', NULL, 'dillsboro', 1, '39.0178300000', '-85.0588400000'),
(7256733, 7921868, 'US', 'Dover Hill', NULL, 'dover-hill', 1, '38.7250500000', '-86.8027800000'),
(7256803, 7921868, 'US', 'Dublin', NULL, 'dublin', 1, '39.8122700000', '-85.2088500000'),
(7256805, 7921868, 'US', 'Dubois', NULL, 'dubois', 1, '38.4453300000', '-86.8044400000'),
(7256832, 7921868, 'US', 'Dugger', NULL, 'dugger', 1, '39.0700400000', '-87.2614000000'),
(7256856, 7921868, 'US', 'Dupont', NULL, 'dupont', 1, '38.8900600000', '-85.5141300000'),
(7256866, 7921868, 'US', 'Dunreith', NULL, 'dunreith', 1, '39.8033800000', '-85.4385800000'),
(7256923, 7921868, 'US', 'East Enterprise', NULL, 'east-enterprise', 1, '38.8728400000', '-84.9880100000'),
(7256949, 7921868, 'US', 'East Germantown', NULL, 'east-germantown', 1, '39.8125500000', '-85.1374600000'),
(7257026, 7921868, 'US', 'Economy', NULL, 'economy', 1, '39.9781000000', '-85.0880200000'),
(7257043, 7921868, 'US', 'Edinburgh', NULL, 'edinburgh', 1, '39.3542200000', '-85.9666600000'),
(7257051, 7921868, 'US', 'Edwardsport', NULL, 'edwardsport', 1, '38.8119900000', '-87.2522400000'),
(7257070, 7921868, 'US', 'Elberfeld', NULL, 'elberfeld', 1, '38.1597700000', '-87.4483500000'),
(7257080, 7921868, 'US', 'Elizabeth', NULL, 'elizabeth', 1, '38.1211800000', '-85.9741300000'),
(7257084, 7921868, 'US', 'Elizabethtown', NULL, 'elizabethtown', 1, '39.1350500000', '-85.8133100000'),
(7257110, 7921868, 'US', 'Ellettsville', NULL, 'ellettsville', 1, '39.2339300000', '-86.6250000000'),
(7257137, 7921868, 'US', 'Elnora', NULL, 'elnora', 1, '38.8783800000', '-87.0858400000'),
(7257156, 7921868, 'US', 'Emison', NULL, 'emison', 1, '38.8050500000', '-87.4580800000'),
(7257173, 7921868, 'US', 'English', NULL, 'english', 1, '38.3345000000', '-86.4641500000'),
(7257227, 7921868, 'US', 'Evansville', NULL, 'evansville', 1, '37.9747600000', '-87.5558500000'),
(7257268, 7921868, 'US', 'Fairland', NULL, 'fairland', 1, '39.5858800000', '-85.8635900000'),
(7257305, 7921868, 'US', 'Fairview Park', NULL, 'fairview-park', 1, '39.6803100000', '-87.4175200000'),
(7257396, 7921868, 'US', 'Farmersburg', NULL, 'farmersburg', 1, '39.2486500000', '-87.3819600000'),
(7257415, 7921868, 'US', 'Ferdinand', NULL, 'ferdinand', 1, '38.2239400000', '-86.8622200000'),
(7257444, 7921868, 'US', 'Fillmore', NULL, 'fillmore', 1, '39.6675500000', '-86.7533400000'),
(7257494, 7921868, 'US', 'Fishers', NULL, 'fishers', 1, '39.9555900000', '-86.0138700000'),
(7257559, 7921868, 'US', 'Florence', NULL, 'florence', 1, '38.7842300000', '-84.9243900000'),
(7257580, 7921868, 'US', 'Fontanet', NULL, 'fontanet', 1, '39.5761500000', '-87.2436300000'),
(7257617, 7921868, 'US', 'Fort Branch', NULL, 'fort-branch', 1, '38.2511600000', '-87.5811300000'),
(7257630, 7921868, 'US', 'Fortville', NULL, 'fortville', 1, '39.9322600000', '-85.8480400000'),
(7257640, 7921868, 'US', 'Fountain City', NULL, 'fountain-city', 1, '39.9556000000', '-84.9174600000'),
(7257682, 7921868, 'US', 'Francisco', NULL, 'francisco', 1, '38.3322700000', '-87.4453000000'),
(7257731, 7921868, 'US', 'Fredericksburg', NULL, 'fredericksburg', 1, '38.4331200000', '-86.1897000000'),
(7257750, 7921868, 'US', 'Freelandville', NULL, 'freelandville', 1, '38.8647700000', '-87.3058500000'),
(7257759, 7921868, 'US', 'Freetown', NULL, 'freetown', 1, '38.9731100000', '-86.1294300000'),
(7257770, 7921868, 'US', 'French Lick', NULL, 'french-lick', 1, '38.5489400000', '-86.6199900000'),
(7257835, 7921868, 'US', 'Galena', NULL, 'galena', 1, '38.3517300000', '-85.9416400000'),
(7257898, 7921868, 'US', 'Geneva', NULL, 'geneva', 1, '39.3917200000', '-85.7199800000'),
(7257900, 7921868, 'US', 'Gentryville', NULL, 'gentryville', 1, '38.1042200000', '-87.0330500000'),
(7257913, 7921868, 'US', 'Georgetown', NULL, 'georgetown', 1, '38.2945100000', '-85.9755200000'),
(7258007, 7921868, 'US', 'Glenwood', NULL, 'glenwood', 1, '39.6258800000', '-85.3002400000'),
(7258104, 7921868, 'US', 'Gosport', NULL, 'gosport', 1, '39.3508800000', '-86.6669500000'),
(7258148, 7921868, 'US', 'Grandview', NULL, 'grandview', 1, '37.9336600000', '-86.9811100000'),
(7258273, 7921868, 'US', 'Greencastle', NULL, 'greencastle', 1, '39.6444900000', '-86.8647300000'),
(7258277, 7921868, 'US', 'Greendale', NULL, 'greendale', 1, '39.1125600000', '-84.8641200000'),
(7258285, 7921868, 'US', 'Greenfield', NULL, 'greenfield', 1, '39.7850400000', '-85.7694200000'),
(7258300, 7921868, 'US', 'Greensboro', NULL, 'greensboro', 1, '39.8750500000', '-85.4660800000'),
(7258302, 7921868, 'US', 'Greensburg', NULL, 'greensburg', 1, '39.3372700000', '-85.4835800000'),
(7258307, 7921868, 'US', 'Greenville', NULL, 'greenville', 1, '38.3725600000', '-85.9863600000'),
(7258313, 7921868, 'US', 'Greenwood', NULL, 'greenwood', 1, '39.6136600000', '-86.1066500000'),
(7258341, 7921868, 'US', 'Griffin', NULL, 'griffin', 1, '38.2042100000', '-87.9147500000'),
(7258346, 7921868, 'US', 'Greens Fork', NULL, 'greens-fork', 1, '39.8925500000', '-85.0416300000'),
(7258413, 7921868, 'US', 'Hagerstown', NULL, 'hagerstown', 1, '39.9111600000', '-85.1616300000'),
(7258510, 7921868, 'US', 'Hanover', NULL, 'hanover', 1, '38.7142300000', '-85.4735700000'),
(7258541, 7921868, 'US', 'Hardinsburg', NULL, 'hardinsburg', 1, '38.4608900000', '-86.2785900000'),
(7258553, 7921868, 'US', 'Harmony', NULL, 'harmony', 1, '39.5367100000', '-87.1058500000'),
(7258623, 7921868, 'US', 'Harrodsburg', NULL, 'harrodsburg', 1, '39.0133800000', '-86.5450000000'),
(7258646, 7921868, 'US', 'Hartsville', NULL, 'hartsville', 1, '39.2675500000', '-85.6980400000'),
(7258661, 7921868, 'US', 'Hatfield', NULL, 'hatfield', 1, '37.9025500000', '-87.2241700000'),
(7258664, 7921868, 'US', 'Haubstadt', NULL, 'haubstadt', 1, '38.2050400000', '-87.5741900000'),
(7258695, 7921868, 'US', 'Hayden', NULL, 'hayden', 1, '38.9831100000', '-85.7405300000'),
(7258715, 7921868, 'US', 'Hazleton', NULL, 'hazleton', 1, '38.4889400000', '-87.5416900000'),
(7258799, 7921868, 'US', 'Henryville', NULL, 'henryville', 1, '38.5417300000', '-85.7677400000'),
(7258871, 7921868, 'US', 'Hidden Valley', NULL, 'hidden-valley', 1, '39.1622800000', '-84.8430100000'),
(7258909, 7921868, 'US', 'Highland', NULL, 'highland', 1, '38.0397600000', '-87.5730700000'),
(7259023, 7921868, 'US', 'Holland', NULL, 'holland', 1, '38.2456100000', '-87.0361100000'),
(7259042, 7921868, 'US', 'Holton', NULL, 'holton', 1, '39.0750500000', '-85.3871900000'),
(7259069, 7921868, 'US', 'Homecroft', NULL, 'homecroft', 1, '39.6700500000', '-86.1313800000'),
(7259115, 7921868, 'US', 'Hope', NULL, 'hope', 1, '39.3039400000', '-85.7713700000'),
(7259271, 7921868, 'US', 'Huntingburg', NULL, 'huntingburg', 1, '38.2989400000', '-86.9550000000'),
(7259303, 7921868, 'US', 'Hymera', NULL, 'hymera', 1, '39.1864300000', '-87.3016800000'),
(7259418, 7921868, 'US', 'Indianapolis', NULL, 'indianapolis', 1, '39.7683800000', '-86.1580400000'),
(7259436, 7921868, 'US', 'Ingalls', NULL, 'ingalls', 1, '39.9569900000', '-85.8052600000'),
(7259636, 7921868, 'US', 'Jamestown', NULL, 'jamestown', 1, '39.9267100000', '-86.6288900000'),
(7259639, 7921868, 'US', 'Jasonville', NULL, 'jasonville', 1, '39.1631000000', '-87.1991800000'),
(7259640, 7921868, 'US', 'Jasper', NULL, 'jasper', 1, '38.3914400000', '-86.9311100000'),
(7259671, 7921868, 'US', 'Jeffersonville', NULL, 'jeffersonville', 1, '38.2775700000', '-85.7371800000'),
(7259769, 7921868, 'US', 'Jonesville', NULL, 'jonesville', 1, '39.0606100000', '-85.8897000000'),
(7259792, 7921868, 'US', 'Judson', NULL, 'judson', 1, '39.8131000000', '-87.1344600000'),
(7259857, 7921868, 'US', 'Kennard', NULL, 'kennard', 1, '39.9039300000', '-85.5194200000'),
(7259864, 7921868, 'US', 'Kent', NULL, 'kent', 1, '38.7378400000', '-85.5399600000'),
(7259918, 7921868, 'US', 'Kingman', NULL, 'kingman', 1, '39.9675400000', '-87.2775100000'),
(7259960, 7921868, 'US', 'Knightstown', NULL, 'knightstown', 1, '39.7956000000', '-85.5263600000'),
(7259963, 7921868, 'US', 'Knightsville', NULL, 'knightsville', 1, '39.5258700000', '-87.1125200000'),
(7260019, 7921868, 'US', 'Laconia', NULL, 'laconia', 1, '38.0317400000', '-86.0855200000'),
(7260038, 7921868, 'US', 'Ladoga', NULL, 'ladoga', 1, '39.9136600000', '-86.8011200000'),
(7260062, 7921868, 'US', 'Lake Hart', NULL, 'lake-hart', 1, '39.5675500000', '-86.4319400000'),
(7260164, 7921868, 'US', 'Lanesville', NULL, 'lanesville', 1, '38.2370100000', '-85.9858000000'),
(7260199, 7921868, 'US', 'Laurel', NULL, 'laurel', 1, '39.5008800000', '-85.1863500000'),
(7260210, 7921868, 'US', 'Lawrence', NULL, 'lawrence', 1, '39.8386500000', '-86.0252600000'),
(7260223, 7921868, 'US', 'Lawrenceburg', NULL, 'lawrenceburg', 1, '39.0908900000', '-84.8499500000'),
(7260260, 7921868, 'US', 'Leavenworth', NULL, 'leavenworth', 1, '38.1997900000', '-86.3441400000'),
(7260322, 7921868, 'US', 'Lewisville', NULL, 'lewisville', 1, '39.8067100000', '-85.3527500000'),
(7260329, 7921868, 'US', 'Liberty', NULL, 'liberty', 1, '39.6356000000', '-84.9310700000'),
(7260453, 7921868, 'US', 'Linton', NULL, 'linton', 1, '39.0347700000', '-87.1658500000'),
(7260619, 7921868, 'US', 'Little York', NULL, 'little-york', 1, '38.7028400000', '-85.9049700000'),
(7260626, 7921868, 'US', 'Livonia', NULL, 'livonia', 1, '38.5570000000', '-86.2774800000'),
(7260627, 7921868, 'US', 'Lizton', NULL, 'lizton', 1, '39.8867100000', '-86.5433300000'),
(7260711, 7921868, 'US', 'Loogootee', NULL, 'loogootee', 1, '38.6769900000', '-86.9141700000'),
(7260832, 7921868, 'US', 'Lynnville', NULL, 'lynnville', 1, '38.1961600000', '-87.2966800000'),
(7260837, 7921868, 'US', 'Lyons', NULL, 'lyons', 1, '38.9892100000', '-87.0822300000'),
(7260848, 7921868, 'US', 'Mackey', NULL, 'mackey', 1, '38.2522700000', '-87.3916800000'),
(7260853, 7921868, 'US', 'Madison', NULL, 'madison', 1, '38.7358900000', '-85.3799600000'),
(7260901, 7921868, 'US', 'Manilla', NULL, 'manilla', 1, '39.5742100000', '-85.6194200000'),
(7260962, 7921868, 'US', 'Marengo', NULL, 'marengo', 1, '38.3692300000', '-86.3435900000'),
(7260996, 7921868, 'US', 'Markleville', NULL, 'markleville', 1, '39.9778200000', '-85.6147000000'),
(7261025, 7921868, 'US', 'Marshall', NULL, 'marshall', 1, '39.8481000000', '-87.1877900000'),
(7261032, 7921868, 'US', 'Martinsville', NULL, 'martinsville', 1, '39.4278300000', '-86.4283300000'),
(7261079, 7921868, 'US', 'Mauckport', NULL, 'mauckport', 1, '38.0247900000', '-86.2019200000'),
(7261132, 7921868, 'US', 'McCordsville', NULL, 'mccordsville', 1, '39.9081000000', '-85.9227600000'),
(7261215, 7921868, 'US', 'Mecca', NULL, 'mecca', 1, '39.7272600000', '-87.3305700000'),
(7261221, 7921868, 'US', 'Medora', NULL, 'medora', 1, '38.8250500000', '-86.1699800000'),
(7261231, 7921868, 'US', 'Melody Hill', NULL, 'melody-hill', 1, '38.0261500000', '-87.5158500000'),
(7261256, 7921868, 'US', 'Memphis', NULL, 'memphis', 1, '38.4834000000', '-85.7616300000'),
(7261274, 7921868, 'US', 'Merom', NULL, 'merom', 1, '39.0564300000', '-87.5675200000'),
(7261283, 7921868, 'US', 'Meridian Hills', NULL, 'meridian-hills', 1, '39.8900400000', '-86.1572100000'),
(7261292, 7921868, 'US', 'Metamora', NULL, 'metamora', 1, '39.4497700000', '-85.1394100000'),
(7261349, 7921868, 'US', 'Middlebury', NULL, 'middlebury', 1, '39.2642100000', '-87.1189000000'),
(7261361, 7921868, 'US', 'Milan', NULL, 'milan', 1, '39.1211700000', '-85.1313500000'),
(7261368, 7921868, 'US', 'Milford', NULL, 'milford', 1, '39.3503300000', '-85.6180300000'),
(7261443, 7921868, 'US', 'Millhousen', NULL, 'millhousen', 1, '39.2106100000', '-85.4324700000'),
(7261453, 7921868, 'US', 'Milltown', NULL, 'milltown', 1, '38.3422800000', '-86.2760900000'),
(7261458, 7921868, 'US', 'Milroy', NULL, 'milroy', 1, '39.4969900000', '-85.4696900000'),
(7261461, 7921868, 'US', 'Milton', NULL, 'milton', 1, '39.7881000000', '-85.1552400000'),
(7261486, 7921868, 'US', 'Mitchell', NULL, 'mitchell', 1, '38.7328300000', '-86.4736000000'),
(7261525, 7921868, 'US', 'Monroe City', NULL, 'monroe-city', 1, '38.6153300000', '-87.3544600000'),
(7261539, 7921868, 'US', 'Monrovia', NULL, 'monrovia', 1, '39.5789400000', '-86.4822200000'),
(7261550, 7921868, 'US', 'Montgomery', NULL, 'montgomery', 1, '38.6625500000', '-87.0461200000'),
(7261552, 7921868, 'US', 'Montezuma', NULL, 'montezuma', 1, '39.7928200000', '-87.3708500000'),
(7261578, 7921868, 'US', 'Mooreland', NULL, 'mooreland', 1, '39.9975500000', '-85.2510800000'),
(7261585, 7921868, 'US', 'Mooresville', NULL, 'mooresville', 1, '39.6128200000', '-86.3741600000'),
(7261600, 7921868, 'US', 'Moores Hill', NULL, 'moores-hill', 1, '39.1133900000', '-85.0880100000'),
(7261611, 7921868, 'US', 'Morgantown', NULL, 'morgantown', 1, '39.3714400000', '-86.2611000000'),
(7261628, 7921868, 'US', 'Morristown', NULL, 'morristown', 1, '39.6733800000', '-85.6985900000'),
(7261657, 7921868, 'US', 'Mount Auburn', NULL, 'mount-auburn', 1, '39.3925500000', '-85.8936000000'),
(7261670, 7921868, 'US', 'Mount Carmel', NULL, 'mount-carmel', 1, '39.4072700000', '-84.8732900000'),
(7261837, 7921868, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '37.9322700000', '-87.8950300000'),
(7261973, 7921868, 'US', 'Napoleon', NULL, 'napoleon', 1, '39.2047700000', '-85.3308000000'),
(7261983, 7921868, 'US', 'Nashville', NULL, 'nashville', 1, '39.2072700000', '-86.2511000000'),
(7262045, 7921868, 'US', 'New Albany', NULL, 'new-albany', 1, '38.2856200000', '-85.8241300000'),
(7262053, 7921868, 'US', 'New Amsterdam', NULL, 'new-amsterdam', 1, '38.1022900000', '-86.2749700000'),
(7262072, 7921868, 'US', 'New Castle', NULL, 'new-castle', 1, '39.9289400000', '-85.3702500000'),
(7262090, 7921868, 'US', 'New Goshen', NULL, 'new-goshen', 1, '39.5811500000', '-87.4622400000'),
(7262092, 7921868, 'US', 'New Harmony', NULL, 'new-harmony', 1, '38.1297700000', '-87.9350300000'),
(7262124, 7921868, 'US', 'New Market', NULL, 'new-market', 1, '39.9525400000', '-86.9214000000'),
(7262127, 7921868, 'US', 'New Middletown', NULL, 'new-middletown', 1, '38.1639600000', '-86.0508000000'),
(7262130, 7921868, 'US', 'New Palestine', NULL, 'new-palestine', 1, '39.7219900000', '-85.8891500000'),
(7262138, 7921868, 'US', 'New Point', NULL, 'new-point', 1, '39.3097700000', '-85.3291300000'),
(7262143, 7921868, 'US', 'New Ross', NULL, 'new-ross', 1, '39.9647700000', '-86.7144500000'),
(7262150, 7921868, 'US', 'New Salisbury', NULL, 'new-salisbury', 1, '38.3136800000', '-86.0949700000'),
(7262151, 7921868, 'US', 'New Trenton', NULL, 'new-trenton', 1, '39.3095000000', '-84.9005100000'),
(7262158, 7921868, 'US', 'New Washington', NULL, 'new-washington', 1, '38.5631200000', '-85.5396800000'),
(7262159, 7921868, 'US', 'New Whiteland', NULL, 'new-whiteland', 1, '39.5581000000', '-86.0952600000'),
(7262169, 7921868, 'US', 'Newberry', NULL, 'newberry', 1, '38.9250500000', '-87.0194500000'),
(7262171, 7921868, 'US', 'Newburgh', NULL, 'newburgh', 1, '37.9444900000', '-87.4052900000'),
(7262177, 7921868, 'US', 'Newport', NULL, 'newport', 1, '39.8842000000', '-87.4086300000'),
(7262265, 7921868, 'US', 'North Crows Nest', NULL, 'north-crows-nest', 1, '39.8658700000', '-86.1633200000'),
(7262293, 7921868, 'US', 'North Madison', NULL, 'north-madison', 1, '38.7678400000', '-85.3966300000'),
(7262309, 7921868, 'US', 'North Salem', NULL, 'north-salem', 1, '39.8597700000', '-86.6425000000'),
(7262311, 7921868, 'US', 'North Terre Haute', NULL, 'north-terre-haute', 1, '39.5278100000', '-87.3603000000'),
(7262318, 7921868, 'US', 'North Vernon', NULL, 'north-vernon', 1, '39.0061700000', '-85.6235800000'),
(7262406, 7921868, 'US', 'Oak Park', NULL, 'oak-park', 1, '38.3056200000', '-85.6963500000'),
(7262425, 7921868, 'US', 'Oakland City', NULL, 'oakland-city', 1, '38.3386600000', '-87.3450100000'),
(7262433, 7921868, 'US', 'Oaktown', NULL, 'oaktown', 1, '38.8711600000', '-87.4414100000'),
(7262451, 7921868, 'US', 'Odon', NULL, 'odon', 1, '38.8428300000', '-86.9914000000'),
(7262555, 7921868, 'US', 'Oldenburg', NULL, 'oldenburg', 1, '39.3397700000', '-85.2044100000'),
(7262583, 7921868, 'US', 'Oolitic', NULL, 'oolitic', 1, '38.9008800000', '-86.5252700000'),
(7262618, 7921868, 'US', 'Orleans', NULL, 'orleans', 1, '38.6617200000', '-86.4516600000'),
(7262640, 7921868, 'US', 'Osgood', NULL, 'osgood', 1, '39.1292200000', '-85.2916300000'),
(7262668, 7921868, 'US', 'Otwell', NULL, 'otwell', 1, '38.4547700000', '-87.0922300000'),
(7262707, 7921868, 'US', 'Owensburg', NULL, 'owensburg', 1, '38.9231000000', '-86.7297200000'),
(7262708, 7921868, 'US', 'Owensville', NULL, 'owensville', 1, '38.2719900000', '-87.6878000000'),
(7262746, 7921868, 'US', 'Palmyra', NULL, 'palmyra', 1, '38.4078400000', '-86.1099700000'),
(7262762, 7921868, 'US', 'Paoli', NULL, 'paoli', 1, '38.5561700000', '-86.4683200000'),
(7262768, 7921868, 'US', 'Paragon', NULL, 'paragon', 1, '39.3950500000', '-86.5625000000'),
(7262794, 7921868, 'US', 'Parkers Settlement', NULL, 'parkers-settlement', 1, '38.0467100000', '-87.7161300000'),
(7262826, 7921868, 'US', 'Patoka', NULL, 'patoka', 1, '38.4069900000', '-87.5855800000'),
(7262845, 7921868, 'US', 'Patriot', NULL, 'patriot', 1, '38.8386700000', '-84.8268900000'),
(7262901, 7921868, 'US', 'Pendleton', NULL, 'pendleton', 1, '39.9975400000', '-85.7466400000'),
(7262968, 7921868, 'US', 'Petersburg', NULL, 'petersburg', 1, '38.4919900000', '-87.2786200000'),
(7263105, 7921868, 'US', 'Pittsboro', NULL, 'pittsboro', 1, '39.8639300000', '-86.4669400000'),
(7263108, 7921868, 'US', 'Plainfield', NULL, 'plainfield', 1, '39.7042100000', '-86.3994400000'),
(7263110, 7921868, 'US', 'Plainville', NULL, 'plainville', 1, '38.8061600000', '-87.1522300000'),
(7263307, 7921868, 'US', 'Poseyville', NULL, 'poseyville', 1, '38.1700400000', '-87.7830800000'),
(7263391, 7921868, 'US', 'Princes Lakes', NULL, 'princes-lakes', 1, '39.3536600000', '-86.0980500000'),
(7263396, 7921868, 'US', 'Princeton', NULL, 'princeton', 1, '38.3553200000', '-87.5675200000'),
(7263496, 7921868, 'US', 'Raglesville', NULL, 'raglesville', 1, '38.8033800000', '-86.9613900000'),
(7263499, 7921868, 'US', 'Ragsdale', NULL, 'ragsdale', 1, '38.7458800000', '-87.3250200000'),
(7263681, 7921868, 'US', 'Richmond', NULL, 'richmond', 1, '39.8289400000', '-84.8902400000'),
(7263726, 7921868, 'US', 'Riley', NULL, 'riley', 1, '39.3900400000', '-87.3000200000'),
(7263736, 7921868, 'US', 'Rising Sun', NULL, 'rising-sun', 1, '38.9495000000', '-84.8538400000'),
(7263775, 7921868, 'US', 'Roachdale', NULL, 'roachdale', 1, '39.8489300000', '-86.8022300000'),
(7263848, 7921868, 'US', 'Rockport', NULL, 'rockport', 1, '39.8808700000', '-87.2789000000'),
(7263850, 7921868, 'US', 'Rockville', NULL, 'rockville', 1, '39.7625400000', '-87.2291800000'),
(7263863, 7921868, 'US', 'Rocky Ripple', NULL, 'rocky-ripple', 1, '39.8481000000', '-86.1724900000'),
(7263907, 7921868, 'US', 'Rosedale', NULL, 'rosedale', 1, '39.6228200000', '-87.2833500000'),
(7263965, 7921868, 'US', 'Rushville', NULL, 'rushville', 1, '39.6092100000', '-85.4463600000'),
(7263979, 7921868, 'US', 'Russellville', NULL, 'russellville', 1, '39.8583800000', '-86.9839000000'),
(7264058, 7921868, 'US', 'Saint Bernice', NULL, 'saint-bernice', 1, '39.7092000000', '-87.5214100000'),
(7264164, 7921868, 'US', 'Saint Leon', NULL, 'saint-leon', 1, '39.2920000000', '-84.9580100000'),
(7264189, 7921868, 'US', 'Saint Mary-of-the-Woods', NULL, 'saint-mary-of-the-woods', 1, '39.5108700000', '-87.4672400000'),
(7264217, 7921868, 'US', 'Saint Meinrad', NULL, 'saint-meinrad', 1, '38.1711700000', '-86.8091600000'),
(7264243, 7921868, 'US', 'Saint Paul', NULL, 'saint-paul', 1, '39.4281000000', '-85.6283100000'),
(7264334, 7921868, 'US', 'Salem', NULL, 'salem', 1, '38.6056100000', '-86.1010900000'),
(7264387, 7921868, 'US', 'Saltillo', NULL, 'saltillo', 1, '38.6650600000', '-86.2891500000'),
(7264434, 7921868, 'US', 'Sandborn', NULL, 'sandborn', 1, '38.8964300000', '-87.1866800000'),
(7264457, 7921868, 'US', 'Santa Claus', NULL, 'santa-claus', 1, '38.1200500000', '-86.9141600000'),
(7264528, 7921868, 'US', 'Scipio', NULL, 'scipio', 1, '39.0792200000', '-85.7174700000'),
(7264533, 7921868, 'US', 'Scotland', NULL, 'scotland', 1, '38.9128300000', '-86.9038900000'),
(7264555, 7921868, 'US', 'Scottsburg', NULL, 'scottsburg', 1, '38.6856100000', '-85.7702500000'),
(7264592, 7921868, 'US', 'Seelyville', NULL, 'seelyville', 1, '39.4919800000', '-87.2672400000'),
(7264598, 7921868, 'US', 'Sellersburg', NULL, 'sellersburg', 1, '38.3981200000', '-85.7549600000'),
(7264617, 7921868, 'US', 'Seymour', NULL, 'seymour', 1, '38.9592200000', '-85.8902500000'),
(7264688, 7921868, 'US', 'Shelbyville', NULL, 'shelbyville', 1, '39.5214400000', '-85.7769200000'),
(7264696, 7921868, 'US', 'Shelburn', NULL, 'shelburn', 1, '39.1783700000', '-87.3936300000'),
(7264698, 7921868, 'US', 'Shepardsville', NULL, 'shepardsville', 1, '39.6008700000', '-87.4175200000'),
(7264755, 7921868, 'US', 'Shirley', NULL, 'shirley', 1, '39.8919900000', '-85.5769200000'),
(7264771, 7921868, 'US', 'Shoals', NULL, 'shoals', 1, '38.6664400000', '-86.7911100000'),
(7265011, 7921868, 'US', 'Somerville', NULL, 'somerville', 1, '38.2764400000', '-87.3777900000'),
(7265103, 7921868, 'US', 'Southport', NULL, 'southport', 1, '39.6650500000', '-86.1277600000'),
(7265146, 7921868, 'US', 'Speedway', NULL, 'speedway', 1, '39.8022700000', '-86.2672100000'),
(7265147, 7921868, 'US', 'Spencer', NULL, 'spencer', 1, '39.2867100000', '-86.7625100000'),
(7265161, 7921868, 'US', 'Spiceland', NULL, 'spiceland', 1, '39.8383800000', '-85.4388600000'),
(7265187, 7921868, 'US', 'Spring Grove Heights', NULL, 'spring-grove-heights', 1, '39.8433800000', '-84.8924600000'),
(7265191, 7921868, 'US', 'Spring Hills', NULL, 'spring-hills', 1, '39.8361500000', '-86.1936000000'),
(7265195, 7921868, 'US', 'Spring Lake', NULL, 'spring-lake', 1, '39.7767100000', '-85.8530400000'),
(7265204, 7921868, 'US', 'Spring Grove', NULL, 'spring-grove', 1, '39.8483800000', '-84.8941300000'),
(7265236, 7921868, 'US', 'Spurgeon', NULL, 'spurgeon', 1, '38.2522700000', '-87.2572300000'),
(7265316, 7921868, 'US', 'Staunton', NULL, 'staunton', 1, '39.4875400000', '-87.1889100000'),
(7265353, 7921868, 'US', 'Stilesville', NULL, 'stilesville', 1, '39.6383800000', '-86.6336100000'),
(7265360, 7921868, 'US', 'Stinesville', NULL, 'stinesville', 1, '39.2986600000', '-86.6522200000'),
(7265429, 7921868, 'US', 'Straughn', NULL, 'straughn', 1, '39.8089400000', '-85.2913600000'),
(7265507, 7921868, 'US', 'Sullivan', NULL, 'sullivan', 1, '39.0953200000', '-87.4058500000'),
(7265554, 7921868, 'US', 'Sunman', NULL, 'sunman', 1, '39.2370000000', '-85.0946800000'),
(7265623, 7921868, 'US', 'Switz City', NULL, 'switz-city', 1, '39.0350000000', '-87.0530000000'),
(7265703, 7921868, 'US', 'Taylorsville', NULL, 'taylorsville', 1, '39.2958800000', '-85.9508300000'),
(7265717, 7921868, 'US', 'Tell City', NULL, 'tell-city', 1, '37.9514400000', '-86.7677700000'),
(7265726, 7921868, 'US', 'Tecumseh', NULL, 'tecumseh', 1, '39.5630900000', '-87.4216900000'),
(7265731, 7921868, 'US', 'Tennyson', NULL, 'tennyson', 1, '38.0822700000', '-87.1183300000'),
(7265737, 7921868, 'US', 'Terre Haute', NULL, 'terre-haute', 1, '39.4667000000', '-87.4139100000'),
(7265866, 7921868, 'US', 'Toad Hop', NULL, 'toad-hop', 1, '39.4589300000', '-87.4636300000'),
(7265912, 7921868, 'US', 'Trafalgar', NULL, 'trafalgar', 1, '39.4161600000', '-86.1508200000'),
(7266150, 7921868, 'US', 'Universal', NULL, 'universal', 1, '39.6217000000', '-87.4514100000'),
(7266191, 7921868, 'US', 'Utica', NULL, 'utica', 1, '38.3336800000', '-85.6535700000'),
(7266207, 7921868, 'US', 'Vallonia', NULL, 'vallonia', 1, '38.8470000000', '-86.0977600000'),
(7266255, 7921868, 'US', 'Vernon', NULL, 'vernon', 1, '38.9847800000', '-85.6094100000'),
(7266266, 7921868, 'US', 'Versailles', NULL, 'versailles', 1, '39.0720000000', '-85.2519000000'),
(7266278, 7921868, 'US', 'Vevay', NULL, 'vevay', 1, '38.7478400000', '-85.0671700000'),
(7266307, 7921868, 'US', 'Vincennes', NULL, 'vincennes', 1, '38.6772700000', '-87.5286300000'),
(7266490, 7921868, 'US', 'Waldron', NULL, 'waldron', 1, '39.4536600000', '-85.6669200000'),
(7266508, 7921868, 'US', 'Wallace', NULL, 'wallace', 1, '39.9864300000', '-87.1483400000'),
(7266573, 7921868, 'US', 'Warren Park', NULL, 'warren-park', 1, '39.7819900000', '-86.0502600000'),
(7266586, 7921868, 'US', 'Washington', NULL, 'washington', 1, '38.6592200000', '-87.1727900000'),
(7266643, 7921868, 'US', 'Waterloo', NULL, 'waterloo', 1, '39.5625500000', '-86.1974900000'),
(7266659, 7921868, 'US', 'Waveland', NULL, 'waveland', 1, '39.8769900000', '-87.0444500000'),
(7266771, 7921868, 'US', 'West Baden Springs', NULL, 'west-baden-springs', 1, '38.5653300000', '-86.6111000000'),
(7266783, 7921868, 'US', 'West College Corner', NULL, 'west-college-corner', 1, '39.5675500000', '-84.8160700000'),
(7266813, 7921868, 'US', 'West Harrison', NULL, 'west-harrison', 1, '39.2608900000', '-84.8207800000'),
(7266844, 7921868, 'US', 'West Terre Haute', NULL, 'west-terre-haute', 1, '39.4650400000', '-87.4500200000'),
(7266870, 7921868, 'US', 'Westphalia', NULL, 'westphalia', 1, '38.8628200000', '-87.2255700000'),
(7266871, 7921868, 'US', 'Westport', NULL, 'westport', 1, '39.1758900000', '-85.5730300000'),
(7266884, 7921868, 'US', 'Wheatland', NULL, 'wheatland', 1, '38.6636600000', '-87.3094600000'),
(7266960, 7921868, 'US', 'Whiteland', NULL, 'whiteland', 1, '39.5500500000', '-86.0797100000'),
(7266965, 7921868, 'US', 'Whitestown', NULL, 'whitestown', 1, '39.9972600000', '-86.3458300000'),
(7266967, 7921868, 'US', 'Whitewater', NULL, 'whitewater', 1, '39.9447700000', '-84.8310700000'),
(7267019, 7921868, 'US', 'Wilkinson', NULL, 'wilkinson', 1, '39.8858800000', '-85.6088600000'),
(7267042, 7921868, 'US', 'Williams', NULL, 'williams', 1, '38.8044900000', '-86.6472200000'),
(7267057, 7921868, 'US', 'Williams Creek', NULL, 'williams-creek', 1, '39.8997600000', '-86.1502700000'),
(7267138, 7921868, 'US', 'Winslow', NULL, 'winslow', 1, '38.3822700000', '-87.2127900000'),
(7267235, 7921868, 'US', 'Worthington', NULL, 'worthington', 1, '39.1250400000', '-86.9794500000'),
(7267257, 7921868, 'US', 'Wynnedale', NULL, 'wynnedale', 1, '39.8311500000', '-86.1974900000'),
(7267336, 7921868, 'US', 'Zionsville', NULL, 'zionsville', 1, '39.9508700000', '-86.2619400000'),
(7267351, 7273857, 'US', 'Abbyville', NULL, 'abbyville', 1, '37.9708500000', '-98.2042300000'),
(7267354, 7273857, 'US', 'Abilene', NULL, 'abilene', 1, '38.9172200000', '-97.2139100000'),
(7267365, 7273857, 'US', 'City of Abilene', NULL, 'city-of-abilene', 1, '38.9229400000', '-97.2247100000'),
(7267377, 7273857, 'US', 'Ada', NULL, 'ada', 1, '39.1513900000', '-97.8892100000'),
(7267390, 7273857, 'US', 'Admire', NULL, 'admire', 1, '38.6411200000', '-96.1030500000'),
(7267409, 7273857, 'US', 'Agenda', NULL, 'agenda', 1, '39.7077800000', '-97.4317000000'),
(7267415, 7273857, 'US', 'Agra', NULL, 'agra', 1, '39.7616800000', '-99.1192500000'),
(7267459, 7273857, 'US', 'Alden', NULL, 'alden', 1, '38.2422300000', '-98.3120100000'),
(7267463, 7273857, 'US', 'Alexander', NULL, 'alexander', 1, '38.4694600000', '-99.5531700000'),
(7267465, 7273857, 'US', 'Albert', NULL, 'albert', 1, '38.4527900000', '-99.0114800000'),
(7267487, 7273857, 'US', 'Allen', NULL, 'allen', 1, '38.6561200000', '-96.1697200000'),
(7267513, 7273857, 'US', 'Alma', NULL, 'alma', 1, '39.0166700000', '-96.2891600000'),
(7267519, 7273857, 'US', 'Almena', NULL, 'almena', 1, '39.8922300000', '-99.7070600000'),
(7267527, 7273857, 'US', 'Alta Vista', NULL, 'alta-vista', 1, '38.8638900000', '-96.4891700000'),
(7267531, 7273857, 'US', 'Altamont', NULL, 'altamont', 1, '37.1903400000', '-95.2971900000'),
(7267536, 7273857, 'US', 'Alton', NULL, 'alton', 1, '39.4708400000', '-98.9481400000'),
(7267540, 7273857, 'US', 'Altoona', NULL, 'altoona', 1, '37.5239400000', '-95.6613700000'),
(7267553, 7273857, 'US', 'Americus', NULL, 'americus', 1, '38.5069600000', '-96.2619400000'),
(7267567, 7273857, 'US', 'Andale', NULL, 'andale', 1, '37.7905700000', '-97.6294900000'),
(7267594, 7273857, 'US', 'Andover', NULL, 'andover', 1, '37.7139000000', '-97.1364300000'),
(7267605, 7273857, 'US', 'Anthony', NULL, 'anthony', 1, '37.1533600000', '-98.0311700000'),
(7267612, 7273857, 'US', 'City of Anthony', NULL, 'city-of-anthony', 1, '37.1580000000', '-98.0413700000'),
(7267649, 7273857, 'US', 'Arcadia', NULL, 'arcadia', 1, '37.6419900000', '-94.6238500000'),
(7267654, 7273857, 'US', 'Argonia', NULL, 'argonia', 1, '37.2658500000', '-97.7656100000'),
(7267661, 7273857, 'US', 'Arkansas City', NULL, 'arkansas-city', 1, '37.0619700000', '-97.0383700000'),
(7267662, 7273857, 'US', 'City of Arkansas City', NULL, 'city-of-arkansas-city', 1, '37.0725500000', '-97.0385200000'),
(7267665, 7273857, 'US', 'Arlington', NULL, 'arlington', 1, '37.8966800000', '-98.1786700000'),
(7267669, 7273857, 'US', 'Arma', NULL, 'arma', 1, '37.5439400000', '-94.7002400000'),
(7267710, 7273857, 'US', 'Ashland', NULL, 'ashland', 1, '37.1886400000', '-99.7656800000'),
(7267726, 7273857, 'US', 'Assaria', NULL, 'assaria', 1, '38.6802800000', '-97.6044800000'),
(7267733, 7273857, 'US', 'Atchison', NULL, 'atchison', 1, '39.5630500000', '-95.1216400000'),
(7267741, 7273857, 'US', 'City of Atchison', NULL, 'city-of-atchison', 1, '39.5633500000', '-95.1376100000'),
(7267752, 7273857, 'US', 'Athol', NULL, 'athol', 1, '39.7650100000', '-98.9195200000'),
(7267754, 7273857, 'US', 'Atlanta', NULL, 'atlanta', 1, '37.4364100000', '-96.7647500000'),
(7267759, 7273857, 'US', 'Attica', NULL, 'attica', 1, '37.2414100000', '-98.2267400000'),
(7267767, 7273857, 'US', 'Auburn', NULL, 'auburn', 1, '38.9061100000', '-95.8161000000'),
(7267773, 7273857, 'US', 'Augusta', NULL, 'augusta', 1, '37.6866800000', '-96.9767000000'),
(7267782, 7273857, 'US', 'City of Augusta', NULL, 'city-of-augusta', 1, '37.6945700000', '-96.9730900000'),
(7267785, 7273857, 'US', 'Aurora', NULL, 'aurora', 1, '39.4519400000', '-97.5272600000'),
(7267808, 7273857, 'US', 'Axtell', NULL, 'axtell', 1, '39.8716700000', '-96.2589000000'),
(7267814, 7273857, 'US', 'Asherville', NULL, 'asherville', 1, '39.4058400000', '-97.9769900000'),
(7267836, 7273857, 'US', 'Baileyville', NULL, 'baileyville', 1, '39.8444400000', '-96.1850100000'),
(7267866, 7273857, 'US', 'Baldwin City', NULL, 'baldwin-city', 1, '38.7750100000', '-95.1863600000'),
(7267912, 7273857, 'US', 'Barnard', NULL, 'barnard', 1, '39.1905600000', '-98.0419900000'),
(7267913, 7273857, 'US', 'Barnes', NULL, 'barnes', 1, '39.7119500000', '-96.8744700000'),
(7267932, 7273857, 'US', 'Bartlett', NULL, 'bartlett', 1, '37.0547900000', '-95.2108000000'),
(7267944, 7273857, 'US', 'Basehor', NULL, 'basehor', 1, '39.1416700000', '-94.9385800000'),
(7267949, 7273857, 'US', 'Bassett', NULL, 'bassett', 1, '37.9028100000', '-95.4041500000'),
(7267978, 7273857, 'US', 'Baxter Springs', NULL, 'baxter-springs', 1, '37.0236800000', '-94.7355000000'),
(7267982, 7273857, 'US', 'City of Baxter Springs', NULL, 'city-of-baxter-springs', 1, '37.0196300000', '-94.7350500000'),
(7267994, 7273857, 'US', 'Bazine', NULL, 'bazine', 1, '38.4444600000', '-99.6920600000'),
(7268021, 7273857, 'US', 'Beattie', NULL, 'beattie', 1, '39.8611100000', '-96.4197400000'),
(7268056, 7273857, 'US', 'City of Bel Aire', NULL, 'city-of-bel-aire', 1, '37.7748500000', '-97.2456700000'),
(7268079, 7273857, 'US', 'Bellaire', NULL, 'bellaire', 1, '37.7625100000', '-97.2669900000'),
(7268081, 7273857, 'US', 'Belle Plaine', NULL, 'belle-plaine', 1, '37.3939100000', '-97.2811500000'),
(7268091, 7273857, 'US', 'Belleville', NULL, 'belleville', 1, '39.8244500000', '-97.6325400000'),
(7268097, 7273857, 'US', 'City of Belleville', NULL, 'city-of-belleville', 1, '39.8234600000', '-97.6341500000'),
(7268119, 7273857, 'US', 'Beloit', NULL, 'beloit', 1, '39.4561200000', '-98.1061600000'),
(7268122, 7273857, 'US', 'City of Beloit', NULL, 'city-of-beloit', 1, '39.4645200000', '-98.1081800000'),
(7268124, 7273857, 'US', 'Belpre', NULL, 'belpre', 1, '37.9500200000', '-99.1003800000'),
(7268132, 7273857, 'US', 'Belvue', NULL, 'belvue', 1, '39.2166600000', '-96.1780500000'),
(7268140, 7273857, 'US', 'Bendena', NULL, 'bendena', 1, '39.7411100000', '-95.1794200000'),
(7268142, 7273857, 'US', 'Benedict', NULL, 'benedict', 1, '37.6253300000', '-95.7505400000'),
(7268150, 7273857, 'US', 'Bennington', NULL, 'bennington', 1, '39.0305600000', '-97.5942000000'),
(7268156, 7273857, 'US', 'Bentley', NULL, 'bentley', 1, '37.8861200000', '-97.5169900000'),
(7268159, 7273857, 'US', 'Benton', NULL, 'benton', 1, '37.7889000000', '-97.1086500000'),
(7268179, 7273857, 'US', 'Bern', NULL, 'bern', 1, '39.9622200000', '-95.9719400000'),
(7268263, 7273857, 'US', 'Beverly', NULL, 'beverly', 1, '39.0127800000', '-97.9756000000'),
(7268347, 7273857, 'US', 'Bison', NULL, 'bison', 1, '38.5227900000', '-99.1973200000'),
(7268447, 7273857, 'US', 'Blue Mound', NULL, 'blue-mound', 1, '38.0900300000', '-95.0063600000'),
(7268455, 7273857, 'US', 'Blue Rapids', NULL, 'blue-rapids', 1, '39.6819400000', '-96.6597400000'),
(7268475, 7273857, 'US', 'Bluff City', NULL, 'bluff-city', 1, '37.0764100000', '-97.8750600000'),
(7268492, 7273857, 'US', 'Bogue', NULL, 'bogue', 1, '39.3626400000', '-99.6884400000'),
(7268521, 7273857, 'US', 'Bonner Springs', NULL, 'bonner-springs', 1, '39.0597300000', '-94.8835800000'),
(7268526, 7273857, 'US', 'City of Bonner Springs', NULL, 'city-of-bonner-springs', 1, '39.0817500000', '-94.8778300000'),
(7268658, 7273857, 'US', 'Bronson', NULL, 'bronson', 1, '37.8958700000', '-95.0733100000'),
(7268674, 7273857, 'US', 'Brookville', NULL, 'brookville', 1, '38.7750100000', '-97.8683800000'),
(7268704, 7273857, 'US', 'Brownell', NULL, 'brownell', 1, '38.6402900000', '-99.7462300000'),
(7268782, 7273857, 'US', 'Bucklin', NULL, 'bucklin', 1, '37.5472400000', '-99.6342900000'),
(7268790, 7273857, 'US', 'Buffalo', NULL, 'buffalo', 1, '37.7097700000', '-95.6974800000'),
(7268794, 7273857, 'US', 'Bucyrus', NULL, 'bucyrus', 1, '38.7264000000', '-94.7182900000'),
(7268807, 7273857, 'US', 'Buhler', NULL, 'buhler', 1, '38.1344500000', '-97.7700500000'),
(7268826, 7273857, 'US', 'Bunker Hill', NULL, 'bunker-hill', 1, '38.8758400000', '-98.7039700000'),
(7268836, 7273857, 'US', 'Burden', NULL, 'burden', 1, '37.3128000000', '-96.7542000000'),
(7268839, 7273857, 'US', 'Burdett', NULL, 'burdett', 1, '38.1919600000', '-99.5267800000'),
(7268851, 7273857, 'US', 'Burlingame', NULL, 'burlingame', 1, '38.7538900000', '-95.8349900000'),
(7268854, 7273857, 'US', 'Burlington', NULL, 'burlington', 1, '38.1944700000', '-95.7427600000'),
(7268858, 7273857, 'US', 'City of Burlington', NULL, 'city-of-burlington', 1, '38.1931200000', '-95.7452900000'),
(7268862, 7273857, 'US', 'Burns', NULL, 'burns', 1, '38.0903000000', '-96.8864100000'),
(7268867, 7273857, 'US', 'Burr Oak', NULL, 'burr-oak', 1, '39.8661200000', '-98.3050500000'),
(7268886, 7273857, 'US', 'Burrton', NULL, 'burrton', 1, '38.0239000000', '-97.6697700000'),
(7268891, 7273857, 'US', 'Bushong', NULL, 'bushong', 1, '38.6430600000', '-96.2572200000'),
(7268893, 7273857, 'US', 'Bushton', NULL, 'bushton', 1, '38.5125100000', '-98.3953400000'),
(7268928, 7273857, 'US', 'Byers', NULL, 'byers', 1, '37.7875200000', '-98.8670400000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7268940, 7273857, 'US', 'Caldwell', NULL, 'caldwell', 1, '37.0322500000', '-97.6069900000'),
(7268946, 7273857, 'US', 'City of Caldwell', NULL, 'city-of-caldwell', 1, '37.0350000000', '-97.6086600000'),
(7268984, 7273857, 'US', 'Cambridge', NULL, 'cambridge', 1, '37.3161400000', '-96.6644700000'),
(7269043, 7273857, 'US', 'Caney', NULL, 'caney', 1, '37.0114600000', '-95.9352600000'),
(7269047, 7273857, 'US', 'City of Caney', NULL, 'city-of-caney', 1, '37.0136300000', '-95.9318200000'),
(7269054, 7273857, 'US', 'Canton', NULL, 'canton', 1, '38.3861200000', '-97.4280900000'),
(7269076, 7273857, 'US', 'Carbondale', NULL, 'carbondale', 1, '38.8186200000', '-95.6891500000'),
(7269090, 7273857, 'US', 'Carlton', NULL, 'carlton', 1, '38.6872300000', '-97.2933600000'),
(7269140, 7273857, 'US', 'Cassoday', NULL, 'cassoday', 1, '38.0389100000', '-96.6391800000'),
(7269146, 7273857, 'US', 'Catharine', NULL, 'catharine', 1, '38.9272300000', '-99.2167700000'),
(7269169, 7273857, 'US', 'Cedar', NULL, 'cedar', 1, '38.9791700000', '-94.9344100000'),
(7269185, 7273857, 'US', 'Cawker City', NULL, 'cawker-city', 1, '39.5125100000', '-98.4336700000'),
(7269213, 7273857, 'US', 'Cedar Point', NULL, 'cedar-point', 1, '38.2600200000', '-96.8197400000'),
(7269217, 7273857, 'US', 'Cedar Vale', NULL, 'cedar-vale', 1, '37.1042000000', '-96.5000100000'),
(7269365, 7273857, 'US', 'Centralia', NULL, 'centralia', 1, '39.7258300000', '-96.1272200000'),
(7269392, 7273857, 'US', 'Chanute', NULL, 'chanute', 1, '37.6792100000', '-95.4572000000'),
(7269396, 7273857, 'US', 'City of Chanute', NULL, 'city-of-chanute', 1, '37.6699200000', '-95.4618200000'),
(7269401, 7273857, 'US', 'Chapman', NULL, 'chapman', 1, '38.9722200000', '-97.0225100000'),
(7269423, 7273857, 'US', 'Chase', NULL, 'chase', 1, '38.3550100000', '-98.3495100000'),
(7269432, 7273857, 'US', 'Chautauqua', NULL, 'chautauqua', 1, '37.0203400000', '-96.1766600000'),
(7269447, 7273857, 'US', 'Cheney', NULL, 'cheney', 1, '37.6300100000', '-97.7825500000'),
(7269456, 7273857, 'US', 'Cherokee', NULL, 'cherokee', 1, '37.3458900000', '-94.8088500000'),
(7269483, 7273857, 'US', 'Cherryvale', NULL, 'cherryvale', 1, '37.2703400000', '-95.5524800000'),
(7269486, 7273857, 'US', 'City of Cherryvale', NULL, 'city-of-cherryvale', 1, '37.2692400000', '-95.5536500000'),
(7269493, 7273857, 'US', 'Chetopa', NULL, 'chetopa', 1, '37.0372900000', '-95.0899600000'),
(7269496, 7273857, 'US', 'City of Chetopa', NULL, 'city-of-chetopa', 1, '37.0376200000', '-95.0925400000'),
(7269516, 7273857, 'US', 'Chicopee', NULL, 'chicopee', 1, '37.3820000000', '-94.7419100000'),
(7269604, 7273857, 'US', 'Circleville', NULL, 'circleville', 1, '39.5083300000', '-95.8586000000'),
(7269609, 7273857, 'US', 'Claflin', NULL, 'claflin', 1, '38.5250100000', '-98.5336800000'),
(7269641, 7273857, 'US', 'Clay Center', NULL, 'clay-center', 1, '37.5194600000', '-96.7711400000'),
(7269646, 7273857, 'US', 'City of Clay Center', NULL, 'city-of-clay-center', 1, '39.3812300000', '-97.1280300000'),
(7269690, 7273857, 'US', 'Clearwater', NULL, 'clearwater', 1, '37.5028000000', '-97.5044900000'),
(7269723, 7273857, 'US', 'Clifton', NULL, 'clifton', 1, '39.5672200000', '-97.2786400000'),
(7269730, 7273857, 'US', 'Climax', NULL, 'climax', 1, '37.7197500000', '-96.2233300000'),
(7269752, 7273857, 'US', 'Clyde', NULL, 'clyde', 1, '39.5911100000', '-97.3989200000'),
(7269775, 7273857, 'US', 'Coats', NULL, 'coats', 1, '37.5119600000', '-98.8242600000'),
(7269789, 7273857, 'US', 'Coffeyville', NULL, 'coffeyville', 1, '37.0373000000', '-95.6163700000'),
(7269795, 7273857, 'US', 'City of Coffeyville', NULL, 'city-of-coffeyville', 1, '37.0415000000', '-95.6294700000'),
(7269802, 7273857, 'US', 'Coldwater', NULL, 'coldwater', 1, '37.2689100000', '-99.3267800000'),
(7269834, 7273857, 'US', 'Colony', NULL, 'colony', 1, '38.0708600000', '-95.3655400000'),
(7269841, 7273857, 'US', 'Columbus', NULL, 'columbus', 1, '37.1692300000', '-94.8441200000'),
(7269846, 7273857, 'US', 'City of Columbus', NULL, 'city-of-columbus', 1, '37.1722900000', '-94.8441300000'),
(7269847, 7273857, 'US', 'Colwich', NULL, 'colwich', 1, '37.7791800000', '-97.5364400000'),
(7269872, 7273857, 'US', 'Concordia', NULL, 'concordia', 1, '39.5708400000', '-97.6625400000'),
(7269876, 7273857, 'US', 'City of Concordia', NULL, 'city-of-concordia', 1, '39.5669000000', '-97.6471900000'),
(7269887, 7273857, 'US', 'Conway Springs', NULL, 'conway-springs', 1, '37.3903000000', '-97.6422700000'),
(7269950, 7273857, 'US', 'Corning', NULL, 'corning', 1, '39.6572200000', '-96.0294400000'),
(7269988, 7273857, 'US', 'Cottonwood Falls', NULL, 'cottonwood-falls', 1, '38.3722400000', '-96.5427800000'),
(7270001, 7273857, 'US', 'Council Grove', NULL, 'council-grove', 1, '38.6611200000', '-96.4919500000'),
(7270007, 7273857, 'US', 'City of Council Grove', NULL, 'city-of-council-grove', 1, '38.6623700000', '-96.4922800000'),
(7270012, 7273857, 'US', 'Countryside', NULL, 'countryside', 1, '39.0166700000', '-94.6544000000'),
(7270029, 7273857, 'US', 'Courtland', NULL, 'courtland', 1, '39.7814000000', '-97.8928200000'),
(7270069, 7273857, 'US', 'Coyville', NULL, 'coyville', 1, '37.6861500000', '-95.8974900000'),
(7270169, 7273857, 'US', 'Cuba', NULL, 'cuba', 1, '39.8027800000', '-97.4558700000'),
(7270172, 7273857, 'US', 'Cullison', NULL, 'cullison', 1, '37.6305700000', '-98.9053800000'),
(7270173, 7273857, 'US', 'Culver', NULL, 'culver', 1, '38.9708400000', '-97.7589300000'),
(7270179, 7273857, 'US', 'Cunningham', NULL, 'cunningham', 1, '37.6439100000', '-98.4311900000'),
(7270219, 7273857, 'US', 'Damar', NULL, 'damar', 1, '39.3189000000', '-99.5826100000'),
(7270225, 7273857, 'US', 'Danville', NULL, 'danville', 1, '37.2861300000', '-97.8920000000'),
(7270266, 7273857, 'US', 'City of De Soto', NULL, 'city-of-de-soto', 1, '38.9687100000', '-94.9549900000'),
(7270269, 7273857, 'US', 'De Soto', NULL, 'de-soto', 1, '38.9791700000', '-94.9685800000'),
(7270275, 7273857, 'US', 'Dearing', NULL, 'dearing', 1, '37.0586900000', '-95.7133100000'),
(7270331, 7273857, 'US', 'Delia', NULL, 'delia', 1, '39.2405500000', '-95.9669400000'),
(7270338, 7273857, 'US', 'Delphos', NULL, 'delphos', 1, '39.2738900000', '-97.7719800000'),
(7270345, 7273857, 'US', 'Denison', NULL, 'denison', 1, '39.3916600000', '-95.6280400000'),
(7270352, 7273857, 'US', 'Denton', NULL, 'denton', 1, '39.7327800000', '-95.2694200000'),
(7270356, 7273857, 'US', 'Derby', NULL, 'derby', 1, '37.5455700000', '-97.2689300000'),
(7270359, 7273857, 'US', 'Detroit', NULL, 'detroit', 1, '38.9350000000', '-97.1208500000'),
(7270372, 7273857, 'US', 'Dexter', NULL, 'dexter', 1, '37.1772500000', '-96.7144700000'),
(7270444, 7273857, 'US', 'Dorrance', NULL, 'dorrance', 1, '38.8466800000', '-98.5895200000'),
(7270460, 7273857, 'US', 'Douglass', NULL, 'douglass', 1, '37.5194600000', '-97.0128100000'),
(7270472, 7273857, 'US', 'Downs', NULL, 'downs', 1, '39.4986200000', '-98.5420100000'),
(7270587, 7273857, 'US', 'Dunlap', NULL, 'dunlap', 1, '38.5764000000', '-96.3658300000'),
(7270603, 7273857, 'US', 'Durham', NULL, 'durham', 1, '38.4861200000', '-97.2280800000'),
(7270619, 7273857, 'US', 'Dwight', NULL, 'dwight', 1, '38.8444500000', '-96.5933400000'),
(7270638, 7273857, 'US', 'Earlton', NULL, 'earlton', 1, '37.5881100000', '-95.4691500000'),
(7270774, 7273857, 'US', 'Eastborough', NULL, 'eastborough', 1, '37.6880700000', '-97.2636600000'),
(7270781, 7273857, 'US', 'Easton', NULL, 'easton', 1, '39.3450000000', '-95.1158000000'),
(7270819, 7273857, 'US', 'Edgerton', NULL, 'edgerton', 1, '38.7647300000', '-95.0080200000'),
(7270822, 7273857, 'US', 'City of Edgerton', NULL, 'city-of-edgerton', 1, '38.7623400000', '-95.0089100000'),
(7270831, 7273857, 'US', 'Edmond', NULL, 'edmond', 1, '39.6272300000', '-99.8226200000'),
(7270835, 7273857, 'US', 'Edna', NULL, 'edna', 1, '37.0598000000', '-95.3594200000'),
(7270845, 7273857, 'US', 'City of Edwardsville', NULL, 'city-of-edwardsville', 1, '39.0765100000', '-94.8166000000'),
(7270847, 7273857, 'US', 'Edwardsville', NULL, 'edwardsville', 1, '39.0611200000', '-94.8196800000'),
(7270852, 7273857, 'US', 'Effingham', NULL, 'effingham', 1, '39.5222200000', '-95.4008100000'),
(7270863, 7273857, 'US', 'El Dorado', NULL, 'el-dorado', 1, '37.8172400000', '-96.8622500000'),
(7270873, 7273857, 'US', 'City of El Dorado', NULL, 'city-of-el-dorado', 1, '37.8204100000', '-96.8612100000'),
(7270876, 7273857, 'US', 'Elbing', NULL, 'elbing', 1, '38.0527900000', '-97.1278100000'),
(7270889, 7273857, 'US', 'Elgin', NULL, 'elgin', 1, '37.0045000000', '-96.2766600000'),
(7270892, 7273857, 'US', 'Elk City', NULL, 'elk-city', 1, '37.2892300000', '-95.9116500000'),
(7270911, 7273857, 'US', 'Elk Falls', NULL, 'elk-falls', 1, '37.3672600000', '-96.1886000000'),
(7270929, 7273857, 'US', 'Ellinwood', NULL, 'ellinwood', 1, '38.3555700000', '-98.5809100000'),
(7270935, 7273857, 'US', 'City of Ellinwood', NULL, 'city-of-ellinwood', 1, '38.3574900000', '-98.5842200000'),
(7270936, 7273857, 'US', 'Ellis', NULL, 'ellis', 1, '38.9380700000', '-99.5606700000'),
(7270942, 7273857, 'US', 'City of Ellis', NULL, 'city-of-ellis', 1, '38.9348300000', '-99.5568600000'),
(7270945, 7273857, 'US', 'Ellsworth', NULL, 'ellsworth', 1, '38.7305600000', '-98.2281100000'),
(7270951, 7273857, 'US', 'City of Ellsworth', NULL, 'city-of-ellsworth', 1, '38.7328000000', '-98.2284900000'),
(7271003, 7273857, 'US', 'Elmdale', NULL, 'elmdale', 1, '38.3736300000', '-96.6447300000'),
(7271027, 7273857, 'US', 'Elsmore', NULL, 'elsmore', 1, '37.7944900000', '-95.1502600000'),
(7271035, 7273857, 'US', 'Elwood', NULL, 'elwood', 1, '39.7555500000', '-94.8724700000'),
(7271076, 7273857, 'US', 'Emmett', NULL, 'emmett', 1, '39.3072200000', '-96.0561000000'),
(7271086, 7273857, 'US', 'Emporia', NULL, 'emporia', 1, '38.4039000000', '-96.1816600000'),
(7271097, 7273857, 'US', 'City of Emporia', NULL, 'city-of-emporia', 1, '38.4022700000', '-96.1922900000'),
(7271103, 7273857, 'US', 'Englewood', NULL, 'englewood', 1, '37.0383600000', '-99.9834700000'),
(7271111, 7273857, 'US', 'Enterprise', NULL, 'enterprise', 1, '38.9027800000', '-97.1169600000'),
(7271131, 7273857, 'US', 'Erie', NULL, 'erie', 1, '37.5681100000', '-95.2433100000'),
(7271138, 7273857, 'US', 'Esbon', NULL, 'esbon', 1, '39.8222300000', '-98.4358900000'),
(7271144, 7273857, 'US', 'Eskridge', NULL, 'eskridge', 1, '38.8588900000', '-96.1091600000'),
(7271159, 7273857, 'US', 'Eureka', NULL, 'eureka', 1, '37.8239200000', '-96.2891700000'),
(7271179, 7273857, 'US', 'City of Eureka', NULL, 'city-of-eureka', 1, '37.8260700000', '-96.2888200000'),
(7271196, 7273857, 'US', 'Eudora', NULL, 'eudora', 1, '38.9433400000', '-95.0985800000'),
(7271199, 7273857, 'US', 'Everest', NULL, 'everest', 1, '39.6772200000', '-95.4247000000'),
(7271277, 7273857, 'US', 'Fairview', NULL, 'fairview', 1, '39.8411100000', '-95.7280400000'),
(7271358, 7273857, 'US', 'Fairway', NULL, 'fairway', 1, '39.0222300000', '-94.6319000000'),
(7271360, 7273857, 'US', 'City of Fairway', NULL, 'city-of-fairway', 1, '39.0244000000', '-94.6287300000'),
(7271378, 7273857, 'US', 'Fall River', NULL, 'fall-river', 1, '37.6078200000', '-96.0280400000'),
(7271388, 7273857, 'US', 'Falun', NULL, 'falun', 1, '38.6711200000', '-97.7594900000'),
(7271623, 7273857, 'US', 'Florence', NULL, 'florence', 1, '38.2444600000', '-96.9280800000'),
(7271625, 7273857, 'US', 'City of Florence', NULL, 'city-of-florence', 1, '38.2431700000', '-96.9292900000'),
(7271643, 7273857, 'US', 'Fontana', NULL, 'fontana', 1, '38.4258500000', '-94.8382900000'),
(7271647, 7273857, 'US', 'Ford', NULL, 'ford', 1, '37.6361300000', '-99.7540200000'),
(7271670, 7273857, 'US', 'Formoso', NULL, 'formoso', 1, '39.7800100000', '-97.9922700000'),
(7271678, 7273857, 'US', 'Fort Dodge', NULL, 'fort-dodge', 1, '37.7319600000', '-99.9354100000'),
(7271690, 7273857, 'US', 'Fort Scott', NULL, 'fort-scott', 1, '37.8397600000', '-94.7083000000'),
(7271699, 7273857, 'US', 'City of Fort Scott', NULL, 'city-of-fort-scott', 1, '37.8286300000', '-94.7037400000'),
(7271764, 7273857, 'US', 'Frankfort', NULL, 'frankfort', 1, '39.7055500000', '-96.4169600000'),
(7271766, 7273857, 'US', 'Franklin', NULL, 'franklin', 1, '37.5264400000', '-94.7058000000'),
(7271794, 7273857, 'US', 'Frederick', NULL, 'frederick', 1, '38.5133400000', '-98.2683900000'),
(7271796, 7273857, 'US', 'Fredonia', NULL, 'fredonia', 1, '37.5339400000', '-95.8266500000'),
(7271802, 7273857, 'US', 'City of Fredonia', NULL, 'city-of-fredonia', 1, '37.5329300000', '-95.8227200000'),
(7271816, 7273857, 'US', 'Freeport', NULL, 'freeport', 1, '37.1986300000', '-97.8570000000'),
(7271869, 7273857, 'US', 'City of Frontenac', NULL, 'city-of-frontenac', 1, '37.4583800000', '-94.7015500000'),
(7271884, 7273857, 'US', 'Fulton', NULL, 'fulton', 1, '38.0100400000', '-94.7196800000'),
(7271899, 7273857, 'US', 'Galatia', NULL, 'galatia', 1, '38.6416800000', '-98.9587000000'),
(7271901, 7273857, 'US', 'Galena', NULL, 'galena', 1, '37.0759000000', '-94.6396700000'),
(7271905, 7273857, 'US', 'City of Galena', NULL, 'city-of-galena', 1, '37.0752100000', '-94.6351900000'),
(7271906, 7273857, 'US', 'Galesburg', NULL, 'galesburg', 1, '37.4736700000', '-95.3585900000'),
(7271915, 7273857, 'US', 'Galva', NULL, 'galva', 1, '38.3819500000', '-97.5375400000'),
(7271918, 7273857, 'US', 'Frontenac', NULL, 'frontenac', 1, '37.4556000000', '-94.6891300000'),
(7271935, 7273857, 'US', 'Gardner', NULL, 'gardner', 1, '38.8108400000', '-94.9271900000'),
(7271942, 7273857, 'US', 'City of Gardner', NULL, 'city-of-gardner', 1, '38.8162900000', '-94.9297100000'),
(7271945, 7273857, 'US', 'Garden Plain', NULL, 'garden-plain', 1, '37.6583500000', '-97.6836600000'),
(7271974, 7273857, 'US', 'Garnett', NULL, 'garnett', 1, '38.2805800000', '-95.2419200000'),
(7271979, 7273857, 'US', 'City of Garnett', NULL, 'city-of-garnett', 1, '38.2844100000', '-95.2404800000'),
(7271990, 7273857, 'US', 'Gas', NULL, 'gas', 1, '37.9236500000', '-95.3460900000'),
(7271998, 7273857, 'US', 'Gaylord', NULL, 'gaylord', 1, '39.6439000000', '-98.8475800000'),
(7272013, 7273857, 'US', 'Garfield', NULL, 'garfield', 1, '38.0777900000', '-99.2448300000'),
(7272037, 7273857, 'US', 'Geuda Springs', NULL, 'geuda-springs', 1, '37.1141900000', '-97.1492100000'),
(7272057, 7273857, 'US', 'Geneseo', NULL, 'geneseo', 1, '38.5161200000', '-98.1567200000'),
(7272061, 7273857, 'US', 'Girard', NULL, 'girard', 1, '37.5111600000', '-94.8380200000'),
(7272064, 7273857, 'US', 'City of Girard', NULL, 'city-of-girard', 1, '37.5091500000', '-94.8457600000'),
(7272072, 7273857, 'US', 'Glade', NULL, 'glade', 1, '39.6847300000', '-99.3098200000'),
(7272075, 7273857, 'US', 'Glasco', NULL, 'glasco', 1, '39.3566700000', '-97.8411500000'),
(7272079, 7273857, 'US', 'Glen Elder', NULL, 'glen-elder', 1, '39.4986200000', '-98.3086700000'),
(7272133, 7273857, 'US', 'Goddard', NULL, 'goddard', 1, '37.6597400000', '-97.5753300000'),
(7272143, 7273857, 'US', 'Goessel', NULL, 'goessel', 1, '38.2464000000', '-97.3489200000'),
(7272147, 7273857, 'US', 'Goff', NULL, 'goff', 1, '39.6638900000', '-95.9322200000'),
(7272190, 7273857, 'US', 'Gorham', NULL, 'gorham', 1, '38.8816800000', '-99.0231500000'),
(7272273, 7273857, 'US', 'Grandview Plaza', NULL, 'grandview-plaza', 1, '39.0291600000', '-96.7891700000'),
(7272321, 7273857, 'US', 'Grantville', NULL, 'grantville', 1, '39.0833300000', '-95.5613700000'),
(7272340, 7273857, 'US', 'Great Bend', NULL, 'great-bend', 1, '38.3644600000', '-98.7648100000'),
(7272349, 7273857, 'US', 'City of Great Bend', NULL, 'city-of-great-bend', 1, '38.3591800000', '-98.8007000000'),
(7272358, 7273857, 'US', 'Green', NULL, 'green', 1, '39.4277800000', '-97.0019600000'),
(7272369, 7273857, 'US', 'Greeley', NULL, 'greeley', 1, '38.3666900000', '-95.1269200000'),
(7272407, 7273857, 'US', 'Greenleaf', NULL, 'greenleaf', 1, '39.7283400000', '-96.9761300000'),
(7272411, 7273857, 'US', 'Greensburg', NULL, 'greensburg', 1, '37.6028000000', '-99.2926100000'),
(7272452, 7273857, 'US', 'Grenola', NULL, 'grenola', 1, '37.3486400000', '-96.4505600000'),
(7272456, 7273857, 'US', 'Gridley', NULL, 'gridley', 1, '38.0978000000', '-95.8836000000'),
(7272508, 7273857, 'US', 'Gypsum', NULL, 'gypsum', 1, '38.7055600000', '-97.4280900000'),
(7272524, 7273857, 'US', 'Haddam', NULL, 'haddam', 1, '39.8569500000', '-97.3017000000'),
(7272558, 7273857, 'US', 'Halstead', NULL, 'halstead', 1, '38.0014000000', '-97.5086500000'),
(7272570, 7273857, 'US', 'City of Halstead', NULL, 'city-of-halstead', 1, '37.9998100000', '-97.5101900000'),
(7272573, 7273857, 'US', 'Hamilton', NULL, 'hamilton', 1, '37.9794700000', '-96.1641600000'),
(7272579, 7273857, 'US', 'Hamlin', NULL, 'hamlin', 1, '39.9161100000', '-95.6280400000'),
(7272600, 7273857, 'US', 'Hanover', NULL, 'hanover', 1, '39.8938900000', '-96.8794700000'),
(7272614, 7273857, 'US', 'Hanston', NULL, 'hanston', 1, '38.1219600000', '-99.7129000000'),
(7272627, 7273857, 'US', 'Hardtner', NULL, 'hardtner', 1, '37.0139200000', '-98.6495300000'),
(7272660, 7273857, 'US', 'Harper', NULL, 'harper', 1, '37.2866900000', '-98.0258900000'),
(7272673, 7273857, 'US', 'Harris', NULL, 'harris', 1, '38.3194600000', '-95.4363700000'),
(7272675, 7273857, 'US', 'City of Harper', NULL, 'city-of-harper', 1, '37.2851000000', '-98.0276700000'),
(7272699, 7273857, 'US', 'Hartford', NULL, 'hartford', 1, '38.3083500000', '-95.9558200000'),
(7272714, 7273857, 'US', 'Harveyville', NULL, 'harveyville', 1, '38.7900100000', '-95.9616600000'),
(7272727, 7273857, 'US', 'Haven', NULL, 'haven', 1, '37.8989000000', '-97.7828300000'),
(7272735, 7273857, 'US', 'Havensville', NULL, 'havensville', 1, '39.5111100000', '-96.0780500000'),
(7272741, 7273857, 'US', 'Haviland', NULL, 'haviland', 1, '37.6194600000', '-99.1065000000'),
(7272763, 7273857, 'US', 'Havana', NULL, 'havana', 1, '37.0917300000', '-95.9419300000'),
(7272782, 7273857, 'US', 'Hays', NULL, 'hays', 1, '38.8791800000', '-99.3267700000'),
(7272787, 7273857, 'US', 'City of Hays', NULL, 'city-of-hays', 1, '38.8804200000', '-99.3210900000'),
(7272788, 7273857, 'US', 'Haysville', NULL, 'haysville', 1, '37.5644600000', '-97.3522700000'),
(7272798, 7273857, 'US', 'Hazelton', NULL, 'hazelton', 1, '37.0903000000', '-98.3984100000'),
(7272839, 7273857, 'US', 'Hepler', NULL, 'hepler', 1, '37.6611600000', '-94.9683000000'),
(7272840, 7273857, 'US', 'Herington', NULL, 'herington', 1, '38.6711200000', '-96.9425100000'),
(7272845, 7273857, 'US', 'City of Herington', NULL, 'city-of-herington', 1, '38.6974100000', '-96.8020300000'),
(7272861, 7273857, 'US', 'Hesston', NULL, 'hesston', 1, '38.1383400000', '-97.4314300000'),
(7272873, 7273857, 'US', 'Hiawatha', NULL, 'hiawatha', 1, '39.8525000000', '-95.5358200000'),
(7272878, 7273857, 'US', 'City of Hiawatha', NULL, 'city-of-hiawatha', 1, '39.8514800000', '-95.5380300000'),
(7272914, 7273857, 'US', 'Highland', NULL, 'highland', 1, '39.8597200000', '-95.2697000000'),
(7272980, 7273857, 'US', 'Hill City', NULL, 'hill-city', 1, '39.3647300000', '-99.8420600000'),
(7273003, 7273857, 'US', 'Hillsboro', NULL, 'hillsboro', 1, '38.3519600000', '-97.2044700000'),
(7273009, 7273857, 'US', 'City of Hillsboro', NULL, 'city-of-hillsboro', 1, '38.3522700000', '-97.1993800000'),
(7273010, 7273857, 'US', 'Hillsdale', NULL, 'hillsdale', 1, '38.6597300000', '-94.8502400000'),
(7273066, 7273857, 'US', 'Hoisington', NULL, 'hoisington', 1, '38.5180700000', '-98.7781400000'),
(7273068, 7273857, 'US', 'City of Hoisington', NULL, 'city-of-hoisington', 1, '38.5179400000', '-98.7776200000'),
(7273076, 7273857, 'US', 'Hollenberg', NULL, 'hollenberg', 1, '39.9805600000', '-96.9922500000'),
(7273096, 7273857, 'US', 'Holton', NULL, 'holton', 1, '39.4652700000', '-95.7363700000'),
(7273101, 7273857, 'US', 'City of Holton', NULL, 'city-of-holton', 1, '39.4700000000', '-95.7319000000'),
(7273124, 7273857, 'US', 'Holyrood', NULL, 'holyrood', 1, '38.5869500000', '-98.4111800000'),
(7273127, 7273857, 'US', 'Home', NULL, 'home', 1, '39.8416700000', '-96.5197400000'),
(7273170, 7273857, 'US', 'Hope', NULL, 'hope', 1, '38.6902800000', '-97.0766800000'),
(7273211, 7273857, 'US', 'Horton', NULL, 'horton', 1, '39.6605600000', '-95.5263700000'),
(7273216, 7273857, 'US', 'City of Horton', NULL, 'city-of-horton', 1, '39.6629100000', '-95.5322300000'),
(7273226, 7273857, 'US', 'Howard', NULL, 'howard', 1, '37.4703100000', '-96.2636100000'),
(7273237, 7273857, 'US', 'Hoyt', NULL, 'hoyt', 1, '39.2477700000', '-95.7063700000'),
(7273244, 7273857, 'US', 'Hudson', NULL, 'hudson', 1, '38.1055700000', '-98.6600800000'),
(7273255, 7273857, 'US', 'Humboldt', NULL, 'humboldt', 1, '37.8106000000', '-95.4369300000'),
(7273262, 7273857, 'US', 'City of Humboldt', NULL, 'city-of-humboldt', 1, '37.8116700000', '-95.4371100000'),
(7273278, 7273857, 'US', 'Hunter', NULL, 'hunter', 1, '39.2341800000', '-98.3972800000'),
(7273282, 7273857, 'US', 'Hunnewell', NULL, 'hunnewell', 1, '37.0050300000', '-97.4047700000'),
(7273292, 7273857, 'US', 'Huron', NULL, 'huron', 1, '39.6383300000', '-95.3516400000'),
(7273299, 7273857, 'US', 'Hutchinson', NULL, 'hutchinson', 1, '38.0608400000', '-97.9297700000'),
(7273306, 7273857, 'US', 'City of Hutchinson', NULL, 'city-of-hutchinson', 1, '38.0681300000', '-97.9112700000'),
(7273359, 7273857, 'US', 'Independence', NULL, 'independence', 1, '37.2242400000', '-95.7083100000'),
(7273376, 7273857, 'US', 'City of Independence', NULL, 'city-of-independence', 1, '37.2254900000', '-95.7193300000'),
(7273430, 7273857, 'US', 'Inman', NULL, 'inman', 1, '38.2319500000', '-97.7733800000'),
(7273441, 7273857, 'US', 'Iola', NULL, 'iola', 1, '37.9244800000', '-95.3999800000'),
(7273453, 7273857, 'US', 'City of Iola', NULL, 'city-of-iola', 1, '37.9274200000', '-95.4005600000'),
(7273484, 7273857, 'US', 'Isabel', NULL, 'isabel', 1, '37.4666900000', '-98.5503600000'),
(7273497, 7273857, 'US', 'Iuka', NULL, 'iuka', 1, '37.7291800000', '-98.7350900000'),
(7273545, 7273857, 'US', 'Jamestown', NULL, 'jamestown', 1, '39.5994500000', '-97.8611500000'),
(7273603, 7273857, 'US', 'Jewell', NULL, 'jewell', 1, '39.6714000000', '-98.1536600000'),
(7273616, 7273857, 'US', 'Jetmore', NULL, 'jetmore', 1, '38.0844600000', '-99.8934600000'),
(7273680, 7273857, 'US', 'Junction City', NULL, 'junction-city', 1, '39.0286100000', '-96.8314000000'),
(7273824, 7273857, 'US', 'Kanopolis', NULL, 'kanopolis', 1, '38.7111200000', '-98.1572800000'),
(7273836, 7273857, 'US', 'City of Kansas City', NULL, 'city-of-kansas-city', 1, '39.1234600000', '-94.7441900000'),
(7273837, 7273857, 'US', 'Kansas City', NULL, 'kansas-city', 1, '39.1141700000', '-94.6274600000'),
(7273850, 7273857, 'US', 'City of Junction City', NULL, 'city-of-junction-city', 1, '39.0268100000', '-96.8494400000'),
(7273881, 7273857, 'US', 'Kechi', NULL, 'kechi', 1, '37.7958500000', '-97.2794900000'),
(7273927, 7273857, 'US', 'Kensington', NULL, 'kensington', 1, '39.7669600000', '-99.0317500000'),
(7273965, 7273857, 'US', 'Kincaid', NULL, 'kincaid', 1, '38.0842000000', '-95.1535900000'),
(7273978, 7273857, 'US', 'Kingman', NULL, 'kingman', 1, '37.6458500000', '-98.1136700000'),
(7273986, 7273857, 'US', 'City of Kingman', NULL, 'city-of-kingman', 1, '37.6475200000', '-98.1159800000'),
(7273993, 7273857, 'US', 'Kinsley', NULL, 'kinsley', 1, '37.9230700000', '-99.4098400000'),
(7273996, 7273857, 'US', 'City of Kinsley', NULL, 'city-of-kinsley', 1, '37.9224000000', '-99.4113800000'),
(7273999, 7273857, 'US', 'Kiowa', NULL, 'kiowa', 1, '37.0172500000', '-98.4853500000'),
(7274008, 7273857, 'US', 'Kipp', NULL, 'kipp', 1, '38.7838900000', '-97.4544700000'),
(7274013, 7273857, 'US', 'Kirwin', NULL, 'kirwin', 1, '39.6730700000', '-99.1223100000'),
(7274067, 7273857, 'US', 'La Crosse', NULL, 'la-crosse', 1, '38.5314000000', '-99.3087200000'),
(7274070, 7273857, 'US', 'La Cygne', NULL, 'la-cygne', 1, '38.3500200000', '-94.7613500000'),
(7274077, 7273857, 'US', 'La Harpe', NULL, 'la-harpe', 1, '37.9169800000', '-95.2991500000'),
(7274080, 7273857, 'US', 'City of La Harpe', NULL, 'city-of-la-harpe', 1, '37.9169400000', '-95.3025200000'),
(7274092, 7273857, 'US', 'Labette', NULL, 'labette', 1, '37.2306200000', '-95.1835800000'),
(7274152, 7273857, 'US', 'Lake Quivira', NULL, 'lake-quivira', 1, '39.0402800000', '-94.7766300000'),
(7274154, 7273857, 'US', 'City of Lake Quivira', NULL, 'city-of-lake-quivira', 1, '39.0387500000', '-94.7687200000'),
(7274205, 7273857, 'US', 'Lancaster', NULL, 'lancaster', 1, '39.5727800000', '-95.3027500000'),
(7274213, 7273857, 'US', 'Lane', NULL, 'lane', 1, '38.4397400000', '-95.0821900000'),
(7274225, 7273857, 'US', 'Langdon', NULL, 'langdon', 1, '37.8539000000', '-98.3245100000'),
(7274236, 7273857, 'US', 'Lansing', NULL, 'lansing', 1, '39.2486100000', '-94.9002400000'),
(7274239, 7273857, 'US', 'City of Lansing', NULL, 'city-of-lansing', 1, '39.2434300000', '-94.8980800000'),
(7274249, 7273857, 'US', 'Larned', NULL, 'larned', 1, '38.1805700000', '-99.0987100000'),
(7274255, 7273857, 'US', 'City of Larned', NULL, 'city-of-larned', 1, '38.1831100000', '-99.1011600000'),
(7274264, 7273857, 'US', 'Latham', NULL, 'latham', 1, '37.5361300000', '-96.6419700000'),
(7274267, 7273857, 'US', 'Latimer', NULL, 'latimer', 1, '38.7388900000', '-96.8455700000'),
(7274277, 7273857, 'US', 'Lawrence', NULL, 'lawrence', 1, '38.9716700000', '-95.2352500000'),
(7274287, 7273857, 'US', 'City of Lawrence', NULL, 'city-of-lawrence', 1, '38.9600900000', '-95.2630700000'),
(7274295, 7273857, 'US', 'LeRoy', NULL, 'leroy', 1, '38.0839200000', '-95.6344300000'),
(7274305, 7273857, 'US', 'Leavenworth', NULL, 'leavenworth', 1, '39.3111100000', '-94.9224600000'),
(7274315, 7273857, 'US', 'City of Leavenworth', NULL, 'city-of-leavenworth', 1, '39.3223700000', '-94.9245800000'),
(7274317, 7273857, 'US', 'Leawood', NULL, 'leawood', 1, '38.9666700000', '-94.6169000000'),
(7274320, 7273857, 'US', 'City of Leawood', NULL, 'city-of-leawood', 1, '38.9075700000', '-94.6258300000'),
(7274327, 7273857, 'US', 'Lebo', NULL, 'lebo', 1, '38.4166800000', '-95.8530400000'),
(7274331, 7273857, 'US', 'Lecompton', NULL, 'lecompton', 1, '39.0444400000', '-95.3947000000'),
(7274343, 7273857, 'US', 'Lehigh', NULL, 'lehigh', 1, '38.3727900000', '-97.3030900000'),
(7274356, 7273857, 'US', 'Lenexa', NULL, 'lenexa', 1, '38.9536200000', '-94.7335700000'),
(7274359, 7273857, 'US', 'City of Lenexa', NULL, 'city-of-lenexa', 1, '38.9608300000', '-94.8019800000'),
(7274363, 7273857, 'US', 'Leon', NULL, 'leon', 1, '37.6903000000', '-96.7822500000'),
(7274367, 7273857, 'US', 'Leona', NULL, 'leona', 1, '39.7872200000', '-95.3216400000'),
(7274369, 7273857, 'US', 'Leonardville', NULL, 'leonardville', 1, '39.3644400000', '-96.8589000000'),
(7274378, 7273857, 'US', 'Lebanon', NULL, 'lebanon', 1, '39.8097300000', '-98.5556200000'),
(7274379, 7273857, 'US', 'Lewis', NULL, 'lewis', 1, '37.9361300000', '-99.2526100000'),
(7274389, 7273857, 'US', 'Liberty', NULL, 'liberty', 1, '37.1556300000', '-95.5947000000'),
(7274430, 7273857, 'US', 'Liebenthal', NULL, 'liebenthal', 1, '38.6550100000', '-99.3192700000'),
(7274450, 7273857, 'US', 'Lincoln', NULL, 'lincoln', 1, '39.0408400000', '-98.1447700000'),
(7274517, 7273857, 'US', 'Lincolnville', NULL, 'lincolnville', 1, '38.4933500000', '-96.9600200000'),
(7274529, 7273857, 'US', 'City of Lindsborg', NULL, 'city-of-lindsborg', 1, '38.5766100000', '-97.6743900000'),
(7274532, 7273857, 'US', 'Lindsborg', NULL, 'lindsborg', 1, '38.5736200000', '-97.6744800000'),
(7274535, 7273857, 'US', 'Linn', NULL, 'linn', 1, '39.6800000000', '-97.0841900000'),
(7274541, 7273857, 'US', 'Linn Valley', NULL, 'linn-valley', 1, '38.3775200000', '-94.7094000000'),
(7274547, 7273857, 'US', 'Linwood', NULL, 'linwood', 1, '39.0013900000', '-95.0391400000'),
(7274627, 7273857, 'US', 'Little River', NULL, 'little-river', 1, '38.3980700000', '-98.0120000000'),
(7274715, 7273857, 'US', 'Logan', NULL, 'logan', 1, '39.6616700000', '-99.5703900000'),
(7274724, 7273857, 'US', 'Lone Elm', NULL, 'lone-elm', 1, '38.0800300000', '-95.2433100000'),
(7274772, 7273857, 'US', 'Long Island', NULL, 'long-island', 1, '39.9494500000', '-99.5359400000'),
(7274781, 7273857, 'US', 'Longford', NULL, 'longford', 1, '39.1700000000', '-97.3314100000'),
(7274784, 7273857, 'US', 'Longton', NULL, 'longton', 1, '37.3778200000', '-96.0808200000'),
(7274801, 7273857, 'US', 'Lorraine', NULL, 'lorraine', 1, '38.5689000000', '-98.3167300000'),
(7274825, 7273857, 'US', 'Lost Springs', NULL, 'lost-springs', 1, '38.5661200000', '-96.9664000000'),
(7274828, 7273857, 'US', 'Louisburg', NULL, 'louisburg', 1, '38.6194600000', '-94.6807900000'),
(7274833, 7273857, 'US', 'City of Louisburg', NULL, 'city-of-louisburg', 1, '38.6188800000', '-94.6785900000'),
(7274836, 7273857, 'US', 'Louisville', NULL, 'louisville', 1, '39.2502700000', '-96.3147200000'),
(7274847, 7273857, 'US', 'Lowell', NULL, 'lowell', 1, '37.0486700000', '-94.7016200000'),
(7274867, 7273857, 'US', 'Lucas', NULL, 'lucas', 1, '39.0561200000', '-98.5364600000'),
(7274886, 7273857, 'US', 'Luray', NULL, 'luray', 1, '39.1105700000', '-98.6889600000'),
(7274906, 7273857, 'US', 'Lyndon', NULL, 'lyndon', 1, '38.6100100000', '-95.6844300000'),
(7274927, 7273857, 'US', 'Lyons', NULL, 'lyons', 1, '38.3450100000', '-98.2017300000'),
(7274936, 7273857, 'US', 'City of Lyons', NULL, 'city-of-lyons', 1, '38.3464300000', '-98.2042200000'),
(7274948, 7273857, 'US', 'Macksville', NULL, 'macksville', 1, '37.9591800000', '-98.9687100000'),
(7274955, 7273857, 'US', 'Madison', NULL, 'madison', 1, '38.1355800000', '-96.1358300000'),
(7274975, 7273857, 'US', 'Mahaska', NULL, 'mahaska', 1, '39.9875000000', '-97.3542100000'),
(7274980, 7273857, 'US', 'Maize', NULL, 'maize', 1, '37.7791800000', '-97.4672700000'),
(7274993, 7273857, 'US', 'Manchester', NULL, 'manchester', 1, '39.0947200000', '-97.3247500000'),
(7274994, 7273857, 'US', 'Manhattan', NULL, 'manhattan', 1, '39.1836100000', '-96.5716700000'),
(7275000, 7273857, 'US', 'City of Manhattan', NULL, 'city-of-manhattan', 1, '39.1877700000', '-96.6046200000'),
(7275004, 7273857, 'US', 'Mankato', NULL, 'mankato', 1, '39.7872300000', '-98.2100500000'),
(7275041, 7273857, 'US', 'Maple Hill', NULL, 'maple-hill', 1, '39.0847200000', '-96.0280500000'),
(7275049, 7273857, 'US', 'Mapleton', NULL, 'mapleton', 1, '38.0150300000', '-94.8835800000'),
(7275070, 7273857, 'US', 'Marion', NULL, 'marion', 1, '38.3483500000', '-97.0172500000'),
(7275086, 7273857, 'US', 'City of Marion', NULL, 'city-of-marion', 1, '38.3538000000', '-97.0082000000'),
(7275100, 7273857, 'US', 'Marquette', NULL, 'marquette', 1, '38.5555600000', '-97.8336600000'),
(7275144, 7273857, 'US', 'Marysville', NULL, 'marysville', 1, '39.8411100000', '-96.6472400000'),
(7275149, 7273857, 'US', 'City of Marysville', NULL, 'city-of-marysville', 1, '39.8430600000', '-96.6388800000'),
(7275159, 7273857, 'US', 'Matfield Green', NULL, 'matfield-green', 1, '38.1591800000', '-96.5605700000'),
(7275185, 7273857, 'US', 'Mayetta', NULL, 'mayetta', 1, '39.3388900000', '-95.7224800000'),
(7275188, 7273857, 'US', 'Mayfield', NULL, 'mayfield', 1, '37.2583500000', '-97.5447700000'),
(7275218, 7273857, 'US', 'McCracken', NULL, 'mccracken', 1, '38.5805700000', '-99.5712200000'),
(7275221, 7273857, 'US', 'McCune', NULL, 'mccune', 1, '37.3547800000', '-95.0166300000'),
(7275239, 7273857, 'US', 'McFarland', NULL, 'mcfarland', 1, '39.0527800000', '-96.2377700000'),
(7275255, 7273857, 'US', 'McLouth', NULL, 'mclouth', 1, '39.1958300000', '-95.2083000000'),
(7275261, 7273857, 'US', 'McPherson', NULL, 'mcpherson', 1, '38.3708400000', '-97.6642100000'),
(7275276, 7273857, 'US', 'City of McPherson', NULL, 'city-of-mcpherson', 1, '38.3712300000', '-97.6610400000'),
(7275315, 7273857, 'US', 'Medicine Lodge', NULL, 'medicine-lodge', 1, '37.2811300000', '-98.5803600000'),
(7275331, 7273857, 'US', 'Melvern', NULL, 'melvern', 1, '38.5069600000', '-95.6377600000'),
(7275385, 7273857, 'US', 'Meriden', NULL, 'meriden', 1, '39.1888900000', '-95.5697000000'),
(7275393, 7273857, 'US', 'Merriam', NULL, 'merriam', 1, '39.0236200000', '-94.6935700000'),
(7275395, 7273857, 'US', 'City of Merriam', NULL, 'city-of-merriam', 1, '39.0186100000', '-94.6934200000'),
(7275500, 7273857, 'US', 'Milan', NULL, 'milan', 1, '37.2597400000', '-97.6739400000'),
(7275506, 7273857, 'US', 'Mildred', NULL, 'mildred', 1, '38.0236400000', '-95.1710900000'),
(7275511, 7273857, 'US', 'Milford', NULL, 'milford', 1, '39.1683300000', '-96.9125100000'),
(7275558, 7273857, 'US', 'Milton', NULL, 'milton', 1, '37.4316900000', '-97.7714400000'),
(7275562, 7273857, 'US', 'Miltonvale', NULL, 'miltonvale', 1, '39.3483300000', '-97.4461400000'),
(7275586, 7273857, 'US', 'Minneapolis', NULL, 'minneapolis', 1, '39.1219400000', '-97.7067000000'),
(7275589, 7273857, 'US', 'City of Minneapolis', NULL, 'city-of-minneapolis', 1, '39.1244400000', '-97.6999500000'),
(7275600, 7273857, 'US', 'Mission', NULL, 'mission', 1, '39.0277800000', '-94.6557900000'),
(7275614, 7273857, 'US', 'Mission Hills', NULL, 'mission-hills', 1, '39.0177800000', '-94.6169000000'),
(7275616, 7273857, 'US', 'City of Mission Hills', NULL, 'city-of-mission-hills', 1, '39.0139100000', '-94.6171200000'),
(7275625, 7273857, 'US', 'Mission Woods', NULL, 'mission-woods', 1, '39.0350100000', '-94.6085700000'),
(7275626, 7273857, 'US', 'City of Mission Woods', NULL, 'city-of-mission-woods', 1, '39.0337200000', '-94.6109100000'),
(7275627, 7273857, 'US', 'City of Mission', NULL, 'city-of-mission', 1, '39.0269400000', '-94.6568200000'),
(7275652, 7273857, 'US', 'Moline', NULL, 'moline', 1, '37.3603100000', '-96.3038900000'),
(7275714, 7273857, 'US', 'Moran', NULL, 'moran', 1, '37.9161500000', '-95.1702500000'),
(7275728, 7273857, 'US', 'Morganville', NULL, 'morganville', 1, '39.4663900000', '-97.2019700000'),
(7275737, 7273857, 'US', 'Morrill', NULL, 'morrill', 1, '39.9283300000', '-95.6919300000'),
(7275753, 7273857, 'US', 'Morrowville', NULL, 'morrowville', 1, '39.8444500000', '-97.1717000000'),
(7275784, 7273857, 'US', 'Mound City', NULL, 'mound-city', 1, '38.1428100000', '-94.8135700000'),
(7275793, 7273857, 'US', 'Mound Valley', NULL, 'mound-valley', 1, '37.2053500000', '-95.4049700000'),
(7275803, 7273857, 'US', 'Moundridge', NULL, 'moundridge', 1, '38.2030700000', '-97.5192100000'),
(7275846, 7273857, 'US', 'Mount Hope', NULL, 'mount-hope', 1, '37.8686200000', '-97.6650500000'),
(7275985, 7273857, 'US', 'Mulberry', NULL, 'mulberry', 1, '37.5569900000', '-94.6219000000'),
(7276006, 7273857, 'US', 'City of Mulberry', NULL, 'city-of-mulberry', 1, '37.5557800000', '-94.6236800000'),
(7276013, 7273857, 'US', 'Mullinville', NULL, 'mullinville', 1, '37.5861300000', '-99.4756700000'),
(7276017, 7273857, 'US', 'Mulvane', NULL, 'mulvane', 1, '37.4744600000', '-97.2439300000'),
(7276027, 7273857, 'US', 'Munden', NULL, 'munden', 1, '39.9138900000', '-97.5381000000'),
(7276030, 7273857, 'US', 'Munjor', NULL, 'munjor', 1, '38.8111200000', '-99.2648200000'),
(7276047, 7273857, 'US', 'Muscotah', NULL, 'muscotah', 1, '39.5527800000', '-95.5216500000'),
(7276065, 7273857, 'US', 'Narka', NULL, 'narka', 1, '39.9605600000', '-97.4258700000'),
(7276067, 7273857, 'US', 'Nashville', NULL, 'nashville', 1, '37.4416900000', '-98.4225800000'),
(7276077, 7273857, 'US', 'Natoma', NULL, 'natoma', 1, '39.1908400000', '-99.0287000000'),
(7276128, 7273857, 'US', 'Neodesha', NULL, 'neodesha', 1, '37.4183900000', '-95.6802600000'),
(7276131, 7273857, 'US', 'City of Neodesha', NULL, 'city-of-neodesha', 1, '37.4242400000', '-95.6848600000'),
(7276139, 7273857, 'US', 'Neosho Falls', NULL, 'neosho-falls', 1, '38.0055900000', '-95.5572100000'),
(7276143, 7273857, 'US', 'Neosho Rapids', NULL, 'neosho-rapids', 1, '38.3694600000', '-95.9919400000'),
(7276166, 7273857, 'US', 'Ness City', NULL, 'ness-city', 1, '38.4527900000', '-99.9065100000'),
(7276180, 7273857, 'US', 'New Albany', NULL, 'new-albany', 1, '37.5683800000', '-95.9377600000'),
(7276184, 7273857, 'US', 'New Cambria', NULL, 'new-cambria', 1, '38.8791700000', '-97.5058600000'),
(7276225, 7273857, 'US', 'New Strawn', NULL, 'new-strawn', 1, '38.2625200000', '-95.7419300000'),
(7276248, 7273857, 'US', 'Newton', NULL, 'newton', 1, '38.0466800000', '-97.3450400000'),
(7276254, 7273857, 'US', 'City of Newton', NULL, 'city-of-newton', 1, '38.0347600000', '-97.3518900000'),
(7276257, 7273857, 'US', 'Netawaka', NULL, 'netawaka', 1, '39.6027700000', '-95.7183200000'),
(7276265, 7273857, 'US', 'Nickerson', NULL, 'nickerson', 1, '38.1472300000', '-98.0836700000'),
(7276268, 7273857, 'US', 'City of Nickerson', NULL, 'city-of-nickerson', 1, '38.1487700000', '-98.0880300000'),
(7276291, 7273857, 'US', 'Niotaze', NULL, 'niotaze', 1, '37.0736800000', '-96.0135900000'),
(7276386, 7273857, 'US', 'North Newton', NULL, 'north-newton', 1, '38.0722300000', '-97.3455900000'),
(7276452, 7273857, 'US', 'Norton', NULL, 'norton', 1, '39.8338900000', '-99.8915100000'),
(7276463, 7273857, 'US', 'City of Norton', NULL, 'city-of-norton', 1, '39.8363900000', '-99.8916200000'),
(7276465, 7273857, 'US', 'Nortonville', NULL, 'nortonville', 1, '39.4166600000', '-95.3335800000'),
(7276469, 7273857, 'US', 'Norwich', NULL, 'norwich', 1, '37.4572400000', '-97.8489400000'),
(7276512, 7273857, 'US', 'Oak Hill', NULL, 'oak-hill', 1, '39.2483300000', '-97.3414100000'),
(7276581, 7273857, 'US', 'Odin', NULL, 'odin', 1, '38.5661200000', '-98.6086900000'),
(7276583, 7273857, 'US', 'Offerle', NULL, 'offerle', 1, '37.8908500000', '-99.5579000000'),
(7276588, 7273857, 'US', 'Ogden', NULL, 'ogden', 1, '39.1111100000', '-96.7061200000'),
(7276609, 7273857, 'US', 'Oketo', NULL, 'oketo', 1, '39.9636100000', '-96.5997400000'),
(7276614, 7273857, 'US', 'Olathe', NULL, 'olathe', 1, '38.8814000000', '-94.8191300000'),
(7276617, 7273857, 'US', 'City of Olathe', NULL, 'city-of-olathe', 1, '38.8846800000', '-94.8191900000'),
(7276676, 7273857, 'US', 'Olmitz', NULL, 'olmitz', 1, '38.5166800000', '-98.9364800000'),
(7276678, 7273857, 'US', 'Olpe', NULL, 'olpe', 1, '38.2625200000', '-96.1669400000'),
(7276684, 7273857, 'US', 'Olsburg', NULL, 'olsburg', 1, '39.4305500000', '-96.6155600000'),
(7276693, 7273857, 'US', 'Onaga', NULL, 'onaga', 1, '39.4888800000', '-96.1700000000'),
(7276702, 7273857, 'US', 'Oneida', NULL, 'oneida', 1, '39.8638900000', '-95.9391600000'),
(7276746, 7273857, 'US', 'City of Osage City', NULL, 'city-of-osage-city', 1, '38.6337400000', '-95.8220400000'),
(7276747, 7273857, 'US', 'Osage City', NULL, 'osage-city', 1, '38.6339000000', '-95.8258200000'),
(7276772, 7273857, 'US', 'Osawatomie', NULL, 'osawatomie', 1, '38.4972400000', '-94.9505200000'),
(7276777, 7273857, 'US', 'City of Osawatomie', NULL, 'city-of-osawatomie', 1, '38.5089900000', '-94.9357600000'),
(7276781, 7273857, 'US', 'Osborne', NULL, 'osborne', 1, '39.4391400000', '-98.6962400000'),
(7276789, 7273857, 'US', 'City of Osborne', NULL, 'city-of-osborne', 1, '39.4406700000', '-98.6993700000'),
(7276792, 7273857, 'US', 'Oskaloosa', NULL, 'oskaloosa', 1, '39.2152800000', '-95.3127500000'),
(7276800, 7273857, 'US', 'Oswego', NULL, 'oswego', 1, '37.1675700000', '-95.1099600000'),
(7276804, 7273857, 'US', 'City of Oswego', NULL, 'city-of-oswego', 1, '37.1678100000', '-95.1132400000'),
(7276807, 7273857, 'US', 'Otis', NULL, 'otis', 1, '38.5347300000', '-99.0531500000'),
(7276816, 7273857, 'US', 'Ottawa', NULL, 'ottawa', 1, '38.6155700000', '-95.2677500000'),
(7276826, 7273857, 'US', 'City of Ottawa', NULL, 'city-of-ottawa', 1, '38.6006700000', '-95.2644400000'),
(7276871, 7273857, 'US', 'Overbrook', NULL, 'overbrook', 1, '38.7805600000', '-95.5572000000'),
(7276873, 7273857, 'US', 'Overland Park', NULL, 'overland-park', 1, '38.9822300000', '-94.6707900000'),
(7276875, 7273857, 'US', 'City of Overland Park', NULL, 'city-of-overland-park', 1, '38.8872600000', '-94.6871900000'),
(7276893, 7273857, 'US', 'Oxford', NULL, 'oxford', 1, '37.2741900000', '-97.1689300000'),
(7276908, 7273857, 'US', 'Ozawkie', NULL, 'ozawkie', 1, '39.2333300000', '-95.4669200000'),
(7276930, 7273857, 'US', 'Palco', NULL, 'palco', 1, '39.2522300000', '-99.5628900000'),
(7276936, 7273857, 'US', 'Palmer', NULL, 'palmer', 1, '39.6319500000', '-97.1403000000'),
(7276951, 7273857, 'US', 'City of Paola', NULL, 'city-of-paola', 1, '38.5780900000', '-94.8627800000'),
(7276953, 7273857, 'US', 'Paradise', NULL, 'paradise', 1, '39.1136200000', '-98.9184200000'),
(7276956, 7273857, 'US', 'Paola', NULL, 'paola', 1, '38.5722400000', '-94.8791300000'),
(7276974, 7273857, 'US', 'Park City', NULL, 'park-city', 1, '37.8000100000', '-97.3183800000'),
(7276988, 7273857, 'US', 'Parker', NULL, 'parker', 1, '38.3283500000', '-94.9919100000'),
(7276999, 7273857, 'US', 'Parkerfield', NULL, 'parkerfield', 1, '37.0750300000', '-96.9992000000'),
(7277011, 7273857, 'US', 'Parsons', NULL, 'parsons', 1, '37.3403400000', '-95.2610800000'),
(7277020, 7273857, 'US', 'City of Parsons', NULL, 'city-of-parsons', 1, '37.3427400000', '-95.2664100000'),
(7277022, 7273857, 'US', 'Partridge', NULL, 'partridge', 1, '37.9672300000', '-98.0925600000'),
(7277024, 7273857, 'US', 'Parkerville', NULL, 'parkerville', 1, '38.7638900000', '-96.6614000000'),
(7277071, 7273857, 'US', 'Paxico', NULL, 'paxico', 1, '39.0694400000', '-96.1663800000'),
(7277079, 7273857, 'US', 'Peabody', NULL, 'peabody', 1, '38.1694600000', '-97.1067000000'),
(7277096, 7273857, 'US', 'Pawnee Rock', NULL, 'pawnee-rock', 1, '38.2652900000', '-98.9809300000'),
(7277109, 7273857, 'US', 'Penalosa', NULL, 'penalosa', 1, '37.7166800000', '-98.3197900000'),
(7277131, 7273857, 'US', 'Perry', NULL, 'perry', 1, '39.0758300000', '-95.3933100000'),
(7277147, 7273857, 'US', 'Peru', NULL, 'peru', 1, '37.0886700000', '-96.0947100000'),
(7277177, 7273857, 'US', 'Phillipsburg', NULL, 'phillipsburg', 1, '39.7561200000', '-99.3239900000'),
(7277181, 7273857, 'US', 'City of Phillipsburg', NULL, 'city-of-phillipsburg', 1, '39.7518300000', '-99.3210500000'),
(7277239, 7273857, 'US', 'Piqua', NULL, 'piqua', 1, '37.9228100000', '-95.5352600000'),
(7277241, 7273857, 'US', 'Pittsburg', NULL, 'pittsburg', 1, '37.4108800000', '-94.7049600000'),
(7277244, 7273857, 'US', 'City of Pittsburg', NULL, 'city-of-pittsburg', 1, '37.4141800000', '-94.6983200000'),
(7277260, 7273857, 'US', 'Plainville', NULL, 'plainville', 1, '39.2347300000', '-99.2981600000'),
(7277481, 7273857, 'US', 'Pleasanton', NULL, 'pleasanton', 1, '38.1778100000', '-94.7113500000'),
(7277490, 7273857, 'US', 'Plevna', NULL, 'plevna', 1, '37.9722400000', '-98.3086800000'),
(7277554, 7273857, 'US', 'Pomona', NULL, 'pomona', 1, '38.6083400000', '-95.4516500000'),
(7277585, 7273857, 'US', 'Portis', NULL, 'portis', 1, '39.5636200000', '-98.6934100000'),
(7277625, 7273857, 'US', 'Potwin', NULL, 'potwin', 1, '37.9389100000', '-97.0197600000'),
(7277632, 7273857, 'US', 'Powhattan', NULL, 'powhattan', 1, '39.7616700000', '-95.6299800000'),
(7277718, 7273857, 'US', 'Prairie Village', NULL, 'prairie-village', 1, '38.9916700000', '-94.6335700000'),
(7277720, 7273857, 'US', 'City of Prairie Village', NULL, 'city-of-prairie-village', 1, '38.9873700000', '-94.6361100000'),
(7277740, 7273857, 'US', 'City of Pratt', NULL, 'city-of-pratt', 1, '37.7045600000', '-98.7573400000'),
(7277745, 7273857, 'US', 'Prescott', NULL, 'prescott', 1, '38.0636400000', '-94.6955100000'),
(7277752, 7273857, 'US', 'Pratt', NULL, 'pratt', 1, '37.6439100000', '-98.7375900000'),
(7277753, 7273857, 'US', 'Preston', NULL, 'preston', 1, '37.7589100000', '-98.5531400000'),
(7277761, 7273857, 'US', 'Pretty Prairie', NULL, 'pretty-prairie', 1, '37.7800100000', '-98.0197800000'),
(7277762, 7273857, 'US', 'Princeton', NULL, 'princeton', 1, '38.4889000000', '-95.2752500000'),
(7277796, 7273857, 'US', 'Protection', NULL, 'protection', 1, '37.2014100000', '-99.4840100000'),
(7277824, 7273857, 'US', 'Quenemo', NULL, 'quenemo', 1, '38.5797300000', '-95.5269300000'),
(7277852, 7273857, 'US', 'Radium', NULL, 'radium', 1, '38.1741800000', '-98.8934300000'),
(7277871, 7273857, 'US', 'Ramona', NULL, 'ramona', 1, '38.5972300000', '-97.0619600000'),
(7277873, 7273857, 'US', 'Randall', NULL, 'randall', 1, '39.6425100000', '-98.0447700000'),
(7277875, 7273857, 'US', 'Randolph', NULL, 'randolph', 1, '39.4305500000', '-96.7600100000'),
(7277883, 7273857, 'US', 'Ransom', NULL, 'ransom', 1, '38.6361300000', '-99.9337300000'),
(7277890, 7273857, 'US', 'Rantoul', NULL, 'rantoul', 1, '38.5486200000', '-95.1002500000'),
(7277906, 7273857, 'US', 'Raymond', NULL, 'raymond', 1, '38.2769600000', '-98.4159000000'),
(7277911, 7273857, 'US', 'Reading', NULL, 'reading', 1, '38.5194600000', '-95.9586000000'),
(7277945, 7273857, 'US', 'Redfield', NULL, 'redfield', 1, '37.8367100000', '-94.8810800000'),
(7277975, 7273857, 'US', 'Republic', NULL, 'republic', 1, '39.9236200000', '-97.8217100000'),
(7277983, 7273857, 'US', 'Reserve', NULL, 'reserve', 1, '39.9772200000', '-95.5619300000'),
(7278034, 7273857, 'US', 'Richmond', NULL, 'richmond', 1, '38.4028000000', '-95.2538600000'),
(7278056, 7273857, 'US', 'Riley', NULL, 'riley', 1, '39.2988900000', '-96.8308400000'),
(7278131, 7273857, 'US', 'Riverton', NULL, 'riverton', 1, '37.0750600000', '-94.7046700000'),
(7278163, 7273857, 'US', 'Robinson', NULL, 'robinson', 1, '39.8166700000', '-95.4105300000'),
(7278272, 7273857, 'US', 'Roeland Park', NULL, 'roeland-park', 1, '39.0375100000', '-94.6321800000'),
(7278275, 7273857, 'US', 'City of Roeland Park', NULL, 'city-of-roeland-park', 1, '39.0358800000', '-94.6374100000'),
(7278328, 7273857, 'US', 'Rosalia', NULL, 'rosalia', 1, '37.8153000000', '-96.6197400000'),
(7278340, 7273857, 'US', 'Rose Hill', NULL, 'rose-hill', 1, '37.5583500000', '-97.1350400000'),
(7278378, 7273857, 'US', 'Roseland', NULL, 'roseland', 1, '37.2811700000', '-94.8505200000'),
(7278393, 7273857, 'US', 'Rossville', NULL, 'rossville', 1, '39.1361100000', '-95.9516600000'),
(7278423, 7273857, 'US', 'Roxbury', NULL, 'roxbury', 1, '38.5508400000', '-97.4303100000'),
(7278429, 7273857, 'US', 'Rozel', NULL, 'rozel', 1, '38.1958500000', '-99.4031700000'),
(7278454, 7273857, 'US', 'Rush Center', NULL, 'rush-center', 1, '38.4652900000', '-99.3101100000'),
(7278471, 7273857, 'US', 'Russell', NULL, 'russell', 1, '38.8952700000', '-98.8610300000'),
(7278476, 7273857, 'US', 'City of Russell', NULL, 'city-of-russell', 1, '38.8876100000', '-98.8510000000'),
(7278489, 7273857, 'US', 'Sabetha', NULL, 'sabetha', 1, '39.9022200000', '-95.8008200000'),
(7278495, 7273857, 'US', 'City of Sabetha', NULL, 'city-of-sabetha', 1, '39.9119700000', '-95.7908100000'),
(7278604, 7273857, 'US', 'Saint George', NULL, 'saint-george', 1, '39.1911100000', '-96.4202800000'),
(7278621, 7273857, 'US', 'Saint John', NULL, 'saint-john', 1, '38.0022400000', '-98.7600900000'),
(7278741, 7273857, 'US', 'Saint Marys', NULL, 'saint-marys', 1, '39.1941600000', '-96.0711000000'),
(7278808, 7273857, 'US', 'Saint Paul', NULL, 'saint-paul', 1, '37.5189400000', '-95.1733100000'),
(7278890, 7273857, 'US', 'Salina', NULL, 'salina', 1, '38.8402800000', '-97.6114200000'),
(7278894, 7273857, 'US', 'City of Salina', NULL, 'city-of-salina', 1, '38.8142800000', '-97.6150800000'),
(7279022, 7273857, 'US', 'Savonburg', NULL, 'savonburg', 1, '37.7494900000', '-95.1441400000'),
(7279029, 7273857, 'US', 'Sawyer', NULL, 'sawyer', 1, '37.4972400000', '-98.6823100000'),
(7279031, 7273857, 'US', 'Scammon', NULL, 'scammon', 1, '37.2775600000', '-94.8249600000'),
(7279033, 7273857, 'US', 'City of Scammon', NULL, 'city-of-scammon', 1, '37.2782400000', '-94.8229400000'),
(7279034, 7273857, 'US', 'Scandia', NULL, 'scandia', 1, '39.7944500000', '-97.7836500000'),
(7279055, 7273857, 'US', 'Schoenchen', NULL, 'schoenchen', 1, '38.7133500000', '-99.3323300000'),
(7279116, 7273857, 'US', 'Scottsville', NULL, 'scottsville', 1, '39.5436200000', '-97.9531000000'),
(7279118, 7273857, 'US', 'Scranton', NULL, 'scranton', 1, '38.7816700000', '-95.7386000000'),
(7279149, 7273857, 'US', 'Sedan', NULL, 'sedan', 1, '37.1267200000', '-96.1869400000'),
(7279154, 7273857, 'US', 'Sedgwick', NULL, 'sedgwick', 1, '37.9166800000', '-97.4225400000'),
(7279170, 7273857, 'US', 'Seneca', NULL, 'seneca', 1, '39.8341600000', '-96.0641700000'),
(7279175, 7273857, 'US', 'City of Seneca', NULL, 'city-of-seneca', 1, '39.8377100000', '-96.0690600000'),
(7279193, 7273857, 'US', 'Severy', NULL, 'severy', 1, '37.6222500000', '-96.2280500000'),
(7279197, 7273857, 'US', 'Seward', NULL, 'seward', 1, '38.1777900000', '-98.7948100000'),
(7279227, 7273857, 'US', 'Sharon', NULL, 'sharon', 1, '37.2486300000', '-98.4206300000'),
(7279247, 7273857, 'US', 'Shawnee', NULL, 'shawnee', 1, '39.0416700000', '-94.7202400000'),
(7279274, 7273857, 'US', 'City of Shawnee', NULL, 'city-of-shawnee', 1, '39.0157700000', '-94.8076600000'),
(7279397, 7273857, 'US', 'Silver Lake', NULL, 'silver-lake', 1, '39.1041700000', '-95.8586000000'),
(7279429, 7273857, 'US', 'Simpson', NULL, 'simpson', 1, '39.3852800000', '-97.9314300000'),
(7279474, 7273857, 'US', 'Smith Center', NULL, 'smith-center', 1, '39.7791800000', '-98.7850700000'),
(7279502, 7273857, 'US', 'Smolan', NULL, 'smolan', 1, '38.7386200000', '-97.6844800000'),
(7279533, 7273857, 'US', 'Soldier', NULL, 'soldier', 1, '39.5361100000', '-95.9641600000'),
(7279540, 7273857, 'US', 'Solomon', NULL, 'solomon', 1, '38.9194400000', '-97.3711400000'),
(7279645, 7273857, 'US', 'South Hutchinson', NULL, 'south-hutchinson', 1, '38.0280700000', '-97.9403300000'),
(7279657, 7273857, 'US', 'South Haven', NULL, 'south-haven', 1, '37.0519700000', '-97.4053200000'),
(7279709, 7273857, 'US', 'Spearville', NULL, 'spearville', 1, '37.8500200000', '-99.7567900000'),
(7279713, 7273857, 'US', 'Speed', NULL, 'speed', 1, '39.6772300000', '-99.4209300000'),
(7279724, 7273857, 'US', 'Spivey', NULL, 'spivey', 1, '37.4458500000', '-98.1634000000'),
(7279847, 7273857, 'US', 'Spring Hill', NULL, 'spring-hill', 1, '38.7430600000', '-94.8255200000'),
(7279855, 7273857, 'US', 'City of Spring Hill', NULL, 'city-of-spring-hill', 1, '38.7562000000', '-94.8197900000'),
(7279901, 7273857, 'US', 'Stafford', NULL, 'stafford', 1, '37.9622400000', '-98.6006400000'),
(7279953, 7273857, 'US', 'Stark', NULL, 'stark', 1, '37.6900500000', '-95.1430300000'),
(7279983, 7273857, 'US', 'Sterling', NULL, 'sterling', 1, '38.2100100000', '-98.2070100000'),
(7279992, 7273857, 'US', 'City of Sterling', NULL, 'city-of-sterling', 1, '38.2091200000', '-98.2067500000'),
(7280093, 7273857, 'US', 'Strong City', NULL, 'strong-city', 1, '38.3972400000', '-96.5369500000'),
(7280121, 7273857, 'US', 'Summerfield', NULL, 'summerfield', 1, '39.9972200000', '-96.3502900000'),
(7280152, 7273857, 'US', 'Sun City', NULL, 'sun-city', 1, '37.3786300000', '-98.9159300000'),
(7280236, 7273857, 'US', 'Susank', NULL, 'susank', 1, '38.6408400000', '-98.7739700000'),
(7280290, 7273857, 'US', 'Sylvan Grove', NULL, 'sylvan-grove', 1, '39.0094500000', '-98.3942300000'),
(7280296, 7273857, 'US', 'Sylvia', NULL, 'sylvia', 1, '37.9577900000', '-98.4081300000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7280324, 7273857, 'US', 'Talmage', NULL, 'talmage', 1, '39.0250000000', '-97.2605800000'),
(7280328, 7273857, 'US', 'Tampa', NULL, 'tampa', 1, '38.5472300000', '-97.1530800000'),
(7280386, 7273857, 'US', 'Tescott', NULL, 'tescott', 1, '39.0080600000', '-97.8756000000'),
(7280396, 7273857, 'US', 'Thayer', NULL, 'thayer', 1, '37.4931100000', '-95.4702600000'),
(7280471, 7273857, 'US', 'Timken', NULL, 'timken', 1, '38.4736200000', '-99.1781600000'),
(7280484, 7273857, 'US', 'Tipton', NULL, 'tipton', 1, '39.3430700000', '-98.4709000000'),
(7280502, 7273857, 'US', 'Tonganoxie', NULL, 'tonganoxie', 1, '39.1097200000', '-95.0877500000'),
(7280516, 7273857, 'US', 'City of Topeka', NULL, 'city-of-topeka', 1, '39.0359600000', '-95.6954200000'),
(7280519, 7273857, 'US', 'Toronto', NULL, 'toronto', 1, '37.7989300000', '-95.9491600000'),
(7280531, 7273857, 'US', 'Towanda', NULL, 'towanda', 1, '37.7975200000', '-96.9997600000'),
(7280539, 7273857, 'US', 'Topeka', NULL, 'topeka', 1, '39.0483300000', '-95.6780400000'),
(7280606, 7273857, 'US', 'Treece (historical)', NULL, 'treece-historical', 1, '37.0009000000', '-94.8432800000'),
(7280660, 7273857, 'US', 'Troy', NULL, 'troy', 1, '39.7830500000', '-95.0899700000'),
(7280726, 7273857, 'US', 'Turon', NULL, 'turon', 1, '37.8072400000', '-98.4267400000'),
(7280777, 7273857, 'US', 'Tyro', NULL, 'tyro', 1, '37.0378500000', '-95.8213700000'),
(7280778, 7273857, 'US', 'Udall', NULL, 'udall', 1, '37.3875200000', '-97.1142100000'),
(7280855, 7273857, 'US', 'Uniontown', NULL, 'uniontown', 1, '37.8472600000', '-94.9752500000'),
(7280910, 7273857, 'US', 'Valley Center', NULL, 'valley-center', 1, '37.8347300000', '-97.3733800000'),
(7280917, 7273857, 'US', 'Valley Falls', NULL, 'valley-falls', 1, '39.3433300000', '-95.4602500000'),
(7280969, 7273857, 'US', 'Vassar', NULL, 'vassar', 1, '38.6472300000', '-95.6224800000'),
(7280982, 7273857, 'US', 'Vermillion', NULL, 'vermillion', 1, '39.7194400000', '-96.2658400000'),
(7281010, 7273857, 'US', 'Victoria', NULL, 'victoria', 1, '38.8527900000', '-99.1476000000'),
(7281051, 7273857, 'US', 'Vining', NULL, 'vining', 1, '39.5669400000', '-97.2953100000'),
(7281063, 7273857, 'US', 'Viola', NULL, 'viola', 1, '37.4830700000', '-97.6439400000'),
(7281065, 7273857, 'US', 'Virgil', NULL, 'virgil', 1, '37.9808600000', '-96.0102700000'),
(7281083, 7273857, 'US', 'WaKeeney', NULL, 'wakeeney', 1, '39.0250100000', '-99.8795700000'),
(7281109, 7273857, 'US', 'Wakarusa', NULL, 'wakarusa', 1, '38.8858400000', '-95.6958200000'),
(7281116, 7273857, 'US', 'Wakefield', NULL, 'wakefield', 1, '39.2133300000', '-97.0055700000'),
(7281125, 7273857, 'US', 'Waldo', NULL, 'waldo', 1, '39.1183400000', '-98.7981400000'),
(7281127, 7273857, 'US', 'Waldron', NULL, 'waldron', 1, '37.0022500000', '-98.1825700000'),
(7281149, 7273857, 'US', 'Walnut', NULL, 'walnut', 1, '37.6014400000', '-95.0780300000'),
(7281220, 7273857, 'US', 'Walton', NULL, 'walton', 1, '38.1177900000', '-97.2567000000'),
(7281227, 7273857, 'US', 'Wamego', NULL, 'wamego', 1, '39.2019400000', '-96.3050000000'),
(7281253, 7273857, 'US', 'Washington', NULL, 'washington', 1, '39.8180600000', '-97.0508600000'),
(7281300, 7273857, 'US', 'City of Washington', NULL, 'city-of-washington', 1, '39.8173400000', '-97.0490400000'),
(7281318, 7273857, 'US', 'Waterville', NULL, 'waterville', 1, '39.6911100000', '-96.7475200000'),
(7281323, 7273857, 'US', 'Wathena', NULL, 'wathena', 1, '39.7591600000', '-94.9496900000'),
(7281333, 7273857, 'US', 'Waverly', NULL, 'waverly', 1, '38.3939100000', '-95.6030400000'),
(7281355, 7273857, 'US', 'Webber', NULL, 'webber', 1, '39.9350100000', '-98.0350400000'),
(7281373, 7273857, 'US', 'Weir', NULL, 'weir', 1, '37.3100500000', '-94.7719000000'),
(7281374, 7273857, 'US', 'City of Weir', NULL, 'city-of-weir', 1, '37.3082700000', '-94.7745100000'),
(7281383, 7273857, 'US', 'Welda', NULL, 'welda', 1, '38.1694700000', '-95.2947000000'),
(7281386, 7273857, 'US', 'Wellington', NULL, 'wellington', 1, '37.2653000000', '-97.3717100000'),
(7281397, 7273857, 'US', 'City of Wellington', NULL, 'city-of-wellington', 1, '37.2717400000', '-97.3973200000'),
(7281412, 7273857, 'US', 'Wellsville', NULL, 'wellsville', 1, '38.7183400000', '-95.0816400000'),
(7281546, 7273857, 'US', 'West Mineral', NULL, 'west-mineral', 1, '37.2842200000', '-94.9230200000'),
(7281614, 7273857, 'US', 'Westmoreland', NULL, 'westmoreland', 1, '39.3938900000', '-96.4136100000'),
(7281621, 7273857, 'US', 'Westphalia', NULL, 'westphalia', 1, '38.1819700000', '-95.4902600000'),
(7281639, 7273857, 'US', 'Westwood', NULL, 'westwood', 1, '39.0405600000', '-94.6169000000'),
(7281640, 7273857, 'US', 'Westwood Hills', NULL, 'westwood-hills', 1, '39.0388900000', '-94.6099600000'),
(7281641, 7273857, 'US', 'City of Westwood Hills', NULL, 'city-of-westwood-hills', 1, '39.0389200000', '-94.6096600000'),
(7281646, 7273857, 'US', 'City of Westwood', NULL, 'city-of-westwood', 1, '39.0394000000', '-94.6155900000'),
(7281647, 7273857, 'US', 'Wetmore', NULL, 'wetmore', 1, '39.6333300000', '-95.8113800000'),
(7281664, 7273857, 'US', 'Wheaton', NULL, 'wheaton', 1, '39.5022200000', '-96.3208400000'),
(7281677, 7273857, 'US', 'White City', NULL, 'white-city', 1, '38.7955600000', '-96.7358400000'),
(7281683, 7273857, 'US', 'White Cloud', NULL, 'white-cloud', 1, '39.9763900000', '-95.2969200000'),
(7281710, 7273857, 'US', 'Whitewater', NULL, 'whitewater', 1, '37.9647400000', '-97.1475300000'),
(7281717, 7273857, 'US', 'Whiting', NULL, 'whiting', 1, '39.5897200000', '-95.6127600000'),
(7281730, 7273857, 'US', 'Wichita', NULL, 'wichita', 1, '37.6922400000', '-97.3375400000'),
(7281746, 7273857, 'US', 'City of Wichita', NULL, 'city-of-wichita', 1, '37.6906300000', '-97.3425800000'),
(7281793, 7273857, 'US', 'Willard', NULL, 'willard', 1, '39.0933300000', '-95.9419300000'),
(7281806, 7273857, 'US', 'Williamsburg', NULL, 'williamsburg', 1, '38.4805700000', '-95.4669200000'),
(7281811, 7273857, 'US', 'Willis', NULL, 'willis', 1, '39.7250000000', '-95.5058100000'),
(7281831, 7273857, 'US', 'Willowbrook', NULL, 'willowbrook', 1, '38.1019600000', '-97.9920000000'),
(7281839, 7273857, 'US', 'Wilmore', NULL, 'wilmore', 1, '37.3358600000', '-99.2101100000'),
(7281843, 7273857, 'US', 'Wilroads Gardens', NULL, 'wilroads-gardens', 1, '37.7241900000', '-99.9331900000'),
(7281845, 7273857, 'US', 'Wilsey', NULL, 'wilsey', 1, '38.6361200000', '-96.6752900000'),
(7281846, 7273857, 'US', 'Wilson', NULL, 'wilson', 1, '38.8250100000', '-98.4753400000'),
(7281882, 7273857, 'US', 'Winchester', NULL, 'winchester', 1, '39.3222200000', '-95.2669200000'),
(7281887, 7273857, 'US', 'Windom', NULL, 'windom', 1, '38.3839000000', '-97.9100500000'),
(7281897, 7273857, 'US', 'Winfield', NULL, 'winfield', 1, '37.2397500000', '-96.9955900000'),
(7281905, 7273857, 'US', 'City of Winfield', NULL, 'city-of-winfield', 1, '37.2378500000', '-96.9859700000'),
(7281979, 7273857, 'US', 'Woodbine', NULL, 'woodbine', 1, '38.7961200000', '-96.9586200000'),
(7282015, 7273857, 'US', 'Woodston', NULL, 'woodston', 1, '39.4552900000', '-99.0956500000'),
(7282028, 7273857, 'US', 'Wright', NULL, 'wright', 1, '37.7805800000', '-99.8920800000'),
(7282061, 7273857, 'US', 'Yates Center', NULL, 'yates-center', 1, '37.8811500000', '-95.7333200000'),
(7282068, 7273857, 'US', 'City of Yates Center', NULL, 'city-of-yates-center', 1, '37.8682100000', '-95.7536600000'),
(7282076, 7273857, 'US', 'Yoder', NULL, 'yoder', 1, '37.9402900000', '-97.8683800000'),
(7282098, 7273857, 'US', 'Zenda', NULL, 'zenda', 1, '37.4422400000', '-98.2820200000'),
(7282139, 7273857, 'US', 'Zurich', NULL, 'zurich', 1, '39.2344500000', '-99.4381600000'),
(7282213, 9254925, 'US', 'Adairville', NULL, 'adairville', 1, '36.6675400000', '-86.8519400000'),
(7282305, 9254925, 'US', 'Albany', NULL, 'albany', 1, '36.6909000000', '-85.1346800000'),
(7282342, 9254925, 'US', 'Alexandria', NULL, 'alexandria', 1, '38.9595100000', '-84.3879900000'),
(7282392, 9254925, 'US', 'Allen City', NULL, 'allen-city', 1, '37.6095400000', '-82.7276600000'),
(7282411, 9254925, 'US', 'Allensville', NULL, 'allensville', 1, '36.7167100000', '-87.0661100000'),
(7282497, 9254925, 'US', 'Anchorage', NULL, 'anchorage', 1, '38.2667400000', '-85.5330200000'),
(7282563, 9254925, 'US', 'Annville', NULL, 'annville', 1, '37.3192500000', '-83.9704800000'),
(7282658, 9254925, 'US', 'Arlington', NULL, 'arlington', 1, '37.7606400000', '-84.3077100000'),
(7282705, 9254925, 'US', 'Artemus', NULL, 'artemus', 1, '36.8334200000', '-83.8415900000'),
(7282757, 9254925, 'US', 'Ashland', NULL, 'ashland', 1, '38.4784100000', '-82.6379400000'),
(7282812, 9254925, 'US', 'Auburn', NULL, 'auburn', 1, '36.8642100000', '-86.7102700000'),
(7282818, 9254925, 'US', 'Audubon Park', NULL, 'audubon-park', 1, '38.2039600000', '-85.7252400000'),
(7282836, 9254925, 'US', 'Augusta', NULL, 'augusta', 1, '38.7717400000', '-84.0057600000'),
(7282839, 9254925, 'US', 'Auxier', NULL, 'auxier', 1, '37.7370400000', '-82.7582100000'),
(7283090, 9254925, 'US', 'Bancroft', NULL, 'bancroft', 1, '38.2831300000', '-85.6116300000'),
(7283092, 9254925, 'US', 'Bandana', NULL, 'bandana', 1, '37.1461600000', '-88.9459000000'),
(7283127, 9254925, 'US', 'Barbourmeade', NULL, 'barbourmeade', 1, '38.2972900000', '-85.6032900000'),
(7283128, 9254925, 'US', 'Barbourville', NULL, 'barbourville', 1, '36.8664800000', '-83.8888100000'),
(7283133, 9254925, 'US', 'Bardstown', NULL, 'bardstown', 1, '37.8092300000', '-85.4669000000'),
(7283138, 9254925, 'US', 'Bardwell', NULL, 'bardwell', 1, '36.8706100000', '-89.0097900000'),
(7283182, 9254925, 'US', 'Barlow', NULL, 'barlow', 1, '37.0517200000', '-89.0467300000'),
(7283541, 9254925, 'US', 'Beattyville', NULL, 'beattyville', 1, '37.5717500000', '-83.7068600000'),
(7283557, 9254925, 'US', 'Beaver Dam', NULL, 'beaver-dam', 1, '37.4019900000', '-86.8758300000'),
(7283606, 9254925, 'US', 'Bedford', NULL, 'bedford', 1, '38.5925600000', '-85.3177300000'),
(7283700, 9254925, 'US', 'Beech Grove', NULL, 'beech-grove', 1, '37.6161600000', '-87.3963900000'),
(7283753, 9254925, 'US', 'Beechmont', NULL, 'beechmont', 1, '37.1744900000', '-87.0325000000'),
(7283760, 9254925, 'US', 'Beechwood Village', NULL, 'beechwood-village', 1, '38.2547900000', '-85.6313500000'),
(7283837, 9254925, 'US', 'Bellefonte', NULL, 'bellefonte', 1, '38.4925800000', '-82.6901600000'),
(7283841, 9254925, 'US', 'Bellemeade', NULL, 'bellemeade', 1, '38.2522900000', '-85.5921800000'),
(7283844, 9254925, 'US', 'Belleview', NULL, 'belleview', 1, '38.9861700000', '-84.8255000000'),
(7283845, 9254925, 'US', 'Bellevue', NULL, 'bellevue', 1, '39.1064500000', '-84.4788300000'),
(7283849, 9254925, 'US', 'Bellewood', NULL, 'bellewood', 1, '38.2575700000', '-85.6596800000'),
(7283903, 9254925, 'US', 'Benham', NULL, 'benham', 1, '36.9648100000', '-82.9485000000'),
(7283953, 9254925, 'US', 'Benton', NULL, 'benton', 1, '36.8572800000', '-88.3503100000'),
(7283974, 9254925, 'US', 'Berea', NULL, 'berea', 1, '37.5686900000', '-84.2963200000'),
(7283981, 9254925, 'US', 'Berry', NULL, 'berry', 1, '38.5206300000', '-84.3843800000'),
(7284141, 9254925, 'US', 'Betsy Layne', NULL, 'betsy-layne', 1, '37.5514900000', '-82.6334900000'),
(7284740, 9254925, 'US', 'Blackey', NULL, 'blackey', 1, '37.1401000000', '-82.9790500000'),
(7284769, 9254925, 'US', 'Blaine', NULL, 'blaine', 1, '38.0275900000', '-82.8432200000'),
(7284812, 9254925, 'US', 'Blandville', NULL, 'blandville', 1, '36.9436700000', '-88.9639500000'),
(7284890, 9254925, 'US', 'Bloomfield', NULL, 'bloomfield', 1, '37.9103400000', '-85.3166200000'),
(7284942, 9254925, 'US', 'Blue Ridge Manor', NULL, 'blue-ridge-manor', 1, '38.2431300000', '-85.5630200000'),
(7285143, 9254925, 'US', 'Bonnieville', NULL, 'bonnieville', 1, '37.3786700000', '-85.9030200000'),
(7285190, 9254925, 'US', 'Booneville', NULL, 'booneville', 1, '37.4762000000', '-83.6749100000'),
(7285208, 9254925, 'US', 'Boston', NULL, 'boston', 1, '37.7875600000', '-85.6727400000'),
(7285268, 9254925, 'US', 'Bowling Green', NULL, 'bowling-green', 1, '36.9903200000', '-86.4436000000'),
(7285339, 9254925, 'US', 'Bradfordsville', NULL, 'bradfordsville', 1, '37.4942400000', '-85.1488500000'),
(7285380, 9254925, 'US', 'Brandenburg', NULL, 'brandenburg', 1, '37.9989600000', '-86.1694100000'),
(7285427, 9254925, 'US', 'Breckinridge Center', NULL, 'breckinridge-center', 1, '37.6828200000', '-87.8630800000'),
(7285439, 9254925, 'US', 'Bremen', NULL, 'bremen', 1, '37.3614300000', '-87.2186100000'),
(7285466, 9254925, 'US', 'Briarwood', NULL, 'briarwood', 1, '38.2781300000', '-85.5930200000'),
(7285549, 9254925, 'US', 'Broad Fields', NULL, 'broad-fields', 1, '38.2414600000', '-85.6521800000'),
(7285573, 9254925, 'US', 'Brodhead', NULL, 'brodhead', 1, '37.4042500000', '-84.4138300000'),
(7285580, 9254925, 'US', 'Bromley', NULL, 'bromley', 1, '38.6406200000', '-84.8482800000'),
(7285588, 9254925, 'US', 'Brooks', NULL, 'brooks', 1, '38.0611800000', '-85.7096800000'),
(7285607, 9254925, 'US', 'Brooksville', NULL, 'brooksville', 1, '38.6825700000', '-84.0657600000'),
(7285706, 9254925, 'US', 'Brownsboro Farm', NULL, 'brownsboro-farm', 1, '38.3028500000', '-85.5960700000'),
(7285707, 9254925, 'US', 'Brownsboro Village', NULL, 'brownsboro-village', 1, '38.2631300000', '-85.6657900000'),
(7285708, 9254925, 'US', 'Brownsville', NULL, 'brownsville', 1, '37.1925500000', '-86.2677500000'),
(7286012, 9254925, 'US', 'Buckhorn', NULL, 'buckhorn', 1, '37.3487000000', '-83.4763000000'),
(7286037, 9254925, 'US', 'Buckner', NULL, 'buckner', 1, '38.3836800000', '-85.4399600000'),
(7286054, 9254925, 'US', 'Buechel', NULL, 'buechel', 1, '38.1950700000', '-85.6519000000'),
(7286067, 9254925, 'US', 'Buffalo', NULL, 'buffalo', 1, '37.5120000000', '-85.6985700000'),
(7286257, 9254925, 'US', 'Burgin', NULL, 'burgin', 1, '37.7534100000', '-84.7666100000'),
(7286280, 9254925, 'US', 'Burkesville', NULL, 'burkesville', 1, '36.7903400000', '-85.3705200000'),
(7286281, 9254925, 'US', 'Burlington', NULL, 'burlington', 1, '39.0275600000', '-84.7241100000'),
(7286282, 9254925, 'US', 'Burna', NULL, 'burna', 1, '37.2456100000', '-88.3605900000'),
(7286307, 9254925, 'US', 'Burnside', NULL, 'burnside', 1, '36.9889700000', '-84.5999400000'),
(7286369, 9254925, 'US', 'Butler', NULL, 'butler', 1, '38.7864600000', '-84.3696600000'),
(7286479, 9254925, 'US', 'Cadiz', NULL, 'cadiz', 1, '36.8650500000', '-87.8353000000'),
(7286519, 9254925, 'US', 'Calhoun', NULL, 'calhoun', 1, '37.5389400000', '-87.2583300000'),
(7286529, 9254925, 'US', 'California', NULL, 'california', 1, '38.9186800000', '-84.2635500000'),
(7286581, 9254925, 'US', 'Calvert City', NULL, 'calvert-city', 1, '37.0333900000', '-88.3500400000'),
(7286590, 9254925, 'US', 'Camargo', NULL, 'camargo', 1, '37.9942500000', '-83.8877000000'),
(7286595, 9254925, 'US', 'Cambridge', NULL, 'cambridge', 1, '38.2217400000', '-85.6166300000'),
(7286716, 9254925, 'US', 'Campbellsburg', NULL, 'campbellsburg', 1, '38.5236800000', '-85.2027300000'),
(7286717, 9254925, 'US', 'Campbellsville', NULL, 'campbellsville', 1, '37.3434000000', '-85.3419100000'),
(7286728, 9254925, 'US', 'Campton', NULL, 'campton', 1, '37.7342500000', '-83.5474100000'),
(7286894, 9254925, 'US', 'Caneyville', NULL, 'caneyville', 1, '37.4242200000', '-86.4883100000'),
(7286913, 9254925, 'US', 'Cannonsburg', NULL, 'cannonsburg', 1, '38.3886900000', '-82.7026600000'),
(7286981, 9254925, 'US', 'Carlisle', NULL, 'carlisle', 1, '38.3120200000', '-84.0274300000'),
(7287050, 9254925, 'US', 'Carrollton', NULL, 'carrollton', 1, '38.6809000000', '-85.1794000000'),
(7287060, 9254925, 'US', 'Carrsville', NULL, 'carrsville', 1, '37.3975500000', '-88.3747600000'),
(7287192, 9254925, 'US', 'Catlettsburg', NULL, 'catlettsburg', 1, '38.4048000000', '-82.6004400000'),
(7287235, 9254925, 'US', 'Cave City', NULL, 'cave-city', 1, '37.1367200000', '-85.9569200000'),
(7287287, 9254925, 'US', 'Cawood', NULL, 'cawood', 1, '36.7839800000', '-83.2282300000'),
(7287292, 9254925, 'US', 'Cayce', NULL, 'cayce', 1, '36.5553400000', '-89.0359000000'),
(7287301, 9254925, 'US', 'Cecilia', NULL, 'cecilia', 1, '37.6659000000', '-85.9566300000'),
(7287418, 9254925, 'US', 'Cedarville', NULL, 'cedarville', 1, '37.3253900000', '-82.3273700000'),
(7287443, 9254925, 'US', 'Centertown', NULL, 'centertown', 1, '37.4172700000', '-86.9961100000'),
(7287450, 9254925, 'US', 'Central City', NULL, 'central-city', 1, '37.2939300000', '-87.1233300000'),
(7287467, 9254925, 'US', 'Cerulean', NULL, 'cerulean', 1, '36.9594900000', '-87.7100100000'),
(7287624, 9254925, 'US', 'Cherrywood Village', NULL, 'cherrywood-village', 1, '38.2603500000', '-85.6544100000'),
(7287866, 9254925, 'US', 'Clarkson', NULL, 'clarkson', 1, '37.4953300000', '-86.2213600000'),
(7287872, 9254925, 'US', 'Claryville', NULL, 'claryville', 1, '38.9192300000', '-84.3954900000'),
(7287874, 9254925, 'US', 'Clay', NULL, 'clay', 1, '37.4767100000', '-87.8200200000'),
(7287881, 9254925, 'US', 'Clay City', NULL, 'clay-city', 1, '37.8592500000', '-83.9185300000'),
(7288062, 9254925, 'US', 'Clinton', NULL, 'clinton', 1, '36.6672800000', '-88.9934000000'),
(7288101, 9254925, 'US', 'Cloverport', NULL, 'cloverport', 1, '37.8333900000', '-86.6327600000'),
(7288140, 9254925, 'US', 'Coal Run Village', NULL, 'coal-run-village', 1, '37.5131600000', '-82.5584900000'),
(7288230, 9254925, 'US', 'Cold Spring', NULL, 'cold-spring', 1, '39.0217300000', '-84.4399400000'),
(7288241, 9254925, 'US', 'Coldiron', NULL, 'coldiron', 1, '36.8267500000', '-83.4535200000'),
(7288250, 9254925, 'US', 'Coldstream', NULL, 'coldstream', 1, '38.3147900000', '-85.5238500000'),
(7288361, 9254925, 'US', 'Columbus', NULL, 'columbus', 1, '38.0370200000', '-84.3654900000'),
(7288366, 9254925, 'US', 'Columbia', NULL, 'columbia', 1, '37.1028400000', '-85.3063500000'),
(7288417, 9254925, 'US', 'Concord', NULL, 'concord', 1, '37.5608900000', '-86.4597000000'),
(7288656, 9254925, 'US', 'Corbin', NULL, 'corbin', 1, '36.9487000000', '-84.0968800000'),
(7288666, 9254925, 'US', 'Corinth', NULL, 'corinth', 1, '38.4967400000', '-84.5641100000'),
(7288731, 9254925, 'US', 'Corydon', NULL, 'corydon', 1, '37.7433800000', '-87.7039100000'),
(7288809, 9254925, 'US', 'Covington', NULL, 'covington', 1, '39.0836700000', '-84.5085500000'),
(7288910, 9254925, 'US', 'Crab Orchard', NULL, 'crab-orchard', 1, '37.4645300000', '-84.5066000000'),
(7289012, 9254925, 'US', 'Crayne', NULL, 'crayne', 1, '37.2706100000', '-88.0825200000'),
(7289020, 9254925, 'US', 'Creekside', NULL, 'creekside', 1, '38.2914600000', '-85.5694100000'),
(7289027, 9254925, 'US', 'Crescent Park', NULL, 'crescent-park', 1, '39.0433900000', '-84.5741100000'),
(7289028, 9254925, 'US', 'Crescent Springs', NULL, 'crescent-springs', 1, '39.0514500000', '-84.5816100000'),
(7289039, 9254925, 'US', 'Crestview', NULL, 'crestview', 1, '39.0253400000', '-84.4174400000'),
(7289040, 9254925, 'US', 'Crestview Hills', NULL, 'crestview-hills', 1, '39.0272800000', '-84.5849400000'),
(7289042, 9254925, 'US', 'Crestwood', NULL, 'crestwood', 1, '38.3242400000', '-85.4724600000'),
(7289072, 9254925, 'US', 'Crittenden', NULL, 'crittenden', 1, '38.7828400000', '-84.6052200000'),
(7289089, 9254925, 'US', 'Crofton', NULL, 'crofton', 1, '37.0478200000', '-87.4850000000'),
(7289135, 9254925, 'US', 'Crossgate', NULL, 'crossgate', 1, '38.2792400000', '-85.6299600000'),
(7289232, 9254925, 'US', 'Cumberland', NULL, 'cumberland', 1, '36.9781500000', '-82.9885000000'),
(7289323, 9254925, 'US', 'Cynthiana', NULL, 'cynthiana', 1, '38.3903500000', '-84.2941000000'),
(7289445, 9254925, 'US', 'Danville', NULL, 'danville', 1, '37.6456300000', '-84.7721700000'),
(7289606, 9254925, 'US', 'Dawson Springs', NULL, 'dawson-springs', 1, '37.1672700000', '-87.6925100000'),
(7289629, 9254925, 'US', 'Dayton', NULL, 'dayton', 1, '39.1128400000', '-84.4727200000'),
(7289856, 9254925, 'US', 'Dexter', NULL, 'dexter', 1, '36.7428300000', '-88.2964200000'),
(7289861, 9254925, 'US', 'Diablock', NULL, 'diablock', 1, '37.2284300000', '-83.1721200000'),
(7289966, 9254925, 'US', 'Dixon', NULL, 'dixon', 1, '37.5178200000', '-87.6902900000'),
(7290181, 9254925, 'US', 'Douglass Hills', NULL, 'douglass-hills', 1, '38.2378500000', '-85.5527400000'),
(7290196, 9254925, 'US', 'Dover', NULL, 'dover', 1, '38.7581300000', '-83.8829800000'),
(7290224, 9254925, 'US', 'Drakesboro', NULL, 'drakesboro', 1, '37.2175400000', '-87.0488800000'),
(7290271, 9254925, 'US', 'Druid Hills', NULL, 'druid-hills', 1, '38.2636800000', '-85.6616300000'),
(7290421, 9254925, 'US', 'Dry Ridge', NULL, 'dry-ridge', 1, '38.6820100000', '-84.5899400000'),
(7290563, 9254925, 'US', 'Dunmor', NULL, 'dunmor', 1, '37.0736600000', '-86.9961100000'),
(7290626, 9254925, 'US', 'Dwale', NULL, 'dwale', 1, '37.6231500000', '-82.7237700000'),
(7290629, 9254925, 'US', 'Dycusburg', NULL, 'dycusburg', 1, '37.1595000000', '-88.1844700000'),
(7290685, 9254925, 'US', 'Earlington', NULL, 'earlington', 1, '37.2742100000', '-87.5119400000'),
(7290698, 9254925, 'US', 'East Bernstadt', NULL, 'east-bernstadt', 1, '37.1895300000', '-84.1177100000'),
(7290859, 9254925, 'US', 'Eddyville', NULL, 'eddyville', 1, '37.0945000000', '-88.0803000000'),
(7290873, 9254925, 'US', 'Edgewood', NULL, 'edgewood', 1, '39.0186700000', '-84.5818900000'),
(7290886, 9254925, 'US', 'Edmonton', NULL, 'edmonton', 1, '36.9800600000', '-85.6121900000'),
(7290935, 9254925, 'US', 'Ekron', NULL, 'ekron', 1, '37.9292300000', '-86.1794100000'),
(7290988, 9254925, 'US', 'Elizabethtown', NULL, 'elizabethtown', 1, '37.6939500000', '-85.8591300000'),
(7290997, 9254925, 'US', 'Elizaville', NULL, 'elizaville', 1, '38.4195200000', '-83.8254800000'),
(7291019, 9254925, 'US', 'Elk Creek', NULL, 'elk-creek', 1, '38.1003400000', '-85.3710700000'),
(7291056, 9254925, 'US', 'Elkfork', NULL, 'elkfork', 1, '37.9648100000', '-83.1329500000'),
(7291063, 9254925, 'US', 'Elkhorn City', NULL, 'elkhorn-city', 1, '37.3040000000', '-82.3509800000'),
(7291079, 9254925, 'US', 'Elkton', NULL, 'elkton', 1, '36.8100400000', '-87.1541700000'),
(7291156, 9254925, 'US', 'Elsmere', NULL, 'elsmere', 1, '39.0125600000', '-84.6046700000'),
(7291181, 9254925, 'US', 'Eminence', NULL, 'eminence', 1, '38.3700700000', '-85.1805100000'),
(7291182, 9254925, 'US', 'Emlyn', NULL, 'emlyn', 1, '36.7045300000', '-84.1432700000'),
(7291255, 9254925, 'US', 'Erlanger', NULL, 'erlanger', 1, '39.0167300000', '-84.6007800000'),
(7291293, 9254925, 'US', 'Eubank', NULL, 'eubank', 1, '37.2784100000', '-84.6585600000'),
(7291321, 9254925, 'US', 'Evarts', NULL, 'evarts', 1, '36.8659200000', '-83.1904500000'),
(7291352, 9254925, 'US', 'Ewing', NULL, 'ewing', 1, '38.4273000000', '-83.8632600000'),
(7291364, 9254925, 'US', 'Ezel', NULL, 'ezel', 1, '37.8912000000', '-83.4443500000'),
(7291373, 9254925, 'US', 'Fairdale', NULL, 'fairdale', 1, '38.1050700000', '-85.7588500000'),
(7291376, 9254925, 'US', 'Fairfield', NULL, 'fairfield', 1, '37.9336700000', '-85.3835700000'),
(7291381, 9254925, 'US', 'Fairmeade', NULL, 'fairmeade', 1, '38.2489600000', '-85.6338500000'),
(7291501, 9254925, 'US', 'Falmouth', NULL, 'falmouth', 1, '38.6767400000', '-84.3302100000'),
(7291506, 9254925, 'US', 'Fancy Farm', NULL, 'fancy-farm', 1, '36.7995000000', '-88.7914400000'),
(7291533, 9254925, 'US', 'Farmers', NULL, 'farmers', 1, '38.1428600000', '-83.5460200000'),
(7291543, 9254925, 'US', 'Farmington', NULL, 'farmington', 1, '36.6695000000', '-88.5258800000'),
(7291600, 9254925, 'US', 'Ferguson', NULL, 'ferguson', 1, '37.0667400000', '-84.5999400000'),
(7291620, 9254925, 'US', 'Fern Creek', NULL, 'fern-creek', 1, '38.1597900000', '-85.5877400000'),
(7291670, 9254925, 'US', 'Fincastle', NULL, 'fincastle', 1, '38.3078500000', '-85.5421800000'),
(7291848, 9254925, 'US', 'Flat Lick', NULL, 'flat-lick', 1, '36.8289800000', '-83.7702000000'),
(7291884, 9254925, 'US', 'Flatwoods', NULL, 'flatwoods', 1, '38.5225800000', '-82.7171100000'),
(7291904, 9254925, 'US', 'Fleming-Neon', NULL, 'fleming-neon', 1, '37.1923200000', '-82.7057100000'),
(7291905, 9254925, 'US', 'Flemingsburg', NULL, 'flemingsburg', 1, '38.4223000000', '-83.7338100000'),
(7291945, 9254925, 'US', 'Florence', NULL, 'florence', 1, '38.9989500000', '-84.6266100000'),
(7292011, 9254925, 'US', 'Fordsville', NULL, 'fordsville', 1, '37.6361600000', '-86.7174900000'),
(7292020, 9254925, 'US', 'Forest Hills', NULL, 'forest-hills', 1, '38.2153500000', '-85.5857900000'),
(7292067, 9254925, 'US', 'Fort Mitchell', NULL, 'fort-mitchell', 1, '39.0595000000', '-84.5474400000'),
(7292071, 9254925, 'US', 'Fort Thomas', NULL, 'fort-thomas', 1, '39.0750600000', '-84.4471600000'),
(7292072, 9254925, 'US', 'Fort Wright', NULL, 'fort-wright', 1, '39.0517300000', '-84.5341100000'),
(7292078, 9254925, 'US', 'Foster', NULL, 'foster', 1, '38.7992400000', '-84.2129900000'),
(7292095, 9254925, 'US', 'Fountain Run', NULL, 'fountain-run', 1, '36.7189000000', '-85.9657000000'),
(7292138, 9254925, 'US', 'Fox Chase', NULL, 'fox-chase', 1, '38.0456200000', '-85.6927400000'),
(7292182, 9254925, 'US', 'Francisville', NULL, 'francisville', 1, '39.1050600000', '-84.7243900000'),
(7292188, 9254925, 'US', 'Frankfort', NULL, 'frankfort', 1, '38.2009100000', '-84.8732800000'),
(7292193, 9254925, 'US', 'Franklin', NULL, 'franklin', 1, '36.7222600000', '-86.5772200000'),
(7292252, 9254925, 'US', 'Fredonia', NULL, 'fredonia', 1, '37.2081100000', '-88.0566900000'),
(7292259, 9254925, 'US', 'Freeburn', NULL, 'freeburn', 1, '37.5645500000', '-82.1418000000'),
(7292308, 9254925, 'US', 'Frenchburg', NULL, 'frenchburg', 1, '37.9509200000', '-83.6257500000'),
(7292424, 9254925, 'US', 'Fulton', NULL, 'fulton', 1, '36.5042300000', '-88.8742300000'),
(7292586, 9254925, 'US', 'Garrison', NULL, 'garrison', 1, '38.6061900000', '-83.1732300000'),
(7292686, 9254925, 'US', 'Georgetown', NULL, 'georgetown', 1, '38.2098000000', '-84.5588300000'),
(7292692, 9254925, 'US', 'Germantown', NULL, 'germantown', 1, '38.6548000000', '-83.9646500000'),
(7292709, 9254925, 'US', 'Ghent', NULL, 'ghent', 1, '38.7375600000', '-85.0582800000'),
(7292744, 9254925, 'US', 'Gilbertsville', NULL, 'gilbertsville', 1, '37.0245000000', '-88.2997600000'),
(7292826, 9254925, 'US', 'Glasgow', NULL, 'glasgow', 1, '36.9958800000', '-85.9119200000'),
(7292847, 9254925, 'US', 'Glencoe', NULL, 'glencoe', 1, '38.7145100000', '-84.8227300000'),
(7292866, 9254925, 'US', 'Glenview', NULL, 'glenview', 1, '38.3084000000', '-85.6502400000'),
(7292870, 9254925, 'US', 'Glenview Hills', NULL, 'glenview-hills', 1, '38.2947900000', '-85.6385700000'),
(7292871, 9254925, 'US', 'Glenview Manor', NULL, 'glenview-manor', 1, '38.2875700000', '-85.6369100000'),
(7293005, 9254925, 'US', 'Goose Creek', NULL, 'goose-creek', 1, '38.3161800000', '-85.6485700000'),
(7293055, 9254925, 'US', 'Goshen', NULL, 'goshen', 1, '38.4031200000', '-85.5741300000'),
(7293086, 9254925, 'US', 'Gracey', NULL, 'gracey', 1, '36.8781000000', '-87.6622300000'),
(7293110, 9254925, 'US', 'Grand Rivers', NULL, 'grand-rivers', 1, '37.0031100000', '-88.2344700000'),
(7293226, 9254925, 'US', 'Gratz', NULL, 'gratz', 1, '38.4736800000', '-84.9527300000'),
(7293284, 9254925, 'US', 'Graymoor-Devondale', NULL, 'graymoor-devondale', 1, '38.2731300000', '-85.6230200000'),
(7293311, 9254925, 'US', 'Grayson', NULL, 'grayson', 1, '38.3325800000', '-82.9485000000'),
(7293427, 9254925, 'US', 'Green Spring', NULL, 'green-spring', 1, '38.3161800000', '-85.6138500000'),
(7293470, 9254925, 'US', 'Greensburg', NULL, 'greensburg', 1, '37.2608900000', '-85.4988500000'),
(7293473, 9254925, 'US', 'Greenup', NULL, 'greenup', 1, '38.5731300000', '-82.8301700000'),
(7293477, 9254925, 'US', 'Greenville', NULL, 'greenville', 1, '37.2011500000', '-87.1788900000'),
(7293704, 9254925, 'US', 'Guthrie', NULL, 'guthrie', 1, '36.6483800000', '-87.1663900000'),
(7293987, 9254925, 'US', 'Hanson', NULL, 'hanson', 1, '37.4172700000', '-87.4808300000'),
(7294024, 9254925, 'US', 'Hardin', NULL, 'hardin', 1, '36.7647800000', '-88.2953100000'),
(7294044, 9254925, 'US', 'Hardinsburg', NULL, 'hardinsburg', 1, '37.7800600000', '-86.4605300000'),
(7294065, 9254925, 'US', 'Hardyville', NULL, 'hardyville', 1, '37.2542200000', '-85.7860800000'),
(7294072, 9254925, 'US', 'Harlan', NULL, 'harlan', 1, '36.8431400000', '-83.3218500000'),
(7294180, 9254925, 'US', 'Harrodsburg', NULL, 'harrodsburg', 1, '37.7623000000', '-84.8432900000'),
(7294195, 9254925, 'US', 'Hartford', NULL, 'hartford', 1, '37.4511600000', '-86.9091600000'),
(7294267, 9254925, 'US', 'Hawesville', NULL, 'hawesville', 1, '37.9000600000', '-86.7549900000'),
(7294349, 9254925, 'US', 'Hazard', NULL, 'hazard', 1, '37.2495400000', '-83.1932300000'),
(7294352, 9254925, 'US', 'Hazel', NULL, 'hazel', 1, '36.5022800000', '-88.3258700000'),
(7294365, 9254925, 'US', 'Hazel Green', NULL, 'hazel-green', 1, '37.7975900000', '-83.4165700000'),
(7294425, 9254925, 'US', 'Hebron', NULL, 'hebron', 1, '39.0658900000', '-84.7010600000'),
(7294433, 9254925, 'US', 'Hebron Estates', NULL, 'hebron-estates', 1, '38.0495100000', '-85.6660700000'),
(7294494, 9254925, 'US', 'Henderson', NULL, 'henderson', 1, '37.8361500000', '-87.5900100000'),
(7294526, 9254925, 'US', 'Hendron', NULL, 'hendron', 1, '37.0395000000', '-88.6292200000'),
(7294625, 9254925, 'US', 'Hickman', NULL, 'hickman', 1, '36.5711700000', '-89.1861800000'),
(7294661, 9254925, 'US', 'Hickory Hill', NULL, 'hickory-hill', 1, '38.2875700000', '-85.5682900000'),
(7294721, 9254925, 'US', 'High Bridge', NULL, 'high-bridge', 1, '37.8242400000', '-84.7182800000'),
(7294788, 9254925, 'US', 'Highland Heights', NULL, 'highland-heights', 1, '39.0331200000', '-84.4518900000'),
(7294799, 9254925, 'US', 'Highview', NULL, 'highview', 1, '38.1428500000', '-85.6241300000'),
(7294842, 9254925, 'US', 'Hills and Dales', NULL, 'hills-and-dales', 1, '38.3011800000', '-85.6246800000'),
(7294858, 9254925, 'US', 'Hillview', NULL, 'hillview', 1, '38.0697900000', '-85.6855100000'),
(7294872, 9254925, 'US', 'Hindman', NULL, 'hindman', 1, '37.3359300000', '-82.9804400000'),
(7294902, 9254925, 'US', 'Hiseville', NULL, 'hiseville', 1, '37.1008900000', '-85.8124700000'),
(7294937, 9254925, 'US', 'Hodgenville', NULL, 'hodgenville', 1, '37.5739500000', '-85.7399600000'),
(7295045, 9254925, 'US', 'Hollow Creek', NULL, 'hollow-creek', 1, '38.1525700000', '-85.6244000000'),
(7295084, 9254925, 'US', 'Hollyvilla', NULL, 'hollyvilla', 1, '38.0936800000', '-85.7455200000'),
(7295251, 9254925, 'US', 'Hopkinsville', NULL, 'hopkinsville', 1, '36.8656100000', '-87.4911700000'),
(7295288, 9254925, 'US', 'Horse Cave', NULL, 'horse-cave', 1, '37.1795000000', '-85.9069200000'),
(7295393, 9254925, 'US', 'Houston Acres', NULL, 'houston-acres', 1, '38.2142400000', '-85.6138500000'),
(7295599, 9254925, 'US', 'Hunters Hollow', NULL, 'hunters-hollow', 1, '38.0772900000', '-85.6921800000'),
(7295686, 9254925, 'US', 'Hurstbourne Acres', NULL, 'hurstbourne-acres', 1, '38.2211800000', '-85.5891300000'),
(7295689, 9254925, 'US', 'Hurstbourne', NULL, 'hurstbourne', 1, '38.2381300000', '-85.5882900000'),
(7295695, 9254925, 'US', 'Hustonville', NULL, 'hustonville', 1, '37.4731300000', '-84.8157800000'),
(7295712, 9254925, 'US', 'Hyden', NULL, 'hyden', 1, '37.1609300000', '-83.3732400000'),
(7295776, 9254925, 'US', 'Independence', NULL, 'independence', 1, '38.9431200000', '-84.5441100000'),
(7295852, 9254925, 'US', 'Indian Hills', NULL, 'indian-hills', 1, '38.2725700000', '-85.6627400000'),
(7295856, 9254925, 'US', 'Indian Hills Cherokee Section', NULL, 'indian-hills-cherokee-section', 1, '38.2795100000', '-85.6499600000'),
(7295878, 9254925, 'US', 'Inez', NULL, 'inez', 1, '37.8664800000', '-82.5387600000'),
(7295940, 9254925, 'US', 'Ironville', NULL, 'ironville', 1, '38.4564700000', '-82.6923800000'),
(7295954, 9254925, 'US', 'Irvine', NULL, 'irvine', 1, '37.7006400000', '-83.9738100000'),
(7295960, 9254925, 'US', 'Irvington', NULL, 'irvington', 1, '37.8803400000', '-86.2838600000'),
(7295982, 9254925, 'US', 'Island', NULL, 'island', 1, '37.4450500000', '-87.1438900000'),
(7296081, 9254925, 'US', 'Jackson', NULL, 'jackson', 1, '37.5531500000', '-83.3835100000'),
(7296173, 9254925, 'US', 'Jamestown', NULL, 'jamestown', 1, '36.9847900000', '-85.0630100000'),
(7296202, 9254925, 'US', 'Jeff', NULL, 'jeff', 1, '37.2051000000', '-83.1362800000'),
(7296218, 9254925, 'US', 'Jeffersontown', NULL, 'jeffersontown', 1, '38.1942400000', '-85.5644000000'),
(7296219, 9254925, 'US', 'Jeffersonville', NULL, 'jeffersonville', 1, '37.9736900000', '-83.8418600000'),
(7296229, 9254925, 'US', 'Jenkins', NULL, 'jenkins', 1, '37.1734400000', '-82.6309900000'),
(7296734, 9254925, 'US', 'Junction City', NULL, 'junction-city', 1, '37.5867400000', '-84.7938400000'),
(7296798, 9254925, 'US', 'Keeneland', NULL, 'keeneland', 1, '38.2747900000', '-85.5674600000'),
(7296905, 9254925, 'US', 'Kenton Vale', NULL, 'kenton-vale', 1, '39.0508900000', '-84.5191100000'),
(7296955, 9254925, 'US', 'Kenvir', NULL, 'kenvir', 1, '36.8537000000', '-83.1571200000'),
(7296970, 9254925, 'US', 'Kevil', NULL, 'kevil', 1, '37.0850500000', '-88.8867300000'),
(7297062, 9254925, 'US', 'Kingsley', NULL, 'kingsley', 1, '38.2209000000', '-85.6719100000'),
(7297184, 9254925, 'US', 'Knottsville', NULL, 'knottsville', 1, '37.7717200000', '-86.9041600000'),
(7297236, 9254925, 'US', 'La Center', NULL, 'la-center', 1, '37.0767200000', '-88.9736800000'),
(7297238, 9254925, 'US', 'La Grange', NULL, 'la-grange', 1, '38.4075700000', '-85.3788500000'),
(7297241, 9254925, 'US', 'LaFayette', NULL, 'lafayette', 1, '36.6811600000', '-87.6202900000'),
(7297245, 9254925, 'US', 'Kuttawa', NULL, 'kuttawa', 1, '37.0589400000', '-88.1325300000'),
(7297318, 9254925, 'US', 'Lakeside Park', NULL, 'lakeside-park', 1, '39.0356200000', '-84.5691100000'),
(7297329, 9254925, 'US', 'Lakeview Heights', NULL, 'lakeview-heights', 1, '38.1514700000', '-83.5043500000'),
(7297354, 9254925, 'US', 'Lancaster', NULL, 'lancaster', 1, '37.6195200000', '-84.5780000000'),
(7297400, 9254925, 'US', 'Langdon Place', NULL, 'langdon-place', 1, '38.2875600000', '-85.5831500000'),
(7297432, 9254925, 'US', 'Latonia Lakes', NULL, 'latonia-lakes', 1, '38.9675600000', '-84.4977200000'),
(7297581, 9254925, 'US', 'Lawrenceburg', NULL, 'lawrenceburg', 1, '38.0373000000', '-84.8966200000'),
(7297653, 9254925, 'US', 'Lebanon', NULL, 'lebanon', 1, '37.5697900000', '-85.2527400000'),
(7297664, 9254925, 'US', 'Lebanon Junction', NULL, 'lebanon-junction', 1, '37.8345100000', '-85.7319000000'),
(7297673, 9254925, 'US', 'Ledbetter', NULL, 'ledbetter', 1, '37.0475600000', '-88.4769900000'),
(7297882, 9254925, 'US', 'Leitchfield', NULL, 'leitchfield', 1, '37.4800500000', '-86.2938600000'),
(7297974, 9254925, 'US', 'Lewisburg', NULL, 'lewisburg', 1, '36.9864300000', '-86.9472200000'),
(7297979, 9254925, 'US', 'Lewisport', NULL, 'lewisport', 1, '37.9370000000', '-86.9022100000'),
(7297983, 9254925, 'US', 'Lexington', NULL, 'lexington', 1, '37.9886900000', '-84.4777200000'),
(7297999, 9254925, 'US', 'Lexington-Fayette', NULL, 'lexington-fayette', 1, '38.0498000000', '-84.4585500000'),
(7298003, 9254925, 'US', 'Liberty', NULL, 'liberty', 1, '37.3184100000', '-84.9394000000'),
(7298310, 9254925, 'US', 'Lincolnshire', NULL, 'lincolnshire', 1, '38.2231300000', '-85.6213500000'),
(7298805, 9254925, 'US', 'Livermore', NULL, 'livermore', 1, '37.4931000000', '-87.1319400000'),
(7298807, 9254925, 'US', 'Livingston', NULL, 'livingston', 1, '37.2978600000', '-84.2149300000'),
(7298960, 9254925, 'US', 'London', NULL, 'london', 1, '37.1289800000', '-84.0832600000'),
(7298972, 9254925, 'US', 'Lone Oak', NULL, 'lone-oak', 1, '37.4256100000', '-86.0716400000'),
(7299220, 9254925, 'US', 'Loretto', NULL, 'loretto', 1, '37.6353400000', '-85.4008000000'),
(7299275, 9254925, 'US', 'Louisa', NULL, 'louisa', 1, '38.1142500000', '-82.6032100000'),
(7299276, 9254925, 'US', 'Louisville', NULL, 'louisville', 1, '38.2542400000', '-85.7594100000'),
(7299300, 9254925, 'US', 'Lovelaceville', NULL, 'lovelaceville', 1, '36.9686700000', '-88.8308900000'),
(7299504, 9254925, 'US', 'Lowes', NULL, 'lowes', 1, '36.8856100000', '-88.7739400000'),
(7299510, 9254925, 'US', 'Loyall', NULL, 'loyall', 1, '36.8520300000', '-83.3540700000'),
(7299531, 9254925, 'US', 'Ludlow', NULL, 'ludlow', 1, '39.0925600000', '-84.5474400000'),
(7299557, 9254925, 'US', 'Lynch', NULL, 'lynch', 1, '36.9662000000', '-82.9223800000'),
(7299562, 9254925, 'US', 'Lyndon', NULL, 'lyndon', 1, '38.2567400000', '-85.6016300000'),
(7299591, 9254925, 'US', 'Lynnview', NULL, 'lynnview', 1, '38.1784000000', '-85.7096800000'),
(7299642, 9254925, 'US', 'Maceo', NULL, 'maceo', 1, '37.8639400000', '-86.9938800000'),
(7299651, 9254925, 'US', 'Mackville', NULL, 'mackville', 1, '37.7367400000', '-85.0674600000'),
(7299670, 9254925, 'US', 'Madisonville', NULL, 'madisonville', 1, '37.3281000000', '-87.4988900000'),
(7299693, 9254925, 'US', 'Magnolia', NULL, 'magnolia', 1, '37.4439500000', '-85.7435700000'),
(7299741, 9254925, 'US', 'Manchester', NULL, 'manchester', 1, '37.1537000000', '-83.7618600000'),
(7299752, 9254925, 'US', 'Manitou', NULL, 'manitou', 1, '37.3711600000', '-87.5797300000'),
(7299767, 9254925, 'US', 'Manor Creek', NULL, 'manor-creek', 1, '38.2975700000', '-85.5878300000'),
(7299842, 9254925, 'US', 'Marion', NULL, 'marion', 1, '37.3328300000', '-88.0811300000'),
(7299867, 9254925, 'US', 'Marrowbone', NULL, 'marrowbone', 1, '36.8278400000', '-85.5066300000'),
(7299916, 9254925, 'US', 'Martin', NULL, 'martin', 1, '37.5728800000', '-82.7526600000'),
(7299998, 9254925, 'US', 'Maryhill Estates', NULL, 'maryhill-estates', 1, '38.2667400000', '-85.6502400000'),
(7300024, 9254925, 'US', 'Masonville', NULL, 'masonville', 1, '37.6750500000', '-87.0347200000'),
(7300026, 9254925, 'US', 'Massac', NULL, 'massac', 1, '37.0167200000', '-88.7306100000'),
(7300105, 9254925, 'US', 'Mayfield', NULL, 'mayfield', 1, '36.7417200000', '-88.6367200000'),
(7300120, 9254925, 'US', 'Mayking', NULL, 'mayking', 1, '37.1334300000', '-82.7659900000'),
(7300149, 9254925, 'US', 'Mays Lick', NULL, 'mays-lick', 1, '38.5175800000', '-83.8418700000'),
(7300152, 9254925, 'US', 'Maysville', NULL, 'maysville', 1, '38.6411900000', '-83.7443700000'),
(7300155, 9254925, 'US', 'Maytown', NULL, 'maytown', 1, '37.8489700000', '-83.4718500000'),
(7300185, 9254925, 'US', 'McCarr', NULL, 'mccarr', 1, '37.6109400000', '-82.1698600000'),
(7300325, 9254925, 'US', 'McHenry', NULL, 'mchenry', 1, '37.3819900000', '-86.9224900000'),
(7300339, 9254925, 'US', 'McKee', NULL, 'mckee', 1, '37.4303600000', '-83.9979800000'),
(7300411, 9254925, 'US', 'McRoberts', NULL, 'mcroberts', 1, '37.2076000000', '-82.6718200000'),
(7300477, 9254925, 'US', 'Meadowbrook Farm', NULL, 'meadowbrook-farm', 1, '38.2784000000', '-85.5752400000'),
(7300479, 9254925, 'US', 'Meadow Vale', NULL, 'meadow-vale', 1, '38.2831300000', '-85.5719100000'),
(7300487, 9254925, 'US', 'Meadowview Estates', NULL, 'meadowview-estates', 1, '38.2222900000', '-85.6355200000'),
(7300488, 9254925, 'US', 'Meads', NULL, 'meads', 1, '38.4125800000', '-82.7090500000'),
(7300541, 9254925, 'US', 'Melbourne', NULL, 'melbourne', 1, '39.0297800000', '-84.3663300000'),
(7300566, 9254925, 'US', 'Mentor', NULL, 'mentor', 1, '38.8872900000', '-84.2463200000'),
(7300717, 9254925, 'US', 'Middlesboro', NULL, 'middlesboro', 1, '36.6084200000', '-83.7165800000'),
(7300725, 9254925, 'US', 'Middletown', NULL, 'middletown', 1, '38.2453500000', '-85.5388500000'),
(7300739, 9254925, 'US', 'Midway', NULL, 'midway', 1, '38.1509100000', '-84.6838300000'),
(7301013, 9254925, 'US', 'Millersburg', NULL, 'millersburg', 1, '38.3020200000', '-84.1474300000'),
(7301042, 9254925, 'US', 'Millstone', NULL, 'millstone', 1, '37.1673200000', '-82.7515500000'),
(7301060, 9254925, 'US', 'Milton', NULL, 'milton', 1, '38.7236700000', '-85.3694000000'),
(7301094, 9254925, 'US', 'Heritage Creek', NULL, 'heritage-creek', 1, '38.1236800000', '-85.7196800000'),
(7301163, 9254925, 'US', 'Mockingbird Valley', NULL, 'mockingbird-valley', 1, '38.2725700000', '-85.6821800000'),
(7301199, 9254925, 'US', 'Monterey', NULL, 'monterey', 1, '38.4220100000', '-84.8724500000'),
(7301224, 9254925, 'US', 'Monticello', NULL, 'monticello', 1, '36.8297900000', '-84.8491100000'),
(7301297, 9254925, 'US', 'Moorland', NULL, 'moorland', 1, '38.2722900000', '-85.5835700000'),
(7301307, 9254925, 'US', 'Morehead', NULL, 'morehead', 1, '38.1839700000', '-83.4326800000'),
(7301345, 9254925, 'US', 'Morganfield', NULL, 'morganfield', 1, '37.6833800000', '-87.9166900000'),
(7301349, 9254925, 'US', 'Morgantown', NULL, 'morgantown', 1, '37.2256000000', '-86.6836000000'),
(7301420, 9254925, 'US', 'Mortons Gap', NULL, 'mortons-gap', 1, '37.2367100000', '-87.4752800000'),
(7301603, 9254925, 'US', 'Mount Olivet', NULL, 'mount-olivet', 1, '38.5314600000', '-84.0368700000'),
(7301683, 9254925, 'US', 'Mount Sterling', NULL, 'mount-sterling', 1, '38.0564700000', '-83.9432600000'),
(7301702, 9254925, 'US', 'Mount Vernon', NULL, 'mount-vernon', 1, '38.0256300000', '-84.4952200000'),
(7301732, 9254925, 'US', 'Mount Washington', NULL, 'mount-washington', 1, '38.0500600000', '-85.5457900000'),
(7301975, 9254925, 'US', 'Muldraugh', NULL, 'muldraugh', 1, '37.9370200000', '-85.9916300000'),
(7302012, 9254925, 'US', 'Munfordville', NULL, 'munfordville', 1, '37.2722800000', '-85.8910800000'),
(7302035, 9254925, 'US', 'Murray', NULL, 'murray', 1, '36.6103300000', '-88.3147600000'),
(7302040, 9254925, 'US', 'Murray Hill', NULL, 'murray-hill', 1, '38.2903500000', '-85.5882900000'),
(7302200, 9254925, 'US', 'Nebo', NULL, 'nebo', 1, '37.3836600000', '-87.6427800000'),
(7302338, 9254925, 'US', 'New Castle', NULL, 'new-castle', 1, '38.4334000000', '-85.1696800000'),
(7302374, 9254925, 'US', 'New Haven', NULL, 'new-haven', 1, '37.6578400000', '-85.5910700000'),
(7302384, 9254925, 'US', 'New Hope', NULL, 'new-hope', 1, '37.6320100000', '-85.5083000000'),
(7302504, 9254925, 'US', 'Newburg', NULL, 'newburg', 1, '38.1600700000', '-85.6596800000'),
(7302529, 9254925, 'US', 'Newport', NULL, 'newport', 1, '39.0914500000', '-84.4957800000'),
(7302561, 9254925, 'US', 'Nicholasville', NULL, 'nicholasville', 1, '37.8806300000', '-84.5730000000'),
(7302654, 9254925, 'US', 'Norbourne Estates', NULL, 'norbourne-estates', 1, '38.2464600000', '-85.6477400000'),
(7302681, 9254925, 'US', 'North Corbin', NULL, 'north-corbin', 1, '36.9606400000', '-84.0932600000'),
(7302734, 9254925, 'US', 'North Middletown', NULL, 'north-middletown', 1, '38.1450800000', '-84.1113200000'),
(7302761, 9254925, 'US', 'Northfield', NULL, 'northfield', 1, '38.2870100000', '-85.6410700000'),
(7302778, 9254925, 'US', 'Nortonville', NULL, 'nortonville', 1, '37.1908800000', '-87.4527800000'),
(7302780, 9254925, 'US', 'Norwood', NULL, 'norwood', 1, '38.2520200000', '-85.6113500000'),
(7302827, 9254925, 'US', 'Oak Grove', NULL, 'oak-grove', 1, '36.6650500000', '-87.4427900000'),
(7302910, 9254925, 'US', 'Oakbrook', NULL, 'oakbrook', 1, '38.9997800000', '-84.6852200000'),
(7302918, 9254925, 'US', 'Oakland', NULL, 'oakland', 1, '37.0419900000', '-86.2483200000'),
(7303012, 9254925, 'US', 'Okolona', NULL, 'okolona', 1, '38.1411800000', '-85.6877400000'),
(7303022, 9254925, 'US', 'Old Brownsboro Place', NULL, 'old-brownsboro-place', 1, '38.2892400000', '-85.6121800000'),
(7303152, 9254925, 'US', 'Old Washington', NULL, 'old-washington', 1, '38.6159100000', '-83.8085300000'),
(7303194, 9254925, 'US', 'Olive Hill', NULL, 'olive-hill', 1, '38.3000800000', '-83.1740700000'),
(7303223, 9254925, 'US', 'Oneida', NULL, 'oneida', 1, '37.2695300000', '-83.6490800000'),
(7303236, 9254925, 'US', 'Onton', NULL, 'onton', 1, '37.5550400000', '-87.4369500000'),
(7303297, 9254925, 'US', 'Orchard Grass Hills', NULL, 'orchard-grass-hills', 1, '38.3236800000', '-85.5213500000'),
(7303436, 9254925, 'US', 'Owensboro', NULL, 'owensboro', 1, '37.7742200000', '-87.1133300000'),
(7303439, 9254925, 'US', 'Owenton', NULL, 'owenton', 1, '38.5367200000', '-84.8433800000'),
(7303441, 9254925, 'US', 'Owingsville', NULL, 'owingsville', 1, '38.1448000000', '-83.7640800000'),
(7303543, 9254925, 'US', 'Paintsville', NULL, 'paintsville', 1, '37.8145400000', '-82.8071100000'),
(7303593, 9254925, 'US', 'Park City', NULL, 'park-city', 1, '37.0939400000', '-86.0463700000'),
(7303595, 9254925, 'US', 'Park Hills', NULL, 'park-hills', 1, '39.0714500000', '-84.5321700000'),
(7303597, 9254925, 'US', 'Park Lake', NULL, 'park-lake', 1, '38.3450700000', '-85.4732900000'),
(7303602, 9254925, 'US', 'Paris', NULL, 'paris', 1, '38.2098000000', '-84.2529900000'),
(7303634, 9254925, 'US', 'Parkway Village', NULL, 'parkway-village', 1, '38.2125700000', '-85.7402400000'),
(7303672, 9254925, 'US', 'Pathfork', NULL, 'pathfork', 1, '36.7559200000', '-83.4646300000'),
(7303744, 9254925, 'US', 'Payne Gap', NULL, 'payne-gap', 1, '37.1553800000', '-82.6593200000'),
(7303861, 9254925, 'US', 'Pembroke', NULL, 'pembroke', 1, '36.7758800000', '-87.3555600000'),
(7303964, 9254925, 'US', 'Perryville', NULL, 'perryville', 1, '37.6503500000', '-84.9516200000'),
(7304035, 9254925, 'US', 'Petersburg', NULL, 'petersburg', 1, '39.0692200000', '-84.8682800000'),
(7304058, 9254925, 'US', 'Pewee Valley', NULL, 'pewee-valley', 1, '38.3106200000', '-85.4874600000'),
(7304076, 9254925, 'US', 'Phelps', NULL, 'phelps', 1, '37.5128800000', '-82.1501300000'),
(7304232, 9254925, 'US', 'Pikeville', NULL, 'pikeville', 1, '37.4792700000', '-82.5187600000'),
(7304361, 9254925, 'US', 'Pine Knot', NULL, 'pine-knot', 1, '36.6509100000', '-84.4385500000'),
(7304396, 9254925, 'US', 'Pineville', NULL, 'pineville', 1, '36.7620300000', '-83.6949200000'),
(7304448, 9254925, 'US', 'Pioneer Village', NULL, 'pioneer-village', 1, '38.0606200000', '-85.6777400000'),
(7304458, 9254925, 'US', 'Pippa Passes', NULL, 'pippa-passes', 1, '37.3348200000', '-82.8740500000'),
(7304518, 9254925, 'US', 'Plantation', NULL, 'plantation', 1, '38.2834000000', '-85.5910700000'),
(7304523, 9254925, 'US', 'Plano', NULL, 'plano', 1, '36.8803200000', '-86.4183200000'),
(7304690, 9254925, 'US', 'Pleasant View', NULL, 'pleasant-view', 1, '36.6778600000', '-84.1285400000'),
(7304713, 9254925, 'US', 'Pleasure Ridge Park', NULL, 'pleasure-ridge-park', 1, '38.1453500000', '-85.8583000000'),
(7304716, 9254925, 'US', 'Pleasureville', NULL, 'pleasureville', 1, '38.3459000000', '-85.1152300000'),
(7304735, 9254925, 'US', 'Plum Springs', NULL, 'plum-springs', 1, '37.0183800000', '-86.3813800000'),
(7304746, 9254925, 'US', 'Plymouth Village', NULL, 'plymouth-village', 1, '38.2386800000', '-85.6480200000'),
(7304947, 9254925, 'US', 'Poplar Hills', NULL, 'poplar-hills', 1, '38.1775700000', '-85.6930200000'),
(7305110, 9254925, 'US', 'Powderly', NULL, 'powderly', 1, '37.2369900000', '-87.1591600000'),
(7305208, 9254925, 'US', 'Prestonville', NULL, 'prestonville', 1, '38.6797800000', '-85.1902300000'),
(7305210, 9254925, 'US', 'Prestonsburg', NULL, 'prestonsburg', 1, '37.6656500000', '-82.7715500000'),
(7305266, 9254925, 'US', 'Princeton', NULL, 'princeton', 1, '37.1092200000', '-87.8819600000'),
(7305287, 9254925, 'US', 'Prospect', NULL, 'prospect', 1, '38.3450700000', '-85.6155200000'),
(7305294, 9254925, 'US', 'Providence', NULL, 'providence', 1, '38.5745100000', '-85.2210700000'),
(7305344, 9254925, 'US', 'Pryorsburg', NULL, 'pryorsburg', 1, '36.6867200000', '-88.7142200000'),
(7305467, 9254925, 'US', 'Rabbit Hash', NULL, 'rabbit-hash', 1, '38.9414500000', '-84.8471700000'),
(7305500, 9254925, 'US', 'Raceland', NULL, 'raceland', 1, '38.5400800000', '-82.7285000000'),
(7305504, 9254925, 'US', 'Radcliff', NULL, 'radcliff', 1, '37.8403500000', '-85.9491300000'),
(7305643, 9254925, 'US', 'Ravenna', NULL, 'ravenna', 1, '37.6845300000', '-83.9529800000'),
(7305676, 9254925, 'US', 'Raywick', NULL, 'raywick', 1, '37.5603400000', '-85.4305200000'),
(7305805, 9254925, 'US', 'Reidland', NULL, 'reidland', 1, '37.0175600000', '-88.5314300000'),
(7305972, 9254925, 'US', 'Richlawn', NULL, 'richlawn', 1, '38.2547900000', '-85.6394100000'),
(7305974, 9254925, 'US', 'Richmond', NULL, 'richmond', 1, '37.7478600000', '-84.2946500000'),
(7306193, 9254925, 'US', 'River Bluff', NULL, 'river-bluff', 1, '38.3719300000', '-85.6027200000'),
(7306225, 9254925, 'US', 'Riverwood', NULL, 'riverwood', 1, '38.2831300000', '-85.6616300000'),
(7306299, 9254925, 'US', 'Robards', NULL, 'robards', 1, '37.6739300000', '-87.5466700000'),
(7306375, 9254925, 'US', 'Robinswood', NULL, 'robinswood', 1, '38.2845100000', '-85.6502400000'),
(7306377, 9254925, 'US', 'Rochester', NULL, 'rochester', 1, '37.2125400000', '-86.8930500000'),
(7306485, 9254925, 'US', 'Rockholds', NULL, 'rockholds', 1, '36.8287000000', '-84.1163200000'),
(7306563, 9254925, 'US', 'Rockport', NULL, 'rockport', 1, '37.3339300000', '-86.9961100000'),
(7306677, 9254925, 'US', 'Rolling Fields', NULL, 'rolling-fields', 1, '38.2678500000', '-85.6716300000'),
(7306691, 9254925, 'US', 'Rolling Hills', NULL, 'rolling-hills', 1, '38.2825700000', '-85.5744000000'),
(7306777, 9254925, 'US', 'Rosine', NULL, 'rosine', 1, '37.4503300000', '-86.7413800000'),
(7306972, 9254925, 'US', 'Russell', NULL, 'russell', 1, '38.5173000000', '-82.6976600000'),
(7307012, 9254925, 'US', 'Russell Springs', NULL, 'russell-springs', 1, '37.0561800000', '-85.0885700000'),
(7307025, 9254925, 'US', 'Russellville', NULL, 'russellville', 1, '36.8453200000', '-86.8872200000'),
(7307052, 9254925, 'US', 'Ryland Heights', NULL, 'ryland-heights', 1, '38.9575600000', '-84.4630000000'),
(7307057, 9254925, 'US', 'Sacramento', NULL, 'sacramento', 1, '37.4158800000', '-87.2655500000'),
(7307068, 9254925, 'US', 'Sadieville', NULL, 'sadieville', 1, '38.3892400000', '-84.5374400000'),
(7307122, 9254925, 'US', 'Saint Charles', NULL, 'saint-charles', 1, '37.1861600000', '-87.5558400000'),
(7307238, 9254925, 'US', 'Saint Matthews', NULL, 'saint-matthews', 1, '38.2528500000', '-85.6557900000'),
(7307275, 9254925, 'US', 'Saint Regis Park', NULL, 'saint-regis-park', 1, '38.2267400000', '-85.6166300000'),
(7307315, 9254925, 'US', 'Salem', NULL, 'salem', 1, '37.2645000000', '-88.2442000000'),
(7307386, 9254925, 'US', 'Salt Lick', NULL, 'salt-lick', 1, '38.1200800000', '-83.6146300000'),
(7307435, 9254925, 'US', 'Salvisa', NULL, 'salvisa', 1, '37.9167400000', '-84.8577300000'),
(7307447, 9254925, 'US', 'Salyersville', NULL, 'salyersville', 1, '37.7525900000', '-83.0687800000'),
(7307564, 9254925, 'US', 'Sanders', NULL, 'sanders', 1, '38.6553400000', '-84.9471700000'),
(7307616, 9254925, 'US', 'Sandy Hook', NULL, 'sandy-hook', 1, '38.0864700000', '-83.1262800000'),
(7307641, 9254925, 'US', 'Sardis', NULL, 'sardis', 1, '38.5317400000', '-83.9557600000'),
(7307782, 9254925, 'US', 'Science Hill', NULL, 'science-hill', 1, '37.1770200000', '-84.6357800000'),
(7307837, 9254925, 'US', 'Scottsville', NULL, 'scottsville', 1, '36.7533800000', '-86.1905400000'),
(7307879, 9254925, 'US', 'Sebree', NULL, 'sebree', 1, '37.6069900000', '-87.5286200000'),
(7307896, 9254925, 'US', 'Sedalia', NULL, 'sedalia', 1, '36.6411700000', '-88.6053300000');
INSERT INTO `[[dbprefix]]t_city` VALUES
(7307924, 9254925, 'US', 'Seneca Gardens', NULL, 'seneca-gardens', 1, '38.2289600000', '-85.6774600000'),
(7308063, 9254925, 'US', 'Sharpsburg', NULL, 'sharpsburg', 1, '38.2020200000', '-83.9293700000'),
(7308122, 9254925, 'US', 'Shelbyville', NULL, 'shelbyville', 1, '38.2120100000', '-85.2235700000'),
(7308163, 9254925, 'US', 'Shepherdsville', NULL, 'shepherdsville', 1, '37.9884000000', '-85.7157900000'),
(7308225, 9254925, 'US', 'Shively', NULL, 'shively', 1, '38.2000700000', '-85.8227400000'),
(7308401, 9254925, 'US', 'Silver Grove', NULL, 'silver-grove', 1, '39.0345100000', '-84.3902200000'),
(7308453, 9254925, 'US', 'Simpsonville', NULL, 'simpsonville', 1, '38.2225700000', '-85.3552300000'),
(7308644, 9254925, 'US', 'Slaughters', NULL, 'slaughters', 1, '37.4889300000', '-87.5022200000'),
(7308834, 9254925, 'US', 'Smithfield', NULL, 'smithfield', 1, '38.3867300000', '-85.2569000000'),
(7308835, 9254925, 'US', 'Smithland', NULL, 'smithland', 1, '37.1389400000', '-88.4033700000'),
(7308838, 9254925, 'US', 'Smiths Grove', NULL, 'smiths-grove', 1, '37.0525500000', '-86.2077600000'),
(7308922, 9254925, 'US', 'Somerset', NULL, 'somerset', 1, '37.0920200000', '-84.6041100000'),
(7308931, 9254925, 'US', 'Sonora', NULL, 'sonora', 1, '37.5242300000', '-85.8930200000'),
(7308955, 9254925, 'US', 'South Carrollton', NULL, 'south-carrollton', 1, '37.3375400000', '-87.1419400000'),
(7309049, 9254925, 'US', 'South Park View', NULL, 'south-park-view', 1, '38.1184000000', '-85.7216300000'),
(7309071, 9254925, 'US', 'South Wallins', NULL, 'south-wallins', 1, '36.8150900000', '-83.4107400000'),
(7309076, 9254925, 'US', 'South Shore', NULL, 'south-shore', 1, '38.7209100000', '-82.9582300000'),
(7309097, 9254925, 'US', 'Southgate', NULL, 'southgate', 1, '39.0720000000', '-84.4727200000'),
(7309142, 9254925, 'US', 'Sparta', NULL, 'sparta', 1, '38.6770100000', '-84.9068900000'),
(7309241, 9254925, 'US', 'Spottsville', NULL, 'spottsville', 1, '37.8575400000', '-87.4136200000'),
(7309316, 9254925, 'US', 'Spring Mill', NULL, 'spring-mill', 1, '38.1434000000', '-85.6307900000'),
(7309320, 9254925, 'US', 'Spring Valley', NULL, 'spring-valley', 1, '38.2970100000', '-85.6113500000'),
(7309329, 9254925, 'US', 'Springfield', NULL, 'springfield', 1, '37.6853400000', '-85.2221800000'),
(7309335, 9254925, 'US', 'Springlee', NULL, 'springlee', 1, '38.2409000000', '-85.6427400000'),
(7309414, 9254925, 'US', 'Saint Dennis', NULL, 'saint-dennis', 1, '38.1884000000', '-85.8458000000'),
(7309477, 9254925, 'US', 'Stamping Ground', NULL, 'stamping-ground', 1, '38.2717400000', '-84.6863400000'),
(7309487, 9254925, 'US', 'Stanford', NULL, 'stanford', 1, '37.5311900000', '-84.6618900000'),
(7309498, 9254925, 'US', 'Stanton', NULL, 'stanton', 1, '37.8456400000', '-83.8582500000'),
(7309559, 9254925, 'US', 'Stearns', NULL, 'stearns', 1, '36.6989700000', '-84.4774400000'),
(7309949, 9254925, 'US', 'Strathmoor Manor', NULL, 'strathmoor-manor', 1, '38.2181300000', '-85.6835700000'),
(7309950, 9254925, 'US', 'Strathmoor Village', NULL, 'strathmoor-village', 1, '38.2231300000', '-85.6777400000'),
(7309952, 9254925, 'US', 'Strathmoor Gardens', NULL, 'strathmoor-gardens', 1, '38.2189600000', '-85.6735700000'),
(7310030, 9254925, 'US', 'Sturgis', NULL, 'sturgis', 1, '37.5467100000', '-87.9839100000'),
(7310245, 9254925, 'US', 'Summer Shade', NULL, 'summer-shade', 1, '36.8842200000', '-85.7024700000'),
(7310248, 9254925, 'US', 'Summersville', NULL, 'summersville', 1, '37.3261700000', '-85.5444100000'),
(7310378, 9254925, 'US', 'Sycamore', NULL, 'sycamore', 1, '38.2470200000', '-85.5607900000'),
(7310416, 9254925, 'US', 'Symsonia', NULL, 'symsonia', 1, '36.9203400000', '-88.5200400000'),
(7310616, 9254925, 'US', 'Taylor Mill', NULL, 'taylor-mill', 1, '38.9975600000', '-84.4963300000'),
(7310638, 9254925, 'US', 'Taylorsville', NULL, 'taylorsville', 1, '38.0317300000', '-85.3424500000'),
(7310671, 9254925, 'US', 'Ten Broeck', NULL, 'ten-broeck', 1, '38.2970100000', '-85.5810700000'),
(7310846, 9254925, 'US', 'Thornhill', NULL, 'thornhill', 1, '38.2884000000', '-85.6257900000'),
(7311012, 9254925, 'US', 'Tolu', NULL, 'tolu', 1, '37.4331100000', '-88.2453100000'),
(7311035, 9254925, 'US', 'Tompkinsville', NULL, 'tompkinsville', 1, '36.7022800000', '-85.6916400000'),
(7311246, 9254925, 'US', 'Trenton', NULL, 'trenton', 1, '36.7239300000', '-87.2627800000'),
(7311646, 9254925, 'US', 'Union', NULL, 'union', 1, '38.9459000000', '-84.6805000000'),
(7311722, 9254925, 'US', 'Uniontown', NULL, 'uniontown', 1, '37.7753200000', '-87.9305800000'),
(7311913, 9254925, 'US', 'Upton', NULL, 'upton', 1, '37.4650600000', '-85.8933000000'),
(7311959, 9254925, 'US', 'Van Lear', NULL, 'van-lear', 1, '37.7712100000', '-82.7579400000'),
(7311963, 9254925, 'US', 'Valley Station', NULL, 'valley-station', 1, '38.1111800000', '-85.8702400000'),
(7311976, 9254925, 'US', 'Vanceburg', NULL, 'vanceburg', 1, '38.5992400000', '-83.3188000000'),
(7312051, 9254925, 'US', 'Verona', NULL, 'verona', 1, '38.8184000000', '-84.6607800000'),
(7312057, 9254925, 'US', 'Versailles', NULL, 'versailles', 1, '38.0525800000', '-84.7299500000'),
(7312072, 9254925, 'US', 'Vicco', NULL, 'vicco', 1, '37.2156500000', '-83.0615500000'),
(7312088, 9254925, 'US', 'Villa Hills', NULL, 'villa-hills', 1, '39.0633900000', '-84.5930000000'),
(7312096, 9254925, 'US', 'Vine Grove', NULL, 'vine-grove', 1, '37.8100700000', '-85.9813500000'),
(7312119, 9254925, 'US', 'Virgie', NULL, 'virgie', 1, '37.3351000000', '-82.5796000000'),
(7312121, 9254925, 'US', 'Visalia', NULL, 'visalia', 1, '38.9161800000', '-84.4491100000'),
(7312605, 9254925, 'US', 'Wallins Creek', NULL, 'wallins-creek', 1, '36.8312000000', '-83.4168500000'),
(7312671, 9254925, 'US', 'Walton', NULL, 'walton', 1, '38.8756200000', '-84.6102200000'),
(7312710, 9254925, 'US', 'Warfield', NULL, 'warfield', 1, '37.8442600000', '-82.4173700000'),
(7312734, 9254925, 'US', 'Warsaw', NULL, 'warsaw', 1, '38.7834000000', '-84.9016200000'),
(7312766, 9254925, 'US', 'Water Valley', NULL, 'water-valley', 1, '36.5656200000', '-88.8111700000'),
(7312811, 9254925, 'US', 'Watterson Park', NULL, 'watterson-park', 1, '38.1922900000', '-85.6832900000'),
(7312824, 9254925, 'US', 'Waverly', NULL, 'waverly', 1, '37.7097700000', '-87.8128000000'),
(7312834, 9254925, 'US', 'Wayland', NULL, 'wayland', 1, '37.4451000000', '-82.8051600000'),
(7312923, 9254925, 'US', 'Wellington', NULL, 'wellington', 1, '38.2164600000', '-85.6691300000'),
(7312983, 9254925, 'US', 'West Buechel', NULL, 'west-buechel', 1, '38.1970100000', '-85.6632900000'),
(7313038, 9254925, 'US', 'West Liberty', NULL, 'west-liberty', 1, '37.9214800000', '-83.2596200000'),
(7313047, 9254925, 'US', 'West Point', NULL, 'west-point', 1, '37.9995200000', '-85.9435700000'),
(7313088, 9254925, 'US', 'Westport', NULL, 'westport', 1, '38.4789500000', '-85.4749600000'),
(7313093, 9254925, 'US', 'Westwood', NULL, 'westwood', 1, '38.4831400000', '-82.6698800000'),
(7313106, 9254925, 'US', 'Wheatcroft', NULL, 'wheatcroft', 1, '37.4900500000', '-87.8628000000'),
(7313140, 9254925, 'US', 'Wheelwright', NULL, 'wheelwright', 1, '37.3326000000', '-82.7209900000'),
(7313170, 9254925, 'US', 'Whipps Millgate', NULL, 'whipps-millgate', 1, '38.2734000000', '-85.5721800000'),
(7313285, 9254925, 'US', 'White Plains', NULL, 'white-plains', 1, '37.1836600000', '-87.3836100000'),
(7313346, 9254925, 'US', 'Whitesburg', NULL, 'whitesburg', 1, '37.1184300000', '-82.8268300000'),
(7313354, 9254925, 'US', 'Whitesville', NULL, 'whitesville', 1, '37.6831100000', '-86.8713800000'),
(7313358, 9254925, 'US', 'Whitley City', NULL, 'whitley-city', 1, '36.7234100000', '-84.4704900000'),
(7313395, 9254925, 'US', 'Wickliffe', NULL, 'wickliffe', 1, '36.9647800000', '-89.0892300000'),
(7313448, 9254925, 'US', 'Wilder', NULL, 'wilder', 1, '39.0564500000', '-84.4868900000'),
(7313470, 9254925, 'US', 'Wildwood', NULL, 'wildwood', 1, '38.2495200000', '-85.5730200000'),
(7313563, 9254925, 'US', 'Williamsburg', NULL, 'williamsburg', 1, '36.7434200000', '-84.1596600000'),
(7313572, 9254925, 'US', 'Williamstown', NULL, 'williamstown', 1, '38.6381200000', '-84.5605000000'),
(7313589, 9254925, 'US', 'Willisburg', NULL, 'willisburg', 1, '37.8097900000', '-85.1263500000'),
(7313628, 9254925, 'US', 'Wilmore', NULL, 'wilmore', 1, '37.8620200000', '-84.6616100000'),
(7313697, 9254925, 'US', 'Winchester', NULL, 'winchester', 1, '37.9900800000', '-84.1796500000'),
(7313708, 9254925, 'US', 'Winding Falls', NULL, 'winding-falls', 1, '38.2831300000', '-85.6438500000'),
(7313719, 9254925, 'US', 'Windy Hills', NULL, 'windy-hills', 1, '38.2739600000', '-85.6344100000'),
(7313732, 9254925, 'US', 'Wingo', NULL, 'wingo', 1, '36.6422800000', '-88.7389400000'),
(7313938, 9254925, 'US', 'Woodburn', NULL, 'woodburn', 1, '36.8425400000', '-86.5274900000'),
(7313941, 9254925, 'US', 'Woodbury', NULL, 'woodbury', 1, '37.1833800000', '-86.6338800000'),
(7313956, 9254925, 'US', 'Woodland Hills', NULL, 'woodland-hills', 1, '38.2403500000', '-85.5241300000'),
(7313960, 9254925, 'US', 'Woodlawn', NULL, 'woodlawn', 1, '39.0925600000', '-84.4752200000'),
(7313966, 9254925, 'US', 'Woodlawn Park', NULL, 'woodlawn-park', 1, '38.2614600000', '-85.6291300000'),
(7314044, 9254925, 'US', 'Worthington', NULL, 'worthington', 1, '38.5484100000', '-82.7243300000'),
(7314047, 9254925, 'US', 'Worthington Hills', NULL, 'worthington-hills', 1, '38.3089600000', '-85.5269000000'),
(7314048, 9254925, 'US', 'Worthville', NULL, 'worthville', 1, '38.6097900000', '-85.0674500000'),
(7314072, 9254925, 'US', 'Wurtland', NULL, 'wurtland', 1, '38.5503600000', '-82.7779400000'),
(7314295, 7331987, 'US', 'Abbeville', NULL, 'abbeville', 1, '29.9746500000', '-92.1342900000'),
(7314388, 7331987, 'US', 'Abita Springs', NULL, 'abita-springs', 1, '30.4786400000', '-90.0400800000'),
(7314409, 7331987, 'US', 'Addis', NULL, 'addis', 1, '30.3538000000', '-91.2653900000'),
(7314498, 7331987, 'US', 'Albany', NULL, 'albany', 1, '30.5043600000', '-90.5823100000'),
(7314550, 7331987, 'US', 'Alexandria', NULL, 'alexandria', 1, '31.3112900000', '-92.4451400000'),
(7314712, 7331987, 'US', 'Ama', NULL, 'ama', 1, '29.9521500000', '-90.2964700000'),
(7314724, 7331987, 'US', 'Amelia', NULL, 'amelia', 1, '29.6663200000', '-91.1020400000'),
(7314744, 7331987, 'US', 'Amite', NULL, 'amite', 1, '30.7265700000', '-90.5089800000'),
(7314770, 7331987, 'US', 'Anacoco', NULL, 'anacoco', 1, '31.2521300000', '-93.3412800000'),
(7314833, 7331987, 'US', 'Angie', NULL, 'angie', 1, '30.9665700000', '-89.8095200000'),
(7314956, 7331987, 'US', 'Arabi', NULL, 'arabi', 1, '29.9543700000', '-90.0053500000'),
(7314969, 7331987, 'US', 'Arcadia', NULL, 'arcadia', 1, '32.5490400000', '-92.9201600000'),
(7315034, 7331987, 'US', 'Arnaudville', NULL, 'arnaudville', 1, '30.3977000000', '-91.9315100000'),
(7315083, 7331987, 'US', 'Ashland', NULL, 'ashland', 1, '32.1418300000', '-93.0982200000'),
(7315137, 7331987, 'US', 'Athens', NULL, 'athens', 1, '32.6504300000', '-93.0257200000'),
(7315153, 7331987, 'US', 'Atlanta', NULL, 'atlanta', 1, '31.8051700000', '-92.7382100000'),
(7315225, 7331987, 'US', 'Avondale', NULL, 'avondale', 1, '29.9129800000', '-90.2036900000'),
(7315312, 7331987, 'US', 'Baker', NULL, 'baker', 1, '30.5882400000', '-91.1681600000'),
(7315342, 7331987, 'US', 'Baldwin', NULL, 'baldwin', 1, '29.8379800000', '-91.5442800000'),
(7315350, 7331987, 'US', 'Ball', NULL, 'ball', 1, '31.4154600000', '-92.4118000000'),
(7315392, 7331987, 'US', 'Banks Springs', NULL, 'banks-springs', 1, '32.0821000000', '-92.0929100000'),
(7315422, 7331987, 'US', 'Barataria', NULL, 'barataria', 1, '29.7232700000', '-90.1236900000'),
(7315514, 7331987, 'US', 'Basile', NULL, 'basile', 1, '30.4852000000', '-92.5959700000'),
(7315520, 7331987, 'US', 'Baskin', NULL, 'baskin', 1, '32.2590400000', '-91.7476300000'),
(7315535, 7331987, 'US', 'Bastrop', NULL, 'bastrop', 1, '32.7782800000', '-91.9114400000'),
(7315546, 7331987, 'US', 'Batchelor', NULL, 'batchelor', 1, '30.8404600000', '-91.6615100000'),
(7315588, 7331987, 'US', 'Baton Rouge', NULL, 'baton-rouge', 1, '30.4433200000', '-91.1874700000'),
(7315611, 7331987, 'US', 'Bawcomville', NULL, 'bawcomville', 1, '32.4704200000', '-92.1673600000'),
(7315768, 7331987, 'US', 'Bayou Cane', NULL, 'bayou-cane', 1, '29.6241000000', '-90.7512000000'),
(7315845, 7331987, 'US', 'Bayou Gauche', NULL, 'bayou-gauche', 1, '29.7874300000', '-90.4131400000'),
(7315850, 7331987, 'US', 'Bayou Goula', NULL, 'bayou-goula', 1, '30.2099200000', '-91.1689900000'),
(7315955, 7331987, 'US', 'Bayou Vista', NULL, 'bayou-vista', 1, '29.6896500000', '-91.2709400000'),
(7316273, 7331987, 'US', 'Belcher', NULL, 'belcher', 1, '32.7487500000', '-93.8329600000'),
(7316329, 7331987, 'US', 'Belle Chasse', NULL, 'belle-chasse', 1, '29.8549300000', '-89.9906300000'),
(7316362, 7331987, 'US', 'Belle Rose', NULL, 'belle-rose', 1, '30.0504800000', '-91.0414900000'),
(7316439, 7331987, 'US', 'Belmont', NULL, 'belmont', 1, '31.7162800000', '-93.5090700000'),
(7316471, 7331987, 'US', 'Benton', NULL, 'benton', 1, '32.6948700000', '-93.7418500000'),
(7316497, 7331987, 'US', 'Bernice', NULL, 'bernice', 1, '32.8220900000', '-92.6579300000'),
(7316523, 7331987, 'US', 'Berwick', NULL, 'berwick', 1, '29.6946500000', '-91.2189900000'),
(7316727, 7331987, 'US', 'Bienville', NULL, 'bienville', 1, '32.3568200000', '-92.9804400000'),
(7317201, 7331987, 'US', 'Blanchard', NULL, 'blanchard', 1, '32.5809800000', '-93.8926800000'),
(7317412, 7331987, 'US', 'Bogalusa', NULL, 'bogalusa', 1, '30.7910200000', '-89.8486900000'),
(7317557, 7331987, 'US', 'Bonita', NULL, 'bonita', 1, '32.9193000000', '-91.6770700000'),
(7317607, 7331987, 'US', 'Boothville', NULL, 'boothville', 1, '29.3435500000', '-89.4197800000'),
(7317617, 7331987, 'US', 'Bordelonville', NULL, 'bordelonville', 1, '31.1054600000', '-91.9073400000'),
(7317639, 7331987, 'US', 'Bossier City', NULL, 'bossier-city', 1, '32.5159900000', '-93.7321200000'),
(7317709, 7331987, 'US', 'Bourg', NULL, 'bourg', 1, '29.5535500000', '-90.6023100000'),
(7317718, 7331987, 'US', 'Boutte', NULL, 'boutte', 1, '29.9024300000', '-90.3881400000'),
(7317734, 7331987, 'US', 'Boyce', NULL, 'boyce', 1, '31.3904600000', '-92.6693100000'),
(7317772, 7331987, 'US', 'Branch', NULL, 'branch', 1, '30.3488100000', '-92.2676300000'),
(7317801, 7331987, 'US', 'Breaux Bridge', NULL, 'breaux-bridge', 1, '30.2735300000', '-91.8992800000'),
(7317864, 7331987, 'US', 'Bridge City', NULL, 'bridge-city', 1, '29.9332600000', '-90.1700700000'),
(7317985, 7331987, 'US', 'Broussard', NULL, 'broussard', 1, '30.1471500000', '-91.9612300000'),
(7318037, 7331987, 'US', 'Brownsfield', NULL, 'brownsfield', 1, '30.5465800000', '-91.1206600000'),
(7318055, 7331987, 'US', 'Brownsville', NULL, 'brownsville', 1, '32.4870900000', '-92.1543000000'),
(7318163, 7331987, 'US', 'Brusly', NULL, 'brusly', 1, '30.3943600000', '-91.2537200000'),
(7318178, 7331987, 'US', 'Bryceland', NULL, 'bryceland', 1, '32.4509900000', '-92.9793300000'),
(7318320, 7331987, 'US', 'Bunkie', NULL, 'bunkie', 1, '30.9532500000', '-92.1826300000'),
(7318332, 7331987, 'US', 'Buras', NULL, 'buras', 1, '29.3518900000', '-89.5242200000'),
(7318541, 7331987, 'US', 'Cade', NULL, 'cade', 1, '30.0874200000', '-91.9054000000'),
(7318610, 7331987, 'US', 'Calhoun', NULL, 'calhoun', 1, '32.5126500000', '-92.3584700000'),
(7318673, 7331987, 'US', 'Calvin', NULL, 'calvin', 1, '31.9657200000', '-92.7757100000'),
(7318695, 7331987, 'US', 'Cameron', NULL, 'cameron', 1, '29.7977200000', '-93.3251500000'),
(7318812, 7331987, 'US', 'Campti', NULL, 'campti', 1, '31.8935000000', '-93.1182200000'),
(7318988, 7331987, 'US', 'Cankton', NULL, 'cankton', 1, '30.3460300000', '-92.1095700000'),
(7319030, 7331987, 'US', 'Carencro', NULL, 'carencro', 1, '30.3171400000', '-92.0490100000'),
(7319058, 7331987, 'US', 'Carlyss', NULL, 'carlyss', 1, '30.1688200000', '-93.3759900000'),
(7319180, 7331987, 'US', 'Carville', NULL, 'carville', 1, '30.2174200000', '-91.0962100000'),
(7319231, 7331987, 'US', 'Castor', NULL, 'castor', 1, '32.2532100000', '-93.1657200000'),
(7319261, 7331987, 'US', 'Catahoula', NULL, 'catahoula', 1, '30.2146400000', '-91.7090000000'),
(7319339, 7331987, 'US', 'Cecilia', NULL, 'cecilia', 1, '30.3371400000', '-91.8531700000'),
(7319417, 7331987, 'US', 'Center Point', NULL, 'center-point', 1, '31.2482400000', '-92.2098500000'),
(7319435, 7331987, 'US', 'Central', NULL, 'central', 1, '30.5543500000', '-91.0367700000'),
(7319507, 7331987, 'US', 'Chackbay', NULL, 'chackbay', 1, '29.8835400000', '-90.7973200000'),
(7319518, 7331987, 'US', 'Chalmette', NULL, 'chalmette', 1, '29.9429600000', '-89.9653700000'),
(7319589, 7331987, 'US', 'Charenton', NULL, 'charenton', 1, '29.8815900000', '-91.5251100000'),
(7319634, 7331987, 'US', 'Chataignier', NULL, 'chataignier', 1, '30.5685300000', '-92.3220700000'),
(7319649, 7331987, 'US', 'Chatham', NULL, 'chatham', 1, '32.3062600000', '-92.4504200000'),
(7319668, 7331987, 'US', 'Chauvin', NULL, 'chauvin', 1, '29.4385500000', '-90.5953700000'),
(7319710, 7331987, 'US', 'Cheneyville', NULL, 'cheneyville', 1, '31.0149100000', '-92.2873500000'),
(7319848, 7331987, 'US', 'Choctaw', NULL, 'choctaw', 1, '29.8391000000', '-90.6909200000'),
(7319883, 7331987, 'US', 'Choudrant', NULL, 'choudrant', 1, '32.5301500000', '-92.5143100000'),
(7319972, 7331987, 'US', 'Church Point', NULL, 'church-point', 1, '30.4029800000', '-92.2151300000'),
(7320107, 7331987, 'US', 'Claiborne', NULL, 'claiborne', 1, '32.5159800000', '-92.1918000000'),
(7320134, 7331987, 'US', 'Clarence', NULL, 'clarence', 1, '31.8215500000', '-93.0296100000'),
(7320154, 7331987, 'US', 'Clarks', NULL, 'clarks', 1, '32.0265500000', '-92.1390300000'),
(7320174, 7331987, 'US', 'Clayton', NULL, 'clayton', 1, '31.7226600000', '-91.5431800000'),
(7320277, 7331987, 'US', 'Clinton', NULL, 'clinton', 1, '30.8657400000', '-91.0156600000'),
(7320425, 7331987, 'US', 'Colfax', NULL, 'colfax', 1, '31.5190600000', '-92.7068200000'),
(7320489, 7331987, 'US', 'Collinston', NULL, 'collinston', 1, '32.6909700000', '-91.8717900000'),
(7320492, 7331987, 'US', 'Columbia', NULL, 'columbia', 1, '32.1051600000', '-92.0779100000'),
(7320643, 7331987, 'US', 'Convent', NULL, 'convent', 1, '30.0207600000', '-90.8298200000'),
(7320648, 7331987, 'US', 'Converse', NULL, 'converse', 1, '31.7815600000', '-93.6937900000'),
(7320871, 7331987, 'US', 'Cotton Valley', NULL, 'cotton-valley', 1, '32.8193100000', '-93.4176700000'),
(7320874, 7331987, 'US', 'Cottonport', NULL, 'cottonport', 1, '30.9840800000', '-92.0534600000'),
(7321005, 7331987, 'US', 'Covington', NULL, 'covington', 1, '30.4754900000', '-90.1004200000'),
(7321014, 7331987, 'US', 'Coushatta', NULL, 'coushatta', 1, '32.0148800000', '-93.3421200000'),
(7321133, 7331987, 'US', 'Creola', NULL, 'creola', 1, '31.4283200000', '-92.4787900000'),
(7321148, 7331987, 'US', 'Crescent', NULL, 'crescent', 1, '30.2477000000', '-91.2873300000'),
(7321310, 7331987, 'US', 'Crowley', NULL, 'crowley', 1, '30.2140900000', '-92.3745800000'),
(7321358, 7331987, 'US', 'Cullen', NULL, 'cullen', 1, '32.9690300000', '-93.4507300000'),
(7321399, 7331987, 'US', 'Cut Off', NULL, 'cut-off', 1, '29.5427200000', '-90.3381400000'),
(7321770, 7331987, 'US', 'DeQuincy', NULL, 'dequincy', 1, '30.4504800000', '-93.4332200000'),
(7321781, 7331987, 'US', 'DeRidder', NULL, 'deridder', 1, '30.8463100000', '-93.2890500000'),
(7321920, 7331987, 'US', 'Delcambre', NULL, 'delcambre', 1, '29.9482600000', '-91.9887300000'),
(7321929, 7331987, 'US', 'Delhi', NULL, 'delhi', 1, '32.4576400000', '-91.4931700000'),
(7321953, 7331987, 'US', 'Delta', NULL, 'delta', 1, '32.3257000000', '-90.9270500000'),
(7321988, 7331987, 'US', 'Denham Springs', NULL, 'denham-springs', 1, '30.4874000000', '-90.9575300000'),
(7322016, 7331987, 'US', 'Des Allemands', NULL, 'des-allemands', 1, '29.8238200000', '-90.4750800000'),
(7322034, 7331987, 'US', 'Destrehan', NULL, 'destrehan', 1, '29.9432200000', '-90.3534500000'),
(7322048, 7331987, 'US', 'Deville', NULL, 'deville', 1, '31.3574000000', '-92.1654100000'),
(7322765, 7331987, 'US', 'Dodson', NULL, 'dodson', 1, '32.0804400000', '-92.6604300000'),
(7322811, 7331987, 'US', 'Donaldsonville', NULL, 'donaldsonville', 1, '30.1011400000', '-90.9941200000'),
(7322897, 7331987, 'US', 'Downsville', NULL, 'downsville', 1, '32.6268100000', '-92.4143100000'),
(7322910, 7331987, 'US', 'Doyline', NULL, 'doyline', 1, '32.5357100000', '-93.4110000000'),
(7323036, 7331987, 'US', 'Dry Prong', NULL, 'dry-prong', 1, '31.5812900000', '-92.5329200000'),
(7323049, 7331987, 'US', 'Dubberly', NULL, 'dubberly', 1, '32.5368200000', '-93.2423900000'),
(7323065, 7331987, 'US', 'Dubach', NULL, 'dubach', 1, '32.6991000000', '-92.6566000000'),
(7323131, 7331987, 'US', 'Dulac', NULL, 'dulac', 1, '29.3888300000', '-90.7139800000'),
(7323190, 7331987, 'US', 'Duson', NULL, 'duson', 1, '30.2357600000', '-92.1854000000'),
(7323369, 7331987, 'US', 'East Hodge', NULL, 'east-hodge', 1, '32.2779300000', '-92.7140400000'),
(7323488, 7331987, 'US', 'Eastwood', NULL, 'eastwood', 1, '32.5562600000', '-93.5671200000'),
(7323546, 7331987, 'US', 'Eden Isle', NULL, 'eden-isle', 1, '30.2285300000', '-89.7986700000'),
(7323551, 7331987, 'US', 'Edgard', NULL, 'edgard', 1, '30.0432600000', '-90.5600900000'),
(7323555, 7331987, 'US', 'Edgefield', NULL, 'edgefield', 1, '32.0507200000', '-93.3329500000'),
(7323596, 7331987, 'US', 'Egan', NULL, 'egan', 1, '30.2368700000', '-92.5059700000'),
(7323639, 7331987, 'US', 'Elizabeth', NULL, 'elizabeth', 1, '30.8685300000', '-92.7929300000'),
(7323711, 7331987, 'US', 'Elmwood', NULL, 'elmwood', 1, '29.9565900000', '-90.1898000000'),
(7323727, 7331987, 'US', 'Elton', NULL, 'elton', 1, '30.4813100000', '-92.6957000000'),
(7323768, 7331987, 'US', 'Empire', NULL, 'empire', 1, '29.3877200000', '-89.5972800000'),
(7323830, 7331987, 'US', 'Epps', NULL, 'epps', 1, '32.6040300000', '-91.4779000000'),
(7323842, 7331987, 'US', 'Erath', NULL, 'erath', 1, '29.9582600000', '-92.0359600000'),
(7323857, 7331987, 'US', 'Eros', NULL, 'eros', 1, '32.3923700000', '-92.4240300000'),
(7323860, 7331987, 'US', 'Erwinville', NULL, 'erwinville', 1, '30.5310200000', '-91.4078900000'),
(7323873, 7331987, 'US', 'Estelle', NULL, 'estelle', 1, '29.8457600000', '-90.1067400000'),
(7323880, 7331987, 'US', 'Estherwood', NULL, 'estherwood', 1, '30.1807600000', '-92.4643000000'),
(7323900, 7331987, 'US', 'Eunice', NULL, 'eunice', 1, '30.4943700000', '-92.4176300000'),
(7324031, 7331987, 'US', 'Evergreen', NULL, 'evergreen', 1, '30.9526900000', '-92.1087300000'),
(7324179, 7331987, 'US', 'Farmerville', NULL, 'farmerville', 1, '32.7734700000', '-92.4057000000'),
(7324272, 7331987, 'US', 'Fenton', NULL, 'fenton', 1, '30.3671500000', '-92.9182000000'),
(7324293, 7331987, 'US', 'Ferriday', NULL, 'ferriday', 1, '31.6301700000', '-91.5545600000'),
(7324341, 7331987, 'US', 'Fifth Ward', NULL, 'fifth-ward', 1, '31.1301900000', '-92.1729100000'),
(7324675, 7331987, 'US', 'Fisher', NULL, 'fisher', 1, '31.4937900000', '-93.4657300000'),
(7324832, 7331987, 'US', 'Florien', NULL, 'florien', 1, '31.4437900000', '-93.4574000000'),
(7324881, 7331987, 'US', 'Folsom', NULL, 'folsom', 1, '30.6301900000', '-90.1873000000'),
(7324908, 7331987, 'US', 'Fordoche', NULL, 'fordoche', 1, '30.5960200000', '-91.6165000000'),
(7324917, 7331987, 'US', 'Forest', NULL, 'forest', 1, '31.7779400000', '-93.1368300000'),
(7324931, 7331987, 'US', 'Forest Hill', NULL, 'forest-hill', 1, '31.0418600000', '-92.5312500000'),
(7324997, 7331987, 'US', 'Fort Jesup', NULL, 'fort-jesup', 1, '31.6129500000', '-93.4029500000'),
(7325150, 7331987, 'US', 'Franklin', NULL, 'franklin', 1, '29.7960400000', '-91.5015000000'),
(7325165, 7331987, 'US', 'Franklinton', NULL, 'franklinton', 1, '30.8473100000', '-90.1552700000'),
(7325242, 7331987, 'US', 'French Settlement', NULL, 'french-settlement', 1, '30.2959900000', '-90.7963000000'),
(7325308, 7331987, 'US', 'Frierson', NULL, 'frierson', 1, '32.2518300000', '-93.6899000000'),
(7325424, 7331987, 'US', 'Galliano', NULL, 'galliano', 1, '29.4421600000', '-90.2992500000'),
(7325507, 7331987, 'US', 'Gardere', NULL, 'gardere', 1, '30.3457500000', '-91.1401100000'),
(7325516, 7331987, 'US', 'Garyville', NULL, 'garyville', 1, '30.0560400000', '-90.6192600000'),
(7325624, 7331987, 'US', 'Georgetown', NULL, 'georgetown', 1, '31.7610000000', '-92.3845800000'),
(7325649, 7331987, 'US', 'Gibsland', NULL, 'gibsland', 1, '32.5440400000', '-93.0529400000'),
(7325668, 7331987, 'US', 'Gilbert', NULL, 'gilbert', 1, '32.0493200000', '-91.6581800000'),
(7325698, 7331987, 'US', 'Gilliam', NULL, 'gilliam', 1, '32.8270900000', '-93.8451800000'),
(7325702, 7331987, 'US', 'Gillis', NULL, 'gillis', 1, '30.3738100000', '-93.2009900000'),
(7325793, 7331987, 'US', 'Glencoe', NULL, 'glencoe', 1, '29.8057600000', '-91.6678900000'),
(7325803, 7331987, 'US', 'Glenmora', NULL, 'glenmora', 1, '30.9765800000', '-92.5851400000'),
(7325825, 7331987, 'US', 'Gloster', NULL, 'gloster', 1, '32.1909900000', '-93.8149000000'),
(7325859, 7331987, 'US', 'Golden Meadow', NULL, 'golden-meadow', 1, '29.3791100000', '-90.2600800000'),
(7325877, 7331987, 'US', 'Goldonna', NULL, 'goldonna', 1, '32.0168300000', '-92.9093200000'),
(7325889, 7331987, 'US', 'Gonzales', NULL, 'gonzales', 1, '30.2385300000', '-90.9201000000'),
(7326074, 7331987, 'US', 'Grambling', NULL, 'grambling', 1, '32.5276500000', '-92.7140400000'),
(7326081, 7331987, 'US', 'Gramercy', NULL, 'gramercy', 1, '30.0474200000', '-90.6898100000'),
(7326138, 7331987, 'US', 'Grand Cane', NULL, 'grand-cane', 1, '32.0844400000', '-93.8095000000'),
(7326153, 7331987, 'US', 'Grand Coteau', NULL, 'grand-coteau', 1, '30.4199200000', '-92.0465100000'),
(7326198, 7331987, 'US', 'Grand Isle', NULL, 'grand-isle', 1, '29.2366200000', '-89.9872900000'),
(7326211, 7331987, 'US', 'Grand Point', NULL, 'grand-point', 1, '30.0613100000', '-90.7534300000'),
(7326320, 7331987, 'US', 'Gray', NULL, 'gray', 1, '29.6977100000', '-90.7864800000'),
(7326343, 7331987, 'US', 'Grayson', NULL, 'grayson', 1, '32.0498800000', '-92.1093000000'),
(7326511, 7331987, 'US', 'Greensburg', NULL, 'greensburg', 1, '30.8307400000', '-90.6717600000'),
(7326533, 7331987, 'US', 'Greenwood', NULL, 'greenwood', 1, '32.4429300000', '-93.9729600000'),
(7326575, 7331987, 'US', 'Gretna', NULL, 'gretna', 1, '29.9146500000', '-90.0539600000'),
(7326615, 7331987, 'US', 'Grosse Tete', NULL, 'grosse-tete', 1, '30.4110300000', '-91.4337200000'),
(7326636, 7331987, 'US', 'Gueydan', NULL, 'gueydan', 1, '30.0260400000', '-92.5084700000'),
(7326758, 7331987, 'US', 'Hackberry', NULL, 'hackberry', 1, '29.9960500000', '-93.3421000000'),
(7326799, 7331987, 'US', 'Hahnville', NULL, 'hahnville', 1, '29.9765900000', '-90.4089700000'),
(7326832, 7331987, 'US', 'Hall Summit', NULL, 'hall-summit', 1, '32.1773800000', '-93.3023900000'),
(7326868, 7331987, 'US', 'Hammond', NULL, 'hammond', 1, '30.5046300000', '-90.4629300000'),
(7326916, 7331987, 'US', 'Harahan', NULL, 'harahan', 1, '29.9404800000', '-90.2031300000'),
(7327024, 7331987, 'US', 'Harrisonburg', NULL, 'harrisonburg', 1, '31.7721100000', '-91.8215200000'),
(7327047, 7331987, 'US', 'Harvey', NULL, 'harvey', 1, '29.9035400000', '-90.0772900000'),
(7327084, 7331987, 'US', 'Haughton', NULL, 'haughton', 1, '32.5326500000', '-93.5040600000'),
(7327114, 7331987, 'US', 'Hayes', NULL, 'hayes', 1, '30.1088200000', '-92.9201500000'),
(7327129, 7331987, 'US', 'Haynesville', NULL, 'haynesville', 1, '32.9620800000', '-93.1401600000'),
(7327212, 7331987, 'US', 'Heflin', NULL, 'heflin', 1, '32.4562700000', '-93.2640600000'),
(7327245, 7331987, 'US', 'Henderson', NULL, 'henderson', 1, '30.3132500000', '-91.7903900000'),
(7327311, 7331987, 'US', 'Hessmer', NULL, 'hessmer', 1, '31.0596300000', '-92.1212400000'),
(7327518, 7331987, 'US', 'Hodge', NULL, 'hodge', 1, '32.2768200000', '-92.7234900000'),
(7327785, 7331987, 'US', 'Homer', NULL, 'homer', 1, '32.7919200000', '-93.0550300000'),
(7327896, 7331987, 'US', 'Hornbeck', NULL, 'hornbeck', 1, '31.3257400000', '-93.3985000000'),
(7327986, 7331987, 'US', 'Hosston', NULL, 'hosston', 1, '32.8876400000', '-93.8785100000'),
(7328010, 7331987, 'US', 'Houma', NULL, 'houma', 1, '29.5957700000', '-90.7195300000'),
(7328269, 7331987, 'US', 'Ida', NULL, 'ida', 1, '33.0043000000', '-93.8949000000'),
(7328319, 7331987, 'US', 'Independence', NULL, 'independence', 1, '30.6355100000', '-90.5033500000'),
(7328435, 7331987, 'US', 'Inniswold', NULL, 'inniswold', 1, '30.4049100000', '-91.0834400000'),
(7328671, 7331987, 'US', 'Iota', NULL, 'iota', 1, '30.3313100000', '-92.4956900000'),
(7328676, 7331987, 'US', 'Iowa', NULL, 'iowa', 1, '30.2368700000', '-93.0137600000'),
(7328824, 7331987, 'US', 'Jackson', NULL, 'jackson', 1, '30.8374000000', '-91.2176100000'),
(7328908, 7331987, 'US', 'Jamestown', NULL, 'jamestown', 1, '32.3440500000', '-93.2118300000'),
(7328931, 7331987, 'US', 'Jean Lafitte', NULL, 'jean-lafitte', 1, '29.7360400000', '-90.1267400000'),
(7328952, 7331987, 'US', 'Jeanerette', NULL, 'jeanerette', 1, '29.9110400000', '-91.6634500000'),
(7328973, 7331987, 'US', 'Jefferson', NULL, 'jefferson', 1, '29.9660400000', '-90.1531300000'),
(7329021, 7331987, 'US', 'Jena', NULL, 'jena', 1, '31.6832300000', '-92.1337400000'),
(7329037, 7331987, 'US', 'Jennings', NULL, 'jennings', 1, '30.2224300000', '-92.6570800000'),
(7329308, 7331987, 'US', 'Jonesboro', NULL, 'jonesboro', 1, '32.2412700000', '-92.7159900000'),
(7329317, 7331987, 'US', 'Jonesville', NULL, 'jonesville', 1, '31.6265600000', '-91.8181800000'),
(7329346, 7331987, 'US', 'Jordan Hill', NULL, 'jordan-hill', 1, '31.8540600000', '-92.5226400000'),
(7329356, 7331987, 'US', 'Joyce', NULL, 'joyce', 1, '31.9393300000', '-92.5987600000'),
(7329405, 7331987, 'US', 'Junction City', NULL, 'junction-city', 1, '33.0137500000', '-92.7251600000'),
(7329654, 7331987, 'US', 'Kaplan', NULL, 'kaplan', 1, '29.9979800000', '-92.2848500000'),
(7329664, 7331987, 'US', 'Keatchie', NULL, 'keatchie', 1, '32.1884200000', '-93.9057200000'),
(7329753, 7331987, 'US', 'Kenner', NULL, 'kenner', 1, '29.9940900000', '-90.2417400000'),
(7329775, 7331987, 'US', 'Kentwood', NULL, 'kentwood', 1, '30.9382400000', '-90.5089800000'),
(7329820, 7331987, 'US', 'Killian', NULL, 'killian', 1, '30.3588100000', '-90.5862000000'),
(7329822, 7331987, 'US', 'Kilbourne', NULL, 'kilbourne', 1, '32.9995700000', '-91.3151100000'),
(7329828, 7331987, 'US', 'Killona', NULL, 'killona', 1, '30.0060400000', '-90.4828600000'),
(7329849, 7331987, 'US', 'Kinder', NULL, 'kinder', 1, '30.4854800000', '-92.8507000000'),
(7330015, 7331987, 'US', 'Kraemer', NULL, 'kraemer', 1, '29.8668700000', '-90.6970300000'),
(7330019, 7331987, 'US', 'Krotz Springs', NULL, 'krotz-springs', 1, '30.5368600000', '-91.7528900000'),
(7330088, 7331987, 'US', 'Labadieville', NULL, 'labadieville', 1, '29.8374300000', '-90.9562100000'),
(7330110, 7331987, 'US', 'Lacassine', NULL, 'lacassine', 1, '30.2354900000', '-92.9215400000'),
(7330126, 7331987, 'US', 'Lacombe', NULL, 'lacombe', 1, '30.3135300000', '-89.9431300000'),
(7330145, 7331987, 'US', 'Lafayette', NULL, 'lafayette', 1, '30.2240900000', '-92.0198400000'),
(7330172, 7331987, 'US', 'Lafitte', NULL, 'lafitte', 1, '29.6668800000', '-90.1084100000'),
(7330209, 7331987, 'US', 'Lake Arthur', NULL, 'lake-arthur', 1, '30.0807600000', '-92.6715300000'),
(7330236, 7331987, 'US', 'Lake Charles', NULL, 'lake-charles', 1, '30.2130900000', '-93.2044000000'),
(7330331, 7331987, 'US', 'Lake Providence', NULL, 'lake-providence', 1, '32.8049900000', '-91.1709800000'),
(7330389, 7331987, 'US', 'Lakeshore', NULL, 'lakeshore', 1, '32.5351400000', '-92.0295800000'),
(7330416, 7331987, 'US', 'Lakeview', NULL, 'lakeview', 1, '32.5232100000', '-93.8293500000'),
(7330525, 7331987, 'US', 'Laplace', NULL, 'laplace', 1, '30.0669800000', '-90.4814700000'),
(7330541, 7331987, 'US', 'Larose', NULL, 'larose', 1, '29.5724400000', '-90.3817500000'),
(7330633, 7331987, 'US', 'Lawtell', NULL, 'lawtell', 1, '30.5185300000', '-92.1848500000'),
(7330701, 7331987, 'US', 'Lecompte', NULL, 'lecompte', 1, '31.0946300000', '-92.4004100000'),
(7330740, 7331987, 'US', 'Leesville', NULL, 'leesville', 1, '31.1435200000', '-93.2610000000'),
(7330785, 7331987, 'US', 'Lemannville', NULL, 'lemannville', 1, '30.1093700000', '-90.9203800000'),
(7330809, 7331987, 'US', 'Leonville', NULL, 'leonville', 1, '30.4704700000', '-91.9784500000'),
(7330958, 7331987, 'US', 'Lillie', NULL, 'lillie', 1, '32.9320800000', '-92.6568200000'),
(7331040, 7331987, 'US', 'Lisbon', NULL, 'lisbon', 1, '32.7959800000', '-92.8651600000'),
(7331485, 7331987, 'US', 'Livingston', NULL, 'livingston', 1, '30.5021300000', '-90.7478700000'),
(7331493, 7331987, 'US', 'Livonia', NULL, 'livonia', 1, '30.5590800000', '-91.5559400000'),
(7331530, 7331987, 'US', 'Lockport', NULL, 'lockport', 1, '29.6460500000', '-90.5392500000'),
(7331531, 7331987, 'US', 'Lockport Heights', NULL, 'lockport-heights', 1, '29.6504900000', '-90.5464700000'),
(7331567, 7331987, 'US', 'Logansport', NULL, 'logansport', 1, '31.9754500000', '-93.9979700000'),
(7331739, 7331987, 'US', 'Longstreet', NULL, 'longstreet', 1, '32.0976600000', '-93.9521300000'),
(7331746, 7331987, 'US', 'Longville', NULL, 'longville', 1, '30.6052000000', '-93.2318300000'),
(7331781, 7331987, 'US', 'Loreauville', NULL, 'loreauville', 1, '30.0565900000', '-91.7370600000'),
(7332082, 7331987, 'US', 'Lucky', NULL, 'lucky', 1, '32.2551600000', '-92.9968300000'),
(7332109, 7331987, 'US', 'Luling', NULL, 'luling', 1, '29.9321500000', '-90.3664700000'),
(7332143, 7331987, 'US', 'Lydia', NULL, 'lydia', 1, '29.9239400000', '-91.7830500000'),
(7332152, 7331987, 'US', 'Lutcher', NULL, 'lutcher', 1, '30.0404800000', '-90.6989800000'),
(7332261, 7331987, 'US', 'Madisonville', NULL, 'madisonville', 1, '30.4043600000', '-90.1570200000'),
(7332432, 7331987, 'US', 'Mamou', NULL, 'mamou', 1, '30.6338100000', '-92.4193000000'),
(7332455, 7331987, 'US', 'Mandeville', NULL, 'mandeville', 1, '30.3582500000', '-90.0656300000'),
(7332464, 7331987, 'US', 'Mangham', NULL, 'mangham', 1, '32.3090400000', '-91.7748500000'),
(7332494, 7331987, 'US', 'Mansfield', NULL, 'mansfield', 1, '32.0376600000', '-93.7001800000'),
(7332507, 7331987, 'US', 'Mansura', NULL, 'mansura', 1, '31.0579700000', '-92.0490100000'),
(7332518, 7331987, 'US', 'Many', NULL, 'many', 1, '31.5687800000', '-93.4840600000'),
(7332582, 7331987, 'US', 'Maringouin', NULL, 'maringouin', 1, '30.4913000000', '-91.5195500000'),
(7332587, 7331987, 'US', 'Marion', NULL, 'marion', 1, '32.9015200000', '-92.2420800000'),
(7332604, 7331987, 'US', 'Marksville', NULL, 'marksville', 1, '31.1279700000', '-92.0662400000'),
(7332628, 7331987, 'US', 'Marrero', NULL, 'marrero', 1, '29.8993700000', '-90.1003500000'),
(7332671, 7331987, 'US', 'Martin', NULL, 'martin', 1, '32.0854400000', '-93.2201700000'),
(7332788, 7331987, 'US', 'Mathews', NULL, 'mathews', 1, '29.6863200000', '-90.5467500000'),
(7332794, 7331987, 'US', 'Maurice', NULL, 'maurice', 1, '30.1085400000', '-92.1245700000'),
(7333015, 7331987, 'US', 'McNary', NULL, 'mcnary', 1, '30.9874100000', '-92.5762500000'),
(7333095, 7331987, 'US', 'Melville', NULL, 'melville', 1, '30.6929700000', '-91.7440000000'),
(7333122, 7331987, 'US', 'Mer Rouge', NULL, 'mer-rouge', 1, '32.7751300000', '-91.7926300000'),
(7333126, 7331987, 'US', 'Meraux', NULL, 'meraux', 1, '29.9301700000', '-89.9162300000'),
(7333147, 7331987, 'US', 'Mermentau', NULL, 'mermentau', 1, '30.1899300000', '-92.5826400000'),
(7333161, 7331987, 'US', 'Merrydale', NULL, 'merrydale', 1, '30.5013000000', '-91.1084400000'),
(7333163, 7331987, 'US', 'Merryville', NULL, 'merryville', 1, '30.7543700000', '-93.5404500000'),
(7333177, 7331987, 'US', 'Metairie', NULL, 'metairie', 1, '29.9840900000', '-90.1528500000'),
(7333190, 7331987, 'US', 'Metairie Terrace', NULL, 'metairie-terrace', 1, '29.9785400000', '-90.1639600000'),
(7333277, 7331987, 'US', 'Midway', NULL, 'midway', 1, '31.6921200000', '-92.1523600000'),
(7333500, 7331987, 'US', 'Milton', NULL, 'milton', 1, '30.1038100000', '-92.0765100000'),
(7333533, 7331987, 'US', 'Minden', NULL, 'minden', 1, '32.6154300000', '-93.2868400000'),
(7333548, 7331987, 'US', 'Minorca', NULL, 'minorca', 1, '31.5793300000', '-91.4817900000'),
(7333669, 7331987, 'US', 'Monroe', NULL, 'monroe', 1, '32.5093100000', '-92.1193000000'),
(7333694, 7331987, 'US', 'Montegut', NULL, 'montegut', 1, '30.0707600000', '-90.5020300000'),
(7333701, 7331987, 'US', 'Monterey', NULL, 'monterey', 1, '31.4499000000', '-91.7181800000'),
(7333711, 7331987, 'US', 'Montgomery', NULL, 'montgomery', 1, '31.6673900000', '-92.8907100000'),
(7333720, 7331987, 'US', 'Montpelier', NULL, 'montpelier', 1, '30.6810200000', '-90.6489800000'),
(7333725, 7331987, 'US', 'Montz', NULL, 'montz', 1, '30.0068700000', '-90.4686900000'),
(7333758, 7331987, 'US', 'Mooringsport', NULL, 'mooringsport', 1, '32.6876500000', '-93.9610200000'),
(7333781, 7331987, 'US', 'Moreauville', NULL, 'moreauville', 1, '31.0346300000', '-91.9756800000'),
(7333811, 7331987, 'US', 'Morgan City', NULL, 'morgan-city', 1, '29.6993700000', '-91.2067700000'),
(7333841, 7331987, 'US', 'Morganza', NULL, 'morganza', 1, '30.7385200000', '-91.5942800000'),
(7333917, 7331987, 'US', 'Morse', NULL, 'morse', 1, '30.1218700000', '-92.4981900000'),
(7333961, 7331987, 'US', 'Moss Bluff', NULL, 'moss-bluff', 1, '30.3027000000', '-93.1907100000'),
(7333993, 7331987, 'US', 'Mound', NULL, 'mound', 1, '32.3393100000', '-91.0240000000'),
(7334154, 7331987, 'US', 'Mount Lebanon', NULL, 'mount-lebanon', 1, '32.5036100000', '-93.0493100000'),
(7334696, 7331987, 'US', 'Napoleonville', NULL, 'napoleonville', 1, '29.9404800000', '-91.0248200000'),
(7334706, 7331987, 'US', 'Natalbany', NULL, 'natalbany', 1, '30.5462200000', '-90.4861900000'),
(7334717, 7331987, 'US', 'Natchez', NULL, 'natchez', 1, '31.6754400000', '-93.0446100000'),
(7334720, 7331987, 'US', 'Natchitoches', NULL, 'natchitoches', 1, '31.7607200000', '-93.0862700000'),
(7334971, 7331987, 'US', 'New Iberia', NULL, 'new-iberia', 1, '30.0035400000', '-91.8187300000'),
(7335024, 7331987, 'US', 'New Llano', NULL, 'new-llano', 1, '31.1149100000', '-93.2715500000'),
(7335045, 7331987, 'US', 'New Orleans', NULL, 'new-orleans', 1, '29.9546500000', '-90.0750700000'),
(7335053, 7331987, 'US', 'City of New Orleans', NULL, 'city-of-new-orleans', 1, '30.0686400000', '-89.9281300000'),
(7335096, 7331987, 'US', 'New Roads', NULL, 'new-roads', 1, '30.7015700000', '-91.4362200000'),
(7335123, 7331987, 'US', 'New Sarpy', NULL, 'new-sarpy', 1, '29.9781700000', '-90.3896300000'),
(7335212, 7331987, 'US', 'Newellton', NULL, 'newellton', 1, '32.0726500000', '-91.2409500000'),
(7335303, 7331987, 'US', 'Noble', NULL, 'noble', 1, '31.6896200000', '-93.6840700000'),
(7335326, 7331987, 'US', 'Norco', NULL, 'norco', 1, '29.9990900000', '-90.4123000000'),
(7335437, 7331987, 'US', 'North Hodge', NULL, 'north-hodge', 1, '32.2834900000', '-92.7159900000'),
(7335535, 7331987, 'US', 'North Vacherie', NULL, 'north-vacherie', 1, '29.9968700000', '-90.7056500000'),
(7335628, 7331987, 'US', 'Norwood', NULL, 'norwood', 1, '30.9676800000', '-91.1039900000'),
(7335690, 7331987, 'US', 'Oak Grove', NULL, 'oak-grove', 1, '32.8609600000', '-91.3884500000'),
(7335754, 7331987, 'US', 'Oak Hills Place', NULL, 'oak-hills-place', 1, '30.3599200000', '-91.0876000000'),
(7335773, 7331987, 'US', 'Oak Ridge', NULL, 'oak-ridge', 1, '32.6240300000', '-91.7729000000'),
(7335796, 7331987, 'US', 'Oakdale', NULL, 'oakdale', 1, '30.8160300000', '-92.6604200000'),
(7335887, 7331987, 'US', 'Oberlin', NULL, 'oberlin', 1, '30.6202000000', '-92.7626500000'),
(7335921, 7331987, 'US', 'Oil City', NULL, 'oil-city', 1, '32.7440300000', '-93.9715700000'),
(7335963, 7331987, 'US', 'Old Jefferson', NULL, 'old-jefferson', 1, '30.3826900000', '-91.0170500000'),
(7336092, 7331987, 'US', 'Olla', NULL, 'olla', 1, '31.9029400000', '-92.2431900000'),
(7336153, 7331987, 'US', 'Opelousas', NULL, 'opelousas', 1, '30.5335300000', '-92.0815100000'),
(7336184, 7331987, 'US', 'Oretta', NULL, 'oretta', 1, '30.5260300000', '-93.4373900000'),
(7336209, 7331987, 'US', 'Ossun', NULL, 'ossun', 1, '30.2760300000', '-92.1123500000'),
(7336418, 7331987, 'US', 'Paincourtville', NULL, 'paincourtville', 1, '29.9902000000', '-91.0551000000'),
(7336420, 7331987, 'US', 'Palmetto', NULL, 'palmetto', 1, '30.7174100000', '-91.9092800000'),
(7336492, 7331987, 'US', 'Paradis', NULL, 'paradis', 1, '29.8796500000', '-90.4339700000'),
(7336552, 7331987, 'US', 'Parks', NULL, 'parks', 1, '30.2143700000', '-91.8320600000'),
(7336646, 7331987, 'US', 'Patterson', NULL, 'patterson', 1, '29.6932600000', '-91.3020500000'),
(7336678, 7331987, 'US', 'Paulina', NULL, 'paulina', 1, '30.0263100000', '-90.7131500000'),
(7336717, 7331987, 'US', 'Pearl River', NULL, 'pearl-river', 1, '30.3760300000', '-89.7484000000'),
(7337049, 7331987, 'US', 'Pierre Part', NULL, 'pierre-part', 1, '29.9652000000', '-91.2031600000'),
(7337272, 7331987, 'US', 'Pine Prairie', NULL, 'pine-prairie', 1, '30.7838100000', '-92.4254100000'),
(7337291, 7331987, 'US', 'Pineville', NULL, 'pineville', 1, '31.3224000000', '-92.4343000000'),
(7337337, 7331987, 'US', 'Pioneer', NULL, 'pioneer', 1, '32.7362400000', '-91.4334500000'),
(7337378, 7331987, 'US', 'Pitkin', NULL, 'pitkin', 1, '30.9363000000', '-92.9362600000'),
(7337395, 7331987, 'US', 'Plain Dealing', NULL, 'plain-dealing', 1, '32.9051400000', '-93.6968400000'),
(7337436, 7331987, 'US', 'Plaquemine', NULL, 'plaquemine', 1, '30.2900500000', '-91.2349700000'),
(7337471, 7331987, 'US', 'Plaucheville', NULL, 'plaucheville', 1, '30.9654700000', '-91.9817900000'),
(7337529, 7331987, 'US', 'Pleasant Hill', NULL, 'pleasant-hill', 1, '31.8198900000', '-93.5143400000'),
(7337673, 7331987, 'US', 'Point Place', NULL, 'point-place', 1, '31.6968300000', '-93.0210000000'),
(7337717, 7331987, 'US', 'Pointe à la Hache', NULL, 'pointe-a-la-hache', 1, '29.5763300000', '-89.7917300000'),
(7337755, 7331987, 'US', 'Pollock', NULL, 'pollock', 1, '31.5257300000', '-92.4070800000'),
(7337775, 7331987, 'US', 'Ponchatoula', NULL, 'ponchatoula', 1, '30.4388000000', '-90.4414800000'),
(7337823, 7331987, 'US', 'Port Allen', NULL, 'port-allen', 1, '30.4521400000', '-91.2101100000'),
(7337836, 7331987, 'US', 'Port Barre', NULL, 'port-barre', 1, '30.5602000000', '-91.9540100000'),
(7337859, 7331987, 'US', 'Port Sulphur', NULL, 'port-sulphur', 1, '29.4804900000', '-89.6939500000'),
(7337866, 7331987, 'US', 'Port Vincent', NULL, 'port-vincent', 1, '30.3338100000', '-90.8495400000'),
(7337961, 7331987, 'US', 'Powhatan', NULL, 'powhatan', 1, '31.8729400000', '-93.2012800000'),
(7337963, 7331987, 'US', 'Poydras', NULL, 'poydras', 1, '29.8693700000', '-89.8889500000'),
(7338012, 7331987, 'US', 'Prairieville', NULL, 'prairieville', 1, '30.3029700000', '-90.9720500000'),
(7338040, 7331987, 'US', 'Presquille', NULL, 'presquille', 1, '29.5638300000', '-90.6462000000'),
(7338068, 7331987, 'US', 'Prien', NULL, 'prien', 1, '30.1818700000', '-93.2737700000'),
(7338108, 7331987, 'US', 'Prospect', NULL, 'prospect', 1, '31.4504600000', '-92.4876400000'),
(7338122, 7331987, 'US', 'Provencal', NULL, 'provencal', 1, '31.6529500000', '-93.2021100000'),
(7338235, 7331987, 'US', 'Quitman', NULL, 'quitman', 1, '32.3487700000', '-92.7215400000'),
(7338298, 7331987, 'US', 'Raceland', NULL, 'raceland', 1, '29.7274300000', '-90.5989800000'),
(7338406, 7331987, 'US', 'Rayne', NULL, 'rayne', 1, '30.2349300000', '-92.2684600000'),
(7338415, 7331987, 'US', 'Rayville', NULL, 'rayville', 1, '32.4773600000', '-91.7548500000'),
(7338502, 7331987, 'US', 'Reddell', NULL, 'reddell', 1, '30.6740900000', '-92.4262400000'),
(7338577, 7331987, 'US', 'Reeves', NULL, 'reeves', 1, '30.5210300000', '-93.0476500000'),
(7338615, 7331987, 'US', 'Reserve', NULL, 'reserve', 1, '30.0538100000', '-90.5517500000'),
(7338719, 7331987, 'US', 'Richmond', NULL, 'richmond', 1, '32.3879200000', '-91.1820500000'),
(7338720, 7331987, 'US', 'Richwood', NULL, 'richwood', 1, '32.4487600000', '-92.0848600000'),
(7338736, 7331987, 'US', 'Ridgecrest', NULL, 'ridgecrest', 1, '31.6029400000', '-91.5279000000'),
(7338772, 7331987, 'US', 'Ringgold', NULL, 'ringgold', 1, '32.3284900000', '-93.2798900000'),
(7338818, 7331987, 'US', 'River Ridge', NULL, 'river-ridge', 1, '29.9602000000', '-90.2156300000'),
(7338876, 7331987, 'US', 'Roanoke', NULL, 'roanoke', 1, '30.2368700000', '-92.7470900000'),
(7338883, 7331987, 'US', 'Robeline', NULL, 'robeline', 1, '31.6904500000', '-93.3046200000'),
(7338964, 7331987, 'US', 'Rock Hill', NULL, 'rock-hill', 1, '31.4471200000', '-92.5709800000'),
(7339046, 7331987, 'US', 'Rodessa', NULL, 'rodessa', 1, '32.9712500000', '-93.9949000000'),
(7339071, 7331987, 'US', 'Romeville', NULL, 'romeville', 1, '30.0624200000', '-90.8467600000'),
(7339136, 7331987, 'US', 'Rosedale', NULL, 'rosedale', 1, '30.4413100000', '-91.4520500000'),
(7339148, 7331987, 'US', 'Roseland', NULL, 'roseland', 1, '30.7649100000', '-90.5117600000'),
(7339179, 7331987, 'US', 'Rosepine', NULL, 'rosepine', 1, '30.9199100000', '-93.2823900000'),
(7339348, 7331987, 'US', 'Ruston', NULL, 'ruston', 1, '32.5232100000', '-92.6379300000'),
(7339684, 7331987, 'US', 'Saint Francisville', NULL, 'saint-francisville', 1, '30.7799000000', '-91.3765000000'),
(7339690, 7331987, 'US', 'Saint Gabriel', NULL, 'saint-gabriel', 1, '30.2577000000', '-91.0992700000'),
(7339738, 7331987, 'US', 'Saint James', NULL, 'saint-james', 1, '29.9818700000', '-90.8317600000'),
(7339934, 7331987, 'US', 'Saint Joseph', NULL, 'saint-joseph', 1, '31.9184900000', '-91.2334500000'),
(7340196, 7331987, 'US', 'Saint Martinville', NULL, 'saint-martinville', 1, '30.1252000000', '-91.8334500000'),
(7340328, 7331987, 'US', 'Saint Maurice', NULL, 'saint-maurice', 1, '31.7596100000', '-92.9590500000'),
(7340551, 7331987, 'US', 'Saint Rose', NULL, 'saint-rose', 1, '29.9468700000', '-90.3231300000'),
(7340667, 7331987, 'US', 'Saline', NULL, 'saline', 1, '32.1646000000', '-92.9743300000'),
(7340902, 7331987, 'US', 'Sarepta', NULL, 'sarepta', 1, '32.8929200000', '-93.4485100000'),
(7341007, 7331987, 'US', 'Schriever', NULL, 'schriever', 1, '29.7421500000', '-90.8103700000'),
(7341033, 7331987, 'US', 'Scott', NULL, 'scott', 1, '30.2357600000', '-92.0945700000'),
(7341378, 7331987, 'US', 'Shenandoah', NULL, 'shenandoah', 1, '30.4013000000', '-91.0009400000'),
(7341491, 7331987, 'US', 'Shongaloo', NULL, 'shongaloo', 1, '32.9415300000', '-93.2987800000'),
(7341513, 7331987, 'US', 'Shreveport', NULL, 'shreveport', 1, '32.5251500000', '-93.7501800000'),
(7341543, 7331987, 'US', 'Sibley', NULL, 'sibley', 1, '32.5393200000', '-93.2962800000'),
(7341556, 7331987, 'US', 'Sicily Island', NULL, 'sicily-island', 1, '31.8465500000', '-91.6562400000'),
(7341588, 7331987, 'US', 'Sikes', NULL, 'sikes', 1, '32.0809900000', '-92.4868100000'),
(7341610, 7331987, 'US', 'Simmesport', NULL, 'simmesport', 1, '30.9835200000', '-91.8001200000'),
(7341634, 7331987, 'US', 'Simpson', NULL, 'simpson', 1, '31.2457400000', '-93.0154400000'),
(7341648, 7331987, 'US', 'Simsboro', NULL, 'simsboro', 1, '32.5346000000', '-92.7884900000'),
(7341655, 7331987, 'US', 'Singer', NULL, 'singer', 1, '30.6549200000', '-93.4123900000'),
(7341669, 7331987, 'US', 'Siracusaville', NULL, 'siracusaville', 1, '29.6871500000', '-91.1481600000'),
(7341724, 7331987, 'US', 'Slaughter', NULL, 'slaughter', 1, '30.7174100000', '-91.1415000000'),
(7341727, 7331987, 'US', 'Slidell', NULL, 'slidell', 1, '30.2751900000', '-89.7811700000'),
(7341916, 7331987, 'US', 'Sorrel', NULL, 'sorrel', 1, '29.8890900000', '-91.6167800000'),
(7341920, 7331987, 'US', 'Sorrento', NULL, 'sorrento', 1, '30.1843600000', '-90.8592600000'),
(7342028, 7331987, 'US', 'South Mansfield', NULL, 'south-mansfield', 1, '32.0218300000', '-93.7143500000'),
(7342089, 7331987, 'US', 'South Vacherie', NULL, 'south-vacherie', 1, '29.9274300000', '-90.6998100000'),
(7342261, 7331987, 'US', 'Spearsville', NULL, 'spearsville', 1, '32.9359700000', '-92.6051500000'),
(7342310, 7331987, 'US', 'Spokane', NULL, 'spokane', 1, '31.6993300000', '-91.4604000000'),
(7342415, 7331987, 'US', 'Springfield', NULL, 'springfield', 1, '30.4290800000', '-90.5487000000'),
(7342429, 7331987, 'US', 'Springhill', NULL, 'springhill', 1, '33.0059700000', '-93.4668400000'),
(7342504, 7331987, 'US', 'Stanley', NULL, 'stanley', 1, '30.4979800000', '-92.8979300000'),
(7342541, 7331987, 'US', 'Starks', NULL, 'starks', 1, '30.3154800000', '-93.6618300000'),
(7342570, 7331987, 'US', 'Start', NULL, 'start', 1, '32.4865300000', '-91.8592900000'),
(7342638, 7331987, 'US', 'Sterlington', NULL, 'sterlington', 1, '32.6962500000', '-92.0859700000'),
(7342696, 7331987, 'US', 'Stonewall', NULL, 'stonewall', 1, '32.2818300000', '-93.8240700000'),
(7342799, 7331987, 'US', 'Sugartown', NULL, 'sugartown', 1, '30.8399200000', '-93.0148800000'),
(7342816, 7331987, 'US', 'Sulphur', NULL, 'sulphur', 1, '30.2365900000', '-93.3773800000'),
(7342921, 7331987, 'US', 'Sunset', NULL, 'sunset', 1, '30.4113100000', '-92.0684500000'),
(7342949, 7331987, 'US', 'Supreme', NULL, 'supreme', 1, '29.8593700000', '-90.9812100000'),
(7342984, 7331987, 'US', 'Swartz', NULL, 'swartz', 1, '32.5687500000', '-91.9851300000'),
(7343084, 7331987, 'US', 'Taft', NULL, 'taft', 1, '29.9913100000', '-90.4481400000'),
(7343103, 7331987, 'US', 'Tallulah', NULL, 'tallulah', 1, '32.4084800000', 
Showing 512.00 KB of 3.89 MB. Use Edit/Download for full content.

Directory Contents

Dirs: 6 × Files: 18

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
php53 DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
php56 DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
php71 DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
php81 DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
php82 DIR
- drwxr-xr-x 2026-01-30 03:32:39
Edit Download
21.28 KB lrw-r--r-- 2026-01-29 06:33:02
Edit Download
5.84 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
5.51 KB lrw-r--r-- 2026-01-29 06:33:02
Edit Download
4.81 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
433 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download
9.08 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
135 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download
3.43 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
3.95 KB lrw-r--r-- 2026-01-29 06:33:02
Edit Download
921 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download
6.20 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
922 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download
2.36 KB lrw-r--r-- 2026-01-29 13:22:56
Edit Download
366 B lrw-r--r-- 2026-01-29 06:33:02
Edit Download
3.89 MB lrw-r--r-- 2026-01-29 06:33:02
Edit Download
6.94 MB lrw-r--r-- 2026-01-29 06:33:02
Edit Download
273 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download
562 B lrw-r--r-- 2023-08-21 10:43:14
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).