Subversion Repositories Code-Repo

Compare Revisions

No changes between revisions

Ignore whitespace Rev 96 → Rev 105

/Classwork/CS3114 - Data Algorithms/Project 4/.classpath
0,0 → 1,6
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="output" path=""/>
</classpath>
/Classwork/CS3114 - Data Algorithms/Project 4/.project
0,0 → 1,17
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CS3114P4</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
/Classwork/CS3114 - Data Algorithms/Project 4/.settings/org.eclipse.jdt.core.prefs
0,0 → 1,12
#Fri Dec 02 19:58:28 EST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
/Classwork/CS3114 - Data Algorithms/Project 4/BSTree.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/BSTree.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/BSTree.java
0,0 → 1,172
import java.util.ArrayList;
 
// Generic BST implementation
public class BSTree<K extends Comparable<? super K>, E> implements Dictionary<K, E> {
private BSTreeNode<K,E> root; // Root of the BST
NodeSerializer serializer;
// Constructor
public BSTree(MemManager mem) {
serializer = new NodeSerializer(mem);
this.root = null;
}
// Inserts a node into the BST
public void insert(K key, E element) {
// Set the BST root as the returned node
this.root = insertRecursive(root, key, element);
}
// Removes a node from the BST given the key
public void remove(K key) {
// Adds invalid coordinates if none are specified
this.remove(key, -1, -1);
}
public void remove(K key, int x, int y) {
// Check if node exists
E temp = findRecursive(root, key);
if (temp != null) {
// Remove the node
this.root = removeRecursive(root, key, x, y);
}
}
// Returns a node from the BST given the key
public E find(K key) {
return findRecursive(root, key);
}
// Returns a list of all nodes with the given key
public ArrayList<E> findAll(K key) {
ArrayList<E> elementList = new ArrayList<E>();
findAllRecursive(root, key, elementList);
return elementList;
}
// Removes all nodes from the BST
public void clear() {
this.root = null;
}
// Recursively inserts a node into the BST
private BSTreeNode<K,E> insertRecursive(BSTreeNode<K,E> root, K key, E element) {
if (root == null)
// If there are no nodes in the BST, create and return a new node
return new BSTreeNode<K,E>(key, element);
if (root.getKey().compareTo(key) > 0)
// If passed key is smaller, insert into left child
root.setLeft(insertRecursive(root.getLeft(), key, element));
else
// If passed key is greater, insert into right child
root.setRight(insertRecursive(root.getRight(), key, element));
return root;
}
// Recursively searches minimal nodes for matches to the given key
private E findRecursive(BSTreeNode<K,E> root, K key) {
if (root == null)
return null;
if (root.getKey().compareTo(key) > 0)
// If passed key is smaller, search the left child
return findRecursive(root.getLeft(), key);
else if (root.getKey().compareTo(key) == 0)
// If key is found, return with the found element
return root.getElement();
else
// If key is not found, search the right child
return findRecursive(root.getRight(), key);
}
// Recursively searches all nodes for matches to the given key
private void findAllRecursive(BSTreeNode<K,E> root, K key, ArrayList<E> elementList) {
if (root == null)
return;
// If key matches, save to list
if (root.getKey().compareTo(key) == 0)
elementList.add(root.getElement());
// Recursively call search on all possible nodes
if (root.getKey().compareTo(key) > 0)
findAllRecursive(root.getLeft(), key, elementList);
else
findAllRecursive(root.getRight(), key, elementList);
}
// Recursively removes a node from the BST given a key
private BSTreeNode<K,E> removeRecursive(BSTreeNode<K,E> root, K key, int x, int y) {
if (root == null)
return null;
// Find the node to remove
if (root.getKey().compareTo(key) > 0)
root.setLeft(removeRecursive(root.getLeft(), key, x, y));
else if (root.getKey().compareTo(key) < 0)
root.setRight(removeRecursive(root.getRight(), key, x, y));
// Node's key matches
else {
// If we want to narrow it down by coordinates as well
if (x >= 0 && y >= 0) {
CityRecord record = serializer.handleToCityRecord((Handle)root.getElement());
// If coordinates do not match, keep searching from the right child
// if (((Record)root.getElement()).getX() != x || ((Record)root.getElement()).getY() != y) {
if (record.getX() != x || record.getY() != y) {
root.setRight(removeRecursive(root.getRight(), key, x, y));
} else {
// If one of the leaves is null, just return the other leaf
if (root.getLeft() == null) {
serializer.removeCityRecordHandle((Handle)root.getElement());
return root.getRight();
} else if (root.getRight() == null) {
serializer.removeCityRecordHandle((Handle)root.getElement());
return root.getLeft();
} else {
serializer.removeCityRecordHandle((Handle)root.getElement());
// Otherwise create a new node with the smallest value on the right leaf
BSTreeNode<K,E> temp = getMin(root.getRight());
root.setElement(temp.getElement());
root.setKey(temp.getKey());
root.setRight(deleteMin(root.getRight()));
}
}
// Otherwise just remove the node
} else {
// If one of the leaves is null, just return the other leaf
if (root.getLeft() == null) {
serializer.removeCityRecordHandle((Handle)root.getElement());
return root.getRight();
} else if (root.getRight() == null) {
serializer.removeCityRecordHandle((Handle)root.getElement());
return root.getLeft();
} else {
serializer.removeCityRecordHandle((Handle)root.getElement());
// Otherwise create a new node with the smallest value on the right leaf
BSTreeNode<K,E> temp = getMin(root.getRight());
root.setElement(temp.getElement());
root.setKey(temp.getKey());
root.setRight(deleteMin(root.getRight()));
}
}
}
return root;
}
// Recursively returns the minimum key node
private BSTreeNode<K,E> getMin(BSTreeNode<K,E> root) {
if (root.getLeft() == null)
return root;
else
return getMin(root.getLeft());
}
// Recursively deletes the minimum key node
private BSTreeNode<K,E> deleteMin(BSTreeNode<K,E> root) {
if (root.getLeft() == null)
return root.getRight();
else {
root.setLeft(deleteMin(root.getLeft()));
return root;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/BSTreeNode.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/BSTreeNode.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/BSTreeNode.java
0,0 → 1,60
 
// Single generic node for the BSTree
public class BSTreeNode<K,E> {
private K key; // Key
private E element; // Value
private BSTreeNode<K,E> left; // Left child
private BSTreeNode<K,E> right; // Right child
// Empty constructor
public BSTreeNode() {
setLeft(setRight(null));
}
// Constructor given key value pair
public BSTreeNode(K k, E e) {
setLeft(setRight(null));
setKey(k);
setElement(e);
}
// Constructor given key value pair and children
public BSTreeNode(K k, E e, BSTreeNode<K,E> left, BSTreeNode<K,E> right) {
setKey(k);
setElement(e);
this.setLeft(left);
this.setRight(right);
}
// Query if node has leaves
public boolean isLeaf() {
return left == null && right == null;
}
// Encapsulation methods
public K getKey() {
return key;
}
public void setKey(K key) {
this.key = key;
}
public E getElement() {
return element;
}
public void setElement(E element) {
this.element = element;
}
public BSTreeNode<K,E> getLeft() {
return left;
}
public void setLeft(BSTreeNode<K,E> left) {
this.left = left;
}
public BSTreeNode<K,E> getRight() {
return right;
}
public BSTreeNode<K,E> setRight(BSTreeNode<K,E> right) {
this.right = right;
return right;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/Bindisk.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/Bindisk.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/Bindisk.java
0,0 → 1,105
/*
* CS 3114 Project 4
* Author: Kevin Lee
* Compiler: Eclipse 3.7.0
* Operating System: Windows 7 x64
* Date Completed: 12/4/2011
*
* The following program is an combination of the previous three
* projects. This program implements the GIS b-tree and
* quad-tree, but instead of keeping the PRQuad-Tree in memory,
* the PRQuad-Tree interfaces with a memory manager to store and
* retrieve internal and leaf nodes, as well as city names. The
* memory manager interfaces to a file ("p4bin.dat") using a
* buffer pool. The buffer pool is implemented using a least
* recently used block list.
*
* Note that while the PRQuad-Tree is optimized for speed, the
* conversion of CityRecords to handles for the b-tree severely
* slows down the program (see test _seq-16384-IR). If the b-tree
* is kept completely in memory, the program runs >30x faster.
*
* On my honor:
*
* - I have not used source code obtained from another student,
* or any other unauthorized source, either modified or
* unmodified.
*
* - All source code and documentation used in my program is
* either my original work, or was derived by me from the
* source code published in the textbook for this course.
*
* - I have not discussed coding details about this project with
* anyone other than my partner (in the case of a joint
* submission), instructor, ACM/UPE tutors or the TAs assigned
* to this course. I understand that I may discuss the concepts
* of this program with other students, and that another student
* may help me debug my program so long as neither of us writes
* anything during the discussion or modifies any computer file
* during the discussion. I have violated neither the spirit nor
* letter of this restriction.
*/
 
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
 
public class Bindisk {
 
public static void main(String[] args) {
 
// 3 arguments must be supplied to the program
if (args.length != 3) {
System.out.println("3 Arguments must be supplied!");
return;
}
 
// Parses passed arguments into member variables
String dataFile = args[0];
int buffSize = Integer.parseInt(args[1]);
int blockSize = Integer.parseInt(args[2]);
 
if (buffSize < 1 || buffSize > 20) {
System.out.println("Number of buffers must be between 1 and 20");
return;
}
LRUBuffer buffer = new LRUBuffer("p4bin.dat", "p4bin-stat.dat", buffSize, blockSize);
MemManager memManager = new MemManager(buffer, blockSize);
// Check to make sure the command file exists
File cmdFile = new File(dataFile);
if (!cmdFile.exists()) {
System.out.printf("Command file not found");
return;
}
CmdParser GISParser = new CmdParser(memManager);
long time1 = System.currentTimeMillis();
// Parse each command with the memory client
try {
BufferedReader reader = new BufferedReader(new FileReader(cmdFile));
String cin;
while ((cin = reader.readLine()) != null) {
cin = cin.trim();
if (cin.length() != 0) {
// Send string to command parser
GISParser.Parse(cin);
}
}
} catch (FileNotFoundException e) {
System.out.printf("Command file not found");
return;
} catch (IOException e) {
System.out.printf("Unable to read input file");
return;
}
buffer.flushBuffer();
long time2 = System.currentTimeMillis();
buffer.writeStats(time2-time1);
}
 
}
/Classwork/CS3114 - Data Algorithms/Project 4/BufferBlock.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/BufferBlock.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/BufferBlock.java
0,0 → 1,72
 
public class BufferBlock {
private long startAddress;
private byte[] bytes;
private int size;
private BufferBlock prev;
private BufferBlock next;
private boolean dirtyBit;
public BufferBlock(int sz) {
setStartAddress(-1);
bytes = new byte[sz];
this.size = sz;
prev = null;
next = null;
setDirtyBit(false);
}
/** Copies size bytes starting from address to out + offset
*
* @param out Destination array to copy bytes to
* @param offset Offset of position to write to in the destination array
* @param address Starting address in block to copy bytes from
* @param length Number of bytes to copy from the block
*/
public void getBytes(byte[] out, int offset, int address, int length) {
for (int i = 0; i < length; i++) {
out[i + offset] = bytes[address + i];
}
}
/** Puts size bytes starting to address from in
*
* @param in Source array to copy bytes from
* @param offset Offset position in the source array to copy from
* @param address Starting address in the block to copy bytes to
* @param length Number of bytes to copy into the block
*/
public void setBytes(byte[] in, int offset, int address, int length) {
for (int i = 0; i < length; i++) {
bytes[address + i] = in[i + offset];
}
}
public BufferBlock getPrev() {
return prev;
}
public void setPrev(BufferBlock prev) {
this.prev = prev;
}
public BufferBlock getNext() {
return next;
}
public void setNext(BufferBlock next) {
this.next = next;
}
public int getSize() {
return size;
}
public boolean isDirtyBit() {
return dirtyBit;
}
public void setDirtyBit(boolean dirtyBit) {
this.dirtyBit = dirtyBit;
}
public long getStartAddress() {
return startAddress;
}
public void setStartAddress(long startAddress) {
this.startAddress = startAddress;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/CityRecord.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/CityRecord.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/CityRecord.java
0,0 → 1,25
 
// Specific implementation of CityRecord that stores coordinates and a city name
public class CityRecord implements Record {
private String name; // City name
private int x; // X-coordinate
private int y; // Y-coordinate
// Constructor initializing a new CityRecord
public CityRecord(String name, int x, int y) {
this.x = x;
this.y = y;
this.name = name;
}
// Encapsulation methods
public String getName() {
return name;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/CmdParser.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/CmdParser.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/CmdParser.java
0,0 → 1,202
import java.util.ArrayList;
import java.util.LinkedList;
 
// Class to parse a specific set of commands
public class CmdParser {
BSTree<String, Handle> GISTree; // Binary Search Tree
PRQuadTree CTree; // PR QuadTree
NodeSerializer serializer;
public CmdParser(MemManager mem) {
// Initialize BSTree and PRQuadTree
GISTree = new BSTree<String, Handle>(mem);
CTree = new PRQuadTree(mem);
serializer = new NodeSerializer(mem);
}
// Calls specific functions depending on input
public void Parse(String input) {
// Split the passed line into tokens
String delim = "[ ]+";
String[] tokens = input.split(delim);
// Echo the command to the output
for (String token : tokens) {
System.out.printf(token + " ");
}
System.out.printf("\n");
// Parse tokens to determine what action to take
if (tokens[0].compareToIgnoreCase("insert") == 0) {
Cmd_Insert(tokens);
} else if (tokens[0].compareToIgnoreCase("remove") == 0) {
Cmd_Remove(tokens);
} else if (tokens[0].compareToIgnoreCase("find") == 0) {
Cmd_Find(tokens);
} else if (tokens[0].compareToIgnoreCase("search") == 0) {
Cmd_Search(tokens);
} else if (tokens[0].compareToIgnoreCase("debug") == 0) {
Cmd_Debug();
} else if (tokens[0].compareToIgnoreCase("makenull") == 0) {
Cmd_Makenull();
} else {
System.out.printf(">> \"%s\" command is not supported\n", tokens[0]);
}
System.out.printf("\n");
}
// Parse insert command
private void Cmd_Insert(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 4) {
System.out.printf(">> Arguments must be in format \"insert x y name\"\n");
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
String name = tokens[3];
if (x < 0 || x > 16383 || y < 0 || y > 16383) {
System.out.printf(">> Insert failed: Coordinate values out of range\n");
} else {
// If all arguments are ok, create a new record with the specified values
CityRecord newRecord = new CityRecord(name, x, y);
// Check if record with same coordinates already exists
LinkedList<Record> list = new LinkedList<Record>();
CTree.search(x, y, 0, list);
if (list.size() != 0) {
System.out.printf(">> Insert failed: City at (%d,%d) already exists\n", x, y);
} else {
// Insert record into both trees
System.out.printf(">> Inserting city %s (%d,%d)\n", name, x, y);
CTree.insert(newRecord);
Handle cityHandle = serializer.cityRecordToHandle(newRecord);
GISTree.insert(name, cityHandle);
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Insert failed: Unable to parse given coordinates\n");
}
}
}
// Parse remove command
private void Cmd_Remove(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length < 2 || tokens.length > 3) {
System.out.printf(">> Arguments must be in format \"remove x y\" or \" remove name\"\n");
} else {
// A single argument means search by name
if (tokens.length == 2) {
String name = tokens[1];
// First check if city exists
Handle handle = GISTree.find(name);
if (handle != null) {
CityRecord record = serializer.handleToCityRecord(handle);
// Remove city if found
System.out.printf(">> Removing city %s (%d,%d)\n",
record.getName(), record.getX(), record.getY());
GISTree.remove(name, record.getX(), record.getY());
CTree.remove(record.getX(), record.getY());
} else {
System.out.printf(">> Remove failed: City %s not found\n", name);
}
// Otherwise search by coordinates
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
if (x < 0 || x > 16383 || y < 0 || y > 16383) {
System.out.printf(">> Remove failed: Coordinate values out of range\n");
} else {
// Check if city with coordinates exists
LinkedList<Record> list = new LinkedList<Record>();
CTree.search(x, y, 0, list);
if (list.size() == 0) {
System.out.printf(">> Remove failed: City with coordinates (%d,%d) not found\n", x, y);
} else {
// Remove using coordinates
System.out.printf(">> Removing city %s (%d,%d)\n",
((CityRecord)list.get(0)).getName(), list.get(0).getX(), list.get(0).getY());
CTree.remove(x, y);
GISTree.remove(((CityRecord)list.get(0)).getName(), x, y);
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Remove failed: Unable to parse given coordinates\n");
}
}
}
}
// Parse find command
private void Cmd_Find(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 2) {
System.out.printf(">> Arguments must be in format \"find name\"\n");
} else {
String name = tokens[1];
// Get all records with the matching name
ArrayList<Handle> records = GISTree.findAll(name);
if (records.size() != 0) {
// For each city found, print the city details
for (Handle handle : records) {
CityRecord record = serializer.handleToCityRecord(handle);
System.out.printf(">> City found: %s (%d,%d)\n", record.getName(), record.getX(), record.getY());
}
} else {
System.out.printf(">> Find failed: City %s not found\n", name);
}
}
}
// Parse search command
private void Cmd_Search(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 4) {
System.out.printf(">> Arguments must be in format \"search x y radius\"\n");
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
int r = Integer.parseInt(tokens[3]);
if (r < 0 || r > 16383) {
System.out.printf(">> Search failed: Radius value out of range\n");
} else if (x < -16383 || x > 16383 || y < -16383 || y > 16383) {
System.out.printf(">> Search failed: Coordinate values out of range\n");
} else {
// Get a list of all cities found within specified radius of point
LinkedList<Record> results = new LinkedList<Record>();
int nodesLookedAt = CTree.search(x, y, r, results);
System.out.printf(">> %d nodes visited:\n", nodesLookedAt);
if (results.size() == 0) {
System.out.printf(">> No records found with specified coordinates\n");
} else {
// Print the found cities
for (Record record : results) {
System.out.printf(">> %s (%d,%d)\n", ((CityRecord)record).getName(), record.getX(), record.getY());
}
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Search failed: Unable to parse given coordinates\n");
}
}
}
// Parse debug command
private void Cmd_Debug() {
CTree.printDebug();
}
// Parse makenull command
private void Cmd_Makenull() {
GISTree.clear();
CTree.clear();
System.out.printf(">> Makenull successful\n");
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/Dictionary.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/Dictionary.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/Dictionary.java
0,0 → 1,10
import java.util.ArrayList;
 
// Generic dictionary interface
public interface Dictionary<Key, Element> {
public void insert(Key k, Element e);
public void clear();
public void remove(Key k);
public Element find(Key k);
public ArrayList<Element> findAll(Key k);
}
/Classwork/CS3114 - Data Algorithms/Project 4/DoubleLinkedList.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/DoubleLinkedList.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/DoubleLinkedList.java
0,0 → 1,138
// Class for managing the linked list of free blocks
public class DoubleLinkedList {
 
private LinkedListBlock head; // Start of linked list
 
public void insert(LinkedListBlock entry) {
 
boolean adjacencyFound = false; // Adjacency flag
 
// Create the first entry if there are none existing
if (head == null) {
head = entry;
head.setNextBlock(null);
head.setPrevBlock(null);
return;
}
 
LinkedListBlock current = head;
// Check to see if adjacent entries exist
while (current != null) {
if (current.getStartAddress() == entry.getEndAddress() + 1) {
// Entry is adjacent to start of current
LinkedListBlock newEntry = new LinkedListBlock(entry.getStartAddress(),
current.getEndAddress(), entry.getSize() + current.getSize());
remove(current.getStartAddress());
insert(newEntry);
adjacencyFound = true;
break;
}
if (current.getEndAddress() == entry.getStartAddress() - 1) {
// Entry is adjacent to end of current
LinkedListBlock newEntry = new LinkedListBlock(current.getStartAddress(),
entry.getEndAddress(), current.getSize() + entry.getSize());
remove(current.getStartAddress());
insert(newEntry);
adjacencyFound = true;
break;
}
current = current.getNextBlock();
}
 
// Otherwise insert entry into sorted list (by size)
current = head;
if (!adjacencyFound && (entry.getSize() > current.getSize())) {
// Insert into beginning of list if size is largest
entry.setNextBlock(current);
current.setPrevBlock(entry);
head = entry;
return;
} else if (!adjacencyFound) {
// Otherwise find location to insert into
LinkedListBlock prev = head;
while (prev.getNextBlock() != null) {
current = prev.getNextBlock();
if (entry.getSize() == current.getSize()) {
// Sort by address location in accending order
if (entry.getStartAddress() < current.getStartAddress()) {
// Insert before current
entry.setNextBlock(current);
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
current.setPrevBlock(entry);
return;
} else {
// Insert after current
prev = current;
if (prev.getNextBlock() != null) {
current = prev.getNextBlock();
entry.setNextBlock(current);
current.setPrevBlock(entry);
}
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
return;
}
} else if (entry.getSize() > current.getSize()) {
// Insert block between prev and current
entry.setNextBlock(current);
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
current.setPrevBlock(entry);
return;
} else {
// Otherwise continue searching
prev = current;
}
}
// Insert into end of list
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
}
}
 
// Deletes an entry from the list, returns true if address is found
public boolean remove(long address) {
// First check if list is empty
if (head == null) {
return false;
} else {
// Otherwise loop through and fine entry
LinkedListBlock entry = head;
do {
if (entry.getStartAddress() == address) {
if (entry.getPrevBlock() == null && entry.getNextBlock() == null) {
// Deletes entry (only entry in list)
head = null;
} else if (entry.getPrevBlock() == null && entry.getNextBlock() != null) {
// Deletes entry (first in list)
head = entry.getNextBlock();
head.setPrevBlock(null);
} else if (entry.getPrevBlock() != null && entry.getNextBlock() == null) {
// Deletes entry (last in list)
entry.getPrevBlock().setNextBlock(null);
} else {
// Deletes entry (in between two entries)
LinkedListBlock prev = entry.getPrevBlock();
prev.setNextBlock(entry.getNextBlock());
entry.getNextBlock().setPrevBlock(prev);
}
return true;
}
entry = entry.getNextBlock();
} while (entry != null);
}
return false;
}
 
// Returns an entry from the list with the passed address
public LinkedListBlock getFirstEntry() {
// First check if list is empty
if (head == null) {
return null;
} else {
// Otherwise return head entry
return head;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/Handle.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/Handle.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/Handle.java
0,0 → 1,17
// Handle passed to and from MemManager
public class Handle {
private long address; // Location of block in memory pool
 
public Handle(long addr) {
this.address = addr;
}
public long getAddress() {
return address;
}
 
public void setAddress(int address) {
this.address = address;
}
 
}
/Classwork/CS3114 - Data Algorithms/Project 4/LRUBuffer.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/LRUBuffer.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/LRUBuffer.java
0,0 → 1,306
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;
 
public class LRUBuffer {
private int blockSize = 0;
private int cacheHit = 0;
private int cacheMiss = 0;
private int diskReads = 0;
private int diskWrites = 0;
private String dataFile;
private String statFile;
private BufferBlock bufferHead;
private RandomAccessFile file;
public LRUBuffer(String datafile, String statfile, int size, int blocksize) {
this.dataFile = datafile;
this.statFile = statfile;
this.blockSize = blocksize;
// Allocates a new doubly linked list of BufferBlocks
// The buffer will have at least one block
bufferHead = new BufferBlock(blockSize);
BufferBlock cur = bufferHead;
for (int i = 0; i < size-1; i++) {
BufferBlock newBlock = new BufferBlock(blockSize);
cur.setNext(newBlock);
newBlock.setPrev(cur);
cur = newBlock;
}
// Open access to the datafile
try {
file = new RandomAccessFile(dataFile, "rw");
file.setLength(0);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
/** Recursive function to copy length number of bytes from file at startAddress
* to offset position in out
*
* @param out Destination array to copy bytes to
* @param offset Offset of position to write to in the destination array
* @param startAddress Starting address on disk to copy bytes from
* @param length Number of bytes to copy to the destination array
* @return
*/
public boolean getBytes(byte[] out, int offset, long startAddress, int length) {
BufferBlock cur = bufferHead;
// If the requested length doesnt extends to the next block
if (startAddress % blockSize + length < blockSize) {
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (startAddress >= cur.getStartAddress() && startAddress < cur.getStartAddress() + blockSize) {
// Address is in block
cacheHit++;
// Bring current block to front of list
bringToFront(cur);
// Get data
cur.getBytes(out, offset, (int)startAddress % blockSize, length);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
cur = readFromDisk(startAddress);
insertToFront(cur);
// Get data from block
cur.getBytes(out, offset, (int)startAddress % blockSize, length);
return true;
// If the requested length extends to the next block
} else {
int bytesToRead = 0;
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (startAddress >= cur.getStartAddress() && startAddress < cur.getStartAddress() + blockSize) {
// Address is in block
cacheHit++;
// Bring current block to front of list
bringToFront(cur);
// Read in from address to end of block
bytesToRead = blockSize - (int)startAddress % blockSize;
cur.getBytes(out, offset, (int)startAddress % blockSize, bytesToRead);
offset += bytesToRead;
// Get data from the next consecutive block
getBytes(out, offset, startAddress + bytesToRead, length - bytesToRead);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
cur = readFromDisk(startAddress);
insertToFront(cur);
// Read in from address to end of block
bytesToRead = blockSize - (int)startAddress % blockSize;
cur.getBytes(out, offset, (int)startAddress % blockSize, bytesToRead);
offset += bytesToRead;
// Get data from the next consecutive block
getBytes(out, offset, startAddress + bytesToRead, length - bytesToRead);
return true;
}
}
/** Recursive function to copy length number of bytes from in to file at startAddress
*
* @param in Input array to copy bytes from
* @param startAddress Starting address on disk to copy bytes to
* @param length Number of bytes to copy from in to disk
* @return
*/
public boolean putBytes(byte[] in, int offset, long startAddress, int length) {
BufferBlock cur = bufferHead;
// If the requested length doesnt extends to the next block
if (startAddress % blockSize + length <= blockSize) {
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (startAddress >= cur.getStartAddress() && startAddress < cur.getStartAddress() + blockSize) {
// Address is in block
cacheHit++;
// Bring current block to front of list
bringToFront(cur);
// Put data into block
cur.setBytes(in, offset, (int)startAddress % blockSize, length);
cur.setDirtyBit(true);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
cur = readFromDisk(startAddress);
insertToFront(cur);
// Put data into block
cur.setBytes(in, offset, (int)startAddress % blockSize, length);
cur.setDirtyBit(true);
return true;
// If the requested length extends to the next block
} else {
int bytesToWrite = 0;
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (startAddress >= cur.getStartAddress() && startAddress < cur.getStartAddress() + blockSize) {
// Address is in block
cacheHit++;
// Bring current block to front of list
bringToFront(cur);
// Put in data until end of block
bytesToWrite = blockSize - (int)startAddress % blockSize;
cur.setBytes(in, offset, (int)startAddress % blockSize, bytesToWrite);
cur.setDirtyBit(true);
startAddress += bytesToWrite;
// Put remaining data into the next consecutive block
putBytes(in, offset + bytesToWrite, startAddress, length - bytesToWrite);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
cur = readFromDisk(startAddress);
insertToFront(cur);
// Put in data until end of block
bytesToWrite = blockSize - (int)startAddress % blockSize;
cur.setBytes(in, offset, (int)startAddress % blockSize, bytesToWrite);
cur.setDirtyBit(true);
startAddress += bytesToWrite;
// Put remaining data into the next consecutive block
putBytes(in, offset + bytesToWrite, startAddress, length - bytesToWrite);
return true;
}
}
/** Brings a block currently in the list to the front of the list */
private void bringToFront(BufferBlock block) {
// If block is already in front, return
if (block == bufferHead)
return;
if (block.getPrev() != null)
block.getPrev().setNext(block.getNext());
if (block.getNext() != null)
block.getNext().setPrev(block.getPrev());
block.setPrev(null);
bufferHead.setPrev(block);
block.setNext(bufferHead);
bufferHead = block;
}
/** Inserts a new block into the front of the list */
private void insertToFront(BufferBlock block) {
// Set head as current block
block.setPrev(null);
bufferHead.setPrev(block);
block.setNext(bufferHead);
bufferHead = block;
// Write last block in list to disk if dirty bit is set
// Last block is also removed
BufferBlock cur = bufferHead;
while (cur.getNext() != null) {
cur = cur.getNext();
}
cur.getPrev().setNext(null);
if (cur.isDirtyBit()) {
writeToDisk(cur);
}
}
 
/** Reads a new block from disk given an address */
private BufferBlock readFromDisk(long address) {
diskReads++;
byte[] data = new byte[blockSize];
long offset = address / blockSize;
offset = offset * blockSize;
try {
file.seek(offset);
file.read(data);
} catch (IOException e) {
e.printStackTrace();
}
// Pass read block into a new block
BufferBlock newBlock = new BufferBlock(blockSize);
newBlock.setBytes(data, 0, 0, blockSize);
newBlock.setStartAddress(offset);
return newBlock;
}
/** Writes the specified block to disk */
private void writeToDisk(BufferBlock block) {
diskWrites++;
byte[] data = new byte[blockSize];
block.getBytes(data, 0, 0, blockSize);
try {
file.seek(block.getStartAddress());
file.write(data);
} catch (IOException e) {
e.printStackTrace();
}
}
/** Flush the buffer by writing all blocks in buffer to disk */
public void flushBuffer() {
BufferBlock cur = bufferHead;
while (cur != null) {
if (cur.isDirtyBit()) {
writeToDisk(cur);
}
cur = cur.getNext();
}
try {
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/** Write stats to stat file */
public void writeStats(long time) {
try {
BufferedWriter out = new BufferedWriter(new FileWriter(statFile, true));
StringBuilder str = new StringBuilder();
str.append("Datafile: " + dataFile + " | ");
str.append("Cache Hits: " + cacheHit + " | ");
str.append("Cache Misses: " + cacheMiss + " | ");
str.append("Disk Reads: " + diskReads + " | ");
str.append("Disk Writes: " + diskWrites + " | ");
str.append("Time to Sort: " + time + "\n");
out.write(str.toString());
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void printBlockIDs() {
BufferBlock cur = bufferHead;
System.out.print("Buffer Pool Blocks: ");
while (cur != null && cur.getStartAddress() != -1) {
// System.out.print(cur.getStartAddress() + " ; ");
System.out.print(cur.getStartAddress() / blockSize + " ; ");
cur = cur.getNext();
}
System.out.print("\n");
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/LinkedListBlock.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/LinkedListBlock.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/LinkedListBlock.java
0,0 → 1,46
// Individual entries in the linked list
public class LinkedListBlock {
private long startAddress; // Start address of free block
private long endAddress; // End address of free block
private long size; // Total size of free block
private LinkedListBlock nextBlock; // Pointer to next block in list
private LinkedListBlock prevBlock; // Pointer to previous block in list
// Constructor
public LinkedListBlock(long start, long end, long size){
this.startAddress = start;
this.endAddress = end;
this.size = size;
setNextBlock(null);
setPrevBlock(null);
}
public long getStartAddress() {
return startAddress;
}
public long getEndAddress() {
return endAddress;
}
public long getSize() {
return size;
}
public LinkedListBlock getNextBlock() {
return nextBlock;
}
public void setNextBlock(LinkedListBlock nextBlock) {
this.nextBlock = nextBlock;
}
 
public LinkedListBlock getPrevBlock() {
return prevBlock;
}
public void setPrevBlock(LinkedListBlock prevBlock) {
this.prevBlock = prevBlock;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/MemManager.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/MemManager.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/MemManager.java
0,0 → 1,137
import java.nio.ByteBuffer;
 
// Memory manager that operates on the buffer pool
public class MemManager {
 
private LRUBuffer buffer; // Buffer pool interfacing to disk
private int blockSize = 0; // Size of each block
private long fileLength = 0; // Current length of the file
private DoubleLinkedList emptyBlockList; // List of free blocks
 
// Constructor
public MemManager(LRUBuffer buffer, int blockSize) {
// Initialize buffer pool and list of free blocks
this.buffer = buffer;
emptyBlockList = new DoubleLinkedList();
this.blockSize = blockSize;
}
 
// Insert a record and return its position handle.
public Handle insert(byte[] data, int length) {
// There are no free blocks
if (emptyBlockList.getFirstEntry() == null) {
// Create a new free block of size blockSize
LinkedListBlock newEntry = new LinkedListBlock(0, blockSize - 1, blockSize);
emptyBlockList.insert(newEntry);
fileLength = blockSize;
}
// Size to insert is greater than size of largest free block
if ((length + 1) > emptyBlockList.getFirstEntry().getSize()) {
// Calculate how many new free blocks needs to be created to hold the byte array
int blocks = length / blockSize;
if (length % blockSize != 0) {
blocks++;
}
for (int i = 0; i < blocks; i++) {
// Create a new free block and insert it into the list of empty block
LinkedListBlock newEntry = new LinkedListBlock(fileLength, fileLength + blockSize - 1, blockSize);
emptyBlockList.insert(newEntry);
fileLength += blockSize;
}
}
// Find the first free block that can hold the byte array
LinkedListBlock start = emptyBlockList.getFirstEntry();
while (start != null) {
// Current block is last block in list, insert into current block
if (start.getNextBlock() == null) {
Handle newHandle = insertDataIntoMemPool(start, data, length);
return newHandle;
// Best fit block found, insert into current block
} else if ((length + 1) > start.getNextBlock().getSize()) {
Handle newHandle = insertDataIntoMemPool(start, data, length);
return newHandle;
}
// Otherwise keep searching for best fit block
start = start.getNextBlock();
}
return null;
}
 
// Free a block at address. Merge adjacent blocks if appropriate.
public void remove(Handle handle) {
short size = getDataBlockSize(handle);
// Needs to create a new empty block at the specified address
LinkedListBlock newEntry = new LinkedListBlock(handle.getAddress(), handle.getAddress() + size, size + 1);
emptyBlockList.insert(newEntry);
}
 
// Return the record with handle posHandle, up to size bytes.
public void get(byte[] data, Handle handle) {
// Get bytes from buffer
buffer.getBytes(data, 0, handle.getAddress() + 1, getDataBlockSize(handle));
}
// Returns the value of the first byte for the data entry (size)
public short getDataBlockSize(Handle handle) {
byte[] shortArr = new byte[2];
// Get the first byte at the address
buffer.getBytes(shortArr, 1, handle.getAddress(), 1);
ByteBuffer shortBuffer = ByteBuffer.wrap(shortArr);
short size = shortBuffer.getShort();
return size;
}
// Copies the passed byte array into the buffer
private Handle insertDataIntoMemPool(LinkedListBlock entry, byte[] data, int length) {
// Insert the size of the array into the first byte
byte[] size = new byte[1];
ByteBuffer buff = ByteBuffer.wrap(size);
buff.put((byte)length);
buffer.putBytes(size, 0, entry.getStartAddress(), 1);
// Insert the array
buffer.putBytes(data, 0, entry.getStartAddress() + 1, length);
// Create a new free block with remaining free space
if (entry.getSize() - (length + 1) != 0) {
long startAddress = entry.getStartAddress() + length + 1;
long newSize = entry.getSize() - (length + 1);
long endAddress = startAddress + newSize - 1;
LinkedListBlock newEntry = new LinkedListBlock(startAddress, endAddress, newSize);
emptyBlockList.remove(entry.getStartAddress());
emptyBlockList.insert(newEntry);
} else {
emptyBlockList.remove(entry.getStartAddress());
LinkedListBlock newEntry = new LinkedListBlock(fileLength, fileLength + blockSize - 1, blockSize);
emptyBlockList.insert(newEntry);
fileLength += blockSize;
}
Handle newHandle = new Handle(entry.getStartAddress());
return newHandle;
}
// Dump a printout of the freeblock list
public void dump() {
LinkedListBlock head = emptyBlockList.getFirstEntry();
while (head != null) {
System.out.printf("Empty block at address %d to %d\n", head.getStartAddress(), head.getStartAddress() + head.getSize() - 1);
head = head.getNextBlock();
}
}
public void printBuffer() {
buffer.printBlockIDs();
}
public void clear() {
LinkedListBlock head = emptyBlockList.getFirstEntry();
while (head != null) {
emptyBlockList.remove(head.getStartAddress());
head = head.getNextBlock();
}
LinkedListBlock newEntry = new LinkedListBlock(0, fileLength-1, fileLength);
emptyBlockList.insert(newEntry);
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/NodeSerializer.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/NodeSerializer.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/NodeSerializer.java
0,0 → 1,216
import java.nio.ByteBuffer;
 
// Assisting class for converting classes to a byte array and vice versa
public class NodeSerializer {
private MemManager memoryManager;
// Constructor
public NodeSerializer(MemManager mem) {
memoryManager = mem;
}
// Removes the handle and subhandles for leaf nodes (city name)
public void removeHandle(Handle handle) {
PRQuadTreeNode node = handleToNode(handle);
if (node instanceof PRQuadTreeNodeFlyweight) {
return;
} else if (node instanceof PRQuadTreeNodeLeaf) {
byte[] array = new byte[memoryManager.getDataBlockSize(handle)];
memoryManager.get(array, handle);
ByteBuffer buffer = ByteBuffer.wrap(array);
int records = (int)buffer.get();
records = (int)buffer.get();
for (int i = 0; i < records; i++) {
// Remove the CityRecord and the name of the city
int addr = buffer.getInt();
Handle cityhandle = new Handle(addr);
 
removeCityRecordHandle(cityhandle);
}
}
memoryManager.remove(handle);
}
public void removeCityRecordHandle(Handle handle) {
// Remove the handle to the city name
byte[] data = new byte[memoryManager.getDataBlockSize(handle)];
memoryManager.get(data, handle);
ByteBuffer cityrecord = ByteBuffer.wrap(data);
Handle name = new Handle(cityrecord.getInt(8));
memoryManager.remove(name);
memoryManager.remove(handle);
}
// Resets the empty block list in the memory manager to the size of the file
public void clearMemory() {
memoryManager.clear();
}
// Print debug info from the memory manager
public void printDebug() {
memoryManager.printBuffer();
memoryManager.dump();
}
// Allocates the node onto disk and returns a handle to the node
public Handle nodeToHandle(PRQuadTreeNode node) {
if (node instanceof PRQuadTreeNodeInternal) {
byte[] array = nodeInternalToByteArray((PRQuadTreeNodeInternal)node);
Handle ret = memoryManager.insert(array, array.length);
return ret;
} else if (node instanceof PRQuadTreeNodeLeaf) {
byte[] array = nodeLeafToByteArray((PRQuadTreeNodeLeaf)node);
Handle ret = memoryManager.insert(array, array.length);
return ret;
} else {
Handle ret = new Handle(-1);
return ret;
}
}
// Reads a handle off the disk and returns the corresponding
public PRQuadTreeNode handleToNode(Handle handle) {
if (handle.getAddress() == -1) {
PRQuadTreeNodeFlyweight ret = new PRQuadTreeNodeFlyweight();
return ret;
} else {
byte[] array = new byte[memoryManager.getDataBlockSize(handle)];
memoryManager.get(array, handle);
return byteArrayToNode(array);
}
}
private byte[] stringToByteArray(String str) {
// Use ByteBuffer to serialize to bytes
byte[] byteArray = new byte[str.length() + 1];
byte[] bstr = str.getBytes();
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
// Set first byte as the length
buffer.put((byte)bstr.length);
// Set remaining bytes as the string
buffer.put(bstr);
 
return byteArray;
}
private byte[] nodeInternalToByteArray(PRQuadTreeNodeInternal node) {
byte[] byteArray = new byte[17];
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
buffer.put((byte)1);
buffer.putInt((int)node.getNW().getAddress());
buffer.putInt((int)node.getNE().getAddress());
buffer.putInt((int)node.getSW().getAddress());
buffer.putInt((int)node.getSE().getAddress());
return byteArray;
}
 
private byte[] nodeLeafToByteArray(PRQuadTreeNodeLeaf node) {
byte[] byteArray = new byte[14];
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
// Set first byte to indicate leaf node
buffer.put((byte)0);
// Set second byte to hold number of records
buffer.put((byte)node.getCount());
CityRecord record = (CityRecord) node.getFirst();
buffer.putInt((int)cityRecordToHandle(record).getAddress());
record = (CityRecord) node.getNext(record);
while (record != null) {
buffer.putInt((int)cityRecordToHandle(record).getAddress());
record = (CityRecord) node.getNext(record);
}
return byteArray;
}
private String byteArrayToString(byte[] byteArray) {
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
byte[] bstr = new byte[(int)buffer.get()];
buffer.get(bstr);
String str = new String(bstr);
return str;
}
private PRQuadTreeNode byteArrayToNode(byte[] data) {
ByteBuffer buffer = ByteBuffer.wrap(data);
// Internal node
byte b = buffer.get();
if (b == (byte)1) {
PRQuadTreeNodeInternal newNode = new PRQuadTreeNodeInternal(new Handle(-1), this);
Handle NW = new Handle(buffer.getInt());
Handle NE = new Handle(buffer.getInt());
Handle SW = new Handle(buffer.getInt());
Handle SE = new Handle(buffer.getInt());
newNode.setNW(NW);
newNode.setNE(NE);
newNode.setSW(SW);
newNode.setSE(SE);
return newNode;
// Leaf node
} else if (b == (byte)0) {
PRQuadTreeNodeLeaf newNode = new PRQuadTreeNodeLeaf(3);
int records = (int)buffer.get();
for (int i = 0; i < records; i++) {
int address = buffer.getInt();
Handle handle = new Handle(address);
CityRecord record = handleToCityRecord(handle);
newNode.insert(record);
}
return newNode;
} else {
return null;
}
}
public Handle cityRecordToHandle(CityRecord record) {
byte[] data = new byte[12];
ByteBuffer buffer = ByteBuffer.wrap(data);
byte[] cityname = stringToByteArray(record.getName());
Handle handle = memoryManager.insert(cityname, cityname.length);
buffer.putInt(record.getX());
buffer.putInt(record.getY());
buffer.putInt((int)handle.getAddress());
Handle ret = memoryManager.insert(data, 12);
return ret;
}
public CityRecord handleToCityRecord(Handle handle) {
byte[] data = new byte[12];
memoryManager.get(data, handle);
ByteBuffer buffer = ByteBuffer.wrap(data);
int x = buffer.getInt();
int y = buffer.getInt();
int addr = buffer.getInt();
Handle cityhandle = new Handle(addr);
byte[] city = new byte[memoryManager.getDataBlockSize(cityhandle)];
memoryManager.get(city, cityhandle);
String cityname = byteArrayToString(city);
CityRecord record = new CityRecord(cityname, x, y);
return record;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTree.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTree.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTree.java
0,0 → 1,289
import java.util.LinkedList;
import java.lang.Math;
 
// Somewhat generic implementation of a PR QuadTree
public class PRQuadTree {
private Handle root;
private Handle flyweight;
private int maxSize = 16384; // Maximum size of the grid
NodeSerializer serializer;
// Constructor
public PRQuadTree(MemManager memManager) {
serializer = new NodeSerializer(memManager);
// Initialize a singleton flyweight object
flyweight = new Handle(-1);
root = flyweight;
}
// Inserts given record into the tree
public void insert(Record record) {
// Recursively call function to insert a record
this.root = insertRecursive(root, record, 0, 0, maxSize, maxSize);
}
// Removes a record from the tree given a set of coordinates
public void remove(int x, int y) {
// Recursively call function to remove a record
this.root = removeRecursive(root, x, y, 0, 0, maxSize, maxSize);
}
// Searches for all records within radius and returns the results in the passed list
public int search(int x, int y, int r, LinkedList<Record> results) {
// Searches for all cities in radius of given point
// Number of nodes looked at is returned while list of cities is stored in 'list'
return searchRecursive(root, x, y, r, results, 0, 0, maxSize, maxSize);
}
// Removes all records from the tree
public void clear() {
// Set root to the flyweight to remove all nodes
root = flyweight;
serializer.clearMemory();
}
// Prints out all records from the tree as well as memory manager and buffer information
public void printDebug() {
System.out.printf(">> ");
debug(root);
System.out.printf("\n");
serializer.printDebug();
}
// Prints out all records below the root
public void debug(Handle root) {
PRQuadTreeNode r = serializer.handleToNode(root);
// If root is the flyweight ...
if (root.getAddress() == -1) {
System.out.printf("*");
// If root is a leaf ...
} else if (r instanceof PRQuadTreeNodeLeaf) {
Record record = ((PRQuadTreeNodeLeaf) r).getFirst();
do {
System.out.printf("%d,%d,%s:", record.getX(), record.getY(), ((CityRecord) record).getName());
record = ((PRQuadTreeNodeLeaf) r).getNext(record);
} while (record != null);
System.out.printf("|");
// If root is an internal node ...
} else {
System.out.printf("(");
debug(((PRQuadTreeNodeInternal) r).getNW());
debug(((PRQuadTreeNodeInternal) r).getNE());
debug(((PRQuadTreeNodeInternal) r).getSW());
debug(((PRQuadTreeNodeInternal) r).getSE());
System.out.printf(")");
}
}
// Returns the root of the tree
public Handle getRoot() {
return root;
}
// Recursively insert a record into a root node
private Handle insertRecursive(Handle root, Record record, int originX, int originY, int sizeX, int sizeY) {
PRQuadTreeNode rootNode = serializer.handleToNode(root);
serializer.removeHandle(root);
// If root is the flyweight, create and return a leaf node with the record
if (root.getAddress() == -1) {
PRQuadTreeNodeLeaf newLeaf = new PRQuadTreeNodeLeaf(3);
newLeaf.insert(record);
Handle newHandle = serializer.nodeToHandle(newLeaf);
return newHandle;
// If root is a leaf ...
} else if (rootNode instanceof PRQuadTreeNodeLeaf) {
// Try to insert the record into the leaf, return leaf if successful
if (((PRQuadTreeNodeLeaf) rootNode).insert(record)) {
return serializer.nodeToHandle(rootNode);
// Otherwise all nodes in the leaf are filled
} else {
// Create new internal node and populate it with flyweights
PRQuadTreeNodeInternal newNode = new PRQuadTreeNodeInternal(flyweight, serializer);
Handle newHandle = serializer.nodeToHandle(newNode);
// Get the first record to insert into the internal node
Record rec = ((PRQuadTreeNodeLeaf) rootNode).getFirst();
do {
// Insert every record from the full leaf into the internal node
newHandle = insertRecursive(newHandle, rec, originX, originY, sizeX, sizeY);
rec = ((PRQuadTreeNodeLeaf) rootNode).getNext(rec);
} while (rec != null);
// Now insert the initial record into the internal node
newHandle = insertRecursive(newHandle, record, originX, originY, sizeX, sizeY);
// Remove the old node
// Return the newly created internal node
return newHandle;
}
// If root is an internal node ...
} else {
// Insert the record into the correct quadrant
if (record.getX() < originX + sizeX/2 && record.getY() < originY + sizeY/2) {
// Insert into NW quadrant
((PRQuadTreeNodeInternal) rootNode).setNW(insertRecursive(((PRQuadTreeNodeInternal) rootNode).getNW(), record, originX, originY, sizeX/2, sizeY/2));
} else if (record.getX() >= originX + sizeX/2 && record.getY() < originY + sizeY/2) {
// Insert into NE quadrant
((PRQuadTreeNodeInternal) rootNode).setNE(insertRecursive(((PRQuadTreeNodeInternal) rootNode).getNE(), record, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY/2));
} else if (record.getX() < originX + sizeX/2 && record.getY() >= originY + sizeY/2) {
// Insert into SW quadrant
((PRQuadTreeNodeInternal) rootNode).setSW(insertRecursive(((PRQuadTreeNodeInternal) rootNode).getSW(), record, originX, originY + sizeY/2, sizeX/2, sizeY - sizeY/2));
} else if (record.getX() >= originX + sizeX/2 && record.getY() >= originY + sizeY/2) {
// Insert into SE quadrant
((PRQuadTreeNodeInternal) rootNode).setSE(insertRecursive(((PRQuadTreeNodeInternal) rootNode).getSE(), record, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2));
}
// Return the internal node after inserting a record into it
return serializer.nodeToHandle(rootNode);
}
}
// Recursively remove a record from a root node given the coordinates
private Handle removeRecursive(Handle root, int x, int y, int originX, int originY, int sizeX, int sizeY) {
PRQuadTreeNode rootNode = serializer.handleToNode(root);
// If root is the flyweight, return the root
if (root.getAddress() == -1) {
return root;
// If root is a leaf ...
} else if (rootNode instanceof PRQuadTreeNodeLeaf) {
if (((PRQuadTreeNodeLeaf) rootNode).find(x, y) != null) {
serializer.removeHandle(root);
((PRQuadTreeNodeLeaf) rootNode).remove(x, y);
if (rootNode.isEmpty()) {
return flyweight;
}
}
return serializer.nodeToHandle(rootNode);
 
// If root is an internal node ...
} else {
// Remove the record from the correct quadrant
if (x < originX + sizeX/2 && y < originY + sizeY/2) {
// Insert into NW quadrant
((PRQuadTreeNodeInternal) rootNode).setNW(removeRecursive(((PRQuadTreeNodeInternal) rootNode).getNW(), x, y, originX, originY, sizeX/2, sizeY/2));
} else if (x >= originX + sizeX/2 && y < originY + sizeY/2) {
// Insert into NE quadrant
((PRQuadTreeNodeInternal) rootNode).setNE(removeRecursive(((PRQuadTreeNodeInternal) rootNode).getNE(), x, y, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY/2));
} else if (x < originX + sizeX/2 && y >= originY + sizeY/2) {
// Insert into SW quadrant
((PRQuadTreeNodeInternal) rootNode).setSW(removeRecursive(((PRQuadTreeNodeInternal) rootNode).getSW(), x, y, originX, originY + sizeY/2, sizeX/2, sizeY - sizeY/2));
} else if (x >= originX + sizeX/2 && y >= originY + sizeY/2) {
// Insert into SE quadrant
((PRQuadTreeNodeInternal) rootNode).setSE(removeRecursive(((PRQuadTreeNodeInternal) rootNode).getSE(), x, y, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2));
}
// Return a flyweight if the internal node is empty after removal
if (rootNode.isEmpty()) {
serializer.removeHandle(root);
return flyweight;
// Otherwise if the internal node contains all leaves or flyweights ...
} else if (((PRQuadTreeNodeInternal) rootNode).containsAllLeavesOrFlyweight()) {
// If the number of records in subleaves is under 3, create and return a new leaf holding all records
if (((PRQuadTreeNodeInternal) rootNode).countOfAllLeafNodes() <= 3) {
PRQuadTreeNodeLeaf newLeaf = new PRQuadTreeNodeLeaf(3);
if (((PRQuadTreeNodeInternal) rootNode).countOfLeafNode(serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getNW())) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getNW()));
serializer.removeHandle(((PRQuadTreeNodeInternal) rootNode).getNW());
}
if (((PRQuadTreeNodeInternal) rootNode).countOfLeafNode(serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getNE())) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getNE()));
serializer.removeHandle(((PRQuadTreeNodeInternal) rootNode).getNE());
}
if (((PRQuadTreeNodeInternal) rootNode).countOfLeafNode(serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getSW())) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getSW()));
serializer.removeHandle(((PRQuadTreeNodeInternal) rootNode).getSW());
}
if (((PRQuadTreeNodeInternal) rootNode).countOfLeafNode(serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getSE())) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)serializer.handleToNode(((PRQuadTreeNodeInternal) rootNode).getSE()));
serializer.removeHandle(((PRQuadTreeNodeInternal) rootNode).getSE());
}
// Remove the internal node
serializer.removeHandle(root);
// Return the new leaf that holds all records from the internal node
return serializer.nodeToHandle(newLeaf);
// If there are more than 3 records in subleaves, return the internal node
} else {
serializer.removeHandle(root);
return serializer.nodeToHandle(rootNode);
}
// Otherwise return the internal node if it contains internal nodes
} else {
// Remove the internal node
serializer.removeHandle(root);
return serializer.nodeToHandle(rootNode);
}
}
}
// Recursively searches for records within radius of given coordinates
private int searchRecursive(Handle root, int x, int y, int radius, LinkedList<Record> results, int originX, int originY, int sizeX, int sizeY) {
PRQuadTreeNode rootNode = serializer.handleToNode(root);
// If root is the flyweight ...
if (root.getAddress() == -1) {
return 1;
// If root is a leaf ...
} else if (rootNode instanceof PRQuadTreeNodeLeaf) {
// Loop through each record in the leaf node
Record record = ((PRQuadTreeNodeLeaf) rootNode).getFirst();
do { // Note: the first record can never be null (else it'll be a flyweight)
// Check each record to see if it lies within the specified radius of the point
if ((x - record.getX()) * (x - record.getX()) + (y - record.getY()) * (y - record.getY()) <= radius * radius) {
// If it is, add it to the list
results.add(record);
}
record = ((PRQuadTreeNodeLeaf) rootNode).getNext(record);
} while (record != null);
// Return the number of nodes looked at (1, this node)
return 1;
// If root is an internal node ...
} else {
int ret = 0;
// Check each quadrant to see if any intersect with the circle/radius
// NW quadrant
if (intersects(x, y, radius, sizeX/2.0, sizeY/2.0, originX + (sizeX-1)/4.0, originY + (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) rootNode).getNW(), x, y, radius, results, originX, originY, sizeX/2, sizeY/2);
}
// NE quadrant
if (intersects(x, y, radius, sizeX - sizeX/2.0, sizeY/2.0, originX + (sizeX-1) - (sizeX-1)/4.0, originY + (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) rootNode).getNE(), x, y, radius, results, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY - sizeY/2);
}
// SW quadrant
if (intersects(x, y, radius, sizeX/2.0, sizeY - sizeY/2.0, originX + (sizeX-1)/4.0, originY + (sizeY-1) - (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) rootNode).getSW(), x, y, radius, results, originX, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2);
}
// SE quadrant
if (intersects(x, y, radius, sizeX - sizeX/2.0, sizeY - sizeY/2.0, originX + (sizeX-1) - (sizeX-1)/4.0, originY + (sizeY-1) - (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) rootNode).getSE(), x, y, radius, results, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2);
}
ret++;
return ret;
}
}
// Calculates if any points in a circle intersects with a rectangle
private boolean intersects(int cX, int cY, int cR, double rW, double rH, double rX, double rY) {
// Reference: http://stackoverflow.com/questions/401847/circle-rectangle-collision-detection-intersection/402010#402010
// Distance from center of circle to center of rectangle
double xCircleDistance = Math.abs(cX - rX);
double yCircleDistance = Math.abs(cY - rY);
// If Distance > width of rectangle + radius, circle cannot overlap rectangle
if (xCircleDistance > (rW/2 + cR)) {
return false;
}
if (yCircleDistance > (rH/2 + cR)) {
return false;
}
// If distance <= width of rectangle, circle must overlap rectangle
if (xCircleDistance <= (rW/2)) {
return true;
}
if (yCircleDistance <= (rH/2)) {
return true;
}
 
// Check for overlap on corners
double cornerDist = (xCircleDistance - rW/2) * (xCircleDistance - rW/2) +
(yCircleDistance - rH/2) * (yCircleDistance - rH/2);
 
return (cornerDist <= cR * cR);
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNode.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNode.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNode.java
0,0 → 1,5
 
// Interface for a generic PRQuadTree node
public interface PRQuadTreeNode {
public boolean isEmpty();
}
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeFlyweight.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeFlyweight.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeFlyweight.java
0,0 → 1,7
 
public class PRQuadTreeNodeFlyweight implements PRQuadTreeNode {
 
public boolean isEmpty() {
return true;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeInternal.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeInternal.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeInternal.java
0,0 → 1,84
 
// Internal node for the PRQuadTree
public class PRQuadTreeNodeInternal implements PRQuadTreeNode {
// Node in each quadrant
private Handle NW;
private Handle NE;
private Handle SW;
private Handle SE;
private Handle flyweight;
private NodeSerializer serializer;
 
// Constructor to initialize the node with flyweights
public PRQuadTreeNodeInternal(Handle flyweight, NodeSerializer mem) {
serializer = mem;
// Initialize all subnodes with the flyweight
NW = NE = SW = SE = flyweight;
this.flyweight = flyweight;
}
// Queries if all subnodes are flyweights
public boolean isEmpty() {
return (NW == flyweight)&&(NE == flyweight)&&
(SW == flyweight)&&(SE == flyweight);
}
// Test if node contains other internal nodes
public boolean containsAllLeavesOrFlyweight() {
// Queries if all subnodes are either leaves or flyweights
return (serializer.handleToNode(NW) instanceof PRQuadTreeNodeLeaf || serializer.handleToNode(NW) instanceof PRQuadTreeNodeFlyweight) &&
(serializer.handleToNode(NE) instanceof PRQuadTreeNodeLeaf || serializer.handleToNode(NE) instanceof PRQuadTreeNodeFlyweight) &&
(serializer.handleToNode(SW) instanceof PRQuadTreeNodeLeaf || serializer.handleToNode(SW) instanceof PRQuadTreeNodeFlyweight) &&
(serializer.handleToNode(SE) instanceof PRQuadTreeNodeLeaf || serializer.handleToNode(SE) instanceof PRQuadTreeNodeFlyweight);
}
// Returns the number of all records in all subleaves
public int countOfAllLeafNodes() {
int ret = 0;
if (serializer.handleToNode(NW) instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) serializer.handleToNode(NW)).getCount();
if (serializer.handleToNode(NE) instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) serializer.handleToNode(NE)).getCount();
if (serializer.handleToNode(SW) instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) serializer.handleToNode(SW)).getCount();
if (serializer.handleToNode(SE) instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) serializer.handleToNode(SE)).getCount();
return ret;
}
// Returns the number of records in a node if it is a leaf node
public int countOfLeafNode(PRQuadTreeNode node) {
if (node instanceof PRQuadTreeNodeLeaf)
return ((PRQuadTreeNodeLeaf) node).getCount();
else
return 0;
}
// Encapsulation functions
public Handle getNW() {
return NW;
}
public void setNW(Handle nW) {
NW = nW;
}
public Handle getNE() {
return NE;
}
public void setNE(Handle nE) {
NE = nE;
}
public Handle getSW() {
return SW;
}
public void setSW(Handle sW) {
SW = sW;
}
public Handle getSE() {
return SE;
}
public void setSE(Handle sE) {
SE = sE;
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeLeaf.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeLeaf.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/PRQuadTreeNodeLeaf.java
0,0 → 1,119
 
// Leaf node for the PRQuadTree
public class PRQuadTreeNodeLeaf implements PRQuadTreeNode {
private Record[] records; // Array holding the records in the leaf
private int numOfRecords; // Number of records in the leaf
// Initialize a new leaf node that holds 'size' records
public PRQuadTreeNodeLeaf(int size) {
records = new Record[size];
numOfRecords = size;
}
// Inserts each record from input leaf into current leaf
public void insert(PRQuadTreeNodeLeaf leaf) {
Record record = leaf.getFirst();
do {
this.insert(record);
record = leaf.getNext(record);
}
while (record != null);
}
// Inserts a record into the current leaf
public boolean insert(Record in) {
if (in == null)
return true;
boolean ret = false;
// If all records are filled, return false
for (Record record : records) {
if (record == null) {
ret = true;
break;
}
}
if (ret != false) {
// Otherwise insert record into the first avalaible slot
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == null) {
records[i] = in;
break;
}
}
}
return ret;
}
// Removes a record from the leaf given a set of coordinates
public Record remove(int x, int y) {
Record ret = null;
// Check if any of the records have matching coordinates
ret = find(x, y);
if (ret != null) {
// If record is found, return record and shift other records forward
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == ret) {
// Shift records forward
for (int j = i; j < numOfRecords; j++) {
if (j+1 < numOfRecords)
records[j] = records[j+1];
else
records[j] = null;
}
break;
}
}
}
return ret;
}
// Returns a record with the specified coordinates if it exists
public Record find(int x, int y) {
Record ret = null;
// Check if any records have matching coordinates
for (Record record : records) {
if (record != null && record.getX() == x && record.getY() == y) {
// Return the record if found
ret = record;
break;
}
}
return ret;
}
// Returns the first record in the leaf node
public Record getFirst() {
return records[0];
}
// Returns the next record given a record
public Record getNext(Record record) {
Record ret = null;
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == record) {
if (i+1 < numOfRecords)
ret = records[i+1];
break;
}
}
return ret;
}
// Returns the number of records in the leaf node
public int getCount() {
int ret = 0;
for (int i = 0; i < numOfRecords; i++) {
if (records[i] != null)
ret++;
else
break;
}
return ret;
}
// If first record is empty, the entire leaf is empty
public boolean isEmpty() {
return (records[0] == null);
}
}
/Classwork/CS3114 - Data Algorithms/Project 4/Record.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/Record.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 4/Record.java
0,0 → 1,6
 
// Interface for a generic record for the BSTree or PRQuadTree
public interface Record {
public int getX();
public int getY();
}
/Classwork/CS3114 - Data Algorithms/Project 4/Schedule.xls
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 4/Schedule.xls
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/.classpath
0,0 → 1,6
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="output" path=""/>
</classpath>
/Classwork/CS3114 - Data Algorithms/Project 3/.project
0,0 → 1,17
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CS3114P3</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
/Classwork/CS3114 - Data Algorithms/Project 3/.settings/org.eclipse.jdt.core.prefs
0,0 → 1,12
#Mon Oct 31 11:59:45 EDT 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
/Classwork/CS3114 - Data Algorithms/Project 3/BufferBlock.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/BufferBlock.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/BufferBlock.java
0,0 → 1,60
 
public class BufferBlock {
private long startAddress;
private byte[] bytes;
private int size;
private BufferBlock prev;
private BufferBlock next;
private boolean dirtyBit;
public BufferBlock(int sz) {
setStartAddress(-1);
bytes = new byte[sz];
this.size = sz;
prev = null;
next = null;
setDirtyBit(false);
}
// Copies size bytes starting from address to out
public void getBytes(byte[] out, int address, int size) {
for (int i = 0; i < size; i++) {
out[i] = bytes[address + i];
}
}
// Puts size bytes starting from address from in
public void setBytes(byte[] in, int address, int size) {
for (int i = 0; i < size; i++) {
bytes[address + i] = in[i];
}
}
public BufferBlock getPrev() {
return prev;
}
public void setPrev(BufferBlock prev) {
this.prev = prev;
}
public BufferBlock getNext() {
return next;
}
public void setNext(BufferBlock next) {
this.next = next;
}
public int getSize() {
return size;
}
public boolean isDirtyBit() {
return dirtyBit;
}
public void setDirtyBit(boolean dirtyBit) {
this.dirtyBit = dirtyBit;
}
public long getStartAddress() {
return startAddress;
}
public void setStartAddress(long startAddress) {
this.startAddress = startAddress;
}
}
/Classwork/CS3114 - Data Algorithms/Project 3/Genfile2.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/Genfile2.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/Genfile2.java
0,0 → 1,57
// WARNING: This program uses the Assertion class. When it is run,
// assertions must be turned on. For example, under Linux, use:
// java -ea Genfile
 
/** Generate a data file. The size is a multiple of 4096 bytes.
The records are short ints, with each record having a value
less than 30,000.
*/
 
import java.io.*;
import java.util.*;
import java.math.*;
 
public class Genfile2 {
 
static final int BlockSize = 4096;
static final int NumRecs = 2048; // Because they are short ints
 
/** Initialize the random variable */
static private Random value = new Random(); // Hold the Random class object
 
static int random(int n) {
return Math.abs(value.nextInt()) % n;
}
 
public static void main(String args[]) throws IOException {
 
assert (args.length == 3) && (args[0].charAt(0) == '-') :
"\nUsage: Genfile <option> <filename> <size>" +
"\nOptions ust be '-a' for ASCII, or '-b' for binary." +
"\nSize is measured in blocks of 4096 bytes";
 
int filesize = Integer.parseInt(args[2]); // Size of file in blocks
DataOutputStream file = new DataOutputStream(
new BufferedOutputStream(new FileOutputStream(args[1])));
 
int recs = NumRecs * filesize;
 
if (args[0].charAt(1) == 'b') // Write out random numbers
for (int i=0; i<filesize; i++)
for (int j=0; j<NumRecs; j++) {
short val = (short)(random(29999) + 1);
file.writeShort(val);
}
else if (args[0].charAt(1) == 'a') // Write out ASCII-readable values
for (int i=0; i<filesize; i++)
for (int j=0; j<NumRecs; j++) {
short val = (short)((8224 << 16) + random(26) + 0x2041);
file.writeShort(val);
}
else assert false : "Bad parameters";
 
file.flush();
file.close();
}
 
}
/Classwork/CS3114 - Data Algorithms/Project 3/LRUBuffer.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/LRUBuffer.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/LRUBuffer.java
0,0 → 1,214
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;
 
public class LRUBuffer {
private int blockSize = 0;
private int recordSize = 0;
private int cacheHit = 0;
private int cacheMiss = 0;
private int diskReads = 0;
private int diskWrites = 0;
private String dataFile;
private String statFile;
private int bufferSize;
private BufferBlock bufferHead;
private RandomAccessFile file;
public LRUBuffer(String datafile, String statfile, int size, int blocksize, int recordsize) {
this.dataFile = datafile;
this.statFile = statfile;
this.bufferSize = size;
this.blockSize = blocksize;
this.recordSize = recordsize;
// Allocates a new doubly linked list of BufferBlocks
// The buffer will have at least one block
bufferHead = new BufferBlock(blockSize);
BufferBlock cur = bufferHead;
for (int i = 0; i < size-1; i++) {
BufferBlock newBlock = new BufferBlock(blockSize);
cur.setNext(newBlock);
newBlock.setPrev(cur);
cur = newBlock;
}
// Open access to the datafile
try {
file = new RandomAccessFile(dataFile, "rw");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
// Returns recordSize number of bytes to out from record # pos
public boolean getBytes(byte[] out, long pos) {
BufferBlock cur = bufferHead;
// Calculate the address of record
long address = pos * recordSize;
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (address >= cur.getStartAddress() && address < cur.getStartAddress() + blockSize) {
// Address is in block, get data
cacheHit++;
cur.getBytes(out, (int)address % blockSize, recordSize);
// Bring current block to front of list
bringToFront(cur);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
BufferBlock newBlock = readFromDisk(address);
// Get requested bytes from block
newBlock.getBytes(out, (int)address % blockSize, recordSize);
insertToFront(newBlock);
return false;
}
// Puts recordSize number of bytes from in to record # pos
public boolean putBytes(byte[] in, long pos) {
BufferBlock cur = bufferHead;
// Calculate the address of record
long address = pos * recordSize;
// Check if address is already in a buffer block
while (cur != null && cur.getStartAddress() != -1) {
if (address >= cur.getStartAddress() && address < cur.getStartAddress() + blockSize) {
// Address is in block, put data
cacheHit++;
cur.setBytes(in, (int)address % blockSize, recordSize);
cur.setDirtyBit(true);
// Bring current block to front of list
bringToFront(cur);
return true;
}
cur = cur.getNext();
}
// Address is not in buffer, read new block from disk
cacheMiss++;
BufferBlock newBlock = readFromDisk(address);
// Put passed bytes into block
newBlock.setBytes(in, (int)address % blockSize, recordSize);
newBlock.setDirtyBit(true);
insertToFront(newBlock);
return false;
}
// Brings a block currently in the list to the front of the list
private void bringToFront(BufferBlock block) {
// If block is already in front, return
if (block == bufferHead)
return;
if (block.getPrev() != null)
block.getPrev().setNext(block.getNext());
if (block.getNext() != null)
block.getNext().setPrev(block.getPrev());
block.setPrev(null);
bufferHead.setPrev(block);
block.setNext(bufferHead);
bufferHead = block;
}
// Inserts a new block into the front of the list
private void insertToFront(BufferBlock block) {
// Set head as current block
block.setPrev(null);
bufferHead.setPrev(block);
block.setNext(bufferHead);
bufferHead = block;
// Write last block in list to disk if dirty bit is set
// Last block is also removed
BufferBlock cur = bufferHead;
while (cur.getNext() != null) {
cur = cur.getNext();
}
cur.getPrev().setNext(null);
if (cur.isDirtyBit()) {
writeToDisk(cur);
}
}
 
// Reads a new block from disk given an address
private BufferBlock readFromDisk(long address) {
diskReads++;
byte[] data = new byte[blockSize];
long offset = address / blockSize;
offset = offset * blockSize;
try {
file.seek(offset);
file.read(data);
} catch (IOException e) {
e.printStackTrace();
}
// Pass read block into a new block
BufferBlock newBlock = new BufferBlock(blockSize);
newBlock.setBytes(data, 0, blockSize);
newBlock.setStartAddress(offset);
return newBlock;
}
// Writes the specified block to disk
private void writeToDisk(BufferBlock block) {
diskWrites++;
byte[] data = new byte[blockSize];
block.getBytes(data, 0, blockSize);
try {
file.seek(block.getStartAddress());
file.write(data);
} catch (IOException e) {
e.printStackTrace();
}
}
// Flush the buffer by writing all blocks in buffer to disk
public void flushBuffer() {
BufferBlock cur = bufferHead;
while (cur != null) {
if (cur.isDirtyBit()) {
writeToDisk(cur);
}
cur = cur.getNext();
}
try {
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// Write stats to stat file
public void writeStats(long time) {
try {
BufferedWriter out = new BufferedWriter(new FileWriter(statFile, true));
StringBuilder str = new StringBuilder();
str.append("Datafile: " + dataFile + " | ");
str.append("Cache Hits: " + cacheHit + " | ");
str.append("Cache Misses: " + cacheMiss + " | ");
str.append("Disk Reads: " + diskReads + " | ");
str.append("Disk Writes: " + diskWrites + " | ");
str.append("Time to Sort: " + time + "\n");
out.write(str.toString());
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 3/MaxHeap.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/MaxHeap.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/MaxHeap.java
0,0 → 1,139
import java.nio.ByteBuffer;
 
/** Max-heap implementation */
public class MaxHeap {
private LRUBuffer Heap; // Pointer to the heap array
private long size; // Number of things in heap
private byte[] record1 = new byte[4];
private byte[] record2 = new byte[4];
private ByteBuffer buff1;
private ByteBuffer buff2;
/** Constructor supporting preloading of heap contents */
public MaxHeap(LRUBuffer buf, long size) {
this.Heap = buf;
this.size = size;
}
 
/** @return True if pos a leaf position, false otherwise */
public boolean isLeaf(long pos) {
return (pos >= size / 2) && (pos < size);
}
 
/** @return Position for left child of pos */
public long leftchild(long pos) {
assert pos < size / 2 : "Position has no left child";
return 2 * pos + 1;
}
 
/** @return Position for right child of pos */
public long rightchild(long pos) {
assert pos < (size - 1) / 2 : "Position has no right child";
return 2 * pos + 2;
}
 
/** @return Position for parent */
public long parent(long pos) {
assert pos > 0 : "Position has no parent";
return (pos - 1) / 2;
}
 
/** Heapify contents of Heap */
public void buildheap() {
for (long i = size / 2 - 1; i >= 0; i--)
siftdown(i);
}
 
/** Put element in its correct place */
private void siftdown(long pos) {
assert (pos >= 0) && (pos < size) : "Illegal heap position";
while (!isLeaf(pos)) {
long j = leftchild(pos);
// if ((j < (size - 1)) && (Heap[j].compareTo(Heap[j + 1]) < 0))
// j++; // j is now index of child with greater value
if (j < (size-1)) {
Heap.getBytes(record1, j);
buff1 = ByteBuffer.wrap(record1);
short val1 = buff1.getShort();
Heap.getBytes(record2, j+1);
buff2 = ByteBuffer.wrap(record2);
short val2 = buff2.getShort();
if (val1 < val2) {
j++; // j is now index of child with greater value
}
}
// if (Heap[pos].compareTo(Heap[j]) >= 0)
// return;
Heap.getBytes(record2, j);
Heap.getBytes(record1, pos);
buff1 = ByteBuffer.wrap(record1);
buff2 = ByteBuffer.wrap(record2);
short val1 = buff1.getShort();
short val2 = buff2.getShort();
if (val1 >= val2)
return;
 
// DSutil.swap(Heap, pos, j);
Heap.putBytes(record2, pos);
Heap.putBytes(record1, j);
pos = j; // Move down
}
}
 
/** Remove and return maximum value */
public void removemax() {
assert size > 0 : "Removing from empty heap";
//DSutil.swap(Heap, 0, --size); // Swap maximum with last value
Heap.getBytes(record1, 0);
Heap.getBytes(record2, size-1);
Heap.putBytes(record1, size-1);
Heap.putBytes(record2, 0);
size = size - 1;
if (size != 0) // Not on last element
siftdown(0); // Put new heap root val in correct place
}
 
// /** @return Current size of the heap */
// public long heapsize() {
// return size;
// }
// /** Insert val into heap */
// public void insert(E val) {
// assert n < size : "Heap is full";
// int curr = n++;
// Heap[curr] = val; // Start at end of heap
// // Now sift up until curr's parent's key > curr's key
// while ((curr != 0) && (Heap[curr].compareTo(Heap[parent(curr)]) > 0)) {
// DSutil.swap(Heap, curr, parent(curr));
// curr = parent(curr);
// }
// }
// /** Remove and return element at specified position */
// public E remove(int pos) {
// assert (pos >= 0) && (pos < n) : "Illegal heap position";
// if (pos == (n - 1))
// n--; // Last element, no work to be done
// else {
// DSutil.swap(Heap, pos, --n); // Swap with last value
// // If we just swapped in a big value, push it up
// while ((pos > 0) && (Heap[pos].compareTo(Heap[parent(pos)]) > 0)) {
// DSutil.swap(Heap, pos, parent(pos));
// pos = parent(pos);
// }
// if (n != 0)
// siftdown(pos); // If it is little, push down
// }
// return Heap[n];
// }
}
/Classwork/CS3114 - Data Algorithms/Project 3/Old_Test_Files/Outfilea.dat
0,0 → 1,0
N W L R B B M Q B H C D A R Z O W K K Y H I D D Q S C D X R J M O W F R X S J Y B L D B E F S A R C B Y N E C D Y G G X X P K L O R E L L N M P A P Q F W K H O P K M C O Q H N W N K U E W H S Q M G B B U Q C L J J I V S W M D K Q T B X I X M V T R R B L J P T N S N F W Z Q F J M A F A D R R W S O F S B C N U V Q H F F B S A Q X W P Q C A C E H C H Z V F R K M L N O Z J K P Q P X R J X K I T Z Y X A C B H H K I C Q C O E N D T O M F G D W D W F C G P X I Q V K U Y T D L C G D E W H T A C I O H O R D T Q K V W C S G S P Q O Q M S B O A G U W N N Y Q X N Z L G D G W P B T R W B L N S A D E U G U U M O Q C D R U B E T O K Y X H O A C H W D V M X X R D R Y X L M N D Q T U K W A G M L E J U U K W C I B X U B U M E N M E Y A T D R M Y D I A J X L O G H I Q F M Z H L V I H J O U V S U Y O Y P A Y U L Y E I M U O T E H Z R I I C F S K P G G K B B I P Z Z R Z U C X A M L U D F Y K G R U O W Z G I O O O B P P L E Q L W P H A P J N A D Q H D C N V W D T X J B M Y P P P H A U X N S P U S G D H I I X Q M B F J X J C V U D J S U Y I B Y E B M W S I Q Y O Y G Y X Y M Z E V Y P Z V J E G E B E O C F U F T S X D I X T I G S I E E H K C H Z D F L I L R J Q F N X Z T Q R S V B S P K Y H S E N B P P K Q T P D D B U O T B B Q C W I V R F X J U J J D D N T G E I Q V D G A I J V W C Y A U B W E W P J V Y G E H L J X E P B P I W U Q Z D Z U B D U B Z V A F S P Q P Q W U Z I F W O V Y D D W Y V V B U R C Z M G Y J G F D X V T N U N N E S L S P L W U I U P F X L Z B K N H K W P P A N L T C F I R J C D D S O Z O Y V E G U R F W C S F M O X E Q M R J O W R G H W L K O B M E A H K G C C N A E H H S V E Y M Q P X H L R N U N Y F D Z R H B A S J E U Y G A F O U B U T P N I M U W F J Q S J X V K Q D O R X X V R W C T D S N E O G V B P K X L P G D I R B F C R I Q I F P G Y N K R R E F X S N V U C F T P W C T G T W M X N U P Y C F G C U Q U N U B L M O I I T N C K L E F S Z B E X R A M P E T V H Q N D D J E Q V U Y G P N K A Z Q F R P J V O A X D P C W M J O B M S K S K F O J N E W X G X N N O F W L T W J W N N V B W J C K D M E O U U Z H Y V H G V W U J B Q X X P I T C V O G R A I D D V H R R D S Y C Q H K L E E W H X T E M B A Q W Q W P Q H S U E B N V F G V J W D V J J A F Q Z Z X L C X D Z N C Q G J L A P O P K V X F G V I C E T C M K B L J O P G T Q V V H B G S D V I V H E S N K Q X M W R Q I D R V M H L U B B R Y K T H E Y E N T M R O B D E Y Q C R G L U A I I H V E I X W J J R Q O P U B J G U X H X D I P F Z W S W Y B G F Y L Q V J Z H A R V R L Y A U U Z D R C N J K P H C L F F R K E E C B P D I P U F H I D J C X J H R N X C X M J C X O H Q A N X D R M G Z E B H N L M W P M H W D V T H S F Q U E E E X G R U J I G S K M V R Z G F W V R F T W A P D T U T P B Z T Y G N S R X A J J N G C O M I K J Z S D W S S Z N O V D R U Y P C N J U L K F U Z M X N A F A M E S P C K J C A Z X D R T D G Y R Q S C C Z Y B N V Q Q C Q C J I T L V C N V B M A S I D Z G W R A A T Z Z W P W M F B F J K N C V K E L H H Z J C H P D N L U N M P P N L G J Z N K E W W U Y S G E F O N E X P M M S B A O P M D G Z Q M K Q Z X U V T Q V N X B S L Q Z K G L Z A M Z P D N S J O L V Y B W X X T T Q O G N R B A I A K Q L L S Z K H F Z C O N N M O Q K L P E E F S N S M O U W Q H O D S G C F O H E S Y S H M G X W T O A Y U V N O J D J F T Q T W K B A P R I U J I M Q W S P S L G V L C S A Q B D B G W T B S E E T T W D N F N B Y J V P D J X Y U Z Q X S T A T B Z P C T T H O O F R E M G F K R B C V K Z V G B O F T H G O J H D N A Y W P N B I T O R A A I B E D N E Z W F P D A W L O H S S V T Q T K F V S Y L J Z L U C Q X S W Y Q D N T D M F R T Z L Q S E K E J H Z K S K L F E P X C H V C Z Y S V D G C X B B I S W M E A Y L Z I F K T M O I K S S F X T G P O J X Q I Y S R S Q F W Q D J Q N Q C G D Q R N L L U I E A Z V M W N U U F N N X V L O Y V G M L I U Q A N D L Y A V F A U A O S N L N V A C S V P I U M O I A W C Q X S W K Q W G X Y A Z N T N A I K A M E Y B N U Q B C Q A G G X A C H R Y N Q X Q Q M L F O T P Q H V O K I I A M M Q M V X J V B S O A I F Z Y X N J C B E R R N M I X X S Y J H O V E N G B P Y Q R I X Q G W D R Y G X R X K F H I C A I N H W I L K Q M B P E S Z D I G Z N Z X T Z Q S J W A T Y C B M J A W W M N I N E P F D U P L U C L T X M K P V G R R G T U S E U R A G E L T K C A P W P B Q R O M Q A W I X E Z Q K V L F B H W C O C P J M R M B P B E G V S U L U Q T U U V K E S V J T D H V T J M E X F Q B V U F D P A X C W N W Q J T B P L Y Z E D I C W S O D P W T Q R P Y U E A R H W G F N P A Q E L O F R S O T Q I K T X I P Q Z E Q V L Q M U O U B B J B R P M I X F C L B S T N O S V D K U J C P W S D Q H X R K I U E Z I O W O Q J P I E C W X X B J T N M K J G N C P M V A U Q G T A U S O K B F U G J T F I U Q B J C L V L A Z A M U C I M I C N E W D O X J L F U E M D A D G K H U F S U E V J A X R N I V C O R H F R Q Q W N U J Q U O Y E V S L Q P R L Y S K R H U N L J G S O X L E U Y Y F Q U T O Z Q H M G Y E T Y Y E P F A E S J L K Z I V D E V D L L Y G A Z X J N D J R X H R D Y Y D D Q N Q D O A Y S H W X S H X Z J Y W U M B F F A M X D N X J Q O Y I R M I R E R N E K X D L I C J F Q K K V N X U Q M S Z C I X M Z K W S Q O I W Y F A L P E U U U G F R T E O M Q I N U Q N I R X E L P S T O S A O D Q S Z K O G R F B X T N P D B L T Q T M P Y Y E Q T U J U I O K C O W S W Q Y X N T N D X Q Q S G K H V I H B A A W J U G A G L O D D K T D J I Z Y N Y O E S U O Z R Y I T Y J R I F X I M K Y R O K K T V U S U I Q I O J F C K Y A T R Y E K I J K S V U S O K C Y E A V W U F P C T A J X K I X D B X J M I T W C Q Q X F B B F H B A D V F U A A U J X F R W K V U U H E P D I F V F K Y H S F I U L E A F G A A P A H J W T E S P L W E Q F M N M Y M T Q R E L E I N K O P M F P V O M Q U E G H D M X K Y N W X Z Q N S W A X G N J W D X B U U S G K M N Q W Q D V A D I W A H O Q A K Q Z Q G K M L H Q F D I M N W Z G S P L O R O W N P G E H I O X H H F R V Q A L W D T K S S L Y K A J A T A X G P D M Y L D X U K D N F T P R R U M B M E M L R O W R H W O Q N T C L G H L C R O R Z H G S B A E C P L P C C D Y V N X M D M F H A O P L Q I Z K H I Q B J T I M I T D K X I K S X J E C W M K W A B H S L I E V Q V W C Q E Q A Z T K Y D W R B G X D C J P A L S H G E P K Z H H V L X C B X D W J C C G T D O Q I S C Y S P Q Z V U Q I V Z P T L P V O O Y N Y A P G V S W O A O S A G H R F F N X N J Y E E L T Z A I Z N I C C O Z W K N W Y H Z G P Q L W F K J Q I P U U J V W T X L B Z N R Y J D O H B V G H M Y U I G G T Y Q J T M U Q I N N T Q M I H N T K D D N A L W N M S X S A T Q Q E L D A C N N P J F E R M R N Y U Q N W B J J P D J H D E A V K N Y K P O X H X C L Q Q E D Q A V D W Z O I O R R W W X Y R H L S R D G Q K D U V T M Z Z C Z U F V T V F I O Y G K V E D E R V V U D N E G H B C T C B X D X E Z R Z G B P F H Z A N F F E C C B G Q F M Z J Q T L R S P P X Q I Y W J O B S P E F U J L X N M D D U R D D I Y O B Q F S P V C O U L C V D R Z K M K W L Y I Q D C H G H R G Y T Z D N O B Q C V D E Q J Y S T M E P X C A N I E W Q M O X K J W P Y M Q O R L U X E D V Y W H C O G H O T P U S F G I E S T C K R P A I G O C F U F B U B I Y R R F F M W A E E I M I D F N N Z C P H K F L P B Q S V T D W L U D S G A U N G F Z O I H B X I F O P R W C J Z S D X N G T A C W T J Y P W E U X V E G Y B O G S F X Q H I P B O M P U F P X C K I C A G H U F C Z M A C C G W I G M R Q C T E Q K B W B A A M I C O Q L I V N J J O O M W K U C Z N V D G Z T Q A R S A R G K W U A H E Y V O H L E T J Q P O P D J S L K O E L F Y N Z E A V A A C E A Z U I M Y D Y P V M G Y X B L H P P U U N K T T K Q T M V A N U U V J V A H M V V U V S V H Z K Y W H M G C H Q V D C Q D P M Z M X W N E I K Z F G T A N T N L P W Z V A H N V K P L P F A O T X N G E X R F C Z Z D M U S Z L O B I O K V K W K X L R X B L V O T Z O M E Q L F T X Z L Z K B C S Q M N C I A Z V R Z Y E U P Y V D K B T W H P V G C W T E Y L W K B Y U B X R U W S Z S H X P M J R H F A W D I B Z B F Y P D K S B H T A A P Z S O R B N J P Z C X E C V J M W J Q D J H G V Z J C U K F J J Z A C B P N S O P P V T L E I J P Y N Y F V U E F Y Y R D J A D J E G B S Y P J O M F B R N K I L Z H S V B W C Z W T D F V I R B O S V M J F C Y M D R Z Q Z K P G E M J A O J Y J O F E Y W I M Q D A C K D A W I T X Y S J Q Z N C I P T T N C J T J H R T V K W W O J B Q H J J F K B O A C C E N R X I H C S A N B T G X D C T T N U J V F S C R W Q T Y U Y N M X W V B Q X O R Q U O W Z H P M D Z J L R L C N C Y O Y W B M V Z H X P E N H V I V T H F I V K H F X B Q A Q U Y E T W I F T H N S X R G G O Q B H X I Q S V Z Z S C Q U T M S Z F Q J N M T A E Q T M Y K C B R Z K J U H L T Z N L U I Y O K F H V S T O U Z G Q M E A O G R Q S D M Z O H Y D T U O T J Y Y S T T L K N M Q D Y V D P B X F T A T U Q A S T V P H O A H P S D I F N X R F B Q A G H D F O Y H H S X H N T D C C T C M I U P Q Z E Q S J R K M Z R P H F O O O I O Y V J D X N W B Z H V Q Z W U P R G I B S I T J P A Z F R I T P F E S F S Q G R X E K X C G M T M V V G F Q Q W S P D J X Z A D D U K V L Q P K U Z J Z H W S U T P C A F S Y A I B J H A M M E G W B T P Q E L R N K B L D X G U Z G C S E C C I N L I Z Y O G W Q Z L I F X C T H D G M A N J Z T L T A N V I A J S C H H K D X L R F R O H M X M S M M H V O D I H D V F N X O F B X M L C L X V R O J A C J P W X B E U R H C B M Z G Z W W G Y V T L Z E I V X Y G A A P P Z O S D I K K M L W L T X I R D I O Y T N F E I E E P E H G V G V Q J F A V S N T F I Q N B V X P U T C Z Z N F D C M K K H S H X D N Z Y H O R M W J C X F B O B W R C V E H B I T N S D G A C J P E I Y S B M R N O Q S S F V O Y X K E G L M A Y G F G I H Q Z N A Z G D M Z Q C P I U U D J U C V Y J I M L I V Q P D Z H F N H E V K S U D V J L R G R C A V X Z E H L R Q G J H M J Q T Y Z Z T J S N O P Y A G E T J F Q I E X Q R O I A Y R O J H J H G I A R C P G R N I Y S D H Z T P F Q H W H P Y F I O O P X X V G X N I O V A B D A T G J S Z A Z S I W Z Z W E I L U X I R V Q Q K Z E F B H I D D Q M X R M X J W T I W R O G C K D L D A D T K C Z P F H Z I K P U J H J G Q F B B B T R H V C N I F N M B A Q A P Y J R G V G D F P M L I R N J V G A E D E T O K J C L J S N A Q Z R Z U A C B P Q N X J C I E K L L N P E D B P F O Y Y C Z Q D S P X S T B K J Q J T S U Z C F K R W R X Y G C M F A Q G T T Y I T T E U D N K M G E G G I N S B K J Y K S B Y X D R F W K F H F Y L Z B A L Q J P Y R X M J Z Y V X K N Y I M E Z R A M Y J R X W T A X E S G U R X T F I U D F S P S S X G W Z Z Z L Y K E
/Classwork/CS3114 - Data Algorithms/Project 3/Old_Test_Files/Outfileb.dat
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/Old_Test_Files/Outfileb.dat
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/Old_Test_Files/genfile.cpp
0,0 → 1,86
// This program generates test files for external sorting algorithms.
// Output files can be of any multiple of the 4096 byte block size.
// The data records are logically a two byte (short int) key value followed
// by a two byte (short int) data value.
// The values output by this program can either be "binary" or "ascii".
// "Binary" files have key and data values each in the range 1 to 30,000.
// "Ascii" files have their data and key values selected so that they are
// easy to read and test. The data value prints in ascii as two spaces.
// The key value prints in ascii as a space and then a capital letter (A-Z).
// This makes it simple to tell if the sorting algorithm is working.
 
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
#include <cstring>
 
using std::cout;
using std::endl;
using std::string;
using std::ostream;
using std::fstream;
using std::ios;
 
// Random number generator functions
 
inline void Randomize() // Seed the generator
{ srand(1); }
 
// Return a random value in range 0 to n-1
inline int Random(int n)
{ return rand() % (n); }
 
// A block is 4096 bytes, or 1024 logical records
#define NumRec 1024
 
typedef int E;
 
int main(int argc, char** argv) {
int filesize;
E Array[NumRec];
int i, j;
fstream myfile;
bool Ascii; // True if ASCII option, false if binary option.
 
if (argc < 4) {
cout << "Usage: genfile <option> <filename> <size>\n";
cout << "Size is measured in blocks of 4096 bytes.\n";
cout << "Options must be '-a' for ASCII, or '-b' for binary.\n";
cout << "ASCII files have a data value of 8224 (prints as 2 spaces)\n";
cout << "and a key value between 8257 and 8282 (prints as a space\n";
cout << "and a letter).\n";
cout << "Binary files have key and data values between 1 and 30000\n";
exit(-1);
}
 
if (!strcmp(argv[1], "-a"))
Ascii = true;
else if (!strcmp(argv[1], "-b"))
Ascii = false;
else {
cout << "Illegal option '" << argv[1] << "'\n";
cout << "Usage: genfile <option> <filename> <size>\n";
exit(-1);
}
 
myfile.open(argv[2], ios::out | ios::binary);
if (!myfile) {
cout << "Unable to open file :" << argv[2] << ":\n";
exit(-1);
}
filesize = atoi(argv[3]);
 
Randomize();
for (i=0; i<filesize; i++) { // For each block
for (j=0; j<NumRec; j++) // For each record
if (Ascii)
// A record has a 2-byte key that prints as <space><letter>
// and a 2-byte value that prints as <space><space>
Array[j] = (8224 << 16) + Random(26) + 0x2041;
else // Keys and values in range 1 - 30,000.
Array[j] = ((Random(29999) + 1) << 16) + ((Random(29999) + 1));
myfile.write((char*)Array, sizeof(E) * NumRec);
}
return 0;
}
/Classwork/CS3114 - Data Algorithms/Project 3/P3.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/P3.pdf
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/Schedule.xls
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/Schedule.xls
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/heapsort.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 3/heapsort.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 3/heapsort.java
0,0 → 1,121
/*
* CS 3114 Project 3
* Author: Kevin Lee
* Compiler: Eclipse 3.7.0
* Operating System: Windows 7 x64
* Date Completed: 11/1/2011
*
* The following program sorts a specified file on disk using
* heapsort and a buffer pool. The file size must be a multiple
* of 4096 and comprised of key-value records of 2 bytes each
* (4 bytes total per record). The buffer pool uses the least
* recently used scheme and the number of 4096 byte blocks the
* buffer stores is specified in the command line for this
* program. A statistics file is also outputted to show the
* sorted file, cache hits/misses, and disk reads/writes.
*
* On my honor:
*
* - I have not used source code obtained from another student,
* or any other unauthorized source, either modified or
* unmodified.
*
* - All source code and documentation used in my program is
* either my original work, or was derived by me from the
* source code published in the textbook for this course.
*
* - I have not discussed coding details about this project with
* anyone other than my partner (in the case of a joint
* submission), instructor, ACM/UPE tutors or the TAs assigned
* to this course. I understand that I may discuss the concepts
* of this program with other students, and that another student
* may help me debug my program so long as neither of us writes
* anything during the discussion or modifies any computer file
* during the discussion. I have violated neither the spirit nor
* letter of this restriction.
*/
 
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
 
public class heapsort {
 
public static void main(String[] args) {
// Check if correct arguments are supplied
if (args.length != 3) {
System.out.println("Usage: heapsort <data-file-name> <numb-buffers> <stat-file-name>");
return;
}
// Save file paths and buffer size
String dataFile = args[0];
String statFile = args[2];
int buffSize = Integer.parseInt(args[1]);
long fileSize = 0;
RandomAccessFile file = null;
// Check if specified buffer size is within acceptable range
if (buffSize < 1 || buffSize > 20) {
System.out.println("Specified buffer size must be between 1 and 20");
return;
}
// Get the length of the file to sort
try {
file = new RandomAccessFile(dataFile, "r");
fileSize = file.length();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
// Check to make sure file is a multiple of 4096
if (fileSize % 4 != 0) {
System.out.println("Input file size must be a multiple of 4096");
return;
}
// Create a new buffer and heap sort class
LRUBuffer buff = new LRUBuffer(dataFile, statFile, buffSize, 4096, 4);
MaxHeap heap = new MaxHeap(buff, fileSize/4);
// Start sort
long time1 = System.currentTimeMillis();
heap.buildheap();
for (int i = 0; i < fileSize/4; i++) {
heap.removemax();
}
buff.flushBuffer();
long time2 = System.currentTimeMillis();
// Write sort statistics
buff.writeStats(time2 - time1);
// Print the first record from each block in the sorted file
try {
int column = 1;
byte[] data = new byte[4];
ByteBuffer bbuff;
short key, value;
for (long i = 0; i < fileSize; i+=4096) {
file.seek(i);
file.read(data);
bbuff = ByteBuffer.wrap(data);
key = bbuff.getShort();
value = bbuff.getShort();
System.out.printf("%05d %05d ", key, value);
if (column % 8 == 0) {
System.out.println();
}
column++;
}
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/.classpath
0,0 → 1,6
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="output" path=""/>
</classpath>
/Classwork/CS3114 - Data Algorithms/Project 2/.project
0,0 → 1,17
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CS3114P2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
/Classwork/CS3114 - Data Algorithms/Project 2/.settings/org.eclipse.jdt.core.prefs
0,0 → 1,12
#Mon Oct 03 14:51:02 EDT 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
/Classwork/CS3114 - Data Algorithms/Project 2/BSTree.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/BSTree.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/BSTree.java
0,0 → 1,161
import java.util.ArrayList;
 
// Generic BST implementation
public class BSTree<K extends Comparable<? super K>, E> implements Dictionary<K, E> {
private BSTreeNode<K,E> root; // Root of the BST
// Constructor
public BSTree() {
this.root = null;
}
// Inserts a node into the BST
public void insert(K key, E element) {
// Set the BST root as the returned node
this.root = insertRecursive(root, key, element);
}
// Removes a node from the BST given the key
public void remove(K key) {
// Adds invalid coordinates if none are specified
this.remove(key, -1, -1);
}
public void remove(K key, int x, int y) {
// Check if node exists
E temp = findRecursive(root, key);
if (temp != null) {
// Remove the node
this.root = removeRecursive(root, key, x, y);
}
}
// Returns a node from the BST given the key
public E find(K key) {
return findRecursive(root, key);
}
// Returns a list of all nodes with the given key
public ArrayList<E> findAll(K key) {
ArrayList<E> elementList = new ArrayList<E>();
findAllRecursive(root, key, elementList);
return elementList;
}
// Removes all nodes from the BST
public void clear() {
this.root = null;
}
// Recursively inserts a node into the BST
private BSTreeNode<K,E> insertRecursive(BSTreeNode<K,E> root, K key, E element) {
if (root == null)
// If there are no nodes in the BST, create and return a new node
return new BSTreeNode<K,E>(key, element);
if (root.getKey().compareTo(key) > 0)
// If passed key is smaller, insert into left child
root.setLeft(insertRecursive(root.getLeft(), key, element));
else
// If passed key is greater, insert into right child
root.setRight(insertRecursive(root.getRight(), key, element));
return root;
}
// Recursively searches minimal nodes for matches to the given key
private E findRecursive(BSTreeNode<K,E> root, K key) {
if (root == null)
return null;
if (root.getKey().compareTo(key) > 0)
// If passed key is smaller, search the left child
return findRecursive(root.getLeft(), key);
else if (root.getKey().compareTo(key) == 0)
// If key is found, return with the found element
return root.getElement();
else
// If key is not found, search the right child
return findRecursive(root.getRight(), key);
}
// Recursively searches all nodes for matches to the given key
private void findAllRecursive(BSTreeNode<K,E> root, K key, ArrayList<E> elementList) {
if (root == null)
return;
// If key matches, save to list
if (root.getKey().compareTo(key) == 0)
elementList.add(root.getElement());
// Recursively call search on all possible nodes
if (root.getKey().compareTo(key) > 0)
findAllRecursive(root.getLeft(), key, elementList);
else
findAllRecursive(root.getRight(), key, elementList);
}
// Recursively removes a node from the BST given a key
private BSTreeNode<K,E> removeRecursive(BSTreeNode<K,E> root, K key, int x, int y) {
if (root == null)
return null;
// Find the node to remove
if (root.getKey().compareTo(key) > 0)
root.setLeft(removeRecursive(root.getLeft(), key, x, y));
else if (root.getKey().compareTo(key) < 0)
root.setRight(removeRecursive(root.getRight(), key, x, y));
// Node's key matches
else {
// If we want to narrow it down by coordinates as well
if (x >= 0 && y >= 0) {
// If coordinates do not match, keep searching from the right child
if (((Record)root.getElement()).getX() != x || ((Record)root.getElement()).getY() != y) {
root.setRight(removeRecursive(root.getRight(), key, x, y));
} else {
// If one of the leaves is null, just return the other leaf
if (root.getLeft() == null)
return root.getRight();
else if (root.getRight() == null)
return root.getLeft();
else {
// Otherwise create a new node with the smallest value on the right leaf
BSTreeNode<K,E> temp = getMin(root.getRight());
root.setElement(temp.getElement());
root.setKey(temp.getKey());
root.setRight(deleteMin(root.getRight()));
}
}
// Otherwise just remove the node
} else {
// If one of the leaves is null, just return the other leaf
if (root.getLeft() == null)
return root.getRight();
else if (root.getRight() == null)
return root.getLeft();
else {
// Otherwise create a new node with the smallest value on the right leaf
BSTreeNode<K,E> temp = getMin(root.getRight());
root.setElement(temp.getElement());
root.setKey(temp.getKey());
root.setRight(deleteMin(root.getRight()));
}
}
}
return root;
}
// Recursively returns the minimum key node
private BSTreeNode<K,E> getMin(BSTreeNode<K,E> root) {
if (root.getLeft() == null)
return root;
else
return getMin(root.getLeft());
}
// Recursively deletes the minimum key node
private BSTreeNode<K,E> deleteMin(BSTreeNode<K,E> root) {
if (root.getLeft() == null)
return root.getRight();
else {
root.setLeft(deleteMin(root.getLeft()));
return root;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/BSTreeNode.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/BSTreeNode.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/BSTreeNode.java
0,0 → 1,60
 
// Single generic node for the BSTree
public class BSTreeNode<K,E> {
private K key; // Key
private E element; // Value
private BSTreeNode<K,E> left; // Left child
private BSTreeNode<K,E> right; // Right child
// Empty constructor
public BSTreeNode() {
setLeft(setRight(null));
}
// Constructor given key value pair
public BSTreeNode(K k, E e) {
setLeft(setRight(null));
setKey(k);
setElement(e);
}
// Constructor given key value pair and children
public BSTreeNode(K k, E e, BSTreeNode<K,E> left, BSTreeNode<K,E> right) {
setKey(k);
setElement(e);
this.setLeft(left);
this.setRight(right);
}
// Query if node has leaves
public boolean isLeaf() {
return left == null && right == null;
}
// Encapsulation methods
public K getKey() {
return key;
}
public void setKey(K key) {
this.key = key;
}
public E getElement() {
return element;
}
public void setElement(E element) {
this.element = element;
}
public BSTreeNode<K,E> getLeft() {
return left;
}
public void setLeft(BSTreeNode<K,E> left) {
this.left = left;
}
public BSTreeNode<K,E> getRight() {
return right;
}
public BSTreeNode<K,E> setRight(BSTreeNode<K,E> right) {
this.right = right;
return right;
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/CityRecord.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/CityRecord.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/CityRecord.java
0,0 → 1,25
 
// Specific implementation of CityRecord that stores coordinates and a city name
public class CityRecord implements Record {
private String name; // City name
private int x; // X-coordinate
private int y; // Y-coordinate
// Constructor initializing a new CityRecord
public CityRecord(String name, int x, int y) {
this.x = x;
this.y = y;
this.name = name;
}
// Encapsulation methods
public String getName() {
return name;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/CmdParser.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/CmdParser.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/CmdParser.java
0,0 → 1,200
import java.util.ArrayList;
import java.util.LinkedList;
 
// Class to parse a specific set of commands
public class CmdParser {
BSTree<String, CityRecord> GISTree; // Binary Search Tree
PRQuadTree CTree; // PR QuadTree
public CmdParser() {
// Initialize BSTree and PRQuadTree
GISTree = new BSTree<String, CityRecord>();
CTree = new PRQuadTree();
}
// Calls specific functions depending on input
public void Parse(String input) {
// Split the passed line into tokens
String delim = "[ ]+";
String[] tokens = input.split(delim);
// Echo the command to the output
for (String token : tokens) {
System.out.printf(token + " ");
}
System.out.printf("\n");
// Parse tokens to determine what action to take
if (tokens[0].compareToIgnoreCase("insert") == 0) {
Cmd_Insert(tokens);
} else if (tokens[0].compareToIgnoreCase("remove") == 0) {
Cmd_Remove(tokens);
} else if (tokens[0].compareToIgnoreCase("find") == 0) {
Cmd_Find(tokens);
} else if (tokens[0].compareToIgnoreCase("search") == 0) {
Cmd_Search(tokens);
} else if (tokens[0].compareToIgnoreCase("debug") == 0) {
Cmd_Debug();
} else if (tokens[0].compareToIgnoreCase("makenull") == 0) {
Cmd_Makenull();
} else {
System.out.printf(">> \"%s\" command is not supported\n", tokens[0]);
}
System.out.printf("\n");
}
// Parse insert command
private void Cmd_Insert(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 4) {
System.out.printf(">> Arguments must be in format \"insert x y name\"\n");
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
String name = tokens[3];
if (x < 0 || x > 16383 || y < 0 || y > 16383) {
System.out.printf(">> Insert failed: Coordinate values out of range\n");
} else {
// If all arguments are ok, create a new record with the specified values
CityRecord newRecord = new CityRecord(name, x, y);
// Check if record with same coordinates already exists
LinkedList<Record> list = new LinkedList<Record>();
CTree.search(x, y, 0, list);
if (list.size() != 0) {
System.out.printf(">> Insert failed: City at (%d,%d) already exists\n", x, y);
} else {
// Insert record into both trees
System.out.printf(">> Inserting city %s (%d,%d)\n", name, x, y);
GISTree.insert(name, newRecord);
CTree.insert(newRecord);
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Insert failed: Unable to parse given coordinates\n");
}
}
}
// Parse remove command
private void Cmd_Remove(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length < 2 || tokens.length > 3) {
System.out.printf(">> Arguments must be in format \"remove x y\" or \" remove name\"\n");
} else {
// A single argument means search by name
if (tokens.length == 2) {
String name = tokens[1];
// First check if city exists
CityRecord record = GISTree.find(name);
if (record != null) {
// Remove city if found
System.out.printf(">> Removing city %s (%d,%d)\n",
record.getName(), record.getX(), record.getY());
GISTree.remove(name, record.getX(), record.getY());
CTree.remove(record.getX(), record.getY());
} else {
System.out.printf(">> Remove failed: City %s not found\n", name);
}
// Otherwise search by coordinates
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
if (x < 0 || x > 16383 || y < 0 || y > 16383) {
System.out.printf(">> Remove failed: Coordinate values out of range\n");
} else {
// Check if city with coordinates exists
LinkedList<Record> list = new LinkedList<Record>();
CTree.search(x, y, 0, list);
if (list.size() == 0) {
System.out.printf(">> Remove failed: City with coordinates (%d,%d) not found\n", x, y);
} else {
// Remove using coordinates
System.out.printf(">> Removing city %s (%d,%d)\n",
((CityRecord)list.get(0)).getName(), list.get(0).getX(), list.get(0).getY());
CTree.remove(x, y);
GISTree.remove(((CityRecord)list.get(0)).getName(), x, y);
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Remove failed: Unable to parse given coordinates\n");
}
}
}
}
// Parse find command
private void Cmd_Find(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 2) {
System.out.printf(">> Arguments must be in format \"find name\"\n");
} else {
String name = tokens[1];
// Get all records with the matching name
ArrayList<CityRecord> records = GISTree.findAll(name);
if (records.size() != 0) {
// For each city found, print the city details
for (CityRecord record : records) {
System.out.printf(">> City found: %s (%d,%d)\n",
record.getName(), record.getX(), record.getY());
}
} else {
System.out.printf(">> Find failed: City %s not found\n", name);
}
}
}
// Parse search command
private void Cmd_Search(String[] tokens) {
// Check to make sure there is a correct number of arguments for the command
if (tokens.length != 4) {
System.out.printf(">> Arguments must be in format \"search x y radius\"\n");
} else {
try {
// Parse and check each argument token
int x = Integer.parseInt(tokens[1]);
int y = Integer.parseInt(tokens[2]);
int r = Integer.parseInt(tokens[3]);
if (r < 0 || r > 16383) {
System.out.printf(">> Search failed: Radius value out of range\n");
} else if (x < -16383 || x > 16383 || y < -16383 || y > 16383) {
System.out.printf(">> Search failed: Coordinate values out of range\n");
} else {
// Get a list of all cities found within specified radius of point
LinkedList<Record> results = new LinkedList<Record>();
int nodesLookedAt = CTree.search(x, y, r, results);
System.out.printf(">> %d nodes visited:\n", nodesLookedAt);
if (results.size() == 0) {
System.out.printf(">> No records found with specified coordinates\n");
} else {
// Print the found cities
for (Record record : results) {
System.out.printf(">> %s (%d,%d)\n", ((CityRecord)record).getName(), record.getX(), record.getY());
}
}
}
} catch (NumberFormatException e) {
System.out.printf(">> Search failed: Unable to parse given coordinates\n");
}
}
}
// Parse debug command
private void Cmd_Debug() {
System.out.printf(">> ");
CTree.debug(CTree.getRoot());
System.out.printf("\n");
}
// Parse makenull command
private void Cmd_Makenull() {
GISTree.clear();
CTree.clear();
System.out.printf(">> Makenull successful\n");
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/Dictionary.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/Dictionary.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/Dictionary.java
0,0 → 1,10
import java.util.ArrayList;
 
// Generic dictionary interface
public interface Dictionary<Key, Element> {
public void insert(Key k, Element e);
public void clear();
public void remove(Key k);
public Element find(Key k);
public ArrayList<Element> findAll(Key k);
}
/Classwork/CS3114 - Data Algorithms/Project 2/P2.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/P2.pdf
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_alphabet
0,0 → 1,263
insert 0 0 Q
debug
insert 1 1 W
debug
insert 2 2 E
debug
insert 3 3 R
debug
insert 4 4 T
debug
insert 5 5 Y
debug
insert 6 6 U
debug
insert 7 7 I
debug
insert 8 8 O
debug
insert 9 9 P
debug
insert 10 10 A
debug
insert 11 11 S
debug
insert 12 12 D
debug
insert 13 13 F
debug
insert 14 14 G
debug
insert 15 15 H
debug
insert 16 16 J
debug
insert 17 17 K
debug
insert 18 18 L
debug
insert 19 19 Z
debug
insert 20 20 X
debug
insert 21 21 C
debug
insert 22 22 V
debug
insert 23 23 B
debug
insert 24 24 N
debug
insert 25 25 M
debug
find A
find B
find C
find D
find E
find F
find G
find H
find I
find J
find K
find L
find M
find N
find O
find P
find Q
find R
find S
find T
find U
find V
find W
find X
find Y
find Z
search 25 25 0
search 24 24 0
search 23 23 0
search 22 22 0
search 21 21 0
search 20 20 0
search 19 19 0
search 18 18 0
search 17 17 0
search 16 16 0
search 15 15 0
search 14 14 0
search 13 13 0
search 12 12 0
search 11 11 0
search 10 10 0
search 10 10 1
search 10 10 2
search 10 10 3
search 9 9 0
search 8 8 0
search 7 7 0
search 6 6 0
search 5 5 0
search 4 4 0
search 3 3 0
search 2 2 0
search 1 1 0
search 0 0 0
remove 0 0
debug
remove 1 1
debug
remove 2 2
debug
remove 3 3
debug
remove 4 4
debug
remove 5 5
debug
remove 6 6
debug
remove 7 7
debug
remove 8 8
debug
remove 9 9
debug
remove 10 10
debug
remove 11 11
debug
remove 12 12
debug
remove 13 13
debug
remove 14 14
debug
remove 15 15
debug
remove 16 16
debug
remove 17 17
debug
remove 18 18
debug
remove 19 19
debug
remove 20 20
debug
remove 21 21
debug
remove 22 22
debug
remove 23 23
debug
remove 24 24
debug
remove 25 25
debug
insert 0 0 Q
debug
insert 1 1 W
debug
insert 2 2 E
debug
insert 3 3 R
debug
insert 4 4 T
debug
insert 5 5 Y
debug
insert 6 6 U
debug
insert 7 7 I
debug
insert 8 8 O
debug
insert 9 9 P
debug
insert 10 10 A
debug
insert 11 11 S
debug
insert 12 12 D
debug
insert 13 13 F
debug
insert 14 14 G
debug
insert 15 15 H
debug
insert 16 16 J
debug
insert 17 17 K
debug
insert 18 18 L
debug
insert 19 19 Z
debug
insert 20 20 X
debug
insert 21 21 C
debug
insert 22 22 V
debug
insert 23 23 B
debug
insert 24 24 N
debug
insert 25 25 M
debug
remove Z
debug
remove A
debug
remove Q
debug
remove X
debug
remove S
debug
remove W
debug
remove C
debug
remove D
debug
remove E
debug
remove V
debug
remove F
debug
remove R
debug
remove B
debug
remove G
debug
remove T
debug
remove N
debug
remove H
debug
remove Y
debug
remove M
debug
remove J
debug
remove U
debug
remove K
debug
remove I
debug
remove L
debug
remove O
debug
remove P
debug
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_alphabet result.txt
0,0 → 1,824
insert 0 0 Q
>> Inserting city Q (0,0)
 
debug
>> 0,0,Q|
 
insert 1 1 W
>> Inserting city W (1,1)
 
debug
>> 0,0,Q1,1,W|
 
insert 2 2 E
>> Inserting city E (2,2)
 
debug
>> 0,0,Q1,1,W2,2,E|
 
insert 3 3 R
>> Inserting city R (3,3)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 4 4 T
>> Inserting city T (4,4)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 5 5 Y
>> Inserting city Y (5,5)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T5,5,Y|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 6 6 U
>> Inserting city U (6,6)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T5,5,Y6,6,U|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 7 7 I
>> Inserting city I (7,7)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 8 8 O
>> Inserting city O (8,8)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 9 9 P
>> Inserting city P (9,9)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O9,9,P|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 10 10 A
>> Inserting city A (10,10)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O9,9,P10,10,A|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 11 11 S
>> Inserting city S (11,11)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 12 12 D
>> Inserting city D (12,12)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 13 13 F
>> Inserting city F (13,13)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D13,13,F|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 14 14 G
>> Inserting city G (14,14)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D13,13,F14,14,G|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 15 15 H
>> Inserting city H (15,15)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 16 16 J
>> Inserting city J (16,16)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 17 17 K
>> Inserting city K (17,17)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J17,17,K|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 18 18 L
>> Inserting city L (18,18)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J17,17,K18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 19 19 Z
>> Inserting city Z (19,19)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 20 20 X
>> Inserting city X (20,20)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 21 21 C
>> Inserting city C (21,21)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X21,21,C|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 22 22 V
>> Inserting city V (22,22)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X21,21,C22,22,V|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 23 23 B
>> Inserting city B (23,23)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 24 24 N
>> Inserting city N (24,24)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 25 25 M
>> Inserting city M (25,25)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
find A
>> City found: A (10,10)
 
find B
>> City found: B (23,23)
 
find C
>> City found: C (21,21)
 
find D
>> City found: D (12,12)
 
find E
>> City found: E (2,2)
 
find F
>> City found: F (13,13)
 
find G
>> City found: G (14,14)
 
find H
>> City found: H (15,15)
 
find I
>> City found: I (7,7)
 
find J
>> City found: J (16,16)
 
find K
>> City found: K (17,17)
 
find L
>> City found: L (18,18)
 
find M
>> City found: M (25,25)
 
find N
>> City found: N (24,24)
 
find O
>> City found: O (8,8)
 
find P
>> City found: P (9,9)
 
find Q
>> City found: Q (0,0)
 
find R
>> City found: R (3,3)
 
find S
>> City found: S (11,11)
 
find T
>> City found: T (4,4)
 
find U
>> City found: U (6,6)
 
find V
>> City found: V (22,22)
 
find W
>> City found: W (1,1)
 
find X
>> City found: X (20,20)
 
find Y
>> City found: Y (5,5)
 
find Z
>> City found: Z (19,19)
 
search 25 25 0
>> 12 nodes visited:
>> M (25,25)
 
search 24 24 0
>> 12 nodes visited:
>> N (24,24)
 
search 23 23 0
>> 14 nodes visited:
>> B (23,23)
 
search 22 22 0
>> 14 nodes visited:
>> V (22,22)
 
search 21 21 0
>> 14 nodes visited:
>> C (21,21)
 
search 20 20 0
>> 14 nodes visited:
>> X (20,20)
 
search 19 19 0
>> 14 nodes visited:
>> Z (19,19)
 
search 18 18 0
>> 14 nodes visited:
>> L (18,18)
 
search 17 17 0
>> 14 nodes visited:
>> K (17,17)
 
search 16 16 0
>> 14 nodes visited:
>> J (16,16)
 
search 15 15 0
>> 14 nodes visited:
>> H (15,15)
 
search 14 14 0
>> 14 nodes visited:
>> G (14,14)
 
search 13 13 0
>> 14 nodes visited:
>> F (13,13)
 
search 12 12 0
>> 14 nodes visited:
>> D (12,12)
 
search 11 11 0
>> 14 nodes visited:
>> S (11,11)
 
search 10 10 0
>> 14 nodes visited:
>> A (10,10)
 
search 10 10 1
>> 17 nodes visited:
>> A (10,10)
 
search 10 10 2
>> 20 nodes visited:
>> P (9,9)
>> A (10,10)
>> S (11,11)
 
search 10 10 3
>> 23 nodes visited:
>> O (8,8)
>> P (9,9)
>> A (10,10)
>> S (11,11)
>> D (12,12)
 
search 9 9 0
>> 14 nodes visited:
>> P (9,9)
 
search 8 8 0
>> 14 nodes visited:
>> O (8,8)
 
search 7 7 0
>> 14 nodes visited:
>> I (7,7)
 
search 6 6 0
>> 14 nodes visited:
>> U (6,6)
 
search 5 5 0
>> 14 nodes visited:
>> Y (5,5)
 
search 4 4 0
>> 14 nodes visited:
>> T (4,4)
 
search 3 3 0
>> 14 nodes visited:
>> R (3,3)
 
search 2 2 0
>> 14 nodes visited:
>> E (2,2)
 
search 1 1 0
>> 14 nodes visited:
>> W (1,1)
 
search 0 0 0
>> 14 nodes visited:
>> Q (0,0)
 
remove 0 0
>> Removing city Q (0,0)
 
debug
>> IIIIIIIIIIII1,1,W2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 1 1
>> Removing city W (1,1)
 
debug
>> IIIIIIIIIIII2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 2 2
>> Removing city E (2,2)
 
debug
>> IIIIIIIIIIII3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 3 3
>> Removing city R (3,3)
 
debug
>> IIIIIIIIIIIIEEEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 4 4
>> Removing city T (4,4)
 
debug
>> IIIIIIIIIII5,5,Y6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 5 5
>> Removing city Y (5,5)
 
debug
>> IIIIIIIIIII6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 6 6
>> Removing city U (6,6)
 
debug
>> IIIIIIIIIII7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 7 7
>> Removing city I (7,7)
 
debug
>> IIIIIIIIIIIEEEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 8 8
>> Removing city O (8,8)
 
debug
>> IIIIIIIIIIIEEEI9,9,P10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 9 9
>> Removing city P (9,9)
 
debug
>> IIIIIIIIIIIEEEI10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 10 10
>> Removing city A (10,10)
 
debug
>> IIIIIIIIIIIEEEI11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 11 11
>> Removing city S (11,11)
 
debug
>> IIIIIIIIIIIEEEIEEEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 12 12
>> Removing city D (12,12)
 
debug
>> IIIIIIIIII13,13,F14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 13 13
>> Removing city F (13,13)
 
debug
>> IIIIIIIIII14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 14 14
>> Removing city G (14,14)
 
debug
>> IIIIIIIIII15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 15 15
>> Removing city H (15,15)
 
debug
>> IIIIIIIIIIEEEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 16 16
>> Removing city J (16,16)
 
debug
>> IIIIIIIIIIEEEII17,17,K18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 17 17
>> Removing city K (17,17)
 
debug
>> IIIIIIIIIIEEEII18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 18 18
>> Removing city L (18,18)
 
debug
>> IIIIIIIIIIEEEII19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 19 19
>> Removing city Z (19,19)
 
debug
>> IIIIIIIIIIEEEIIEEEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 20 20
>> Removing city X (20,20)
 
debug
>> IIIIIIIIIIEEEI21,21,C22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 21 21
>> Removing city C (21,21)
 
debug
>> IIIIIIIIIIEEEI22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove 22 22
>> Removing city V (22,22)
 
debug
>> 23,23,B24,24,N25,25,M|
 
remove 23 23
>> Removing city B (23,23)
 
debug
>> 24,24,N25,25,M|
 
remove 24 24
>> Removing city N (24,24)
 
debug
>> 25,25,M|
 
remove 25 25
>> Removing city M (25,25)
 
debug
>> E
 
insert 0 0 Q
>> Inserting city Q (0,0)
 
debug
>> 0,0,Q|
 
insert 1 1 W
>> Inserting city W (1,1)
 
debug
>> 0,0,Q1,1,W|
 
insert 2 2 E
>> Inserting city E (2,2)
 
debug
>> 0,0,Q1,1,W2,2,E|
 
insert 3 3 R
>> Inserting city R (3,3)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 4 4 T
>> Inserting city T (4,4)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 5 5 Y
>> Inserting city Y (5,5)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T5,5,Y|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 6 6 U
>> Inserting city U (6,6)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EE4,4,T5,5,Y6,6,U|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 7 7 I
>> Inserting city I (7,7)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 8 8 O
>> Inserting city O (8,8)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 9 9 P
>> Inserting city P (9,9)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O9,9,P|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 10 10 A
>> Inserting city A (10,10)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O9,9,P10,10,A|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 11 11 S
>> Inserting city S (11,11)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 12 12 D
>> Inserting city D (12,12)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 13 13 F
>> Inserting city F (13,13)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D13,13,F|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 14 14 G
>> Inserting city G (14,14)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EE12,12,D13,13,F14,14,G|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 15 15 H
>> Inserting city H (15,15)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 16 16 J
>> Inserting city J (16,16)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 17 17 K
>> Inserting city K (17,17)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J17,17,K|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 18 18 L
>> Inserting city L (18,18)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EE16,16,J17,17,K18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 19 19 Z
>> Inserting city Z (19,19)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 20 20 X
>> Inserting city X (20,20)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 21 21 C
>> Inserting city C (21,21)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X21,21,C|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 22 22 V
>> Inserting city V (22,22)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EE20,20,X21,21,C22,22,V|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 23 23 B
>> Inserting city B (23,23)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 24 24 N
>> Inserting city N (24,24)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
insert 25 25 M
>> Inserting city M (25,25)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEIII16,16,J17,17,K|EE18,18,L19,19,Z|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove Z
>> Removing city Z (19,19)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEII8,8,O9,9,P|EE10,10,A11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove A
>> Removing city A (10,10)
 
debug
>> IIIIIIIIIIIII0,0,Q1,1,W|EE2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove Q
>> Removing city Q (0,0)
 
debug
>> IIIIIIIIIIII1,1,W2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EEI20,20,X21,21,C|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove X
>> Removing city X (20,20)
 
debug
>> IIIIIIIIIIII1,1,W2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P11,11,S|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE21,21,C22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove S
>> Removing city S (11,11)
 
debug
>> IIIIIIIIIIII1,1,W2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE21,21,C22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove W
>> Removing city W (1,1)
 
debug
>> IIIIIIIIIIII2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE21,21,C22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove C
>> Removing city C (21,21)
 
debug
>> IIIIIIIIIIII2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EEI12,12,D13,13,F|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove D
>> Removing city D (12,12)
 
debug
>> IIIIIIIIIIII2,2,E3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE13,13,F14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove E
>> Removing city E (2,2)
 
debug
>> IIIIIIIIIIII3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE13,13,F14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE22,22,V23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove V
>> Removing city V (22,22)
 
debug
>> IIIIIIIIIIII3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE13,13,F14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove F
>> Removing city F (13,13)
 
debug
>> IIIIIIIIIIII3,3,R|EEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove R
>> Removing city R (3,3)
 
debug
>> IIIIIIIIIIIIEEEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE14,14,G15,15,H|EEII16,16,J17,17,K18,18,L|EE23,23,B|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove B
>> Removing city B (23,23)
 
debug
>> IIIIIIIIIIIIEEEI4,4,T5,5,Y|EE6,6,U7,7,I|EEI8,8,O9,9,P|EE14,14,G15,15,H|EEI16,16,J17,17,K18,18,L|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove G
>> Removing city G (14,14)
 
debug
>> IIIIIIIIIIIIEEEI4,4,T5,5,Y|EE6,6,U7,7,I|EE8,8,O9,9,P15,15,H|EEI16,16,J17,17,K18,18,L|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove T
>> Removing city T (4,4)
 
debug
>> IIIIIIIIIII5,5,Y6,6,U7,7,I|EE8,8,O9,9,P15,15,H|EEI16,16,J17,17,K18,18,L|EE24,24,N25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove N
>> Removing city N (24,24)
 
debug
>> IIIIIIIIIII5,5,Y6,6,U7,7,I|EE8,8,O9,9,P15,15,H|EEI16,16,J17,17,K18,18,L|EE25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove H
>> Removing city H (15,15)
 
debug
>> IIIIIIIIIII5,5,Y6,6,U7,7,I|EE8,8,O9,9,P|EEI16,16,J17,17,K18,18,L|EE25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove Y
>> Removing city Y (5,5)
 
debug
>> IIIIIIIIIII6,6,U7,7,I|EE8,8,O9,9,P|EEI16,16,J17,17,K18,18,L|EE25,25,M|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove M
>> Removing city M (25,25)
 
debug
>> IIIIIIIIIII6,6,U7,7,I|EE8,8,O9,9,P|EE16,16,J17,17,K18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove J
>> Removing city J (16,16)
 
debug
>> IIIIIIIIIII6,6,U7,7,I|EE8,8,O9,9,P|EE17,17,K18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove U
>> Removing city U (6,6)
 
debug
>> IIIIIIIIII7,7,I8,8,O9,9,P|EE17,17,K18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove K
>> Removing city K (17,17)
 
debug
>> IIIIIIIIII7,7,I8,8,O9,9,P|EE18,18,L|EEEEEEEEEEEEEEEEEEEEEEEEEEE
 
remove I
>> Removing city I (7,7)
 
debug
>> 8,8,O9,9,P18,18,L|
 
remove L
>> Removing city L (18,18)
 
debug
>> 8,8,O9,9,P|
 
remove O
>> Removing city O (8,8)
 
debug
>> 9,9,P|
 
remove P
>> Removing city P (9,9)
 
debug
>> E
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR
0,0 → 1,64
insert 0 0 A
debug
insert 0 4096 A
debug
insert 0 8192 A
debug
insert 0 12288 A
debug
insert 4096 0 A
debug
insert 4096 4096 A
debug
insert 4096 8192 A
debug
insert 4096 12288 A
debug
insert 8192 0 A
debug
insert 8192 4096 A
debug
insert 8192 8192 A
debug
insert 8192 12288 A
debug
insert 12288 0 A
debug
insert 12288 4096 A
debug
insert 12288 8192 A
debug
insert 12288 12288 A
debug
remove 0 0
debug
remove 0 4096
debug
remove 0 8192
debug
remove 0 12288
debug
remove 4096 0
debug
remove 4096 4096
debug
remove 4096 8192
debug
remove 4096 12288
debug
remove 8192 0
debug
remove 8192 4096
debug
remove 8192 8192
debug
remove 8192 12288
debug
remove 12288 0
debug
remove 12288 4096
debug
remove 12288 8192
debug
remove 12288 12288
debug
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR result.txt
0,0 → 1,192
insert 0 0 A
>> Inserting city A (0,0)
 
debug
>> 0,0,A|
 
insert 0 4096 A
>> Inserting city A (0,4096)
 
debug
>> 0,0,A0,4096,A|
 
insert 0 8192 A
>> Inserting city A (0,8192)
 
debug
>> 0,0,A0,4096,A0,8192,A|
 
insert 0 12288 A
>> Inserting city A (0,12288)
 
debug
>> I0,0,A0,4096,A|E0,8192,A0,12288,A|E
 
insert 4096 0 A
>> Inserting city A (4096,0)
 
debug
>> I0,0,A0,4096,A4096,0,A|E0,8192,A0,12288,A|E
 
insert 4096 4096 A
>> Inserting city A (4096,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|E0,8192,A0,12288,A|E
 
insert 4096 8192 A
>> Inserting city A (4096,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|E0,8192,A0,12288,A4096,8192,A|E
 
insert 4096 12288 A
>> Inserting city A (4096,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|EI0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 0 A
>> Inserting city A (8192,0)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 4096 A
>> Inserting city A (8192,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 8192 A
>> Inserting city A (8192,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A|
 
insert 8192 12288 A
>> Inserting city A (8192,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 0 A
>> Inserting city A (12288,0)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A12288,0,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 4096 A
>> Inserting city A (12288,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 8192 A
>> Inserting city A (12288,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A12288,8192,A|
 
insert 12288 12288 A
>> Inserting city A (12288,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 0 0
>> Removing city A (0,0)
 
debug
>> I4096,0,A0,4096,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 0 4096
>> Removing city A (0,4096)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 0 8192
>> Removing city A (0,8192)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A0,12288,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 0 12288
>> Removing city A (0,12288)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 4096 0
>> Removing city A (4096,0)
 
debug
>> I4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 4096 4096
>> Removing city A (4096,4096)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 4096 8192
>> Removing city A (4096,8192)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 4096 12288
>> Removing city A (4096,12288)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 8192 0
>> Removing city A (8192,0)
 
debug
>> IE12288,0,A8192,4096,A12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 8192 4096
>> Removing city A (8192,4096)
 
debug
>> IE12288,0,A12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove 8192 8192
>> Removing city A (8192,8192)
 
debug
>> IE12288,0,A12288,4096,A|E12288,8192,A8192,12288,A12288,12288,A|
 
remove 8192 12288
>> Removing city A (8192,12288)
 
debug
>> IE12288,0,A12288,4096,A|E12288,8192,A12288,12288,A|
 
remove 12288 0
>> Removing city A (12288,0)
 
debug
>> 12288,4096,A12288,8192,A12288,12288,A|
 
remove 12288 4096
>> Removing city A (12288,4096)
 
debug
>> 12288,8192,A12288,12288,A|
 
remove 12288 8192
>> Removing city A (12288,8192)
 
debug
>> 12288,12288,A|
 
remove 12288 12288
>> Removing city A (12288,12288)
 
debug
>> E
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR-rmName
0,0 → 1,64
insert 0 0 A
debug
insert 0 4096 A
debug
insert 0 8192 A
debug
insert 0 12288 A
debug
insert 4096 0 A
debug
insert 4096 4096 A
debug
insert 4096 8192 A
debug
insert 4096 12288 A
debug
insert 8192 0 A
debug
insert 8192 4096 A
debug
insert 8192 8192 A
debug
insert 8192 12288 A
debug
insert 12288 0 A
debug
insert 12288 4096 A
debug
insert 12288 8192 A
debug
insert 12288 12288 A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
remove A
debug
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR-rmName result.txt
0,0 → 1,192
insert 0 0 A
>> Inserting city A (0,0)
 
debug
>> 0,0,A|
 
insert 0 4096 A
>> Inserting city A (0,4096)
 
debug
>> 0,0,A0,4096,A|
 
insert 0 8192 A
>> Inserting city A (0,8192)
 
debug
>> 0,0,A0,4096,A0,8192,A|
 
insert 0 12288 A
>> Inserting city A (0,12288)
 
debug
>> I0,0,A0,4096,A|E0,8192,A0,12288,A|E
 
insert 4096 0 A
>> Inserting city A (4096,0)
 
debug
>> I0,0,A0,4096,A4096,0,A|E0,8192,A0,12288,A|E
 
insert 4096 4096 A
>> Inserting city A (4096,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|E0,8192,A0,12288,A|E
 
insert 4096 8192 A
>> Inserting city A (4096,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|E0,8192,A0,12288,A4096,8192,A|E
 
insert 4096 12288 A
>> Inserting city A (4096,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|EI0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 0 A
>> Inserting city A (8192,0)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 4096 A
>> Inserting city A (8192,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|E
 
insert 8192 8192 A
>> Inserting city A (8192,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A|
 
insert 8192 12288 A
>> Inserting city A (8192,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 0 A
>> Inserting city A (12288,0)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|8192,0,A8192,4096,A12288,0,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 4096 A
>> Inserting city A (12288,4096)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A|
 
insert 12288 8192 A
>> Inserting city A (12288,8192)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|8192,8192,A8192,12288,A12288,8192,A|
 
insert 12288 12288 A
>> Inserting city A (12288,12288)
 
debug
>> II0,0,A|4096,0,A|0,4096,A|4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (0,0)
 
debug
>> I4096,0,A0,4096,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (0,4096)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|I0,8192,A|4096,8192,A|0,12288,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (0,8192)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A0,12288,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (0,12288)
 
debug
>> I4096,0,A4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (4096,0)
 
debug
>> I4096,4096,A|I8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (4096,4096)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,8192,A4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (4096,8192)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|4096,12288,A|I8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (4096,12288)
 
debug
>> IEI8192,0,A|12288,0,A|8192,4096,A|12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (8192,0)
 
debug
>> IE12288,0,A8192,4096,A12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (8192,4096)
 
debug
>> IE12288,0,A12288,4096,A|EI8192,8192,A|12288,8192,A|8192,12288,A|12288,12288,A|
 
remove A
>> Removing city A (8192,8192)
 
debug
>> IE12288,0,A12288,4096,A|E12288,8192,A8192,12288,A12288,12288,A|
 
remove A
>> Removing city A (8192,12288)
 
debug
>> IE12288,0,A12288,4096,A|E12288,8192,A12288,12288,A|
 
remove A
>> Removing city A (12288,0)
 
debug
>> 12288,4096,A12288,8192,A12288,12288,A|
 
remove A
>> Removing city A (12288,4096)
 
debug
>> 12288,8192,A12288,12288,A|
 
remove A
>> Removing city A (12288,8192)
 
debug
>> 12288,12288,A|
 
remove A
>> Removing city A (12288,12288)
 
debug
>> E
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR-searchMid
0,0 → 1,38
insert 0 0 A
insert 0 4096 A
insert 0 8192 A
insert 0 12288 A
insert 4096 0 A
insert 4096 4096 A
insert 4096 8192 A
insert 4096 12288 A
insert 8192 0 A
insert 8192 4096 A
insert 8192 8192 A
insert 8192 12288 A
insert 12288 0 A
insert 12288 4096 A
insert 12288 8192 A
insert 12288 12288 A
find A
search 0 0 0
search 8192 8192 8191
search 8192 8192 8192
search 8192 8192 8193
search 8192 8192 16384
remove 0 0
remove 0 4096
remove 0 8192
remove 0 12288
remove 4096 0
remove 4096 4096
remove 4096 8192
remove 4096 12288
remove 8192 0
remove 8192 4096
remove 8192 8192
remove 8192 12288
remove 12288 0
remove 12288 4096
remove 12288 8192
remove 12288 12288
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_grid-4x4-IR-searchMid result.txt
0,0 → 1,161
insert 0 0 A
>> Inserting city A (0,0)
 
insert 0 4096 A
>> Inserting city A (0,4096)
 
insert 0 8192 A
>> Inserting city A (0,8192)
 
insert 0 12288 A
>> Inserting city A (0,12288)
 
insert 4096 0 A
>> Inserting city A (4096,0)
 
insert 4096 4096 A
>> Inserting city A (4096,4096)
 
insert 4096 8192 A
>> Inserting city A (4096,8192)
 
insert 4096 12288 A
>> Inserting city A (4096,12288)
 
insert 8192 0 A
>> Inserting city A (8192,0)
 
insert 8192 4096 A
>> Inserting city A (8192,4096)
 
insert 8192 8192 A
>> Inserting city A (8192,8192)
 
insert 8192 12288 A
>> Inserting city A (8192,12288)
 
insert 12288 0 A
>> Inserting city A (12288,0)
 
insert 12288 4096 A
>> Inserting city A (12288,4096)
 
insert 12288 8192 A
>> Inserting city A (12288,8192)
 
insert 12288 12288 A
>> Inserting city A (12288,12288)
 
find A
>> City found: A (0,0)
>> City found: A (0,4096)
>> City found: A (0,8192)
>> City found: A (0,12288)
>> City found: A (4096,0)
>> City found: A (4096,4096)
>> City found: A (4096,8192)
>> City found: A (4096,12288)
>> City found: A (8192,0)
>> City found: A (8192,4096)
>> City found: A (8192,8192)
>> City found: A (8192,12288)
>> City found: A (12288,0)
>> City found: A (12288,4096)
>> City found: A (12288,8192)
>> City found: A (12288,12288)
 
search 0 0 0
>> 3 nodes visited:
>> A (0,0)
 
search 8192 8192 8191
>> 21 nodes visited:
>> A (4096,4096)
>> A (8192,4096)
>> A (12288,4096)
>> A (4096,8192)
>> A (4096,12288)
>> A (8192,8192)
>> A (12288,8192)
>> A (8192,12288)
>> A (12288,12288)
 
search 8192 8192 8192
>> 21 nodes visited:
>> A (4096,4096)
>> A (8192,0)
>> A (8192,4096)
>> A (12288,4096)
>> A (0,8192)
>> A (4096,8192)
>> A (4096,12288)
>> A (8192,8192)
>> A (12288,8192)
>> A (8192,12288)
>> A (12288,12288)
 
search 8192 8192 8193
>> 21 nodes visited:
>> A (4096,4096)
>> A (8192,0)
>> A (8192,4096)
>> A (12288,4096)
>> A (0,8192)
>> A (4096,8192)
>> A (4096,12288)
>> A (8192,8192)
>> A (12288,8192)
>> A (8192,12288)
>> A (12288,12288)
 
search 8192 8192 16384
>> Search failed: Radius value out of range
 
remove 0 0
>> Removing city A (0,0)
 
remove 0 4096
>> Removing city A (0,4096)
 
remove 0 8192
>> Removing city A (0,8192)
 
remove 0 12288
>> Removing city A (0,12288)
 
remove 4096 0
>> Removing city A (4096,0)
 
remove 4096 4096
>> Removing city A (4096,4096)
 
remove 4096 8192
>> Removing city A (4096,8192)
 
remove 4096 12288
>> Removing city A (4096,12288)
 
remove 8192 0
>> Removing city A (8192,0)
 
remove 8192 4096
>> Removing city A (8192,4096)
 
remove 8192 8192
>> Removing city A (8192,8192)
 
remove 8192 12288
>> Removing city A (8192,12288)
 
remove 12288 0
>> Removing city A (12288,0)
 
remove 12288 4096
>> Removing city A (12288,4096)
 
remove 12288 8192
>> Removing city A (12288,8192)
 
remove 12288 12288
>> Removing city A (12288,12288)
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_seq-16384-IR
0,0 → 1,32768
insert 0 0 A
insert 0 1 A
insert 0 2 A
insert 0 3 A
insert 0 4 A
insert 0 5 A
insert 0 6 A
insert 0 7 A
insert 0 8 A
insert 0 9 A
insert 0 10 A
insert 0 11 A
insert 0 12 A
insert 0 13 A
insert 0 14 A
insert 0 15 A
insert 0 16 A
insert 0 17 A
insert 0 18 A
insert 0 19 A
insert 0 20 A
insert 0 21 A
insert 0 22 A
insert 0 23 A
insert 0 24 A
insert 0 25 A
insert 0 26 A
insert 0 27 A
insert 0 28 A
insert 0 29 A
insert 0 30 A
insert 0 31 A
insert 0 32 A
insert 0 33 A
insert 0 34 A
insert 0 35 A
insert 0 36 A
insert 0 37 A
insert 0 38 A
insert 0 39 A
insert 0 40 A
insert 0 41 A
insert 0 42 A
insert 0 43 A
insert 0 44 A
insert 0 45 A
insert 0 46 A
insert 0 47 A
insert 0 48 A
insert 0 49 A
insert 0 50 A
insert 0 51 A
insert 0 52 A
insert 0 53 A
insert 0 54 A
insert 0 55 A
insert 0 56 A
insert 0 57 A
insert 0 58 A
insert 0 59 A
insert 0 60 A
insert 0 61 A
insert 0 62 A
insert 0 63 A
insert 0 64 A
insert 0 65 A
insert 0 66 A
insert 0 67 A
insert 0 68 A
insert 0 69 A
insert 0 70 A
insert 0 71 A
insert 0 72 A
insert 0 73 A
insert 0 74 A
insert 0 75 A
insert 0 76 A
insert 0 77 A
insert 0 78 A
insert 0 79 A
insert 0 80 A
insert 0 81 A
insert 0 82 A
insert 0 83 A
insert 0 84 A
insert 0 85 A
insert 0 86 A
insert 0 87 A
insert 0 88 A
insert 0 89 A
insert 0 90 A
insert 0 91 A
insert 0 92 A
insert 0 93 A
insert 0 94 A
insert 0 95 A
insert 0 96 A
insert 0 97 A
insert 0 98 A
insert 0 99 A
insert 0 100 A
insert 0 101 A
insert 0 102 A
insert 0 103 A
insert 0 104 A
insert 0 105 A
insert 0 106 A
insert 0 107 A
insert 0 108 A
insert 0 109 A
insert 0 110 A
insert 0 111 A
insert 0 112 A
insert 0 113 A
insert 0 114 A
insert 0 115 A
insert 0 116 A
insert 0 117 A
insert 0 118 A
insert 0 119 A
insert 0 120 A
insert 0 121 A
insert 0 122 A
insert 0 123 A
insert 0 124 A
insert 0 125 A
insert 0 126 A
insert 0 127 A
insert 0 128 A
insert 0 129 A
insert 0 130 A
insert 0 131 A
insert 0 132 A
insert 0 133 A
insert 0 134 A
insert 0 135 A
insert 0 136 A
insert 0 137 A
insert 0 138 A
insert 0 139 A
insert 0 140 A
insert 0 141 A
insert 0 142 A
insert 0 143 A
insert 0 144 A
insert 0 145 A
insert 0 146 A
insert 0 147 A
insert 0 148 A
insert 0 149 A
insert 0 150 A
insert 0 151 A
insert 0 152 A
insert 0 153 A
insert 0 154 A
insert 0 155 A
insert 0 156 A
insert 0 157 A
insert 0 158 A
insert 0 159 A
insert 0 160 A
insert 0 161 A
insert 0 162 A
insert 0 163 A
insert 0 164 A
insert 0 165 A
insert 0 166 A
insert 0 167 A
insert 0 168 A
insert 0 169 A
insert 0 170 A
insert 0 171 A
insert 0 172 A
insert 0 173 A
insert 0 174 A
insert 0 175 A
insert 0 176 A
insert 0 177 A
insert 0 178 A
insert 0 179 A
insert 0 180 A
insert 0 181 A
insert 0 182 A
insert 0 183 A
insert 0 184 A
insert 0 185 A
insert 0 186 A
insert 0 187 A
insert 0 188 A
insert 0 189 A
insert 0 190 A
insert 0 191 A
insert 0 192 A
insert 0 193 A
insert 0 194 A
insert 0 195 A
insert 0 196 A
insert 0 197 A
insert 0 198 A
insert 0 199 A
insert 0 200 A
insert 0 201 A
insert 0 202 A
insert 0 203 A
insert 0 204 A
insert 0 205 A
insert 0 206 A
insert 0 207 A
insert 0 208 A
insert 0 209 A
insert 0 210 A
insert 0 211 A
insert 0 212 A
insert 0 213 A
insert 0 214 A
insert 0 215 A
insert 0 216 A
insert 0 217 A
insert 0 218 A
insert 0 219 A
insert 0 220 A
insert 0 221 A
insert 0 222 A
insert 0 223 A
insert 0 224 A
insert 0 225 A
insert 0 226 A
insert 0 227 A
insert 0 228 A
insert 0 229 A
insert 0 230 A
insert 0 231 A
insert 0 232 A
insert 0 233 A
insert 0 234 A
insert 0 235 A
insert 0 236 A
insert 0 237 A
insert 0 238 A
insert 0 239 A
insert 0 240 A
insert 0 241 A
insert 0 242 A
insert 0 243 A
insert 0 244 A
insert 0 245 A
insert 0 246 A
insert 0 247 A
insert 0 248 A
insert 0 249 A
insert 0 250 A
insert 0 251 A
insert 0 252 A
insert 0 253 A
insert 0 254 A
insert 0 255 A
insert 0 256 A
insert 0 257 A
insert 0 258 A
insert 0 259 A
insert 0 260 A
insert 0 261 A
insert 0 262 A
insert 0 263 A
insert 0 264 A
insert 0 265 A
insert 0 266 A
insert 0 267 A
insert 0 268 A
insert 0 269 A
insert 0 270 A
insert 0 271 A
insert 0 272 A
insert 0 273 A
insert 0 274 A
insert 0 275 A
insert 0 276 A
insert 0 277 A
insert 0 278 A
insert 0 279 A
insert 0 280 A
insert 0 281 A
insert 0 282 A
insert 0 283 A
insert 0 284 A
insert 0 285 A
insert 0 286 A
insert 0 287 A
insert 0 288 A
insert 0 289 A
insert 0 290 A
insert 0 291 A
insert 0 292 A
insert 0 293 A
insert 0 294 A
insert 0 295 A
insert 0 296 A
insert 0 297 A
insert 0 298 A
insert 0 299 A
insert 0 300 A
insert 0 301 A
insert 0 302 A
insert 0 303 A
insert 0 304 A
insert 0 305 A
insert 0 306 A
insert 0 307 A
insert 0 308 A
insert 0 309 A
insert 0 310 A
insert 0 311 A
insert 0 312 A
insert 0 313 A
insert 0 314 A
insert 0 315 A
insert 0 316 A
insert 0 317 A
insert 0 318 A
insert 0 319 A
insert 0 320 A
insert 0 321 A
insert 0 322 A
insert 0 323 A
insert 0 324 A
insert 0 325 A
insert 0 326 A
insert 0 327 A
insert 0 328 A
insert 0 329 A
insert 0 330 A
insert 0 331 A
insert 0 332 A
insert 0 333 A
insert 0 334 A
insert 0 335 A
insert 0 336 A
insert 0 337 A
insert 0 338 A
insert 0 339 A
insert 0 340 A
insert 0 341 A
insert 0 342 A
insert 0 343 A
insert 0 344 A
insert 0 345 A
insert 0 346 A
insert 0 347 A
insert 0 348 A
insert 0 349 A
insert 0 350 A
insert 0 351 A
insert 0 352 A
insert 0 353 A
insert 0 354 A
insert 0 355 A
insert 0 356 A
insert 0 357 A
insert 0 358 A
insert 0 359 A
insert 0 360 A
insert 0 361 A
insert 0 362 A
insert 0 363 A
insert 0 364 A
insert 0 365 A
insert 0 366 A
insert 0 367 A
insert 0 368 A
insert 0 369 A
insert 0 370 A
insert 0 371 A
insert 0 372 A
insert 0 373 A
insert 0 374 A
insert 0 375 A
insert 0 376 A
insert 0 377 A
insert 0 378 A
insert 0 379 A
insert 0 380 A
insert 0 381 A
insert 0 382 A
insert 0 383 A
insert 0 384 A
insert 0 385 A
insert 0 386 A
insert 0 387 A
insert 0 388 A
insert 0 389 A
insert 0 390 A
insert 0 391 A
insert 0 392 A
insert 0 393 A
insert 0 394 A
insert 0 395 A
insert 0 396 A
insert 0 397 A
insert 0 398 A
insert 0 399 A
insert 0 400 A
insert 0 401 A
insert 0 402 A
insert 0 403 A
insert 0 404 A
insert 0 405 A
insert 0 406 A
insert 0 407 A
insert 0 408 A
insert 0 409 A
insert 0 410 A
insert 0 411 A
insert 0 412 A
insert 0 413 A
insert 0 414 A
insert 0 415 A
insert 0 416 A
insert 0 417 A
insert 0 418 A
insert 0 419 A
insert 0 420 A
insert 0 421 A
insert 0 422 A
insert 0 423 A
insert 0 424 A
insert 0 425 A
insert 0 426 A
insert 0 427 A
insert 0 428 A
insert 0 429 A
insert 0 430 A
insert 0 431 A
insert 0 432 A
insert 0 433 A
insert 0 434 A
insert 0 435 A
insert 0 436 A
insert 0 437 A
insert 0 438 A
insert 0 439 A
insert 0 440 A
insert 0 441 A
insert 0 442 A
insert 0 443 A
insert 0 444 A
insert 0 445 A
insert 0 446 A
insert 0 447 A
insert 0 448 A
insert 0 449 A
insert 0 450 A
insert 0 451 A
insert 0 452 A
insert 0 453 A
insert 0 454 A
insert 0 455 A
insert 0 456 A
insert 0 457 A
insert 0 458 A
insert 0 459 A
insert 0 460 A
insert 0 461 A
insert 0 462 A
insert 0 463 A
insert 0 464 A
insert 0 465 A
insert 0 466 A
insert 0 467 A
insert 0 468 A
insert 0 469 A
insert 0 470 A
insert 0 471 A
insert 0 472 A
insert 0 473 A
insert 0 474 A
insert 0 475 A
insert 0 476 A
insert 0 477 A
insert 0 478 A
insert 0 479 A
insert 0 480 A
insert 0 481 A
insert 0 482 A
insert 0 483 A
insert 0 484 A
insert 0 485 A
insert 0 486 A
insert 0 487 A
insert 0 488 A
insert 0 489 A
insert 0 490 A
insert 0 491 A
insert 0 492 A
insert 0 493 A
insert 0 494 A
insert 0 495 A
insert 0 496 A
insert 0 497 A
insert 0 498 A
insert 0 499 A
insert 0 500 A
insert 0 501 A
insert 0 502 A
insert 0 503 A
insert 0 504 A
insert 0 505 A
insert 0 506 A
insert 0 507 A
insert 0 508 A
insert 0 509 A
insert 0 510 A
insert 0 511 A
insert 0 512 A
insert 0 513 A
insert 0 514 A
insert 0 515 A
insert 0 516 A
insert 0 517 A
insert 0 518 A
insert 0 519 A
insert 0 520 A
insert 0 521 A
insert 0 522 A
insert 0 523 A
insert 0 524 A
insert 0 525 A
insert 0 526 A
insert 0 527 A
insert 0 528 A
insert 0 529 A
insert 0 530 A
insert 0 531 A
insert 0 532 A
insert 0 533 A
insert 0 534 A
insert 0 535 A
insert 0 536 A
insert 0 537 A
insert 0 538 A
insert 0 539 A
insert 0 540 A
insert 0 541 A
insert 0 542 A
insert 0 543 A
insert 0 544 A
insert 0 545 A
insert 0 546 A
insert 0 547 A
insert 0 548 A
insert 0 549 A
insert 0 550 A
insert 0 551 A
insert 0 552 A
insert 0 553 A
insert 0 554 A
insert 0 555 A
insert 0 556 A
insert 0 557 A
insert 0 558 A
insert 0 559 A
insert 0 560 A
insert 0 561 A
insert 0 562 A
insert 0 563 A
insert 0 564 A
insert 0 565 A
insert 0 566 A
insert 0 567 A
insert 0 568 A
insert 0 569 A
insert 0 570 A
insert 0 571 A
insert 0 572 A
insert 0 573 A
insert 0 574 A
insert 0 575 A
insert 0 576 A
insert 0 577 A
insert 0 578 A
insert 0 579 A
insert 0 580 A
insert 0 581 A
insert 0 582 A
insert 0 583 A
insert 0 584 A
insert 0 585 A
insert 0 586 A
insert 0 587 A
insert 0 588 A
insert 0 589 A
insert 0 590 A
insert 0 591 A
insert 0 592 A
insert 0 593 A
insert 0 594 A
insert 0 595 A
insert 0 596 A
insert 0 597 A
insert 0 598 A
insert 0 599 A
insert 0 600 A
insert 0 601 A
insert 0 602 A
insert 0 603 A
insert 0 604 A
insert 0 605 A
insert 0 606 A
insert 0 607 A
insert 0 608 A
insert 0 609 A
insert 0 610 A
insert 0 611 A
insert 0 612 A
insert 0 613 A
insert 0 614 A
insert 0 615 A
insert 0 616 A
insert 0 617 A
insert 0 618 A
insert 0 619 A
insert 0 620 A
insert 0 621 A
insert 0 622 A
insert 0 623 A
insert 0 624 A
insert 0 625 A
insert 0 626 A
insert 0 627 A
insert 0 628 A
insert 0 629 A
insert 0 630 A
insert 0 631 A
insert 0 632 A
insert 0 633 A
insert 0 634 A
insert 0 635 A
insert 0 636 A
insert 0 637 A
insert 0 638 A
insert 0 639 A
insert 0 640 A
insert 0 641 A
insert 0 642 A
insert 0 643 A
insert 0 644 A
insert 0 645 A
insert 0 646 A
insert 0 647 A
insert 0 648 A
insert 0 649 A
insert 0 650 A
insert 0 651 A
insert 0 652 A
insert 0 653 A
insert 0 654 A
insert 0 655 A
insert 0 656 A
insert 0 657 A
insert 0 658 A
insert 0 659 A
insert 0 660 A
insert 0 661 A
insert 0 662 A
insert 0 663 A
insert 0 664 A
insert 0 665 A
insert 0 666 A
insert 0 667 A
insert 0 668 A
insert 0 669 A
insert 0 670 A
insert 0 671 A
insert 0 672 A
insert 0 673 A
insert 0 674 A
insert 0 675 A
insert 0 676 A
insert 0 677 A
insert 0 678 A
insert 0 679 A
insert 0 680 A
insert 0 681 A
insert 0 682 A
insert 0 683 A
insert 0 684 A
insert 0 685 A
insert 0 686 A
insert 0 687 A
insert 0 688 A
insert 0 689 A
insert 0 690 A
insert 0 691 A
insert 0 692 A
insert 0 693 A
insert 0 694 A
insert 0 695 A
insert 0 696 A
insert 0 697 A
insert 0 698 A
insert 0 699 A
insert 0 700 A
insert 0 701 A
insert 0 702 A
insert 0 703 A
insert 0 704 A
insert 0 705 A
insert 0 706 A
insert 0 707 A
insert 0 708 A
insert 0 709 A
insert 0 710 A
insert 0 711 A
insert 0 712 A
insert 0 713 A
insert 0 714 A
insert 0 715 A
insert 0 716 A
insert 0 717 A
insert 0 718 A
insert 0 719 A
insert 0 720 A
insert 0 721 A
insert 0 722 A
insert 0 723 A
insert 0 724 A
insert 0 725 A
insert 0 726 A
insert 0 727 A
insert 0 728 A
insert 0 729 A
insert 0 730 A
insert 0 731 A
insert 0 732 A
insert 0 733 A
insert 0 734 A
insert 0 735 A
insert 0 736 A
insert 0 737 A
insert 0 738 A
insert 0 739 A
insert 0 740 A
insert 0 741 A
insert 0 742 A
insert 0 743 A
insert 0 744 A
insert 0 745 A
insert 0 746 A
insert 0 747 A
insert 0 748 A
insert 0 749 A
insert 0 750 A
insert 0 751 A
insert 0 752 A
insert 0 753 A
insert 0 754 A
insert 0 755 A
insert 0 756 A
insert 0 757 A
insert 0 758 A
insert 0 759 A
insert 0 760 A
insert 0 761 A
insert 0 762 A
insert 0 763 A
insert 0 764 A
insert 0 765 A
insert 0 766 A
insert 0 767 A
insert 0 768 A
insert 0 769 A
insert 0 770 A
insert 0 771 A
insert 0 772 A
insert 0 773 A
insert 0 774 A
insert 0 775 A
insert 0 776 A
insert 0 777 A
insert 0 778 A
insert 0 779 A
insert 0 780 A
insert 0 781 A
insert 0 782 A
insert 0 783 A
insert 0 784 A
insert 0 785 A
insert 0 786 A
insert 0 787 A
insert 0 788 A
insert 0 789 A
insert 0 790 A
insert 0 791 A
insert 0 792 A
insert 0 793 A
insert 0 794 A
insert 0 795 A
insert 0 796 A
insert 0 797 A
insert 0 798 A
insert 0 799 A
insert 0 800 A
insert 0 801 A
insert 0 802 A
insert 0 803 A
insert 0 804 A
insert 0 805 A
insert 0 806 A
insert 0 807 A
insert 0 808 A
insert 0 809 A
insert 0 810 A
insert 0 811 A
insert 0 812 A
insert 0 813 A
insert 0 814 A
insert 0 815 A
insert 0 816 A
insert 0 817 A
insert 0 818 A
insert 0 819 A
insert 0 820 A
insert 0 821 A
insert 0 822 A
insert 0 823 A
insert 0 824 A
insert 0 825 A
insert 0 826 A
insert 0 827 A
insert 0 828 A
insert 0 829 A
insert 0 830 A
insert 0 831 A
insert 0 832 A
insert 0 833 A
insert 0 834 A
insert 0 835 A
insert 0 836 A
insert 0 837 A
insert 0 838 A
insert 0 839 A
insert 0 840 A
insert 0 841 A
insert 0 842 A
insert 0 843 A
insert 0 844 A
insert 0 845 A
insert 0 846 A
insert 0 847 A
insert 0 848 A
insert 0 849 A
insert 0 850 A
insert 0 851 A
insert 0 852 A
insert 0 853 A
insert 0 854 A
insert 0 855 A
insert 0 856 A
insert 0 857 A
insert 0 858 A
insert 0 859 A
insert 0 860 A
insert 0 861 A
insert 0 862 A
insert 0 863 A
insert 0 864 A
insert 0 865 A
insert 0 866 A
insert 0 867 A
insert 0 868 A
insert 0 869 A
insert 0 870 A
insert 0 871 A
insert 0 872 A
insert 0 873 A
insert 0 874 A
insert 0 875 A
insert 0 876 A
insert 0 877 A
insert 0 878 A
insert 0 879 A
insert 0 880 A
insert 0 881 A
insert 0 882 A
insert 0 883 A
insert 0 884 A
insert 0 885 A
insert 0 886 A
insert 0 887 A
insert 0 888 A
insert 0 889 A
insert 0 890 A
insert 0 891 A
insert 0 892 A
insert 0 893 A
insert 0 894 A
insert 0 895 A
insert 0 896 A
insert 0 897 A
insert 0 898 A
insert 0 899 A
insert 0 900 A
insert 0 901 A
insert 0 902 A
insert 0 903 A
insert 0 904 A
insert 0 905 A
insert 0 906 A
insert 0 907 A
insert 0 908 A
insert 0 909 A
insert 0 910 A
insert 0 911 A
insert 0 912 A
insert 0 913 A
insert 0 914 A
insert 0 915 A
insert 0 916 A
insert 0 917 A
insert 0 918 A
insert 0 919 A
insert 0 920 A
insert 0 921 A
insert 0 922 A
insert 0 923 A
insert 0 924 A
insert 0 925 A
insert 0 926 A
insert 0 927 A
insert 0 928 A
insert 0 929 A
insert 0 930 A
insert 0 931 A
insert 0 932 A
insert 0 933 A
insert 0 934 A
insert 0 935 A
insert 0 936 A
insert 0 937 A
insert 0 938 A
insert 0 939 A
insert 0 940 A
insert 0 941 A
insert 0 942 A
insert 0 943 A
insert 0 944 A
insert 0 945 A
insert 0 946 A
insert 0 947 A
insert 0 948 A
insert 0 949 A
insert 0 950 A
insert 0 951 A
insert 0 952 A
insert 0 953 A
insert 0 954 A
insert 0 955 A
insert 0 956 A
insert 0 957 A
insert 0 958 A
insert 0 959 A
insert 0 960 A
insert 0 961 A
insert 0 962 A
insert 0 963 A
insert 0 964 A
insert 0 965 A
insert 0 966 A
insert 0 967 A
insert 0 968 A
insert 0 969 A
insert 0 970 A
insert 0 971 A
insert 0 972 A
insert 0 973 A
insert 0 974 A
insert 0 975 A
insert 0 976 A
insert 0 977 A
insert 0 978 A
insert 0 979 A
insert 0 980 A
insert 0 981 A
insert 0 982 A
insert 0 983 A
insert 0 984 A
insert 0 985 A
insert 0 986 A
insert 0 987 A
insert 0 988 A
insert 0 989 A
insert 0 990 A
insert 0 991 A
insert 0 992 A
insert 0 993 A
insert 0 994 A
insert 0 995 A
insert 0 996 A
insert 0 997 A
insert 0 998 A
insert 0 999 A
insert 0 1000 A
insert 0 1001 A
insert 0 1002 A
insert 0 1003 A
insert 0 1004 A
insert 0 1005 A
insert 0 1006 A
insert 0 1007 A
insert 0 1008 A
insert 0 1009 A
insert 0 1010 A
insert 0 1011 A
insert 0 1012 A
insert 0 1013 A
insert 0 1014 A
insert 0 1015 A
insert 0 1016 A
insert 0 1017 A
insert 0 1018 A
insert 0 1019 A
insert 0 1020 A
insert 0 1021 A
insert 0 1022 A
insert 0 1023 A
insert 0 1024 A
insert 0 1025 A
insert 0 1026 A
insert 0 1027 A
insert 0 1028 A
insert 0 1029 A
insert 0 1030 A
insert 0 1031 A
insert 0 1032 A
insert 0 1033 A
insert 0 1034 A
insert 0 1035 A
insert 0 1036 A
insert 0 1037 A
insert 0 1038 A
insert 0 1039 A
insert 0 1040 A
insert 0 1041 A
insert 0 1042 A
insert 0 1043 A
insert 0 1044 A
insert 0 1045 A
insert 0 1046 A
insert 0 1047 A
insert 0 1048 A
insert 0 1049 A
insert 0 1050 A
insert 0 1051 A
insert 0 1052 A
insert 0 1053 A
insert 0 1054 A
insert 0 1055 A
insert 0 1056 A
insert 0 1057 A
insert 0 1058 A
insert 0 1059 A
insert 0 1060 A
insert 0 1061 A
insert 0 1062 A
insert 0 1063 A
insert 0 1064 A
insert 0 1065 A
insert 0 1066 A
insert 0 1067 A
insert 0 1068 A
insert 0 1069 A
insert 0 1070 A
insert 0 1071 A
insert 0 1072 A
insert 0 1073 A
insert 0 1074 A
insert 0 1075 A
insert 0 1076 A
insert 0 1077 A
insert 0 1078 A
insert 0 1079 A
insert 0 1080 A
insert 0 1081 A
insert 0 1082 A
insert 0 1083 A
insert 0 1084 A
insert 0 1085 A
insert 0 1086 A
insert 0 1087 A
insert 0 1088 A
insert 0 1089 A
insert 0 1090 A
insert 0 1091 A
insert 0 1092 A
insert 0 1093 A
insert 0 1094 A
insert 0 1095 A
insert 0 1096 A
insert 0 1097 A
insert 0 1098 A
insert 0 1099 A
insert 0 1100 A
insert 0 1101 A
insert 0 1102 A
insert 0 1103 A
insert 0 1104 A
insert 0 1105 A
insert 0 1106 A
insert 0 1107 A
insert 0 1108 A
insert 0 1109 A
insert 0 1110 A
insert 0 1111 A
insert 0 1112 A
insert 0 1113 A
insert 0 1114 A
insert 0 1115 A
insert 0 1116 A
insert 0 1117 A
insert 0 1118 A
insert 0 1119 A
insert 0 1120 A
insert 0 1121 A
insert 0 1122 A
insert 0 1123 A
insert 0 1124 A
insert 0 1125 A
insert 0 1126 A
insert 0 1127 A
insert 0 1128 A
insert 0 1129 A
insert 0 1130 A
insert 0 1131 A
insert 0 1132 A
insert 0 1133 A
insert 0 1134 A
insert 0 1135 A
insert 0 1136 A
insert 0 1137 A
insert 0 1138 A
insert 0 1139 A
insert 0 1140 A
insert 0 1141 A
insert 0 1142 A
insert 0 1143 A
insert 0 1144 A
insert 0 1145 A
insert 0 1146 A
insert 0 1147 A
insert 0 1148 A
insert 0 1149 A
insert 0 1150 A
insert 0 1151 A
insert 0 1152 A
insert 0 1153 A
insert 0 1154 A
insert 0 1155 A
insert 0 1156 A
insert 0 1157 A
insert 0 1158 A
insert 0 1159 A
insert 0 1160 A
insert 0 1161 A
insert 0 1162 A
insert 0 1163 A
insert 0 1164 A
insert 0 1165 A
insert 0 1166 A
insert 0 1167 A
insert 0 1168 A
insert 0 1169 A
insert 0 1170 A
insert 0 1171 A
insert 0 1172 A
insert 0 1173 A
insert 0 1174 A
insert 0 1175 A
insert 0 1176 A
insert 0 1177 A
insert 0 1178 A
insert 0 1179 A
insert 0 1180 A
insert 0 1181 A
insert 0 1182 A
insert 0 1183 A
insert 0 1184 A
insert 0 1185 A
insert 0 1186 A
insert 0 1187 A
insert 0 1188 A
insert 0 1189 A
insert 0 1190 A
insert 0 1191 A
insert 0 1192 A
insert 0 1193 A
insert 0 1194 A
insert 0 1195 A
insert 0 1196 A
insert 0 1197 A
insert 0 1198 A
insert 0 1199 A
insert 0 1200 A
insert 0 1201 A
insert 0 1202 A
insert 0 1203 A
insert 0 1204 A
insert 0 1205 A
insert 0 1206 A
insert 0 1207 A
insert 0 1208 A
insert 0 1209 A
insert 0 1210 A
insert 0 1211 A
insert 0 1212 A
insert 0 1213 A
insert 0 1214 A
insert 0 1215 A
insert 0 1216 A
insert 0 1217 A
insert 0 1218 A
insert 0 1219 A
insert 0 1220 A
insert 0 1221 A
insert 0 1222 A
insert 0 1223 A
insert 0 1224 A
insert 0 1225 A
insert 0 1226 A
insert 0 1227 A
insert 0 1228 A
insert 0 1229 A
insert 0 1230 A
insert 0 1231 A
insert 0 1232 A
insert 0 1233 A
insert 0 1234 A
insert 0 1235 A
insert 0 1236 A
insert 0 1237 A
insert 0 1238 A
insert 0 1239 A
insert 0 1240 A
insert 0 1241 A
insert 0 1242 A
insert 0 1243 A
insert 0 1244 A
insert 0 1245 A
insert 0 1246 A
insert 0 1247 A
insert 0 1248 A
insert 0 1249 A
insert 0 1250 A
insert 0 1251 A
insert 0 1252 A
insert 0 1253 A
insert 0 1254 A
insert 0 1255 A
insert 0 1256 A
insert 0 1257 A
insert 0 1258 A
insert 0 1259 A
insert 0 1260 A
insert 0 1261 A
insert 0 1262 A
insert 0 1263 A
insert 0 1264 A
insert 0 1265 A
insert 0 1266 A
insert 0 1267 A
insert 0 1268 A
insert 0 1269 A
insert 0 1270 A
insert 0 1271 A
insert 0 1272 A
insert 0 1273 A
insert 0 1274 A
insert 0 1275 A
insert 0 1276 A
insert 0 1277 A
insert 0 1278 A
insert 0 1279 A
insert 0 1280 A
insert 0 1281 A
insert 0 1282 A
insert 0 1283 A
insert 0 1284 A
insert 0 1285 A
insert 0 1286 A
insert 0 1287 A
insert 0 1288 A
insert 0 1289 A
insert 0 1290 A
insert 0 1291 A
insert 0 1292 A
insert 0 1293 A
insert 0 1294 A
insert 0 1295 A
insert 0 1296 A
insert 0 1297 A
insert 0 1298 A
insert 0 1299 A
insert 0 1300 A
insert 0 1301 A
insert 0 1302 A
insert 0 1303 A
insert 0 1304 A
insert 0 1305 A
insert 0 1306 A
insert 0 1307 A
insert 0 1308 A
insert 0 1309 A
insert 0 1310 A
insert 0 1311 A
insert 0 1312 A
insert 0 1313 A
insert 0 1314 A
insert 0 1315 A
insert 0 1316 A
insert 0 1317 A
insert 0 1318 A
insert 0 1319 A
insert 0 1320 A
insert 0 1321 A
insert 0 1322 A
insert 0 1323 A
insert 0 1324 A
insert 0 1325 A
insert 0 1326 A
insert 0 1327 A
insert 0 1328 A
insert 0 1329 A
insert 0 1330 A
insert 0 1331 A
insert 0 1332 A
insert 0 1333 A
insert 0 1334 A
insert 0 1335 A
insert 0 1336 A
insert 0 1337 A
insert 0 1338 A
insert 0 1339 A
insert 0 1340 A
insert 0 1341 A
insert 0 1342 A
insert 0 1343 A
insert 0 1344 A
insert 0 1345 A
insert 0 1346 A
insert 0 1347 A
insert 0 1348 A
insert 0 1349 A
insert 0 1350 A
insert 0 1351 A
insert 0 1352 A
insert 0 1353 A
insert 0 1354 A
insert 0 1355 A
insert 0 1356 A
insert 0 1357 A
insert 0 1358 A
insert 0 1359 A
insert 0 1360 A
insert 0 1361 A
insert 0 1362 A
insert 0 1363 A
insert 0 1364 A
insert 0 1365 A
insert 0 1366 A
insert 0 1367 A
insert 0 1368 A
insert 0 1369 A
insert 0 1370 A
insert 0 1371 A
insert 0 1372 A
insert 0 1373 A
insert 0 1374 A
insert 0 1375 A
insert 0 1376 A
insert 0 1377 A
insert 0 1378 A
insert 0 1379 A
insert 0 1380 A
insert 0 1381 A
insert 0 1382 A
insert 0 1383 A
insert 0 1384 A
insert 0 1385 A
insert 0 1386 A
insert 0 1387 A
insert 0 1388 A
insert 0 1389 A
insert 0 1390 A
insert 0 1391 A
insert 0 1392 A
insert 0 1393 A
insert 0 1394 A
insert 0 1395 A
insert 0 1396 A
insert 0 1397 A
insert 0 1398 A
insert 0 1399 A
insert 0 1400 A
insert 0 1401 A
insert 0 1402 A
insert 0 1403 A
insert 0 1404 A
insert 0 1405 A
insert 0 1406 A
insert 0 1407 A
insert 0 1408 A
insert 0 1409 A
insert 0 1410 A
insert 0 1411 A
insert 0 1412 A
insert 0 1413 A
insert 0 1414 A
insert 0 1415 A
insert 0 1416 A
insert 0 1417 A
insert 0 1418 A
insert 0 1419 A
insert 0 1420 A
insert 0 1421 A
insert 0 1422 A
insert 0 1423 A
insert 0 1424 A
insert 0 1425 A
insert 0 1426 A
insert 0 1427 A
insert 0 1428 A
insert 0 1429 A
insert 0 1430 A
insert 0 1431 A
insert 0 1432 A
insert 0 1433 A
insert 0 1434 A
insert 0 1435 A
insert 0 1436 A
insert 0 1437 A
insert 0 1438 A
insert 0 1439 A
insert 0 1440 A
insert 0 1441 A
insert 0 1442 A
insert 0 1443 A
insert 0 1444 A
insert 0 1445 A
insert 0 1446 A
insert 0 1447 A
insert 0 1448 A
insert 0 1449 A
insert 0 1450 A
insert 0 1451 A
insert 0 1452 A
insert 0 1453 A
insert 0 1454 A
insert 0 1455 A
insert 0 1456 A
insert 0 1457 A
insert 0 1458 A
insert 0 1459 A
insert 0 1460 A
insert 0 1461 A
insert 0 1462 A
insert 0 1463 A
insert 0 1464 A
insert 0 1465 A
insert 0 1466 A
insert 0 1467 A
insert 0 1468 A
insert 0 1469 A
insert 0 1470 A
insert 0 1471 A
insert 0 1472 A
insert 0 1473 A
insert 0 1474 A
insert 0 1475 A
insert 0 1476 A
insert 0 1477 A
insert 0 1478 A
insert 0 1479 A
insert 0 1480 A
insert 0 1481 A
insert 0 1482 A
insert 0 1483 A
insert 0 1484 A
insert 0 1485 A
insert 0 1486 A
insert 0 1487 A
insert 0 1488 A
insert 0 1489 A
insert 0 1490 A
insert 0 1491 A
insert 0 1492 A
insert 0 1493 A
insert 0 1494 A
insert 0 1495 A
insert 0 1496 A
insert 0 1497 A
insert 0 1498 A
insert 0 1499 A
insert 0 1500 A
insert 0 1501 A
insert 0 1502 A
insert 0 1503 A
insert 0 1504 A
insert 0 1505 A
insert 0 1506 A
insert 0 1507 A
insert 0 1508 A
insert 0 1509 A
insert 0 1510 A
insert 0 1511 A
insert 0 1512 A
insert 0 1513 A
insert 0 1514 A
insert 0 1515 A
insert 0 1516 A
insert 0 1517 A
insert 0 1518 A
insert 0 1519 A
insert 0 1520 A
insert 0 1521 A
insert 0 1522 A
insert 0 1523 A
insert 0 1524 A
insert 0 1525 A
insert 0 1526 A
insert 0 1527 A
insert 0 1528 A
insert 0 1529 A
insert 0 1530 A
insert 0 1531 A
insert 0 1532 A
insert 0 1533 A
insert 0 1534 A
insert 0 1535 A
insert 0 1536 A
insert 0 1537 A
insert 0 1538 A
insert 0 1539 A
insert 0 1540 A
insert 0 1541 A
insert 0 1542 A
insert 0 1543 A
insert 0 1544 A
insert 0 1545 A
insert 0 1546 A
insert 0 1547 A
insert 0 1548 A
insert 0 1549 A
insert 0 1550 A
insert 0 1551 A
insert 0 1552 A
insert 0 1553 A
insert 0 1554 A
insert 0 1555 A
insert 0 1556 A
insert 0 1557 A
insert 0 1558 A
insert 0 1559 A
insert 0 1560 A
insert 0 1561 A
insert 0 1562 A
insert 0 1563 A
insert 0 1564 A
insert 0 1565 A
insert 0 1566 A
insert 0 1567 A
insert 0 1568 A
insert 0 1569 A
insert 0 1570 A
insert 0 1571 A
insert 0 1572 A
insert 0 1573 A
insert 0 1574 A
insert 0 1575 A
insert 0 1576 A
insert 0 1577 A
insert 0 1578 A
insert 0 1579 A
insert 0 1580 A
insert 0 1581 A
insert 0 1582 A
insert 0 1583 A
insert 0 1584 A
insert 0 1585 A
insert 0 1586 A
insert 0 1587 A
insert 0 1588 A
insert 0 1589 A
insert 0 1590 A
insert 0 1591 A
insert 0 1592 A
insert 0 1593 A
insert 0 1594 A
insert 0 1595 A
insert 0 1596 A
insert 0 1597 A
insert 0 1598 A
insert 0 1599 A
insert 0 1600 A
insert 0 1601 A
insert 0 1602 A
insert 0 1603 A
insert 0 1604 A
insert 0 1605 A
insert 0 1606 A
insert 0 1607 A
insert 0 1608 A
insert 0 1609 A
insert 0 1610 A
insert 0 1611 A
insert 0 1612 A
insert 0 1613 A
insert 0 1614 A
insert 0 1615 A
insert 0 1616 A
insert 0 1617 A
insert 0 1618 A
insert 0 1619 A
insert 0 1620 A
insert 0 1621 A
insert 0 1622 A
insert 0 1623 A
insert 0 1624 A
insert 0 1625 A
insert 0 1626 A
insert 0 1627 A
insert 0 1628 A
insert 0 1629 A
insert 0 1630 A
insert 0 1631 A
insert 0 1632 A
insert 0 1633 A
insert 0 1634 A
insert 0 1635 A
insert 0 1636 A
insert 0 1637 A
insert 0 1638 A
insert 0 1639 A
insert 0 1640 A
insert 0 1641 A
insert 0 1642 A
insert 0 1643 A
insert 0 1644 A
insert 0 1645 A
insert 0 1646 A
insert 0 1647 A
insert 0 1648 A
insert 0 1649 A
insert 0 1650 A
insert 0 1651 A
insert 0 1652 A
insert 0 1653 A
insert 0 1654 A
insert 0 1655 A
insert 0 1656 A
insert 0 1657 A
insert 0 1658 A
insert 0 1659 A
insert 0 1660 A
insert 0 1661 A
insert 0 1662 A
insert 0 1663 A
insert 0 1664 A
insert 0 1665 A
insert 0 1666 A
insert 0 1667 A
insert 0 1668 A
insert 0 1669 A
insert 0 1670 A
insert 0 1671 A
insert 0 1672 A
insert 0 1673 A
insert 0 1674 A
insert 0 1675 A
insert 0 1676 A
insert 0 1677 A
insert 0 1678 A
insert 0 1679 A
insert 0 1680 A
insert 0 1681 A
insert 0 1682 A
insert 0 1683 A
insert 0 1684 A
insert 0 1685 A
insert 0 1686 A
insert 0 1687 A
insert 0 1688 A
insert 0 1689 A
insert 0 1690 A
insert 0 1691 A
insert 0 1692 A
insert 0 1693 A
insert 0 1694 A
insert 0 1695 A
insert 0 1696 A
insert 0 1697 A
insert 0 1698 A
insert 0 1699 A
insert 0 1700 A
insert 0 1701 A
insert 0 1702 A
insert 0 1703 A
insert 0 1704 A
insert 0 1705 A
insert 0 1706 A
insert 0 1707 A
insert 0 1708 A
insert 0 1709 A
insert 0 1710 A
insert 0 1711 A
insert 0 1712 A
insert 0 1713 A
insert 0 1714 A
insert 0 1715 A
insert 0 1716 A
insert 0 1717 A
insert 0 1718 A
insert 0 1719 A
insert 0 1720 A
insert 0 1721 A
insert 0 1722 A
insert 0 1723 A
insert 0 1724 A
insert 0 1725 A
insert 0 1726 A
insert 0 1727 A
insert 0 1728 A
insert 0 1729 A
insert 0 1730 A
insert 0 1731 A
insert 0 1732 A
insert 0 1733 A
insert 0 1734 A
insert 0 1735 A
insert 0 1736 A
insert 0 1737 A
insert 0 1738 A
insert 0 1739 A
insert 0 1740 A
insert 0 1741 A
insert 0 1742 A
insert 0 1743 A
insert 0 1744 A
insert 0 1745 A
insert 0 1746 A
insert 0 1747 A
insert 0 1748 A
insert 0 1749 A
insert 0 1750 A
insert 0 1751 A
insert 0 1752 A
insert 0 1753 A
insert 0 1754 A
insert 0 1755 A
insert 0 1756 A
insert 0 1757 A
insert 0 1758 A
insert 0 1759 A
insert 0 1760 A
insert 0 1761 A
insert 0 1762 A
insert 0 1763 A
insert 0 1764 A
insert 0 1765 A
insert 0 1766 A
insert 0 1767 A
insert 0 1768 A
insert 0 1769 A
insert 0 1770 A
insert 0 1771 A
insert 0 1772 A
insert 0 1773 A
insert 0 1774 A
insert 0 1775 A
insert 0 1776 A
insert 0 1777 A
insert 0 1778 A
insert 0 1779 A
insert 0 1780 A
insert 0 1781 A
insert 0 1782 A
insert 0 1783 A
insert 0 1784 A
insert 0 1785 A
insert 0 1786 A
insert 0 1787 A
insert 0 1788 A
insert 0 1789 A
insert 0 1790 A
insert 0 1791 A
insert 0 1792 A
insert 0 1793 A
insert 0 1794 A
insert 0 1795 A
insert 0 1796 A
insert 0 1797 A
insert 0 1798 A
insert 0 1799 A
insert 0 1800 A
insert 0 1801 A
insert 0 1802 A
insert 0 1803 A
insert 0 1804 A
insert 0 1805 A
insert 0 1806 A
insert 0 1807 A
insert 0 1808 A
insert 0 1809 A
insert 0 1810 A
insert 0 1811 A
insert 0 1812 A
insert 0 1813 A
insert 0 1814 A
insert 0 1815 A
insert 0 1816 A
insert 0 1817 A
insert 0 1818 A
insert 0 1819 A
insert 0 1820 A
insert 0 1821 A
insert 0 1822 A
insert 0 1823 A
insert 0 1824 A
insert 0 1825 A
insert 0 1826 A
insert 0 1827 A
insert 0 1828 A
insert 0 1829 A
insert 0 1830 A
insert 0 1831 A
insert 0 1832 A
insert 0 1833 A
insert 0 1834 A
insert 0 1835 A
insert 0 1836 A
insert 0 1837 A
insert 0 1838 A
insert 0 1839 A
insert 0 1840 A
insert 0 1841 A
insert 0 1842 A
insert 0 1843 A
insert 0 1844 A
insert 0 1845 A
insert 0 1846 A
insert 0 1847 A
insert 0 1848 A
insert 0 1849 A
insert 0 1850 A
insert 0 1851 A
insert 0 1852 A
insert 0 1853 A
insert 0 1854 A
insert 0 1855 A
insert 0 1856 A
insert 0 1857 A
insert 0 1858 A
insert 0 1859 A
insert 0 1860 A
insert 0 1861 A
insert 0 1862 A
insert 0 1863 A
insert 0 1864 A
insert 0 1865 A
insert 0 1866 A
insert 0 1867 A
insert 0 1868 A
insert 0 1869 A
insert 0 1870 A
insert 0 1871 A
insert 0 1872 A
insert 0 1873 A
insert 0 1874 A
insert 0 1875 A
insert 0 1876 A
insert 0 1877 A
insert 0 1878 A
insert 0 1879 A
insert 0 1880 A
insert 0 1881 A
insert 0 1882 A
insert 0 1883 A
insert 0 1884 A
insert 0 1885 A
insert 0 1886 A
insert 0 1887 A
insert 0 1888 A
insert 0 1889 A
insert 0 1890 A
insert 0 1891 A
insert 0 1892 A
insert 0 1893 A
insert 0 1894 A
insert 0 1895 A
insert 0 1896 A
insert 0 1897 A
insert 0 1898 A
insert 0 1899 A
insert 0 1900 A
insert 0 1901 A
insert 0 1902 A
insert 0 1903 A
insert 0 1904 A
insert 0 1905 A
insert 0 1906 A
insert 0 1907 A
insert 0 1908 A
insert 0 1909 A
insert 0 1910 A
insert 0 1911 A
insert 0 1912 A
insert 0 1913 A
insert 0 1914 A
insert 0 1915 A
insert 0 1916 A
insert 0 1917 A
insert 0 1918 A
insert 0 1919 A
insert 0 1920 A
insert 0 1921 A
insert 0 1922 A
insert 0 1923 A
insert 0 1924 A
insert 0 1925 A
insert 0 1926 A
insert 0 1927 A
insert 0 1928 A
insert 0 1929 A
insert 0 1930 A
insert 0 1931 A
insert 0 1932 A
insert 0 1933 A
insert 0 1934 A
insert 0 1935 A
insert 0 1936 A
insert 0 1937 A
insert 0 1938 A
insert 0 1939 A
insert 0 1940 A
insert 0 1941 A
insert 0 1942 A
insert 0 1943 A
insert 0 1944 A
insert 0 1945 A
insert 0 1946 A
insert 0 1947 A
insert 0 1948 A
insert 0 1949 A
insert 0 1950 A
insert 0 1951 A
insert 0 1952 A
insert 0 1953 A
insert 0 1954 A
insert 0 1955 A
insert 0 1956 A
insert 0 1957 A
insert 0 1958 A
insert 0 1959 A
insert 0 1960 A
insert 0 1961 A
insert 0 1962 A
insert 0 1963 A
insert 0 1964 A
insert 0 1965 A
insert 0 1966 A
insert 0 1967 A
insert 0 1968 A
insert 0 1969 A
insert 0 1970 A
insert 0 1971 A
insert 0 1972 A
insert 0 1973 A
insert 0 1974 A
insert 0 1975 A
insert 0 1976 A
insert 0 1977 A
insert 0 1978 A
insert 0 1979 A
insert 0 1980 A
insert 0 1981 A
insert 0 1982 A
insert 0 1983 A
insert 0 1984 A
insert 0 1985 A
insert 0 1986 A
insert 0 1987 A
insert 0 1988 A
insert 0 1989 A
insert 0 1990 A
insert 0 1991 A
insert 0 1992 A
insert 0 1993 A
insert 0 1994 A
insert 0 1995 A
insert 0 1996 A
insert 0 1997 A
insert 0 1998 A
insert 0 1999 A
insert 0 2000 A
insert 0 2001 A
insert 0 2002 A
insert 0 2003 A
insert 0 2004 A
insert 0 2005 A
insert 0 2006 A
insert 0 2007 A
insert 0 2008 A
insert 0 2009 A
insert 0 2010 A
insert 0 2011 A
insert 0 2012 A
insert 0 2013 A
insert 0 2014 A
insert 0 2015 A
insert 0 2016 A
insert 0 2017 A
insert 0 2018 A
insert 0 2019 A
insert 0 2020 A
insert 0 2021 A
insert 0 2022 A
insert 0 2023 A
insert 0 2024 A
insert 0 2025 A
insert 0 2026 A
insert 0 2027 A
insert 0 2028 A
insert 0 2029 A
insert 0 2030 A
insert 0 2031 A
insert 0 2032 A
insert 0 2033 A
insert 0 2034 A
insert 0 2035 A
insert 0 2036 A
insert 0 2037 A
insert 0 2038 A
insert 0 2039 A
insert 0 2040 A
insert 0 2041 A
insert 0 2042 A
insert 0 2043 A
insert 0 2044 A
insert 0 2045 A
insert 0 2046 A
insert 0 2047 A
insert 0 2048 A
insert 0 2049 A
insert 0 2050 A
insert 0 2051 A
insert 0 2052 A
insert 0 2053 A
insert 0 2054 A
insert 0 2055 A
insert 0 2056 A
insert 0 2057 A
insert 0 2058 A
insert 0 2059 A
insert 0 2060 A
insert 0 2061 A
insert 0 2062 A
insert 0 2063 A
insert 0 2064 A
insert 0 2065 A
insert 0 2066 A
insert 0 2067 A
insert 0 2068 A
insert 0 2069 A
insert 0 2070 A
insert 0 2071 A
insert 0 2072 A
insert 0 2073 A
insert 0 2074 A
insert 0 2075 A
insert 0 2076 A
insert 0 2077 A
insert 0 2078 A
insert 0 2079 A
insert 0 2080 A
insert 0 2081 A
insert 0 2082 A
insert 0 2083 A
insert 0 2084 A
insert 0 2085 A
insert 0 2086 A
insert 0 2087 A
insert 0 2088 A
insert 0 2089 A
insert 0 2090 A
insert 0 2091 A
insert 0 2092 A
insert 0 2093 A
insert 0 2094 A
insert 0 2095 A
insert 0 2096 A
insert 0 2097 A
insert 0 2098 A
insert 0 2099 A
insert 0 2100 A
insert 0 2101 A
insert 0 2102 A
insert 0 2103 A
insert 0 2104 A
insert 0 2105 A
insert 0 2106 A
insert 0 2107 A
insert 0 2108 A
insert 0 2109 A
insert 0 2110 A
insert 0 2111 A
insert 0 2112 A
insert 0 2113 A
insert 0 2114 A
insert 0 2115 A
insert 0 2116 A
insert 0 2117 A
insert 0 2118 A
insert 0 2119 A
insert 0 2120 A
insert 0 2121 A
insert 0 2122 A
insert 0 2123 A
insert 0 2124 A
insert 0 2125 A
insert 0 2126 A
insert 0 2127 A
insert 0 2128 A
insert 0 2129 A
insert 0 2130 A
insert 0 2131 A
insert 0 2132 A
insert 0 2133 A
insert 0 2134 A
insert 0 2135 A
insert 0 2136 A
insert 0 2137 A
insert 0 2138 A
insert 0 2139 A
insert 0 2140 A
insert 0 2141 A
insert 0 2142 A
insert 0 2143 A
insert 0 2144 A
insert 0 2145 A
insert 0 2146 A
insert 0 2147 A
insert 0 2148 A
insert 0 2149 A
insert 0 2150 A
insert 0 2151 A
insert 0 2152 A
insert 0 2153 A
insert 0 2154 A
insert 0 2155 A
insert 0 2156 A
insert 0 2157 A
insert 0 2158 A
insert 0 2159 A
insert 0 2160 A
insert 0 2161 A
insert 0 2162 A
insert 0 2163 A
insert 0 2164 A
insert 0 2165 A
insert 0 2166 A
insert 0 2167 A
insert 0 2168 A
insert 0 2169 A
insert 0 2170 A
insert 0 2171 A
insert 0 2172 A
insert 0 2173 A
insert 0 2174 A
insert 0 2175 A
insert 0 2176 A
insert 0 2177 A
insert 0 2178 A
insert 0 2179 A
insert 0 2180 A
insert 0 2181 A
insert 0 2182 A
insert 0 2183 A
insert 0 2184 A
insert 0 2185 A
insert 0 2186 A
insert 0 2187 A
insert 0 2188 A
insert 0 2189 A
insert 0 2190 A
insert 0 2191 A
insert 0 2192 A
insert 0 2193 A
insert 0 2194 A
insert 0 2195 A
insert 0 2196 A
insert 0 2197 A
insert 0 2198 A
insert 0 2199 A
insert 0 2200 A
insert 0 2201 A
insert 0 2202 A
insert 0 2203 A
insert 0 2204 A
insert 0 2205 A
insert 0 2206 A
insert 0 2207 A
insert 0 2208 A
insert 0 2209 A
insert 0 2210 A
insert 0 2211 A
insert 0 2212 A
insert 0 2213 A
insert 0 2214 A
insert 0 2215 A
insert 0 2216 A
insert 0 2217 A
insert 0 2218 A
insert 0 2219 A
insert 0 2220 A
insert 0 2221 A
insert 0 2222 A
insert 0 2223 A
insert 0 2224 A
insert 0 2225 A
insert 0 2226 A
insert 0 2227 A
insert 0 2228 A
insert 0 2229 A
insert 0 2230 A
insert 0 2231 A
insert 0 2232 A
insert 0 2233 A
insert 0 2234 A
insert 0 2235 A
insert 0 2236 A
insert 0 2237 A
insert 0 2238 A
insert 0 2239 A
insert 0 2240 A
insert 0 2241 A
insert 0 2242 A
insert 0 2243 A
insert 0 2244 A
insert 0 2245 A
insert 0 2246 A
insert 0 2247 A
insert 0 2248 A
insert 0 2249 A
insert 0 2250 A
insert 0 2251 A
insert 0 2252 A
insert 0 2253 A
insert 0 2254 A
insert 0 2255 A
insert 0 2256 A
insert 0 2257 A
insert 0 2258 A
insert 0 2259 A
insert 0 2260 A
insert 0 2261 A
insert 0 2262 A
insert 0 2263 A
insert 0 2264 A
insert 0 2265 A
insert 0 2266 A
insert 0 2267 A
insert 0 2268 A
insert 0 2269 A
insert 0 2270 A
insert 0 2271 A
insert 0 2272 A
insert 0 2273 A
insert 0 2274 A
insert 0 2275 A
insert 0 2276 A
insert 0 2277 A
insert 0 2278 A
insert 0 2279 A
insert 0 2280 A
insert 0 2281 A
insert 0 2282 A
insert 0 2283 A
insert 0 2284 A
insert 0 2285 A
insert 0 2286 A
insert 0 2287 A
insert 0 2288 A
insert 0 2289 A
insert 0 2290 A
insert 0 2291 A
insert 0 2292 A
insert 0 2293 A
insert 0 2294 A
insert 0 2295 A
insert 0 2296 A
insert 0 2297 A
insert 0 2298 A
insert 0 2299 A
insert 0 2300 A
insert 0 2301 A
insert 0 2302 A
insert 0 2303 A
insert 0 2304 A
insert 0 2305 A
insert 0 2306 A
insert 0 2307 A
insert 0 2308 A
insert 0 2309 A
insert 0 2310 A
insert 0 2311 A
insert 0 2312 A
insert 0 2313 A
insert 0 2314 A
insert 0 2315 A
insert 0 2316 A
insert 0 2317 A
insert 0 2318 A
insert 0 2319 A
insert 0 2320 A
insert 0 2321 A
insert 0 2322 A
insert 0 2323 A
insert 0 2324 A
insert 0 2325 A
insert 0 2326 A
insert 0 2327 A
insert 0 2328 A
insert 0 2329 A
insert 0 2330 A
insert 0 2331 A
insert 0 2332 A
insert 0 2333 A
insert 0 2334 A
insert 0 2335 A
insert 0 2336 A
insert 0 2337 A
insert 0 2338 A
insert 0 2339 A
insert 0 2340 A
insert 0 2341 A
insert 0 2342 A
insert 0 2343 A
insert 0 2344 A
insert 0 2345 A
insert 0 2346 A
insert 0 2347 A
insert 0 2348 A
insert 0 2349 A
insert 0 2350 A
insert 0 2351 A
insert 0 2352 A
insert 0 2353 A
insert 0 2354 A
insert 0 2355 A
insert 0 2356 A
insert 0 2357 A
insert 0 2358 A
insert 0 2359 A
insert 0 2360 A
insert 0 2361 A
insert 0 2362 A
insert 0 2363 A
insert 0 2364 A
insert 0 2365 A
insert 0 2366 A
insert 0 2367 A
insert 0 2368 A
insert 0 2369 A
insert 0 2370 A
insert 0 2371 A
insert 0 2372 A
insert 0 2373 A
insert 0 2374 A
insert 0 2375 A
insert 0 2376 A
insert 0 2377 A
insert 0 2378 A
insert 0 2379 A
insert 0 2380 A
insert 0 2381 A
insert 0 2382 A
insert 0 2383 A
insert 0 2384 A
insert 0 2385 A
insert 0 2386 A
insert 0 2387 A
insert 0 2388 A
insert 0 2389 A
insert 0 2390 A
insert 0 2391 A
insert 0 2392 A
insert 0 2393 A
insert 0 2394 A
insert 0 2395 A
insert 0 2396 A
insert 0 2397 A
insert 0 2398 A
insert 0 2399 A
insert 0 2400 A
insert 0 2401 A
insert 0 2402 A
insert 0 2403 A
insert 0 2404 A
insert 0 2405 A
insert 0 2406 A
insert 0 2407 A
insert 0 2408 A
insert 0 2409 A
insert 0 2410 A
insert 0 2411 A
insert 0 2412 A
insert 0 2413 A
insert 0 2414 A
insert 0 2415 A
insert 0 2416 A
insert 0 2417 A
insert 0 2418 A
insert 0 2419 A
insert 0 2420 A
insert 0 2421 A
insert 0 2422 A
insert 0 2423 A
insert 0 2424 A
insert 0 2425 A
insert 0 2426 A
insert 0 2427 A
insert 0 2428 A
insert 0 2429 A
insert 0 2430 A
insert 0 2431 A
insert 0 2432 A
insert 0 2433 A
insert 0 2434 A
insert 0 2435 A
insert 0 2436 A
insert 0 2437 A
insert 0 2438 A
insert 0 2439 A
insert 0 2440 A
insert 0 2441 A
insert 0 2442 A
insert 0 2443 A
insert 0 2444 A
insert 0 2445 A
insert 0 2446 A
insert 0 2447 A
insert 0 2448 A
insert 0 2449 A
insert 0 2450 A
insert 0 2451 A
insert 0 2452 A
insert 0 2453 A
insert 0 2454 A
insert 0 2455 A
insert 0 2456 A
insert 0 2457 A
insert 0 2458 A
insert 0 2459 A
insert 0 2460 A
insert 0 2461 A
insert 0 2462 A
insert 0 2463 A
insert 0 2464 A
insert 0 2465 A
insert 0 2466 A
insert 0 2467 A
insert 0 2468 A
insert 0 2469 A
insert 0 2470 A
insert 0 2471 A
insert 0 2472 A
insert 0 2473 A
insert 0 2474 A
insert 0 2475 A
insert 0 2476 A
insert 0 2477 A
insert 0 2478 A
insert 0 2479 A
insert 0 2480 A
insert 0 2481 A
insert 0 2482 A
insert 0 2483 A
insert 0 2484 A
insert 0 2485 A
insert 0 2486 A
insert 0 2487 A
insert 0 2488 A
insert 0 2489 A
insert 0 2490 A
insert 0 2491 A
insert 0 2492 A
insert 0 2493 A
insert 0 2494 A
insert 0 2495 A
insert 0 2496 A
insert 0 2497 A
insert 0 2498 A
insert 0 2499 A
insert 0 2500 A
insert 0 2501 A
insert 0 2502 A
insert 0 2503 A
insert 0 2504 A
insert 0 2505 A
insert 0 2506 A
insert 0 2507 A
insert 0 2508 A
insert 0 2509 A
insert 0 2510 A
insert 0 2511 A
insert 0 2512 A
insert 0 2513 A
insert 0 2514 A
insert 0 2515 A
insert 0 2516 A
insert 0 2517 A
insert 0 2518 A
insert 0 2519 A
insert 0 2520 A
insert 0 2521 A
insert 0 2522 A
insert 0 2523 A
insert 0 2524 A
insert 0 2525 A
insert 0 2526 A
insert 0 2527 A
insert 0 2528 A
insert 0 2529 A
insert 0 2530 A
insert 0 2531 A
insert 0 2532 A
insert 0 2533 A
insert 0 2534 A
insert 0 2535 A
insert 0 2536 A
insert 0 2537 A
insert 0 2538 A
insert 0 2539 A
insert 0 2540 A
insert 0 2541 A
insert 0 2542 A
insert 0 2543 A
insert 0 2544 A
insert 0 2545 A
insert 0 2546 A
insert 0 2547 A
insert 0 2548 A
insert 0 2549 A
insert 0 2550 A
insert 0 2551 A
insert 0 2552 A
insert 0 2553 A
insert 0 2554 A
insert 0 2555 A
insert 0 2556 A
insert 0 2557 A
insert 0 2558 A
insert 0 2559 A
insert 0 2560 A
insert 0 2561 A
insert 0 2562 A
insert 0 2563 A
insert 0 2564 A
insert 0 2565 A
insert 0 2566 A
insert 0 2567 A
insert 0 2568 A
insert 0 2569 A
insert 0 2570 A
insert 0 2571 A
insert 0 2572 A
insert 0 2573 A
insert 0 2574 A
insert 0 2575 A
insert 0 2576 A
insert 0 2577 A
insert 0 2578 A
insert 0 2579 A
insert 0 2580 A
insert 0 2581 A
insert 0 2582 A
insert 0 2583 A
insert 0 2584 A
insert 0 2585 A
insert 0 2586 A
insert 0 2587 A
insert 0 2588 A
insert 0 2589 A
insert 0 2590 A
insert 0 2591 A
insert 0 2592 A
insert 0 2593 A
insert 0 2594 A
insert 0 2595 A
insert 0 2596 A
insert 0 2597 A
insert 0 2598 A
insert 0 2599 A
insert 0 2600 A
insert 0 2601 A
insert 0 2602 A
insert 0 2603 A
insert 0 2604 A
insert 0 2605 A
insert 0 2606 A
insert 0 2607 A
insert 0 2608 A
insert 0 2609 A
insert 0 2610 A
insert 0 2611 A
insert 0 2612 A
insert 0 2613 A
insert 0 2614 A
insert 0 2615 A
insert 0 2616 A
insert 0 2617 A
insert 0 2618 A
insert 0 2619 A
insert 0 2620 A
insert 0 2621 A
insert 0 2622 A
insert 0 2623 A
insert 0 2624 A
insert 0 2625 A
insert 0 2626 A
insert 0 2627 A
insert 0 2628 A
insert 0 2629 A
insert 0 2630 A
insert 0 2631 A
insert 0 2632 A
insert 0 2633 A
insert 0 2634 A
insert 0 2635 A
insert 0 2636 A
insert 0 2637 A
insert 0 2638 A
insert 0 2639 A
insert 0 2640 A
insert 0 2641 A
insert 0 2642 A
insert 0 2643 A
insert 0 2644 A
insert 0 2645 A
insert 0 2646 A
insert 0 2647 A
insert 0 2648 A
insert 0 2649 A
insert 0 2650 A
insert 0 2651 A
insert 0 2652 A
insert 0 2653 A
insert 0 2654 A
insert 0 2655 A
insert 0 2656 A
insert 0 2657 A
insert 0 2658 A
insert 0 2659 A
insert 0 2660 A
insert 0 2661 A
insert 0 2662 A
insert 0 2663 A
insert 0 2664 A
insert 0 2665 A
insert 0 2666 A
insert 0 2667 A
insert 0 2668 A
insert 0 2669 A
insert 0 2670 A
insert 0 2671 A
insert 0 2672 A
insert 0 2673 A
insert 0 2674 A
insert 0 2675 A
insert 0 2676 A
insert 0 2677 A
insert 0 2678 A
insert 0 2679 A
insert 0 2680 A
insert 0 2681 A
insert 0 2682 A
insert 0 2683 A
insert 0 2684 A
insert 0 2685 A
insert 0 2686 A
insert 0 2687 A
insert 0 2688 A
insert 0 2689 A
insert 0 2690 A
insert 0 2691 A
insert 0 2692 A
insert 0 2693 A
insert 0 2694 A
insert 0 2695 A
insert 0 2696 A
insert 0 2697 A
insert 0 2698 A
insert 0 2699 A
insert 0 2700 A
insert 0 2701 A
insert 0 2702 A
insert 0 2703 A
insert 0 2704 A
insert 0 2705 A
insert 0 2706 A
insert 0 2707 A
insert 0 2708 A
insert 0 2709 A
insert 0 2710 A
insert 0 2711 A
insert 0 2712 A
insert 0 2713 A
insert 0 2714 A
insert 0 2715 A
insert 0 2716 A
insert 0 2717 A
insert 0 2718 A
insert 0 2719 A
insert 0 2720 A
insert 0 2721 A
insert 0 2722 A
insert 0 2723 A
insert 0 2724 A
insert 0 2725 A
insert 0 2726 A
insert 0 2727 A
insert 0 2728 A
insert 0 2729 A
insert 0 2730 A
insert 0 2731 A
insert 0 2732 A
insert 0 2733 A
insert 0 2734 A
insert 0 2735 A
insert 0 2736 A
insert 0 2737 A
insert 0 2738 A
insert 0 2739 A
insert 0 2740 A
insert 0 2741 A
insert 0 2742 A
insert 0 2743 A
insert 0 2744 A
insert 0 2745 A
insert 0 2746 A
insert 0 2747 A
insert 0 2748 A
insert 0 2749 A
insert 0 2750 A
insert 0 2751 A
insert 0 2752 A
insert 0 2753 A
insert 0 2754 A
insert 0 2755 A
insert 0 2756 A
insert 0 2757 A
insert 0 2758 A
insert 0 2759 A
insert 0 2760 A
insert 0 2761 A
insert 0 2762 A
insert 0 2763 A
insert 0 2764 A
insert 0 2765 A
insert 0 2766 A
insert 0 2767 A
insert 0 2768 A
insert 0 2769 A
insert 0 2770 A
insert 0 2771 A
insert 0 2772 A
insert 0 2773 A
insert 0 2774 A
insert 0 2775 A
insert 0 2776 A
insert 0 2777 A
insert 0 2778 A
insert 0 2779 A
insert 0 2780 A
insert 0 2781 A
insert 0 2782 A
insert 0 2783 A
insert 0 2784 A
insert 0 2785 A
insert 0 2786 A
insert 0 2787 A
insert 0 2788 A
insert 0 2789 A
insert 0 2790 A
insert 0 2791 A
insert 0 2792 A
insert 0 2793 A
insert 0 2794 A
insert 0 2795 A
insert 0 2796 A
insert 0 2797 A
insert 0 2798 A
insert 0 2799 A
insert 0 2800 A
insert 0 2801 A
insert 0 2802 A
insert 0 2803 A
insert 0 2804 A
insert 0 2805 A
insert 0 2806 A
insert 0 2807 A
insert 0 2808 A
insert 0 2809 A
insert 0 2810 A
insert 0 2811 A
insert 0 2812 A
insert 0 2813 A
insert 0 2814 A
insert 0 2815 A
insert 0 2816 A
insert 0 2817 A
insert 0 2818 A
insert 0 2819 A
insert 0 2820 A
insert 0 2821 A
insert 0 2822 A
insert 0 2823 A
insert 0 2824 A
insert 0 2825 A
insert 0 2826 A
insert 0 2827 A
insert 0 2828 A
insert 0 2829 A
insert 0 2830 A
insert 0 2831 A
insert 0 2832 A
insert 0 2833 A
insert 0 2834 A
insert 0 2835 A
insert 0 2836 A
insert 0 2837 A
insert 0 2838 A
insert 0 2839 A
insert 0 2840 A
insert 0 2841 A
insert 0 2842 A
insert 0 2843 A
insert 0 2844 A
insert 0 2845 A
insert 0 2846 A
insert 0 2847 A
insert 0 2848 A
insert 0 2849 A
insert 0 2850 A
insert 0 2851 A
insert 0 2852 A
insert 0 2853 A
insert 0 2854 A
insert 0 2855 A
insert 0 2856 A
insert 0 2857 A
insert 0 2858 A
insert 0 2859 A
insert 0 2860 A
insert 0 2861 A
insert 0 2862 A
insert 0 2863 A
insert 0 2864 A
insert 0 2865 A
insert 0 2866 A
insert 0 2867 A
insert 0 2868 A
insert 0 2869 A
insert 0 2870 A
insert 0 2871 A
insert 0 2872 A
insert 0 2873 A
insert 0 2874 A
insert 0 2875 A
insert 0 2876 A
insert 0 2877 A
insert 0 2878 A
insert 0 2879 A
insert 0 2880 A
insert 0 2881 A
insert 0 2882 A
insert 0 2883 A
insert 0 2884 A
insert 0 2885 A
insert 0 2886 A
insert 0 2887 A
insert 0 2888 A
insert 0 2889 A
insert 0 2890 A
insert 0 2891 A
insert 0 2892 A
insert 0 2893 A
insert 0 2894 A
insert 0 2895 A
insert 0 2896 A
insert 0 2897 A
insert 0 2898 A
insert 0 2899 A
insert 0 2900 A
insert 0 2901 A
insert 0 2902 A
insert 0 2903 A
insert 0 2904 A
insert 0 2905 A
insert 0 2906 A
insert 0 2907 A
insert 0 2908 A
insert 0 2909 A
insert 0 2910 A
insert 0 2911 A
insert 0 2912 A
insert 0 2913 A
insert 0 2914 A
insert 0 2915 A
insert 0 2916 A
insert 0 2917 A
insert 0 2918 A
insert 0 2919 A
insert 0 2920 A
insert 0 2921 A
insert 0 2922 A
insert 0 2923 A
insert 0 2924 A
insert 0 2925 A
insert 0 2926 A
insert 0 2927 A
insert 0 2928 A
insert 0 2929 A
insert 0 2930 A
insert 0 2931 A
insert 0 2932 A
insert 0 2933 A
insert 0 2934 A
insert 0 2935 A
insert 0 2936 A
insert 0 2937 A
insert 0 2938 A
insert 0 2939 A
insert 0 2940 A
insert 0 2941 A
insert 0 2942 A
insert 0 2943 A
insert 0 2944 A
insert 0 2945 A
insert 0 2946 A
insert 0 2947 A
insert 0 2948 A
insert 0 2949 A
insert 0 2950 A
insert 0 2951 A
insert 0 2952 A
insert 0 2953 A
insert 0 2954 A
insert 0 2955 A
insert 0 2956 A
insert 0 2957 A
insert 0 2958 A
insert 0 2959 A
insert 0 2960 A
insert 0 2961 A
insert 0 2962 A
insert 0 2963 A
insert 0 2964 A
insert 0 2965 A
insert 0 2966 A
insert 0 2967 A
insert 0 2968 A
insert 0 2969 A
insert 0 2970 A
insert 0 2971 A
insert 0 2972 A
insert 0 2973 A
insert 0 2974 A
insert 0 2975 A
insert 0 2976 A
insert 0 2977 A
insert 0 2978 A
insert 0 2979 A
insert 0 2980 A
insert 0 2981 A
insert 0 2982 A
insert 0 2983 A
insert 0 2984 A
insert 0 2985 A
insert 0 2986 A
insert 0 2987 A
insert 0 2988 A
insert 0 2989 A
insert 0 2990 A
insert 0 2991 A
insert 0 2992 A
insert 0 2993 A
insert 0 2994 A
insert 0 2995 A
insert 0 2996 A
insert 0 2997 A
insert 0 2998 A
insert 0 2999 A
insert 0 3000 A
insert 0 3001 A
insert 0 3002 A
insert 0 3003 A
insert 0 3004 A
insert 0 3005 A
insert 0 3006 A
insert 0 3007 A
insert 0 3008 A
insert 0 3009 A
insert 0 3010 A
insert 0 3011 A
insert 0 3012 A
insert 0 3013 A
insert 0 3014 A
insert 0 3015 A
insert 0 3016 A
insert 0 3017 A
insert 0 3018 A
insert 0 3019 A
insert 0 3020 A
insert 0 3021 A
insert 0 3022 A
insert 0 3023 A
insert 0 3024 A
insert 0 3025 A
insert 0 3026 A
insert 0 3027 A
insert 0 3028 A
insert 0 3029 A
insert 0 3030 A
insert 0 3031 A
insert 0 3032 A
insert 0 3033 A
insert 0 3034 A
insert 0 3035 A
insert 0 3036 A
insert 0 3037 A
insert 0 3038 A
insert 0 3039 A
insert 0 3040 A
insert 0 3041 A
insert 0 3042 A
insert 0 3043 A
insert 0 3044 A
insert 0 3045 A
insert 0 3046 A
insert 0 3047 A
insert 0 3048 A
insert 0 3049 A
insert 0 3050 A
insert 0 3051 A
insert 0 3052 A
insert 0 3053 A
insert 0 3054 A
insert 0 3055 A
insert 0 3056 A
insert 0 3057 A
insert 0 3058 A
insert 0 3059 A
insert 0 3060 A
insert 0 3061 A
insert 0 3062 A
insert 0 3063 A
insert 0 3064 A
insert 0 3065 A
insert 0 3066 A
insert 0 3067 A
insert 0 3068 A
insert 0 3069 A
insert 0 3070 A
insert 0 3071 A
insert 0 3072 A
insert 0 3073 A
insert 0 3074 A
insert 0 3075 A
insert 0 3076 A
insert 0 3077 A
insert 0 3078 A
insert 0 3079 A
insert 0 3080 A
insert 0 3081 A
insert 0 3082 A
insert 0 3083 A
insert 0 3084 A
insert 0 3085 A
insert 0 3086 A
insert 0 3087 A
insert 0 3088 A
insert 0 3089 A
insert 0 3090 A
insert 0 3091 A
insert 0 3092 A
insert 0 3093 A
insert 0 3094 A
insert 0 3095 A
insert 0 3096 A
insert 0 3097 A
insert 0 3098 A
insert 0 3099 A
insert 0 3100 A
insert 0 3101 A
insert 0 3102 A
insert 0 3103 A
insert 0 3104 A
insert 0 3105 A
insert 0 3106 A
insert 0 3107 A
insert 0 3108 A
insert 0 3109 A
insert 0 3110 A
insert 0 3111 A
insert 0 3112 A
insert 0 3113 A
insert 0 3114 A
insert 0 3115 A
insert 0 3116 A
insert 0 3117 A
insert 0 3118 A
insert 0 3119 A
insert 0 3120 A
insert 0 3121 A
insert 0 3122 A
insert 0 3123 A
insert 0 3124 A
insert 0 3125 A
insert 0 3126 A
insert 0 3127 A
insert 0 3128 A
insert 0 3129 A
insert 0 3130 A
insert 0 3131 A
insert 0 3132 A
insert 0 3133 A
insert 0 3134 A
insert 0 3135 A
insert 0 3136 A
insert 0 3137 A
insert 0 3138 A
insert 0 3139 A
insert 0 3140 A
insert 0 3141 A
insert 0 3142 A
insert 0 3143 A
insert 0 3144 A
insert 0 3145 A
insert 0 3146 A
insert 0 3147 A
insert 0 3148 A
insert 0 3149 A
insert 0 3150 A
insert 0 3151 A
insert 0 3152 A
insert 0 3153 A
insert 0 3154 A
insert 0 3155 A
insert 0 3156 A
insert 0 3157 A
insert 0 3158 A
insert 0 3159 A
insert 0 3160 A
insert 0 3161 A
insert 0 3162 A
insert 0 3163 A
insert 0 3164 A
insert 0 3165 A
insert 0 3166 A
insert 0 3167 A
insert 0 3168 A
insert 0 3169 A
insert 0 3170 A
insert 0 3171 A
insert 0 3172 A
insert 0 3173 A
insert 0 3174 A
insert 0 3175 A
insert 0 3176 A
insert 0 3177 A
insert 0 3178 A
insert 0 3179 A
insert 0 3180 A
insert 0 3181 A
insert 0 3182 A
insert 0 3183 A
insert 0 3184 A
insert 0 3185 A
insert 0 3186 A
insert 0 3187 A
insert 0 3188 A
insert 0 3189 A
insert 0 3190 A
insert 0 3191 A
insert 0 3192 A
insert 0 3193 A
insert 0 3194 A
insert 0 3195 A
insert 0 3196 A
insert 0 3197 A
insert 0 3198 A
insert 0 3199 A
insert 0 3200 A
insert 0 3201 A
insert 0 3202 A
insert 0 3203 A
insert 0 3204 A
insert 0 3205 A
insert 0 3206 A
insert 0 3207 A
insert 0 3208 A
insert 0 3209 A
insert 0 3210 A
insert 0 3211 A
insert 0 3212 A
insert 0 3213 A
insert 0 3214 A
insert 0 3215 A
insert 0 3216 A
insert 0 3217 A
insert 0 3218 A
insert 0 3219 A
insert 0 3220 A
insert 0 3221 A
insert 0 3222 A
insert 0 3223 A
insert 0 3224 A
insert 0 3225 A
insert 0 3226 A
insert 0 3227 A
insert 0 3228 A
insert 0 3229 A
insert 0 3230 A
insert 0 3231 A
insert 0 3232 A
insert 0 3233 A
insert 0 3234 A
insert 0 3235 A
insert 0 3236 A
insert 0 3237 A
insert 0 3238 A
insert 0 3239 A
insert 0 3240 A
insert 0 3241 A
insert 0 3242 A
insert 0 3243 A
insert 0 3244 A
insert 0 3245 A
insert 0 3246 A
insert 0 3247 A
insert 0 3248 A
insert 0 3249 A
insert 0 3250 A
insert 0 3251 A
insert 0 3252 A
insert 0 3253 A
insert 0 3254 A
insert 0 3255 A
insert 0 3256 A
insert 0 3257 A
insert 0 3258 A
insert 0 3259 A
insert 0 3260 A
insert 0 3261 A
insert 0 3262 A
insert 0 3263 A
insert 0 3264 A
insert 0 3265 A
insert 0 3266 A
insert 0 3267 A
insert 0 3268 A
insert 0 3269 A
insert 0 3270 A
insert 0 3271 A
insert 0 3272 A
insert 0 3273 A
insert 0 3274 A
insert 0 3275 A
insert 0 3276 A
insert 0 3277 A
insert 0 3278 A
insert 0 3279 A
insert 0 3280 A
insert 0 3281 A
insert 0 3282 A
insert 0 3283 A
insert 0 3284 A
insert 0 3285 A
insert 0 3286 A
insert 0 3287 A
insert 0 3288 A
insert 0 3289 A
insert 0 3290 A
insert 0 3291 A
insert 0 3292 A
insert 0 3293 A
insert 0 3294 A
insert 0 3295 A
insert 0 3296 A
insert 0 3297 A
insert 0 3298 A
insert 0 3299 A
insert 0 3300 A
insert 0 3301 A
insert 0 3302 A
insert 0 3303 A
insert 0 3304 A
insert 0 3305 A
insert 0 3306 A
insert 0 3307 A
insert 0 3308 A
insert 0 3309 A
insert 0 3310 A
insert 0 3311 A
insert 0 3312 A
insert 0 3313 A
insert 0 3314 A
insert 0 3315 A
insert 0 3316 A
insert 0 3317 A
insert 0 3318 A
insert 0 3319 A
insert 0 3320 A
insert 0 3321 A
insert 0 3322 A
insert 0 3323 A
insert 0 3324 A
insert 0 3325 A
insert 0 3326 A
insert 0 3327 A
insert 0 3328 A
insert 0 3329 A
insert 0 3330 A
insert 0 3331 A
insert 0 3332 A
insert 0 3333 A
insert 0 3334 A
insert 0 3335 A
insert 0 3336 A
insert 0 3337 A
insert 0 3338 A
insert 0 3339 A
insert 0 3340 A
insert 0 3341 A
insert 0 3342 A
insert 0 3343 A
insert 0 3344 A
insert 0 3345 A
insert 0 3346 A
insert 0 3347 A
insert 0 3348 A
insert 0 3349 A
insert 0 3350 A
insert 0 3351 A
insert 0 3352 A
insert 0 3353 A
insert 0 3354 A
insert 0 3355 A
insert 0 3356 A
insert 0 3357 A
insert 0 3358 A
insert 0 3359 A
insert 0 3360 A
insert 0 3361 A
insert 0 3362 A
insert 0 3363 A
insert 0 3364 A
insert 0 3365 A
insert 0 3366 A
insert 0 3367 A
insert 0 3368 A
insert 0 3369 A
insert 0 3370 A
insert 0 3371 A
insert 0 3372 A
insert 0 3373 A
insert 0 3374 A
insert 0 3375 A
insert 0 3376 A
insert 0 3377 A
insert 0 3378 A
insert 0 3379 A
insert 0 3380 A
insert 0 3381 A
insert 0 3382 A
insert 0 3383 A
insert 0 3384 A
insert 0 3385 A
insert 0 3386 A
insert 0 3387 A
insert 0 3388 A
insert 0 3389 A
insert 0 3390 A
insert 0 3391 A
insert 0 3392 A
insert 0 3393 A
insert 0 3394 A
insert 0 3395 A
insert 0 3396 A
insert 0 3397 A
insert 0 3398 A
insert 0 3399 A
insert 0 3400 A
insert 0 3401 A
insert 0 3402 A
insert 0 3403 A
insert 0 3404 A
insert 0 3405 A
insert 0 3406 A
insert 0 3407 A
insert 0 3408 A
insert 0 3409 A
insert 0 3410 A
insert 0 3411 A
insert 0 3412 A
insert 0 3413 A
insert 0 3414 A
insert 0 3415 A
insert 0 3416 A
insert 0 3417 A
insert 0 3418 A
insert 0 3419 A
insert 0 3420 A
insert 0 3421 A
insert 0 3422 A
insert 0 3423 A
insert 0 3424 A
insert 0 3425 A
insert 0 3426 A
insert 0 3427 A
insert 0 3428 A
insert 0 3429 A
insert 0 3430 A
insert 0 3431 A
insert 0 3432 A
insert 0 3433 A
insert 0 3434 A
insert 0 3435 A
insert 0 3436 A
insert 0 3437 A
insert 0 3438 A
insert 0 3439 A
insert 0 3440 A
insert 0 3441 A
insert 0 3442 A
insert 0 3443 A
insert 0 3444 A
insert 0 3445 A
insert 0 3446 A
insert 0 3447 A
insert 0 3448 A
insert 0 3449 A
insert 0 3450 A
insert 0 3451 A
insert 0 3452 A
insert 0 3453 A
insert 0 3454 A
insert 0 3455 A
insert 0 3456 A
insert 0 3457 A
insert 0 3458 A
insert 0 3459 A
insert 0 3460 A
insert 0 3461 A
insert 0 3462 A
insert 0 3463 A
insert 0 3464 A
insert 0 3465 A
insert 0 3466 A
insert 0 3467 A
insert 0 3468 A
insert 0 3469 A
insert 0 3470 A
insert 0 3471 A
insert 0 3472 A
insert 0 3473 A
insert 0 3474 A
insert 0 3475 A
insert 0 3476 A
insert 0 3477 A
insert 0 3478 A
insert 0 3479 A
insert 0 3480 A
insert 0 3481 A
insert 0 3482 A
insert 0 3483 A
insert 0 3484 A
insert 0 3485 A
insert 0 3486 A
insert 0 3487 A
insert 0 3488 A
insert 0 3489 A
insert 0 3490 A
insert 0 3491 A
insert 0 3492 A
insert 0 3493 A
insert 0 3494 A
insert 0 3495 A
insert 0 3496 A
insert 0 3497 A
insert 0 3498 A
insert 0 3499 A
insert 0 3500 A
insert 0 3501 A
insert 0 3502 A
insert 0 3503 A
insert 0 3504 A
insert 0 3505 A
insert 0 3506 A
insert 0 3507 A
insert 0 3508 A
insert 0 3509 A
insert 0 3510 A
insert 0 3511 A
insert 0 3512 A
insert 0 3513 A
insert 0 3514 A
insert 0 3515 A
insert 0 3516 A
insert 0 3517 A
insert 0 3518 A
insert 0 3519 A
insert 0 3520 A
insert 0 3521 A
insert 0 3522 A
insert 0 3523 A
insert 0 3524 A
insert 0 3525 A
insert 0 3526 A
insert 0 3527 A
insert 0 3528 A
insert 0 3529 A
insert 0 3530 A
insert 0 3531 A
insert 0 3532 A
insert 0 3533 A
insert 0 3534 A
insert 0 3535 A
insert 0 3536 A
insert 0 3537 A
insert 0 3538 A
insert 0 3539 A
insert 0 3540 A
insert 0 3541 A
insert 0 3542 A
insert 0 3543 A
insert 0 3544 A
insert 0 3545 A
insert 0 3546 A
insert 0 3547 A
insert 0 3548 A
insert 0 3549 A
insert 0 3550 A
insert 0 3551 A
insert 0 3552 A
insert 0 3553 A
insert 0 3554 A
insert 0 3555 A
insert 0 3556 A
insert 0 3557 A
insert 0 3558 A
insert 0 3559 A
insert 0 3560 A
insert 0 3561 A
insert 0 3562 A
insert 0 3563 A
insert 0 3564 A
insert 0 3565 A
insert 0 3566 A
insert 0 3567 A
insert 0 3568 A
insert 0 3569 A
insert 0 3570 A
insert 0 3571 A
insert 0 3572 A
insert 0 3573 A
insert 0 3574 A
insert 0 3575 A
insert 0 3576 A
insert 0 3577 A
insert 0 3578 A
insert 0 3579 A
insert 0 3580 A
insert 0 3581 A
insert 0 3582 A
insert 0 3583 A
insert 0 3584 A
insert 0 3585 A
insert 0 3586 A
insert 0 3587 A
insert 0 3588 A
insert 0 3589 A
insert 0 3590 A
insert 0 3591 A
insert 0 3592 A
insert 0 3593 A
insert 0 3594 A
insert 0 3595 A
insert 0 3596 A
insert 0 3597 A
insert 0 3598 A
insert 0 3599 A
insert 0 3600 A
insert 0 3601 A
insert 0 3602 A
insert 0 3603 A
insert 0 3604 A
insert 0 3605 A
insert 0 3606 A
insert 0 3607 A
insert 0 3608 A
insert 0 3609 A
insert 0 3610 A
insert 0 3611 A
insert 0 3612 A
insert 0 3613 A
insert 0 3614 A
insert 0 3615 A
insert 0 3616 A
insert 0 3617 A
insert 0 3618 A
insert 0 3619 A
insert 0 3620 A
insert 0 3621 A
insert 0 3622 A
insert 0 3623 A
insert 0 3624 A
insert 0 3625 A
insert 0 3626 A
insert 0 3627 A
insert 0 3628 A
insert 0 3629 A
insert 0 3630 A
insert 0 3631 A
insert 0 3632 A
insert 0 3633 A
insert 0 3634 A
insert 0 3635 A
insert 0 3636 A
insert 0 3637 A
insert 0 3638 A
insert 0 3639 A
insert 0 3640 A
insert 0 3641 A
insert 0 3642 A
insert 0 3643 A
insert 0 3644 A
insert 0 3645 A
insert 0 3646 A
insert 0 3647 A
insert 0 3648 A
insert 0 3649 A
insert 0 3650 A
insert 0 3651 A
insert 0 3652 A
insert 0 3653 A
insert 0 3654 A
insert 0 3655 A
insert 0 3656 A
insert 0 3657 A
insert 0 3658 A
insert 0 3659 A
insert 0 3660 A
insert 0 3661 A
insert 0 3662 A
insert 0 3663 A
insert 0 3664 A
insert 0 3665 A
insert 0 3666 A
insert 0 3667 A
insert 0 3668 A
insert 0 3669 A
insert 0 3670 A
insert 0 3671 A
insert 0 3672 A
insert 0 3673 A
insert 0 3674 A
insert 0 3675 A
insert 0 3676 A
insert 0 3677 A
insert 0 3678 A
insert 0 3679 A
insert 0 3680 A
insert 0 3681 A
insert 0 3682 A
insert 0 3683 A
insert 0 3684 A
insert 0 3685 A
insert 0 3686 A
insert 0 3687 A
insert 0 3688 A
insert 0 3689 A
insert 0 3690 A
insert 0 3691 A
insert 0 3692 A
insert 0 3693 A
insert 0 3694 A
insert 0 3695 A
insert 0 3696 A
insert 0 3697 A
insert 0 3698 A
insert 0 3699 A
insert 0 3700 A
insert 0 3701 A
insert 0 3702 A
insert 0 3703 A
insert 0 3704 A
insert 0 3705 A
insert 0 3706 A
insert 0 3707 A
insert 0 3708 A
insert 0 3709 A
insert 0 3710 A
insert 0 3711 A
insert 0 3712 A
insert 0 3713 A
insert 0 3714 A
insert 0 3715 A
insert 0 3716 A
insert 0 3717 A
insert 0 3718 A
insert 0 3719 A
insert 0 3720 A
insert 0 3721 A
insert 0 3722 A
insert 0 3723 A
insert 0 3724 A
insert 0 3725 A
insert 0 3726 A
insert 0 3727 A
insert 0 3728 A
insert 0 3729 A
insert 0 3730 A
insert 0 3731 A
insert 0 3732 A
insert 0 3733 A
insert 0 3734 A
insert 0 3735 A
insert 0 3736 A
insert 0 3737 A
insert 0 3738 A
insert 0 3739 A
insert 0 3740 A
insert 0 3741 A
insert 0 3742 A
insert 0 3743 A
insert 0 3744 A
insert 0 3745 A
insert 0 3746 A
insert 0 3747 A
insert 0 3748 A
insert 0 3749 A
insert 0 3750 A
insert 0 3751 A
insert 0 3752 A
insert 0 3753 A
insert 0 3754 A
insert 0 3755 A
insert 0 3756 A
insert 0 3757 A
insert 0 3758 A
insert 0 3759 A
insert 0 3760 A
insert 0 3761 A
insert 0 3762 A
insert 0 3763 A
insert 0 3764 A
insert 0 3765 A
insert 0 3766 A
insert 0 3767 A
insert 0 3768 A
insert 0 3769 A
insert 0 3770 A
insert 0 3771 A
insert 0 3772 A
insert 0 3773 A
insert 0 3774 A
insert 0 3775 A
insert 0 3776 A
insert 0 3777 A
insert 0 3778 A
insert 0 3779 A
insert 0 3780 A
insert 0 3781 A
insert 0 3782 A
insert 0 3783 A
insert 0 3784 A
insert 0 3785 A
insert 0 3786 A
insert 0 3787 A
insert 0 3788 A
insert 0 3789 A
insert 0 3790 A
insert 0 3791 A
insert 0 3792 A
insert 0 3793 A
insert 0 3794 A
insert 0 3795 A
insert 0 3796 A
insert 0 3797 A
insert 0 3798 A
insert 0 3799 A
insert 0 3800 A
insert 0 3801 A
insert 0 3802 A
insert 0 3803 A
insert 0 3804 A
insert 0 3805 A
insert 0 3806 A
insert 0 3807 A
insert 0 3808 A
insert 0 3809 A
insert 0 3810 A
insert 0 3811 A
insert 0 3812 A
insert 0 3813 A
insert 0 3814 A
insert 0 3815 A
insert 0 3816 A
insert 0 3817 A
insert 0 3818 A
insert 0 3819 A
insert 0 3820 A
insert 0 3821 A
insert 0 3822 A
insert 0 3823 A
insert 0 3824 A
insert 0 3825 A
insert 0 3826 A
insert 0 3827 A
insert 0 3828 A
insert 0 3829 A
insert 0 3830 A
insert 0 3831 A
insert 0 3832 A
insert 0 3833 A
insert 0 3834 A
insert 0 3835 A
insert 0 3836 A
insert 0 3837 A
insert 0 3838 A
insert 0 3839 A
insert 0 3840 A
insert 0 3841 A
insert 0 3842 A
insert 0 3843 A
insert 0 3844 A
insert 0 3845 A
insert 0 3846 A
insert 0 3847 A
insert 0 3848 A
insert 0 3849 A
insert 0 3850 A
insert 0 3851 A
insert 0 3852 A
insert 0 3853 A
insert 0 3854 A
insert 0 3855 A
insert 0 3856 A
insert 0 3857 A
insert 0 3858 A
insert 0 3859 A
insert 0 3860 A
insert 0 3861 A
insert 0 3862 A
insert 0 3863 A
insert 0 3864 A
insert 0 3865 A
insert 0 3866 A
insert 0 3867 A
insert 0 3868 A
insert 0 3869 A
insert 0 3870 A
insert 0 3871 A
insert 0 3872 A
insert 0 3873 A
insert 0 3874 A
insert 0 3875 A
insert 0 3876 A
insert 0 3877 A
insert 0 3878 A
insert 0 3879 A
insert 0 3880 A
insert 0 3881 A
insert 0 3882 A
insert 0 3883 A
insert 0 3884 A
insert 0 3885 A
insert 0 3886 A
insert 0 3887 A
insert 0 3888 A
insert 0 3889 A
insert 0 3890 A
insert 0 3891 A
insert 0 3892 A
insert 0 3893 A
insert 0 3894 A
insert 0 3895 A
insert 0 3896 A
insert 0 3897 A
insert 0 3898 A
insert 0 3899 A
insert 0 3900 A
insert 0 3901 A
insert 0 3902 A
insert 0 3903 A
insert 0 3904 A
insert 0 3905 A
insert 0 3906 A
insert 0 3907 A
insert 0 3908 A
insert 0 3909 A
insert 0 3910 A
insert 0 3911 A
insert 0 3912 A
insert 0 3913 A
insert 0 3914 A
insert 0 3915 A
insert 0 3916 A
insert 0 3917 A
insert 0 3918 A
insert 0 3919 A
insert 0 3920 A
insert 0 3921 A
insert 0 3922 A
insert 0 3923 A
insert 0 3924 A
insert 0 3925 A
insert 0 3926 A
insert 0 3927 A
insert 0 3928 A
insert 0 3929 A
insert 0 3930 A
insert 0 3931 A
insert 0 3932 A
insert 0 3933 A
insert 0 3934 A
insert 0 3935 A
insert 0 3936 A
insert 0 3937 A
insert 0 3938 A
insert 0 3939 A
insert 0 3940 A
insert 0 3941 A
insert 0 3942 A
insert 0 3943 A
insert 0 3944 A
insert 0 3945 A
insert 0 3946 A
insert 0 3947 A
insert 0 3948 A
insert 0 3949 A
insert 0 3950 A
insert 0 3951 A
insert 0 3952 A
insert 0 3953 A
insert 0 3954 A
insert 0 3955 A
insert 0 3956 A
insert 0 3957 A
insert 0 3958 A
insert 0 3959 A
insert 0 3960 A
insert 0 3961 A
insert 0 3962 A
insert 0 3963 A
insert 0 3964 A
insert 0 3965 A
insert 0 3966 A
insert 0 3967 A
insert 0 3968 A
insert 0 3969 A
insert 0 3970 A
insert 0 3971 A
insert 0 3972 A
insert 0 3973 A
insert 0 3974 A
insert 0 3975 A
insert 0 3976 A
insert 0 3977 A
insert 0 3978 A
insert 0 3979 A
insert 0 3980 A
insert 0 3981 A
insert 0 3982 A
insert 0 3983 A
insert 0 3984 A
insert 0 3985 A
insert 0 3986 A
insert 0 3987 A
insert 0 3988 A
insert 0 3989 A
insert 0 3990 A
insert 0 3991 A
insert 0 3992 A
insert 0 3993 A
insert 0 3994 A
insert 0 3995 A
insert 0 3996 A
insert 0 3997 A
insert 0 3998 A
insert 0 3999 A
insert 0 4000 A
insert 0 4001 A
insert 0 4002 A
insert 0 4003 A
insert 0 4004 A
insert 0 4005 A
insert 0 4006 A
insert 0 4007 A
insert 0 4008 A
insert 0 4009 A
insert 0 4010 A
insert 0 4011 A
insert 0 4012 A
insert 0 4013 A
insert 0 4014 A
insert 0 4015 A
insert 0 4016 A
insert 0 4017 A
insert 0 4018 A
insert 0 4019 A
insert 0 4020 A
insert 0 4021 A
insert 0 4022 A
insert 0 4023 A
insert 0 4024 A
insert 0 4025 A
insert 0 4026 A
insert 0 4027 A
insert 0 4028 A
insert 0 4029 A
insert 0 4030 A
insert 0 4031 A
insert 0 4032 A
insert 0 4033 A
insert 0 4034 A
insert 0 4035 A
insert 0 4036 A
insert 0 4037 A
insert 0 4038 A
insert 0 4039 A
insert 0 4040 A
insert 0 4041 A
insert 0 4042 A
insert 0 4043 A
insert 0 4044 A
insert 0 4045 A
insert 0 4046 A
insert 0 4047 A
insert 0 4048 A
insert 0 4049 A
insert 0 4050 A
insert 0 4051 A
insert 0 4052 A
insert 0 4053 A
insert 0 4054 A
insert 0 4055 A
insert 0 4056 A
insert 0 4057 A
insert 0 4058 A
insert 0 4059 A
insert 0 4060 A
insert 0 4061 A
insert 0 4062 A
insert 0 4063 A
insert 0 4064 A
insert 0 4065 A
insert 0 4066 A
insert 0 4067 A
insert 0 4068 A
insert 0 4069 A
insert 0 4070 A
insert 0 4071 A
insert 0 4072 A
insert 0 4073 A
insert 0 4074 A
insert 0 4075 A
insert 0 4076 A
insert 0 4077 A
insert 0 4078 A
insert 0 4079 A
insert 0 4080 A
insert 0 4081 A
insert 0 4082 A
insert 0 4083 A
insert 0 4084 A
insert 0 4085 A
insert 0 4086 A
insert 0 4087 A
insert 0 4088 A
insert 0 4089 A
insert 0 4090 A
insert 0 4091 A
insert 0 4092 A
insert 0 4093 A
insert 0 4094 A
insert 0 4095 A
insert 0 4096 A
insert 0 4097 A
insert 0 4098 A
insert 0 4099 A
insert 0 4100 A
insert 0 4101 A
insert 0 4102 A
insert 0 4103 A
insert 0 4104 A
insert 0 4105 A
insert 0 4106 A
insert 0 4107 A
insert 0 4108 A
insert 0 4109 A
insert 0 4110 A
insert 0 4111 A
insert 0 4112 A
insert 0 4113 A
insert 0 4114 A
insert 0 4115 A
insert 0 4116 A
insert 0 4117 A
insert 0 4118 A
insert 0 4119 A
insert 0 4120 A
insert 0 4121 A
insert 0 4122 A
insert 0 4123 A
insert 0 4124 A
insert 0 4125 A
insert 0 4126 A
insert 0 4127 A
insert 0 4128 A
insert 0 4129 A
insert 0 4130 A
insert 0 4131 A
insert 0 4132 A
insert 0 4133 A
insert 0 4134 A
insert 0 4135 A
insert 0 4136 A
insert 0 4137 A
insert 0 4138 A
insert 0 4139 A
insert 0 4140 A
insert 0 4141 A
insert 0 4142 A
insert 0 4143 A
insert 0 4144 A
insert 0 4145 A
insert 0 4146 A
insert 0 4147 A
insert 0 4148 A
insert 0 4149 A
insert 0 4150 A
insert 0 4151 A
insert 0 4152 A
insert 0 4153 A
insert 0 4154 A
insert 0 4155 A
insert 0 4156 A
insert 0 4157 A
insert 0 4158 A
insert 0 4159 A
insert 0 4160 A
insert 0 4161 A
insert 0 4162 A
insert 0 4163 A
insert 0 4164 A
insert 0 4165 A
insert 0 4166 A
insert 0 4167 A
insert 0 4168 A
insert 0 4169 A
insert 0 4170 A
insert 0 4171 A
insert 0 4172 A
insert 0 4173 A
insert 0 4174 A
insert 0 4175 A
insert 0 4176 A
insert 0 4177 A
insert 0 4178 A
insert 0 4179 A
insert 0 4180 A
insert 0 4181 A
insert 0 4182 A
insert 0 4183 A
insert 0 4184 A
insert 0 4185 A
insert 0 4186 A
insert 0 4187 A
insert 0 4188 A
insert 0 4189 A
insert 0 4190 A
insert 0 4191 A
insert 0 4192 A
insert 0 4193 A
insert 0 4194 A
insert 0 4195 A
insert 0 4196 A
insert 0 4197 A
insert 0 4198 A
insert 0 4199 A
insert 0 4200 A
insert 0 4201 A
insert 0 4202 A
insert 0 4203 A
insert 0 4204 A
insert 0 4205 A
insert 0 4206 A
insert 0 4207 A
insert 0 4208 A
insert 0 4209 A
insert 0 4210 A
insert 0 4211 A
insert 0 4212 A
insert 0 4213 A
insert 0 4214 A
insert 0 4215 A
insert 0 4216 A
insert 0 4217 A
insert 0 4218 A
insert 0 4219 A
insert 0 4220 A
insert 0 4221 A
insert 0 4222 A
insert 0 4223 A
insert 0 4224 A
insert 0 4225 A
insert 0 4226 A
insert 0 4227 A
insert 0 4228 A
insert 0 4229 A
insert 0 4230 A
insert 0 4231 A
insert 0 4232 A
insert 0 4233 A
insert 0 4234 A
insert 0 4235 A
insert 0 4236 A
insert 0 4237 A
insert 0 4238 A
insert 0 4239 A
insert 0 4240 A
insert 0 4241 A
insert 0 4242 A
insert 0 4243 A
insert 0 4244 A
insert 0 4245 A
insert 0 4246 A
insert 0 4247 A
insert 0 4248 A
insert 0 4249 A
insert 0 4250 A
insert 0 4251 A
insert 0 4252 A
insert 0 4253 A
insert 0 4254 A
insert 0 4255 A
insert 0 4256 A
insert 0 4257 A
insert 0 4258 A
insert 0 4259 A
insert 0 4260 A
insert 0 4261 A
insert 0 4262 A
insert 0 4263 A
insert 0 4264 A
insert 0 4265 A
insert 0 4266 A
insert 0 4267 A
insert 0 4268 A
insert 0 4269 A
insert 0 4270 A
insert 0 4271 A
insert 0 4272 A
insert 0 4273 A
insert 0 4274 A
insert 0 4275 A
insert 0 4276 A
insert 0 4277 A
insert 0 4278 A
insert 0 4279 A
insert 0 4280 A
insert 0 4281 A
insert 0 4282 A
insert 0 4283 A
insert 0 4284 A
insert 0 4285 A
insert 0 4286 A
insert 0 4287 A
insert 0 4288 A
insert 0 4289 A
insert 0 4290 A
insert 0 4291 A
insert 0 4292 A
insert 0 4293 A
insert 0 4294 A
insert 0 4295 A
insert 0 4296 A
insert 0 4297 A
insert 0 4298 A
insert 0 4299 A
insert 0 4300 A
insert 0 4301 A
insert 0 4302 A
insert 0 4303 A
insert 0 4304 A
insert 0 4305 A
insert 0 4306 A
insert 0 4307 A
insert 0 4308 A
insert 0 4309 A
insert 0 4310 A
insert 0 4311 A
insert 0 4312 A
insert 0 4313 A
insert 0 4314 A
insert 0 4315 A
insert 0 4316 A
insert 0 4317 A
insert 0 4318 A
insert 0 4319 A
insert 0 4320 A
insert 0 4321 A
insert 0 4322 A
insert 0 4323 A
insert 0 4324 A
insert 0 4325 A
insert 0 4326 A
insert 0 4327 A
insert 0 4328 A
insert 0 4329 A
insert 0 4330 A
insert 0 4331 A
insert 0 4332 A
insert 0 4333 A
insert 0 4334 A
insert 0 4335 A
insert 0 4336 A
insert 0 4337 A
insert 0 4338 A
insert 0 4339 A
insert 0 4340 A
insert 0 4341 A
insert 0 4342 A
insert 0 4343 A
insert 0 4344 A
insert 0 4345 A
insert 0 4346 A
insert 0 4347 A
insert 0 4348 A
insert 0 4349 A
insert 0 4350 A
insert 0 4351 A
insert 0 4352 A
insert 0 4353 A
insert 0 4354 A
insert 0 4355 A
insert 0 4356 A
insert 0 4357 A
insert 0 4358 A
insert 0 4359 A
insert 0 4360 A
insert 0 4361 A
insert 0 4362 A
insert 0 4363 A
insert 0 4364 A
insert 0 4365 A
insert 0 4366 A
insert 0 4367 A
insert 0 4368 A
insert 0 4369 A
insert 0 4370 A
insert 0 4371 A
insert 0 4372 A
insert 0 4373 A
insert 0 4374 A
insert 0 4375 A
insert 0 4376 A
insert 0 4377 A
insert 0 4378 A
insert 0 4379 A
insert 0 4380 A
insert 0 4381 A
insert 0 4382 A
insert 0 4383 A
insert 0 4384 A
insert 0 4385 A
insert 0 4386 A
insert 0 4387 A
insert 0 4388 A
insert 0 4389 A
insert 0 4390 A
insert 0 4391 A
insert 0 4392 A
insert 0 4393 A
insert 0 4394 A
insert 0 4395 A
insert 0 4396 A
insert 0 4397 A
insert 0 4398 A
insert 0 4399 A
insert 0 4400 A
insert 0 4401 A
insert 0 4402 A
insert 0 4403 A
insert 0 4404 A
insert 0 4405 A
insert 0 4406 A
insert 0 4407 A
insert 0 4408 A
insert 0 4409 A
insert 0 4410 A
insert 0 4411 A
insert 0 4412 A
insert 0 4413 A
insert 0 4414 A
insert 0 4415 A
insert 0 4416 A
insert 0 4417 A
insert 0 4418 A
insert 0 4419 A
insert 0 4420 A
insert 0 4421 A
insert 0 4422 A
insert 0 4423 A
insert 0 4424 A
insert 0 4425 A
insert 0 4426 A
insert 0 4427 A
insert 0 4428 A
insert 0 4429 A
insert 0 4430 A
insert 0 4431 A
insert 0 4432 A
insert 0 4433 A
insert 0 4434 A
insert 0 4435 A
insert 0 4436 A
insert 0 4437 A
insert 0 4438 A
insert 0 4439 A
insert 0 4440 A
insert 0 4441 A
insert 0 4442 A
insert 0 4443 A
insert 0 4444 A
insert 0 4445 A
insert 0 4446 A
insert 0 4447 A
insert 0 4448 A
insert 0 4449 A
insert 0 4450 A
insert 0 4451 A
insert 0 4452 A
insert 0 4453 A
insert 0 4454 A
insert 0 4455 A
insert 0 4456 A
insert 0 4457 A
insert 0 4458 A
insert 0 4459 A
insert 0 4460 A
insert 0 4461 A
insert 0 4462 A
insert 0 4463 A
insert 0 4464 A
insert 0 4465 A
insert 0 4466 A
insert 0 4467 A
insert 0 4468 A
insert 0 4469 A
insert 0 4470 A
insert 0 4471 A
insert 0 4472 A
insert 0 4473 A
insert 0 4474 A
insert 0 4475 A
insert 0 4476 A
insert 0 4477 A
insert 0 4478 A
insert 0 4479 A
insert 0 4480 A
insert 0 4481 A
insert 0 4482 A
insert 0 4483 A
insert 0 4484 A
insert 0 4485 A
insert 0 4486 A
insert 0 4487 A
insert 0 4488 A
insert 0 4489 A
insert 0 4490 A
insert 0 4491 A
insert 0 4492 A
insert 0 4493 A
insert 0 4494 A
insert 0 4495 A
insert 0 4496 A
insert 0 4497 A
insert 0 4498 A
insert 0 4499 A
insert 0 4500 A
insert 0 4501 A
insert 0 4502 A
insert 0 4503 A
insert 0 4504 A
insert 0 4505 A
insert 0 4506 A
insert 0 4507 A
insert 0 4508 A
insert 0 4509 A
insert 0 4510 A
insert 0 4511 A
insert 0 4512 A
insert 0 4513 A
insert 0 4514 A
insert 0 4515 A
insert 0 4516 A
insert 0 4517 A
insert 0 4518 A
insert 0 4519 A
insert 0 4520 A
insert 0 4521 A
insert 0 4522 A
insert 0 4523 A
insert 0 4524 A
insert 0 4525 A
insert 0 4526 A
insert 0 4527 A
insert 0 4528 A
insert 0 4529 A
insert 0 4530 A
insert 0 4531 A
insert 0 4532 A
insert 0 4533 A
insert 0 4534 A
insert 0 4535 A
insert 0 4536 A
insert 0 4537 A
insert 0 4538 A
insert 0 4539 A
insert 0 4540 A
insert 0 4541 A
insert 0 4542 A
insert 0 4543 A
insert 0 4544 A
insert 0 4545 A
insert 0 4546 A
insert 0 4547 A
insert 0 4548 A
insert 0 4549 A
insert 0 4550 A
insert 0 4551 A
insert 0 4552 A
insert 0 4553 A
insert 0 4554 A
insert 0 4555 A
insert 0 4556 A
insert 0 4557 A
insert 0 4558 A
insert 0 4559 A
insert 0 4560 A
insert 0 4561 A
insert 0 4562 A
insert 0 4563 A
insert 0 4564 A
insert 0 4565 A
insert 0 4566 A
insert 0 4567 A
insert 0 4568 A
insert 0 4569 A
insert 0 4570 A
insert 0 4571 A
insert 0 4572 A
insert 0 4573 A
insert 0 4574 A
insert 0 4575 A
insert 0 4576 A
insert 0 4577 A
insert 0 4578 A
insert 0 4579 A
insert 0 4580 A
insert 0 4581 A
insert 0 4582 A
insert 0 4583 A
insert 0 4584 A
insert 0 4585 A
insert 0 4586 A
insert 0 4587 A
insert 0 4588 A
insert 0 4589 A
insert 0 4590 A
insert 0 4591 A
insert 0 4592 A
insert 0 4593 A
insert 0 4594 A
insert 0 4595 A
insert 0 4596 A
insert 0 4597 A
insert 0 4598 A
insert 0 4599 A
insert 0 4600 A
insert 0 4601 A
insert 0 4602 A
insert 0 4603 A
insert 0 4604 A
insert 0 4605 A
insert 0 4606 A
insert 0 4607 A
insert 0 4608 A
insert 0 4609 A
insert 0 4610 A
insert 0 4611 A
insert 0 4612 A
insert 0 4613 A
insert 0 4614 A
insert 0 4615 A
insert 0 4616 A
insert 0 4617 A
insert 0 4618 A
insert 0 4619 A
insert 0 4620 A
insert 0 4621 A
insert 0 4622 A
insert 0 4623 A
insert 0 4624 A
insert 0 4625 A
insert 0 4626 A
insert 0 4627 A
insert 0 4628 A
insert 0 4629 A
insert 0 4630 A
insert 0 4631 A
insert 0 4632 A
insert 0 4633 A
insert 0 4634 A
insert 0 4635 A
insert 0 4636 A
insert 0 4637 A
insert 0 4638 A
insert 0 4639 A
insert 0 4640 A
insert 0 4641 A
insert 0 4642 A
insert 0 4643 A
insert 0 4644 A
insert 0 4645 A
insert 0 4646 A
insert 0 4647 A
insert 0 4648 A
insert 0 4649 A
insert 0 4650 A
insert 0 4651 A
insert 0 4652 A
insert 0 4653 A
insert 0 4654 A
insert 0 4655 A
insert 0 4656 A
insert 0 4657 A
insert 0 4658 A
insert 0 4659 A
insert 0 4660 A
insert 0 4661 A
insert 0 4662 A
insert 0 4663 A
insert 0 4664 A
insert 0 4665 A
insert 0 4666 A
insert 0 4667 A
insert 0 4668 A
insert 0 4669 A
insert 0 4670 A
insert 0 4671 A
insert 0 4672 A
insert 0 4673 A
insert 0 4674 A
insert 0 4675 A
insert 0 4676 A
insert 0 4677 A
insert 0 4678 A
insert 0 4679 A
insert 0 4680 A
insert 0 4681 A
insert 0 4682 A
insert 0 4683 A
insert 0 4684 A
insert 0 4685 A
insert 0 4686 A
insert 0 4687 A
insert 0 4688 A
insert 0 4689 A
insert 0 4690 A
insert 0 4691 A
insert 0 4692 A
insert 0 4693 A
insert 0 4694 A
insert 0 4695 A
insert 0 4696 A
insert 0 4697 A
insert 0 4698 A
insert 0 4699 A
insert 0 4700 A
insert 0 4701 A
insert 0 4702 A
insert 0 4703 A
insert 0 4704 A
insert 0 4705 A
insert 0 4706 A
insert 0 4707 A
insert 0 4708 A
insert 0 4709 A
insert 0 4710 A
insert 0 4711 A
insert 0 4712 A
insert 0 4713 A
insert 0 4714 A
insert 0 4715 A
insert 0 4716 A
insert 0 4717 A
insert 0 4718 A
insert 0 4719 A
insert 0 4720 A
insert 0 4721 A
insert 0 4722 A
insert 0 4723 A
insert 0 4724 A
insert 0 4725 A
insert 0 4726 A
insert 0 4727 A
insert 0 4728 A
insert 0 4729 A
insert 0 4730 A
insert 0 4731 A
insert 0 4732 A
insert 0 4733 A
insert 0 4734 A
insert 0 4735 A
insert 0 4736 A
insert 0 4737 A
insert 0 4738 A
insert 0 4739 A
insert 0 4740 A
insert 0 4741 A
insert 0 4742 A
insert 0 4743 A
insert 0 4744 A
insert 0 4745 A
insert 0 4746 A
insert 0 4747 A
insert 0 4748 A
insert 0 4749 A
insert 0 4750 A
insert 0 4751 A
insert 0 4752 A
insert 0 4753 A
insert 0 4754 A
insert 0 4755 A
insert 0 4756 A
insert 0 4757 A
insert 0 4758 A
insert 0 4759 A
insert 0 4760 A
insert 0 4761 A
insert 0 4762 A
insert 0 4763 A
insert 0 4764 A
insert 0 4765 A
insert 0 4766 A
insert 0 4767 A
insert 0 4768 A
insert 0 4769 A
insert 0 4770 A
insert 0 4771 A
insert 0 4772 A
insert 0 4773 A
insert 0 4774 A
insert 0 4775 A
insert 0 4776 A
insert 0 4777 A
insert 0 4778 A
insert 0 4779 A
insert 0 4780 A
insert 0 4781 A
insert 0 4782 A
insert 0 4783 A
insert 0 4784 A
insert 0 4785 A
insert 0 4786 A
insert 0 4787 A
insert 0 4788 A
insert 0 4789 A
insert 0 4790 A
insert 0 4791 A
insert 0 4792 A
insert 0 4793 A
insert 0 4794 A
insert 0 4795 A
insert 0 4796 A
insert 0 4797 A
insert 0 4798 A
insert 0 4799 A
insert 0 4800 A
insert 0 4801 A
insert 0 4802 A
insert 0 4803 A
insert 0 4804 A
insert 0 4805 A
insert 0 4806 A
insert 0 4807 A
insert 0 4808 A
insert 0 4809 A
insert 0 4810 A
insert 0 4811 A
insert 0 4812 A
insert 0 4813 A
insert 0 4814 A
insert 0 4815 A
insert 0 4816 A
insert 0 4817 A
insert 0 4818 A
insert 0 4819 A
insert 0 4820 A
insert 0 4821 A
insert 0 4822 A
insert 0 4823 A
insert 0 4824 A
insert 0 4825 A
insert 0 4826 A
insert 0 4827 A
insert 0 4828 A
insert 0 4829 A
insert 0 4830 A
insert 0 4831 A
insert 0 4832 A
insert 0 4833 A
insert 0 4834 A
insert 0 4835 A
insert 0 4836 A
insert 0 4837 A
insert 0 4838 A
insert 0 4839 A
insert 0 4840 A
insert 0 4841 A
insert 0 4842 A
insert 0 4843 A
insert 0 4844 A
insert 0 4845 A
insert 0 4846 A
insert 0 4847 A
insert 0 4848 A
insert 0 4849 A
insert 0 4850 A
insert 0 4851 A
insert 0 4852 A
insert 0 4853 A
insert 0 4854 A
insert 0 4855 A
insert 0 4856 A
insert 0 4857 A
insert 0 4858 A
insert 0 4859 A
insert 0 4860 A
insert 0 4861 A
insert 0 4862 A
insert 0 4863 A
insert 0 4864 A
insert 0 4865 A
insert 0 4866 A
insert 0 4867 A
insert 0 4868 A
insert 0 4869 A
insert 0 4870 A
insert 0 4871 A
insert 0 4872 A
insert 0 4873 A
insert 0 4874 A
insert 0 4875 A
insert 0 4876 A
insert 0 4877 A
insert 0 4878 A
insert 0 4879 A
insert 0 4880 A
insert 0 4881 A
insert 0 4882 A
insert 0 4883 A
insert 0 4884 A
insert 0 4885 A
insert 0 4886 A
insert 0 4887 A
insert 0 4888 A
insert 0 4889 A
insert 0 4890 A
insert 0 4891 A
insert 0 4892 A
insert 0 4893 A
insert 0 4894 A
insert 0 4895 A
insert 0 4896 A
insert 0 4897 A
insert 0 4898 A
insert 0 4899 A
insert 0 4900 A
insert 0 4901 A
insert 0 4902 A
insert 0 4903 A
insert 0 4904 A
insert 0 4905 A
insert 0 4906 A
insert 0 4907 A
insert 0 4908 A
insert 0 4909 A
insert 0 4910 A
insert 0 4911 A
insert 0 4912 A
insert 0 4913 A
insert 0 4914 A
insert 0 4915 A
insert 0 4916 A
insert 0 4917 A
insert 0 4918 A
insert 0 4919 A
insert 0 4920 A
insert 0 4921 A
insert 0 4922 A
insert 0 4923 A
insert 0 4924 A
insert 0 4925 A
insert 0 4926 A
insert 0 4927 A
insert 0 4928 A
insert 0 4929 A
insert 0 4930 A
insert 0 4931 A
insert 0 4932 A
insert 0 4933 A
insert 0 4934 A
insert 0 4935 A
insert 0 4936 A
insert 0 4937 A
insert 0 4938 A
insert 0 4939 A
insert 0 4940 A
insert 0 4941 A
insert 0 4942 A
insert 0 4943 A
insert 0 4944 A
insert 0 4945 A
insert 0 4946 A
insert 0 4947 A
insert 0 4948 A
insert 0 4949 A
insert 0 4950 A
insert 0 4951 A
insert 0 4952 A
insert 0 4953 A
insert 0 4954 A
insert 0 4955 A
insert 0 4956 A
insert 0 4957 A
insert 0 4958 A
insert 0 4959 A
insert 0 4960 A
insert 0 4961 A
insert 0 4962 A
insert 0 4963 A
insert 0 4964 A
insert 0 4965 A
insert 0 4966 A
insert 0 4967 A
insert 0 4968 A
insert 0 4969 A
insert 0 4970 A
insert 0 4971 A
insert 0 4972 A
insert 0 4973 A
insert 0 4974 A
insert 0 4975 A
insert 0 4976 A
insert 0 4977 A
insert 0 4978 A
insert 0 4979 A
insert 0 4980 A
insert 0 4981 A
insert 0 4982 A
insert 0 4983 A
insert 0 4984 A
insert 0 4985 A
insert 0 4986 A
insert 0 4987 A
insert 0 4988 A
insert 0 4989 A
insert 0 4990 A
insert 0 4991 A
insert 0 4992 A
insert 0 4993 A
insert 0 4994 A
insert 0 4995 A
insert 0 4996 A
insert 0 4997 A
insert 0 4998 A
insert 0 4999 A
insert 0 5000 A
insert 0 5001 A
insert 0 5002 A
insert 0 5003 A
insert 0 5004 A
insert 0 5005 A
insert 0 5006 A
insert 0 5007 A
insert 0 5008 A
insert 0 5009 A
insert 0 5010 A
insert 0 5011 A
insert 0 5012 A
insert 0 5013 A
insert 0 5014 A
insert 0 5015 A
insert 0 5016 A
insert 0 5017 A
insert 0 5018 A
insert 0 5019 A
insert 0 5020 A
insert 0 5021 A
insert 0 5022 A
insert 0 5023 A
insert 0 5024 A
insert 0 5025 A
insert 0 5026 A
insert 0 5027 A
insert 0 5028 A
insert 0 5029 A
insert 0 5030 A
insert 0 5031 A
insert 0 5032 A
insert 0 5033 A
insert 0 5034 A
insert 0 5035 A
insert 0 5036 A
insert 0 5037 A
insert 0 5038 A
insert 0 5039 A
insert 0 5040 A
insert 0 5041 A
insert 0 5042 A
insert 0 5043 A
insert 0 5044 A
insert 0 5045 A
insert 0 5046 A
insert 0 5047 A
insert 0 5048 A
insert 0 5049 A
insert 0 5050 A
insert 0 5051 A
insert 0 5052 A
insert 0 5053 A
insert 0 5054 A
insert 0 5055 A
insert 0 5056 A
insert 0 5057 A
insert 0 5058 A
insert 0 5059 A
insert 0 5060 A
insert 0 5061 A
insert 0 5062 A
insert 0 5063 A
insert 0 5064 A
insert 0 5065 A
insert 0 5066 A
insert 0 5067 A
insert 0 5068 A
insert 0 5069 A
insert 0 5070 A
insert 0 5071 A
insert 0 5072 A
insert 0 5073 A
insert 0 5074 A
insert 0 5075 A
insert 0 5076 A
insert 0 5077 A
insert 0 5078 A
insert 0 5079 A
insert 0 5080 A
insert 0 5081 A
insert 0 5082 A
insert 0 5083 A
insert 0 5084 A
insert 0 5085 A
insert 0 5086 A
insert 0 5087 A
insert 0 5088 A
insert 0 5089 A
insert 0 5090 A
insert 0 5091 A
insert 0 5092 A
insert 0 5093 A
insert 0 5094 A
insert 0 5095 A
insert 0 5096 A
insert 0 5097 A
insert 0 5098 A
insert 0 5099 A
insert 0 5100 A
insert 0 5101 A
insert 0 5102 A
insert 0 5103 A
insert 0 5104 A
insert 0 5105 A
insert 0 5106 A
insert 0 5107 A
insert 0 5108 A
insert 0 5109 A
insert 0 5110 A
insert 0 5111 A
insert 0 5112 A
insert 0 5113 A
insert 0 5114 A
insert 0 5115 A
insert 0 5116 A
insert 0 5117 A
insert 0 5118 A
insert 0 5119 A
insert 0 5120 A
insert 0 5121 A
insert 0 5122 A
insert 0 5123 A
insert 0 5124 A
insert 0 5125 A
insert 0 5126 A
insert 0 5127 A
insert 0 5128 A
insert 0 5129 A
insert 0 5130 A
insert 0 5131 A
insert 0 5132 A
insert 0 5133 A
insert 0 5134 A
insert 0 5135 A
insert 0 5136 A
insert 0 5137 A
insert 0 5138 A
insert 0 5139 A
insert 0 5140 A
insert 0 5141 A
insert 0 5142 A
insert 0 5143 A
insert 0 5144 A
insert 0 5145 A
insert 0 5146 A
insert 0 5147 A
insert 0 5148 A
insert 0 5149 A
insert 0 5150 A
insert 0 5151 A
insert 0 5152 A
insert 0 5153 A
insert 0 5154 A
insert 0 5155 A
insert 0 5156 A
insert 0 5157 A
insert 0 5158 A
insert 0 5159 A
insert 0 5160 A
insert 0 5161 A
insert 0 5162 A
insert 0 5163 A
insert 0 5164 A
insert 0 5165 A
insert 0 5166 A
insert 0 5167 A
insert 0 5168 A
insert 0 5169 A
insert 0 5170 A
insert 0 5171 A
insert 0 5172 A
insert 0 5173 A
insert 0 5174 A
insert 0 5175 A
insert 0 5176 A
insert 0 5177 A
insert 0 5178 A
insert 0 5179 A
insert 0 5180 A
insert 0 5181 A
insert 0 5182 A
insert 0 5183 A
insert 0 5184 A
insert 0 5185 A
insert 0 5186 A
insert 0 5187 A
insert 0 5188 A
insert 0 5189 A
insert 0 5190 A
insert 0 5191 A
insert 0 5192 A
insert 0 5193 A
insert 0 5194 A
insert 0 5195 A
insert 0 5196 A
insert 0 5197 A
insert 0 5198 A
insert 0 5199 A
insert 0 5200 A
insert 0 5201 A
insert 0 5202 A
insert 0 5203 A
insert 0 5204 A
insert 0 5205 A
insert 0 5206 A
insert 0 5207 A
insert 0 5208 A
insert 0 5209 A
insert 0 5210 A
insert 0 5211 A
insert 0 5212 A
insert 0 5213 A
insert 0 5214 A
insert 0 5215 A
insert 0 5216 A
insert 0 5217 A
insert 0 5218 A
insert 0 5219 A
insert 0 5220 A
insert 0 5221 A
insert 0 5222 A
insert 0 5223 A
insert 0 5224 A
insert 0 5225 A
insert 0 5226 A
insert 0 5227 A
insert 0 5228 A
insert 0 5229 A
insert 0 5230 A
insert 0 5231 A
insert 0 5232 A
insert 0 5233 A
insert 0 5234 A
insert 0 5235 A
insert 0 5236 A
insert 0 5237 A
insert 0 5238 A
insert 0 5239 A
insert 0 5240 A
insert 0 5241 A
insert 0 5242 A
insert 0 5243 A
insert 0 5244 A
insert 0 5245 A
insert 0 5246 A
insert 0 5247 A
insert 0 5248 A
insert 0 5249 A
insert 0 5250 A
insert 0 5251 A
insert 0 5252 A
insert 0 5253 A
insert 0 5254 A
insert 0 5255 A
insert 0 5256 A
insert 0 5257 A
insert 0 5258 A
insert 0 5259 A
insert 0 5260 A
insert 0 5261 A
insert 0 5262 A
insert 0 5263 A
insert 0 5264 A
insert 0 5265 A
insert 0 5266 A
insert 0 5267 A
insert 0 5268 A
insert 0 5269 A
insert 0 5270 A
insert 0 5271 A
insert 0 5272 A
insert 0 5273 A
insert 0 5274 A
insert 0 5275 A
insert 0 5276 A
insert 0 5277 A
insert 0 5278 A
insert 0 5279 A
insert 0 5280 A
insert 0 5281 A
insert 0 5282 A
insert 0 5283 A
insert 0 5284 A
insert 0 5285 A
insert 0 5286 A
insert 0 5287 A
insert 0 5288 A
insert 0 5289 A
insert 0 5290 A
insert 0 5291 A
insert 0 5292 A
insert 0 5293 A
insert 0 5294 A
insert 0 5295 A
insert 0 5296 A
insert 0 5297 A
insert 0 5298 A
insert 0 5299 A
insert 0 5300 A
insert 0 5301 A
insert 0 5302 A
insert 0 5303 A
insert 0 5304 A
insert 0 5305 A
insert 0 5306 A
insert 0 5307 A
insert 0 5308 A
insert 0 5309 A
insert 0 5310 A
insert 0 5311 A
insert 0 5312 A
insert 0 5313 A
insert 0 5314 A
insert 0 5315 A
insert 0 5316 A
insert 0 5317 A
insert 0 5318 A
insert 0 5319 A
insert 0 5320 A
insert 0 5321 A
insert 0 5322 A
insert 0 5323 A
insert 0 5324 A
insert 0 5325 A
insert 0 5326 A
insert 0 5327 A
insert 0 5328 A
insert 0 5329 A
insert 0 5330 A
insert 0 5331 A
insert 0 5332 A
insert 0 5333 A
insert 0 5334 A
insert 0 5335 A
insert 0 5336 A
insert 0 5337 A
insert 0 5338 A
insert 0 5339 A
insert 0 5340 A
insert 0 5341 A
insert 0 5342 A
insert 0 5343 A
insert 0 5344 A
insert 0 5345 A
insert 0 5346 A
insert 0 5347 A
insert 0 5348 A
insert 0 5349 A
insert 0 5350 A
insert 0 5351 A
insert 0 5352 A
insert 0 5353 A
insert 0 5354 A
insert 0 5355 A
insert 0 5356 A
insert 0 5357 A
insert 0 5358 A
insert 0 5359 A
insert 0 5360 A
insert 0 5361 A
insert 0 5362 A
insert 0 5363 A
insert 0 5364 A
insert 0 5365 A
insert 0 5366 A
insert 0 5367 A
insert 0 5368 A
insert 0 5369 A
insert 0 5370 A
insert 0 5371 A
insert 0 5372 A
insert 0 5373 A
insert 0 5374 A
insert 0 5375 A
insert 0 5376 A
insert 0 5377 A
insert 0 5378 A
insert 0 5379 A
insert 0 5380 A
insert 0 5381 A
insert 0 5382 A
insert 0 5383 A
insert 0 5384 A
insert 0 5385 A
insert 0 5386 A
insert 0 5387 A
insert 0 5388 A
insert 0 5389 A
insert 0 5390 A
insert 0 5391 A
insert 0 5392 A
insert 0 5393 A
insert 0 5394 A
insert 0 5395 A
insert 0 5396 A
insert 0 5397 A
insert 0 5398 A
insert 0 5399 A
insert 0 5400 A
insert 0 5401 A
insert 0 5402 A
insert 0 5403 A
insert 0 5404 A
insert 0 5405 A
insert 0 5406 A
insert 0 5407 A
insert 0 5408 A
insert 0 5409 A
insert 0 5410 A
insert 0 5411 A
insert 0 5412 A
insert 0 5413 A
insert 0 5414 A
insert 0 5415 A
insert 0 5416 A
insert 0 5417 A
insert 0 5418 A
insert 0 5419 A
insert 0 5420 A
insert 0 5421 A
insert 0 5422 A
insert 0 5423 A
insert 0 5424 A
insert 0 5425 A
insert 0 5426 A
insert 0 5427 A
insert 0 5428 A
insert 0 5429 A
insert 0 5430 A
insert 0 5431 A
insert 0 5432 A
insert 0 5433 A
insert 0 5434 A
insert 0 5435 A
insert 0 5436 A
insert 0 5437 A
insert 0 5438 A
insert 0 5439 A
insert 0 5440 A
insert 0 5441 A
insert 0 5442 A
insert 0 5443 A
insert 0 5444 A
insert 0 5445 A
insert 0 5446 A
insert 0 5447 A
insert 0 5448 A
insert 0 5449 A
insert 0 5450 A
insert 0 5451 A
insert 0 5452 A
insert 0 5453 A
insert 0 5454 A
insert 0 5455 A
insert 0 5456 A
insert 0 5457 A
insert 0 5458 A
insert 0 5459 A
insert 0 5460 A
insert 0 5461 A
insert 0 5462 A
insert 0 5463 A
insert 0 5464 A
insert 0 5465 A
insert 0 5466 A
insert 0 5467 A
insert 0 5468 A
insert 0 5469 A
insert 0 5470 A
insert 0 5471 A
insert 0 5472 A
insert 0 5473 A
insert 0 5474 A
insert 0 5475 A
insert 0 5476 A
insert 0 5477 A
insert 0 5478 A
insert 0 5479 A
insert 0 5480 A
insert 0 5481 A
insert 0 5482 A
insert 0 5483 A
insert 0 5484 A
insert 0 5485 A
insert 0 5486 A
insert 0 5487 A
insert 0 5488 A
insert 0 5489 A
insert 0 5490 A
insert 0 5491 A
insert 0 5492 A
insert 0 5493 A
insert 0 5494 A
insert 0 5495 A
insert 0 5496 A
insert 0 5497 A
insert 0 5498 A
insert 0 5499 A
insert 0 5500 A
insert 0 5501 A
insert 0 5502 A
insert 0 5503 A
insert 0 5504 A
insert 0 5505 A
insert 0 5506 A
insert 0 5507 A
insert 0 5508 A
insert 0 5509 A
insert 0 5510 A
insert 0 5511 A
insert 0 5512 A
insert 0 5513 A
insert 0 5514 A
insert 0 5515 A
insert 0 5516 A
insert 0 5517 A
insert 0 5518 A
insert 0 5519 A
insert 0 5520 A
insert 0 5521 A
insert 0 5522 A
insert 0 5523 A
insert 0 5524 A
insert 0 5525 A
insert 0 5526 A
insert 0 5527 A
insert 0 5528 A
insert 0 5529 A
insert 0 5530 A
insert 0 5531 A
insert 0 5532 A
insert 0 5533 A
insert 0 5534 A
insert 0 5535 A
insert 0 5536 A
insert 0 5537 A
insert 0 5538 A
insert 0 5539 A
insert 0 5540 A
insert 0 5541 A
insert 0 5542 A
insert 0 5543 A
insert 0 5544 A
insert 0 5545 A
insert 0 5546 A
insert 0 5547 A
insert 0 5548 A
insert 0 5549 A
insert 0 5550 A
insert 0 5551 A
insert 0 5552 A
insert 0 5553 A
insert 0 5554 A
insert 0 5555 A
insert 0 5556 A
insert 0 5557 A
insert 0 5558 A
insert 0 5559 A
insert 0 5560 A
insert 0 5561 A
insert 0 5562 A
insert 0 5563 A
insert 0 5564 A
insert 0 5565 A
insert 0 5566 A
insert 0 5567 A
insert 0 5568 A
insert 0 5569 A
insert 0 5570 A
insert 0 5571 A
insert 0 5572 A
insert 0 5573 A
insert 0 5574 A
insert 0 5575 A
insert 0 5576 A
insert 0 5577 A
insert 0 5578 A
insert 0 5579 A
insert 0 5580 A
insert 0 5581 A
insert 0 5582 A
insert 0 5583 A
insert 0 5584 A
insert 0 5585 A
insert 0 5586 A
insert 0 5587 A
insert 0 5588 A
insert 0 5589 A
insert 0 5590 A
insert 0 5591 A
insert 0 5592 A
insert 0 5593 A
insert 0 5594 A
insert 0 5595 A
insert 0 5596 A
insert 0 5597 A
insert 0 5598 A
insert 0 5599 A
insert 0 5600 A
insert 0 5601 A
insert 0 5602 A
insert 0 5603 A
insert 0 5604 A
insert 0 5605 A
insert 0 5606 A
insert 0 5607 A
insert 0 5608 A
insert 0 5609 A
insert 0 5610 A
insert 0 5611 A
insert 0 5612 A
insert 0 5613 A
insert 0 5614 A
insert 0 5615 A
insert 0 5616 A
insert 0 5617 A
insert 0 5618 A
insert 0 5619 A
insert 0 5620 A
insert 0 5621 A
insert 0 5622 A
insert 0 5623 A
insert 0 5624 A
insert 0 5625 A
insert 0 5626 A
insert 0 5627 A
insert 0 5628 A
insert 0 5629 A
insert 0 5630 A
insert 0 5631 A
insert 0 5632 A
insert 0 5633 A
insert 0 5634 A
insert 0 5635 A
insert 0 5636 A
insert 0 5637 A
insert 0 5638 A
insert 0 5639 A
insert 0 5640 A
insert 0 5641 A
insert 0 5642 A
insert 0 5643 A
insert 0 5644 A
insert 0 5645 A
insert 0 5646 A
insert 0 5647 A
insert 0 5648 A
insert 0 5649 A
insert 0 5650 A
insert 0 5651 A
insert 0 5652 A
insert 0 5653 A
insert 0 5654 A
insert 0 5655 A
insert 0 5656 A
insert 0 5657 A
insert 0 5658 A
insert 0 5659 A
insert 0 5660 A
insert 0 5661 A
insert 0 5662 A
insert 0 5663 A
insert 0 5664 A
insert 0 5665 A
insert 0 5666 A
insert 0 5667 A
insert 0 5668 A
insert 0 5669 A
insert 0 5670 A
insert 0 5671 A
insert 0 5672 A
insert 0 5673 A
insert 0 5674 A
insert 0 5675 A
insert 0 5676 A
insert 0 5677 A
insert 0 5678 A
insert 0 5679 A
insert 0 5680 A
insert 0 5681 A
insert 0 5682 A
insert 0 5683 A
insert 0 5684 A
insert 0 5685 A
insert 0 5686 A
insert 0 5687 A
insert 0 5688 A
insert 0 5689 A
insert 0 5690 A
insert 0 5691 A
insert 0 5692 A
insert 0 5693 A
insert 0 5694 A
insert 0 5695 A
insert 0 5696 A
insert 0 5697 A
insert 0 5698 A
insert 0 5699 A
insert 0 5700 A
insert 0 5701 A
insert 0 5702 A
insert 0 5703 A
insert 0 5704 A
insert 0 5705 A
insert 0 5706 A
insert 0 5707 A
insert 0 5708 A
insert 0 5709 A
insert 0 5710 A
insert 0 5711 A
insert 0 5712 A
insert 0 5713 A
insert 0 5714 A
insert 0 5715 A
insert 0 5716 A
insert 0 5717 A
insert 0 5718 A
insert 0 5719 A
insert 0 5720 A
insert 0 5721 A
insert 0 5722 A
insert 0 5723 A
insert 0 5724 A
insert 0 5725 A
insert 0 5726 A
insert 0 5727 A
insert 0 5728 A
insert 0 5729 A
insert 0 5730 A
insert 0 5731 A
insert 0 5732 A
insert 0 5733 A
insert 0 5734 A
insert 0 5735 A
insert 0 5736 A
insert 0 5737 A
insert 0 5738 A
insert 0 5739 A
insert 0 5740 A
insert 0 5741 A
insert 0 5742 A
insert 0 5743 A
insert 0 5744 A
insert 0 5745 A
insert 0 5746 A
insert 0 5747 A
insert 0 5748 A
insert 0 5749 A
insert 0 5750 A
insert 0 5751 A
insert 0 5752 A
insert 0 5753 A
insert 0 5754 A
insert 0 5755 A
insert 0 5756 A
insert 0 5757 A
insert 0 5758 A
insert 0 5759 A
insert 0 5760 A
insert 0 5761 A
insert 0 5762 A
insert 0 5763 A
insert 0 5764 A
insert 0 5765 A
insert 0 5766 A
insert 0 5767 A
insert 0 5768 A
insert 0 5769 A
insert 0 5770 A
insert 0 5771 A
insert 0 5772 A
insert 0 5773 A
insert 0 5774 A
insert 0 5775 A
insert 0 5776 A
insert 0 5777 A
insert 0 5778 A
insert 0 5779 A
insert 0 5780 A
insert 0 5781 A
insert 0 5782 A
insert 0 5783 A
insert 0 5784 A
insert 0 5785 A
insert 0 5786 A
insert 0 5787 A
insert 0 5788 A
insert 0 5789 A
insert 0 5790 A
insert 0 5791 A
insert 0 5792 A
insert 0 5793 A
insert 0 5794 A
insert 0 5795 A
insert 0 5796 A
insert 0 5797 A
insert 0 5798 A
insert 0 5799 A
insert 0 5800 A
insert 0 5801 A
insert 0 5802 A
insert 0 5803 A
insert 0 5804 A
insert 0 5805 A
insert 0 5806 A
insert 0 5807 A
insert 0 5808 A
insert 0 5809 A
insert 0 5810 A
insert 0 5811 A
insert 0 5812 A
insert 0 5813 A
insert 0 5814 A
insert 0 5815 A
insert 0 5816 A
insert 0 5817 A
insert 0 5818 A
insert 0 5819 A
insert 0 5820 A
insert 0 5821 A
insert 0 5822 A
insert 0 5823 A
insert 0 5824 A
insert 0 5825 A
insert 0 5826 A
insert 0 5827 A
insert 0 5828 A
insert 0 5829 A
insert 0 5830 A
insert 0 5831 A
insert 0 5832 A
insert 0 5833 A
insert 0 5834 A
insert 0 5835 A
insert 0 5836 A
insert 0 5837 A
insert 0 5838 A
insert 0 5839 A
insert 0 5840 A
insert 0 5841 A
insert 0 5842 A
insert 0 5843 A
insert 0 5844 A
insert 0 5845 A
insert 0 5846 A
insert 0 5847 A
insert 0 5848 A
insert 0 5849 A
insert 0 5850 A
insert 0 5851 A
insert 0 5852 A
insert 0 5853 A
insert 0 5854 A
insert 0 5855 A
insert 0 5856 A
insert 0 5857 A
insert 0 5858 A
insert 0 5859 A
insert 0 5860 A
insert 0 5861 A
insert 0 5862 A
insert 0 5863 A
insert 0 5864 A
insert 0 5865 A
insert 0 5866 A
insert 0 5867 A
insert 0 5868 A
insert 0 5869 A
insert 0 5870 A
insert 0 5871 A
insert 0 5872 A
insert 0 5873 A
insert 0 5874 A
insert 0 5875 A
insert 0 5876 A
insert 0 5877 A
insert 0 5878 A
insert 0 5879 A
insert 0 5880 A
insert 0 5881 A
insert 0 5882 A
insert 0 5883 A
insert 0 5884 A
insert 0 5885 A
insert 0 5886 A
insert 0 5887 A
insert 0 5888 A
insert 0 5889 A
insert 0 5890 A
insert 0 5891 A
insert 0 5892 A
insert 0 5893 A
insert 0 5894 A
insert 0 5895 A
insert 0 5896 A
insert 0 5897 A
insert 0 5898 A
insert 0 5899 A
insert 0 5900 A
insert 0 5901 A
insert 0 5902 A
insert 0 5903 A
insert 0 5904 A
insert 0 5905 A
insert 0 5906 A
insert 0 5907 A
insert 0 5908 A
insert 0 5909 A
insert 0 5910 A
insert 0 5911 A
insert 0 5912 A
insert 0 5913 A
insert 0 5914 A
insert 0 5915 A
insert 0 5916 A
insert 0 5917 A
insert 0 5918 A
insert 0 5919 A
insert 0 5920 A
insert 0 5921 A
insert 0 5922 A
insert 0 5923 A
insert 0 5924 A
insert 0 5925 A
insert 0 5926 A
insert 0 5927 A
insert 0 5928 A
insert 0 5929 A
insert 0 5930 A
insert 0 5931 A
insert 0 5932 A
insert 0 5933 A
insert 0 5934 A
insert 0 5935 A
insert 0 5936 A
insert 0 5937 A
insert 0 5938 A
insert 0 5939 A
insert 0 5940 A
insert 0 5941 A
insert 0 5942 A
insert 0 5943 A
insert 0 5944 A
insert 0 5945 A
insert 0 5946 A
insert 0 5947 A
insert 0 5948 A
insert 0 5949 A
insert 0 5950 A
insert 0 5951 A
insert 0 5952 A
insert 0 5953 A
insert 0 5954 A
insert 0 5955 A
insert 0 5956 A
insert 0 5957 A
insert 0 5958 A
insert 0 5959 A
insert 0 5960 A
insert 0 5961 A
insert 0 5962 A
insert 0 5963 A
insert 0 5964 A
insert 0 5965 A
insert 0 5966 A
insert 0 5967 A
insert 0 5968 A
insert 0 5969 A
insert 0 5970 A
insert 0 5971 A
insert 0 5972 A
insert 0 5973 A
insert 0 5974 A
insert 0 5975 A
insert 0 5976 A
insert 0 5977 A
insert 0 5978 A
insert 0 5979 A
insert 0 5980 A
insert 0 5981 A
insert 0 5982 A
insert 0 5983 A
insert 0 5984 A
insert 0 5985 A
insert 0 5986 A
insert 0 5987 A
insert 0 5988 A
insert 0 5989 A
insert 0 5990 A
insert 0 5991 A
insert 0 5992 A
insert 0 5993 A
insert 0 5994 A
insert 0 5995 A
insert 0 5996 A
insert 0 5997 A
insert 0 5998 A
insert 0 5999 A
insert 0 6000 A
insert 0 6001 A
insert 0 6002 A
insert 0 6003 A
insert 0 6004 A
insert 0 6005 A
insert 0 6006 A
insert 0 6007 A
insert 0 6008 A
insert 0 6009 A
insert 0 6010 A
insert 0 6011 A
insert 0 6012 A
insert 0 6013 A
insert 0 6014 A
insert 0 6015 A
insert 0 6016 A
insert 0 6017 A
insert 0 6018 A
insert 0 6019 A
insert 0 6020 A
insert 0 6021 A
insert 0 6022 A
insert 0 6023 A
insert 0 6024 A
insert 0 6025 A
insert 0 6026 A
insert 0 6027 A
insert 0 6028 A
insert 0 6029 A
insert 0 6030 A
insert 0 6031 A
insert 0 6032 A
insert 0 6033 A
insert 0 6034 A
insert 0 6035 A
insert 0 6036 A
insert 0 6037 A
insert 0 6038 A
insert 0 6039 A
insert 0 6040 A
insert 0 6041 A
insert 0 6042 A
insert 0 6043 A
insert 0 6044 A
insert 0 6045 A
insert 0 6046 A
insert 0 6047 A
insert 0 6048 A
insert 0 6049 A
insert 0 6050 A
insert 0 6051 A
insert 0 6052 A
insert 0 6053 A
insert 0 6054 A
insert 0 6055 A
insert 0 6056 A
insert 0 6057 A
insert 0 6058 A
insert 0 6059 A
insert 0 6060 A
insert 0 6061 A
insert 0 6062 A
insert 0 6063 A
insert 0 6064 A
insert 0 6065 A
insert 0 6066 A
insert 0 6067 A
insert 0 6068 A
insert 0 6069 A
insert 0 6070 A
insert 0 6071 A
insert 0 6072 A
insert 0 6073 A
insert 0 6074 A
insert 0 6075 A
insert 0 6076 A
insert 0 6077 A
insert 0 6078 A
insert 0 6079 A
insert 0 6080 A
insert 0 6081 A
insert 0 6082 A
insert 0 6083 A
insert 0 6084 A
insert 0 6085 A
insert 0 6086 A
insert 0 6087 A
insert 0 6088 A
insert 0 6089 A
insert 0 6090 A
insert 0 6091 A
insert 0 6092 A
insert 0 6093 A
insert 0 6094 A
insert 0 6095 A
insert 0 6096 A
insert 0 6097 A
insert 0 6098 A
insert 0 6099 A
insert 0 6100 A
insert 0 6101 A
insert 0 6102 A
insert 0 6103 A
insert 0 6104 A
insert 0 6105 A
insert 0 6106 A
insert 0 6107 A
insert 0 6108 A
insert 0 6109 A
insert 0 6110 A
insert 0 6111 A
insert 0 6112 A
insert 0 6113 A
insert 0 6114 A
insert 0 6115 A
insert 0 6116 A
insert 0 6117 A
insert 0 6118 A
insert 0 6119 A
insert 0 6120 A
insert 0 6121 A
insert 0 6122 A
insert 0 6123 A
insert 0 6124 A
insert 0 6125 A
insert 0 6126 A
insert 0 6127 A
insert 0 6128 A
insert 0 6129 A
insert 0 6130 A
insert 0 6131 A
insert 0 6132 A
insert 0 6133 A
insert 0 6134 A
insert 0 6135 A
insert 0 6136 A
insert 0 6137 A
insert 0 6138 A
insert 0 6139 A
insert 0 6140 A
insert 0 6141 A
insert 0 6142 A
insert 0 6143 A
insert 0 6144 A
insert 0 6145 A
insert 0 6146 A
insert 0 6147 A
insert 0 6148 A
insert 0 6149 A
insert 0 6150 A
insert 0 6151 A
insert 0 6152 A
insert 0 6153 A
insert 0 6154 A
insert 0 6155 A
insert 0 6156 A
insert 0 6157 A
insert 0 6158 A
insert 0 6159 A
insert 0 6160 A
insert 0 6161 A
insert 0 6162 A
insert 0 6163 A
insert 0 6164 A
insert 0 6165 A
insert 0 6166 A
insert 0 6167 A
insert 0 6168 A
insert 0 6169 A
insert 0 6170 A
insert 0 6171 A
insert 0 6172 A
insert 0 6173 A
insert 0 6174 A
insert 0 6175 A
insert 0 6176 A
insert 0 6177 A
insert 0 6178 A
insert 0 6179 A
insert 0 6180 A
insert 0 6181 A
insert 0 6182 A
insert 0 6183 A
insert 0 6184 A
insert 0 6185 A
insert 0 6186 A
insert 0 6187 A
insert 0 6188 A
insert 0 6189 A
insert 0 6190 A
insert 0 6191 A
insert 0 6192 A
insert 0 6193 A
insert 0 6194 A
insert 0 6195 A
insert 0 6196 A
insert 0 6197 A
insert 0 6198 A
insert 0 6199 A
insert 0 6200 A
insert 0 6201 A
insert 0 6202 A
insert 0 6203 A
insert 0 6204 A
insert 0 6205 A
insert 0 6206 A
insert 0 6207 A
insert 0 6208 A
insert 0 6209 A
insert 0 6210 A
insert 0 6211 A
insert 0 6212 A
insert 0 6213 A
insert 0 6214 A
insert 0 6215 A
insert 0 6216 A
insert 0 6217 A
insert 0 6218 A
insert 0 6219 A
insert 0 6220 A
insert 0 6221 A
insert 0 6222 A
insert 0 6223 A
insert 0 6224 A
insert 0 6225 A
insert 0 6226 A
insert 0 6227 A
insert 0 6228 A
insert 0 6229 A
insert 0 6230 A
insert 0 6231 A
insert 0 6232 A
insert 0 6233 A
insert 0 6234 A
insert 0 6235 A
insert 0 6236 A
insert 0 6237 A
insert 0 6238 A
insert 0 6239 A
insert 0 6240 A
insert 0 6241 A
insert 0 6242 A
insert 0 6243 A
insert 0 6244 A
insert 0 6245 A
insert 0 6246 A
insert 0 6247 A
insert 0 6248 A
insert 0 6249 A
insert 0 6250 A
insert 0 6251 A
insert 0 6252 A
insert 0 6253 A
insert 0 6254 A
insert 0 6255 A
insert 0 6256 A
insert 0 6257 A
insert 0 6258 A
insert 0 6259 A
insert 0 6260 A
insert 0 6261 A
insert 0 6262 A
insert 0 6263 A
insert 0 6264 A
insert 0 6265 A
insert 0 6266 A
insert 0 6267 A
insert 0 6268 A
insert 0 6269 A
insert 0 6270 A
insert 0 6271 A
insert 0 6272 A
insert 0 6273 A
insert 0 6274 A
insert 0 6275 A
insert 0 6276 A
insert 0 6277 A
insert 0 6278 A
insert 0 6279 A
insert 0 6280 A
insert 0 6281 A
insert 0 6282 A
insert 0 6283 A
insert 0 6284 A
insert 0 6285 A
insert 0 6286 A
insert 0 6287 A
insert 0 6288 A
insert 0 6289 A
insert 0 6290 A
insert 0 6291 A
insert 0 6292 A
insert 0 6293 A
insert 0 6294 A
insert 0 6295 A
insert 0 6296 A
insert 0 6297 A
insert 0 6298 A
insert 0 6299 A
insert 0 6300 A
insert 0 6301 A
insert 0 6302 A
insert 0 6303 A
insert 0 6304 A
insert 0 6305 A
insert 0 6306 A
insert 0 6307 A
insert 0 6308 A
insert 0 6309 A
insert 0 6310 A
insert 0 6311 A
insert 0 6312 A
insert 0 6313 A
insert 0 6314 A
insert 0 6315 A
insert 0 6316 A
insert 0 6317 A
insert 0 6318 A
insert 0 6319 A
insert 0 6320 A
insert 0 6321 A
insert 0 6322 A
insert 0 6323 A
insert 0 6324 A
insert 0 6325 A
insert 0 6326 A
insert 0 6327 A
insert 0 6328 A
insert 0 6329 A
insert 0 6330 A
insert 0 6331 A
insert 0 6332 A
insert 0 6333 A
insert 0 6334 A
insert 0 6335 A
insert 0 6336 A
insert 0 6337 A
insert 0 6338 A
insert 0 6339 A
insert 0 6340 A
insert 0 6341 A
insert 0 6342 A
insert 0 6343 A
insert 0 6344 A
insert 0 6345 A
insert 0 6346 A
insert 0 6347 A
insert 0 6348 A
insert 0 6349 A
insert 0 6350 A
insert 0 6351 A
insert 0 6352 A
insert 0 6353 A
insert 0 6354 A
insert 0 6355 A
insert 0 6356 A
insert 0 6357 A
insert 0 6358 A
insert 0 6359 A
insert 0 6360 A
insert 0 6361 A
insert 0 6362 A
insert 0 6363 A
insert 0 6364 A
insert 0 6365 A
insert 0 6366 A
insert 0 6367 A
insert 0 6368 A
insert 0 6369 A
insert 0 6370 A
insert 0 6371 A
insert 0 6372 A
insert 0 6373 A
insert 0 6374 A
insert 0 6375 A
insert 0 6376 A
insert 0 6377 A
insert 0 6378 A
insert 0 6379 A
insert 0 6380 A
insert 0 6381 A
insert 0 6382 A
insert 0 6383 A
insert 0 6384 A
insert 0 6385 A
insert 0 6386 A
insert 0 6387 A
insert 0 6388 A
insert 0 6389 A
insert 0 6390 A
insert 0 6391 A
insert 0 6392 A
insert 0 6393 A
insert 0 6394 A
insert 0 6395 A
insert 0 6396 A
insert 0 6397 A
insert 0 6398 A
insert 0 6399 A
insert 0 6400 A
insert 0 6401 A
insert 0 6402 A
insert 0 6403 A
insert 0 6404 A
insert 0 6405 A
insert 0 6406 A
insert 0 6407 A
insert 0 6408 A
insert 0 6409 A
insert 0 6410 A
insert 0 6411 A
insert 0 6412 A
insert 0 6413 A
insert 0 6414 A
insert 0 6415 A
insert 0 6416 A
insert 0 6417 A
insert 0 6418 A
insert 0 6419 A
insert 0 6420 A
insert 0 6421 A
insert 0 6422 A
insert 0 6423 A
insert 0 6424 A
insert 0 6425 A
insert 0 6426 A
insert 0 6427 A
insert 0 6428 A
insert 0 6429 A
insert 0 6430 A
insert 0 6431 A
insert 0 6432 A
insert 0 6433 A
insert 0 6434 A
insert 0 6435 A
insert 0 6436 A
insert 0 6437 A
insert 0 6438 A
insert 0 6439 A
insert 0 6440 A
insert 0 6441 A
insert 0 6442 A
insert 0 6443 A
insert 0 6444 A
insert 0 6445 A
insert 0 6446 A
insert 0 6447 A
insert 0 6448 A
insert 0 6449 A
insert 0 6450 A
insert 0 6451 A
insert 0 6452 A
insert 0 6453 A
insert 0 6454 A
insert 0 6455 A
insert 0 6456 A
insert 0 6457 A
insert 0 6458 A
insert 0 6459 A
insert 0 6460 A
insert 0 6461 A
insert 0 6462 A
insert 0 6463 A
insert 0 6464 A
insert 0 6465 A
insert 0 6466 A
insert 0 6467 A
insert 0 6468 A
insert 0 6469 A
insert 0 6470 A
insert 0 6471 A
insert 0 6472 A
insert 0 6473 A
insert 0 6474 A
insert 0 6475 A
insert 0 6476 A
insert 0 6477 A
insert 0 6478 A
insert 0 6479 A
insert 0 6480 A
insert 0 6481 A
insert 0 6482 A
insert 0 6483 A
insert 0 6484 A
insert 0 6485 A
insert 0 6486 A
insert 0 6487 A
insert 0 6488 A
insert 0 6489 A
insert 0 6490 A
insert 0 6491 A
insert 0 6492 A
insert 0 6493 A
insert 0 6494 A
insert 0 6495 A
insert 0 6496 A
insert 0 6497 A
insert 0 6498 A
insert 0 6499 A
insert 0 6500 A
insert 0 6501 A
insert 0 6502 A
insert 0 6503 A
insert 0 6504 A
insert 0 6505 A
insert 0 6506 A
insert 0 6507 A
insert 0 6508 A
insert 0 6509 A
insert 0 6510 A
insert 0 6511 A
insert 0 6512 A
insert 0 6513 A
insert 0 6514 A
insert 0 6515 A
insert 0 6516 A
insert 0 6517 A
insert 0 6518 A
insert 0 6519 A
insert 0 6520 A
insert 0 6521 A
insert 0 6522 A
insert 0 6523 A
insert 0 6524 A
insert 0 6525 A
insert 0 6526 A
insert 0 6527 A
insert 0 6528 A
insert 0 6529 A
insert 0 6530 A
insert 0 6531 A
insert 0 6532 A
insert 0 6533 A
insert 0 6534 A
insert 0 6535 A
insert 0 6536 A
insert 0 6537 A
insert 0 6538 A
insert 0 6539 A
insert 0 6540 A
insert 0 6541 A
insert 0 6542 A
insert 0 6543 A
insert 0 6544 A
insert 0 6545 A
insert 0 6546 A
insert 0 6547 A
insert 0 6548 A
insert 0 6549 A
insert 0 6550 A
insert 0 6551 A
insert 0 6552 A
insert 0 6553 A
insert 0 6554 A
insert 0 6555 A
insert 0 6556 A
insert 0 6557 A
insert 0 6558 A
insert 0 6559 A
insert 0 6560 A
insert 0 6561 A
insert 0 6562 A
insert 0 6563 A
insert 0 6564 A
insert 0 6565 A
insert 0 6566 A
insert 0 6567 A
insert 0 6568 A
insert 0 6569 A
insert 0 6570 A
insert 0 6571 A
insert 0 6572 A
insert 0 6573 A
insert 0 6574 A
insert 0 6575 A
insert 0 6576 A
insert 0 6577 A
insert 0 6578 A
insert 0 6579 A
insert 0 6580 A
insert 0 6581 A
insert 0 6582 A
insert 0 6583 A
insert 0 6584 A
insert 0 6585 A
insert 0 6586 A
insert 0 6587 A
insert 0 6588 A
insert 0 6589 A
insert 0 6590 A
insert 0 6591 A
insert 0 6592 A
insert 0 6593 A
insert 0 6594 A
insert 0 6595 A
insert 0 6596 A
insert 0 6597 A
insert 0 6598 A
insert 0 6599 A
insert 0 6600 A
insert 0 6601 A
insert 0 6602 A
insert 0 6603 A
insert 0 6604 A
insert 0 6605 A
insert 0 6606 A
insert 0 6607 A
insert 0 6608 A
insert 0 6609 A
insert 0 6610 A
insert 0 6611 A
insert 0 6612 A
insert 0 6613 A
insert 0 6614 A
insert 0 6615 A
insert 0 6616 A
insert 0 6617 A
insert 0 6618 A
insert 0 6619 A
insert 0 6620 A
insert 0 6621 A
insert 0 6622 A
insert 0 6623 A
insert 0 6624 A
insert 0 6625 A
insert 0 6626 A
insert 0 6627 A
insert 0 6628 A
insert 0 6629 A
insert 0 6630 A
insert 0 6631 A
insert 0 6632 A
insert 0 6633 A
insert 0 6634 A
insert 0 6635 A
insert 0 6636 A
insert 0 6637 A
insert 0 6638 A
insert 0 6639 A
insert 0 6640 A
insert 0 6641 A
insert 0 6642 A
insert 0 6643 A
insert 0 6644 A
insert 0 6645 A
insert 0 6646 A
insert 0 6647 A
insert 0 6648 A
insert 0 6649 A
insert 0 6650 A
insert 0 6651 A
insert 0 6652 A
insert 0 6653 A
insert 0 6654 A
insert 0 6655 A
insert 0 6656 A
insert 0 6657 A
insert 0 6658 A
insert 0 6659 A
insert 0 6660 A
insert 0 6661 A
insert 0 6662 A
insert 0 6663 A
insert 0 6664 A
insert 0 6665 A
insert 0 6666 A
insert 0 6667 A
insert 0 6668 A
insert 0 6669 A
insert 0 6670 A
insert 0 6671 A
insert 0 6672 A
insert 0 6673 A
insert 0 6674 A
insert 0 6675 A
insert 0 6676 A
insert 0 6677 A
insert 0 6678 A
insert 0 6679 A
insert 0 6680 A
insert 0 6681 A
insert 0 6682 A
insert 0 6683 A
insert 0 6684 A
insert 0 6685 A
insert 0 6686 A
insert 0 6687 A
insert 0 6688 A
insert 0 6689 A
insert 0 6690 A
insert 0 6691 A
insert 0 6692 A
insert 0 6693 A
insert 0 6694 A
insert 0 6695 A
insert 0 6696 A
insert 0 6697 A
insert 0 6698 A
insert 0 6699 A
insert 0 6700 A
insert 0 6701 A
insert 0 6702 A
insert 0 6703 A
insert 0 6704 A
insert 0 6705 A
insert 0 6706 A
insert 0 6707 A
insert 0 6708 A
insert 0 6709 A
insert 0 6710 A
insert 0 6711 A
insert 0 6712 A
insert 0 6713 A
insert 0 6714 A
insert 0 6715 A
insert 0 6716 A
insert 0 6717 A
insert 0 6718 A
insert 0 6719 A
insert 0 6720 A
insert 0 6721 A
insert 0 6722 A
insert 0 6723 A
insert 0 6724 A
insert 0 6725 A
insert 0 6726 A
insert 0 6727 A
insert 0 6728 A
insert 0 6729 A
insert 0 6730 A
insert 0 6731 A
insert 0 6732 A
insert 0 6733 A
insert 0 6734 A
insert 0 6735 A
insert 0 6736 A
insert 0 6737 A
insert 0 6738 A
insert 0 6739 A
insert 0 6740 A
insert 0 6741 A
insert 0 6742 A
insert 0 6743 A
insert 0 6744 A
insert 0 6745 A
insert 0 6746 A
insert 0 6747 A
insert 0 6748 A
insert 0 6749 A
insert 0 6750 A
insert 0 6751 A
insert 0 6752 A
insert 0 6753 A
insert 0 6754 A
insert 0 6755 A
insert 0 6756 A
insert 0 6757 A
insert 0 6758 A
insert 0 6759 A
insert 0 6760 A
insert 0 6761 A
insert 0 6762 A
insert 0 6763 A
insert 0 6764 A
insert 0 6765 A
insert 0 6766 A
insert 0 6767 A
insert 0 6768 A
insert 0 6769 A
insert 0 6770 A
insert 0 6771 A
insert 0 6772 A
insert 0 6773 A
insert 0 6774 A
insert 0 6775 A
insert 0 6776 A
insert 0 6777 A
insert 0 6778 A
insert 0 6779 A
insert 0 6780 A
insert 0 6781 A
insert 0 6782 A
insert 0 6783 A
insert 0 6784 A
insert 0 6785 A
insert 0 6786 A
insert 0 6787 A
insert 0 6788 A
insert 0 6789 A
insert 0 6790 A
insert 0 6791 A
insert 0 6792 A
insert 0 6793 A
insert 0 6794 A
insert 0 6795 A
insert 0 6796 A
insert 0 6797 A
insert 0 6798 A
insert 0 6799 A
insert 0 6800 A
insert 0 6801 A
insert 0 6802 A
insert 0 6803 A
insert 0 6804 A
insert 0 6805 A
insert 0 6806 A
insert 0 6807 A
insert 0 6808 A
insert 0 6809 A
insert 0 6810 A
insert 0 6811 A
insert 0 6812 A
insert 0 6813 A
insert 0 6814 A
insert 0 6815 A
insert 0 6816 A
insert 0 6817 A
insert 0 6818 A
insert 0 6819 A
insert 0 6820 A
insert 0 6821 A
insert 0 6822 A
insert 0 6823 A
insert 0 6824 A
insert 0 6825 A
insert 0 6826 A
insert 0 6827 A
insert 0 6828 A
insert 0 6829 A
insert 0 6830 A
insert 0 6831 A
insert 0 6832 A
insert 0 6833 A
insert 0 6834 A
insert 0 6835 A
insert 0 6836 A
insert 0 6837 A
insert 0 6838 A
insert 0 6839 A
insert 0 6840 A
insert 0 6841 A
insert 0 6842 A
insert 0 6843 A
insert 0 6844 A
insert 0 6845 A
insert 0 6846 A
insert 0 6847 A
insert 0 6848 A
insert 0 6849 A
insert 0 6850 A
insert 0 6851 A
insert 0 6852 A
insert 0 6853 A
insert 0 6854 A
insert 0 6855 A
insert 0 6856 A
insert 0 6857 A
insert 0 6858 A
insert 0 6859 A
insert 0 6860 A
insert 0 6861 A
insert 0 6862 A
insert 0 6863 A
insert 0 6864 A
insert 0 6865 A
insert 0 6866 A
insert 0 6867 A
insert 0 6868 A
insert 0 6869 A
insert 0 6870 A
insert 0 6871 A
insert 0 6872 A
insert 0 6873 A
insert 0 6874 A
insert 0 6875 A
insert 0 6876 A
insert 0 6877 A
insert 0 6878 A
insert 0 6879 A
insert 0 6880 A
insert 0 6881 A
insert 0 6882 A
insert 0 6883 A
insert 0 6884 A
insert 0 6885 A
insert 0 6886 A
insert 0 6887 A
insert 0 6888 A
insert 0 6889 A
insert 0 6890 A
insert 0 6891 A
insert 0 6892 A
insert 0 6893 A
insert 0 6894 A
insert 0 6895 A
insert 0 6896 A
insert 0 6897 A
insert 0 6898 A
insert 0 6899 A
insert 0 6900 A
insert 0 6901 A
insert 0 6902 A
insert 0 6903 A
insert 0 6904 A
insert 0 6905 A
insert 0 6906 A
insert 0 6907 A
insert 0 6908 A
insert 0 6909 A
insert 0 6910 A
insert 0 6911 A
insert 0 6912 A
insert 0 6913 A
insert 0 6914 A
insert 0 6915 A
insert 0 6916 A
insert 0 6917 A
insert 0 6918 A
insert 0 6919 A
insert 0 6920 A
insert 0 6921 A
insert 0 6922 A
insert 0 6923 A
insert 0 6924 A
insert 0 6925 A
insert 0 6926 A
insert 0 6927 A
insert 0 6928 A
insert 0 6929 A
insert 0 6930 A
insert 0 6931 A
insert 0 6932 A
insert 0 6933 A
insert 0 6934 A
insert 0 6935 A
insert 0 6936 A
insert 0 6937 A
insert 0 6938 A
insert 0 6939 A
insert 0 6940 A
insert 0 6941 A
insert 0 6942 A
insert 0 6943 A
insert 0 6944 A
insert 0 6945 A
insert 0 6946 A
insert 0 6947 A
insert 0 6948 A
insert 0 6949 A
insert 0 6950 A
insert 0 6951 A
insert 0 6952 A
insert 0 6953 A
insert 0 6954 A
insert 0 6955 A
insert 0 6956 A
insert 0 6957 A
insert 0 6958 A
insert 0 6959 A
insert 0 6960 A
insert 0 6961 A
insert 0 6962 A
insert 0 6963 A
insert 0 6964 A
insert 0 6965 A
insert 0 6966 A
insert 0 6967 A
insert 0 6968 A
insert 0 6969 A
insert 0 6970 A
insert 0 6971 A
insert 0 6972 A
insert 0 6973 A
insert 0 6974 A
insert 0 6975 A
insert 0 6976 A
insert 0 6977 A
insert 0 6978 A
insert 0 6979 A
insert 0 6980 A
insert 0 6981 A
insert 0 6982 A
insert 0 6983 A
insert 0 6984 A
insert 0 6985 A
insert 0 6986 A
insert 0 6987 A
insert 0 6988 A
insert 0 6989 A
insert 0 6990 A
insert 0 6991 A
insert 0 6992 A
insert 0 6993 A
insert 0 6994 A
insert 0 6995 A
insert 0 6996 A
insert 0 6997 A
insert 0 6998 A
insert 0 6999 A
insert 0 7000 A
insert 0 7001 A
insert 0 7002 A
insert 0 7003 A
insert 0 7004 A
insert 0 7005 A
insert 0 7006 A
insert 0 7007 A
insert 0 7008 A
insert 0 7009 A
insert 0 7010 A
insert 0 7011 A
insert 0 7012 A
insert 0 7013 A
insert 0 7014 A
insert 0 7015 A
insert 0 7016 A
insert 0 7017 A
insert 0 7018 A
insert 0 7019 A
insert 0 7020 A
insert 0 7021 A
insert 0 7022 A
insert 0 7023 A
insert 0 7024 A
insert 0 7025 A
insert 0 7026 A
insert 0 7027 A
insert 0 7028 A
insert 0 7029 A
insert 0 7030 A
insert 0 7031 A
insert 0 7032 A
insert 0 7033 A
insert 0 7034 A
insert 0 7035 A
insert 0 7036 A
insert 0 7037 A
insert 0 7038 A
insert 0 7039 A
insert 0 7040 A
insert 0 7041 A
insert 0 7042 A
insert 0 7043 A
insert 0 7044 A
insert 0 7045 A
insert 0 7046 A
insert 0 7047 A
insert 0 7048 A
insert 0 7049 A
insert 0 7050 A
insert 0 7051 A
insert 0 7052 A
insert 0 7053 A
insert 0 7054 A
insert 0 7055 A
insert 0 7056 A
insert 0 7057 A
insert 0 7058 A
insert 0 7059 A
insert 0 7060 A
insert 0 7061 A
insert 0 7062 A
insert 0 7063 A
insert 0 7064 A
insert 0 7065 A
insert 0 7066 A
insert 0 7067 A
insert 0 7068 A
insert 0 7069 A
insert 0 7070 A
insert 0 7071 A
insert 0 7072 A
insert 0 7073 A
insert 0 7074 A
insert 0 7075 A
insert 0 7076 A
insert 0 7077 A
insert 0 7078 A
insert 0 7079 A
insert 0 7080 A
insert 0 7081 A
insert 0 7082 A
insert 0 7083 A
insert 0 7084 A
insert 0 7085 A
insert 0 7086 A
insert 0 7087 A
insert 0 7088 A
insert 0 7089 A
insert 0 7090 A
insert 0 7091 A
insert 0 7092 A
insert 0 7093 A
insert 0 7094 A
insert 0 7095 A
insert 0 7096 A
insert 0 7097 A
insert 0 7098 A
insert 0 7099 A
insert 0 7100 A
insert 0 7101 A
insert 0 7102 A
insert 0 7103 A
insert 0 7104 A
insert 0 7105 A
insert 0 7106 A
insert 0 7107 A
insert 0 7108 A
insert 0 7109 A
insert 0 7110 A
insert 0 7111 A
insert 0 7112 A
insert 0 7113 A
insert 0 7114 A
insert 0 7115 A
insert 0 7116 A
insert 0 7117 A
insert 0 7118 A
insert 0 7119 A
insert 0 7120 A
insert 0 7121 A
insert 0 7122 A
insert 0 7123 A
insert 0 7124 A
insert 0 7125 A
insert 0 7126 A
insert 0 7127 A
insert 0 7128 A
insert 0 7129 A
insert 0 7130 A
insert 0 7131 A
insert 0 7132 A
insert 0 7133 A
insert 0 7134 A
insert 0 7135 A
insert 0 7136 A
insert 0 7137 A
insert 0 7138 A
insert 0 7139 A
insert 0 7140 A
insert 0 7141 A
insert 0 7142 A
insert 0 7143 A
insert 0 7144 A
insert 0 7145 A
insert 0 7146 A
insert 0 7147 A
insert 0 7148 A
insert 0 7149 A
insert 0 7150 A
insert 0 7151 A
insert 0 7152 A
insert 0 7153 A
insert 0 7154 A
insert 0 7155 A
insert 0 7156 A
insert 0 7157 A
insert 0 7158 A
insert 0 7159 A
insert 0 7160 A
insert 0 7161 A
insert 0 7162 A
insert 0 7163 A
insert 0 7164 A
insert 0 7165 A
insert 0 7166 A
insert 0 7167 A
insert 0 7168 A
insert 0 7169 A
insert 0 7170 A
insert 0 7171 A
insert 0 7172 A
insert 0 7173 A
insert 0 7174 A
insert 0 7175 A
insert 0 7176 A
insert 0 7177 A
insert 0 7178 A
insert 0 7179 A
insert 0 7180 A
insert 0 7181 A
insert 0 7182 A
insert 0 7183 A
insert 0 7184 A
insert 0 7185 A
insert 0 7186 A
insert 0 7187 A
insert 0 7188 A
insert 0 7189 A
insert 0 7190 A
insert 0 7191 A
insert 0 7192 A
insert 0 7193 A
insert 0 7194 A
insert 0 7195 A
insert 0 7196 A
insert 0 7197 A
insert 0 7198 A
insert 0 7199 A
insert 0 7200 A
insert 0 7201 A
insert 0 7202 A
insert 0 7203 A
insert 0 7204 A
insert 0 7205 A
insert 0 7206 A
insert 0 7207 A
insert 0 7208 A
insert 0 7209 A
insert 0 7210 A
insert 0 7211 A
insert 0 7212 A
insert 0 7213 A
insert 0 7214 A
insert 0 7215 A
insert 0 7216 A
insert 0 7217 A
insert 0 7218 A
insert 0 7219 A
insert 0 7220 A
insert 0 7221 A
insert 0 7222 A
insert 0 7223 A
insert 0 7224 A
insert 0 7225 A
insert 0 7226 A
insert 0 7227 A
insert 0 7228 A
insert 0 7229 A
insert 0 7230 A
insert 0 7231 A
insert 0 7232 A
insert 0 7233 A
insert 0 7234 A
insert 0 7235 A
insert 0 7236 A
insert 0 7237 A
insert 0 7238 A
insert 0 7239 A
insert 0 7240 A
insert 0 7241 A
insert 0 7242 A
insert 0 7243 A
insert 0 7244 A
insert 0 7245 A
insert 0 7246 A
insert 0 7247 A
insert 0 7248 A
insert 0 7249 A
insert 0 7250 A
insert 0 7251 A
insert 0 7252 A
insert 0 7253 A
insert 0 7254 A
insert 0 7255 A
insert 0 7256 A
insert 0 7257 A
insert 0 7258 A
insert 0 7259 A
insert 0 7260 A
insert 0 7261 A
insert 0 7262 A
insert 0 7263 A
insert 0 7264 A
insert 0 7265 A
insert 0 7266 A
insert 0 7267 A
insert 0 7268 A
insert 0 7269 A
insert 0 7270 A
insert 0 7271 A
insert 0 7272 A
insert 0 7273 A
insert 0 7274 A
insert 0 7275 A
insert 0 7276 A
insert 0 7277 A
insert 0 7278 A
insert 0 7279 A
insert 0 7280 A
insert 0 7281 A
insert 0 7282 A
insert 0 7283 A
insert 0 7284 A
insert 0 7285 A
insert 0 7286 A
insert 0 7287 A
insert 0 7288 A
insert 0 7289 A
insert 0 7290 A
insert 0 7291 A
insert 0 7292 A
insert 0 7293 A
insert 0 7294 A
insert 0 7295 A
insert 0 7296 A
insert 0 7297 A
insert 0 7298 A
insert 0 7299 A
insert 0 7300 A
insert 0 7301 A
insert 0 7302 A
insert 0 7303 A
insert 0 7304 A
insert 0 7305 A
insert 0 7306 A
insert 0 7307 A
insert 0 7308 A
insert 0 7309 A
insert 0 7310 A
insert 0 7311 A
insert 0 7312 A
insert 0 7313 A
insert 0 7314 A
insert 0 7315 A
insert 0 7316 A
insert 0 7317 A
insert 0 7318 A
insert 0 7319 A
insert 0 7320 A
insert 0 7321 A
insert 0 7322 A
insert 0 7323 A
insert 0 7324 A
insert 0 7325 A
insert 0 7326 A
insert 0 7327 A
insert 0 7328 A
insert 0 7329 A
insert 0 7330 A
insert 0 7331 A
insert 0 7332 A
insert 0 7333 A
insert 0 7334 A
insert 0 7335 A
insert 0 7336 A
insert 0 7337 A
insert 0 7338 A
insert 0 7339 A
insert 0 7340 A
insert 0 7341 A
insert 0 7342 A
insert 0 7343 A
insert 0 7344 A
insert 0 7345 A
insert 0 7346 A
insert 0 7347 A
insert 0 7348 A
insert 0 7349 A
insert 0 7350 A
insert 0 7351 A
insert 0 7352 A
insert 0 7353 A
insert 0 7354 A
insert 0 7355 A
insert 0 7356 A
insert 0 7357 A
insert 0 7358 A
insert 0 7359 A
insert 0 7360 A
insert 0 7361 A
insert 0 7362 A
insert 0 7363 A
insert 0 7364 A
insert 0 7365 A
insert 0 7366 A
insert 0 7367 A
insert 0 7368 A
insert 0 7369 A
insert 0 7370 A
insert 0 7371 A
insert 0 7372 A
insert 0 7373 A
insert 0 7374 A
insert 0 7375 A
insert 0 7376 A
insert 0 7377 A
insert 0 7378 A
insert 0 7379 A
insert 0 7380 A
insert 0 7381 A
insert 0 7382 A
insert 0 7383 A
insert 0 7384 A
insert 0 7385 A
insert 0 7386 A
insert 0 7387 A
insert 0 7388 A
insert 0 7389 A
insert 0 7390 A
insert 0 7391 A
insert 0 7392 A
insert 0 7393 A
insert 0 7394 A
insert 0 7395 A
insert 0 7396 A
insert 0 7397 A
insert 0 7398 A
insert 0 7399 A
insert 0 7400 A
insert 0 7401 A
insert 0 7402 A
insert 0 7403 A
insert 0 7404 A
insert 0 7405 A
insert 0 7406 A
insert 0 7407 A
insert 0 7408 A
insert 0 7409 A
insert 0 7410 A
insert 0 7411 A
insert 0 7412 A
insert 0 7413 A
insert 0 7414 A
insert 0 7415 A
insert 0 7416 A
insert 0 7417 A
insert 0 7418 A
insert 0 7419 A
insert 0 7420 A
insert 0 7421 A
insert 0 7422 A
insert 0 7423 A
insert 0 7424 A
insert 0 7425 A
insert 0 7426 A
insert 0 7427 A
insert 0 7428 A
insert 0 7429 A
insert 0 7430 A
insert 0 7431 A
insert 0 7432 A
insert 0 7433 A
insert 0 7434 A
insert 0 7435 A
insert 0 7436 A
insert 0 7437 A
insert 0 7438 A
insert 0 7439 A
insert 0 7440 A
insert 0 7441 A
insert 0 7442 A
insert 0 7443 A
insert 0 7444 A
insert 0 7445 A
insert 0 7446 A
insert 0 7447 A
insert 0 7448 A
insert 0 7449 A
insert 0 7450 A
insert 0 7451 A
insert 0 7452 A
insert 0 7453 A
insert 0 7454 A
insert 0 7455 A
insert 0 7456 A
insert 0 7457 A
insert 0 7458 A
insert 0 7459 A
insert 0 7460 A
insert 0 7461 A
insert 0 7462 A
insert 0 7463 A
insert 0 7464 A
insert 0 7465 A
insert 0 7466 A
insert 0 7467 A
insert 0 7468 A
insert 0 7469 A
insert 0 7470 A
insert 0 7471 A
insert 0 7472 A
insert 0 7473 A
insert 0 7474 A
insert 0 7475 A
insert 0 7476 A
insert 0 7477 A
insert 0 7478 A
insert 0 7479 A
insert 0 7480 A
insert 0 7481 A
insert 0 7482 A
insert 0 7483 A
insert 0 7484 A
insert 0 7485 A
insert 0 7486 A
insert 0 7487 A
insert 0 7488 A
insert 0 7489 A
insert 0 7490 A
insert 0 7491 A
insert 0 7492 A
insert 0 7493 A
insert 0 7494 A
insert 0 7495 A
insert 0 7496 A
insert 0 7497 A
insert 0 7498 A
insert 0 7499 A
insert 0 7500 A
insert 0 7501 A
insert 0 7502 A
insert 0 7503 A
insert 0 7504 A
insert 0 7505 A
insert 0 7506 A
insert 0 7507 A
insert 0 7508 A
insert 0 7509 A
insert 0 7510 A
insert 0 7511 A
insert 0 7512 A
insert 0 7513 A
insert 0 7514 A
insert 0 7515 A
insert 0 7516 A
insert 0 7517 A
insert 0 7518 A
insert 0 7519 A
insert 0 7520 A
insert 0 7521 A
insert 0 7522 A
insert 0 7523 A
insert 0 7524 A
insert 0 7525 A
insert 0 7526 A
insert 0 7527 A
insert 0 7528 A
insert 0 7529 A
insert 0 7530 A
insert 0 7531 A
insert 0 7532 A
insert 0 7533 A
insert 0 7534 A
insert 0 7535 A
insert 0 7536 A
insert 0 7537 A
insert 0 7538 A
insert 0 7539 A
insert 0 7540 A
insert 0 7541 A
insert 0 7542 A
insert 0 7543 A
insert 0 7544 A
insert 0 7545 A
insert 0 7546 A
insert 0 7547 A
insert 0 7548 A
insert 0 7549 A
insert 0 7550 A
insert 0 7551 A
insert 0 7552 A
insert 0 7553 A
insert 0 7554 A
insert 0 7555 A
insert 0 7556 A
insert 0 7557 A
insert 0 7558 A
insert 0 7559 A
insert 0 7560 A
insert 0 7561 A
insert 0 7562 A
insert 0 7563 A
insert 0 7564 A
insert 0 7565 A
insert 0 7566 A
insert 0 7567 A
insert 0 7568 A
insert 0 7569 A
insert 0 7570 A
insert 0 7571 A
insert 0 7572 A
insert 0 7573 A
insert 0 7574 A
insert 0 7575 A
insert 0 7576 A
insert 0 7577 A
insert 0 7578 A
insert 0 7579 A
insert 0 7580 A
insert 0 7581 A
insert 0 7582 A
insert 0 7583 A
insert 0 7584 A
insert 0 7585 A
insert 0 7586 A
insert 0 7587 A
insert 0 7588 A
insert 0 7589 A
insert 0 7590 A
insert 0 7591 A
insert 0 7592 A
insert 0 7593 A
insert 0 7594 A
insert 0 7595 A
insert 0 7596 A
insert 0 7597 A
insert 0 7598 A
insert 0 7599 A
insert 0 7600 A
insert 0 7601 A
insert 0 7602 A
insert 0 7603 A
insert 0 7604 A
insert 0 7605 A
insert 0 7606 A
insert 0 7607 A
insert 0 7608 A
insert 0 7609 A
insert 0 7610 A
insert 0 7611 A
insert 0 7612 A
insert 0 7613 A
insert 0 7614 A
insert 0 7615 A
insert 0 7616 A
insert 0 7617 A
insert 0 7618 A
insert 0 7619 A
insert 0 7620 A
insert 0 7621 A
insert 0 7622 A
insert 0 7623 A
insert 0 7624 A
insert 0 7625 A
insert 0 7626 A
insert 0 7627 A
insert 0 7628 A
insert 0 7629 A
insert 0 7630 A
insert 0 7631 A
insert 0 7632 A
insert 0 7633 A
insert 0 7634 A
insert 0 7635 A
insert 0 7636 A
insert 0 7637 A
insert 0 7638 A
insert 0 7639 A
insert 0 7640 A
insert 0 7641 A
insert 0 7642 A
insert 0 7643 A
insert 0 7644 A
insert 0 7645 A
insert 0 7646 A
insert 0 7647 A
insert 0 7648 A
insert 0 7649 A
insert 0 7650 A
insert 0 7651 A
insert 0 7652 A
insert 0 7653 A
insert 0 7654 A
insert 0 7655 A
insert 0 7656 A
insert 0 7657 A
insert 0 7658 A
insert 0 7659 A
insert 0 7660 A
insert 0 7661 A
insert 0 7662 A
insert 0 7663 A
insert 0 7664 A
insert 0 7665 A
insert 0 7666 A
insert 0 7667 A
insert 0 7668 A
insert 0 7669 A
insert 0 7670 A
insert 0 7671 A
insert 0 7672 A
insert 0 7673 A
insert 0 7674 A
insert 0 7675 A
insert 0 7676 A
insert 0 7677 A
insert 0 7678 A
insert 0 7679 A
insert 0 7680 A
insert 0 7681 A
insert 0 7682 A
insert 0 7683 A
insert 0 7684 A
insert 0 7685 A
insert 0 7686 A
insert 0 7687 A
insert 0 7688 A
insert 0 7689 A
insert 0 7690 A
insert 0 7691 A
insert 0 7692 A
insert 0 7693 A
insert 0 7694 A
insert 0 7695 A
insert 0 7696 A
insert 0 7697 A
insert 0 7698 A
insert 0 7699 A
insert 0 7700 A
insert 0 7701 A
insert 0 7702 A
insert 0 7703 A
insert 0 7704 A
insert 0 7705 A
insert 0 7706 A
insert 0 7707 A
insert 0 7708 A
insert 0 7709 A
insert 0 7710 A
insert 0 7711 A
insert 0 7712 A
insert 0 7713 A
insert 0 7714 A
insert 0 7715 A
insert 0 7716 A
insert 0 7717 A
insert 0 7718 A
insert 0 7719 A
insert 0 7720 A
insert 0 7721 A
insert 0 7722 A
insert 0 7723 A
insert 0 7724 A
insert 0 7725 A
insert 0 7726 A
insert 0 7727 A
insert 0 7728 A
insert 0 7729 A
insert 0 7730 A
insert 0 7731 A
insert 0 7732 A
insert 0 7733 A
insert 0 7734 A
insert 0 7735 A
insert 0 7736 A
insert 0 7737 A
insert 0 7738 A
insert 0 7739 A
insert 0 7740 A
insert 0 7741 A
insert 0 7742 A
insert 0 7743 A
insert 0 7744 A
insert 0 7745 A
insert 0 7746 A
insert 0 7747 A
insert 0 7748 A
insert 0 7749 A
insert 0 7750 A
insert 0 7751 A
insert 0 7752 A
insert 0 7753 A
insert 0 7754 A
insert 0 7755 A
insert 0 7756 A
insert 0 7757 A
insert 0 7758 A
insert 0 7759 A
insert 0 7760 A
insert 0 7761 A
insert 0 7762 A
insert 0 7763 A
insert 0 7764 A
insert 0 7765 A
insert 0 7766 A
insert 0 7767 A
insert 0 7768 A
insert 0 7769 A
insert 0 7770 A
insert 0 7771 A
insert 0 7772 A
insert 0 7773 A
insert 0 7774 A
insert 0 7775 A
insert 0 7776 A
insert 0 7777 A
insert 0 7778 A
insert 0 7779 A
insert 0 7780 A
insert 0 7781 A
insert 0 7782 A
insert 0 7783 A
insert 0 7784 A
insert 0 7785 A
insert 0 7786 A
insert 0 7787 A
insert 0 7788 A
insert 0 7789 A
insert 0 7790 A
insert 0 7791 A
insert 0 7792 A
insert 0 7793 A
insert 0 7794 A
insert 0 7795 A
insert 0 7796 A
insert 0 7797 A
insert 0 7798 A
insert 0 7799 A
insert 0 7800 A
insert 0 7801 A
insert 0 7802 A
insert 0 7803 A
insert 0 7804 A
insert 0 7805 A
insert 0 7806 A
insert 0 7807 A
insert 0 7808 A
insert 0 7809 A
insert 0 7810 A
insert 0 7811 A
insert 0 7812 A
insert 0 7813 A
insert 0 7814 A
insert 0 7815 A
insert 0 7816 A
insert 0 7817 A
insert 0 7818 A
insert 0 7819 A
insert 0 7820 A
insert 0 7821 A
insert 0 7822 A
insert 0 7823 A
insert 0 7824 A
insert 0 7825 A
insert 0 7826 A
insert 0 7827 A
insert 0 7828 A
insert 0 7829 A
insert 0 7830 A
insert 0 7831 A
insert 0 7832 A
insert 0 7833 A
insert 0 7834 A
insert 0 7835 A
insert 0 7836 A
insert 0 7837 A
insert 0 7838 A
insert 0 7839 A
insert 0 7840 A
insert 0 7841 A
insert 0 7842 A
insert 0 7843 A
insert 0 7844 A
insert 0 7845 A
insert 0 7846 A
insert 0 7847 A
insert 0 7848 A
insert 0 7849 A
insert 0 7850 A
insert 0 7851 A
insert 0 7852 A
insert 0 7853 A
insert 0 7854 A
insert 0 7855 A
insert 0 7856 A
insert 0 7857 A
insert 0 7858 A
insert 0 7859 A
insert 0 7860 A
insert 0 7861 A
insert 0 7862 A
insert 0 7863 A
insert 0 7864 A
insert 0 7865 A
insert 0 7866 A
insert 0 7867 A
insert 0 7868 A
insert 0 7869 A
insert 0 7870 A
insert 0 7871 A
insert 0 7872 A
insert 0 7873 A
insert 0 7874 A
insert 0 7875 A
insert 0 7876 A
insert 0 7877 A
insert 0 7878 A
insert 0 7879 A
insert 0 7880 A
insert 0 7881 A
insert 0 7882 A
insert 0 7883 A
insert 0 7884 A
insert 0 7885 A
insert 0 7886 A
insert 0 7887 A
insert 0 7888 A
insert 0 7889 A
insert 0 7890 A
insert 0 7891 A
insert 0 7892 A
insert 0 7893 A
insert 0 7894 A
insert 0 7895 A
insert 0 7896 A
insert 0 7897 A
insert 0 7898 A
insert 0 7899 A
insert 0 7900 A
insert 0 7901 A
insert 0 7902 A
insert 0 7903 A
insert 0 7904 A
insert 0 7905 A
insert 0 7906 A
insert 0 7907 A
insert 0 7908 A
insert 0 7909 A
insert 0 7910 A
insert 0 7911 A
insert 0 7912 A
insert 0 7913 A
insert 0 7914 A
insert 0 7915 A
insert 0 7916 A
insert 0 7917 A
insert 0 7918 A
insert 0 7919 A
insert 0 7920 A
insert 0 7921 A
insert 0 7922 A
insert 0 7923 A
insert 0 7924 A
insert 0 7925 A
insert 0 7926 A
insert 0 7927 A
insert 0 7928 A
insert 0 7929 A
insert 0 7930 A
insert 0 7931 A
insert 0 7932 A
insert 0 7933 A
insert 0 7934 A
insert 0 7935 A
insert 0 7936 A
insert 0 7937 A
insert 0 7938 A
insert 0 7939 A
insert 0 7940 A
insert 0 7941 A
insert 0 7942 A
insert 0 7943 A
insert 0 7944 A
insert 0 7945 A
insert 0 7946 A
insert 0 7947 A
insert 0 7948 A
insert 0 7949 A
insert 0 7950 A
insert 0 7951 A
insert 0 7952 A
insert 0 7953 A
insert 0 7954 A
insert 0 7955 A
insert 0 7956 A
insert 0 7957 A
insert 0 7958 A
insert 0 7959 A
insert 0 7960 A
insert 0 7961 A
insert 0 7962 A
insert 0 7963 A
insert 0 7964 A
insert 0 7965 A
insert 0 7966 A
insert 0 7967 A
insert 0 7968 A
insert 0 7969 A
insert 0 7970 A
insert 0 7971 A
insert 0 7972 A
insert 0 7973 A
insert 0 7974 A
insert 0 7975 A
insert 0 7976 A
insert 0 7977 A
insert 0 7978 A
insert 0 7979 A
insert 0 7980 A
insert 0 7981 A
insert 0 7982 A
insert 0 7983 A
insert 0 7984 A
insert 0 7985 A
insert 0 7986 A
insert 0 7987 A
insert 0 7988 A
insert 0 7989 A
insert 0 7990 A
insert 0 7991 A
insert 0 7992 A
insert 0 7993 A
insert 0 7994 A
insert 0 7995 A
insert 0 7996 A
insert 0 7997 A
insert 0 7998 A
insert 0 7999 A
insert 0 8000 A
insert 0 8001 A
insert 0 8002 A
insert 0 8003 A
insert 0 8004 A
insert 0 8005 A
insert 0 8006 A
insert 0 8007 A
insert 0 8008 A
insert 0 8009 A
insert 0 8010 A
insert 0 8011 A
insert 0 8012 A
insert 0 8013 A
insert 0 8014 A
insert 0 8015 A
insert 0 8016 A
insert 0 8017 A
insert 0 8018 A
insert 0 8019 A
insert 0 8020 A
insert 0 8021 A
insert 0 8022 A
insert 0 8023 A
insert 0 8024 A
insert 0 8025 A
insert 0 8026 A
insert 0 8027 A
insert 0 8028 A
insert 0 8029 A
insert 0 8030 A
insert 0 8031 A
insert 0 8032 A
insert 0 8033 A
insert 0 8034 A
insert 0 8035 A
insert 0 8036 A
insert 0 8037 A
insert 0 8038 A
insert 0 8039 A
insert 0 8040 A
insert 0 8041 A
insert 0 8042 A
insert 0 8043 A
insert 0 8044 A
insert 0 8045 A
insert 0 8046 A
insert 0 8047 A
insert 0 8048 A
insert 0 8049 A
insert 0 8050 A
insert 0 8051 A
insert 0 8052 A
insert 0 8053 A
insert 0 8054 A
insert 0 8055 A
insert 0 8056 A
insert 0 8057 A
insert 0 8058 A
insert 0 8059 A
insert 0 8060 A
insert 0 8061 A
insert 0 8062 A
insert 0 8063 A
insert 0 8064 A
insert 0 8065 A
insert 0 8066 A
insert 0 8067 A
insert 0 8068 A
insert 0 8069 A
insert 0 8070 A
insert 0 8071 A
insert 0 8072 A
insert 0 8073 A
insert 0 8074 A
insert 0 8075 A
insert 0 8076 A
insert 0 8077 A
insert 0 8078 A
insert 0 8079 A
insert 0 8080 A
insert 0 8081 A
insert 0 8082 A
insert 0 8083 A
insert 0 8084 A
insert 0 8085 A
insert 0 8086 A
insert 0 8087 A
insert 0 8088 A
insert 0 8089 A
insert 0 8090 A
insert 0 8091 A
insert 0 8092 A
insert 0 8093 A
insert 0 8094 A
insert 0 8095 A
insert 0 8096 A
insert 0 8097 A
insert 0 8098 A
insert 0 8099 A
insert 0 8100 A
insert 0 8101 A
insert 0 8102 A
insert 0 8103 A
insert 0 8104 A
insert 0 8105 A
insert 0 8106 A
insert 0 8107 A
insert 0 8108 A
insert 0 8109 A
insert 0 8110 A
insert 0 8111 A
insert 0 8112 A
insert 0 8113 A
insert 0 8114 A
insert 0 8115 A
insert 0 8116 A
insert 0 8117 A
insert 0 8118 A
insert 0 8119 A
insert 0 8120 A
insert 0 8121 A
insert 0 8122 A
insert 0 8123 A
insert 0 8124 A
insert 0 8125 A
insert 0 8126 A
insert 0 8127 A
insert 0 8128 A
insert 0 8129 A
insert 0 8130 A
insert 0 8131 A
insert 0 8132 A
insert 0 8133 A
insert 0 8134 A
insert 0 8135 A
insert 0 8136 A
insert 0 8137 A
insert 0 8138 A
insert 0 8139 A
insert 0 8140 A
insert 0 8141 A
insert 0 8142 A
insert 0 8143 A
insert 0 8144 A
insert 0 8145 A
insert 0 8146 A
insert 0 8147 A
insert 0 8148 A
insert 0 8149 A
insert 0 8150 A
insert 0 8151 A
insert 0 8152 A
insert 0 8153 A
insert 0 8154 A
insert 0 8155 A
insert 0 8156 A
insert 0 8157 A
insert 0 8158 A
insert 0 8159 A
insert 0 8160 A
insert 0 8161 A
insert 0 8162 A
insert 0 8163 A
insert 0 8164 A
insert 0 8165 A
insert 0 8166 A
insert 0 8167 A
insert 0 8168 A
insert 0 8169 A
insert 0 8170 A
insert 0 8171 A
insert 0 8172 A
insert 0 8173 A
insert 0 8174 A
insert 0 8175 A
insert 0 8176 A
insert 0 8177 A
insert 0 8178 A
insert 0 8179 A
insert 0 8180 A
insert 0 8181 A
insert 0 8182 A
insert 0 8183 A
insert 0 8184 A
insert 0 8185 A
insert 0 8186 A
insert 0 8187 A
insert 0 8188 A
insert 0 8189 A
insert 0 8190 A
insert 0 8191 A
insert 0 8192 A
insert 0 8193 A
insert 0 8194 A
insert 0 8195 A
insert 0 8196 A
insert 0 8197 A
insert 0 8198 A
insert 0 8199 A
insert 0 8200 A
insert 0 8201 A
insert 0 8202 A
insert 0 8203 A
insert 0 8204 A
insert 0 8205 A
insert 0 8206 A
insert 0 8207 A
insert 0 8208 A
insert 0 8209 A
insert 0 8210 A
insert 0 8211 A
insert 0 8212 A
insert 0 8213 A
insert 0 8214 A
insert 0 8215 A
insert 0 8216 A
insert 0 8217 A
insert 0 8218 A
insert 0 8219 A
insert 0 8220 A
insert 0 8221 A
insert 0 8222 A
insert 0 8223 A
insert 0 8224 A
insert 0 8225 A
insert 0 8226 A
insert 0 8227 A
insert 0 8228 A
insert 0 8229 A
insert 0 8230 A
insert 0 8231 A
insert 0 8232 A
insert 0 8233 A
insert 0 8234 A
insert 0 8235 A
insert 0 8236 A
insert 0 8237 A
insert 0 8238 A
insert 0 8239 A
insert 0 8240 A
insert 0 8241 A
insert 0 8242 A
insert 0 8243 A
insert 0 8244 A
insert 0 8245 A
insert 0 8246 A
insert 0 8247 A
insert 0 8248 A
insert 0 8249 A
insert 0 8250 A
insert 0 8251 A
insert 0 8252 A
insert 0 8253 A
insert 0 8254 A
insert 0 8255 A
insert 0 8256 A
insert 0 8257 A
insert 0 8258 A
insert 0 8259 A
insert 0 8260 A
insert 0 8261 A
insert 0 8262 A
insert 0 8263 A
insert 0 8264 A
insert 0 8265 A
insert 0 8266 A
insert 0 8267 A
insert 0 8268 A
insert 0 8269 A
insert 0 8270 A
insert 0 8271 A
insert 0 8272 A
insert 0 8273 A
insert 0 8274 A
insert 0 8275 A
insert 0 8276 A
insert 0 8277 A
insert 0 8278 A
insert 0 8279 A
insert 0 8280 A
insert 0 8281 A
insert 0 8282 A
insert 0 8283 A
insert 0 8284 A
insert 0 8285 A
insert 0 8286 A
insert 0 8287 A
insert 0 8288 A
insert 0 8289 A
insert 0 8290 A
insert 0 8291 A
insert 0 8292 A
insert 0 8293 A
insert 0 8294 A
insert 0 8295 A
insert 0 8296 A
insert 0 8297 A
insert 0 8298 A
insert 0 8299 A
insert 0 8300 A
insert 0 8301 A
insert 0 8302 A
insert 0 8303 A
insert 0 8304 A
insert 0 8305 A
insert 0 8306 A
insert 0 8307 A
insert 0 8308 A
insert 0 8309 A
insert 0 8310 A
insert 0 8311 A
insert 0 8312 A
insert 0 8313 A
insert 0 8314 A
insert 0 8315 A
insert 0 8316 A
insert 0 8317 A
insert 0 8318 A
insert 0 8319 A
insert 0 8320 A
insert 0 8321 A
insert 0 8322 A
insert 0 8323 A
insert 0 8324 A
insert 0 8325 A
insert 0 8326 A
insert 0 8327 A
insert 0 8328 A
insert 0 8329 A
insert 0 8330 A
insert 0 8331 A
insert 0 8332 A
insert 0 8333 A
insert 0 8334 A
insert 0 8335 A
insert 0 8336 A
insert 0 8337 A
insert 0 8338 A
insert 0 8339 A
insert 0 8340 A
insert 0 8341 A
insert 0 8342 A
insert 0 8343 A
insert 0 8344 A
insert 0 8345 A
insert 0 8346 A
insert 0 8347 A
insert 0 8348 A
insert 0 8349 A
insert 0 8350 A
insert 0 8351 A
insert 0 8352 A
insert 0 8353 A
insert 0 8354 A
insert 0 8355 A
insert 0 8356 A
insert 0 8357 A
insert 0 8358 A
insert 0 8359 A
insert 0 8360 A
insert 0 8361 A
insert 0 8362 A
insert 0 8363 A
insert 0 8364 A
insert 0 8365 A
insert 0 8366 A
insert 0 8367 A
insert 0 8368 A
insert 0 8369 A
insert 0 8370 A
insert 0 8371 A
insert 0 8372 A
insert 0 8373 A
insert 0 8374 A
insert 0 8375 A
insert 0 8376 A
insert 0 8377 A
insert 0 8378 A
insert 0 8379 A
insert 0 8380 A
insert 0 8381 A
insert 0 8382 A
insert 0 8383 A
insert 0 8384 A
insert 0 8385 A
insert 0 8386 A
insert 0 8387 A
insert 0 8388 A
insert 0 8389 A
insert 0 8390 A
insert 0 8391 A
insert 0 8392 A
insert 0 8393 A
insert 0 8394 A
insert 0 8395 A
insert 0 8396 A
insert 0 8397 A
insert 0 8398 A
insert 0 8399 A
insert 0 8400 A
insert 0 8401 A
insert 0 8402 A
insert 0 8403 A
insert 0 8404 A
insert 0 8405 A
insert 0 8406 A
insert 0 8407 A
insert 0 8408 A
insert 0 8409 A
insert 0 8410 A
insert 0 8411 A
insert 0 8412 A
insert 0 8413 A
insert 0 8414 A
insert 0 8415 A
insert 0 8416 A
insert 0 8417 A
insert 0 8418 A
insert 0 8419 A
insert 0 8420 A
insert 0 8421 A
insert 0 8422 A
insert 0 8423 A
insert 0 8424 A
insert 0 8425 A
insert 0 8426 A
insert 0 8427 A
insert 0 8428 A
insert 0 8429 A
insert 0 8430 A
insert 0 8431 A
insert 0 8432 A
insert 0 8433 A
insert 0 8434 A
insert 0 8435 A
insert 0 8436 A
insert 0 8437 A
insert 0 8438 A
insert 0 8439 A
insert 0 8440 A
insert 0 8441 A
insert 0 8442 A
insert 0 8443 A
insert 0 8444 A
insert 0 8445 A
insert 0 8446 A
insert 0 8447 A
insert 0 8448 A
insert 0 8449 A
insert 0 8450 A
insert 0 8451 A
insert 0 8452 A
insert 0 8453 A
insert 0 8454 A
insert 0 8455 A
insert 0 8456 A
insert 0 8457 A
insert 0 8458 A
insert 0 8459 A
insert 0 8460 A
insert 0 8461 A
insert 0 8462 A
insert 0 8463 A
insert 0 8464 A
insert 0 8465 A
insert 0 8466 A
insert 0 8467 A
insert 0 8468 A
insert 0 8469 A
insert 0 8470 A
insert 0 8471 A
insert 0 8472 A
insert 0 8473 A
insert 0 8474 A
insert 0 8475 A
insert 0 8476 A
insert 0 8477 A
insert 0 8478 A
insert 0 8479 A
insert 0 8480 A
insert 0 8481 A
insert 0 8482 A
insert 0 8483 A
insert 0 8484 A
insert 0 8485 A
insert 0 8486 A
insert 0 8487 A
insert 0 8488 A
insert 0 8489 A
insert 0 8490 A
insert 0 8491 A
insert 0 8492 A
insert 0 8493 A
insert 0 8494 A
insert 0 8495 A
insert 0 8496 A
insert 0 8497 A
insert 0 8498 A
insert 0 8499 A
insert 0 8500 A
insert 0 8501 A
insert 0 8502 A
insert 0 8503 A
insert 0 8504 A
insert 0 8505 A
insert 0 8506 A
insert 0 8507 A
insert 0 8508 A
insert 0 8509 A
insert 0 8510 A
insert 0 8511 A
insert 0 8512 A
insert 0 8513 A
insert 0 8514 A
insert 0 8515 A
insert 0 8516 A
insert 0 8517 A
insert 0 8518 A
insert 0 8519 A
insert 0 8520 A
insert 0 8521 A
insert 0 8522 A
insert 0 8523 A
insert 0 8524 A
insert 0 8525 A
insert 0 8526 A
insert 0 8527 A
insert 0 8528 A
insert 0 8529 A
insert 0 8530 A
insert 0 8531 A
insert 0 8532 A
insert 0 8533 A
insert 0 8534 A
insert 0 8535 A
insert 0 8536 A
insert 0 8537 A
insert 0 8538 A
insert 0 8539 A
insert 0 8540 A
insert 0 8541 A
insert 0 8542 A
insert 0 8543 A
insert 0 8544 A
insert 0 8545 A
insert 0 8546 A
insert 0 8547 A
insert 0 8548 A
insert 0 8549 A
insert 0 8550 A
insert 0 8551 A
insert 0 8552 A
insert 0 8553 A
insert 0 8554 A
insert 0 8555 A
insert 0 8556 A
insert 0 8557 A
insert 0 8558 A
insert 0 8559 A
insert 0 8560 A
insert 0 8561 A
insert 0 8562 A
insert 0 8563 A
insert 0 8564 A
insert 0 8565 A
insert 0 8566 A
insert 0 8567 A
insert 0 8568 A
insert 0 8569 A
insert 0 8570 A
insert 0 8571 A
insert 0 8572 A
insert 0 8573 A
insert 0 8574 A
insert 0 8575 A
insert 0 8576 A
insert 0 8577 A
insert 0 8578 A
insert 0 8579 A
insert 0 8580 A
insert 0 8581 A
insert 0 8582 A
insert 0 8583 A
insert 0 8584 A
insert 0 8585 A
insert 0 8586 A
insert 0 8587 A
insert 0 8588 A
insert 0 8589 A
insert 0 8590 A
insert 0 8591 A
insert 0 8592 A
insert 0 8593 A
insert 0 8594 A
insert 0 8595 A
insert 0 8596 A
insert 0 8597 A
insert 0 8598 A
insert 0 8599 A
insert 0 8600 A
insert 0 8601 A
insert 0 8602 A
insert 0 8603 A
insert 0 8604 A
insert 0 8605 A
insert 0 8606 A
insert 0 8607 A
insert 0 8608 A
insert 0 8609 A
insert 0 8610 A
insert 0 8611 A
insert 0 8612 A
insert 0 8613 A
insert 0 8614 A
insert 0 8615 A
insert 0 8616 A
insert 0 8617 A
insert 0 8618 A
insert 0 8619 A
insert 0 8620 A
insert 0 8621 A
insert 0 8622 A
insert 0 8623 A
insert 0 8624 A
insert 0 8625 A
insert 0 8626 A
insert 0 8627 A
insert 0 8628 A
insert 0 8629 A
insert 0 8630 A
insert 0 8631 A
insert 0 8632 A
insert 0 8633 A
insert 0 8634 A
insert 0 8635 A
insert 0 8636 A
insert 0 8637 A
insert 0 8638 A
insert 0 8639 A
insert 0 8640 A
insert 0 8641 A
insert 0 8642 A
insert 0 8643 A
insert 0 8644 A
insert 0 8645 A
insert 0 8646 A
insert 0 8647 A
insert 0 8648 A
insert 0 8649 A
insert 0 8650 A
insert 0 8651 A
insert 0 8652 A
insert 0 8653 A
insert 0 8654 A
insert 0 8655 A
insert 0 8656 A
insert 0 8657 A
insert 0 8658 A
insert 0 8659 A
insert 0 8660 A
insert 0 8661 A
insert 0 8662 A
insert 0 8663 A
insert 0 8664 A
insert 0 8665 A
insert 0 8666 A
insert 0 8667 A
insert 0 8668 A
insert 0 8669 A
insert 0 8670 A
insert 0 8671 A
insert 0 8672 A
insert 0 8673 A
insert 0 8674 A
insert 0 8675 A
insert 0 8676 A
insert 0 8677 A
insert 0 8678 A
insert 0 8679 A
insert 0 8680 A
insert 0 8681 A
insert 0 8682 A
insert 0 8683 A
insert 0 8684 A
insert 0 8685 A
insert 0 8686 A
insert 0 8687 A
insert 0 8688 A
insert 0 8689 A
insert 0 8690 A
insert 0 8691 A
insert 0 8692 A
insert 0 8693 A
insert 0 8694 A
insert 0 8695 A
insert 0 8696 A
insert 0 8697 A
insert 0 8698 A
insert 0 8699 A
insert 0 8700 A
insert 0 8701 A
insert 0 8702 A
insert 0 8703 A
insert 0 8704 A
insert 0 8705 A
insert 0 8706 A
insert 0 8707 A
insert 0 8708 A
insert 0 8709 A
insert 0 8710 A
insert 0 8711 A
insert 0 8712 A
insert 0 8713 A
insert 0 8714 A
insert 0 8715 A
insert 0 8716 A
insert 0 8717 A
insert 0 8718 A
insert 0 8719 A
insert 0 8720 A
insert 0 8721 A
insert 0 8722 A
insert 0 8723 A
insert 0 8724 A
insert 0 8725 A
insert 0 8726 A
insert 0 8727 A
insert 0 8728 A
insert 0 8729 A
insert 0 8730 A
insert 0 8731 A
insert 0 8732 A
insert 0 8733 A
insert 0 8734 A
insert 0 8735 A
insert 0 8736 A
insert 0 8737 A
insert 0 8738 A
insert 0 8739 A
insert 0 8740 A
insert 0 8741 A
insert 0 8742 A
insert 0 8743 A
insert 0 8744 A
insert 0 8745 A
insert 0 8746 A
insert 0 8747 A
insert 0 8748 A
insert 0 8749 A
insert 0 8750 A
insert 0 8751 A
insert 0 8752 A
insert 0 8753 A
insert 0 8754 A
insert 0 8755 A
insert 0 8756 A
insert 0 8757 A
insert 0 8758 A
insert 0 8759 A
insert 0 8760 A
insert 0 8761 A
insert 0 8762 A
insert 0 8763 A
insert 0 8764 A
insert 0 8765 A
insert 0 8766 A
insert 0 8767 A
insert 0 8768 A
insert 0 8769 A
insert 0 8770 A
insert 0 8771 A
insert 0 8772 A
insert 0 8773 A
insert 0 8774 A
insert 0 8775 A
insert 0 8776 A
insert 0 8777 A
insert 0 8778 A
insert 0 8779 A
insert 0 8780 A
insert 0 8781 A
insert 0 8782 A
insert 0 8783 A
insert 0 8784 A
insert 0 8785 A
insert 0 8786 A
insert 0 8787 A
insert 0 8788 A
insert 0 8789 A
insert 0 8790 A
insert 0 8791 A
insert 0 8792 A
insert 0 8793 A
insert 0 8794 A
insert 0 8795 A
insert 0 8796 A
insert 0 8797 A
insert 0 8798 A
insert 0 8799 A
insert 0 8800 A
insert 0 8801 A
insert 0 8802 A
insert 0 8803 A
insert 0 8804 A
insert 0 8805 A
insert 0 8806 A
insert 0 8807 A
insert 0 8808 A
insert 0 8809 A
insert 0 8810 A
insert 0 8811 A
insert 0 8812 A
insert 0 8813 A
insert 0 8814 A
insert 0 8815 A
insert 0 8816 A
insert 0 8817 A
insert 0 8818 A
insert 0 8819 A
insert 0 8820 A
insert 0 8821 A
insert 0 8822 A
insert 0 8823 A
insert 0 8824 A
insert 0 8825 A
insert 0 8826 A
insert 0 8827 A
insert 0 8828 A
insert 0 8829 A
insert 0 8830 A
insert 0 8831 A
insert 0 8832 A
insert 0 8833 A
insert 0 8834 A
insert 0 8835 A
insert 0 8836 A
insert 0 8837 A
insert 0 8838 A
insert 0 8839 A
insert 0 8840 A
insert 0 8841 A
insert 0 8842 A
insert 0 8843 A
insert 0 8844 A
insert 0 8845 A
insert 0 8846 A
insert 0 8847 A
insert 0 8848 A
insert 0 8849 A
insert 0 8850 A
insert 0 8851 A
insert 0 8852 A
insert 0 8853 A
insert 0 8854 A
insert 0 8855 A
insert 0 8856 A
insert 0 8857 A
insert 0 8858 A
insert 0 8859 A
insert 0 8860 A
insert 0 8861 A
insert 0 8862 A
insert 0 8863 A
insert 0 8864 A
insert 0 8865 A
insert 0 8866 A
insert 0 8867 A
insert 0 8868 A
insert 0 8869 A
insert 0 8870 A
insert 0 8871 A
insert 0 8872 A
insert 0 8873 A
insert 0 8874 A
insert 0 8875 A
insert 0 8876 A
insert 0 8877 A
insert 0 8878 A
insert 0 8879 A
insert 0 8880 A
insert 0 8881 A
insert 0 8882 A
insert 0 8883 A
insert 0 8884 A
insert 0 8885 A
insert 0 8886 A
insert 0 8887 A
insert 0 8888 A
insert 0 8889 A
insert 0 8890 A
insert 0 8891 A
insert 0 8892 A
insert 0 8893 A
insert 0 8894 A
insert 0 8895 A
insert 0 8896 A
insert 0 8897 A
insert 0 8898 A
insert 0 8899 A
insert 0 8900 A
insert 0 8901 A
insert 0 8902 A
insert 0 8903 A
insert 0 8904 A
insert 0 8905 A
insert 0 8906 A
insert 0 8907 A
insert 0 8908 A
insert 0 8909 A
insert 0 8910 A
insert 0 8911 A
insert 0 8912 A
insert 0 8913 A
insert 0 8914 A
insert 0 8915 A
insert 0 8916 A
insert 0 8917 A
insert 0 8918 A
insert 0 8919 A
insert 0 8920 A
insert 0 8921 A
insert 0 8922 A
insert 0 8923 A
insert 0 8924 A
insert 0 8925 A
insert 0 8926 A
insert 0 8927 A
insert 0 8928 A
insert 0 8929 A
insert 0 8930 A
insert 0 8931 A
insert 0 8932 A
insert 0 8933 A
insert 0 8934 A
insert 0 8935 A
insert 0 8936 A
insert 0 8937 A
insert 0 8938 A
insert 0 8939 A
insert 0 8940 A
insert 0 8941 A
insert 0 8942 A
insert 0 8943 A
insert 0 8944 A
insert 0 8945 A
insert 0 8946 A
insert 0 8947 A
insert 0 8948 A
insert 0 8949 A
insert 0 8950 A
insert 0 8951 A
insert 0 8952 A
insert 0 8953 A
insert 0 8954 A
insert 0 8955 A
insert 0 8956 A
insert 0 8957 A
insert 0 8958 A
insert 0 8959 A
insert 0 8960 A
insert 0 8961 A
insert 0 8962 A
insert 0 8963 A
insert 0 8964 A
insert 0 8965 A
insert 0 8966 A
insert 0 8967 A
insert 0 8968 A
insert 0 8969 A
insert 0 8970 A
insert 0 8971 A
insert 0 8972 A
insert 0 8973 A
insert 0 8974 A
insert 0 8975 A
insert 0 8976 A
insert 0 8977 A
insert 0 8978 A
insert 0 8979 A
insert 0 8980 A
insert 0 8981 A
insert 0 8982 A
insert 0 8983 A
insert 0 8984 A
insert 0 8985 A
insert 0 8986 A
insert 0 8987 A
insert 0 8988 A
insert 0 8989 A
insert 0 8990 A
insert 0 8991 A
insert 0 8992 A
insert 0 8993 A
insert 0 8994 A
insert 0 8995 A
insert 0 8996 A
insert 0 8997 A
insert 0 8998 A
insert 0 8999 A
insert 0 9000 A
insert 0 9001 A
insert 0 9002 A
insert 0 9003 A
insert 0 9004 A
insert 0 9005 A
insert 0 9006 A
insert 0 9007 A
insert 0 9008 A
insert 0 9009 A
insert 0 9010 A
insert 0 9011 A
insert 0 9012 A
insert 0 9013 A
insert 0 9014 A
insert 0 9015 A
insert 0 9016 A
insert 0 9017 A
insert 0 9018 A
insert 0 9019 A
insert 0 9020 A
insert 0 9021 A
insert 0 9022 A
insert 0 9023 A
insert 0 9024 A
insert 0 9025 A
insert 0 9026 A
insert 0 9027 A
insert 0 9028 A
insert 0 9029 A
insert 0 9030 A
insert 0 9031 A
insert 0 9032 A
insert 0 9033 A
insert 0 9034 A
insert 0 9035 A
insert 0 9036 A
insert 0 9037 A
insert 0 9038 A
insert 0 9039 A
insert 0 9040 A
insert 0 9041 A
insert 0 9042 A
insert 0 9043 A
insert 0 9044 A
insert 0 9045 A
insert 0 9046 A
insert 0 9047 A
insert 0 9048 A
insert 0 9049 A
insert 0 9050 A
insert 0 9051 A
insert 0 9052 A
insert 0 9053 A
insert 0 9054 A
insert 0 9055 A
insert 0 9056 A
insert 0 9057 A
insert 0 9058 A
insert 0 9059 A
insert 0 9060 A
insert 0 9061 A
insert 0 9062 A
insert 0 9063 A
insert 0 9064 A
insert 0 9065 A
insert 0 9066 A
insert 0 9067 A
insert 0 9068 A
insert 0 9069 A
insert 0 9070 A
insert 0 9071 A
insert 0 9072 A
insert 0 9073 A
insert 0 9074 A
insert 0 9075 A
insert 0 9076 A
insert 0 9077 A
insert 0 9078 A
insert 0 9079 A
insert 0 9080 A
insert 0 9081 A
insert 0 9082 A
insert 0 9083 A
insert 0 9084 A
insert 0 9085 A
insert 0 9086 A
insert 0 9087 A
insert 0 9088 A
insert 0 9089 A
insert 0 9090 A
insert 0 9091 A
insert 0 9092 A
insert 0 9093 A
insert 0 9094 A
insert 0 9095 A
insert 0 9096 A
insert 0 9097 A
insert 0 9098 A
insert 0 9099 A
insert 0 9100 A
insert 0 9101 A
insert 0 9102 A
insert 0 9103 A
insert 0 9104 A
insert 0 9105 A
insert 0 9106 A
insert 0 9107 A
insert 0 9108 A
insert 0 9109 A
insert 0 9110 A
insert 0 9111 A
insert 0 9112 A
insert 0 9113 A
insert 0 9114 A
insert 0 9115 A
insert 0 9116 A
insert 0 9117 A
insert 0 9118 A
insert 0 9119 A
insert 0 9120 A
insert 0 9121 A
insert 0 9122 A
insert 0 9123 A
insert 0 9124 A
insert 0 9125 A
insert 0 9126 A
insert 0 9127 A
insert 0 9128 A
insert 0 9129 A
insert 0 9130 A
insert 0 9131 A
insert 0 9132 A
insert 0 9133 A
insert 0 9134 A
insert 0 9135 A
insert 0 9136 A
insert 0 9137 A
insert 0 9138 A
insert 0 9139 A
insert 0 9140 A
insert 0 9141 A
insert 0 9142 A
insert 0 9143 A
insert 0 9144 A
insert 0 9145 A
insert 0 9146 A
insert 0 9147 A
insert 0 9148 A
insert 0 9149 A
insert 0 9150 A
insert 0 9151 A
insert 0 9152 A
insert 0 9153 A
insert 0 9154 A
insert 0 9155 A
insert 0 9156 A
insert 0 9157 A
insert 0 9158 A
insert 0 9159 A
insert 0 9160 A
insert 0 9161 A
insert 0 9162 A
insert 0 9163 A
insert 0 9164 A
insert 0 9165 A
insert 0 9166 A
insert 0 9167 A
insert 0 9168 A
insert 0 9169 A
insert 0 9170 A
insert 0 9171 A
insert 0 9172 A
insert 0 9173 A
insert 0 9174 A
insert 0 9175 A
insert 0 9176 A
insert 0 9177 A
insert 0 9178 A
insert 0 9179 A
insert 0 9180 A
insert 0 9181 A
insert 0 9182 A
insert 0 9183 A
insert 0 9184 A
insert 0 9185 A
insert 0 9186 A
insert 0 9187 A
insert 0 9188 A
insert 0 9189 A
insert 0 9190 A
insert 0 9191 A
insert 0 9192 A
insert 0 9193 A
insert 0 9194 A
insert 0 9195 A
insert 0 9196 A
insert 0 9197 A
insert 0 9198 A
insert 0 9199 A
insert 0 9200 A
insert 0 9201 A
insert 0 9202 A
insert 0 9203 A
insert 0 9204 A
insert 0 9205 A
insert 0 9206 A
insert 0 9207 A
insert 0 9208 A
insert 0 9209 A
insert 0 9210 A
insert 0 9211 A
insert 0 9212 A
insert 0 9213 A
insert 0 9214 A
insert 0 9215 A
insert 0 9216 A
insert 0 9217 A
insert 0 9218 A
insert 0 9219 A
insert 0 9220 A
insert 0 9221 A
insert 0 9222 A
insert 0 9223 A
insert 0 9224 A
insert 0 9225 A
insert 0 9226 A
insert 0 9227 A
insert 0 9228 A
insert 0 9229 A
insert 0 9230 A
insert 0 9231 A
insert 0 9232 A
insert 0 9233 A
insert 0 9234 A
insert 0 9235 A
insert 0 9236 A
insert 0 9237 A
insert 0 9238 A
insert 0 9239 A
insert 0 9240 A
insert 0 9241 A
insert 0 9242 A
insert 0 9243 A
insert 0 9244 A
insert 0 9245 A
insert 0 9246 A
insert 0 9247 A
insert 0 9248 A
insert 0 9249 A
insert 0 9250 A
insert 0 9251 A
insert 0 9252 A
insert 0 9253 A
insert 0 9254 A
insert 0 9255 A
insert 0 9256 A
insert 0 9257 A
insert 0 9258 A
insert 0 9259 A
insert 0 9260 A
insert 0 9261 A
insert 0 9262 A
insert 0 9263 A
insert 0 9264 A
insert 0 9265 A
insert 0 9266 A
insert 0 9267 A
insert 0 9268 A
insert 0 9269 A
insert 0 9270 A
insert 0 9271 A
insert 0 9272 A
insert 0 9273 A
insert 0 9274 A
insert 0 9275 A
insert 0 9276 A
insert 0 9277 A
insert 0 9278 A
insert 0 9279 A
insert 0 9280 A
insert 0 9281 A
insert 0 9282 A
insert 0 9283 A
insert 0 9284 A
insert 0 9285 A
insert 0 9286 A
insert 0 9287 A
insert 0 9288 A
insert 0 9289 A
insert 0 9290 A
insert 0 9291 A
insert 0 9292 A
insert 0 9293 A
insert 0 9294 A
insert 0 9295 A
insert 0 9296 A
insert 0 9297 A
insert 0 9298 A
insert 0 9299 A
insert 0 9300 A
insert 0 9301 A
insert 0 9302 A
insert 0 9303 A
insert 0 9304 A
insert 0 9305 A
insert 0 9306 A
insert 0 9307 A
insert 0 9308 A
insert 0 9309 A
insert 0 9310 A
insert 0 9311 A
insert 0 9312 A
insert 0 9313 A
insert 0 9314 A
insert 0 9315 A
insert 0 9316 A
insert 0 9317 A
insert 0 9318 A
insert 0 9319 A
insert 0 9320 A
insert 0 9321 A
insert 0 9322 A
insert 0 9323 A
insert 0 9324 A
insert 0 9325 A
insert 0 9326 A
insert 0 9327 A
insert 0 9328 A
insert 0 9329 A
insert 0 9330 A
insert 0 9331 A
insert 0 9332 A
insert 0 9333 A
insert 0 9334 A
insert 0 9335 A
insert 0 9336 A
insert 0 9337 A
insert 0 9338 A
insert 0 9339 A
insert 0 9340 A
insert 0 9341 A
insert 0 9342 A
insert 0 9343 A
insert 0 9344 A
insert 0 9345 A
insert 0 9346 A
insert 0 9347 A
insert 0 9348 A
insert 0 9349 A
insert 0 9350 A
insert 0 9351 A
insert 0 9352 A
insert 0 9353 A
insert 0 9354 A
insert 0 9355 A
insert 0 9356 A
insert 0 9357 A
insert 0 9358 A
insert 0 9359 A
insert 0 9360 A
insert 0 9361 A
insert 0 9362 A
insert 0 9363 A
insert 0 9364 A
insert 0 9365 A
insert 0 9366 A
insert 0 9367 A
insert 0 9368 A
insert 0 9369 A
insert 0 9370 A
insert 0 9371 A
insert 0 9372 A
insert 0 9373 A
insert 0 9374 A
insert 0 9375 A
insert 0 9376 A
insert 0 9377 A
insert 0 9378 A
insert 0 9379 A
insert 0 9380 A
insert 0 9381 A
insert 0 9382 A
insert 0 9383 A
insert 0 9384 A
insert 0 9385 A
insert 0 9386 A
insert 0 9387 A
insert 0 9388 A
insert 0 9389 A
insert 0 9390 A
insert 0 9391 A
insert 0 9392 A
insert 0 9393 A
insert 0 9394 A
insert 0 9395 A
insert 0 9396 A
insert 0 9397 A
insert 0 9398 A
insert 0 9399 A
insert 0 9400 A
insert 0 9401 A
insert 0 9402 A
insert 0 9403 A
insert 0 9404 A
insert 0 9405 A
insert 0 9406 A
insert 0 9407 A
insert 0 9408 A
insert 0 9409 A
insert 0 9410 A
insert 0 9411 A
insert 0 9412 A
insert 0 9413 A
insert 0 9414 A
insert 0 9415 A
insert 0 9416 A
insert 0 9417 A
insert 0 9418 A
insert 0 9419 A
insert 0 9420 A
insert 0 9421 A
insert 0 9422 A
insert 0 9423 A
insert 0 9424 A
insert 0 9425 A
insert 0 9426 A
insert 0 9427 A
insert 0 9428 A
insert 0 9429 A
insert 0 9430 A
insert 0 9431 A
insert 0 9432 A
insert 0 9433 A
insert 0 9434 A
insert 0 9435 A
insert 0 9436 A
insert 0 9437 A
insert 0 9438 A
insert 0 9439 A
insert 0 9440 A
insert 0 9441 A
insert 0 9442 A
insert 0 9443 A
insert 0 9444 A
insert 0 9445 A
insert 0 9446 A
insert 0 9447 A
insert 0 9448 A
insert 0 9449 A
insert 0 9450 A
insert 0 9451 A
insert 0 9452 A
insert 0 9453 A
insert 0 9454 A
insert 0 9455 A
insert 0 9456 A
insert 0 9457 A
insert 0 9458 A
insert 0 9459 A
insert 0 9460 A
insert 0 9461 A
insert 0 9462 A
insert 0 9463 A
insert 0 9464 A
insert 0 9465 A
insert 0 9466 A
insert 0 9467 A
insert 0 9468 A
insert 0 9469 A
insert 0 9470 A
insert 0 9471 A
insert 0 9472 A
insert 0 9473 A
insert 0 9474 A
insert 0 9475 A
insert 0 9476 A
insert 0 9477 A
insert 0 9478 A
insert 0 9479 A
insert 0 9480 A
insert 0 9481 A
insert 0 9482 A
insert 0 9483 A
insert 0 9484 A
insert 0 9485 A
insert 0 9486 A
insert 0 9487 A
insert 0 9488 A
insert 0 9489 A
insert 0 9490 A
insert 0 9491 A
insert 0 9492 A
insert 0 9493 A
insert 0 9494 A
insert 0 9495 A
insert 0 9496 A
insert 0 9497 A
insert 0 9498 A
insert 0 9499 A
insert 0 9500 A
insert 0 9501 A
insert 0 9502 A
insert 0 9503 A
insert 0 9504 A
insert 0 9505 A
insert 0 9506 A
insert 0 9507 A
insert 0 9508 A
insert 0 9509 A
insert 0 9510 A
insert 0 9511 A
insert 0 9512 A
insert 0 9513 A
insert 0 9514 A
insert 0 9515 A
insert 0 9516 A
insert 0 9517 A
insert 0 9518 A
insert 0 9519 A
insert 0 9520 A
insert 0 9521 A
insert 0 9522 A
insert 0 9523 A
insert 0 9524 A
insert 0 9525 A
insert 0 9526 A
insert 0 9527 A
insert 0 9528 A
insert 0 9529 A
insert 0 9530 A
insert 0 9531 A
insert 0 9532 A
insert 0 9533 A
insert 0 9534 A
insert 0 9535 A
insert 0 9536 A
insert 0 9537 A
insert 0 9538 A
insert 0 9539 A
insert 0 9540 A
insert 0 9541 A
insert 0 9542 A
insert 0 9543 A
insert 0 9544 A
insert 0 9545 A
insert 0 9546 A
insert 0 9547 A
insert 0 9548 A
insert 0 9549 A
insert 0 9550 A
insert 0 9551 A
insert 0 9552 A
insert 0 9553 A
insert 0 9554 A
insert 0 9555 A
insert 0 9556 A
insert 0 9557 A
insert 0 9558 A
insert 0 9559 A
insert 0 9560 A
insert 0 9561 A
insert 0 9562 A
insert 0 9563 A
insert 0 9564 A
insert 0 9565 A
insert 0 9566 A
insert 0 9567 A
insert 0 9568 A
insert 0 9569 A
insert 0 9570 A
insert 0 9571 A
insert 0 9572 A
insert 0 9573 A
insert 0 9574 A
insert 0 9575 A
insert 0 9576 A
insert 0 9577 A
insert 0 9578 A
insert 0 9579 A
insert 0 9580 A
insert 0 9581 A
insert 0 9582 A
insert 0 9583 A
insert 0 9584 A
insert 0 9585 A
insert 0 9586 A
insert 0 9587 A
insert 0 9588 A
insert 0 9589 A
insert 0 9590 A
insert 0 9591 A
insert 0 9592 A
insert 0 9593 A
insert 0 9594 A
insert 0 9595 A
insert 0 9596 A
insert 0 9597 A
insert 0 9598 A
insert 0 9599 A
insert 0 9600 A
insert 0 9601 A
insert 0 9602 A
insert 0 9603 A
insert 0 9604 A
insert 0 9605 A
insert 0 9606 A
insert 0 9607 A
insert 0 9608 A
insert 0 9609 A
insert 0 9610 A
insert 0 9611 A
insert 0 9612 A
insert 0 9613 A
insert 0 9614 A
insert 0 9615 A
insert 0 9616 A
insert 0 9617 A
insert 0 9618 A
insert 0 9619 A
insert 0 9620 A
insert 0 9621 A
insert 0 9622 A
insert 0 9623 A
insert 0 9624 A
insert 0 9625 A
insert 0 9626 A
insert 0 9627 A
insert 0 9628 A
insert 0 9629 A
insert 0 9630 A
insert 0 9631 A
insert 0 9632 A
insert 0 9633 A
insert 0 9634 A
insert 0 9635 A
insert 0 9636 A
insert 0 9637 A
insert 0 9638 A
insert 0 9639 A
insert 0 9640 A
insert 0 9641 A
insert 0 9642 A
insert 0 9643 A
insert 0 9644 A
insert 0 9645 A
insert 0 9646 A
insert 0 9647 A
insert 0 9648 A
insert 0 9649 A
insert 0 9650 A
insert 0 9651 A
insert 0 9652 A
insert 0 9653 A
insert 0 9654 A
insert 0 9655 A
insert 0 9656 A
insert 0 9657 A
insert 0 9658 A
insert 0 9659 A
insert 0 9660 A
insert 0 9661 A
insert 0 9662 A
insert 0 9663 A
insert 0 9664 A
insert 0 9665 A
insert 0 9666 A
insert 0 9667 A
insert 0 9668 A
insert 0 9669 A
insert 0 9670 A
insert 0 9671 A
insert 0 9672 A
insert 0 9673 A
insert 0 9674 A
insert 0 9675 A
insert 0 9676 A
insert 0 9677 A
insert 0 9678 A
insert 0 9679 A
insert 0 9680 A
insert 0 9681 A
insert 0 9682 A
insert 0 9683 A
insert 0 9684 A
insert 0 9685 A
insert 0 9686 A
insert 0 9687 A
insert 0 9688 A
insert 0 9689 A
insert 0 9690 A
insert 0 9691 A
insert 0 9692 A
insert 0 9693 A
insert 0 9694 A
insert 0 9695 A
insert 0 9696 A
insert 0 9697 A
insert 0 9698 A
insert 0 9699 A
insert 0 9700 A
insert 0 9701 A
insert 0 9702 A
insert 0 9703 A
insert 0 9704 A
insert 0 9705 A
insert 0 9706 A
insert 0 9707 A
insert 0 9708 A
insert 0 9709 A
insert 0 9710 A
insert 0 9711 A
insert 0 9712 A
insert 0 9713 A
insert 0 9714 A
insert 0 9715 A
insert 0 9716 A
insert 0 9717 A
insert 0 9718 A
insert 0 9719 A
insert 0 9720 A
insert 0 9721 A
insert 0 9722 A
insert 0 9723 A
insert 0 9724 A
insert 0 9725 A
insert 0 9726 A
insert 0 9727 A
insert 0 9728 A
insert 0 9729 A
insert 0 9730 A
insert 0 9731 A
insert 0 9732 A
insert 0 9733 A
insert 0 9734 A
insert 0 9735 A
insert 0 9736 A
insert 0 9737 A
insert 0 9738 A
insert 0 9739 A
insert 0 9740 A
insert 0 9741 A
insert 0 9742 A
insert 0 9743 A
insert 0 9744 A
insert 0 9745 A
insert 0 9746 A
insert 0 9747 A
insert 0 9748 A
insert 0 9749 A
insert 0 9750 A
insert 0 9751 A
insert 0 9752 A
insert 0 9753 A
insert 0 9754 A
insert 0 9755 A
insert 0 9756 A
insert 0 9757 A
insert 0 9758 A
insert 0 9759 A
insert 0 9760 A
insert 0 9761 A
insert 0 9762 A
insert 0 9763 A
insert 0 9764 A
insert 0 9765 A
insert 0 9766 A
insert 0 9767 A
insert 0 9768 A
insert 0 9769 A
insert 0 9770 A
insert 0 9771 A
insert 0 9772 A
insert 0 9773 A
insert 0 9774 A
insert 0 9775 A
insert 0 9776 A
insert 0 9777 A
insert 0 9778 A
insert 0 9779 A
insert 0 9780 A
insert 0 9781 A
insert 0 9782 A
insert 0 9783 A
insert 0 9784 A
insert 0 9785 A
insert 0 9786 A
insert 0 9787 A
insert 0 9788 A
insert 0 9789 A
insert 0 9790 A
insert 0 9791 A
insert 0 9792 A
insert 0 9793 A
insert 0 9794 A
insert 0 9795 A
insert 0 9796 A
insert 0 9797 A
insert 0 9798 A
insert 0 9799 A
insert 0 9800 A
insert 0 9801 A
insert 0 9802 A
insert 0 9803 A
insert 0 9804 A
insert 0 9805 A
insert 0 9806 A
insert 0 9807 A
insert 0 9808 A
insert 0 9809 A
insert 0 9810 A
insert 0 9811 A
insert 0 9812 A
insert 0 9813 A
insert 0 9814 A
insert 0 9815 A
insert 0 9816 A
insert 0 9817 A
insert 0 9818 A
insert 0 9819 A
insert 0 9820 A
insert 0 9821 A
insert 0 9822 A
insert 0 9823 A
insert 0 9824 A
insert 0 9825 A
insert 0 9826 A
insert 0 9827 A
insert 0 9828 A
insert 0 9829 A
insert 0 9830 A
insert 0 9831 A
insert 0 9832 A
insert 0 9833 A
insert 0 9834 A
insert 0 9835 A
insert 0 9836 A
insert 0 9837 A
insert 0 9838 A
insert 0 9839 A
insert 0 9840 A
insert 0 9841 A
insert 0 9842 A
insert 0 9843 A
insert 0 9844 A
insert 0 9845 A
insert 0 9846 A
insert 0 9847 A
insert 0 9848 A
insert 0 9849 A
insert 0 9850 A
insert 0 9851 A
insert 0 9852 A
insert 0 9853 A
insert 0 9854 A
insert 0 9855 A
insert 0 9856 A
insert 0 9857 A
insert 0 9858 A
insert 0 9859 A
insert 0 9860 A
insert 0 9861 A
insert 0 9862 A
insert 0 9863 A
insert 0 9864 A
insert 0 9865 A
insert 0 9866 A
insert 0 9867 A
insert 0 9868 A
insert 0 9869 A
insert 0 9870 A
insert 0 9871 A
insert 0 9872 A
insert 0 9873 A
insert 0 9874 A
insert 0 9875 A
insert 0 9876 A
insert 0 9877 A
insert 0 9878 A
insert 0 9879 A
insert 0 9880 A
insert 0 9881 A
insert 0 9882 A
insert 0 9883 A
insert 0 9884 A
insert 0 9885 A
insert 0 9886 A
insert 0 9887 A
insert 0 9888 A
insert 0 9889 A
insert 0 9890 A
insert 0 9891 A
insert 0 9892 A
insert 0 9893 A
insert 0 9894 A
insert 0 9895 A
insert 0 9896 A
insert 0 9897 A
insert 0 9898 A
insert 0 9899 A
insert 0 9900 A
insert 0 9901 A
insert 0 9902 A
insert 0 9903 A
insert 0 9904 A
insert 0 9905 A
insert 0 9906 A
insert 0 9907 A
insert 0 9908 A
insert 0 9909 A
insert 0 9910 A
insert 0 9911 A
insert 0 9912 A
insert 0 9913 A
insert 0 9914 A
insert 0 9915 A
insert 0 9916 A
insert 0 9917 A
insert 0 9918 A
insert 0 9919 A
insert 0 9920 A
insert 0 9921 A
insert 0 9922 A
insert 0 9923 A
insert 0 9924 A
insert 0 9925 A
insert 0 9926 A
insert 0 9927 A
insert 0 9928 A
insert 0 9929 A
insert 0 9930 A
insert 0 9931 A
insert 0 9932 A
insert 0 9933 A
insert 0 9934 A
insert 0 9935 A
insert 0 9936 A
insert 0 9937 A
insert 0 9938 A
insert 0 9939 A
insert 0 9940 A
insert 0 9941 A
insert 0 9942 A
insert 0 9943 A
insert 0 9944 A
insert 0 9945 A
insert 0 9946 A
insert 0 9947 A
insert 0 9948 A
insert 0 9949 A
insert 0 9950 A
insert 0 9951 A
insert 0 9952 A
insert 0 9953 A
insert 0 9954 A
insert 0 9955 A
insert 0 9956 A
insert 0 9957 A
insert 0 9958 A
insert 0 9959 A
insert 0 9960 A
insert 0 9961 A
insert 0 9962 A
insert 0 9963 A
insert 0 9964 A
insert 0 9965 A
insert 0 9966 A
insert 0 9967 A
insert 0 9968 A
insert 0 9969 A
insert 0 9970 A
insert 0 9971 A
insert 0 9972 A
insert 0 9973 A
insert 0 9974 A
insert 0 9975 A
insert 0 9976 A
insert 0 9977 A
insert 0 9978 A
insert 0 9979 A
insert 0 9980 A
insert 0 9981 A
insert 0 9982 A
insert 0 9983 A
insert 0 9984 A
insert 0 9985 A
insert 0 9986 A
insert 0 9987 A
insert 0 9988 A
insert 0 9989 A
insert 0 9990 A
insert 0 9991 A
insert 0 9992 A
insert 0 9993 A
insert 0 9994 A
insert 0 9995 A
insert 0 9996 A
insert 0 9997 A
insert 0 9998 A
insert 0 9999 A
insert 0 10000 A
insert 0 10001 A
insert 0 10002 A
insert 0 10003 A
insert 0 10004 A
insert 0 10005 A
insert 0 10006 A
insert 0 10007 A
insert 0 10008 A
insert 0 10009 A
insert 0 10010 A
insert 0 10011 A
insert 0 10012 A
insert 0 10013 A
insert 0 10014 A
insert 0 10015 A
insert 0 10016 A
insert 0 10017 A
insert 0 10018 A
insert 0 10019 A
insert 0 10020 A
insert 0 10021 A
insert 0 10022 A
insert 0 10023 A
insert 0 10024 A
insert 0 10025 A
insert 0 10026 A
insert 0 10027 A
insert 0 10028 A
insert 0 10029 A
insert 0 10030 A
insert 0 10031 A
insert 0 10032 A
insert 0 10033 A
insert 0 10034 A
insert 0 10035 A
insert 0 10036 A
insert 0 10037 A
insert 0 10038 A
insert 0 10039 A
insert 0 10040 A
insert 0 10041 A
insert 0 10042 A
insert 0 10043 A
insert 0 10044 A
insert 0 10045 A
insert 0 10046 A
insert 0 10047 A
insert 0 10048 A
insert 0 10049 A
insert 0 10050 A
insert 0 10051 A
insert 0 10052 A
insert 0 10053 A
insert 0 10054 A
insert 0 10055 A
insert 0 10056 A
insert 0 10057 A
insert 0 10058 A
insert 0 10059 A
insert 0 10060 A
insert 0 10061 A
insert 0 10062 A
insert 0 10063 A
insert 0 10064 A
insert 0 10065 A
insert 0 10066 A
insert 0 10067 A
insert 0 10068 A
insert 0 10069 A
insert 0 10070 A
insert 0 10071 A
insert 0 10072 A
insert 0 10073 A
insert 0 10074 A
insert 0 10075 A
insert 0 10076 A
insert 0 10077 A
insert 0 10078 A
insert 0 10079 A
insert 0 10080 A
insert 0 10081 A
insert 0 10082 A
insert 0 10083 A
insert 0 10084 A
insert 0 10085 A
insert 0 10086 A
insert 0 10087 A
insert 0 10088 A
insert 0 10089 A
insert 0 10090 A
insert 0 10091 A
insert 0 10092 A
insert 0 10093 A
insert 0 10094 A
insert 0 10095 A
insert 0 10096 A
insert 0 10097 A
insert 0 10098 A
insert 0 10099 A
insert 0 10100 A
insert 0 10101 A
insert 0 10102 A
insert 0 10103 A
insert 0 10104 A
insert 0 10105 A
insert 0 10106 A
insert 0 10107 A
insert 0 10108 A
insert 0 10109 A
insert 0 10110 A
insert 0 10111 A
insert 0 10112 A
insert 0 10113 A
insert 0 10114 A
insert 0 10115 A
insert 0 10116 A
insert 0 10117 A
insert 0 10118 A
insert 0 10119 A
insert 0 10120 A
insert 0 10121 A
insert 0 10122 A
insert 0 10123 A
insert 0 10124 A
insert 0 10125 A
insert 0 10126 A
insert 0 10127 A
insert 0 10128 A
insert 0 10129 A
insert 0 10130 A
insert 0 10131 A
insert 0 10132 A
insert 0 10133 A
insert 0 10134 A
insert 0 10135 A
insert 0 10136 A
insert 0 10137 A
insert 0 10138 A
insert 0 10139 A
insert 0 10140 A
insert 0 10141 A
insert 0 10142 A
insert 0 10143 A
insert 0 10144 A
insert 0 10145 A
insert 0 10146 A
insert 0 10147 A
insert 0 10148 A
insert 0 10149 A
insert 0 10150 A
insert 0 10151 A
insert 0 10152 A
insert 0 10153 A
insert 0 10154 A
insert 0 10155 A
insert 0 10156 A
insert 0 10157 A
insert 0 10158 A
insert 0 10159 A
insert 0 10160 A
insert 0 10161 A
insert 0 10162 A
insert 0 10163 A
insert 0 10164 A
insert 0 10165 A
insert 0 10166 A
insert 0 10167 A
insert 0 10168 A
insert 0 10169 A
insert 0 10170 A
insert 0 10171 A
insert 0 10172 A
insert 0 10173 A
insert 0 10174 A
insert 0 10175 A
insert 0 10176 A
insert 0 10177 A
insert 0 10178 A
insert 0 10179 A
insert 0 10180 A
insert 0 10181 A
insert 0 10182 A
insert 0 10183 A
insert 0 10184 A
insert 0 10185 A
insert 0 10186 A
insert 0 10187 A
insert 0 10188 A
insert 0 10189 A
insert 0 10190 A
insert 0 10191 A
insert 0 10192 A
insert 0 10193 A
insert 0 10194 A
insert 0 10195 A
insert 0 10196 A
insert 0 10197 A
insert 0 10198 A
insert 0 10199 A
insert 0 10200 A
insert 0 10201 A
insert 0 10202 A
insert 0 10203 A
insert 0 10204 A
insert 0 10205 A
insert 0 10206 A
insert 0 10207 A
insert 0 10208 A
insert 0 10209 A
insert 0 10210 A
insert 0 10211 A
insert 0 10212 A
insert 0 10213 A
insert 0 10214 A
insert 0 10215 A
insert 0 10216 A
insert 0 10217 A
insert 0 10218 A
insert 0 10219 A
insert 0 10220 A
insert 0 10221 A
insert 0 10222 A
insert 0 10223 A
insert 0 10224 A
insert 0 10225 A
insert 0 10226 A
insert 0 10227 A
insert 0 10228 A
insert 0 10229 A
insert 0 10230 A
insert 0 10231 A
insert 0 10232 A
insert 0 10233 A
insert 0 10234 A
insert 0 10235 A
insert 0 10236 A
insert 0 10237 A
insert 0 10238 A
insert 0 10239 A
insert 0 10240 A
insert 0 10241 A
insert 0 10242 A
insert 0 10243 A
insert 0 10244 A
insert 0 10245 A
insert 0 10246 A
insert 0 10247 A
insert 0 10248 A
insert 0 10249 A
insert 0 10250 A
insert 0 10251 A
insert 0 10252 A
insert 0 10253 A
insert 0 10254 A
insert 0 10255 A
insert 0 10256 A
insert 0 10257 A
insert 0 10258 A
insert 0 10259 A
insert 0 10260 A
insert 0 10261 A
insert 0 10262 A
insert 0 10263 A
insert 0 10264 A
insert 0 10265 A
insert 0 10266 A
insert 0 10267 A
insert 0 10268 A
insert 0 10269 A
insert 0 10270 A
insert 0 10271 A
insert 0 10272 A
insert 0 10273 A
insert 0 10274 A
insert 0 10275 A
insert 0 10276 A
insert 0 10277 A
insert 0 10278 A
insert 0 10279 A
insert 0 10280 A
insert 0 10281 A
insert 0 10282 A
insert 0 10283 A
insert 0 10284 A
insert 0 10285 A
insert 0 10286 A
insert 0 10287 A
insert 0 10288 A
insert 0 10289 A
insert 0 10290 A
insert 0 10291 A
insert 0 10292 A
insert 0 10293 A
insert 0 10294 A
insert 0 10295 A
insert 0 10296 A
insert 0 10297 A
insert 0 10298 A
insert 0 10299 A
insert 0 10300 A
insert 0 10301 A
insert 0 10302 A
insert 0 10303 A
insert 0 10304 A
insert 0 10305 A
insert 0 10306 A
insert 0 10307 A
insert 0 10308 A
insert 0 10309 A
insert 0 10310 A
insert 0 10311 A
insert 0 10312 A
insert 0 10313 A
insert 0 10314 A
insert 0 10315 A
insert 0 10316 A
insert 0 10317 A
insert 0 10318 A
insert 0 10319 A
insert 0 10320 A
insert 0 10321 A
insert 0 10322 A
insert 0 10323 A
insert 0 10324 A
insert 0 10325 A
insert 0 10326 A
insert 0 10327 A
insert 0 10328 A
insert 0 10329 A
insert 0 10330 A
insert 0 10331 A
insert 0 10332 A
insert 0 10333 A
insert 0 10334 A
insert 0 10335 A
insert 0 10336 A
insert 0 10337 A
insert 0 10338 A
insert 0 10339 A
insert 0 10340 A
insert 0 10341 A
insert 0 10342 A
insert 0 10343 A
insert 0 10344 A
insert 0 10345 A
insert 0 10346 A
insert 0 10347 A
insert 0 10348 A
insert 0 10349 A
insert 0 10350 A
insert 0 10351 A
insert 0 10352 A
insert 0 10353 A
insert 0 10354 A
insert 0 10355 A
insert 0 10356 A
insert 0 10357 A
insert 0 10358 A
insert 0 10359 A
insert 0 10360 A
insert 0 10361 A
insert 0 10362 A
insert 0 10363 A
insert 0 10364 A
insert 0 10365 A
insert 0 10366 A
insert 0 10367 A
insert 0 10368 A
insert 0 10369 A
insert 0 10370 A
insert 0 10371 A
insert 0 10372 A
insert 0 10373 A
insert 0 10374 A
insert 0 10375 A
insert 0 10376 A
insert 0 10377 A
insert 0 10378 A
insert 0 10379 A
insert 0 10380 A
insert 0 10381 A
insert 0 10382 A
insert 0 10383 A
insert 0 10384 A
insert 0 10385 A
insert 0 10386 A
insert 0 10387 A
insert 0 10388 A
insert 0 10389 A
insert 0 10390 A
insert 0 10391 A
insert 0 10392 A
insert 0 10393 A
insert 0 10394 A
insert 0 10395 A
insert 0 10396 A
insert 0 10397 A
insert 0 10398 A
insert 0 10399 A
insert 0 10400 A
insert 0 10401 A
insert 0 10402 A
insert 0 10403 A
insert 0 10404 A
insert 0 10405 A
insert 0 10406 A
insert 0 10407 A
insert 0 10408 A
insert 0 10409 A
insert 0 10410 A
insert 0 10411 A
insert 0 10412 A
insert 0 10413 A
insert 0 10414 A
insert 0 10415 A
insert 0 10416 A
insert 0 10417 A
insert 0 10418 A
insert 0 10419 A
insert 0 10420 A
insert 0 10421 A
insert 0 10422 A
insert 0 10423 A
insert 0 10424 A
insert 0 10425 A
insert 0 10426 A
insert 0 10427 A
insert 0 10428 A
insert 0 10429 A
insert 0 10430 A
insert 0 10431 A
insert 0 10432 A
insert 0 10433 A
insert 0 10434 A
insert 0 10435 A
insert 0 10436 A
insert 0 10437 A
insert 0 10438 A
insert 0 10439 A
insert 0 10440 A
insert 0 10441 A
insert 0 10442 A
insert 0 10443 A
insert 0 10444 A
insert 0 10445 A
insert 0 10446 A
insert 0 10447 A
insert 0 10448 A
insert 0 10449 A
insert 0 10450 A
insert 0 10451 A
insert 0 10452 A
insert 0 10453 A
insert 0 10454 A
insert 0 10455 A
insert 0 10456 A
insert 0 10457 A
insert 0 10458 A
insert 0 10459 A
insert 0 10460 A
insert 0 10461 A
insert 0 10462 A
insert 0 10463 A
insert 0 10464 A
insert 0 10465 A
insert 0 10466 A
insert 0 10467 A
insert 0 10468 A
insert 0 10469 A
insert 0 10470 A
insert 0 10471 A
insert 0 10472 A
insert 0 10473 A
insert 0 10474 A
insert 0 10475 A
insert 0 10476 A
insert 0 10477 A
insert 0 10478 A
insert 0 10479 A
insert 0 10480 A
insert 0 10481 A
insert 0 10482 A
insert 0 10483 A
insert 0 10484 A
insert 0 10485 A
insert 0 10486 A
insert 0 10487 A
insert 0 10488 A
insert 0 10489 A
insert 0 10490 A
insert 0 10491 A
insert 0 10492 A
insert 0 10493 A
insert 0 10494 A
insert 0 10495 A
insert 0 10496 A
insert 0 10497 A
insert 0 10498 A
insert 0 10499 A
insert 0 10500 A
insert 0 10501 A
insert 0 10502 A
insert 0 10503 A
insert 0 10504 A
insert 0 10505 A
insert 0 10506 A
insert 0 10507 A
insert 0 10508 A
insert 0 10509 A
insert 0 10510 A
insert 0 10511 A
insert 0 10512 A
insert 0 10513 A
insert 0 10514 A
insert 0 10515 A
insert 0 10516 A
insert 0 10517 A
insert 0 10518 A
insert 0 10519 A
insert 0 10520 A
insert 0 10521 A
insert 0 10522 A
insert 0 10523 A
insert 0 10524 A
insert 0 10525 A
insert 0 10526 A
insert 0 10527 A
insert 0 10528 A
insert 0 10529 A
insert 0 10530 A
insert 0 10531 A
insert 0 10532 A
insert 0 10533 A
insert 0 10534 A
insert 0 10535 A
insert 0 10536 A
insert 0 10537 A
insert 0 10538 A
insert 0 10539 A
insert 0 10540 A
insert 0 10541 A
insert 0 10542 A
insert 0 10543 A
insert 0 10544 A
insert 0 10545 A
insert 0 10546 A
insert 0 10547 A
insert 0 10548 A
insert 0 10549 A
insert 0 10550 A
insert 0 10551 A
insert 0 10552 A
insert 0 10553 A
insert 0 10554 A
insert 0 10555 A
insert 0 10556 A
insert 0 10557 A
insert 0 10558 A
insert 0 10559 A
insert 0 10560 A
insert 0 10561 A
insert 0 10562 A
insert 0 10563 A
insert 0 10564 A
insert 0 10565 A
insert 0 10566 A
insert 0 10567 A
insert 0 10568 A
insert 0 10569 A
insert 0 10570 A
insert 0 10571 A
insert 0 10572 A
insert 0 10573 A
insert 0 10574 A
insert 0 10575 A
insert 0 10576 A
insert 0 10577 A
insert 0 10578 A
insert 0 10579 A
insert 0 10580 A
insert 0 10581 A
insert 0 10582 A
insert 0 10583 A
insert 0 10584 A
insert 0 10585 A
insert 0 10586 A
insert 0 10587 A
insert 0 10588 A
insert 0 10589 A
insert 0 10590 A
insert 0 10591 A
insert 0 10592 A
insert 0 10593 A
insert 0 10594 A
insert 0 10595 A
insert 0 10596 A
insert 0 10597 A
insert 0 10598 A
insert 0 10599 A
insert 0 10600 A
insert 0 10601 A
insert 0 10602 A
insert 0 10603 A
insert 0 10604 A
insert 0 10605 A
insert 0 10606 A
insert 0 10607 A
insert 0 10608 A
insert 0 10609 A
insert 0 10610 A
insert 0 10611 A
insert 0 10612 A
insert 0 10613 A
insert 0 10614 A
insert 0 10615 A
insert 0 10616 A
insert 0 10617 A
insert 0 10618 A
insert 0 10619 A
insert 0 10620 A
insert 0 10621 A
insert 0 10622 A
insert 0 10623 A
insert 0 10624 A
insert 0 10625 A
insert 0 10626 A
insert 0 10627 A
insert 0 10628 A
insert 0 10629 A
insert 0 10630 A
insert 0 10631 A
insert 0 10632 A
insert 0 10633 A
insert 0 10634 A
insert 0 10635 A
insert 0 10636 A
insert 0 10637 A
insert 0 10638 A
insert 0 10639 A
insert 0 10640 A
insert 0 10641 A
insert 0 10642 A
insert 0 10643 A
insert 0 10644 A
insert 0 10645 A
insert 0 10646 A
insert 0 10647 A
insert 0 10648 A
insert 0 10649 A
insert 0 10650 A
insert 0 10651 A
insert 0 10652 A
insert 0 10653 A
insert 0 10654 A
insert 0 10655 A
insert 0 10656 A
insert 0 10657 A
insert 0 10658 A
insert 0 10659 A
insert 0 10660 A
insert 0 10661 A
insert 0 10662 A
insert 0 10663 A
insert 0 10664 A
insert 0 10665 A
insert 0 10666 A
insert 0 10667 A
insert 0 10668 A
insert 0 10669 A
insert 0 10670 A
insert 0 10671 A
insert 0 10672 A
insert 0 10673 A
insert 0 10674 A
insert 0 10675 A
insert 0 10676 A
insert 0 10677 A
insert 0 10678 A
insert 0 10679 A
insert 0 10680 A
insert 0 10681 A
insert 0 10682 A
insert 0 10683 A
insert 0 10684 A
insert 0 10685 A
insert 0 10686 A
insert 0 10687 A
insert 0 10688 A
insert 0 10689 A
insert 0 10690 A
insert 0 10691 A
insert 0 10692 A
insert 0 10693 A
insert 0 10694 A
insert 0 10695 A
insert 0 10696 A
insert 0 10697 A
insert 0 10698 A
insert 0 10699 A
insert 0 10700 A
insert 0 10701 A
insert 0 10702 A
insert 0 10703 A
insert 0 10704 A
insert 0 10705 A
insert 0 10706 A
insert 0 10707 A
insert 0 10708 A
insert 0 10709 A
insert 0 10710 A
insert 0 10711 A
insert 0 10712 A
insert 0 10713 A
insert 0 10714 A
insert 0 10715 A
insert 0 10716 A
insert 0 10717 A
insert 0 10718 A
insert 0 10719 A
insert 0 10720 A
insert 0 10721 A
insert 0 10722 A
insert 0 10723 A
insert 0 10724 A
insert 0 10725 A
insert 0 10726 A
insert 0 10727 A
insert 0 10728 A
insert 0 10729 A
insert 0 10730 A
insert 0 10731 A
insert 0 10732 A
insert 0 10733 A
insert 0 10734 A
insert 0 10735 A
insert 0 10736 A
insert 0 10737 A
insert 0 10738 A
insert 0 10739 A
insert 0 10740 A
insert 0 10741 A
insert 0 10742 A
insert 0 10743 A
insert 0 10744 A
insert 0 10745 A
insert 0 10746 A
insert 0 10747 A
insert 0 10748 A
insert 0 10749 A
insert 0 10750 A
insert 0 10751 A
insert 0 10752 A
insert 0 10753 A
insert 0 10754 A
insert 0 10755 A
insert 0 10756 A
insert 0 10757 A
insert 0 10758 A
insert 0 10759 A
insert 0 10760 A
insert 0 10761 A
insert 0 10762 A
insert 0 10763 A
insert 0 10764 A
insert 0 10765 A
insert 0 10766 A
insert 0 10767 A
insert 0 10768 A
insert 0 10769 A
insert 0 10770 A
insert 0 10771 A
insert 0 10772 A
insert 0 10773 A
insert 0 10774 A
insert 0 10775 A
insert 0 10776 A
insert 0 10777 A
insert 0 10778 A
insert 0 10779 A
insert 0 10780 A
insert 0 10781 A
insert 0 10782 A
insert 0 10783 A
insert 0 10784 A
insert 0 10785 A
insert 0 10786 A
insert 0 10787 A
insert 0 10788 A
insert 0 10789 A
insert 0 10790 A
insert 0 10791 A
insert 0 10792 A
insert 0 10793 A
insert 0 10794 A
insert 0 10795 A
insert 0 10796 A
insert 0 10797 A
insert 0 10798 A
insert 0 10799 A
insert 0 10800 A
insert 0 10801 A
insert 0 10802 A
insert 0 10803 A
insert 0 10804 A
insert 0 10805 A
insert 0 10806 A
insert 0 10807 A
insert 0 10808 A
insert 0 10809 A
insert 0 10810 A
insert 0 10811 A
insert 0 10812 A
insert 0 10813 A
insert 0 10814 A
insert 0 10815 A
insert 0 10816 A
insert 0 10817 A
insert 0 10818 A
insert 0 10819 A
insert 0 10820 A
insert 0 10821 A
insert 0 10822 A
insert 0 10823 A
insert 0 10824 A
insert 0 10825 A
insert 0 10826 A
insert 0 10827 A
insert 0 10828 A
insert 0 10829 A
insert 0 10830 A
insert 0 10831 A
insert 0 10832 A
insert 0 10833 A
insert 0 10834 A
insert 0 10835 A
insert 0 10836 A
insert 0 10837 A
insert 0 10838 A
insert 0 10839 A
insert 0 10840 A
insert 0 10841 A
insert 0 10842 A
insert 0 10843 A
insert 0 10844 A
insert 0 10845 A
insert 0 10846 A
insert 0 10847 A
insert 0 10848 A
insert 0 10849 A
insert 0 10850 A
insert 0 10851 A
insert 0 10852 A
insert 0 10853 A
insert 0 10854 A
insert 0 10855 A
insert 0 10856 A
insert 0 10857 A
insert 0 10858 A
insert 0 10859 A
insert 0 10860 A
insert 0 10861 A
insert 0 10862 A
insert 0 10863 A
insert 0 10864 A
insert 0 10865 A
insert 0 10866 A
insert 0 10867 A
insert 0 10868 A
insert 0 10869 A
insert 0 10870 A
insert 0 10871 A
insert 0 10872 A
insert 0 10873 A
insert 0 10874 A
insert 0 10875 A
insert 0 10876 A
insert 0 10877 A
insert 0 10878 A
insert 0 10879 A
insert 0 10880 A
insert 0 10881 A
insert 0 10882 A
insert 0 10883 A
insert 0 10884 A
insert 0 10885 A
insert 0 10886 A
insert 0 10887 A
insert 0 10888 A
insert 0 10889 A
insert 0 10890 A
insert 0 10891 A
insert 0 10892 A
insert 0 10893 A
insert 0 10894 A
insert 0 10895 A
insert 0 10896 A
insert 0 10897 A
insert 0 10898 A
insert 0 10899 A
insert 0 10900 A
insert 0 10901 A
insert 0 10902 A
insert 0 10903 A
insert 0 10904 A
insert 0 10905 A
insert 0 10906 A
insert 0 10907 A
insert 0 10908 A
insert 0 10909 A
insert 0 10910 A
insert 0 10911 A
insert 0 10912 A
insert 0 10913 A
insert 0 10914 A
insert 0 10915 A
insert 0 10916 A
insert 0 10917 A
insert 0 10918 A
insert 0 10919 A
insert 0 10920 A
insert 0 10921 A
insert 0 10922 A
insert 0 10923 A
insert 0 10924 A
insert 0 10925 A
insert 0 10926 A
insert 0 10927 A
insert 0 10928 A
insert 0 10929 A
insert 0 10930 A
insert 0 10931 A
insert 0 10932 A
insert 0 10933 A
insert 0 10934 A
insert 0 10935 A
insert 0 10936 A
insert 0 10937 A
insert 0 10938 A
insert 0 10939 A
insert 0 10940 A
insert 0 10941 A
insert 0 10942 A
insert 0 10943 A
insert 0 10944 A
insert 0 10945 A
insert 0 10946 A
insert 0 10947 A
insert 0 10948 A
insert 0 10949 A
insert 0 10950 A
insert 0 10951 A
insert 0 10952 A
insert 0 10953 A
insert 0 10954 A
insert 0 10955 A
insert 0 10956 A
insert 0 10957 A
insert 0 10958 A
insert 0 10959 A
insert 0 10960 A
insert 0 10961 A
insert 0 10962 A
insert 0 10963 A
insert 0 10964 A
insert 0 10965 A
insert 0 10966 A
insert 0 10967 A
insert 0 10968 A
insert 0 10969 A
insert 0 10970 A
insert 0 10971 A
insert 0 10972 A
insert 0 10973 A
insert 0 10974 A
insert 0 10975 A
insert 0 10976 A
insert 0 10977 A
insert 0 10978 A
insert 0 10979 A
insert 0 10980 A
insert 0 10981 A
insert 0 10982 A
insert 0 10983 A
insert 0 10984 A
insert 0 10985 A
insert 0 10986 A
insert 0 10987 A
insert 0 10988 A
insert 0 10989 A
insert 0 10990 A
insert 0 10991 A
insert 0 10992 A
insert 0 10993 A
insert 0 10994 A
insert 0 10995 A
insert 0 10996 A
insert 0 10997 A
insert 0 10998 A
insert 0 10999 A
insert 0 11000 A
insert 0 11001 A
insert 0 11002 A
insert 0 11003 A
insert 0 11004 A
insert 0 11005 A
insert 0 11006 A
insert 0 11007 A
insert 0 11008 A
insert 0 11009 A
insert 0 11010 A
insert 0 11011 A
insert 0 11012 A
insert 0 11013 A
insert 0 11014 A
insert 0 11015 A
insert 0 11016 A
insert 0 11017 A
insert 0 11018 A
insert 0 11019 A
insert 0 11020 A
insert 0 11021 A
insert 0 11022 A
insert 0 11023 A
insert 0 11024 A
insert 0 11025 A
insert 0 11026 A
insert 0 11027 A
insert 0 11028 A
insert 0 11029 A
insert 0 11030 A
insert 0 11031 A
insert 0 11032 A
insert 0 11033 A
insert 0 11034 A
insert 0 11035 A
insert 0 11036 A
insert 0 11037 A
insert 0 11038 A
insert 0 11039 A
insert 0 11040 A
insert 0 11041 A
insert 0 11042 A
insert 0 11043 A
insert 0 11044 A
insert 0 11045 A
insert 0 11046 A
insert 0 11047 A
insert 0 11048 A
insert 0 11049 A
insert 0 11050 A
insert 0 11051 A
insert 0 11052 A
insert 0 11053 A
insert 0 11054 A
insert 0 11055 A
insert 0 11056 A
insert 0 11057 A
insert 0 11058 A
insert 0 11059 A
insert 0 11060 A
insert 0 11061 A
insert 0 11062 A
insert 0 11063 A
insert 0 11064 A
insert 0 11065 A
insert 0 11066 A
insert 0 11067 A
insert 0 11068 A
insert 0 11069 A
insert 0 11070 A
insert 0 11071 A
insert 0 11072 A
insert 0 11073 A
insert 0 11074 A
insert 0 11075 A
insert 0 11076 A
insert 0 11077 A
insert 0 11078 A
insert 0 11079 A
insert 0 11080 A
insert 0 11081 A
insert 0 11082 A
insert 0 11083 A
insert 0 11084 A
insert 0 11085 A
insert 0 11086 A
insert 0 11087 A
insert 0 11088 A
insert 0 11089 A
insert 0 11090 A
insert 0 11091 A
insert 0 11092 A
insert 0 11093 A
insert 0 11094 A
insert 0 11095 A
insert 0 11096 A
insert 0 11097 A
insert 0 11098 A
insert 0 11099 A
insert 0 11100 A
insert 0 11101 A
insert 0 11102 A
insert 0 11103 A
insert 0 11104 A
insert 0 11105 A
insert 0 11106 A
insert 0 11107 A
insert 0 11108 A
insert 0 11109 A
insert 0 11110 A
insert 0 11111 A
insert 0 11112 A
insert 0 11113 A
insert 0 11114 A
insert 0 11115 A
insert 0 11116 A
insert 0 11117 A
insert 0 11118 A
insert 0 11119 A
insert 0 11120 A
insert 0 11121 A
insert 0 11122 A
insert 0 11123 A
insert 0 11124 A
insert 0 11125 A
insert 0 11126 A
insert 0 11127 A
insert 0 11128 A
insert 0 11129 A
insert 0 11130 A
insert 0 11131 A
insert 0 11132 A
insert 0 11133 A
insert 0 11134 A
insert 0 11135 A
insert 0 11136 A
insert 0 11137 A
insert 0 11138 A
insert 0 11139 A
insert 0 11140 A
insert 0 11141 A
insert 0 11142 A
insert 0 11143 A
insert 0 11144 A
insert 0 11145 A
insert 0 11146 A
insert 0 11147 A
insert 0 11148 A
insert 0 11149 A
insert 0 11150 A
insert 0 11151 A
insert 0 11152 A
insert 0 11153 A
insert 0 11154 A
insert 0 11155 A
insert 0 11156 A
insert 0 11157 A
insert 0 11158 A
insert 0 11159 A
insert 0 11160 A
insert 0 11161 A
insert 0 11162 A
insert 0 11163 A
insert 0 11164 A
insert 0 11165 A
insert 0 11166 A
insert 0 11167 A
insert 0 11168 A
insert 0 11169 A
insert 0 11170 A
insert 0 11171 A
insert 0 11172 A
insert 0 11173 A
insert 0 11174 A
insert 0 11175 A
insert 0 11176 A
insert 0 11177 A
insert 0 11178 A
insert 0 11179 A
insert 0 11180 A
insert 0 11181 A
insert 0 11182 A
insert 0 11183 A
insert 0 11184 A
insert 0 11185 A
insert 0 11186 A
insert 0 11187 A
insert 0 11188 A
insert 0 11189 A
insert 0 11190 A
insert 0 11191 A
insert 0 11192 A
insert 0 11193 A
insert 0 11194 A
insert 0 11195 A
insert 0 11196 A
insert 0 11197 A
insert 0 11198 A
insert 0 11199 A
insert 0 11200 A
insert 0 11201 A
insert 0 11202 A
insert 0 11203 A
insert 0 11204 A
insert 0 11205 A
insert 0 11206 A
insert 0 11207 A
insert 0 11208 A
insert 0 11209 A
insert 0 11210 A
insert 0 11211 A
insert 0 11212 A
insert 0 11213 A
insert 0 11214 A
insert 0 11215 A
insert 0 11216 A
insert 0 11217 A
insert 0 11218 A
insert 0 11219 A
insert 0 11220 A
insert 0 11221 A
insert 0 11222 A
insert 0 11223 A
insert 0 11224 A
insert 0 11225 A
insert 0 11226 A
insert 0 11227 A
insert 0 11228 A
insert 0 11229 A
insert 0 11230 A
insert 0 11231 A
insert 0 11232 A
insert 0 11233 A
insert 0 11234 A
insert 0 11235 A
insert 0 11236 A
insert 0 11237 A
insert 0 11238 A
insert 0 11239 A
insert 0 11240 A
insert 0 11241 A
insert 0 11242 A
insert 0 11243 A
insert 0 11244 A
insert 0 11245 A
insert 0 11246 A
insert 0 11247 A
insert 0 11248 A
insert 0 11249 A
insert 0 11250 A
insert 0 11251 A
insert 0 11252 A
insert 0 11253 A
insert 0 11254 A
insert 0 11255 A
insert 0 11256 A
insert 0 11257 A
insert 0 11258 A
insert 0 11259 A
insert 0 11260 A
insert 0 11261 A
insert 0 11262 A
insert 0 11263 A
insert 0 11264 A
insert 0 11265 A
insert 0 11266 A
insert 0 11267 A
insert 0 11268 A
insert 0 11269 A
insert 0 11270 A
insert 0 11271 A
insert 0 11272 A
insert 0 11273 A
insert 0 11274 A
insert 0 11275 A
insert 0 11276 A
insert 0 11277 A
insert 0 11278 A
insert 0 11279 A
insert 0 11280 A
insert 0 11281 A
insert 0 11282 A
insert 0 11283 A
insert 0 11284 A
insert 0 11285 A
insert 0 11286 A
insert 0 11287 A
insert 0 11288 A
insert 0 11289 A
insert 0 11290 A
insert 0 11291 A
insert 0 11292 A
insert 0 11293 A
insert 0 11294 A
insert 0 11295 A
insert 0 11296 A
insert 0 11297 A
insert 0 11298 A
insert 0 11299 A
insert 0 11300 A
insert 0 11301 A
insert 0 11302 A
insert 0 11303 A
insert 0 11304 A
insert 0 11305 A
insert 0 11306 A
insert 0 11307 A
insert 0 11308 A
insert 0 11309 A
insert 0 11310 A
insert 0 11311 A
insert 0 11312 A
insert 0 11313 A
insert 0 11314 A
insert 0 11315 A
insert 0 11316 A
insert 0 11317 A
insert 0 11318 A
insert 0 11319 A
insert 0 11320 A
insert 0 11321 A
insert 0 11322 A
insert 0 11323 A
insert 0 11324 A
insert 0 11325 A
insert 0 11326 A
insert 0 11327 A
insert 0 11328 A
insert 0 11329 A
insert 0 11330 A
insert 0 11331 A
insert 0 11332 A
insert 0 11333 A
insert 0 11334 A
insert 0 11335 A
insert 0 11336 A
insert 0 11337 A
insert 0 11338 A
insert 0 11339 A
insert 0 11340 A
insert 0 11341 A
insert 0 11342 A
insert 0 11343 A
insert 0 11344 A
insert 0 11345 A
insert 0 11346 A
insert 0 11347 A
insert 0 11348 A
insert 0 11349 A
insert 0 11350 A
insert 0 11351 A
insert 0 11352 A
insert 0 11353 A
insert 0 11354 A
insert 0 11355 A
insert 0 11356 A
insert 0 11357 A
insert 0 11358 A
insert 0 11359 A
insert 0 11360 A
insert 0 11361 A
insert 0 11362 A
insert 0 11363 A
insert 0 11364 A
insert 0 11365 A
insert 0 11366 A
insert 0 11367 A
insert 0 11368 A
insert 0 11369 A
insert 0 11370 A
insert 0 11371 A
insert 0 11372 A
insert 0 11373 A
insert 0 11374 A
insert 0 11375 A
insert 0 11376 A
insert 0 11377 A
insert 0 11378 A
insert 0 11379 A
insert 0 11380 A
insert 0 11381 A
insert 0 11382 A
insert 0 11383 A
insert 0 11384 A
insert 0 11385 A
insert 0 11386 A
insert 0 11387 A
insert 0 11388 A
insert 0 11389 A
insert 0 11390 A
insert 0 11391 A
insert 0 11392 A
insert 0 11393 A
insert 0 11394 A
insert 0 11395 A
insert 0 11396 A
insert 0 11397 A
insert 0 11398 A
insert 0 11399 A
insert 0 11400 A
insert 0 11401 A
insert 0 11402 A
insert 0 11403 A
insert 0 11404 A
insert 0 11405 A
insert 0 11406 A
insert 0 11407 A
insert 0 11408 A
insert 0 11409 A
insert 0 11410 A
insert 0 11411 A
insert 0 11412 A
insert 0 11413 A
insert 0 11414 A
insert 0 11415 A
insert 0 11416 A
insert 0 11417 A
insert 0 11418 A
insert 0 11419 A
insert 0 11420 A
insert 0 11421 A
insert 0 11422 A
insert 0 11423 A
insert 0 11424 A
insert 0 11425 A
insert 0 11426 A
insert 0 11427 A
insert 0 11428 A
insert 0 11429 A
insert 0 11430 A
insert 0 11431 A
insert 0 11432 A
insert 0 11433 A
insert 0 11434 A
insert 0 11435 A
insert 0 11436 A
insert 0 11437 A
insert 0 11438 A
insert 0 11439 A
insert 0 11440 A
insert 0 11441 A
insert 0 11442 A
insert 0 11443 A
insert 0 11444 A
insert 0 11445 A
insert 0 11446 A
insert 0 11447 A
insert 0 11448 A
insert 0 11449 A
insert 0 11450 A
insert 0 11451 A
insert 0 11452 A
insert 0 11453 A
insert 0 11454 A
insert 0 11455 A
insert 0 11456 A
insert 0 11457 A
insert 0 11458 A
insert 0 11459 A
insert 0 11460 A
insert 0 11461 A
insert 0 11462 A
insert 0 11463 A
insert 0 11464 A
insert 0 11465 A
insert 0 11466 A
insert 0 11467 A
insert 0 11468 A
insert 0 11469 A
insert 0 11470 A
insert 0 11471 A
insert 0 11472 A
insert 0 11473 A
insert 0 11474 A
insert 0 11475 A
insert 0 11476 A
insert 0 11477 A
insert 0 11478 A
insert 0 11479 A
insert 0 11480 A
insert 0 11481 A
insert 0 11482 A
insert 0 11483 A
insert 0 11484 A
insert 0 11485 A
insert 0 11486 A
insert 0 11487 A
insert 0 11488 A
insert 0 11489 A
insert 0 11490 A
insert 0 11491 A
insert 0 11492 A
insert 0 11493 A
insert 0 11494 A
insert 0 11495 A
insert 0 11496 A
insert 0 11497 A
insert 0 11498 A
insert 0 11499 A
insert 0 11500 A
insert 0 11501 A
insert 0 11502 A
insert 0 11503 A
insert 0 11504 A
insert 0 11505 A
insert 0 11506 A
insert 0 11507 A
insert 0 11508 A
insert 0 11509 A
insert 0 11510 A
insert 0 11511 A
insert 0 11512 A
insert 0 11513 A
insert 0 11514 A
insert 0 11515 A
insert 0 11516 A
insert 0 11517 A
insert 0 11518 A
insert 0 11519 A
insert 0 11520 A
insert 0 11521 A
insert 0 11522 A
insert 0 11523 A
insert 0 11524 A
insert 0 11525 A
insert 0 11526 A
insert 0 11527 A
insert 0 11528 A
insert 0 11529 A
insert 0 11530 A
insert 0 11531 A
insert 0 11532 A
insert 0 11533 A
insert 0 11534 A
insert 0 11535 A
insert 0 11536 A
insert 0 11537 A
insert 0 11538 A
insert 0 11539 A
insert 0 11540 A
insert 0 11541 A
insert 0 11542 A
insert 0 11543 A
insert 0 11544 A
insert 0 11545 A
insert 0 11546 A
insert 0 11547 A
insert 0 11548 A
insert 0 11549 A
insert 0 11550 A
insert 0 11551 A
insert 0 11552 A
insert 0 11553 A
insert 0 11554 A
insert 0 11555 A
insert 0 11556 A
insert 0 11557 A
insert 0 11558 A
insert 0 11559 A
insert 0 11560 A
insert 0 11561 A
insert 0 11562 A
insert 0 11563 A
insert 0 11564 A
insert 0 11565 A
insert 0 11566 A
insert 0 11567 A
insert 0 11568 A
insert 0 11569 A
insert 0 11570 A
insert 0 11571 A
insert 0 11572 A
insert 0 11573 A
insert 0 11574 A
insert 0 11575 A
insert 0 11576 A
insert 0 11577 A
insert 0 11578 A
insert 0 11579 A
insert 0 11580 A
insert 0 11581 A
insert 0 11582 A
insert 0 11583 A
insert 0 11584 A
insert 0 11585 A
insert 0 11586 A
insert 0 11587 A
insert 0 11588 A
insert 0 11589 A
insert 0 11590 A
insert 0 11591 A
insert 0 11592 A
insert 0 11593 A
insert 0 11594 A
insert 0 11595 A
insert 0 11596 A
insert 0 11597 A
insert 0 11598 A
insert 0 11599 A
insert 0 11600 A
insert 0 11601 A
insert 0 11602 A
insert 0 11603 A
insert 0 11604 A
insert 0 11605 A
insert 0 11606 A
insert 0 11607 A
insert 0 11608 A
insert 0 11609 A
insert 0 11610 A
insert 0 11611 A
insert 0 11612 A
insert 0 11613 A
insert 0 11614 A
insert 0 11615 A
insert 0 11616 A
insert 0 11617 A
insert 0 11618 A
insert 0 11619 A
insert 0 11620 A
insert 0 11621 A
insert 0 11622 A
insert 0 11623 A
insert 0 11624 A
insert 0 11625 A
insert 0 11626 A
insert 0 11627 A
insert 0 11628 A
insert 0 11629 A
insert 0 11630 A
insert 0 11631 A
insert 0 11632 A
insert 0 11633 A
insert 0 11634 A
insert 0 11635 A
insert 0 11636 A
insert 0 11637 A
insert 0 11638 A
insert 0 11639 A
insert 0 11640 A
insert 0 11641 A
insert 0 11642 A
insert 0 11643 A
insert 0 11644 A
insert 0 11645 A
insert 0 11646 A
insert 0 11647 A
insert 0 11648 A
insert 0 11649 A
insert 0 11650 A
insert 0 11651 A
insert 0 11652 A
insert 0 11653 A
insert 0 11654 A
insert 0 11655 A
insert 0 11656 A
insert 0 11657 A
insert 0 11658 A
insert 0 11659 A
insert 0 11660 A
insert 0 11661 A
insert 0 11662 A
insert 0 11663 A
insert 0 11664 A
insert 0 11665 A
insert 0 11666 A
insert 0 11667 A
insert 0 11668 A
insert 0 11669 A
insert 0 11670 A
insert 0 11671 A
insert 0 11672 A
insert 0 11673 A
insert 0 11674 A
insert 0 11675 A
insert 0 11676 A
insert 0 11677 A
insert 0 11678 A
insert 0 11679 A
insert 0 11680 A
insert 0 11681 A
insert 0 11682 A
insert 0 11683 A
insert 0 11684 A
insert 0 11685 A
insert 0 11686 A
insert 0 11687 A
insert 0 11688 A
insert 0 11689 A
insert 0 11690 A
insert 0 11691 A
insert 0 11692 A
insert 0 11693 A
insert 0 11694 A
insert 0 11695 A
insert 0 11696 A
insert 0 11697 A
insert 0 11698 A
insert 0 11699 A
insert 0 11700 A
insert 0 11701 A
insert 0 11702 A
insert 0 11703 A
insert 0 11704 A
insert 0 11705 A
insert 0 11706 A
insert 0 11707 A
insert 0 11708 A
insert 0 11709 A
insert 0 11710 A
insert 0 11711 A
insert 0 11712 A
insert 0 11713 A
insert 0 11714 A
insert 0 11715 A
insert 0 11716 A
insert 0 11717 A
insert 0 11718 A
insert 0 11719 A
insert 0 11720 A
insert 0 11721 A
insert 0 11722 A
insert 0 11723 A
insert 0 11724 A
insert 0 11725 A
insert 0 11726 A
insert 0 11727 A
insert 0 11728 A
insert 0 11729 A
insert 0 11730 A
insert 0 11731 A
insert 0 11732 A
insert 0 11733 A
insert 0 11734 A
insert 0 11735 A
insert 0 11736 A
insert 0 11737 A
insert 0 11738 A
insert 0 11739 A
insert 0 11740 A
insert 0 11741 A
insert 0 11742 A
insert 0 11743 A
insert 0 11744 A
insert 0 11745 A
insert 0 11746 A
insert 0 11747 A
insert 0 11748 A
insert 0 11749 A
insert 0 11750 A
insert 0 11751 A
insert 0 11752 A
insert 0 11753 A
insert 0 11754 A
insert 0 11755 A
insert 0 11756 A
insert 0 11757 A
insert 0 11758 A
insert 0 11759 A
insert 0 11760 A
insert 0 11761 A
insert 0 11762 A
insert 0 11763 A
insert 0 11764 A
insert 0 11765 A
insert 0 11766 A
insert 0 11767 A
insert 0 11768 A
insert 0 11769 A
insert 0 11770 A
insert 0 11771 A
insert 0 11772 A
insert 0 11773 A
insert 0 11774 A
insert 0 11775 A
insert 0 11776 A
insert 0 11777 A
insert 0 11778 A
insert 0 11779 A
insert 0 11780 A
insert 0 11781 A
insert 0 11782 A
insert 0 11783 A
insert 0 11784 A
insert 0 11785 A
insert 0 11786 A
insert 0 11787 A
insert 0 11788 A
insert 0 11789 A
insert 0 11790 A
insert 0 11791 A
insert 0 11792 A
insert 0 11793 A
insert 0 11794 A
insert 0 11795 A
insert 0 11796 A
insert 0 11797 A
insert 0 11798 A
insert 0 11799 A
insert 0 11800 A
insert 0 11801 A
insert 0 11802 A
insert 0 11803 A
insert 0 11804 A
insert 0 11805 A
insert 0 11806 A
insert 0 11807 A
insert 0 11808 A
insert 0 11809 A
insert 0 11810 A
insert 0 11811 A
insert 0 11812 A
insert 0 11813 A
insert 0 11814 A
insert 0 11815 A
insert 0 11816 A
insert 0 11817 A
insert 0 11818 A
insert 0 11819 A
insert 0 11820 A
insert 0 11821 A
insert 0 11822 A
insert 0 11823 A
insert 0 11824 A
insert 0 11825 A
insert 0 11826 A
insert 0 11827 A
insert 0 11828 A
insert 0 11829 A
insert 0 11830 A
insert 0 11831 A
insert 0 11832 A
insert 0 11833 A
insert 0 11834 A
insert 0 11835 A
insert 0 11836 A
insert 0 11837 A
insert 0 11838 A
insert 0 11839 A
insert 0 11840 A
insert 0 11841 A
insert 0 11842 A
insert 0 11843 A
insert 0 11844 A
insert 0 11845 A
insert 0 11846 A
insert 0 11847 A
insert 0 11848 A
insert 0 11849 A
insert 0 11850 A
insert 0 11851 A
insert 0 11852 A
insert 0 11853 A
insert 0 11854 A
insert 0 11855 A
insert 0 11856 A
insert 0 11857 A
insert 0 11858 A
insert 0 11859 A
insert 0 11860 A
insert 0 11861 A
insert 0 11862 A
insert 0 11863 A
insert 0 11864 A
insert 0 11865 A
insert 0 11866 A
insert 0 11867 A
insert 0 11868 A
insert 0 11869 A
insert 0 11870 A
insert 0 11871 A
insert 0 11872 A
insert 0 11873 A
insert 0 11874 A
insert 0 11875 A
insert 0 11876 A
insert 0 11877 A
insert 0 11878 A
insert 0 11879 A
insert 0 11880 A
insert 0 11881 A
insert 0 11882 A
insert 0 11883 A
insert 0 11884 A
insert 0 11885 A
insert 0 11886 A
insert 0 11887 A
insert 0 11888 A
insert 0 11889 A
insert 0 11890 A
insert 0 11891 A
insert 0 11892 A
insert 0 11893 A
insert 0 11894 A
insert 0 11895 A
insert 0 11896 A
insert 0 11897 A
insert 0 11898 A
insert 0 11899 A
insert 0 11900 A
insert 0 11901 A
insert 0 11902 A
insert 0 11903 A
insert 0 11904 A
insert 0 11905 A
insert 0 11906 A
insert 0 11907 A
insert 0 11908 A
insert 0 11909 A
insert 0 11910 A
insert 0 11911 A
insert 0 11912 A
insert 0 11913 A
insert 0 11914 A
insert 0 11915 A
insert 0 11916 A
insert 0 11917 A
insert 0 11918 A
insert 0 11919 A
insert 0 11920 A
insert 0 11921 A
insert 0 11922 A
insert 0 11923 A
insert 0 11924 A
insert 0 11925 A
insert 0 11926 A
insert 0 11927 A
insert 0 11928 A
insert 0 11929 A
insert 0 11930 A
insert 0 11931 A
insert 0 11932 A
insert 0 11933 A
insert 0 11934 A
insert 0 11935 A
insert 0 11936 A
insert 0 11937 A
insert 0 11938 A
insert 0 11939 A
insert 0 11940 A
insert 0 11941 A
insert 0 11942 A
insert 0 11943 A
insert 0 11944 A
insert 0 11945 A
insert 0 11946 A
insert 0 11947 A
insert 0 11948 A
insert 0 11949 A
insert 0 11950 A
insert 0 11951 A
insert 0 11952 A
insert 0 11953 A
insert 0 11954 A
insert 0 11955 A
insert 0 11956 A
insert 0 11957 A
insert 0 11958 A
insert 0 11959 A
insert 0 11960 A
insert 0 11961 A
insert 0 11962 A
insert 0 11963 A
insert 0 11964 A
insert 0 11965 A
insert 0 11966 A
insert 0 11967 A
insert 0 11968 A
insert 0 11969 A
insert 0 11970 A
insert 0 11971 A
insert 0 11972 A
insert 0 11973 A
insert 0 11974 A
insert 0 11975 A
insert 0 11976 A
insert 0 11977 A
insert 0 11978 A
insert 0 11979 A
insert 0 11980 A
insert 0 11981 A
insert 0 11982 A
insert 0 11983 A
insert 0 11984 A
insert 0 11985 A
insert 0 11986 A
insert 0 11987 A
insert 0 11988 A
insert 0 11989 A
insert 0 11990 A
insert 0 11991 A
insert 0 11992 A
insert 0 11993 A
insert 0 11994 A
insert 0 11995 A
insert 0 11996 A
insert 0 11997 A
insert 0 11998 A
insert 0 11999 A
insert 0 12000 A
insert 0 12001 A
insert 0 12002 A
insert 0 12003 A
insert 0 12004 A
insert 0 12005 A
insert 0 12006 A
insert 0 12007 A
insert 0 12008 A
insert 0 12009 A
insert 0 12010 A
insert 0 12011 A
insert 0 12012 A
insert 0 12013 A
insert 0 12014 A
insert 0 12015 A
insert 0 12016 A
insert 0 12017 A
insert 0 12018 A
insert 0 12019 A
insert 0 12020 A
insert 0 12021 A
insert 0 12022 A
insert 0 12023 A
insert 0 12024 A
insert 0 12025 A
insert 0 12026 A
insert 0 12027 A
insert 0 12028 A
insert 0 12029 A
insert 0 12030 A
insert 0 12031 A
insert 0 12032 A
insert 0 12033 A
insert 0 12034 A
insert 0 12035 A
insert 0 12036 A
insert 0 12037 A
insert 0 12038 A
insert 0 12039 A
insert 0 12040 A
insert 0 12041 A
insert 0 12042 A
insert 0 12043 A
insert 0 12044 A
insert 0 12045 A
insert 0 12046 A
insert 0 12047 A
insert 0 12048 A
insert 0 12049 A
insert 0 12050 A
insert 0 12051 A
insert 0 12052 A
insert 0 12053 A
insert 0 12054 A
insert 0 12055 A
insert 0 12056 A
insert 0 12057 A
insert 0 12058 A
insert 0 12059 A
insert 0 12060 A
insert 0 12061 A
insert 0 12062 A
insert 0 12063 A
insert 0 12064 A
insert 0 12065 A
insert 0 12066 A
insert 0 12067 A
insert 0 12068 A
insert 0 12069 A
insert 0 12070 A
insert 0 12071 A
insert 0 12072 A
insert 0 12073 A
insert 0 12074 A
insert 0 12075 A
insert 0 12076 A
insert 0 12077 A
insert 0 12078 A
insert 0 12079 A
insert 0 12080 A
insert 0 12081 A
insert 0 12082 A
insert 0 12083 A
insert 0 12084 A
insert 0 12085 A
insert 0 12086 A
insert 0 12087 A
insert 0 12088 A
insert 0 12089 A
insert 0 12090 A
insert 0 12091 A
insert 0 12092 A
insert 0 12093 A
insert 0 12094 A
insert 0 12095 A
insert 0 12096 A
insert 0 12097 A
insert 0 12098 A
insert 0 12099 A
insert 0 12100 A
insert 0 12101 A
insert 0 12102 A
insert 0 12103 A
insert 0 12104 A
insert 0 12105 A
insert 0 12106 A
insert 0 12107 A
insert 0 12108 A
insert 0 12109 A
insert 0 12110 A
insert 0 12111 A
insert 0 12112 A
insert 0 12113 A
insert 0 12114 A
insert 0 12115 A
insert 0 12116 A
insert 0 12117 A
insert 0 12118 A
insert 0 12119 A
insert 0 12120 A
insert 0 12121 A
insert 0 12122 A
insert 0 12123 A
insert 0 12124 A
insert 0 12125 A
insert 0 12126 A
insert 0 12127 A
insert 0 12128 A
insert 0 12129 A
insert 0 12130 A
insert 0 12131 A
insert 0 12132 A
insert 0 12133 A
insert 0 12134 A
insert 0 12135 A
insert 0 12136 A
insert 0 12137 A
insert 0 12138 A
insert 0 12139 A
insert 0 12140 A
insert 0 12141 A
insert 0 12142 A
insert 0 12143 A
insert 0 12144 A
insert 0 12145 A
insert 0 12146 A
insert 0 12147 A
insert 0 12148 A
insert 0 12149 A
insert 0 12150 A
insert 0 12151 A
insert 0 12152 A
insert 0 12153 A
insert 0 12154 A
insert 0 12155 A
insert 0 12156 A
insert 0 12157 A
insert 0 12158 A
insert 0 12159 A
insert 0 12160 A
insert 0 12161 A
insert 0 12162 A
insert 0 12163 A
insert 0 12164 A
insert 0 12165 A
insert 0 12166 A
insert 0 12167 A
insert 0 12168 A
insert 0 12169 A
insert 0 12170 A
insert 0 12171 A
insert 0 12172 A
insert 0 12173 A
insert 0 12174 A
insert 0 12175 A
insert 0 12176 A
insert 0 12177 A
insert 0 12178 A
insert 0 12179 A
insert 0 12180 A
insert 0 12181 A
insert 0 12182 A
insert 0 12183 A
insert 0 12184 A
insert 0 12185 A
insert 0 12186 A
insert 0 12187 A
insert 0 12188 A
insert 0 12189 A
insert 0 12190 A
insert 0 12191 A
insert 0 12192 A
insert 0 12193 A
insert 0 12194 A
insert 0 12195 A
insert 0 12196 A
insert 0 12197 A
insert 0 12198 A
insert 0 12199 A
insert 0 12200 A
insert 0 12201 A
insert 0 12202 A
insert 0 12203 A
insert 0 12204 A
insert 0 12205 A
insert 0 12206 A
insert 0 12207 A
insert 0 12208 A
insert 0 12209 A
insert 0 12210 A
insert 0 12211 A
insert 0 12212 A
insert 0 12213 A
insert 0 12214 A
insert 0 12215 A
insert 0 12216 A
insert 0 12217 A
insert 0 12218 A
insert 0 12219 A
insert 0 12220 A
insert 0 12221 A
insert 0 12222 A
insert 0 12223 A
insert 0 12224 A
insert 0 12225 A
insert 0 12226 A
insert 0 12227 A
insert 0 12228 A
insert 0 12229 A
insert 0 12230 A
insert 0 12231 A
insert 0 12232 A
insert 0 12233 A
insert 0 12234 A
insert 0 12235 A
insert 0 12236 A
insert 0 12237 A
insert 0 12238 A
insert 0 12239 A
insert 0 12240 A
insert 0 12241 A
insert 0 12242 A
insert 0 12243 A
insert 0 12244 A
insert 0 12245 A
insert 0 12246 A
insert 0 12247 A
insert 0 12248 A
insert 0 12249 A
insert 0 12250 A
insert 0 12251 A
insert 0 12252 A
insert 0 12253 A
insert 0 12254 A
insert 0 12255 A
insert 0 12256 A
insert 0 12257 A
insert 0 12258 A
insert 0 12259 A
insert 0 12260 A
insert 0 12261 A
insert 0 12262 A
insert 0 12263 A
insert 0 12264 A
insert 0 12265 A
insert 0 12266 A
insert 0 12267 A
insert 0 12268 A
insert 0 12269 A
insert 0 12270 A
insert 0 12271 A
insert 0 12272 A
insert 0 12273 A
insert 0 12274 A
insert 0 12275 A
insert 0 12276 A
insert 0 12277 A
insert 0 12278 A
insert 0 12279 A
insert 0 12280 A
insert 0 12281 A
insert 0 12282 A
insert 0 12283 A
insert 0 12284 A
insert 0 12285 A
insert 0 12286 A
insert 0 12287 A
insert 0 12288 A
insert 0 12289 A
insert 0 12290 A
insert 0 12291 A
insert 0 12292 A
insert 0 12293 A
insert 0 12294 A
insert 0 12295 A
insert 0 12296 A
insert 0 12297 A
insert 0 12298 A
insert 0 12299 A
insert 0 12300 A
insert 0 12301 A
insert 0 12302 A
insert 0 12303 A
insert 0 12304 A
insert 0 12305 A
insert 0 12306 A
insert 0 12307 A
insert 0 12308 A
insert 0 12309 A
insert 0 12310 A
insert 0 12311 A
insert 0 12312 A
insert 0 12313 A
insert 0 12314 A
insert 0 12315 A
insert 0 12316 A
insert 0 12317 A
insert 0 12318 A
insert 0 12319 A
insert 0 12320 A
insert 0 12321 A
insert 0 12322 A
insert 0 12323 A
insert 0 12324 A
insert 0 12325 A
insert 0 12326 A
insert 0 12327 A
insert 0 12328 A
insert 0 12329 A
insert 0 12330 A
insert 0 12331 A
insert 0 12332 A
insert 0 12333 A
insert 0 12334 A
insert 0 12335 A
insert 0 12336 A
insert 0 12337 A
insert 0 12338 A
insert 0 12339 A
insert 0 12340 A
insert 0 12341 A
insert 0 12342 A
insert 0 12343 A
insert 0 12344 A
insert 0 12345 A
insert 0 12346 A
insert 0 12347 A
insert 0 12348 A
insert 0 12349 A
insert 0 12350 A
insert 0 12351 A
insert 0 12352 A
insert 0 12353 A
insert 0 12354 A
insert 0 12355 A
insert 0 12356 A
insert 0 12357 A
insert 0 12358 A
insert 0 12359 A
insert 0 12360 A
insert 0 12361 A
insert 0 12362 A
insert 0 12363 A
insert 0 12364 A
insert 0 12365 A
insert 0 12366 A
insert 0 12367 A
insert 0 12368 A
insert 0 12369 A
insert 0 12370 A
insert 0 12371 A
insert 0 12372 A
insert 0 12373 A
insert 0 12374 A
insert 0 12375 A
insert 0 12376 A
insert 0 12377 A
insert 0 12378 A
insert 0 12379 A
insert 0 12380 A
insert 0 12381 A
insert 0 12382 A
insert 0 12383 A
insert 0 12384 A
insert 0 12385 A
insert 0 12386 A
insert 0 12387 A
insert 0 12388 A
insert 0 12389 A
insert 0 12390 A
insert 0 12391 A
insert 0 12392 A
insert 0 12393 A
insert 0 12394 A
insert 0 12395 A
insert 0 12396 A
insert 0 12397 A
insert 0 12398 A
insert 0 12399 A
insert 0 12400 A
insert 0 12401 A
insert 0 12402 A
insert 0 12403 A
insert 0 12404 A
insert 0 12405 A
insert 0 12406 A
insert 0 12407 A
insert 0 12408 A
insert 0 12409 A
insert 0 12410 A
insert 0 12411 A
insert 0 12412 A
insert 0 12413 A
insert 0 12414 A
insert 0 12415 A
insert 0 12416 A
insert 0 12417 A
insert 0 12418 A
insert 0 12419 A
insert 0 12420 A
insert 0 12421 A
insert 0 12422 A
insert 0 12423 A
insert 0 12424 A
insert 0 12425 A
insert 0 12426 A
insert 0 12427 A
insert 0 12428 A
insert 0 12429 A
insert 0 12430 A
insert 0 12431 A
insert 0 12432 A
insert 0 12433 A
insert 0 12434 A
insert 0 12435 A
insert 0 12436 A
insert 0 12437 A
insert 0 12438 A
insert 0 12439 A
insert 0 12440 A
insert 0 12441 A
insert 0 12442 A
insert 0 12443 A
insert 0 12444 A
insert 0 12445 A
insert 0 12446 A
insert 0 12447 A
insert 0 12448 A
insert 0 12449 A
insert 0 12450 A
insert 0 12451 A
insert 0 12452 A
insert 0 12453 A
insert 0 12454 A
insert 0 12455 A
insert 0 12456 A
insert 0 12457 A
insert 0 12458 A
insert 0 12459 A
insert 0 12460 A
insert 0 12461 A
insert 0 12462 A
insert 0 12463 A
insert 0 12464 A
insert 0 12465 A
insert 0 12466 A
insert 0 12467 A
insert 0 12468 A
insert 0 12469 A
insert 0 12470 A
insert 0 12471 A
insert 0 12472 A
insert 0 12473 A
insert 0 12474 A
insert 0 12475 A
insert 0 12476 A
insert 0 12477 A
insert 0 12478 A
insert 0 12479 A
insert 0 12480 A
insert 0 12481 A
insert 0 12482 A
insert 0 12483 A
insert 0 12484 A
insert 0 12485 A
insert 0 12486 A
insert 0 12487 A
insert 0 12488 A
insert 0 12489 A
insert 0 12490 A
insert 0 12491 A
insert 0 12492 A
insert 0 12493 A
insert 0 12494 A
insert 0 12495 A
insert 0 12496 A
insert 0 12497 A
insert 0 12498 A
insert 0 12499 A
insert 0 12500 A
insert 0 12501 A
insert 0 12502 A
insert 0 12503 A
insert 0 12504 A
insert 0 12505 A
insert 0 12506 A
insert 0 12507 A
insert 0 12508 A
insert 0 12509 A
insert 0 12510 A
insert 0 12511 A
insert 0 12512 A
insert 0 12513 A
insert 0 12514 A
insert 0 12515 A
insert 0 12516 A
insert 0 12517 A
insert 0 12518 A
insert 0 12519 A
insert 0 12520 A
insert 0 12521 A
insert 0 12522 A
insert 0 12523 A
insert 0 12524 A
insert 0 12525 A
insert 0 12526 A
insert 0 12527 A
insert 0 12528 A
insert 0 12529 A
insert 0 12530 A
insert 0 12531 A
insert 0 12532 A
insert 0 12533 A
insert 0 12534 A
insert 0 12535 A
insert 0 12536 A
insert 0 12537 A
insert 0 12538 A
insert 0 12539 A
insert 0 12540 A
insert 0 12541 A
insert 0 12542 A
insert 0 12543 A
insert 0 12544 A
insert 0 12545 A
insert 0 12546 A
insert 0 12547 A
insert 0 12548 A
insert 0 12549 A
insert 0 12550 A
insert 0 12551 A
insert 0 12552 A
insert 0 12553 A
insert 0 12554 A
insert 0 12555 A
insert 0 12556 A
insert 0 12557 A
insert 0 12558 A
insert 0 12559 A
insert 0 12560 A
insert 0 12561 A
insert 0 12562 A
insert 0 12563 A
insert 0 12564 A
insert 0 12565 A
insert 0 12566 A
insert 0 12567 A
insert 0 12568 A
insert 0 12569 A
insert 0 12570 A
insert 0 12571 A
insert 0 12572 A
insert 0 12573 A
insert 0 12574 A
insert 0 12575 A
insert 0 12576 A
insert 0 12577 A
insert 0 12578 A
insert 0 12579 A
insert 0 12580 A
insert 0 12581 A
insert 0 12582 A
insert 0 12583 A
insert 0 12584 A
insert 0 12585 A
insert 0 12586 A
insert 0 12587 A
insert 0 12588 A
insert 0 12589 A
insert 0 12590 A
insert 0 12591 A
insert 0 12592 A
insert 0 12593 A
insert 0 12594 A
insert 0 12595 A
insert 0 12596 A
insert 0 12597 A
insert 0 12598 A
insert 0 12599 A
insert 0 12600 A
insert 0 12601 A
insert 0 12602 A
insert 0 12603 A
insert 0 12604 A
insert 0 12605 A
insert 0 12606 A
insert 0 12607 A
insert 0 12608 A
insert 0 12609 A
insert 0 12610 A
insert 0 12611 A
insert 0 12612 A
insert 0 12613 A
insert 0 12614 A
insert 0 12615 A
insert 0 12616 A
insert 0 12617 A
insert 0 12618 A
insert 0 12619 A
insert 0 12620 A
insert 0 12621 A
insert 0 12622 A
insert 0 12623 A
insert 0 12624 A
insert 0 12625 A
insert 0 12626 A
insert 0 12627 A
insert 0 12628 A
insert 0 12629 A
insert 0 12630 A
insert 0 12631 A
insert 0 12632 A
insert 0 12633 A
insert 0 12634 A
insert 0 12635 A
insert 0 12636 A
insert 0 12637 A
insert 0 12638 A
insert 0 12639 A
insert 0 12640 A
insert 0 12641 A
insert 0 12642 A
insert 0 12643 A
insert 0 12644 A
insert 0 12645 A
insert 0 12646 A
insert 0 12647 A
insert 0 12648 A
insert 0 12649 A
insert 0 12650 A
insert 0 12651 A
insert 0 12652 A
insert 0 12653 A
insert 0 12654 A
insert 0 12655 A
insert 0 12656 A
insert 0 12657 A
insert 0 12658 A
insert 0 12659 A
insert 0 12660 A
insert 0 12661 A
insert 0 12662 A
insert 0 12663 A
insert 0 12664 A
insert 0 12665 A
insert 0 12666 A
insert 0 12667 A
insert 0 12668 A
insert 0 12669 A
insert 0 12670 A
insert 0 12671 A
insert 0 12672 A
insert 0 12673 A
insert 0 12674 A
insert 0 12675 A
insert 0 12676 A
insert 0 12677 A
insert 0 12678 A
insert 0 12679 A
insert 0 12680 A
insert 0 12681 A
insert 0 12682 A
insert 0 12683 A
insert 0 12684 A
insert 0 12685 A
insert 0 12686 A
insert 0 12687 A
insert 0 12688 A
insert 0 12689 A
insert 0 12690 A
insert 0 12691 A
insert 0 12692 A
insert 0 12693 A
insert 0 12694 A
insert 0 12695 A
insert 0 12696 A
insert 0 12697 A
insert 0 12698 A
insert 0 12699 A
insert 0 12700 A
insert 0 12701 A
insert 0 12702 A
insert 0 12703 A
insert 0 12704 A
insert 0 12705 A
insert 0 12706 A
insert 0 12707 A
insert 0 12708 A
insert 0 12709 A
insert 0 12710 A
insert 0 12711 A
insert 0 12712 A
insert 0 12713 A
insert 0 12714 A
insert 0 12715 A
insert 0 12716 A
insert 0 12717 A
insert 0 12718 A
insert 0 12719 A
insert 0 12720 A
insert 0 12721 A
insert 0 12722 A
insert 0 12723 A
insert 0 12724 A
insert 0 12725 A
insert 0 12726 A
insert 0 12727 A
insert 0 12728 A
insert 0 12729 A
insert 0 12730 A
insert 0 12731 A
insert 0 12732 A
insert 0 12733 A
insert 0 12734 A
insert 0 12735 A
insert 0 12736 A
insert 0 12737 A
insert 0 12738 A
insert 0 12739 A
insert 0 12740 A
insert 0 12741 A
insert 0 12742 A
insert 0 12743 A
insert 0 12744 A
insert 0 12745 A
insert 0 12746 A
insert 0 12747 A
insert 0 12748 A
insert 0 12749 A
insert 0 12750 A
insert 0 12751 A
insert 0 12752 A
insert 0 12753 A
insert 0 12754 A
insert 0 12755 A
insert 0 12756 A
insert 0 12757 A
insert 0 12758 A
insert 0 12759 A
insert 0 12760 A
insert 0 12761 A
insert 0 12762 A
insert 0 12763 A
insert 0 12764 A
insert 0 12765 A
insert 0 12766 A
insert 0 12767 A
insert 0 12768 A
insert 0 12769 A
insert 0 12770 A
insert 0 12771 A
insert 0 12772 A
insert 0 12773 A
insert 0 12774 A
insert 0 12775 A
insert 0 12776 A
insert 0 12777 A
insert 0 12778 A
insert 0 12779 A
insert 0 12780 A
insert 0 12781 A
insert 0 12782 A
insert 0 12783 A
insert 0 12784 A
insert 0 12785 A
insert 0 12786 A
insert 0 12787 A
insert 0 12788 A
insert 0 12789 A
insert 0 12790 A
insert 0 12791 A
insert 0 12792 A
insert 0 12793 A
insert 0 12794 A
insert 0 12795 A
insert 0 12796 A
insert 0 12797 A
insert 0 12798 A
insert 0 12799 A
insert 0 12800 A
insert 0 12801 A
insert 0 12802 A
insert 0 12803 A
insert 0 12804 A
insert 0 12805 A
insert 0 12806 A
insert 0 12807 A
insert 0 12808 A
insert 0 12809 A
insert 0 12810 A
insert 0 12811 A
insert 0 12812 A
insert 0 12813 A
insert 0 12814 A
insert 0 12815 A
insert 0 12816 A
insert 0 12817 A
insert 0 12818 A
insert 0 12819 A
insert 0 12820 A
insert 0 12821 A
insert 0 12822 A
insert 0 12823 A
insert 0 12824 A
insert 0 12825 A
insert 0 12826 A
insert 0 12827 A
insert 0 12828 A
insert 0 12829 A
insert 0 12830 A
insert 0 12831 A
insert 0 12832 A
insert 0 12833 A
insert 0 12834 A
insert 0 12835 A
insert 0 12836 A
insert 0 12837 A
insert 0 12838 A
insert 0 12839 A
insert 0 12840 A
insert 0 12841 A
insert 0 12842 A
insert 0 12843 A
insert 0 12844 A
insert 0 12845 A
insert 0 12846 A
insert 0 12847 A
insert 0 12848 A
insert 0 12849 A
insert 0 12850 A
insert 0 12851 A
insert 0 12852 A
insert 0 12853 A
insert 0 12854 A
insert 0 12855 A
insert 0 12856 A
insert 0 12857 A
insert 0 12858 A
insert 0 12859 A
insert 0 12860 A
insert 0 12861 A
insert 0 12862 A
insert 0 12863 A
insert 0 12864 A
insert 0 12865 A
insert 0 12866 A
insert 0 12867 A
insert 0 12868 A
insert 0 12869 A
insert 0 12870 A
insert 0 12871 A
insert 0 12872 A
insert 0 12873 A
insert 0 12874 A
insert 0 12875 A
insert 0 12876 A
insert 0 12877 A
insert 0 12878 A
insert 0 12879 A
insert 0 12880 A
insert 0 12881 A
insert 0 12882 A
insert 0 12883 A
insert 0 12884 A
insert 0 12885 A
insert 0 12886 A
insert 0 12887 A
insert 0 12888 A
insert 0 12889 A
insert 0 12890 A
insert 0 12891 A
insert 0 12892 A
insert 0 12893 A
insert 0 12894 A
insert 0 12895 A
insert 0 12896 A
insert 0 12897 A
insert 0 12898 A
insert 0 12899 A
insert 0 12900 A
insert 0 12901 A
insert 0 12902 A
insert 0 12903 A
insert 0 12904 A
insert 0 12905 A
insert 0 12906 A
insert 0 12907 A
insert 0 12908 A
insert 0 12909 A
insert 0 12910 A
insert 0 12911 A
insert 0 12912 A
insert 0 12913 A
insert 0 12914 A
insert 0 12915 A
insert 0 12916 A
insert 0 12917 A
insert 0 12918 A
insert 0 12919 A
insert 0 12920 A
insert 0 12921 A
insert 0 12922 A
insert 0 12923 A
insert 0 12924 A
insert 0 12925 A
insert 0 12926 A
insert 0 12927 A
insert 0 12928 A
insert 0 12929 A
insert 0 12930 A
insert 0 12931 A
insert 0 12932 A
insert 0 12933 A
insert 0 12934 A
insert 0 12935 A
insert 0 12936 A
insert 0 12937 A
insert 0 12938 A
insert 0 12939 A
insert 0 12940 A
insert 0 12941 A
insert 0 12942 A
insert 0 12943 A
insert 0 12944 A
insert 0 12945 A
insert 0 12946 A
insert 0 12947 A
insert 0 12948 A
insert 0 12949 A
insert 0 12950 A
insert 0 12951 A
insert 0 12952 A
insert 0 12953 A
insert 0 12954 A
insert 0 12955 A
insert 0 12956 A
insert 0 12957 A
insert 0 12958 A
insert 0 12959 A
insert 0 12960 A
insert 0 12961 A
insert 0 12962 A
insert 0 12963 A
insert 0 12964 A
insert 0 12965 A
insert 0 12966 A
insert 0 12967 A
insert 0 12968 A
insert 0 12969 A
insert 0 12970 A
insert 0 12971 A
insert 0 12972 A
insert 0 12973 A
insert 0 12974 A
insert 0 12975 A
insert 0 12976 A
insert 0 12977 A
insert 0 12978 A
insert 0 12979 A
insert 0 12980 A
insert 0 12981 A
insert 0 12982 A
insert 0 12983 A
insert 0 12984 A
insert 0 12985 A
insert 0 12986 A
insert 0 12987 A
insert 0 12988 A
insert 0 12989 A
insert 0 12990 A
insert 0 12991 A
insert 0 12992 A
insert 0 12993 A
insert 0 12994 A
insert 0 12995 A
insert 0 12996 A
insert 0 12997 A
insert 0 12998 A
insert 0 12999 A
insert 0 13000 A
insert 0 13001 A
insert 0 13002 A
insert 0 13003 A
insert 0 13004 A
insert 0 13005 A
insert 0 13006 A
insert 0 13007 A
insert 0 13008 A
insert 0 13009 A
insert 0 13010 A
insert 0 13011 A
insert 0 13012 A
insert 0 13013 A
insert 0 13014 A
insert 0 13015 A
insert 0 13016 A
insert 0 13017 A
insert 0 13018 A
insert 0 13019 A
insert 0 13020 A
insert 0 13021 A
insert 0 13022 A
insert 0 13023 A
insert 0 13024 A
insert 0 13025 A
insert 0 13026 A
insert 0 13027 A
insert 0 13028 A
insert 0 13029 A
insert 0 13030 A
insert 0 13031 A
insert 0 13032 A
insert 0 13033 A
insert 0 13034 A
insert 0 13035 A
insert 0 13036 A
insert 0 13037 A
insert 0 13038 A
insert 0 13039 A
insert 0 13040 A
insert 0 13041 A
insert 0 13042 A
insert 0 13043 A
insert 0 13044 A
insert 0 13045 A
insert 0 13046 A
insert 0 13047 A
insert 0 13048 A
insert 0 13049 A
insert 0 13050 A
insert 0 13051 A
insert 0 13052 A
insert 0 13053 A
insert 0 13054 A
insert 0 13055 A
insert 0 13056 A
insert 0 13057 A
insert 0 13058 A
insert 0 13059 A
insert 0 13060 A
insert 0 13061 A
insert 0 13062 A
insert 0 13063 A
insert 0 13064 A
insert 0 13065 A
insert 0 13066 A
insert 0 13067 A
insert 0 13068 A
insert 0 13069 A
insert 0 13070 A
insert 0 13071 A
insert 0 13072 A
insert 0 13073 A
insert 0 13074 A
insert 0 13075 A
insert 0 13076 A
insert 0 13077 A
insert 0 13078 A
insert 0 13079 A
insert 0 13080 A
insert 0 13081 A
insert 0 13082 A
insert 0 13083 A
insert 0 13084 A
insert 0 13085 A
insert 0 13086 A
insert 0 13087 A
insert 0 13088 A
insert 0 13089 A
insert 0 13090 A
insert 0 13091 A
insert 0 13092 A
insert 0 13093 A
insert 0 13094 A
insert 0 13095 A
insert 0 13096 A
insert 0 13097 A
insert 0 13098 A
insert 0 13099 A
insert 0 13100 A
insert 0 13101 A
insert 0 13102 A
insert 0 13103 A
insert 0 13104 A
insert 0 13105 A
insert 0 13106 A
insert 0 13107 A
insert 0 13108 A
insert 0 13109 A
insert 0 13110 A
insert 0 13111 A
insert 0 13112 A
insert 0 13113 A
insert 0 13114 A
insert 0 13115 A
insert 0 13116 A
insert 0 13117 A
insert 0 13118 A
insert 0 13119 A
insert 0 13120 A
insert 0 13121 A
insert 0 13122 A
insert 0 13123 A
insert 0 13124 A
insert 0 13125 A
insert 0 13126 A
insert 0 13127 A
insert 0 13128 A
insert 0 13129 A
insert 0 13130 A
insert 0 13131 A
insert 0 13132 A
insert 0 13133 A
insert 0 13134 A
insert 0 13135 A
insert 0 13136 A
insert 0 13137 A
insert 0 13138 A
insert 0 13139 A
insert 0 13140 A
insert 0 13141 A
insert 0 13142 A
insert 0 13143 A
insert 0 13144 A
insert 0 13145 A
insert 0 13146 A
insert 0 13147 A
insert 0 13148 A
insert 0 13149 A
insert 0 13150 A
insert 0 13151 A
insert 0 13152 A
insert 0 13153 A
insert 0 13154 A
insert 0 13155 A
insert 0 13156 A
insert 0 13157 A
insert 0 13158 A
insert 0 13159 A
insert 0 13160 A
insert 0 13161 A
insert 0 13162 A
insert 0 13163 A
insert 0 13164 A
insert 0 13165 A
insert 0 13166 A
insert 0 13167 A
insert 0 13168 A
insert 0 13169 A
insert 0 13170 A
insert 0 13171 A
insert 0 13172 A
insert 0 13173 A
insert 0 13174 A
insert 0 13175 A
insert 0 13176 A
insert 0 13177 A
insert 0 13178 A
insert 0 13179 A
insert 0 13180 A
insert 0 13181 A
insert 0 13182 A
insert 0 13183 A
insert 0 13184 A
insert 0 13185 A
insert 0 13186 A
insert 0 13187 A
insert 0 13188 A
insert 0 13189 A
insert 0 13190 A
insert 0 13191 A
insert 0 13192 A
insert 0 13193 A
insert 0 13194 A
insert 0 13195 A
insert 0 13196 A
insert 0 13197 A
insert 0 13198 A
insert 0 13199 A
insert 0 13200 A
insert 0 13201 A
insert 0 13202 A
insert 0 13203 A
insert 0 13204 A
insert 0 13205 A
insert 0 13206 A
insert 0 13207 A
insert 0 13208 A
insert 0 13209 A
insert 0 13210 A
insert 0 13211 A
insert 0 13212 A
insert 0 13213 A
insert 0 13214 A
insert 0 13215 A
insert 0 13216 A
insert 0 13217 A
insert 0 13218 A
insert 0 13219 A
insert 0 13220 A
insert 0 13221 A
insert 0 13222 A
insert 0 13223 A
insert 0 13224 A
insert 0 13225 A
insert 0 13226 A
insert 0 13227 A
insert 0 13228 A
insert 0 13229 A
insert 0 13230 A
insert 0 13231 A
insert 0 13232 A
insert 0 13233 A
insert 0 13234 A
insert 0 13235 A
insert 0 13236 A
insert 0 13237 A
insert 0 13238 A
insert 0 13239 A
insert 0 13240 A
insert 0 13241 A
insert 0 13242 A
insert 0 13243 A
insert 0 13244 A
insert 0 13245 A
insert 0 13246 A
insert 0 13247 A
insert 0 13248 A
insert 0 13249 A
insert 0 13250 A
insert 0 13251 A
insert 0 13252 A
insert 0 13253 A
insert 0 13254 A
insert 0 13255 A
insert 0 13256 A
insert 0 13257 A
insert 0 13258 A
insert 0 13259 A
insert 0 13260 A
insert 0 13261 A
insert 0 13262 A
insert 0 13263 A
insert 0 13264 A
insert 0 13265 A
insert 0 13266 A
insert 0 13267 A
insert 0 13268 A
insert 0 13269 A
insert 0 13270 A
insert 0 13271 A
insert 0 13272 A
insert 0 13273 A
insert 0 13274 A
insert 0 13275 A
insert 0 13276 A
insert 0 13277 A
insert 0 13278 A
insert 0 13279 A
insert 0 13280 A
insert 0 13281 A
insert 0 13282 A
insert 0 13283 A
insert 0 13284 A
insert 0 13285 A
insert 0 13286 A
insert 0 13287 A
insert 0 13288 A
insert 0 13289 A
insert 0 13290 A
insert 0 13291 A
insert 0 13292 A
insert 0 13293 A
insert 0 13294 A
insert 0 13295 A
insert 0 13296 A
insert 0 13297 A
insert 0 13298 A
insert 0 13299 A
insert 0 13300 A
insert 0 13301 A
insert 0 13302 A
insert 0 13303 A
insert 0 13304 A
insert 0 13305 A
insert 0 13306 A
insert 0 13307 A
insert 0 13308 A
insert 0 13309 A
insert 0 13310 A
insert 0 13311 A
insert 0 13312 A
insert 0 13313 A
insert 0 13314 A
insert 0 13315 A
insert 0 13316 A
insert 0 13317 A
insert 0 13318 A
insert 0 13319 A
insert 0 13320 A
insert 0 13321 A
insert 0 13322 A
insert 0 13323 A
insert 0 13324 A
insert 0 13325 A
insert 0 13326 A
insert 0 13327 A
insert 0 13328 A
insert 0 13329 A
insert 0 13330 A
insert 0 13331 A
insert 0 13332 A
insert 0 13333 A
insert 0 13334 A
insert 0 13335 A
insert 0 13336 A
insert 0 13337 A
insert 0 13338 A
insert 0 13339 A
insert 0 13340 A
insert 0 13341 A
insert 0 13342 A
insert 0 13343 A
insert 0 13344 A
insert 0 13345 A
insert 0 13346 A
insert 0 13347 A
insert 0 13348 A
insert 0 13349 A
insert 0 13350 A
insert 0 13351 A
insert 0 13352 A
insert 0 13353 A
insert 0 13354 A
insert 0 13355 A
insert 0 13356 A
insert 0 13357 A
insert 0 13358 A
insert 0 13359 A
insert 0 13360 A
insert 0 13361 A
insert 0 13362 A
insert 0 13363 A
insert 0 13364 A
insert 0 13365 A
insert 0 13366 A
insert 0 13367 A
insert 0 13368 A
insert 0 13369 A
insert 0 13370 A
insert 0 13371 A
insert 0 13372 A
insert 0 13373 A
insert 0 13374 A
insert 0 13375 A
insert 0 13376 A
insert 0 13377 A
insert 0 13378 A
insert 0 13379 A
insert 0 13380 A
insert 0 13381 A
insert 0 13382 A
insert 0 13383 A
insert 0 13384 A
insert 0 13385 A
insert 0 13386 A
insert 0 13387 A
insert 0 13388 A
insert 0 13389 A
insert 0 13390 A
insert 0 13391 A
insert 0 13392 A
insert 0 13393 A
insert 0 13394 A
insert 0 13395 A
insert 0 13396 A
insert 0 13397 A
insert 0 13398 A
insert 0 13399 A
insert 0 13400 A
insert 0 13401 A
insert 0 13402 A
insert 0 13403 A
insert 0 13404 A
insert 0 13405 A
insert 0 13406 A
insert 0 13407 A
insert 0 13408 A
insert 0 13409 A
insert 0 13410 A
insert 0 13411 A
insert 0 13412 A
insert 0 13413 A
insert 0 13414 A
insert 0 13415 A
insert 0 13416 A
insert 0 13417 A
insert 0 13418 A
insert 0 13419 A
insert 0 13420 A
insert 0 13421 A
insert 0 13422 A
insert 0 13423 A
insert 0 13424 A
insert 0 13425 A
insert 0 13426 A
insert 0 13427 A
insert 0 13428 A
insert 0 13429 A
insert 0 13430 A
insert 0 13431 A
insert 0 13432 A
insert 0 13433 A
insert 0 13434 A
insert 0 13435 A
insert 0 13436 A
insert 0 13437 A
insert 0 13438 A
insert 0 13439 A
insert 0 13440 A
insert 0 13441 A
insert 0 13442 A
insert 0 13443 A
insert 0 13444 A
insert 0 13445 A
insert 0 13446 A
insert 0 13447 A
insert 0 13448 A
insert 0 13449 A
insert 0 13450 A
insert 0 13451 A
insert 0 13452 A
insert 0 13453 A
insert 0 13454 A
insert 0 13455 A
insert 0 13456 A
insert 0 13457 A
insert 0 13458 A
insert 0 13459 A
insert 0 13460 A
insert 0 13461 A
insert 0 13462 A
insert 0 13463 A
insert 0 13464 A
insert 0 13465 A
insert 0 13466 A
insert 0 13467 A
insert 0 13468 A
insert 0 13469 A
insert 0 13470 A
insert 0 13471 A
insert 0 13472 A
insert 0 13473 A
insert 0 13474 A
insert 0 13475 A
insert 0 13476 A
insert 0 13477 A
insert 0 13478 A
insert 0 13479 A
insert 0 13480 A
insert 0 13481 A
insert 0 13482 A
insert 0 13483 A
insert 0 13484 A
insert 0 13485 A
insert 0 13486 A
insert 0 13487 A
insert 0 13488 A
insert 0 13489 A
insert 0 13490 A
insert 0 13491 A
insert 0 13492 A
insert 0 13493 A
insert 0 13494 A
insert 0 13495 A
insert 0 13496 A
insert 0 13497 A
insert 0 13498 A
insert 0 13499 A
insert 0 13500 A
insert 0 13501 A
insert 0 13502 A
insert 0 13503 A
insert 0 13504 A
insert 0 13505 A
insert 0 13506 A
insert 0 13507 A
insert 0 13508 A
insert 0 13509 A
insert 0 13510 A
insert 0 13511 A
insert 0 13512 A
insert 0 13513 A
insert 0 13514 A
insert 0 13515 A
insert 0 13516 A
insert 0 13517 A
insert 0 13518 A
insert 0 13519 A
insert 0 13520 A
insert 0 13521 A
insert 0 13522 A
insert 0 13523 A
insert 0 13524 A
insert 0 13525 A
insert 0 13526 A
insert 0 13527 A
insert 0 13528 A
insert 0 13529 A
insert 0 13530 A
insert 0 13531 A
insert 0 13532 A
insert 0 13533 A
insert 0 13534 A
insert 0 13535 A
insert 0 13536 A
insert 0 13537 A
insert 0 13538 A
insert 0 13539 A
insert 0 13540 A
insert 0 13541 A
insert 0 13542 A
insert 0 13543 A
insert 0 13544 A
insert 0 13545 A
insert 0 13546 A
insert 0 13547 A
insert 0 13548 A
insert 0 13549 A
insert 0 13550 A
insert 0 13551 A
insert 0 13552 A
insert 0 13553 A
insert 0 13554 A
insert 0 13555 A
insert 0 13556 A
insert 0 13557 A
insert 0 13558 A
insert 0 13559 A
insert 0 13560 A
insert 0 13561 A
insert 0 13562 A
insert 0 13563 A
insert 0 13564 A
insert 0 13565 A
insert 0 13566 A
insert 0 13567 A
insert 0 13568 A
insert 0 13569 A
insert 0 13570 A
insert 0 13571 A
insert 0 13572 A
insert 0 13573 A
insert 0 13574 A
insert 0 13575 A
insert 0 13576 A
insert 0 13577 A
insert 0 13578 A
insert 0 13579 A
insert 0 13580 A
insert 0 13581 A
insert 0 13582 A
insert 0 13583 A
insert 0 13584 A
insert 0 13585 A
insert 0 13586 A
insert 0 13587 A
insert 0 13588 A
insert 0 13589 A
insert 0 13590 A
insert 0 13591 A
insert 0 13592 A
insert 0 13593 A
insert 0 13594 A
insert 0 13595 A
insert 0 13596 A
insert 0 13597 A
insert 0 13598 A
insert 0 13599 A
insert 0 13600 A
insert 0 13601 A
insert 0 13602 A
insert 0 13603 A
insert 0 13604 A
insert 0 13605 A
insert 0 13606 A
insert 0 13607 A
insert 0 13608 A
insert 0 13609 A
insert 0 13610 A
insert 0 13611 A
insert 0 13612 A
insert 0 13613 A
insert 0 13614 A
insert 0 13615 A
insert 0 13616 A
insert 0 13617 A
insert 0 13618 A
insert 0 13619 A
insert 0 13620 A
insert 0 13621 A
insert 0 13622 A
insert 0 13623 A
insert 0 13624 A
insert 0 13625 A
insert 0 13626 A
insert 0 13627 A
insert 0 13628 A
insert 0 13629 A
insert 0 13630 A
insert 0 13631 A
insert 0 13632 A
insert 0 13633 A
insert 0 13634 A
insert 0 13635 A
insert 0 13636 A
insert 0 13637 A
insert 0 13638 A
insert 0 13639 A
insert 0 13640 A
insert 0 13641 A
insert 0 13642 A
insert 0 13643 A
insert 0 13644 A
insert 0 13645 A
insert 0 13646 A
insert 0 13647 A
insert 0 13648 A
insert 0 13649 A
insert 0 13650 A
insert 0 13651 A
insert 0 13652 A
insert 0 13653 A
insert 0 13654 A
insert 0 13655 A
insert 0 13656 A
insert 0 13657 A
insert 0 13658 A
insert 0 13659 A
insert 0 13660 A
insert 0 13661 A
insert 0 13662 A
insert 0 13663 A
insert 0 13664 A
insert 0 13665 A
insert 0 13666 A
insert 0 13667 A
insert 0 13668 A
insert 0 13669 A
insert 0 13670 A
insert 0 13671 A
insert 0 13672 A
insert 0 13673 A
insert 0 13674 A
insert 0 13675 A
insert 0 13676 A
insert 0 13677 A
insert 0 13678 A
insert 0 13679 A
insert 0 13680 A
insert 0 13681 A
insert 0 13682 A
insert 0 13683 A
insert 0 13684 A
insert 0 13685 A
insert 0 13686 A
insert 0 13687 A
insert 0 13688 A
insert 0 13689 A
insert 0 13690 A
insert 0 13691 A
insert 0 13692 A
insert 0 13693 A
insert 0 13694 A
insert 0 13695 A
insert 0 13696 A
insert 0 13697 A
insert 0 13698 A
insert 0 13699 A
insert 0 13700 A
insert 0 13701 A
insert 0 13702 A
insert 0 13703 A
insert 0 13704 A
insert 0 13705 A
insert 0 13706 A
insert 0 13707 A
insert 0 13708 A
insert 0 13709 A
insert 0 13710 A
insert 0 13711 A
insert 0 13712 A
insert 0 13713 A
insert 0 13714 A
insert 0 13715 A
insert 0 13716 A
insert 0 13717 A
insert 0 13718 A
insert 0 13719 A
insert 0 13720 A
insert 0 13721 A
insert 0 13722 A
insert 0 13723 A
insert 0 13724 A
insert 0 13725 A
insert 0 13726 A
insert 0 13727 A
insert 0 13728 A
insert 0 13729 A
insert 0 13730 A
insert 0 13731 A
insert 0 13732 A
insert 0 13733 A
insert 0 13734 A
insert 0 13735 A
insert 0 13736 A
insert 0 13737 A
insert 0 13738 A
insert 0 13739 A
insert 0 13740 A
insert 0 13741 A
insert 0 13742 A
insert 0 13743 A
insert 0 13744 A
insert 0 13745 A
insert 0 13746 A
insert 0 13747 A
insert 0 13748 A
insert 0 13749 A
insert 0 13750 A
insert 0 13751 A
insert 0 13752 A
insert 0 13753 A
insert 0 13754 A
insert 0 13755 A
insert 0 13756 A
insert 0 13757 A
insert 0 13758 A
insert 0 13759 A
insert 0 13760 A
insert 0 13761 A
insert 0 13762 A
insert 0 13763 A
insert 0 13764 A
insert 0 13765 A
insert 0 13766 A
insert 0 13767 A
insert 0 13768 A
insert 0 13769 A
insert 0 13770 A
insert 0 13771 A
insert 0 13772 A
insert 0 13773 A
insert 0 13774 A
insert 0 13775 A
insert 0 13776 A
insert 0 13777 A
insert 0 13778 A
insert 0 13779 A
insert 0 13780 A
insert 0 13781 A
insert 0 13782 A
insert 0 13783 A
insert 0 13784 A
insert 0 13785 A
insert 0 13786 A
insert 0 13787 A
insert 0 13788 A
insert 0 13789 A
insert 0 13790 A
insert 0 13791 A
insert 0 13792 A
insert 0 13793 A
insert 0 13794 A
insert 0 13795 A
insert 0 13796 A
insert 0 13797 A
insert 0 13798 A
insert 0 13799 A
insert 0 13800 A
insert 0 13801 A
insert 0 13802 A
insert 0 13803 A
insert 0 13804 A
insert 0 13805 A
insert 0 13806 A
insert 0 13807 A
insert 0 13808 A
insert 0 13809 A
insert 0 13810 A
insert 0 13811 A
insert 0 13812 A
insert 0 13813 A
insert 0 13814 A
insert 0 13815 A
insert 0 13816 A
insert 0 13817 A
insert 0 13818 A
insert 0 13819 A
insert 0 13820 A
insert 0 13821 A
insert 0 13822 A
insert 0 13823 A
insert 0 13824 A
insert 0 13825 A
insert 0 13826 A
insert 0 13827 A
insert 0 13828 A
insert 0 13829 A
insert 0 13830 A
insert 0 13831 A
insert 0 13832 A
insert 0 13833 A
insert 0 13834 A
insert 0 13835 A
insert 0 13836 A
insert 0 13837 A
insert 0 13838 A
insert 0 13839 A
insert 0 13840 A
insert 0 13841 A
insert 0 13842 A
insert 0 13843 A
insert 0 13844 A
insert 0 13845 A
insert 0 13846 A
insert 0 13847 A
insert 0 13848 A
insert 0 13849 A
insert 0 13850 A
insert 0 13851 A
insert 0 13852 A
insert 0 13853 A
insert 0 13854 A
insert 0 13855 A
insert 0 13856 A
insert 0 13857 A
insert 0 13858 A
insert 0 13859 A
insert 0 13860 A
insert 0 13861 A
insert 0 13862 A
insert 0 13863 A
insert 0 13864 A
insert 0 13865 A
insert 0 13866 A
insert 0 13867 A
insert 0 13868 A
insert 0 13869 A
insert 0 13870 A
insert 0 13871 A
insert 0 13872 A
insert 0 13873 A
insert 0 13874 A
insert 0 13875 A
insert 0 13876 A
insert 0 13877 A
insert 0 13878 A
insert 0 13879 A
insert 0 13880 A
insert 0 13881 A
insert 0 13882 A
insert 0 13883 A
insert 0 13884 A
insert 0 13885 A
insert 0 13886 A
insert 0 13887 A
insert 0 13888 A
insert 0 13889 A
insert 0 13890 A
insert 0 13891 A
insert 0 13892 A
insert 0 13893 A
insert 0 13894 A
insert 0 13895 A
insert 0 13896 A
insert 0 13897 A
insert 0 13898 A
insert 0 13899 A
insert 0 13900 A
insert 0 13901 A
insert 0 13902 A
insert 0 13903 A
insert 0 13904 A
insert 0 13905 A
insert 0 13906 A
insert 0 13907 A
insert 0 13908 A
insert 0 13909 A
insert 0 13910 A
insert 0 13911 A
insert 0 13912 A
insert 0 13913 A
insert 0 13914 A
insert 0 13915 A
insert 0 13916 A
insert 0 13917 A
insert 0 13918 A
insert 0 13919 A
insert 0 13920 A
insert 0 13921 A
insert 0 13922 A
insert 0 13923 A
insert 0 13924 A
insert 0 13925 A
insert 0 13926 A
insert 0 13927 A
insert 0 13928 A
insert 0 13929 A
insert 0 13930 A
insert 0 13931 A
insert 0 13932 A
insert 0 13933 A
insert 0 13934 A
insert 0 13935 A
insert 0 13936 A
insert 0 13937 A
insert 0 13938 A
insert 0 13939 A
insert 0 13940 A
insert 0 13941 A
insert 0 13942 A
insert 0 13943 A
insert 0 13944 A
insert 0 13945 A
insert 0 13946 A
insert 0 13947 A
insert 0 13948 A
insert 0 13949 A
insert 0 13950 A
insert 0 13951 A
insert 0 13952 A
insert 0 13953 A
insert 0 13954 A
insert 0 13955 A
insert 0 13956 A
insert 0 13957 A
insert 0 13958 A
insert 0 13959 A
insert 0 13960 A
insert 0 13961 A
insert 0 13962 A
insert 0 13963 A
insert 0 13964 A
insert 0 13965 A
insert 0 13966 A
insert 0 13967 A
insert 0 13968 A
insert 0 13969 A
insert 0 13970 A
insert 0 13971 A
insert 0 13972 A
insert 0 13973 A
insert 0 13974 A
insert 0 13975 A
insert 0 13976 A
insert 0 13977 A
insert 0 13978 A
insert 0 13979 A
insert 0 13980 A
insert 0 13981 A
insert 0 13982 A
insert 0 13983 A
insert 0 13984 A
insert 0 13985 A
insert 0 13986 A
insert 0 13987 A
insert 0 13988 A
insert 0 13989 A
insert 0 13990 A
insert 0 13991 A
insert 0 13992 A
insert 0 13993 A
insert 0 13994 A
insert 0 13995 A
insert 0 13996 A
insert 0 13997 A
insert 0 13998 A
insert 0 13999 A
insert 0 14000 A
insert 0 14001 A
insert 0 14002 A
insert 0 14003 A
insert 0 14004 A
insert 0 14005 A
insert 0 14006 A
insert 0 14007 A
insert 0 14008 A
insert 0 14009 A
insert 0 14010 A
insert 0 14011 A
insert 0 14012 A
insert 0 14013 A
insert 0 14014 A
insert 0 14015 A
insert 0 14016 A
insert 0 14017 A
insert 0 14018 A
insert 0 14019 A
insert 0 14020 A
insert 0 14021 A
insert 0 14022 A
insert 0 14023 A
insert 0 14024 A
insert 0 14025 A
insert 0 14026 A
insert 0 14027 A
insert 0 14028 A
insert 0 14029 A
insert 0 14030 A
insert 0 14031 A
insert 0 14032 A
insert 0 14033 A
insert 0 14034 A
insert 0 14035 A
insert 0 14036 A
insert 0 14037 A
insert 0 14038 A
insert 0 14039 A
insert 0 14040 A
insert 0 14041 A
insert 0 14042 A
insert 0 14043 A
insert 0 14044 A
insert 0 14045 A
insert 0 14046 A
insert 0 14047 A
insert 0 14048 A
insert 0 14049 A
insert 0 14050 A
insert 0 14051 A
insert 0 14052 A
insert 0 14053 A
insert 0 14054 A
insert 0 14055 A
insert 0 14056 A
insert 0 14057 A
insert 0 14058 A
insert 0 14059 A
insert 0 14060 A
insert 0 14061 A
insert 0 14062 A
insert 0 14063 A
insert 0 14064 A
insert 0 14065 A
insert 0 14066 A
insert 0 14067 A
insert 0 14068 A
insert 0 14069 A
insert 0 14070 A
insert 0 14071 A
insert 0 14072 A
insert 0 14073 A
insert 0 14074 A
insert 0 14075 A
insert 0 14076 A
insert 0 14077 A
insert 0 14078 A
insert 0 14079 A
insert 0 14080 A
insert 0 14081 A
insert 0 14082 A
insert 0 14083 A
insert 0 14084 A
insert 0 14085 A
insert 0 14086 A
insert 0 14087 A
insert 0 14088 A
insert 0 14089 A
insert 0 14090 A
insert 0 14091 A
insert 0 14092 A
insert 0 14093 A
insert 0 14094 A
insert 0 14095 A
insert 0 14096 A
insert 0 14097 A
insert 0 14098 A
insert 0 14099 A
insert 0 14100 A
insert 0 14101 A
insert 0 14102 A
insert 0 14103 A
insert 0 14104 A
insert 0 14105 A
insert 0 14106 A
insert 0 14107 A
insert 0 14108 A
insert 0 14109 A
insert 0 14110 A
insert 0 14111 A
insert 0 14112 A
insert 0 14113 A
insert 0 14114 A
insert 0 14115 A
insert 0 14116 A
insert 0 14117 A
insert 0 14118 A
insert 0 14119 A
insert 0 14120 A
insert 0 14121 A
insert 0 14122 A
insert 0 14123 A
insert 0 14124 A
insert 0 14125 A
insert 0 14126 A
insert 0 14127 A
insert 0 14128 A
insert 0 14129 A
insert 0 14130 A
insert 0 14131 A
insert 0 14132 A
insert 0 14133 A
insert 0 14134 A
insert 0 14135 A
insert 0 14136 A
insert 0 14137 A
insert 0 14138 A
insert 0 14139 A
insert 0 14140 A
insert 0 14141 A
insert 0 14142 A
insert 0 14143 A
insert 0 14144 A
insert 0 14145 A
insert 0 14146 A
insert 0 14147 A
insert 0 14148 A
insert 0 14149 A
insert 0 14150 A
insert 0 14151 A
insert 0 14152 A
insert 0 14153 A
insert 0 14154 A
insert 0 14155 A
insert 0 14156 A
insert 0 14157 A
insert 0 14158 A
insert 0 14159 A
insert 0 14160 A
insert 0 14161 A
insert 0 14162 A
insert 0 14163 A
insert 0 14164 A
insert 0 14165 A
insert 0 14166 A
insert 0 14167 A
insert 0 14168 A
insert 0 14169 A
insert 0 14170 A
insert 0 14171 A
insert 0 14172 A
insert 0 14173 A
insert 0 14174 A
insert 0 14175 A
insert 0 14176 A
insert 0 14177 A
insert 0 14178 A
insert 0 14179 A
insert 0 14180 A
insert 0 14181 A
insert 0 14182 A
insert 0 14183 A
insert 0 14184 A
insert 0 14185 A
insert 0 14186 A
insert 0 14187 A
insert 0 14188 A
insert 0 14189 A
insert 0 14190 A
insert 0 14191 A
insert 0 14192 A
insert 0 14193 A
insert 0 14194 A
insert 0 14195 A
insert 0 14196 A
insert 0 14197 A
insert 0 14198 A
insert 0 14199 A
insert 0 14200 A
insert 0 14201 A
insert 0 14202 A
insert 0 14203 A
insert 0 14204 A
insert 0 14205 A
insert 0 14206 A
insert 0 14207 A
insert 0 14208 A
insert 0 14209 A
insert 0 14210 A
insert 0 14211 A
insert 0 14212 A
insert 0 14213 A
insert 0 14214 A
insert 0 14215 A
insert 0 14216 A
insert 0 14217 A
insert 0 14218 A
insert 0 14219 A
insert 0 14220 A
insert 0 14221 A
insert 0 14222 A
insert 0 14223 A
insert 0 14224 A
insert 0 14225 A
insert 0 14226 A
insert 0 14227 A
insert 0 14228 A
insert 0 14229 A
insert 0 14230 A
insert 0 14231 A
insert 0 14232 A
insert 0 14233 A
insert 0 14234 A
insert 0 14235 A
insert 0 14236 A
insert 0 14237 A
insert 0 14238 A
insert 0 14239 A
insert 0 14240 A
insert 0 14241 A
insert 0 14242 A
insert 0 14243 A
insert 0 14244 A
insert 0 14245 A
insert 0 14246 A
insert 0 14247 A
insert 0 14248 A
insert 0 14249 A
insert 0 14250 A
insert 0 14251 A
insert 0 14252 A
insert 0 14253 A
insert 0 14254 A
insert 0 14255 A
insert 0 14256 A
insert 0 14257 A
insert 0 14258 A
insert 0 14259 A
insert 0 14260 A
insert 0 14261 A
insert 0 14262 A
insert 0 14263 A
insert 0 14264 A
insert 0 14265 A
insert 0 14266 A
insert 0 14267 A
insert 0 14268 A
insert 0 14269 A
insert 0 14270 A
insert 0 14271 A
insert 0 14272 A
insert 0 14273 A
insert 0 14274 A
insert 0 14275 A
insert 0 14276 A
insert 0 14277 A
insert 0 14278 A
insert 0 14279 A
insert 0 14280 A
insert 0 14281 A
insert 0 14282 A
insert 0 14283 A
insert 0 14284 A
insert 0 14285 A
insert 0 14286 A
insert 0 14287 A
insert 0 14288 A
insert 0 14289 A
insert 0 14290 A
insert 0 14291 A
insert 0 14292 A
insert 0 14293 A
insert 0 14294 A
insert 0 14295 A
insert 0 14296 A
insert 0 14297 A
insert 0 14298 A
insert 0 14299 A
insert 0 14300 A
insert 0 14301 A
insert 0 14302 A
insert 0 14303 A
insert 0 14304 A
insert 0 14305 A
insert 0 14306 A
insert 0 14307 A
insert 0 14308 A
insert 0 14309 A
insert 0 14310 A
insert 0 14311 A
insert 0 14312 A
insert 0 14313 A
insert 0 14314 A
insert 0 14315 A
insert 0 14316 A
insert 0 14317 A
insert 0 14318 A
insert 0 14319 A
insert 0 14320 A
insert 0 14321 A
insert 0 14322 A
insert 0 14323 A
insert 0 14324 A
insert 0 14325 A
insert 0 14326 A
insert 0 14327 A
insert 0 14328 A
insert 0 14329 A
insert 0 14330 A
insert 0 14331 A
insert 0 14332 A
insert 0 14333 A
insert 0 14334 A
insert 0 14335 A
insert 0 14336 A
insert 0 14337 A
insert 0 14338 A
insert 0 14339 A
insert 0 14340 A
insert 0 14341 A
insert 0 14342 A
insert 0 14343 A
insert 0 14344 A
insert 0 14345 A
insert 0 14346 A
insert 0 14347 A
insert 0 14348 A
insert 0 14349 A
insert 0 14350 A
insert 0 14351 A
insert 0 14352 A
insert 0 14353 A
insert 0 14354 A
insert 0 14355 A
insert 0 14356 A
insert 0 14357 A
insert 0 14358 A
insert 0 14359 A
insert 0 14360 A
insert 0 14361 A
insert 0 14362 A
insert 0 14363 A
insert 0 14364 A
insert 0 14365 A
insert 0 14366 A
insert 0 14367 A
insert 0 14368 A
insert 0 14369 A
insert 0 14370 A
insert 0 14371 A
insert 0 14372 A
insert 0 14373 A
insert 0 14374 A
insert 0 14375 A
insert 0 14376 A
insert 0 14377 A
insert 0 14378 A
insert 0 14379 A
insert 0 14380 A
insert 0 14381 A
insert 0 14382 A
insert 0 14383 A
insert 0 14384 A
insert 0 14385 A
insert 0 14386 A
insert 0 14387 A
insert 0 14388 A
insert 0 14389 A
insert 0 14390 A
insert 0 14391 A
insert 0 14392 A
insert 0 14393 A
insert 0 14394 A
insert 0 14395 A
insert 0 14396 A
insert 0 14397 A
insert 0 14398 A
insert 0 14399 A
insert 0 14400 A
insert 0 14401 A
insert 0 14402 A
insert 0 14403 A
insert 0 14404 A
insert 0 14405 A
insert 0 14406 A
insert 0 14407 A
insert 0 14408 A
insert 0 14409 A
insert 0 14410 A
insert 0 14411 A
insert 0 14412 A
insert 0 14413 A
insert 0 14414 A
insert 0 14415 A
insert 0 14416 A
insert 0 14417 A
insert 0 14418 A
insert 0 14419 A
insert 0 14420 A
insert 0 14421 A
insert 0 14422 A
insert 0 14423 A
insert 0 14424 A
insert 0 14425 A
insert 0 14426 A
insert 0 14427 A
insert 0 14428 A
insert 0 14429 A
insert 0 14430 A
insert 0 14431 A
insert 0 14432 A
insert 0 14433 A
insert 0 14434 A
insert 0 14435 A
insert 0 14436 A
insert 0 14437 A
insert 0 14438 A
insert 0 14439 A
insert 0 14440 A
insert 0 14441 A
insert 0 14442 A
insert 0 14443 A
insert 0 14444 A
insert 0 14445 A
insert 0 14446 A
insert 0 14447 A
insert 0 14448 A
insert 0 14449 A
insert 0 14450 A
insert 0 14451 A
insert 0 14452 A
insert 0 14453 A
insert 0 14454 A
insert 0 14455 A
insert 0 14456 A
insert 0 14457 A
insert 0 14458 A
insert 0 14459 A
insert 0 14460 A
insert 0 14461 A
insert 0 14462 A
insert 0 14463 A
insert 0 14464 A
insert 0 14465 A
insert 0 14466 A
insert 0 14467 A
insert 0 14468 A
insert 0 14469 A
insert 0 14470 A
insert 0 14471 A
insert 0 14472 A
insert 0 14473 A
insert 0 14474 A
insert 0 14475 A
insert 0 14476 A
insert 0 14477 A
insert 0 14478 A
insert 0 14479 A
insert 0 14480 A
insert 0 14481 A
insert 0 14482 A
insert 0 14483 A
insert 0 14484 A
insert 0 14485 A
insert 0 14486 A
insert 0 14487 A
insert 0 14488 A
insert 0 14489 A
insert 0 14490 A
insert 0 14491 A
insert 0 14492 A
insert 0 14493 A
insert 0 14494 A
insert 0 14495 A
insert 0 14496 A
insert 0 14497 A
insert 0 14498 A
insert 0 14499 A
insert 0 14500 A
insert 0 14501 A
insert 0 14502 A
insert 0 14503 A
insert 0 14504 A
insert 0 14505 A
insert 0 14506 A
insert 0 14507 A
insert 0 14508 A
insert 0 14509 A
insert 0 14510 A
insert 0 14511 A
insert 0 14512 A
insert 0 14513 A
insert 0 14514 A
insert 0 14515 A
insert 0 14516 A
insert 0 14517 A
insert 0 14518 A
insert 0 14519 A
insert 0 14520 A
insert 0 14521 A
insert 0 14522 A
insert 0 14523 A
insert 0 14524 A
insert 0 14525 A
insert 0 14526 A
insert 0 14527 A
insert 0 14528 A
insert 0 14529 A
insert 0 14530 A
insert 0 14531 A
insert 0 14532 A
insert 0 14533 A
insert 0 14534 A
insert 0 14535 A
insert 0 14536 A
insert 0 14537 A
insert 0 14538 A
insert 0 14539 A
insert 0 14540 A
insert 0 14541 A
insert 0 14542 A
insert 0 14543 A
insert 0 14544 A
insert 0 14545 A
insert 0 14546 A
insert 0 14547 A
insert 0 14548 A
insert 0 14549 A
insert 0 14550 A
insert 0 14551 A
insert 0 14552 A
insert 0 14553 A
insert 0 14554 A
insert 0 14555 A
insert 0 14556 A
insert 0 14557 A
insert 0 14558 A
insert 0 14559 A
insert 0 14560 A
insert 0 14561 A
insert 0 14562 A
insert 0 14563 A
insert 0 14564 A
insert 0 14565 A
insert 0 14566 A
insert 0 14567 A
insert 0 14568 A
insert 0 14569 A
insert 0 14570 A
insert 0 14571 A
insert 0 14572 A
insert 0 14573 A
insert 0 14574 A
insert 0 14575 A
insert 0 14576 A
insert 0 14577 A
insert 0 14578 A
insert 0 14579 A
insert 0 14580 A
insert 0 14581 A
insert 0 14582 A
insert 0 14583 A
insert 0 14584 A
insert 0 14585 A
insert 0 14586 A
insert 0 14587 A
insert 0 14588 A
insert 0 14589 A
insert 0 14590 A
insert 0 14591 A
insert 0 14592 A
insert 0 14593 A
insert 0 14594 A
insert 0 14595 A
insert 0 14596 A
insert 0 14597 A
insert 0 14598 A
insert 0 14599 A
insert 0 14600 A
insert 0 14601 A
insert 0 14602 A
insert 0 14603 A
insert 0 14604 A
insert 0 14605 A
insert 0 14606 A
insert 0 14607 A
insert 0 14608 A
insert 0 14609 A
insert 0 14610 A
insert 0 14611 A
insert 0 14612 A
insert 0 14613 A
insert 0 14614 A
insert 0 14615 A
insert 0 14616 A
insert 0 14617 A
insert 0 14618 A
insert 0 14619 A
insert 0 14620 A
insert 0 14621 A
insert 0 14622 A
insert 0 14623 A
insert 0 14624 A
insert 0 14625 A
insert 0 14626 A
insert 0 14627 A
insert 0 14628 A
insert 0 14629 A
insert 0 14630 A
insert 0 14631 A
insert 0 14632 A
insert 0 14633 A
insert 0 14634 A
insert 0 14635 A
insert 0 14636 A
insert 0 14637 A
insert 0 14638 A
insert 0 14639 A
insert 0 14640 A
insert 0 14641 A
insert 0 14642 A
insert 0 14643 A
insert 0 14644 A
insert 0 14645 A
insert 0 14646 A
insert 0 14647 A
insert 0 14648 A
insert 0 14649 A
insert 0 14650 A
insert 0 14651 A
insert 0 14652 A
insert 0 14653 A
insert 0 14654 A
insert 0 14655 A
insert 0 14656 A
insert 0 14657 A
insert 0 14658 A
insert 0 14659 A
insert 0 14660 A
insert 0 14661 A
insert 0 14662 A
insert 0 14663 A
insert 0 14664 A
insert 0 14665 A
insert 0 14666 A
insert 0 14667 A
insert 0 14668 A
insert 0 14669 A
insert 0 14670 A
insert 0 14671 A
insert 0 14672 A
insert 0 14673 A
insert 0 14674 A
insert 0 14675 A
insert 0 14676 A
insert 0 14677 A
insert 0 14678 A
insert 0 14679 A
insert 0 14680 A
insert 0 14681 A
insert 0 14682 A
insert 0 14683 A
insert 0 14684 A
insert 0 14685 A
insert 0 14686 A
insert 0 14687 A
insert 0 14688 A
insert 0 14689 A
insert 0 14690 A
insert 0 14691 A
insert 0 14692 A
insert 0 14693 A
insert 0 14694 A
insert 0 14695 A
insert 0 14696 A
insert 0 14697 A
insert 0 14698 A
insert 0 14699 A
insert 0 14700 A
insert 0 14701 A
insert 0 14702 A
insert 0 14703 A
insert 0 14704 A
insert 0 14705 A
insert 0 14706 A
insert 0 14707 A
insert 0 14708 A
insert 0 14709 A
insert 0 14710 A
insert 0 14711 A
insert 0 14712 A
insert 0 14713 A
insert 0 14714 A
insert 0 14715 A
insert 0 14716 A
insert 0 14717 A
insert 0 14718 A
insert 0 14719 A
insert 0 14720 A
insert 0 14721 A
insert 0 14722 A
insert 0 14723 A
insert 0 14724 A
insert 0 14725 A
insert 0 14726 A
insert 0 14727 A
insert 0 14728 A
insert 0 14729 A
insert 0 14730 A
insert 0 14731 A
insert 0 14732 A
insert 0 14733 A
insert 0 14734 A
insert 0 14735 A
insert 0 14736 A
insert 0 14737 A
insert 0 14738 A
insert 0 14739 A
insert 0 14740 A
insert 0 14741 A
insert 0 14742 A
insert 0 14743 A
insert 0 14744 A
insert 0 14745 A
insert 0 14746 A
insert 0 14747 A
insert 0 14748 A
insert 0 14749 A
insert 0 14750 A
insert 0 14751 A
insert 0 14752 A
insert 0 14753 A
insert 0 14754 A
insert 0 14755 A
insert 0 14756 A
insert 0 14757 A
insert 0 14758 A
insert 0 14759 A
insert 0 14760 A
insert 0 14761 A
insert 0 14762 A
insert 0 14763 A
insert 0 14764 A
insert 0 14765 A
insert 0 14766 A
insert 0 14767 A
insert 0 14768 A
insert 0 14769 A
insert 0 14770 A
insert 0 14771 A
insert 0 14772 A
insert 0 14773 A
insert 0 14774 A
insert 0 14775 A
insert 0 14776 A
insert 0 14777 A
insert 0 14778 A
insert 0 14779 A
insert 0 14780 A
insert 0 14781 A
insert 0 14782 A
insert 0 14783 A
insert 0 14784 A
insert 0 14785 A
insert 0 14786 A
insert 0 14787 A
insert 0 14788 A
insert 0 14789 A
insert 0 14790 A
insert 0 14791 A
insert 0 14792 A
insert 0 14793 A
insert 0 14794 A
insert 0 14795 A
insert 0 14796 A
insert 0 14797 A
insert 0 14798 A
insert 0 14799 A
insert 0 14800 A
insert 0 14801 A
insert 0 14802 A
insert 0 14803 A
insert 0 14804 A
insert 0 14805 A
insert 0 14806 A
insert 0 14807 A
insert 0 14808 A
insert 0 14809 A
insert 0 14810 A
insert 0 14811 A
insert 0 14812 A
insert 0 14813 A
insert 0 14814 A
insert 0 14815 A
insert 0 14816 A
insert 0 14817 A
insert 0 14818 A
insert 0 14819 A
insert 0 14820 A
insert 0 14821 A
insert 0 14822 A
insert 0 14823 A
insert 0 14824 A
insert 0 14825 A
insert 0 14826 A
insert 0 14827 A
insert 0 14828 A
insert 0 14829 A
insert 0 14830 A
insert 0 14831 A
insert 0 14832 A
insert 0 14833 A
insert 0 14834 A
insert 0 14835 A
insert 0 14836 A
insert 0 14837 A
insert 0 14838 A
insert 0 14839 A
insert 0 14840 A
insert 0 14841 A
insert 0 14842 A
insert 0 14843 A
insert 0 14844 A
insert 0 14845 A
insert 0 14846 A
insert 0 14847 A
insert 0 14848 A
insert 0 14849 A
insert 0 14850 A
insert 0 14851 A
insert 0 14852 A
insert 0 14853 A
insert 0 14854 A
insert 0 14855 A
insert 0 14856 A
insert 0 14857 A
insert 0 14858 A
insert 0 14859 A
insert 0 14860 A
insert 0 14861 A
insert 0 14862 A
insert 0 14863 A
insert 0 14864 A
insert 0 14865 A
insert 0 14866 A
insert 0 14867 A
insert 0 14868 A
insert 0 14869 A
insert 0 14870 A
insert 0 14871 A
insert 0 14872 A
insert 0 14873 A
insert 0 14874 A
insert 0 14875 A
insert 0 14876 A
insert 0 14877 A
insert 0 14878 A
insert 0 14879 A
insert 0 14880 A
insert 0 14881 A
insert 0 14882 A
insert 0 14883 A
insert 0 14884 A
insert 0 14885 A
insert 0 14886 A
insert 0 14887 A
insert 0 14888 A
insert 0 14889 A
insert 0 14890 A
insert 0 14891 A
insert 0 14892 A
insert 0 14893 A
insert 0 14894 A
insert 0 14895 A
insert 0 14896 A
insert 0 14897 A
insert 0 14898 A
insert 0 14899 A
insert 0 14900 A
insert 0 14901 A
insert 0 14902 A
insert 0 14903 A
insert 0 14904 A
insert 0 14905 A
insert 0 14906 A
insert 0 14907 A
insert 0 14908 A
insert 0 14909 A
insert 0 14910 A
insert 0 14911 A
insert 0 14912 A
insert 0 14913 A
insert 0 14914 A
insert 0 14915 A
insert 0 14916 A
insert 0 14917 A
insert 0 14918 A
insert 0 14919 A
insert 0 14920 A
insert 0 14921 A
insert 0 14922 A
insert 0 14923 A
insert 0 14924 A
insert 0 14925 A
insert 0 14926 A
insert 0 14927 A
insert 0 14928 A
insert 0 14929 A
insert 0 14930 A
insert 0 14931 A
insert 0 14932 A
insert 0 14933 A
insert 0 14934 A
insert 0 14935 A
insert 0 14936 A
insert 0 14937 A
insert 0 14938 A
insert 0 14939 A
insert 0 14940 A
insert 0 14941 A
insert 0 14942 A
insert 0 14943 A
insert 0 14944 A
insert 0 14945 A
insert 0 14946 A
insert 0 14947 A
insert 0 14948 A
insert 0 14949 A
insert 0 14950 A
insert 0 14951 A
insert 0 14952 A
insert 0 14953 A
insert 0 14954 A
insert 0 14955 A
insert 0 14956 A
insert 0 14957 A
insert 0 14958 A
insert 0 14959 A
insert 0 14960 A
insert 0 14961 A
insert 0 14962 A
insert 0 14963 A
insert 0 14964 A
insert 0 14965 A
insert 0 14966 A
insert 0 14967 A
insert 0 14968 A
insert 0 14969 A
insert 0 14970 A
insert 0 14971 A
insert 0 14972 A
insert 0 14973 A
insert 0 14974 A
insert 0 14975 A
insert 0 14976 A
insert 0 14977 A
insert 0 14978 A
insert 0 14979 A
insert 0 14980 A
insert 0 14981 A
insert 0 14982 A
insert 0 14983 A
insert 0 14984 A
insert 0 14985 A
insert 0 14986 A
insert 0 14987 A
insert 0 14988 A
insert 0 14989 A
insert 0 14990 A
insert 0 14991 A
insert 0 14992 A
insert 0 14993 A
insert 0 14994 A
insert 0 14995 A
insert 0 14996 A
insert 0 14997 A
insert 0 14998 A
insert 0 14999 A
insert 0 15000 A
insert 0 15001 A
insert 0 15002 A
insert 0 15003 A
insert 0 15004 A
insert 0 15005 A
insert 0 15006 A
insert 0 15007 A
insert 0 15008 A
insert 0 15009 A
insert 0 15010 A
insert 0 15011 A
insert 0 15012 A
insert 0 15013 A
insert 0 15014 A
insert 0 15015 A
insert 0 15016 A
insert 0 15017 A
insert 0 15018 A
insert 0 15019 A
insert 0 15020 A
insert 0 15021 A
insert 0 15022 A
insert 0 15023 A
insert 0 15024 A
insert 0 15025 A
insert 0 15026 A
insert 0 15027 A
insert 0 15028 A
insert 0 15029 A
insert 0 15030 A
insert 0 15031 A
insert 0 15032 A
insert 0 15033 A
insert 0 15034 A
insert 0 15035 A
insert 0 15036 A
insert 0 15037 A
insert 0 15038 A
insert 0 15039 A
insert 0 15040 A
insert 0 15041 A
insert 0 15042 A
insert 0 15043 A
insert 0 15044 A
insert 0 15045 A
insert 0 15046 A
insert 0 15047 A
insert 0 15048 A
insert 0 15049 A
insert 0 15050 A
insert 0 15051 A
insert 0 15052 A
insert 0 15053 A
insert 0 15054 A
insert 0 15055 A
insert 0 15056 A
insert 0 15057 A
insert 0 15058 A
insert 0 15059 A
insert 0 15060 A
insert 0 15061 A
insert 0 15062 A
insert 0 15063 A
insert 0 15064 A
insert 0 15065 A
insert 0 15066 A
insert 0 15067 A
insert 0 15068 A
insert 0 15069 A
insert 0 15070 A
insert 0 15071 A
insert 0 15072 A
insert 0 15073 A
insert 0 15074 A
insert 0 15075 A
insert 0 15076 A
insert 0 15077 A
insert 0 15078 A
insert 0 15079 A
insert 0 15080 A
insert 0 15081 A
insert 0 15082 A
insert 0 15083 A
insert 0 15084 A
insert 0 15085 A
insert 0 15086 A
insert 0 15087 A
insert 0 15088 A
insert 0 15089 A
insert 0 15090 A
insert 0 15091 A
insert 0 15092 A
insert 0 15093 A
insert 0 15094 A
insert 0 15095 A
insert 0 15096 A
insert 0 15097 A
insert 0 15098 A
insert 0 15099 A
insert 0 15100 A
insert 0 15101 A
insert 0 15102 A
insert 0 15103 A
insert 0 15104 A
insert 0 15105 A
insert 0 15106 A
insert 0 15107 A
insert 0 15108 A
insert 0 15109 A
insert 0 15110 A
insert 0 15111 A
insert 0 15112 A
insert 0 15113 A
insert 0 15114 A
insert 0 15115 A
insert 0 15116 A
insert 0 15117 A
insert 0 15118 A
insert 0 15119 A
insert 0 15120 A
insert 0 15121 A
insert 0 15122 A
insert 0 15123 A
insert 0 15124 A
insert 0 15125 A
insert 0 15126 A
insert 0 15127 A
insert 0 15128 A
insert 0 15129 A
insert 0 15130 A
insert 0 15131 A
insert 0 15132 A
insert 0 15133 A
insert 0 15134 A
insert 0 15135 A
insert 0 15136 A
insert 0 15137 A
insert 0 15138 A
insert 0 15139 A
insert 0 15140 A
insert 0 15141 A
insert 0 15142 A
insert 0 15143 A
insert 0 15144 A
insert 0 15145 A
insert 0 15146 A
insert 0 15147 A
insert 0 15148 A
insert 0 15149 A
insert 0 15150 A
insert 0 15151 A
insert 0 15152 A
insert 0 15153 A
insert 0 15154 A
insert 0 15155 A
insert 0 15156 A
insert 0 15157 A
insert 0 15158 A
insert 0 15159 A
insert 0 15160 A
insert 0 15161 A
insert 0 15162 A
insert 0 15163 A
insert 0 15164 A
insert 0 15165 A
insert 0 15166 A
insert 0 15167 A
insert 0 15168 A
insert 0 15169 A
insert 0 15170 A
insert 0 15171 A
insert 0 15172 A
insert 0 15173 A
insert 0 15174 A
insert 0 15175 A
insert 0 15176 A
insert 0 15177 A
insert 0 15178 A
insert 0 15179 A
insert 0 15180 A
insert 0 15181 A
insert 0 15182 A
insert 0 15183 A
insert 0 15184 A
insert 0 15185 A
insert 0 15186 A
insert 0 15187 A
insert 0 15188 A
insert 0 15189 A
insert 0 15190 A
insert 0 15191 A
insert 0 15192 A
insert 0 15193 A
insert 0 15194 A
insert 0 15195 A
insert 0 15196 A
insert 0 15197 A
insert 0 15198 A
insert 0 15199 A
insert 0 15200 A
insert 0 15201 A
insert 0 15202 A
insert 0 15203 A
insert 0 15204 A
insert 0 15205 A
insert 0 15206 A
insert 0 15207 A
insert 0 15208 A
insert 0 15209 A
insert 0 15210 A
insert 0 15211 A
insert 0 15212 A
insert 0 15213 A
insert 0 15214 A
insert 0 15215 A
insert 0 15216 A
insert 0 15217 A
insert 0 15218 A
insert 0 15219 A
insert 0 15220 A
insert 0 15221 A
insert 0 15222 A
insert 0 15223 A
insert 0 15224 A
insert 0 15225 A
insert 0 15226 A
insert 0 15227 A
insert 0 15228 A
insert 0 15229 A
insert 0 15230 A
insert 0 15231 A
insert 0 15232 A
insert 0 15233 A
insert 0 15234 A
insert 0 15235 A
insert 0 15236 A
insert 0 15237 A
insert 0 15238 A
insert 0 15239 A
insert 0 15240 A
insert 0 15241 A
insert 0 15242 A
insert 0 15243 A
insert 0 15244 A
insert 0 15245 A
insert 0 15246 A
insert 0 15247 A
insert 0 15248 A
insert 0 15249 A
insert 0 15250 A
insert 0 15251 A
insert 0 15252 A
insert 0 15253 A
insert 0 15254 A
insert 0 15255 A
insert 0 15256 A
insert 0 15257 A
insert 0 15258 A
insert 0 15259 A
insert 0 15260 A
insert 0 15261 A
insert 0 15262 A
insert 0 15263 A
insert 0 15264 A
insert 0 15265 A
insert 0 15266 A
insert 0 15267 A
insert 0 15268 A
insert 0 15269 A
insert 0 15270 A
insert 0 15271 A
insert 0 15272 A
insert 0 15273 A
insert 0 15274 A
insert 0 15275 A
insert 0 15276 A
insert 0 15277 A
insert 0 15278 A
insert 0 15279 A
insert 0 15280 A
insert 0 15281 A
insert 0 15282 A
insert 0 15283 A
insert 0 15284 A
insert 0 15285 A
insert 0 15286 A
insert 0 15287 A
insert 0 15288 A
insert 0 15289 A
insert 0 15290 A
insert 0 15291 A
insert 0 15292 A
insert 0 15293 A
insert 0 15294 A
insert 0 15295 A
insert 0 15296 A
insert 0 15297 A
insert 0 15298 A
insert 0 15299 A
insert 0 15300 A
insert 0 15301 A
insert 0 15302 A
insert 0 15303 A
insert 0 15304 A
insert 0 15305 A
insert 0 15306 A
insert 0 15307 A
insert 0 15308 A
insert 0 15309 A
insert 0 15310 A
insert 0 15311 A
insert 0 15312 A
insert 0 15313 A
insert 0 15314 A
insert 0 15315 A
insert 0 15316 A
insert 0 15317 A
insert 0 15318 A
insert 0 15319 A
insert 0 15320 A
insert 0 15321 A
insert 0 15322 A
insert 0 15323 A
insert 0 15324 A
insert 0 15325 A
insert 0 15326 A
insert 0 15327 A
insert 0 15328 A
insert 0 15329 A
insert 0 15330 A
insert 0 15331 A
insert 0 15332 A
insert 0 15333 A
insert 0 15334 A
insert 0 15335 A
insert 0 15336 A
insert 0 15337 A
insert 0 15338 A
insert 0 15339 A
insert 0 15340 A
insert 0 15341 A
insert 0 15342 A
insert 0 15343 A
insert 0 15344 A
insert 0 15345 A
insert 0 15346 A
insert 0 15347 A
insert 0 15348 A
insert 0 15349 A
insert 0 15350 A
insert 0 15351 A
insert 0 15352 A
insert 0 15353 A
insert 0 15354 A
insert 0 15355 A
insert 0 15356 A
insert 0 15357 A
insert 0 15358 A
insert 0 15359 A
insert 0 15360 A
insert 0 15361 A
insert 0 15362 A
insert 0 15363 A
insert 0 15364 A
insert 0 15365 A
insert 0 15366 A
insert 0 15367 A
insert 0 15368 A
insert 0 15369 A
insert 0 15370 A
insert 0 15371 A
insert 0 15372 A
insert 0 15373 A
insert 0 15374 A
insert 0 15375 A
insert 0 15376 A
insert 0 15377 A
insert 0 15378 A
insert 0 15379 A
insert 0 15380 A
insert 0 15381 A
insert 0 15382 A
insert 0 15383 A
insert 0 15384 A
insert 0 15385 A
insert 0 15386 A
insert 0 15387 A
insert 0 15388 A
insert 0 15389 A
insert 0 15390 A
insert 0 15391 A
insert 0 15392 A
insert 0 15393 A
insert 0 15394 A
insert 0 15395 A
insert 0 15396 A
insert 0 15397 A
insert 0 15398 A
insert 0 15399 A
insert 0 15400 A
insert 0 15401 A
insert 0 15402 A
insert 0 15403 A
insert 0 15404 A
insert 0 15405 A
insert 0 15406 A
insert 0 15407 A
insert 0 15408 A
insert 0 15409 A
insert 0 15410 A
insert 0 15411 A
insert 0 15412 A
insert 0 15413 A
insert 0 15414 A
insert 0 15415 A
insert 0 15416 A
insert 0 15417 A
insert 0 15418 A
insert 0 15419 A
insert 0 15420 A
insert 0 15421 A
insert 0 15422 A
insert 0 15423 A
insert 0 15424 A
insert 0 15425 A
insert 0 15426 A
insert 0 15427 A
insert 0 15428 A
insert 0 15429 A
insert 0 15430 A
insert 0 15431 A
insert 0 15432 A
insert 0 15433 A
insert 0 15434 A
insert 0 15435 A
insert 0 15436 A
insert 0 15437 A
insert 0 15438 A
insert 0 15439 A
insert 0 15440 A
insert 0 15441 A
insert 0 15442 A
insert 0 15443 A
insert 0 15444 A
insert 0 15445 A
insert 0 15446 A
insert 0 15447 A
insert 0 15448 A
insert 0 15449 A
insert 0 15450 A
insert 0 15451 A
insert 0 15452 A
insert 0 15453 A
insert 0 15454 A
insert 0 15455 A
insert 0 15456 A
insert 0 15457 A
insert 0 15458 A
insert 0 15459 A
insert 0 15460 A
insert 0 15461 A
insert 0 15462 A
insert 0 15463 A
insert 0 15464 A
insert 0 15465 A
insert 0 15466 A
insert 0 15467 A
insert 0 15468 A
insert 0 15469 A
insert 0 15470 A
insert 0 15471 A
insert 0 15472 A
insert 0 15473 A
insert 0 15474 A
insert 0 15475 A
insert 0 15476 A
insert 0 15477 A
insert 0 15478 A
insert 0 15479 A
insert 0 15480 A
insert 0 15481 A
insert 0 15482 A
insert 0 15483 A
insert 0 15484 A
insert 0 15485 A
insert 0 15486 A
insert 0 15487 A
insert 0 15488 A
insert 0 15489 A
insert 0 15490 A
insert 0 15491 A
insert 0 15492 A
insert 0 15493 A
insert 0 15494 A
insert 0 15495 A
insert 0 15496 A
insert 0 15497 A
insert 0 15498 A
insert 0 15499 A
insert 0 15500 A
insert 0 15501 A
insert 0 15502 A
insert 0 15503 A
insert 0 15504 A
insert 0 15505 A
insert 0 15506 A
insert 0 15507 A
insert 0 15508 A
insert 0 15509 A
insert 0 15510 A
insert 0 15511 A
insert 0 15512 A
insert 0 15513 A
insert 0 15514 A
insert 0 15515 A
insert 0 15516 A
insert 0 15517 A
insert 0 15518 A
insert 0 15519 A
insert 0 15520 A
insert 0 15521 A
insert 0 15522 A
insert 0 15523 A
insert 0 15524 A
insert 0 15525 A
insert 0 15526 A
insert 0 15527 A
insert 0 15528 A
insert 0 15529 A
insert 0 15530 A
insert 0 15531 A
insert 0 15532 A
insert 0 15533 A
insert 0 15534 A
insert 0 15535 A
insert 0 15536 A
insert 0 15537 A
insert 0 15538 A
insert 0 15539 A
insert 0 15540 A
insert 0 15541 A
insert 0 15542 A
insert 0 15543 A
insert 0 15544 A
insert 0 15545 A
insert 0 15546 A
insert 0 15547 A
insert 0 15548 A
insert 0 15549 A
insert 0 15550 A
insert 0 15551 A
insert 0 15552 A
insert 0 15553 A
insert 0 15554 A
insert 0 15555 A
insert 0 15556 A
insert 0 15557 A
insert 0 15558 A
insert 0 15559 A
insert 0 15560 A
insert 0 15561 A
insert 0 15562 A
insert 0 15563 A
insert 0 15564 A
insert 0 15565 A
insert 0 15566 A
insert 0 15567 A
insert 0 15568 A
insert 0 15569 A
insert 0 15570 A
insert 0 15571 A
insert 0 15572 A
insert 0 15573 A
insert 0 15574 A
insert 0 15575 A
insert 0 15576 A
insert 0 15577 A
insert 0 15578 A
insert 0 15579 A
insert 0 15580 A
insert 0 15581 A
insert 0 15582 A
insert 0 15583 A
insert 0 15584 A
insert 0 15585 A
insert 0 15586 A
insert 0 15587 A
insert 0 15588 A
insert 0 15589 A
insert 0 15590 A
insert 0 15591 A
insert 0 15592 A
insert 0 15593 A
insert 0 15594 A
insert 0 15595 A
insert 0 15596 A
insert 0 15597 A
insert 0 15598 A
insert 0 15599 A
insert 0 15600 A
insert 0 15601 A
insert 0 15602 A
insert 0 15603 A
insert 0 15604 A
insert 0 15605 A
insert 0 15606 A
insert 0 15607 A
insert 0 15608 A
insert 0 15609 A
insert 0 15610 A
insert 0 15611 A
insert 0 15612 A
insert 0 15613 A
insert 0 15614 A
insert 0 15615 A
insert 0 15616 A
insert 0 15617 A
insert 0 15618 A
insert 0 15619 A
insert 0 15620 A
insert 0 15621 A
insert 0 15622 A
insert 0 15623 A
insert 0 15624 A
insert 0 15625 A
insert 0 15626 A
insert 0 15627 A
insert 0 15628 A
insert 0 15629 A
insert 0 15630 A
insert 0 15631 A
insert 0 15632 A
insert 0 15633 A
insert 0 15634 A
insert 0 15635 A
insert 0 15636 A
insert 0 15637 A
insert 0 15638 A
insert 0 15639 A
insert 0 15640 A
insert 0 15641 A
insert 0 15642 A
insert 0 15643 A
insert 0 15644 A
insert 0 15645 A
insert 0 15646 A
insert 0 15647 A
insert 0 15648 A
insert 0 15649 A
insert 0 15650 A
insert 0 15651 A
insert 0 15652 A
insert 0 15653 A
insert 0 15654 A
insert 0 15655 A
insert 0 15656 A
insert 0 15657 A
insert 0 15658 A
insert 0 15659 A
insert 0 15660 A
insert 0 15661 A
insert 0 15662 A
insert 0 15663 A
insert 0 15664 A
insert 0 15665 A
insert 0 15666 A
insert 0 15667 A
insert 0 15668 A
insert 0 15669 A
insert 0 15670 A
insert 0 15671 A
insert 0 15672 A
insert 0 15673 A
insert 0 15674 A
insert 0 15675 A
insert 0 15676 A
insert 0 15677 A
insert 0 15678 A
insert 0 15679 A
insert 0 15680 A
insert 0 15681 A
insert 0 15682 A
insert 0 15683 A
insert 0 15684 A
insert 0 15685 A
insert 0 15686 A
insert 0 15687 A
insert 0 15688 A
insert 0 15689 A
insert 0 15690 A
insert 0 15691 A
insert 0 15692 A
insert 0 15693 A
insert 0 15694 A
insert 0 15695 A
insert 0 15696 A
insert 0 15697 A
insert 0 15698 A
insert 0 15699 A
insert 0 15700 A
insert 0 15701 A
insert 0 15702 A
insert 0 15703 A
insert 0 15704 A
insert 0 15705 A
insert 0 15706 A
insert 0 15707 A
insert 0 15708 A
insert 0 15709 A
insert 0 15710 A
insert 0 15711 A
insert 0 15712 A
insert 0 15713 A
insert 0 15714 A
insert 0 15715 A
insert 0 15716 A
insert 0 15717 A
insert 0 15718 A
insert 0 15719 A
insert 0 15720 A
insert 0 15721 A
insert 0 15722 A
insert 0 15723 A
insert 0 15724 A
insert 0 15725 A
insert 0 15726 A
insert 0 15727 A
insert 0 15728 A
insert 0 15729 A
insert 0 15730 A
insert 0 15731 A
insert 0 15732 A
insert 0 15733 A
insert 0 15734 A
insert 0 15735 A
insert 0 15736 A
insert 0 15737 A
insert 0 15738 A
insert 0 15739 A
insert 0 15740 A
insert 0 15741 A
insert 0 15742 A
insert 0 15743 A
insert 0 15744 A
insert 0 15745 A
insert 0 15746 A
insert 0 15747 A
insert 0 15748 A
insert 0 15749 A
insert 0 15750 A
insert 0 15751 A
insert 0 15752 A
insert 0 15753 A
insert 0 15754 A
insert 0 15755 A
insert 0 15756 A
insert 0 15757 A
insert 0 15758 A
insert 0 15759 A
insert 0 15760 A
insert 0 15761 A
insert 0 15762 A
insert 0 15763 A
insert 0 15764 A
insert 0 15765 A
insert 0 15766 A
insert 0 15767 A
insert 0 15768 A
insert 0 15769 A
insert 0 15770 A
insert 0 15771 A
insert 0 15772 A
insert 0 15773 A
insert 0 15774 A
insert 0 15775 A
insert 0 15776 A
insert 0 15777 A
insert 0 15778 A
insert 0 15779 A
insert 0 15780 A
insert 0 15781 A
insert 0 15782 A
insert 0 15783 A
insert 0 15784 A
insert 0 15785 A
insert 0 15786 A
insert 0 15787 A
insert 0 15788 A
insert 0 15789 A
insert 0 15790 A
insert 0 15791 A
insert 0 15792 A
insert 0 15793 A
insert 0 15794 A
insert 0 15795 A
insert 0 15796 A
insert 0 15797 A
insert 0 15798 A
insert 0 15799 A
insert 0 15800 A
insert 0 15801 A
insert 0 15802 A
insert 0 15803 A
insert 0 15804 A
insert 0 15805 A
insert 0 15806 A
insert 0 15807 A
insert 0 15808 A
insert 0 15809 A
insert 0 15810 A
insert 0 15811 A
insert 0 15812 A
insert 0 15813 A
insert 0 15814 A
insert 0 15815 A
insert 0 15816 A
insert 0 15817 A
insert 0 15818 A
insert 0 15819 A
insert 0 15820 A
insert 0 15821 A
insert 0 15822 A
insert 0 15823 A
insert 0 15824 A
insert 0 15825 A
insert 0 15826 A
insert 0 15827 A
insert 0 15828 A
insert 0 15829 A
insert 0 15830 A
insert 0 15831 A
insert 0 15832 A
insert 0 15833 A
insert 0 15834 A
insert 0 15835 A
insert 0 15836 A
insert 0 15837 A
insert 0 15838 A
insert 0 15839 A
insert 0 15840 A
insert 0 15841 A
insert 0 15842 A
insert 0 15843 A
insert 0 15844 A
insert 0 15845 A
insert 0 15846 A
insert 0 15847 A
insert 0 15848 A
insert 0 15849 A
insert 0 15850 A
insert 0 15851 A
insert 0 15852 A
insert 0 15853 A
insert 0 15854 A
insert 0 15855 A
insert 0 15856 A
insert 0 15857 A
insert 0 15858 A
insert 0 15859 A
insert 0 15860 A
insert 0 15861 A
insert 0 15862 A
insert 0 15863 A
insert 0 15864 A
insert 0 15865 A
insert 0 15866 A
insert 0 15867 A
insert 0 15868 A
insert 0 15869 A
insert 0 15870 A
insert 0 15871 A
insert 0 15872 A
insert 0 15873 A
insert 0 15874 A
insert 0 15875 A
insert 0 15876 A
insert 0 15877 A
insert 0 15878 A
insert 0 15879 A
insert 0 15880 A
insert 0 15881 A
insert 0 15882 A
insert 0 15883 A
insert 0 15884 A
insert 0 15885 A
insert 0 15886 A
insert 0 15887 A
insert 0 15888 A
insert 0 15889 A
insert 0 15890 A
insert 0 15891 A
insert 0 15892 A
insert 0 15893 A
insert 0 15894 A
insert 0 15895 A
insert 0 15896 A
insert 0 15897 A
insert 0 15898 A
insert 0 15899 A
insert 0 15900 A
insert 0 15901 A
insert 0 15902 A
insert 0 15903 A
insert 0 15904 A
insert 0 15905 A
insert 0 15906 A
insert 0 15907 A
insert 0 15908 A
insert 0 15909 A
insert 0 15910 A
insert 0 15911 A
insert 0 15912 A
insert 0 15913 A
insert 0 15914 A
insert 0 15915 A
insert 0 15916 A
insert 0 15917 A
insert 0 15918 A
insert 0 15919 A
insert 0 15920 A
insert 0 15921 A
insert 0 15922 A
insert 0 15923 A
insert 0 15924 A
insert 0 15925 A
insert 0 15926 A
insert 0 15927 A
insert 0 15928 A
insert 0 15929 A
insert 0 15930 A
insert 0 15931 A
insert 0 15932 A
insert 0 15933 A
insert 0 15934 A
insert 0 15935 A
insert 0 15936 A
insert 0 15937 A
insert 0 15938 A
insert 0 15939 A
insert 0 15940 A
insert 0 15941 A
insert 0 15942 A
insert 0 15943 A
insert 0 15944 A
insert 0 15945 A
insert 0 15946 A
insert 0 15947 A
insert 0 15948 A
insert 0 15949 A
insert 0 15950 A
insert 0 15951 A
insert 0 15952 A
insert 0 15953 A
insert 0 15954 A
insert 0 15955 A
insert 0 15956 A
insert 0 15957 A
insert 0 15958 A
insert 0 15959 A
insert 0 15960 A
insert 0 15961 A
insert 0 15962 A
insert 0 15963 A
insert 0 15964 A
insert 0 15965 A
insert 0 15966 A
insert 0 15967 A
insert 0 15968 A
insert 0 15969 A
insert 0 15970 A
insert 0 15971 A
insert 0 15972 A
insert 0 15973 A
insert 0 15974 A
insert 0 15975 A
insert 0 15976 A
insert 0 15977 A
insert 0 15978 A
insert 0 15979 A
insert 0 15980 A
insert 0 15981 A
insert 0 15982 A
insert 0 15983 A
insert 0 15984 A
insert 0 15985 A
insert 0 15986 A
insert 0 15987 A
insert 0 15988 A
insert 0 15989 A
insert 0 15990 A
insert 0 15991 A
insert 0 15992 A
insert 0 15993 A
insert 0 15994 A
insert 0 15995 A
insert 0 15996 A
insert 0 15997 A
insert 0 15998 A
insert 0 15999 A
insert 0 16000 A
insert 0 16001 A
insert 0 16002 A
insert 0 16003 A
insert 0 16004 A
insert 0 16005 A
insert 0 16006 A
insert 0 16007 A
insert 0 16008 A
insert 0 16009 A
insert 0 16010 A
insert 0 16011 A
insert 0 16012 A
insert 0 16013 A
insert 0 16014 A
insert 0 16015 A
insert 0 16016 A
insert 0 16017 A
insert 0 16018 A
insert 0 16019 A
insert 0 16020 A
insert 0 16021 A
insert 0 16022 A
insert 0 16023 A
insert 0 16024 A
insert 0 16025 A
insert 0 16026 A
insert 0 16027 A
insert 0 16028 A
insert 0 16029 A
insert 0 16030 A
insert 0 16031 A
insert 0 16032 A
insert 0 16033 A
insert 0 16034 A
insert 0 16035 A
insert 0 16036 A
insert 0 16037 A
insert 0 16038 A
insert 0 16039 A
insert 0 16040 A
insert 0 16041 A
insert 0 16042 A
insert 0 16043 A
insert 0 16044 A
insert 0 16045 A
insert 0 16046 A
insert 0 16047 A
insert 0 16048 A
insert 0 16049 A
insert 0 16050 A
insert 0 16051 A
insert 0 16052 A
insert 0 16053 A
insert 0 16054 A
insert 0 16055 A
insert 0 16056 A
insert 0 16057 A
insert 0 16058 A
insert 0 16059 A
insert 0 16060 A
insert 0 16061 A
insert 0 16062 A
insert 0 16063 A
insert 0 16064 A
insert 0 16065 A
insert 0 16066 A
insert 0 16067 A
insert 0 16068 A
insert 0 16069 A
insert 0 16070 A
insert 0 16071 A
insert 0 16072 A
insert 0 16073 A
insert 0 16074 A
insert 0 16075 A
insert 0 16076 A
insert 0 16077 A
insert 0 16078 A
insert 0 16079 A
insert 0 16080 A
insert 0 16081 A
insert 0 16082 A
insert 0 16083 A
insert 0 16084 A
insert 0 16085 A
insert 0 16086 A
insert 0 16087 A
insert 0 16088 A
insert 0 16089 A
insert 0 16090 A
insert 0 16091 A
insert 0 16092 A
insert 0 16093 A
insert 0 16094 A
insert 0 16095 A
insert 0 16096 A
insert 0 16097 A
insert 0 16098 A
insert 0 16099 A
insert 0 16100 A
insert 0 16101 A
insert 0 16102 A
insert 0 16103 A
insert 0 16104 A
insert 0 16105 A
insert 0 16106 A
insert 0 16107 A
insert 0 16108 A
insert 0 16109 A
insert 0 16110 A
insert 0 16111 A
insert 0 16112 A
insert 0 16113 A
insert 0 16114 A
insert 0 16115 A
insert 0 16116 A
insert 0 16117 A
insert 0 16118 A
insert 0 16119 A
insert 0 16120 A
insert 0 16121 A
insert 0 16122 A
insert 0 16123 A
insert 0 16124 A
insert 0 16125 A
insert 0 16126 A
insert 0 16127 A
insert 0 16128 A
insert 0 16129 A
insert 0 16130 A
insert 0 16131 A
insert 0 16132 A
insert 0 16133 A
insert 0 16134 A
insert 0 16135 A
insert 0 16136 A
insert 0 16137 A
insert 0 16138 A
insert 0 16139 A
insert 0 16140 A
insert 0 16141 A
insert 0 16142 A
insert 0 16143 A
insert 0 16144 A
insert 0 16145 A
insert 0 16146 A
insert 0 16147 A
insert 0 16148 A
insert 0 16149 A
insert 0 16150 A
insert 0 16151 A
insert 0 16152 A
insert 0 16153 A
insert 0 16154 A
insert 0 16155 A
insert 0 16156 A
insert 0 16157 A
insert 0 16158 A
insert 0 16159 A
insert 0 16160 A
insert 0 16161 A
insert 0 16162 A
insert 0 16163 A
insert 0 16164 A
insert 0 16165 A
insert 0 16166 A
insert 0 16167 A
insert 0 16168 A
insert 0 16169 A
insert 0 16170 A
insert 0 16171 A
insert 0 16172 A
insert 0 16173 A
insert 0 16174 A
insert 0 16175 A
insert 0 16176 A
insert 0 16177 A
insert 0 16178 A
insert 0 16179 A
insert 0 16180 A
insert 0 16181 A
insert 0 16182 A
insert 0 16183 A
insert 0 16184 A
insert 0 16185 A
insert 0 16186 A
insert 0 16187 A
insert 0 16188 A
insert 0 16189 A
insert 0 16190 A
insert 0 16191 A
insert 0 16192 A
insert 0 16193 A
insert 0 16194 A
insert 0 16195 A
insert 0 16196 A
insert 0 16197 A
insert 0 16198 A
insert 0 16199 A
insert 0 16200 A
insert 0 16201 A
insert 0 16202 A
insert 0 16203 A
insert 0 16204 A
insert 0 16205 A
insert 0 16206 A
insert 0 16207 A
insert 0 16208 A
insert 0 16209 A
insert 0 16210 A
insert 0 16211 A
insert 0 16212 A
insert 0 16213 A
insert 0 16214 A
insert 0 16215 A
insert 0 16216 A
insert 0 16217 A
insert 0 16218 A
insert 0 16219 A
insert 0 16220 A
insert 0 16221 A
insert 0 16222 A
insert 0 16223 A
insert 0 16224 A
insert 0 16225 A
insert 0 16226 A
insert 0 16227 A
insert 0 16228 A
insert 0 16229 A
insert 0 16230 A
insert 0 16231 A
insert 0 16232 A
insert 0 16233 A
insert 0 16234 A
insert 0 16235 A
insert 0 16236 A
insert 0 16237 A
insert 0 16238 A
insert 0 16239 A
insert 0 16240 A
insert 0 16241 A
insert 0 16242 A
insert 0 16243 A
insert 0 16244 A
insert 0 16245 A
insert 0 16246 A
insert 0 16247 A
insert 0 16248 A
insert 0 16249 A
insert 0 16250 A
insert 0 16251 A
insert 0 16252 A
insert 0 16253 A
insert 0 16254 A
insert 0 16255 A
insert 0 16256 A
insert 0 16257 A
insert 0 16258 A
insert 0 16259 A
insert 0 16260 A
insert 0 16261 A
insert 0 16262 A
insert 0 16263 A
insert 0 16264 A
insert 0 16265 A
insert 0 16266 A
insert 0 16267 A
insert 0 16268 A
insert 0 16269 A
insert 0 16270 A
insert 0 16271 A
insert 0 16272 A
insert 0 16273 A
insert 0 16274 A
insert 0 16275 A
insert 0 16276 A
insert 0 16277 A
insert 0 16278 A
insert 0 16279 A
insert 0 16280 A
insert 0 16281 A
insert 0 16282 A
insert 0 16283 A
insert 0 16284 A
insert 0 16285 A
insert 0 16286 A
insert 0 16287 A
insert 0 16288 A
insert 0 16289 A
insert 0 16290 A
insert 0 16291 A
insert 0 16292 A
insert 0 16293 A
insert 0 16294 A
insert 0 16295 A
insert 0 16296 A
insert 0 16297 A
insert 0 16298 A
insert 0 16299 A
insert 0 16300 A
insert 0 16301 A
insert 0 16302 A
insert 0 16303 A
insert 0 16304 A
insert 0 16305 A
insert 0 16306 A
insert 0 16307 A
insert 0 16308 A
insert 0 16309 A
insert 0 16310 A
insert 0 16311 A
insert 0 16312 A
insert 0 16313 A
insert 0 16314 A
insert 0 16315 A
insert 0 16316 A
insert 0 16317 A
insert 0 16318 A
insert 0 16319 A
insert 0 16320 A
insert 0 16321 A
insert 0 16322 A
insert 0 16323 A
insert 0 16324 A
insert 0 16325 A
insert 0 16326 A
insert 0 16327 A
insert 0 16328 A
insert 0 16329 A
insert 0 16330 A
insert 0 16331 A
insert 0 16332 A
insert 0 16333 A
insert 0 16334 A
insert 0 16335 A
insert 0 16336 A
insert 0 16337 A
insert 0 16338 A
insert 0 16339 A
insert 0 16340 A
insert 0 16341 A
insert 0 16342 A
insert 0 16343 A
insert 0 16344 A
insert 0 16345 A
insert 0 16346 A
insert 0 16347 A
insert 0 16348 A
insert 0 16349 A
insert 0 16350 A
insert 0 16351 A
insert 0 16352 A
insert 0 16353 A
insert 0 16354 A
insert 0 16355 A
insert 0 16356 A
insert 0 16357 A
insert 0 16358 A
insert 0 16359 A
insert 0 16360 A
insert 0 16361 A
insert 0 16362 A
insert 0 16363 A
insert 0 16364 A
insert 0 16365 A
insert 0 16366 A
insert 0 16367 A
insert 0 16368 A
insert 0 16369 A
insert 0 16370 A
insert 0 16371 A
insert 0 16372 A
insert 0 16373 A
insert 0 16374 A
insert 0 16375 A
insert 0 16376 A
insert 0 16377 A
insert 0 16378 A
insert 0 16379 A
insert 0 16380 A
insert 0 16381 A
insert 0 16382 A
insert 0 16383 A
remove 0 0
remove 0 1
remove 0 2
remove 0 3
remove 0 4
remove 0 5
remove 0 6
remove 0 7
remove 0 8
remove 0 9
remove 0 10
remove 0 11
remove 0 12
remove 0 13
remove 0 14
remove 0 15
remove 0 16
remove 0 17
remove 0 18
remove 0 19
remove 0 20
remove 0 21
remove 0 22
remove 0 23
remove 0 24
remove 0 25
remove 0 26
remove 0 27
remove 0 28
remove 0 29
remove 0 30
remove 0 31
remove 0 32
remove 0 33
remove 0 34
remove 0 35
remove 0 36
remove 0 37
remove 0 38
remove 0 39
remove 0 40
remove 0 41
remove 0 42
remove 0 43
remove 0 44
remove 0 45
remove 0 46
remove 0 47
remove 0 48
remove 0 49
remove 0 50
remove 0 51
remove 0 52
remove 0 53
remove 0 54
remove 0 55
remove 0 56
remove 0 57
remove 0 58
remove 0 59
remove 0 60
remove 0 61
remove 0 62
remove 0 63
remove 0 64
remove 0 65
remove 0 66
remove 0 67
remove 0 68
remove 0 69
remove 0 70
remove 0 71
remove 0 72
remove 0 73
remove 0 74
remove 0 75
remove 0 76
remove 0 77
remove 0 78
remove 0 79
remove 0 80
remove 0 81
remove 0 82
remove 0 83
remove 0 84
remove 0 85
remove 0 86
remove 0 87
remove 0 88
remove 0 89
remove 0 90
remove 0 91
remove 0 92
remove 0 93
remove 0 94
remove 0 95
remove 0 96
remove 0 97
remove 0 98
remove 0 99
remove 0 100
remove 0 101
remove 0 102
remove 0 103
remove 0 104
remove 0 105
remove 0 106
remove 0 107
remove 0 108
remove 0 109
remove 0 110
remove 0 111
remove 0 112
remove 0 113
remove 0 114
remove 0 115
remove 0 116
remove 0 117
remove 0 118
remove 0 119
remove 0 120
remove 0 121
remove 0 122
remove 0 123
remove 0 124
remove 0 125
remove 0 126
remove 0 127
remove 0 128
remove 0 129
remove 0 130
remove 0 131
remove 0 132
remove 0 133
remove 0 134
remove 0 135
remove 0 136
remove 0 137
remove 0 138
remove 0 139
remove 0 140
remove 0 141
remove 0 142
remove 0 143
remove 0 144
remove 0 145
remove 0 146
remove 0 147
remove 0 148
remove 0 149
remove 0 150
remove 0 151
remove 0 152
remove 0 153
remove 0 154
remove 0 155
remove 0 156
remove 0 157
remove 0 158
remove 0 159
remove 0 160
remove 0 161
remove 0 162
remove 0 163
remove 0 164
remove 0 165
remove 0 166
remove 0 167
remove 0 168
remove 0 169
remove 0 170
remove 0 171
remove 0 172
remove 0 173
remove 0 174
remove 0 175
remove 0 176
remove 0 177
remove 0 178
remove 0 179
remove 0 180
remove 0 181
remove 0 182
remove 0 183
remove 0 184
remove 0 185
remove 0 186
remove 0 187
remove 0 188
remove 0 189
remove 0 190
remove 0 191
remove 0 192
remove 0 193
remove 0 194
remove 0 195
remove 0 196
remove 0 197
remove 0 198
remove 0 199
remove 0 200
remove 0 201
remove 0 202
remove 0 203
remove 0 204
remove 0 205
remove 0 206
remove 0 207
remove 0 208
remove 0 209
remove 0 210
remove 0 211
remove 0 212
remove 0 213
remove 0 214
remove 0 215
remove 0 216
remove 0 217
remove 0 218
remove 0 219
remove 0 220
remove 0 221
remove 0 222
remove 0 223
remove 0 224
remove 0 225
remove 0 226
remove 0 227
remove 0 228
remove 0 229
remove 0 230
remove 0 231
remove 0 232
remove 0 233
remove 0 234
remove 0 235
remove 0 236
remove 0 237
remove 0 238
remove 0 239
remove 0 240
remove 0 241
remove 0 242
remove 0 243
remove 0 244
remove 0 245
remove 0 246
remove 0 247
remove 0 248
remove 0 249
remove 0 250
remove 0 251
remove 0 252
remove 0 253
remove 0 254
remove 0 255
remove 0 256
remove 0 257
remove 0 258
remove 0 259
remove 0 260
remove 0 261
remove 0 262
remove 0 263
remove 0 264
remove 0 265
remove 0 266
remove 0 267
remove 0 268
remove 0 269
remove 0 270
remove 0 271
remove 0 272
remove 0 273
remove 0 274
remove 0 275
remove 0 276
remove 0 277
remove 0 278
remove 0 279
remove 0 280
remove 0 281
remove 0 282
remove 0 283
remove 0 284
remove 0 285
remove 0 286
remove 0 287
remove 0 288
remove 0 289
remove 0 290
remove 0 291
remove 0 292
remove 0 293
remove 0 294
remove 0 295
remove 0 296
remove 0 297
remove 0 298
remove 0 299
remove 0 300
remove 0 301
remove 0 302
remove 0 303
remove 0 304
remove 0 305
remove 0 306
remove 0 307
remove 0 308
remove 0 309
remove 0 310
remove 0 311
remove 0 312
remove 0 313
remove 0 314
remove 0 315
remove 0 316
remove 0 317
remove 0 318
remove 0 319
remove 0 320
remove 0 321
remove 0 322
remove 0 323
remove 0 324
remove 0 325
remove 0 326
remove 0 327
remove 0 328
remove 0 329
remove 0 330
remove 0 331
remove 0 332
remove 0 333
remove 0 334
remove 0 335
remove 0 336
remove 0 337
remove 0 338
remove 0 339
remove 0 340
remove 0 341
remove 0 342
remove 0 343
remove 0 344
remove 0 345
remove 0 346
remove 0 347
remove 0 348
remove 0 349
remove 0 350
remove 0 351
remove 0 352
remove 0 353
remove 0 354
remove 0 355
remove 0 356
remove 0 357
remove 0 358
remove 0 359
remove 0 360
remove 0 361
remove 0 362
remove 0 363
remove 0 364
remove 0 365
remove 0 366
remove 0 367
remove 0 368
remove 0 369
remove 0 370
remove 0 371
remove 0 372
remove 0 373
remove 0 374
remove 0 375
remove 0 376
remove 0 377
remove 0 378
remove 0 379
remove 0 380
remove 0 381
remove 0 382
remove 0 383
remove 0 384
remove 0 385
remove 0 386
remove 0 387
remove 0 388
remove 0 389
remove 0 390
remove 0 391
remove 0 392
remove 0 393
remove 0 394
remove 0 395
remove 0 396
remove 0 397
remove 0 398
remove 0 399
remove 0 400
remove 0 401
remove 0 402
remove 0 403
remove 0 404
remove 0 405
remove 0 406
remove 0 407
remove 0 408
remove 0 409
remove 0 410
remove 0 411
remove 0 412
remove 0 413
remove 0 414
remove 0 415
remove 0 416
remove 0 417
remove 0 418
remove 0 419
remove 0 420
remove 0 421
remove 0 422
remove 0 423
remove 0 424
remove 0 425
remove 0 426
remove 0 427
remove 0 428
remove 0 429
remove 0 430
remove 0 431
remove 0 432
remove 0 433
remove 0 434
remove 0 435
remove 0 436
remove 0 437
remove 0 438
remove 0 439
remove 0 440
remove 0 441
remove 0 442
remove 0 443
remove 0 444
remove 0 445
remove 0 446
remove 0 447
remove 0 448
remove 0 449
remove 0 450
remove 0 451
remove 0 452
remove 0 453
remove 0 454
remove 0 455
remove 0 456
remove 0 457
remove 0 458
remove 0 459
remove 0 460
remove 0 461
remove 0 462
remove 0 463
remove 0 464
remove 0 465
remove 0 466
remove 0 467
remove 0 468
remove 0 469
remove 0 470
remove 0 471
remove 0 472
remove 0 473
remove 0 474
remove 0 475
remove 0 476
remove 0 477
remove 0 478
remove 0 479
remove 0 480
remove 0 481
remove 0 482
remove 0 483
remove 0 484
remove 0 485
remove 0 486
remove 0 487
remove 0 488
remove 0 489
remove 0 490
remove 0 491
remove 0 492
remove 0 493
remove 0 494
remove 0 495
remove 0 496
remove 0 497
remove 0 498
remove 0 499
remove 0 500
remove 0 501
remove 0 502
remove 0 503
remove 0 504
remove 0 505
remove 0 506
remove 0 507
remove 0 508
remove 0 509
remove 0 510
remove 0 511
remove 0 512
remove 0 513
remove 0 514
remove 0 515
remove 0 516
remove 0 517
remove 0 518
remove 0 519
remove 0 520
remove 0 521
remove 0 522
remove 0 523
remove 0 524
remove 0 525
remove 0 526
remove 0 527
remove 0 528
remove 0 529
remove 0 530
remove 0 531
remove 0 532
remove 0 533
remove 0 534
remove 0 535
remove 0 536
remove 0 537
remove 0 538
remove 0 539
remove 0 540
remove 0 541
remove 0 542
remove 0 543
remove 0 544
remove 0 545
remove 0 546
remove 0 547
remove 0 548
remove 0 549
remove 0 550
remove 0 551
remove 0 552
remove 0 553
remove 0 554
remove 0 555
remove 0 556
remove 0 557
remove 0 558
remove 0 559
remove 0 560
remove 0 561
remove 0 562
remove 0 563
remove 0 564
remove 0 565
remove 0 566
remove 0 567
remove 0 568
remove 0 569
remove 0 570
remove 0 571
remove 0 572
remove 0 573
remove 0 574
remove 0 575
remove 0 576
remove 0 577
remove 0 578
remove 0 579
remove 0 580
remove 0 581
remove 0 582
remove 0 583
remove 0 584
remove 0 585
remove 0 586
remove 0 587
remove 0 588
remove 0 589
remove 0 590
remove 0 591
remove 0 592
remove 0 593
remove 0 594
remove 0 595
remove 0 596
remove 0 597
remove 0 598
remove 0 599
remove 0 600
remove 0 601
remove 0 602
remove 0 603
remove 0 604
remove 0 605
remove 0 606
remove 0 607
remove 0 608
remove 0 609
remove 0 610
remove 0 611
remove 0 612
remove 0 613
remove 0 614
remove 0 615
remove 0 616
remove 0 617
remove 0 618
remove 0 619
remove 0 620
remove 0 621
remove 0 622
remove 0 623
remove 0 624
remove 0 625
remove 0 626
remove 0 627
remove 0 628
remove 0 629
remove 0 630
remove 0 631
remove 0 632
remove 0 633
remove 0 634
remove 0 635
remove 0 636
remove 0 637
remove 0 638
remove 0 639
remove 0 640
remove 0 641
remove 0 642
remove 0 643
remove 0 644
remove 0 645
remove 0 646
remove 0 647
remove 0 648
remove 0 649
remove 0 650
remove 0 651
remove 0 652
remove 0 653
remove 0 654
remove 0 655
remove 0 656
remove 0 657
remove 0 658
remove 0 659
remove 0 660
remove 0 661
remove 0 662
remove 0 663
remove 0 664
remove 0 665
remove 0 666
remove 0 667
remove 0 668
remove 0 669
remove 0 670
remove 0 671
remove 0 672
remove 0 673
remove 0 674
remove 0 675
remove 0 676
remove 0 677
remove 0 678
remove 0 679
remove 0 680
remove 0 681
remove 0 682
remove 0 683
remove 0 684
remove 0 685
remove 0 686
remove 0 687
remove 0 688
remove 0 689
remove 0 690
remove 0 691
remove 0 692
remove 0 693
remove 0 694
remove 0 695
remove 0 696
remove 0 697
remove 0 698
remove 0 699
remove 0 700
remove 0 701
remove 0 702
remove 0 703
remove 0 704
remove 0 705
remove 0 706
remove 0 707
remove 0 708
remove 0 709
remove 0 710
remove 0 711
remove 0 712
remove 0 713
remove 0 714
remove 0 715
remove 0 716
remove 0 717
remove 0 718
remove 0 719
remove 0 720
remove 0 721
remove 0 722
remove 0 723
remove 0 724
remove 0 725
remove 0 726
remove 0 727
remove 0 728
remove 0 729
remove 0 730
remove 0 731
remove 0 732
remove 0 733
remove 0 734
remove 0 735
remove 0 736
remove 0 737
remove 0 738
remove 0 739
remove 0 740
remove 0 741
remove 0 742
remove 0 743
remove 0 744
remove 0 745
remove 0 746
remove 0 747
remove 0 748
remove 0 749
remove 0 750
remove 0 751
remove 0 752
remove 0 753
remove 0 754
remove 0 755
remove 0 756
remove 0 757
remove 0 758
remove 0 759
remove 0 760
remove 0 761
remove 0 762
remove 0 763
remove 0 764
remove 0 765
remove 0 766
remove 0 767
remove 0 768
remove 0 769
remove 0 770
remove 0 771
remove 0 772
remove 0 773
remove 0 774
remove 0 775
remove 0 776
remove 0 777
remove 0 778
remove 0 779
remove 0 780
remove 0 781
remove 0 782
remove 0 783
remove 0 784
remove 0 785
remove 0 786
remove 0 787
remove 0 788
remove 0 789
remove 0 790
remove 0 791
remove 0 792
remove 0 793
remove 0 794
remove 0 795
remove 0 796
remove 0 797
remove 0 798
remove 0 799
remove 0 800
remove 0 801
remove 0 802
remove 0 803
remove 0 804
remove 0 805
remove 0 806
remove 0 807
remove 0 808
remove 0 809
remove 0 810
remove 0 811
remove 0 812
remove 0 813
remove 0 814
remove 0 815
remove 0 816
remove 0 817
remove 0 818
remove 0 819
remove 0 820
remove 0 821
remove 0 822
remove 0 823
remove 0 824
remove 0 825
remove 0 826
remove 0 827
remove 0 828
remove 0 829
remove 0 830
remove 0 831
remove 0 832
remove 0 833
remove 0 834
remove 0 835
remove 0 836
remove 0 837
remove 0 838
remove 0 839
remove 0 840
remove 0 841
remove 0 842
remove 0 843
remove 0 844
remove 0 845
remove 0 846
remove 0 847
remove 0 848
remove 0 849
remove 0 850
remove 0 851
remove 0 852
remove 0 853
remove 0 854
remove 0 855
remove 0 856
remove 0 857
remove 0 858
remove 0 859
remove 0 860
remove 0 861
remove 0 862
remove 0 863
remove 0 864
remove 0 865
remove 0 866
remove 0 867
remove 0 868
remove 0 869
remove 0 870
remove 0 871
remove 0 872
remove 0 873
remove 0 874
remove 0 875
remove 0 876
remove 0 877
remove 0 878
remove 0 879
remove 0 880
remove 0 881
remove 0 882
remove 0 883
remove 0 884
remove 0 885
remove 0 886
remove 0 887
remove 0 888
remove 0 889
remove 0 890
remove 0 891
remove 0 892
remove 0 893
remove 0 894
remove 0 895
remove 0 896
remove 0 897
remove 0 898
remove 0 899
remove 0 900
remove 0 901
remove 0 902
remove 0 903
remove 0 904
remove 0 905
remove 0 906
remove 0 907
remove 0 908
remove 0 909
remove 0 910
remove 0 911
remove 0 912
remove 0 913
remove 0 914
remove 0 915
remove 0 916
remove 0 917
remove 0 918
remove 0 919
remove 0 920
remove 0 921
remove 0 922
remove 0 923
remove 0 924
remove 0 925
remove 0 926
remove 0 927
remove 0 928
remove 0 929
remove 0 930
remove 0 931
remove 0 932
remove 0 933
remove 0 934
remove 0 935
remove 0 936
remove 0 937
remove 0 938
remove 0 939
remove 0 940
remove 0 941
remove 0 942
remove 0 943
remove 0 944
remove 0 945
remove 0 946
remove 0 947
remove 0 948
remove 0 949
remove 0 950
remove 0 951
remove 0 952
remove 0 953
remove 0 954
remove 0 955
remove 0 956
remove 0 957
remove 0 958
remove 0 959
remove 0 960
remove 0 961
remove 0 962
remove 0 963
remove 0 964
remove 0 965
remove 0 966
remove 0 967
remove 0 968
remove 0 969
remove 0 970
remove 0 971
remove 0 972
remove 0 973
remove 0 974
remove 0 975
remove 0 976
remove 0 977
remove 0 978
remove 0 979
remove 0 980
remove 0 981
remove 0 982
remove 0 983
remove 0 984
remove 0 985
remove 0 986
remove 0 987
remove 0 988
remove 0 989
remove 0 990
remove 0 991
remove 0 992
remove 0 993
remove 0 994
remove 0 995
remove 0 996
remove 0 997
remove 0 998
remove 0 999
remove 0 1000
remove 0 1001
remove 0 1002
remove 0 1003
remove 0 1004
remove 0 1005
remove 0 1006
remove 0 1007
remove 0 1008
remove 0 1009
remove 0 1010
remove 0 1011
remove 0 1012
remove 0 1013
remove 0 1014
remove 0 1015
remove 0 1016
remove 0 1017
remove 0 1018
remove 0 1019
remove 0 1020
remove 0 1021
remove 0 1022
remove 0 1023
remove 0 1024
remove 0 1025
remove 0 1026
remove 0 1027
remove 0 1028
remove 0 1029
remove 0 1030
remove 0 1031
remove 0 1032
remove 0 1033
remove 0 1034
remove 0 1035
remove 0 1036
remove 0 1037
remove 0 1038
remove 0 1039
remove 0 1040
remove 0 1041
remove 0 1042
remove 0 1043
remove 0 1044
remove 0 1045
remove 0 1046
remove 0 1047
remove 0 1048
remove 0 1049
remove 0 1050
remove 0 1051
remove 0 1052
remove 0 1053
remove 0 1054
remove 0 1055
remove 0 1056
remove 0 1057
remove 0 1058
remove 0 1059
remove 0 1060
remove 0 1061
remove 0 1062
remove 0 1063
remove 0 1064
remove 0 1065
remove 0 1066
remove 0 1067
remove 0 1068
remove 0 1069
remove 0 1070
remove 0 1071
remove 0 1072
remove 0 1073
remove 0 1074
remove 0 1075
remove 0 1076
remove 0 1077
remove 0 1078
remove 0 1079
remove 0 1080
remove 0 1081
remove 0 1082
remove 0 1083
remove 0 1084
remove 0 1085
remove 0 1086
remove 0 1087
remove 0 1088
remove 0 1089
remove 0 1090
remove 0 1091
remove 0 1092
remove 0 1093
remove 0 1094
remove 0 1095
remove 0 1096
remove 0 1097
remove 0 1098
remove 0 1099
remove 0 1100
remove 0 1101
remove 0 1102
remove 0 1103
remove 0 1104
remove 0 1105
remove 0 1106
remove 0 1107
remove 0 1108
remove 0 1109
remove 0 1110
remove 0 1111
remove 0 1112
remove 0 1113
remove 0 1114
remove 0 1115
remove 0 1116
remove 0 1117
remove 0 1118
remove 0 1119
remove 0 1120
remove 0 1121
remove 0 1122
remove 0 1123
remove 0 1124
remove 0 1125
remove 0 1126
remove 0 1127
remove 0 1128
remove 0 1129
remove 0 1130
remove 0 1131
remove 0 1132
remove 0 1133
remove 0 1134
remove 0 1135
remove 0 1136
remove 0 1137
remove 0 1138
remove 0 1139
remove 0 1140
remove 0 1141
remove 0 1142
remove 0 1143
remove 0 1144
remove 0 1145
remove 0 1146
remove 0 1147
remove 0 1148
remove 0 1149
remove 0 1150
remove 0 1151
remove 0 1152
remove 0 1153
remove 0 1154
remove 0 1155
remove 0 1156
remove 0 1157
remove 0 1158
remove 0 1159
remove 0 1160
remove 0 1161
remove 0 1162
remove 0 1163
remove 0 1164
remove 0 1165
remove 0 1166
remove 0 1167
remove 0 1168
remove 0 1169
remove 0 1170
remove 0 1171
remove 0 1172
remove 0 1173
remove 0 1174
remove 0 1175
remove 0 1176
remove 0 1177
remove 0 1178
remove 0 1179
remove 0 1180
remove 0 1181
remove 0 1182
remove 0 1183
remove 0 1184
remove 0 1185
remove 0 1186
remove 0 1187
remove 0 1188
remove 0 1189
remove 0 1190
remove 0 1191
remove 0 1192
remove 0 1193
remove 0 1194
remove 0 1195
remove 0 1196
remove 0 1197
remove 0 1198
remove 0 1199
remove 0 1200
remove 0 1201
remove 0 1202
remove 0 1203
remove 0 1204
remove 0 1205
remove 0 1206
remove 0 1207
remove 0 1208
remove 0 1209
remove 0 1210
remove 0 1211
remove 0 1212
remove 0 1213
remove 0 1214
remove 0 1215
remove 0 1216
remove 0 1217
remove 0 1218
remove 0 1219
remove 0 1220
remove 0 1221
remove 0 1222
remove 0 1223
remove 0 1224
remove 0 1225
remove 0 1226
remove 0 1227
remove 0 1228
remove 0 1229
remove 0 1230
remove 0 1231
remove 0 1232
remove 0 1233
remove 0 1234
remove 0 1235
remove 0 1236
remove 0 1237
remove 0 1238
remove 0 1239
remove 0 1240
remove 0 1241
remove 0 1242
remove 0 1243
remove 0 1244
remove 0 1245
remove 0 1246
remove 0 1247
remove 0 1248
remove 0 1249
remove 0 1250
remove 0 1251
remove 0 1252
remove 0 1253
remove 0 1254
remove 0 1255
remove 0 1256
remove 0 1257
remove 0 1258
remove 0 1259
remove 0 1260
remove 0 1261
remove 0 1262
remove 0 1263
remove 0 1264
remove 0 1265
remove 0 1266
remove 0 1267
remove 0 1268
remove 0 1269
remove 0 1270
remove 0 1271
remove 0 1272
remove 0 1273
remove 0 1274
remove 0 1275
remove 0 1276
remove 0 1277
remove 0 1278
remove 0 1279
remove 0 1280
remove 0 1281
remove 0 1282
remove 0 1283
remove 0 1284
remove 0 1285
remove 0 1286
remove 0 1287
remove 0 1288
remove 0 1289
remove 0 1290
remove 0 1291
remove 0 1292
remove 0 1293
remove 0 1294
remove 0 1295
remove 0 1296
remove 0 1297
remove 0 1298
remove 0 1299
remove 0 1300
remove 0 1301
remove 0 1302
remove 0 1303
remove 0 1304
remove 0 1305
remove 0 1306
remove 0 1307
remove 0 1308
remove 0 1309
remove 0 1310
remove 0 1311
remove 0 1312
remove 0 1313
remove 0 1314
remove 0 1315
remove 0 1316
remove 0 1317
remove 0 1318
remove 0 1319
remove 0 1320
remove 0 1321
remove 0 1322
remove 0 1323
remove 0 1324
remove 0 1325
remove 0 1326
remove 0 1327
remove 0 1328
remove 0 1329
remove 0 1330
remove 0 1331
remove 0 1332
remove 0 1333
remove 0 1334
remove 0 1335
remove 0 1336
remove 0 1337
remove 0 1338
remove 0 1339
remove 0 1340
remove 0 1341
remove 0 1342
remove 0 1343
remove 0 1344
remove 0 1345
remove 0 1346
remove 0 1347
remove 0 1348
remove 0 1349
remove 0 1350
remove 0 1351
remove 0 1352
remove 0 1353
remove 0 1354
remove 0 1355
remove 0 1356
remove 0 1357
remove 0 1358
remove 0 1359
remove 0 1360
remove 0 1361
remove 0 1362
remove 0 1363
remove 0 1364
remove 0 1365
remove 0 1366
remove 0 1367
remove 0 1368
remove 0 1369
remove 0 1370
remove 0 1371
remove 0 1372
remove 0 1373
remove 0 1374
remove 0 1375
remove 0 1376
remove 0 1377
remove 0 1378
remove 0 1379
remove 0 1380
remove 0 1381
remove 0 1382
remove 0 1383
remove 0 1384
remove 0 1385
remove 0 1386
remove 0 1387
remove 0 1388
remove 0 1389
remove 0 1390
remove 0 1391
remove 0 1392
remove 0 1393
remove 0 1394
remove 0 1395
remove 0 1396
remove 0 1397
remove 0 1398
remove 0 1399
remove 0 1400
remove 0 1401
remove 0 1402
remove 0 1403
remove 0 1404
remove 0 1405
remove 0 1406
remove 0 1407
remove 0 1408
remove 0 1409
remove 0 1410
remove 0 1411
remove 0 1412
remove 0 1413
remove 0 1414
remove 0 1415
remove 0 1416
remove 0 1417
remove 0 1418
remove 0 1419
remove 0 1420
remove 0 1421
remove 0 1422
remove 0 1423
remove 0 1424
remove 0 1425
remove 0 1426
remove 0 1427
remove 0 1428
remove 0 1429
remove 0 1430
remove 0 1431
remove 0 1432
remove 0 1433
remove 0 1434
remove 0 1435
remove 0 1436
remove 0 1437
remove 0 1438
remove 0 1439
remove 0 1440
remove 0 1441
remove 0 1442
remove 0 1443
remove 0 1444
remove 0 1445
remove 0 1446
remove 0 1447
remove 0 1448
remove 0 1449
remove 0 1450
remove 0 1451
remove 0 1452
remove 0 1453
remove 0 1454
remove 0 1455
remove 0 1456
remove 0 1457
remove 0 1458
remove 0 1459
remove 0 1460
remove 0 1461
remove 0 1462
remove 0 1463
remove 0 1464
remove 0 1465
remove 0 1466
remove 0 1467
remove 0 1468
remove 0 1469
remove 0 1470
remove 0 1471
remove 0 1472
remove 0 1473
remove 0 1474
remove 0 1475
remove 0 1476
remove 0 1477
remove 0 1478
remove 0 1479
remove 0 1480
remove 0 1481
remove 0 1482
remove 0 1483
remove 0 1484
remove 0 1485
remove 0 1486
remove 0 1487
remove 0 1488
remove 0 1489
remove 0 1490
remove 0 1491
remove 0 1492
remove 0 1493
remove 0 1494
remove 0 1495
remove 0 1496
remove 0 1497
remove 0 1498
remove 0 1499
remove 0 1500
remove 0 1501
remove 0 1502
remove 0 1503
remove 0 1504
remove 0 1505
remove 0 1506
remove 0 1507
remove 0 1508
remove 0 1509
remove 0 1510
remove 0 1511
remove 0 1512
remove 0 1513
remove 0 1514
remove 0 1515
remove 0 1516
remove 0 1517
remove 0 1518
remove 0 1519
remove 0 1520
remove 0 1521
remove 0 1522
remove 0 1523
remove 0 1524
remove 0 1525
remove 0 1526
remove 0 1527
remove 0 1528
remove 0 1529
remove 0 1530
remove 0 1531
remove 0 1532
remove 0 1533
remove 0 1534
remove 0 1535
remove 0 1536
remove 0 1537
remove 0 1538
remove 0 1539
remove 0 1540
remove 0 1541
remove 0 1542
remove 0 1543
remove 0 1544
remove 0 1545
remove 0 1546
remove 0 1547
remove 0 1548
remove 0 1549
remove 0 1550
remove 0 1551
remove 0 1552
remove 0 1553
remove 0 1554
remove 0 1555
remove 0 1556
remove 0 1557
remove 0 1558
remove 0 1559
remove 0 1560
remove 0 1561
remove 0 1562
remove 0 1563
remove 0 1564
remove 0 1565
remove 0 1566
remove 0 1567
remove 0 1568
remove 0 1569
remove 0 1570
remove 0 1571
remove 0 1572
remove 0 1573
remove 0 1574
remove 0 1575
remove 0 1576
remove 0 1577
remove 0 1578
remove 0 1579
remove 0 1580
remove 0 1581
remove 0 1582
remove 0 1583
remove 0 1584
remove 0 1585
remove 0 1586
remove 0 1587
remove 0 1588
remove 0 1589
remove 0 1590
remove 0 1591
remove 0 1592
remove 0 1593
remove 0 1594
remove 0 1595
remove 0 1596
remove 0 1597
remove 0 1598
remove 0 1599
remove 0 1600
remove 0 1601
remove 0 1602
remove 0 1603
remove 0 1604
remove 0 1605
remove 0 1606
remove 0 1607
remove 0 1608
remove 0 1609
remove 0 1610
remove 0 1611
remove 0 1612
remove 0 1613
remove 0 1614
remove 0 1615
remove 0 1616
remove 0 1617
remove 0 1618
remove 0 1619
remove 0 1620
remove 0 1621
remove 0 1622
remove 0 1623
remove 0 1624
remove 0 1625
remove 0 1626
remove 0 1627
remove 0 1628
remove 0 1629
remove 0 1630
remove 0 1631
remove 0 1632
remove 0 1633
remove 0 1634
remove 0 1635
remove 0 1636
remove 0 1637
remove 0 1638
remove 0 1639
remove 0 1640
remove 0 1641
remove 0 1642
remove 0 1643
remove 0 1644
remove 0 1645
remove 0 1646
remove 0 1647
remove 0 1648
remove 0 1649
remove 0 1650
remove 0 1651
remove 0 1652
remove 0 1653
remove 0 1654
remove 0 1655
remove 0 1656
remove 0 1657
remove 0 1658
remove 0 1659
remove 0 1660
remove 0 1661
remove 0 1662
remove 0 1663
remove 0 1664
remove 0 1665
remove 0 1666
remove 0 1667
remove 0 1668
remove 0 1669
remove 0 1670
remove 0 1671
remove 0 1672
remove 0 1673
remove 0 1674
remove 0 1675
remove 0 1676
remove 0 1677
remove 0 1678
remove 0 1679
remove 0 1680
remove 0 1681
remove 0 1682
remove 0 1683
remove 0 1684
remove 0 1685
remove 0 1686
remove 0 1687
remove 0 1688
remove 0 1689
remove 0 1690
remove 0 1691
remove 0 1692
remove 0 1693
remove 0 1694
remove 0 1695
remove 0 1696
remove 0 1697
remove 0 1698
remove 0 1699
remove 0 1700
remove 0 1701
remove 0 1702
remove 0 1703
remove 0 1704
remove 0 1705
remove 0 1706
remove 0 1707
remove 0 1708
remove 0 1709
remove 0 1710
remove 0 1711
remove 0 1712
remove 0 1713
remove 0 1714
remove 0 1715
remove 0 1716
remove 0 1717
remove 0 1718
remove 0 1719
remove 0 1720
remove 0 1721
remove 0 1722
remove 0 1723
remove 0 1724
remove 0 1725
remove 0 1726
remove 0 1727
remove 0 1728
remove 0 1729
remove 0 1730
remove 0 1731
remove 0 1732
remove 0 1733
remove 0 1734
remove 0 1735
remove 0 1736
remove 0 1737
remove 0 1738
remove 0 1739
remove 0 1740
remove 0 1741
remove 0 1742
remove 0 1743
remove 0 1744
remove 0 1745
remove 0 1746
remove 0 1747
remove 0 1748
remove 0 1749
remove 0 1750
remove 0 1751
remove 0 1752
remove 0 1753
remove 0 1754
remove 0 1755
remove 0 1756
remove 0 1757
remove 0 1758
remove 0 1759
remove 0 1760
remove 0 1761
remove 0 1762
remove 0 1763
remove 0 1764
remove 0 1765
remove 0 1766
remove 0 1767
remove 0 1768
remove 0 1769
remove 0 1770
remove 0 1771
remove 0 1772
remove 0 1773
remove 0 1774
remove 0 1775
remove 0 1776
remove 0 1777
remove 0 1778
remove 0 1779
remove 0 1780
remove 0 1781
remove 0 1782
remove 0 1783
remove 0 1784
remove 0 1785
remove 0 1786
remove 0 1787
remove 0 1788
remove 0 1789
remove 0 1790
remove 0 1791
remove 0 1792
remove 0 1793
remove 0 1794
remove 0 1795
remove 0 1796
remove 0 1797
remove 0 1798
remove 0 1799
remove 0 1800
remove 0 1801
remove 0 1802
remove 0 1803
remove 0 1804
remove 0 1805
remove 0 1806
remove 0 1807
remove 0 1808
remove 0 1809
remove 0 1810
remove 0 1811
remove 0 1812
remove 0 1813
remove 0 1814
remove 0 1815
remove 0 1816
remove 0 1817
remove 0 1818
remove 0 1819
remove 0 1820
remove 0 1821
remove 0 1822
remove 0 1823
remove 0 1824
remove 0 1825
remove 0 1826
remove 0 1827
remove 0 1828
remove 0 1829
remove 0 1830
remove 0 1831
remove 0 1832
remove 0 1833
remove 0 1834
remove 0 1835
remove 0 1836
remove 0 1837
remove 0 1838
remove 0 1839
remove 0 1840
remove 0 1841
remove 0 1842
remove 0 1843
remove 0 1844
remove 0 1845
remove 0 1846
remove 0 1847
remove 0 1848
remove 0 1849
remove 0 1850
remove 0 1851
remove 0 1852
remove 0 1853
remove 0 1854
remove 0 1855
remove 0 1856
remove 0 1857
remove 0 1858
remove 0 1859
remove 0 1860
remove 0 1861
remove 0 1862
remove 0 1863
remove 0 1864
remove 0 1865
remove 0 1866
remove 0 1867
remove 0 1868
remove 0 1869
remove 0 1870
remove 0 1871
remove 0 1872
remove 0 1873
remove 0 1874
remove 0 1875
remove 0 1876
remove 0 1877
remove 0 1878
remove 0 1879
remove 0 1880
remove 0 1881
remove 0 1882
remove 0 1883
remove 0 1884
remove 0 1885
remove 0 1886
remove 0 1887
remove 0 1888
remove 0 1889
remove 0 1890
remove 0 1891
remove 0 1892
remove 0 1893
remove 0 1894
remove 0 1895
remove 0 1896
remove 0 1897
remove 0 1898
remove 0 1899
remove 0 1900
remove 0 1901
remove 0 1902
remove 0 1903
remove 0 1904
remove 0 1905
remove 0 1906
remove 0 1907
remove 0 1908
remove 0 1909
remove 0 1910
remove 0 1911
remove 0 1912
remove 0 1913
remove 0 1914
remove 0 1915
remove 0 1916
remove 0 1917
remove 0 1918
remove 0 1919
remove 0 1920
remove 0 1921
remove 0 1922
remove 0 1923
remove 0 1924
remove 0 1925
remove 0 1926
remove 0 1927
remove 0 1928
remove 0 1929
remove 0 1930
remove 0 1931
remove 0 1932
remove 0 1933
remove 0 1934
remove 0 1935
remove 0 1936
remove 0 1937
remove 0 1938
remove 0 1939
remove 0 1940
remove 0 1941
remove 0 1942
remove 0 1943
remove 0 1944
remove 0 1945
remove 0 1946
remove 0 1947
remove 0 1948
remove 0 1949
remove 0 1950
remove 0 1951
remove 0 1952
remove 0 1953
remove 0 1954
remove 0 1955
remove 0 1956
remove 0 1957
remove 0 1958
remove 0 1959
remove 0 1960
remove 0 1961
remove 0 1962
remove 0 1963
remove 0 1964
remove 0 1965
remove 0 1966
remove 0 1967
remove 0 1968
remove 0 1969
remove 0 1970
remove 0 1971
remove 0 1972
remove 0 1973
remove 0 1974
remove 0 1975
remove 0 1976
remove 0 1977
remove 0 1978
remove 0 1979
remove 0 1980
remove 0 1981
remove 0 1982
remove 0 1983
remove 0 1984
remove 0 1985
remove 0 1986
remove 0 1987
remove 0 1988
remove 0 1989
remove 0 1990
remove 0 1991
remove 0 1992
remove 0 1993
remove 0 1994
remove 0 1995
remove 0 1996
remove 0 1997
remove 0 1998
remove 0 1999
remove 0 2000
remove 0 2001
remove 0 2002
remove 0 2003
remove 0 2004
remove 0 2005
remove 0 2006
remove 0 2007
remove 0 2008
remove 0 2009
remove 0 2010
remove 0 2011
remove 0 2012
remove 0 2013
remove 0 2014
remove 0 2015
remove 0 2016
remove 0 2017
remove 0 2018
remove 0 2019
remove 0 2020
remove 0 2021
remove 0 2022
remove 0 2023
remove 0 2024
remove 0 2025
remove 0 2026
remove 0 2027
remove 0 2028
remove 0 2029
remove 0 2030
remove 0 2031
remove 0 2032
remove 0 2033
remove 0 2034
remove 0 2035
remove 0 2036
remove 0 2037
remove 0 2038
remove 0 2039
remove 0 2040
remove 0 2041
remove 0 2042
remove 0 2043
remove 0 2044
remove 0 2045
remove 0 2046
remove 0 2047
remove 0 2048
remove 0 2049
remove 0 2050
remove 0 2051
remove 0 2052
remove 0 2053
remove 0 2054
remove 0 2055
remove 0 2056
remove 0 2057
remove 0 2058
remove 0 2059
remove 0 2060
remove 0 2061
remove 0 2062
remove 0 2063
remove 0 2064
remove 0 2065
remove 0 2066
remove 0 2067
remove 0 2068
remove 0 2069
remove 0 2070
remove 0 2071
remove 0 2072
remove 0 2073
remove 0 2074
remove 0 2075
remove 0 2076
remove 0 2077
remove 0 2078
remove 0 2079
remove 0 2080
remove 0 2081
remove 0 2082
remove 0 2083
remove 0 2084
remove 0 2085
remove 0 2086
remove 0 2087
remove 0 2088
remove 0 2089
remove 0 2090
remove 0 2091
remove 0 2092
remove 0 2093
remove 0 2094
remove 0 2095
remove 0 2096
remove 0 2097
remove 0 2098
remove 0 2099
remove 0 2100
remove 0 2101
remove 0 2102
remove 0 2103
remove 0 2104
remove 0 2105
remove 0 2106
remove 0 2107
remove 0 2108
remove 0 2109
remove 0 2110
remove 0 2111
remove 0 2112
remove 0 2113
remove 0 2114
remove 0 2115
remove 0 2116
remove 0 2117
remove 0 2118
remove 0 2119
remove 0 2120
remove 0 2121
remove 0 2122
remove 0 2123
remove 0 2124
remove 0 2125
remove 0 2126
remove 0 2127
remove 0 2128
remove 0 2129
remove 0 2130
remove 0 2131
remove 0 2132
remove 0 2133
remove 0 2134
remove 0 2135
remove 0 2136
remove 0 2137
remove 0 2138
remove 0 2139
remove 0 2140
remove 0 2141
remove 0 2142
remove 0 2143
remove 0 2144
remove 0 2145
remove 0 2146
remove 0 2147
remove 0 2148
remove 0 2149
remove 0 2150
remove 0 2151
remove 0 2152
remove 0 2153
remove 0 2154
remove 0 2155
remove 0 2156
remove 0 2157
remove 0 2158
remove 0 2159
remove 0 2160
remove 0 2161
remove 0 2162
remove 0 2163
remove 0 2164
remove 0 2165
remove 0 2166
remove 0 2167
remove 0 2168
remove 0 2169
remove 0 2170
remove 0 2171
remove 0 2172
remove 0 2173
remove 0 2174
remove 0 2175
remove 0 2176
remove 0 2177
remove 0 2178
remove 0 2179
remove 0 2180
remove 0 2181
remove 0 2182
remove 0 2183
remove 0 2184
remove 0 2185
remove 0 2186
remove 0 2187
remove 0 2188
remove 0 2189
remove 0 2190
remove 0 2191
remove 0 2192
remove 0 2193
remove 0 2194
remove 0 2195
remove 0 2196
remove 0 2197
remove 0 2198
remove 0 2199
remove 0 2200
remove 0 2201
remove 0 2202
remove 0 2203
remove 0 2204
remove 0 2205
remove 0 2206
remove 0 2207
remove 0 2208
remove 0 2209
remove 0 2210
remove 0 2211
remove 0 2212
remove 0 2213
remove 0 2214
remove 0 2215
remove 0 2216
remove 0 2217
remove 0 2218
remove 0 2219
remove 0 2220
remove 0 2221
remove 0 2222
remove 0 2223
remove 0 2224
remove 0 2225
remove 0 2226
remove 0 2227
remove 0 2228
remove 0 2229
remove 0 2230
remove 0 2231
remove 0 2232
remove 0 2233
remove 0 2234
remove 0 2235
remove 0 2236
remove 0 2237
remove 0 2238
remove 0 2239
remove 0 2240
remove 0 2241
remove 0 2242
remove 0 2243
remove 0 2244
remove 0 2245
remove 0 2246
remove 0 2247
remove 0 2248
remove 0 2249
remove 0 2250
remove 0 2251
remove 0 2252
remove 0 2253
remove 0 2254
remove 0 2255
remove 0 2256
remove 0 2257
remove 0 2258
remove 0 2259
remove 0 2260
remove 0 2261
remove 0 2262
remove 0 2263
remove 0 2264
remove 0 2265
remove 0 2266
remove 0 2267
remove 0 2268
remove 0 2269
remove 0 2270
remove 0 2271
remove 0 2272
remove 0 2273
remove 0 2274
remove 0 2275
remove 0 2276
remove 0 2277
remove 0 2278
remove 0 2279
remove 0 2280
remove 0 2281
remove 0 2282
remove 0 2283
remove 0 2284
remove 0 2285
remove 0 2286
remove 0 2287
remove 0 2288
remove 0 2289
remove 0 2290
remove 0 2291
remove 0 2292
remove 0 2293
remove 0 2294
remove 0 2295
remove 0 2296
remove 0 2297
remove 0 2298
remove 0 2299
remove 0 2300
remove 0 2301
remove 0 2302
remove 0 2303
remove 0 2304
remove 0 2305
remove 0 2306
remove 0 2307
remove 0 2308
remove 0 2309
remove 0 2310
remove 0 2311
remove 0 2312
remove 0 2313
remove 0 2314
remove 0 2315
remove 0 2316
remove 0 2317
remove 0 2318
remove 0 2319
remove 0 2320
remove 0 2321
remove 0 2322
remove 0 2323
remove 0 2324
remove 0 2325
remove 0 2326
remove 0 2327
remove 0 2328
remove 0 2329
remove 0 2330
remove 0 2331
remove 0 2332
remove 0 2333
remove 0 2334
remove 0 2335
remove 0 2336
remove 0 2337
remove 0 2338
remove 0 2339
remove 0 2340
remove 0 2341
remove 0 2342
remove 0 2343
remove 0 2344
remove 0 2345
remove 0 2346
remove 0 2347
remove 0 2348
remove 0 2349
remove 0 2350
remove 0 2351
remove 0 2352
remove 0 2353
remove 0 2354
remove 0 2355
remove 0 2356
remove 0 2357
remove 0 2358
remove 0 2359
remove 0 2360
remove 0 2361
remove 0 2362
remove 0 2363
remove 0 2364
remove 0 2365
remove 0 2366
remove 0 2367
remove 0 2368
remove 0 2369
remove 0 2370
remove 0 2371
remove 0 2372
remove 0 2373
remove 0 2374
remove 0 2375
remove 0 2376
remove 0 2377
remove 0 2378
remove 0 2379
remove 0 2380
remove 0 2381
remove 0 2382
remove 0 2383
remove 0 2384
remove 0 2385
remove 0 2386
remove 0 2387
remove 0 2388
remove 0 2389
remove 0 2390
remove 0 2391
remove 0 2392
remove 0 2393
remove 0 2394
remove 0 2395
remove 0 2396
remove 0 2397
remove 0 2398
remove 0 2399
remove 0 2400
remove 0 2401
remove 0 2402
remove 0 2403
remove 0 2404
remove 0 2405
remove 0 2406
remove 0 2407
remove 0 2408
remove 0 2409
remove 0 2410
remove 0 2411
remove 0 2412
remove 0 2413
remove 0 2414
remove 0 2415
remove 0 2416
remove 0 2417
remove 0 2418
remove 0 2419
remove 0 2420
remove 0 2421
remove 0 2422
remove 0 2423
remove 0 2424
remove 0 2425
remove 0 2426
remove 0 2427
remove 0 2428
remove 0 2429
remove 0 2430
remove 0 2431
remove 0 2432
remove 0 2433
remove 0 2434
remove 0 2435
remove 0 2436
remove 0 2437
remove 0 2438
remove 0 2439
remove 0 2440
remove 0 2441
remove 0 2442
remove 0 2443
remove 0 2444
remove 0 2445
remove 0 2446
remove 0 2447
remove 0 2448
remove 0 2449
remove 0 2450
remove 0 2451
remove 0 2452
remove 0 2453
remove 0 2454
remove 0 2455
remove 0 2456
remove 0 2457
remove 0 2458
remove 0 2459
remove 0 2460
remove 0 2461
remove 0 2462
remove 0 2463
remove 0 2464
remove 0 2465
remove 0 2466
remove 0 2467
remove 0 2468
remove 0 2469
remove 0 2470
remove 0 2471
remove 0 2472
remove 0 2473
remove 0 2474
remove 0 2475
remove 0 2476
remove 0 2477
remove 0 2478
remove 0 2479
remove 0 2480
remove 0 2481
remove 0 2482
remove 0 2483
remove 0 2484
remove 0 2485
remove 0 2486
remove 0 2487
remove 0 2488
remove 0 2489
remove 0 2490
remove 0 2491
remove 0 2492
remove 0 2493
remove 0 2494
remove 0 2495
remove 0 2496
remove 0 2497
remove 0 2498
remove 0 2499
remove 0 2500
remove 0 2501
remove 0 2502
remove 0 2503
remove 0 2504
remove 0 2505
remove 0 2506
remove 0 2507
remove 0 2508
remove 0 2509
remove 0 2510
remove 0 2511
remove 0 2512
remove 0 2513
remove 0 2514
remove 0 2515
remove 0 2516
remove 0 2517
remove 0 2518
remove 0 2519
remove 0 2520
remove 0 2521
remove 0 2522
remove 0 2523
remove 0 2524
remove 0 2525
remove 0 2526
remove 0 2527
remove 0 2528
remove 0 2529
remove 0 2530
remove 0 2531
remove 0 2532
remove 0 2533
remove 0 2534
remove 0 2535
remove 0 2536
remove 0 2537
remove 0 2538
remove 0 2539
remove 0 2540
remove 0 2541
remove 0 2542
remove 0 2543
remove 0 2544
remove 0 2545
remove 0 2546
remove 0 2547
remove 0 2548
remove 0 2549
remove 0 2550
remove 0 2551
remove 0 2552
remove 0 2553
remove 0 2554
remove 0 2555
remove 0 2556
remove 0 2557
remove 0 2558
remove 0 2559
remove 0 2560
remove 0 2561
remove 0 2562
remove 0 2563
remove 0 2564
remove 0 2565
remove 0 2566
remove 0 2567
remove 0 2568
remove 0 2569
remove 0 2570
remove 0 2571
remove 0 2572
remove 0 2573
remove 0 2574
remove 0 2575
remove 0 2576
remove 0 2577
remove 0 2578
remove 0 2579
remove 0 2580
remove 0 2581
remove 0 2582
remove 0 2583
remove 0 2584
remove 0 2585
remove 0 2586
remove 0 2587
remove 0 2588
remove 0 2589
remove 0 2590
remove 0 2591
remove 0 2592
remove 0 2593
remove 0 2594
remove 0 2595
remove 0 2596
remove 0 2597
remove 0 2598
remove 0 2599
remove 0 2600
remove 0 2601
remove 0 2602
remove 0 2603
remove 0 2604
remove 0 2605
remove 0 2606
remove 0 2607
remove 0 2608
remove 0 2609
remove 0 2610
remove 0 2611
remove 0 2612
remove 0 2613
remove 0 2614
remove 0 2615
remove 0 2616
remove 0 2617
remove 0 2618
remove 0 2619
remove 0 2620
remove 0 2621
remove 0 2622
remove 0 2623
remove 0 2624
remove 0 2625
remove 0 2626
remove 0 2627
remove 0 2628
remove 0 2629
remove 0 2630
remove 0 2631
remove 0 2632
remove 0 2633
remove 0 2634
remove 0 2635
remove 0 2636
remove 0 2637
remove 0 2638
remove 0 2639
remove 0 2640
remove 0 2641
remove 0 2642
remove 0 2643
remove 0 2644
remove 0 2645
remove 0 2646
remove 0 2647
remove 0 2648
remove 0 2649
remove 0 2650
remove 0 2651
remove 0 2652
remove 0 2653
remove 0 2654
remove 0 2655
remove 0 2656
remove 0 2657
remove 0 2658
remove 0 2659
remove 0 2660
remove 0 2661
remove 0 2662
remove 0 2663
remove 0 2664
remove 0 2665
remove 0 2666
remove 0 2667
remove 0 2668
remove 0 2669
remove 0 2670
remove 0 2671
remove 0 2672
remove 0 2673
remove 0 2674
remove 0 2675
remove 0 2676
remove 0 2677
remove 0 2678
remove 0 2679
remove 0 2680
remove 0 2681
remove 0 2682
remove 0 2683
remove 0 2684
remove 0 2685
remove 0 2686
remove 0 2687
remove 0 2688
remove 0 2689
remove 0 2690
remove 0 2691
remove 0 2692
remove 0 2693
remove 0 2694
remove 0 2695
remove 0 2696
remove 0 2697
remove 0 2698
remove 0 2699
remove 0 2700
remove 0 2701
remove 0 2702
remove 0 2703
remove 0 2704
remove 0 2705
remove 0 2706
remove 0 2707
remove 0 2708
remove 0 2709
remove 0 2710
remove 0 2711
remove 0 2712
remove 0 2713
remove 0 2714
remove 0 2715
remove 0 2716
remove 0 2717
remove 0 2718
remove 0 2719
remove 0 2720
remove 0 2721
remove 0 2722
remove 0 2723
remove 0 2724
remove 0 2725
remove 0 2726
remove 0 2727
remove 0 2728
remove 0 2729
remove 0 2730
remove 0 2731
remove 0 2732
remove 0 2733
remove 0 2734
remove 0 2735
remove 0 2736
remove 0 2737
remove 0 2738
remove 0 2739
remove 0 2740
remove 0 2741
remove 0 2742
remove 0 2743
remove 0 2744
remove 0 2745
remove 0 2746
remove 0 2747
remove 0 2748
remove 0 2749
remove 0 2750
remove 0 2751
remove 0 2752
remove 0 2753
remove 0 2754
remove 0 2755
remove 0 2756
remove 0 2757
remove 0 2758
remove 0 2759
remove 0 2760
remove 0 2761
remove 0 2762
remove 0 2763
remove 0 2764
remove 0 2765
remove 0 2766
remove 0 2767
remove 0 2768
remove 0 2769
remove 0 2770
remove 0 2771
remove 0 2772
remove 0 2773
remove 0 2774
remove 0 2775
remove 0 2776
remove 0 2777
remove 0 2778
remove 0 2779
remove 0 2780
remove 0 2781
remove 0 2782
remove 0 2783
remove 0 2784
remove 0 2785
remove 0 2786
remove 0 2787
remove 0 2788
remove 0 2789
remove 0 2790
remove 0 2791
remove 0 2792
remove 0 2793
remove 0 2794
remove 0 2795
remove 0 2796
remove 0 2797
remove 0 2798
remove 0 2799
remove 0 2800
remove 0 2801
remove 0 2802
remove 0 2803
remove 0 2804
remove 0 2805
remove 0 2806
remove 0 2807
remove 0 2808
remove 0 2809
remove 0 2810
remove 0 2811
remove 0 2812
remove 0 2813
remove 0 2814
remove 0 2815
remove 0 2816
remove 0 2817
remove 0 2818
remove 0 2819
remove 0 2820
remove 0 2821
remove 0 2822
remove 0 2823
remove 0 2824
remove 0 2825
remove 0 2826
remove 0 2827
remove 0 2828
remove 0 2829
remove 0 2830
remove 0 2831
remove 0 2832
remove 0 2833
remove 0 2834
remove 0 2835
remove 0 2836
remove 0 2837
remove 0 2838
remove 0 2839
remove 0 2840
remove 0 2841
remove 0 2842
remove 0 2843
remove 0 2844
remove 0 2845
remove 0 2846
remove 0 2847
remove 0 2848
remove 0 2849
remove 0 2850
remove 0 2851
remove 0 2852
remove 0 2853
remove 0 2854
remove 0 2855
remove 0 2856
remove 0 2857
remove 0 2858
remove 0 2859
remove 0 2860
remove 0 2861
remove 0 2862
remove 0 2863
remove 0 2864
remove 0 2865
remove 0 2866
remove 0 2867
remove 0 2868
remove 0 2869
remove 0 2870
remove 0 2871
remove 0 2872
remove 0 2873
remove 0 2874
remove 0 2875
remove 0 2876
remove 0 2877
remove 0 2878
remove 0 2879
remove 0 2880
remove 0 2881
remove 0 2882
remove 0 2883
remove 0 2884
remove 0 2885
remove 0 2886
remove 0 2887
remove 0 2888
remove 0 2889
remove 0 2890
remove 0 2891
remove 0 2892
remove 0 2893
remove 0 2894
remove 0 2895
remove 0 2896
remove 0 2897
remove 0 2898
remove 0 2899
remove 0 2900
remove 0 2901
remove 0 2902
remove 0 2903
remove 0 2904
remove 0 2905
remove 0 2906
remove 0 2907
remove 0 2908
remove 0 2909
remove 0 2910
remove 0 2911
remove 0 2912
remove 0 2913
remove 0 2914
remove 0 2915
remove 0 2916
remove 0 2917
remove 0 2918
remove 0 2919
remove 0 2920
remove 0 2921
remove 0 2922
remove 0 2923
remove 0 2924
remove 0 2925
remove 0 2926
remove 0 2927
remove 0 2928
remove 0 2929
remove 0 2930
remove 0 2931
remove 0 2932
remove 0 2933
remove 0 2934
remove 0 2935
remove 0 2936
remove 0 2937
remove 0 2938
remove 0 2939
remove 0 2940
remove 0 2941
remove 0 2942
remove 0 2943
remove 0 2944
remove 0 2945
remove 0 2946
remove 0 2947
remove 0 2948
remove 0 2949
remove 0 2950
remove 0 2951
remove 0 2952
remove 0 2953
remove 0 2954
remove 0 2955
remove 0 2956
remove 0 2957
remove 0 2958
remove 0 2959
remove 0 2960
remove 0 2961
remove 0 2962
remove 0 2963
remove 0 2964
remove 0 2965
remove 0 2966
remove 0 2967
remove 0 2968
remove 0 2969
remove 0 2970
remove 0 2971
remove 0 2972
remove 0 2973
remove 0 2974
remove 0 2975
remove 0 2976
remove 0 2977
remove 0 2978
remove 0 2979
remove 0 2980
remove 0 2981
remove 0 2982
remove 0 2983
remove 0 2984
remove 0 2985
remove 0 2986
remove 0 2987
remove 0 2988
remove 0 2989
remove 0 2990
remove 0 2991
remove 0 2992
remove 0 2993
remove 0 2994
remove 0 2995
remove 0 2996
remove 0 2997
remove 0 2998
remove 0 2999
remove 0 3000
remove 0 3001
remove 0 3002
remove 0 3003
remove 0 3004
remove 0 3005
remove 0 3006
remove 0 3007
remove 0 3008
remove 0 3009
remove 0 3010
remove 0 3011
remove 0 3012
remove 0 3013
remove 0 3014
remove 0 3015
remove 0 3016
remove 0 3017
remove 0 3018
remove 0 3019
remove 0 3020
remove 0 3021
remove 0 3022
remove 0 3023
remove 0 3024
remove 0 3025
remove 0 3026
remove 0 3027
remove 0 3028
remove 0 3029
remove 0 3030
remove 0 3031
remove 0 3032
remove 0 3033
remove 0 3034
remove 0 3035
remove 0 3036
remove 0 3037
remove 0 3038
remove 0 3039
remove 0 3040
remove 0 3041
remove 0 3042
remove 0 3043
remove 0 3044
remove 0 3045
remove 0 3046
remove 0 3047
remove 0 3048
remove 0 3049
remove 0 3050
remove 0 3051
remove 0 3052
remove 0 3053
remove 0 3054
remove 0 3055
remove 0 3056
remove 0 3057
remove 0 3058
remove 0 3059
remove 0 3060
remove 0 3061
remove 0 3062
remove 0 3063
remove 0 3064
remove 0 3065
remove 0 3066
remove 0 3067
remove 0 3068
remove 0 3069
remove 0 3070
remove 0 3071
remove 0 3072
remove 0 3073
remove 0 3074
remove 0 3075
remove 0 3076
remove 0 3077
remove 0 3078
remove 0 3079
remove 0 3080
remove 0 3081
remove 0 3082
remove 0 3083
remove 0 3084
remove 0 3085
remove 0 3086
remove 0 3087
remove 0 3088
remove 0 3089
remove 0 3090
remove 0 3091
remove 0 3092
remove 0 3093
remove 0 3094
remove 0 3095
remove 0 3096
remove 0 3097
remove 0 3098
remove 0 3099
remove 0 3100
remove 0 3101
remove 0 3102
remove 0 3103
remove 0 3104
remove 0 3105
remove 0 3106
remove 0 3107
remove 0 3108
remove 0 3109
remove 0 3110
remove 0 3111
remove 0 3112
remove 0 3113
remove 0 3114
remove 0 3115
remove 0 3116
remove 0 3117
remove 0 3118
remove 0 3119
remove 0 3120
remove 0 3121
remove 0 3122
remove 0 3123
remove 0 3124
remove 0 3125
remove 0 3126
remove 0 3127
remove 0 3128
remove 0 3129
remove 0 3130
remove 0 3131
remove 0 3132
remove 0 3133
remove 0 3134
remove 0 3135
remove 0 3136
remove 0 3137
remove 0 3138
remove 0 3139
remove 0 3140
remove 0 3141
remove 0 3142
remove 0 3143
remove 0 3144
remove 0 3145
remove 0 3146
remove 0 3147
remove 0 3148
remove 0 3149
remove 0 3150
remove 0 3151
remove 0 3152
remove 0 3153
remove 0 3154
remove 0 3155
remove 0 3156
remove 0 3157
remove 0 3158
remove 0 3159
remove 0 3160
remove 0 3161
remove 0 3162
remove 0 3163
remove 0 3164
remove 0 3165
remove 0 3166
remove 0 3167
remove 0 3168
remove 0 3169
remove 0 3170
remove 0 3171
remove 0 3172
remove 0 3173
remove 0 3174
remove 0 3175
remove 0 3176
remove 0 3177
remove 0 3178
remove 0 3179
remove 0 3180
remove 0 3181
remove 0 3182
remove 0 3183
remove 0 3184
remove 0 3185
remove 0 3186
remove 0 3187
remove 0 3188
remove 0 3189
remove 0 3190
remove 0 3191
remove 0 3192
remove 0 3193
remove 0 3194
remove 0 3195
remove 0 3196
remove 0 3197
remove 0 3198
remove 0 3199
remove 0 3200
remove 0 3201
remove 0 3202
remove 0 3203
remove 0 3204
remove 0 3205
remove 0 3206
remove 0 3207
remove 0 3208
remove 0 3209
remove 0 3210
remove 0 3211
remove 0 3212
remove 0 3213
remove 0 3214
remove 0 3215
remove 0 3216
remove 0 3217
remove 0 3218
remove 0 3219
remove 0 3220
remove 0 3221
remove 0 3222
remove 0 3223
remove 0 3224
remove 0 3225
remove 0 3226
remove 0 3227
remove 0 3228
remove 0 3229
remove 0 3230
remove 0 3231
remove 0 3232
remove 0 3233
remove 0 3234
remove 0 3235
remove 0 3236
remove 0 3237
remove 0 3238
remove 0 3239
remove 0 3240
remove 0 3241
remove 0 3242
remove 0 3243
remove 0 3244
remove 0 3245
remove 0 3246
remove 0 3247
remove 0 3248
remove 0 3249
remove 0 3250
remove 0 3251
remove 0 3252
remove 0 3253
remove 0 3254
remove 0 3255
remove 0 3256
remove 0 3257
remove 0 3258
remove 0 3259
remove 0 3260
remove 0 3261
remove 0 3262
remove 0 3263
remove 0 3264
remove 0 3265
remove 0 3266
remove 0 3267
remove 0 3268
remove 0 3269
remove 0 3270
remove 0 3271
remove 0 3272
remove 0 3273
remove 0 3274
remove 0 3275
remove 0 3276
remove 0 3277
remove 0 3278
remove 0 3279
remove 0 3280
remove 0 3281
remove 0 3282
remove 0 3283
remove 0 3284
remove 0 3285
remove 0 3286
remove 0 3287
remove 0 3288
remove 0 3289
remove 0 3290
remove 0 3291
remove 0 3292
remove 0 3293
remove 0 3294
remove 0 3295
remove 0 3296
remove 0 3297
remove 0 3298
remove 0 3299
remove 0 3300
remove 0 3301
remove 0 3302
remove 0 3303
remove 0 3304
remove 0 3305
remove 0 3306
remove 0 3307
remove 0 3308
remove 0 3309
remove 0 3310
remove 0 3311
remove 0 3312
remove 0 3313
remove 0 3314
remove 0 3315
remove 0 3316
remove 0 3317
remove 0 3318
remove 0 3319
remove 0 3320
remove 0 3321
remove 0 3322
remove 0 3323
remove 0 3324
remove 0 3325
remove 0 3326
remove 0 3327
remove 0 3328
remove 0 3329
remove 0 3330
remove 0 3331
remove 0 3332
remove 0 3333
remove 0 3334
remove 0 3335
remove 0 3336
remove 0 3337
remove 0 3338
remove 0 3339
remove 0 3340
remove 0 3341
remove 0 3342
remove 0 3343
remove 0 3344
remove 0 3345
remove 0 3346
remove 0 3347
remove 0 3348
remove 0 3349
remove 0 3350
remove 0 3351
remove 0 3352
remove 0 3353
remove 0 3354
remove 0 3355
remove 0 3356
remove 0 3357
remove 0 3358
remove 0 3359
remove 0 3360
remove 0 3361
remove 0 3362
remove 0 3363
remove 0 3364
remove 0 3365
remove 0 3366
remove 0 3367
remove 0 3368
remove 0 3369
remove 0 3370
remove 0 3371
remove 0 3372
remove 0 3373
remove 0 3374
remove 0 3375
remove 0 3376
remove 0 3377
remove 0 3378
remove 0 3379
remove 0 3380
remove 0 3381
remove 0 3382
remove 0 3383
remove 0 3384
remove 0 3385
remove 0 3386
remove 0 3387
remove 0 3388
remove 0 3389
remove 0 3390
remove 0 3391
remove 0 3392
remove 0 3393
remove 0 3394
remove 0 3395
remove 0 3396
remove 0 3397
remove 0 3398
remove 0 3399
remove 0 3400
remove 0 3401
remove 0 3402
remove 0 3403
remove 0 3404
remove 0 3405
remove 0 3406
remove 0 3407
remove 0 3408
remove 0 3409
remove 0 3410
remove 0 3411
remove 0 3412
remove 0 3413
remove 0 3414
remove 0 3415
remove 0 3416
remove 0 3417
remove 0 3418
remove 0 3419
remove 0 3420
remove 0 3421
remove 0 3422
remove 0 3423
remove 0 3424
remove 0 3425
remove 0 3426
remove 0 3427
remove 0 3428
remove 0 3429
remove 0 3430
remove 0 3431
remove 0 3432
remove 0 3433
remove 0 3434
remove 0 3435
remove 0 3436
remove 0 3437
remove 0 3438
remove 0 3439
remove 0 3440
remove 0 3441
remove 0 3442
remove 0 3443
remove 0 3444
remove 0 3445
remove 0 3446
remove 0 3447
remove 0 3448
remove 0 3449
remove 0 3450
remove 0 3451
remove 0 3452
remove 0 3453
remove 0 3454
remove 0 3455
remove 0 3456
remove 0 3457
remove 0 3458
remove 0 3459
remove 0 3460
remove 0 3461
remove 0 3462
remove 0 3463
remove 0 3464
remove 0 3465
remove 0 3466
remove 0 3467
remove 0 3468
remove 0 3469
remove 0 3470
remove 0 3471
remove 0 3472
remove 0 3473
remove 0 3474
remove 0 3475
remove 0 3476
remove 0 3477
remove 0 3478
remove 0 3479
remove 0 3480
remove 0 3481
remove 0 3482
remove 0 3483
remove 0 3484
remove 0 3485
remove 0 3486
remove 0 3487
remove 0 3488
remove 0 3489
remove 0 3490
remove 0 3491
remove 0 3492
remove 0 3493
remove 0 3494
remove 0 3495
remove 0 3496
remove 0 3497
remove 0 3498
remove 0 3499
remove 0 3500
remove 0 3501
remove 0 3502
remove 0 3503
remove 0 3504
remove 0 3505
remove 0 3506
remove 0 3507
remove 0 3508
remove 0 3509
remove 0 3510
remove 0 3511
remove 0 3512
remove 0 3513
remove 0 3514
remove 0 3515
remove 0 3516
remove 0 3517
remove 0 3518
remove 0 3519
remove 0 3520
remove 0 3521
remove 0 3522
remove 0 3523
remove 0 3524
remove 0 3525
remove 0 3526
remove 0 3527
remove 0 3528
remove 0 3529
remove 0 3530
remove 0 3531
remove 0 3532
remove 0 3533
remove 0 3534
remove 0 3535
remove 0 3536
remove 0 3537
remove 0 3538
remove 0 3539
remove 0 3540
remove 0 3541
remove 0 3542
remove 0 3543
remove 0 3544
remove 0 3545
remove 0 3546
remove 0 3547
remove 0 3548
remove 0 3549
remove 0 3550
remove 0 3551
remove 0 3552
remove 0 3553
remove 0 3554
remove 0 3555
remove 0 3556
remove 0 3557
remove 0 3558
remove 0 3559
remove 0 3560
remove 0 3561
remove 0 3562
remove 0 3563
remove 0 3564
remove 0 3565
remove 0 3566
remove 0 3567
remove 0 3568
remove 0 3569
remove 0 3570
remove 0 3571
remove 0 3572
remove 0 3573
remove 0 3574
remove 0 3575
remove 0 3576
remove 0 3577
remove 0 3578
remove 0 3579
remove 0 3580
remove 0 3581
remove 0 3582
remove 0 3583
remove 0 3584
remove 0 3585
remove 0 3586
remove 0 3587
remove 0 3588
remove 0 3589
remove 0 3590
remove 0 3591
remove 0 3592
remove 0 3593
remove 0 3594
remove 0 3595
remove 0 3596
remove 0 3597
remove 0 3598
remove 0 3599
remove 0 3600
remove 0 3601
remove 0 3602
remove 0 3603
remove 0 3604
remove 0 3605
remove 0 3606
remove 0 3607
remove 0 3608
remove 0 3609
remove 0 3610
remove 0 3611
remove 0 3612
remove 0 3613
remove 0 3614
remove 0 3615
remove 0 3616
remove 0 3617
remove 0 3618
remove 0 3619
remove 0 3620
remove 0 3621
remove 0 3622
remove 0 3623
remove 0 3624
remove 0 3625
remove 0 3626
remove 0 3627
remove 0 3628
remove 0 3629
remove 0 3630
remove 0 3631
remove 0 3632
remove 0 3633
remove 0 3634
remove 0 3635
remove 0 3636
remove 0 3637
remove 0 3638
remove 0 3639
remove 0 3640
remove 0 3641
remove 0 3642
remove 0 3643
remove 0 3644
remove 0 3645
remove 0 3646
remove 0 3647
remove 0 3648
remove 0 3649
remove 0 3650
remove 0 3651
remove 0 3652
remove 0 3653
remove 0 3654
remove 0 3655
remove 0 3656
remove 0 3657
remove 0 3658
remove 0 3659
remove 0 3660
remove 0 3661
remove 0 3662
remove 0 3663
remove 0 3664
remove 0 3665
remove 0 3666
remove 0 3667
remove 0 3668
remove 0 3669
remove 0 3670
remove 0 3671
remove 0 3672
remove 0 3673
remove 0 3674
remove 0 3675
remove 0 3676
remove 0 3677
remove 0 3678
remove 0 3679
remove 0 3680
remove 0 3681
remove 0 3682
remove 0 3683
remove 0 3684
remove 0 3685
remove 0 3686
remove 0 3687
remove 0 3688
remove 0 3689
remove 0 3690
remove 0 3691
remove 0 3692
remove 0 3693
remove 0 3694
remove 0 3695
remove 0 3696
remove 0 3697
remove 0 3698
remove 0 3699
remove 0 3700
remove 0 3701
remove 0 3702
remove 0 3703
remove 0 3704
remove 0 3705
remove 0 3706
remove 0 3707
remove 0 3708
remove 0 3709
remove 0 3710
remove 0 3711
remove 0 3712
remove 0 3713
remove 0 3714
remove 0 3715
remove 0 3716
remove 0 3717
remove 0 3718
remove 0 3719
remove 0 3720
remove 0 3721
remove 0 3722
remove 0 3723
remove 0 3724
remove 0 3725
remove 0 3726
remove 0 3727
remove 0 3728
remove 0 3729
remove 0 3730
remove 0 3731
remove 0 3732
remove 0 3733
remove 0 3734
remove 0 3735
remove 0 3736
remove 0 3737
remove 0 3738
remove 0 3739
remove 0 3740
remove 0 3741
remove 0 3742
remove 0 3743
remove 0 3744
remove 0 3745
remove 0 3746
remove 0 3747
remove 0 3748
remove 0 3749
remove 0 3750
remove 0 3751
remove 0 3752
remove 0 3753
remove 0 3754
remove 0 3755
remove 0 3756
remove 0 3757
remove 0 3758
remove 0 3759
remove 0 3760
remove 0 3761
remove 0 3762
remove 0 3763
remove 0 3764
remove 0 3765
remove 0 3766
remove 0 3767
remove 0 3768
remove 0 3769
remove 0 3770
remove 0 3771
remove 0 3772
remove 0 3773
remove 0 3774
remove 0 3775
remove 0 3776
remove 0 3777
remove 0 3778
remove 0 3779
remove 0 3780
remove 0 3781
remove 0 3782
remove 0 3783
remove 0 3784
remove 0 3785
remove 0 3786
remove 0 3787
remove 0 3788
remove 0 3789
remove 0 3790
remove 0 3791
remove 0 3792
remove 0 3793
remove 0 3794
remove 0 3795
remove 0 3796
remove 0 3797
remove 0 3798
remove 0 3799
remove 0 3800
remove 0 3801
remove 0 3802
remove 0 3803
remove 0 3804
remove 0 3805
remove 0 3806
remove 0 3807
remove 0 3808
remove 0 3809
remove 0 3810
remove 0 3811
remove 0 3812
remove 0 3813
remove 0 3814
remove 0 3815
remove 0 3816
remove 0 3817
remove 0 3818
remove 0 3819
remove 0 3820
remove 0 3821
remove 0 3822
remove 0 3823
remove 0 3824
remove 0 3825
remove 0 3826
remove 0 3827
remove 0 3828
remove 0 3829
remove 0 3830
remove 0 3831
remove 0 3832
remove 0 3833
remove 0 3834
remove 0 3835
remove 0 3836
remove 0 3837
remove 0 3838
remove 0 3839
remove 0 3840
remove 0 3841
remove 0 3842
remove 0 3843
remove 0 3844
remove 0 3845
remove 0 3846
remove 0 3847
remove 0 3848
remove 0 3849
remove 0 3850
remove 0 3851
remove 0 3852
remove 0 3853
remove 0 3854
remove 0 3855
remove 0 3856
remove 0 3857
remove 0 3858
remove 0 3859
remove 0 3860
remove 0 3861
remove 0 3862
remove 0 3863
remove 0 3864
remove 0 3865
remove 0 3866
remove 0 3867
remove 0 3868
remove 0 3869
remove 0 3870
remove 0 3871
remove 0 3872
remove 0 3873
remove 0 3874
remove 0 3875
remove 0 3876
remove 0 3877
remove 0 3878
remove 0 3879
remove 0 3880
remove 0 3881
remove 0 3882
remove 0 3883
remove 0 3884
remove 0 3885
remove 0 3886
remove 0 3887
remove 0 3888
remove 0 3889
remove 0 3890
remove 0 3891
remove 0 3892
remove 0 3893
remove 0 3894
remove 0 3895
remove 0 3896
remove 0 3897
remove 0 3898
remove 0 3899
remove 0 3900
remove 0 3901
remove 0 3902
remove 0 3903
remove 0 3904
remove 0 3905
remove 0 3906
remove 0 3907
remove 0 3908
remove 0 3909
remove 0 3910
remove 0 3911
remove 0 3912
remove 0 3913
remove 0 3914
remove 0 3915
remove 0 3916
remove 0 3917
remove 0 3918
remove 0 3919
remove 0 3920
remove 0 3921
remove 0 3922
remove 0 3923
remove 0 3924
remove 0 3925
remove 0 3926
remove 0 3927
remove 0 3928
remove 0 3929
remove 0 3930
remove 0 3931
remove 0 3932
remove 0 3933
remove 0 3934
remove 0 3935
remove 0 3936
remove 0 3937
remove 0 3938
remove 0 3939
remove 0 3940
remove 0 3941
remove 0 3942
remove 0 3943
remove 0 3944
remove 0 3945
remove 0 3946
remove 0 3947
remove 0 3948
remove 0 3949
remove 0 3950
remove 0 3951
remove 0 3952
remove 0 3953
remove 0 3954
remove 0 3955
remove 0 3956
remove 0 3957
remove 0 3958
remove 0 3959
remove 0 3960
remove 0 3961
remove 0 3962
remove 0 3963
remove 0 3964
remove 0 3965
remove 0 3966
remove 0 3967
remove 0 3968
remove 0 3969
remove 0 3970
remove 0 3971
remove 0 3972
remove 0 3973
remove 0 3974
remove 0 3975
remove 0 3976
remove 0 3977
remove 0 3978
remove 0 3979
remove 0 3980
remove 0 3981
remove 0 3982
remove 0 3983
remove 0 3984
remove 0 3985
remove 0 3986
remove 0 3987
remove 0 3988
remove 0 3989
remove 0 3990
remove 0 3991
remove 0 3992
remove 0 3993
remove 0 3994
remove 0 3995
remove 0 3996
remove 0 3997
remove 0 3998
remove 0 3999
remove 0 4000
remove 0 4001
remove 0 4002
remove 0 4003
remove 0 4004
remove 0 4005
remove 0 4006
remove 0 4007
remove 0 4008
remove 0 4009
remove 0 4010
remove 0 4011
remove 0 4012
remove 0 4013
remove 0 4014
remove 0 4015
remove 0 4016
remove 0 4017
remove 0 4018
remove 0 4019
remove 0 4020
remove 0 4021
remove 0 4022
remove 0 4023
remove 0 4024
remove 0 4025
remove 0 4026
remove 0 4027
remove 0 4028
remove 0 4029
remove 0 4030
remove 0 4031
remove 0 4032
remove 0 4033
remove 0 4034
remove 0 4035
remove 0 4036
remove 0 4037
remove 0 4038
remove 0 4039
remove 0 4040
remove 0 4041
remove 0 4042
remove 0 4043
remove 0 4044
remove 0 4045
remove 0 4046
remove 0 4047
remove 0 4048
remove 0 4049
remove 0 4050
remove 0 4051
remove 0 4052
remove 0 4053
remove 0 4054
remove 0 4055
remove 0 4056
remove 0 4057
remove 0 4058
remove 0 4059
remove 0 4060
remove 0 4061
remove 0 4062
remove 0 4063
remove 0 4064
remove 0 4065
remove 0 4066
remove 0 4067
remove 0 4068
remove 0 4069
remove 0 4070
remove 0 4071
remove 0 4072
remove 0 4073
remove 0 4074
remove 0 4075
remove 0 4076
remove 0 4077
remove 0 4078
remove 0 4079
remove 0 4080
remove 0 4081
remove 0 4082
remove 0 4083
remove 0 4084
remove 0 4085
remove 0 4086
remove 0 4087
remove 0 4088
remove 0 4089
remove 0 4090
remove 0 4091
remove 0 4092
remove 0 4093
remove 0 4094
remove 0 4095
remove 0 4096
remove 0 4097
remove 0 4098
remove 0 4099
remove 0 4100
remove 0 4101
remove 0 4102
remove 0 4103
remove 0 4104
remove 0 4105
remove 0 4106
remove 0 4107
remove 0 4108
remove 0 4109
remove 0 4110
remove 0 4111
remove 0 4112
remove 0 4113
remove 0 4114
remove 0 4115
remove 0 4116
remove 0 4117
remove 0 4118
remove 0 4119
remove 0 4120
remove 0 4121
remove 0 4122
remove 0 4123
remove 0 4124
remove 0 4125
remove 0 4126
remove 0 4127
remove 0 4128
remove 0 4129
remove 0 4130
remove 0 4131
remove 0 4132
remove 0 4133
remove 0 4134
remove 0 4135
remove 0 4136
remove 0 4137
remove 0 4138
remove 0 4139
remove 0 4140
remove 0 4141
remove 0 4142
remove 0 4143
remove 0 4144
remove 0 4145
remove 0 4146
remove 0 4147
remove 0 4148
remove 0 4149
remove 0 4150
remove 0 4151
remove 0 4152
remove 0 4153
remove 0 4154
remove 0 4155
remove 0 4156
remove 0 4157
remove 0 4158
remove 0 4159
remove 0 4160
remove 0 4161
remove 0 4162
remove 0 4163
remove 0 4164
remove 0 4165
remove 0 4166
remove 0 4167
remove 0 4168
remove 0 4169
remove 0 4170
remove 0 4171
remove 0 4172
remove 0 4173
remove 0 4174
remove 0 4175
remove 0 4176
remove 0 4177
remove 0 4178
remove 0 4179
remove 0 4180
remove 0 4181
remove 0 4182
remove 0 4183
remove 0 4184
remove 0 4185
remove 0 4186
remove 0 4187
remove 0 4188
remove 0 4189
remove 0 4190
remove 0 4191
remove 0 4192
remove 0 4193
remove 0 4194
remove 0 4195
remove 0 4196
remove 0 4197
remove 0 4198
remove 0 4199
remove 0 4200
remove 0 4201
remove 0 4202
remove 0 4203
remove 0 4204
remove 0 4205
remove 0 4206
remove 0 4207
remove 0 4208
remove 0 4209
remove 0 4210
remove 0 4211
remove 0 4212
remove 0 4213
remove 0 4214
remove 0 4215
remove 0 4216
remove 0 4217
remove 0 4218
remove 0 4219
remove 0 4220
remove 0 4221
remove 0 4222
remove 0 4223
remove 0 4224
remove 0 4225
remove 0 4226
remove 0 4227
remove 0 4228
remove 0 4229
remove 0 4230
remove 0 4231
remove 0 4232
remove 0 4233
remove 0 4234
remove 0 4235
remove 0 4236
remove 0 4237
remove 0 4238
remove 0 4239
remove 0 4240
remove 0 4241
remove 0 4242
remove 0 4243
remove 0 4244
remove 0 4245
remove 0 4246
remove 0 4247
remove 0 4248
remove 0 4249
remove 0 4250
remove 0 4251
remove 0 4252
remove 0 4253
remove 0 4254
remove 0 4255
remove 0 4256
remove 0 4257
remove 0 4258
remove 0 4259
remove 0 4260
remove 0 4261
remove 0 4262
remove 0 4263
remove 0 4264
remove 0 4265
remove 0 4266
remove 0 4267
remove 0 4268
remove 0 4269
remove 0 4270
remove 0 4271
remove 0 4272
remove 0 4273
remove 0 4274
remove 0 4275
remove 0 4276
remove 0 4277
remove 0 4278
remove 0 4279
remove 0 4280
remove 0 4281
remove 0 4282
remove 0 4283
remove 0 4284
remove 0 4285
remove 0 4286
remove 0 4287
remove 0 4288
remove 0 4289
remove 0 4290
remove 0 4291
remove 0 4292
remove 0 4293
remove 0 4294
remove 0 4295
remove 0 4296
remove 0 4297
remove 0 4298
remove 0 4299
remove 0 4300
remove 0 4301
remove 0 4302
remove 0 4303
remove 0 4304
remove 0 4305
remove 0 4306
remove 0 4307
remove 0 4308
remove 0 4309
remove 0 4310
remove 0 4311
remove 0 4312
remove 0 4313
remove 0 4314
remove 0 4315
remove 0 4316
remove 0 4317
remove 0 4318
remove 0 4319
remove 0 4320
remove 0 4321
remove 0 4322
remove 0 4323
remove 0 4324
remove 0 4325
remove 0 4326
remove 0 4327
remove 0 4328
remove 0 4329
remove 0 4330
remove 0 4331
remove 0 4332
remove 0 4333
remove 0 4334
remove 0 4335
remove 0 4336
remove 0 4337
remove 0 4338
remove 0 4339
remove 0 4340
remove 0 4341
remove 0 4342
remove 0 4343
remove 0 4344
remove 0 4345
remove 0 4346
remove 0 4347
remove 0 4348
remove 0 4349
remove 0 4350
remove 0 4351
remove 0 4352
remove 0 4353
remove 0 4354
remove 0 4355
remove 0 4356
remove 0 4357
remove 0 4358
remove 0 4359
remove 0 4360
remove 0 4361
remove 0 4362
remove 0 4363
remove 0 4364
remove 0 4365
remove 0 4366
remove 0 4367
remove 0 4368
remove 0 4369
remove 0 4370
remove 0 4371
remove 0 4372
remove 0 4373
remove 0 4374
remove 0 4375
remove 0 4376
remove 0 4377
remove 0 4378
remove 0 4379
remove 0 4380
remove 0 4381
remove 0 4382
remove 0 4383
remove 0 4384
remove 0 4385
remove 0 4386
remove 0 4387
remove 0 4388
remove 0 4389
remove 0 4390
remove 0 4391
remove 0 4392
remove 0 4393
remove 0 4394
remove 0 4395
remove 0 4396
remove 0 4397
remove 0 4398
remove 0 4399
remove 0 4400
remove 0 4401
remove 0 4402
remove 0 4403
remove 0 4404
remove 0 4405
remove 0 4406
remove 0 4407
remove 0 4408
remove 0 4409
remove 0 4410
remove 0 4411
remove 0 4412
remove 0 4413
remove 0 4414
remove 0 4415
remove 0 4416
remove 0 4417
remove 0 4418
remove 0 4419
remove 0 4420
remove 0 4421
remove 0 4422
remove 0 4423
remove 0 4424
remove 0 4425
remove 0 4426
remove 0 4427
remove 0 4428
remove 0 4429
remove 0 4430
remove 0 4431
remove 0 4432
remove 0 4433
remove 0 4434
remove 0 4435
remove 0 4436
remove 0 4437
remove 0 4438
remove 0 4439
remove 0 4440
remove 0 4441
remove 0 4442
remove 0 4443
remove 0 4444
remove 0 4445
remove 0 4446
remove 0 4447
remove 0 4448
remove 0 4449
remove 0 4450
remove 0 4451
remove 0 4452
remove 0 4453
remove 0 4454
remove 0 4455
remove 0 4456
remove 0 4457
remove 0 4458
remove 0 4459
remove 0 4460
remove 0 4461
remove 0 4462
remove 0 4463
remove 0 4464
remove 0 4465
remove 0 4466
remove 0 4467
remove 0 4468
remove 0 4469
remove 0 4470
remove 0 4471
remove 0 4472
remove 0 4473
remove 0 4474
remove 0 4475
remove 0 4476
remove 0 4477
remove 0 4478
remove 0 4479
remove 0 4480
remove 0 4481
remove 0 4482
remove 0 4483
remove 0 4484
remove 0 4485
remove 0 4486
remove 0 4487
remove 0 4488
remove 0 4489
remove 0 4490
remove 0 4491
remove 0 4492
remove 0 4493
remove 0 4494
remove 0 4495
remove 0 4496
remove 0 4497
remove 0 4498
remove 0 4499
remove 0 4500
remove 0 4501
remove 0 4502
remove 0 4503
remove 0 4504
remove 0 4505
remove 0 4506
remove 0 4507
remove 0 4508
remove 0 4509
remove 0 4510
remove 0 4511
remove 0 4512
remove 0 4513
remove 0 4514
remove 0 4515
remove 0 4516
remove 0 4517
remove 0 4518
remove 0 4519
remove 0 4520
remove 0 4521
remove 0 4522
remove 0 4523
remove 0 4524
remove 0 4525
remove 0 4526
remove 0 4527
remove 0 4528
remove 0 4529
remove 0 4530
remove 0 4531
remove 0 4532
remove 0 4533
remove 0 4534
remove 0 4535
remove 0 4536
remove 0 4537
remove 0 4538
remove 0 4539
remove 0 4540
remove 0 4541
remove 0 4542
remove 0 4543
remove 0 4544
remove 0 4545
remove 0 4546
remove 0 4547
remove 0 4548
remove 0 4549
remove 0 4550
remove 0 4551
remove 0 4552
remove 0 4553
remove 0 4554
remove 0 4555
remove 0 4556
remove 0 4557
remove 0 4558
remove 0 4559
remove 0 4560
remove 0 4561
remove 0 4562
remove 0 4563
remove 0 4564
remove 0 4565
remove 0 4566
remove 0 4567
remove 0 4568
remove 0 4569
remove 0 4570
remove 0 4571
remove 0 4572
remove 0 4573
remove 0 4574
remove 0 4575
remove 0 4576
remove 0 4577
remove 0 4578
remove 0 4579
remove 0 4580
remove 0 4581
remove 0 4582
remove 0 4583
remove 0 4584
remove 0 4585
remove 0 4586
remove 0 4587
remove 0 4588
remove 0 4589
remove 0 4590
remove 0 4591
remove 0 4592
remove 0 4593
remove 0 4594
remove 0 4595
remove 0 4596
remove 0 4597
remove 0 4598
remove 0 4599
remove 0 4600
remove 0 4601
remove 0 4602
remove 0 4603
remove 0 4604
remove 0 4605
remove 0 4606
remove 0 4607
remove 0 4608
remove 0 4609
remove 0 4610
remove 0 4611
remove 0 4612
remove 0 4613
remove 0 4614
remove 0 4615
remove 0 4616
remove 0 4617
remove 0 4618
remove 0 4619
remove 0 4620
remove 0 4621
remove 0 4622
remove 0 4623
remove 0 4624
remove 0 4625
remove 0 4626
remove 0 4627
remove 0 4628
remove 0 4629
remove 0 4630
remove 0 4631
remove 0 4632
remove 0 4633
remove 0 4634
remove 0 4635
remove 0 4636
remove 0 4637
remove 0 4638
remove 0 4639
remove 0 4640
remove 0 4641
remove 0 4642
remove 0 4643
remove 0 4644
remove 0 4645
remove 0 4646
remove 0 4647
remove 0 4648
remove 0 4649
remove 0 4650
remove 0 4651
remove 0 4652
remove 0 4653
remove 0 4654
remove 0 4655
remove 0 4656
remove 0 4657
remove 0 4658
remove 0 4659
remove 0 4660
remove 0 4661
remove 0 4662
remove 0 4663
remove 0 4664
remove 0 4665
remove 0 4666
remove 0 4667
remove 0 4668
remove 0 4669
remove 0 4670
remove 0 4671
remove 0 4672
remove 0 4673
remove 0 4674
remove 0 4675
remove 0 4676
remove 0 4677
remove 0 4678
remove 0 4679
remove 0 4680
remove 0 4681
remove 0 4682
remove 0 4683
remove 0 4684
remove 0 4685
remove 0 4686
remove 0 4687
remove 0 4688
remove 0 4689
remove 0 4690
remove 0 4691
remove 0 4692
remove 0 4693
remove 0 4694
remove 0 4695
remove 0 4696
remove 0 4697
remove 0 4698
remove 0 4699
remove 0 4700
remove 0 4701
remove 0 4702
remove 0 4703
remove 0 4704
remove 0 4705
remove 0 4706
remove 0 4707
remove 0 4708
remove 0 4709
remove 0 4710
remove 0 4711
remove 0 4712
remove 0 4713
remove 0 4714
remove 0 4715
remove 0 4716
remove 0 4717
remove 0 4718
remove 0 4719
remove 0 4720
remove 0 4721
remove 0 4722
remove 0 4723
remove 0 4724
remove 0 4725
remove 0 4726
remove 0 4727
remove 0 4728
remove 0 4729
remove 0 4730
remove 0 4731
remove 0 4732
remove 0 4733
remove 0 4734
remove 0 4735
remove 0 4736
remove 0 4737
remove 0 4738
remove 0 4739
remove 0 4740
remove 0 4741
remove 0 4742
remove 0 4743
remove 0 4744
remove 0 4745
remove 0 4746
remove 0 4747
remove 0 4748
remove 0 4749
remove 0 4750
remove 0 4751
remove 0 4752
remove 0 4753
remove 0 4754
remove 0 4755
remove 0 4756
remove 0 4757
remove 0 4758
remove 0 4759
remove 0 4760
remove 0 4761
remove 0 4762
remove 0 4763
remove 0 4764
remove 0 4765
remove 0 4766
remove 0 4767
remove 0 4768
remove 0 4769
remove 0 4770
remove 0 4771
remove 0 4772
remove 0 4773
remove 0 4774
remove 0 4775
remove 0 4776
remove 0 4777
remove 0 4778
remove 0 4779
remove 0 4780
remove 0 4781
remove 0 4782
remove 0 4783
remove 0 4784
remove 0 4785
remove 0 4786
remove 0 4787
remove 0 4788
remove 0 4789
remove 0 4790
remove 0 4791
remove 0 4792
remove 0 4793
remove 0 4794
remove 0 4795
remove 0 4796
remove 0 4797
remove 0 4798
remove 0 4799
remove 0 4800
remove 0 4801
remove 0 4802
remove 0 4803
remove 0 4804
remove 0 4805
remove 0 4806
remove 0 4807
remove 0 4808
remove 0 4809
remove 0 4810
remove 0 4811
remove 0 4812
remove 0 4813
remove 0 4814
remove 0 4815
remove 0 4816
remove 0 4817
remove 0 4818
remove 0 4819
remove 0 4820
remove 0 4821
remove 0 4822
remove 0 4823
remove 0 4824
remove 0 4825
remove 0 4826
remove 0 4827
remove 0 4828
remove 0 4829
remove 0 4830
remove 0 4831
remove 0 4832
remove 0 4833
remove 0 4834
remove 0 4835
remove 0 4836
remove 0 4837
remove 0 4838
remove 0 4839
remove 0 4840
remove 0 4841
remove 0 4842
remove 0 4843
remove 0 4844
remove 0 4845
remove 0 4846
remove 0 4847
remove 0 4848
remove 0 4849
remove 0 4850
remove 0 4851
remove 0 4852
remove 0 4853
remove 0 4854
remove 0 4855
remove 0 4856
remove 0 4857
remove 0 4858
remove 0 4859
remove 0 4860
remove 0 4861
remove 0 4862
remove 0 4863
remove 0 4864
remove 0 4865
remove 0 4866
remove 0 4867
remove 0 4868
remove 0 4869
remove 0 4870
remove 0 4871
remove 0 4872
remove 0 4873
remove 0 4874
remove 0 4875
remove 0 4876
remove 0 4877
remove 0 4878
remove 0 4879
remove 0 4880
remove 0 4881
remove 0 4882
remove 0 4883
remove 0 4884
remove 0 4885
remove 0 4886
remove 0 4887
remove 0 4888
remove 0 4889
remove 0 4890
remove 0 4891
remove 0 4892
remove 0 4893
remove 0 4894
remove 0 4895
remove 0 4896
remove 0 4897
remove 0 4898
remove 0 4899
remove 0 4900
remove 0 4901
remove 0 4902
remove 0 4903
remove 0 4904
remove 0 4905
remove 0 4906
remove 0 4907
remove 0 4908
remove 0 4909
remove 0 4910
remove 0 4911
remove 0 4912
remove 0 4913
remove 0 4914
remove 0 4915
remove 0 4916
remove 0 4917
remove 0 4918
remove 0 4919
remove 0 4920
remove 0 4921
remove 0 4922
remove 0 4923
remove 0 4924
remove 0 4925
remove 0 4926
remove 0 4927
remove 0 4928
remove 0 4929
remove 0 4930
remove 0 4931
remove 0 4932
remove 0 4933
remove 0 4934
remove 0 4935
remove 0 4936
remove 0 4937
remove 0 4938
remove 0 4939
remove 0 4940
remove 0 4941
remove 0 4942
remove 0 4943
remove 0 4944
remove 0 4945
remove 0 4946
remove 0 4947
remove 0 4948
remove 0 4949
remove 0 4950
remove 0 4951
remove 0 4952
remove 0 4953
remove 0 4954
remove 0 4955
remove 0 4956
remove 0 4957
remove 0 4958
remove 0 4959
remove 0 4960
remove 0 4961
remove 0 4962
remove 0 4963
remove 0 4964
remove 0 4965
remove 0 4966
remove 0 4967
remove 0 4968
remove 0 4969
remove 0 4970
remove 0 4971
remove 0 4972
remove 0 4973
remove 0 4974
remove 0 4975
remove 0 4976
remove 0 4977
remove 0 4978
remove 0 4979
remove 0 4980
remove 0 4981
remove 0 4982
remove 0 4983
remove 0 4984
remove 0 4985
remove 0 4986
remove 0 4987
remove 0 4988
remove 0 4989
remove 0 4990
remove 0 4991
remove 0 4992
remove 0 4993
remove 0 4994
remove 0 4995
remove 0 4996
remove 0 4997
remove 0 4998
remove 0 4999
remove 0 5000
remove 0 5001
remove 0 5002
remove 0 5003
remove 0 5004
remove 0 5005
remove 0 5006
remove 0 5007
remove 0 5008
remove 0 5009
remove 0 5010
remove 0 5011
remove 0 5012
remove 0 5013
remove 0 5014
remove 0 5015
remove 0 5016
remove 0 5017
remove 0 5018
remove 0 5019
remove 0 5020
remove 0 5021
remove 0 5022
remove 0 5023
remove 0 5024
remove 0 5025
remove 0 5026
remove 0 5027
remove 0 5028
remove 0 5029
remove 0 5030
remove 0 5031
remove 0 5032
remove 0 5033
remove 0 5034
remove 0 5035
remove 0 5036
remove 0 5037
remove 0 5038
remove 0 5039
remove 0 5040
remove 0 5041
remove 0 5042
remove 0 5043
remove 0 5044
remove 0 5045
remove 0 5046
remove 0 5047
remove 0 5048
remove 0 5049
remove 0 5050
remove 0 5051
remove 0 5052
remove 0 5053
remove 0 5054
remove 0 5055
remove 0 5056
remove 0 5057
remove 0 5058
remove 0 5059
remove 0 5060
remove 0 5061
remove 0 5062
remove 0 5063
remove 0 5064
remove 0 5065
remove 0 5066
remove 0 5067
remove 0 5068
remove 0 5069
remove 0 5070
remove 0 5071
remove 0 5072
remove 0 5073
remove 0 5074
remove 0 5075
remove 0 5076
remove 0 5077
remove 0 5078
remove 0 5079
remove 0 5080
remove 0 5081
remove 0 5082
remove 0 5083
remove 0 5084
remove 0 5085
remove 0 5086
remove 0 5087
remove 0 5088
remove 0 5089
remove 0 5090
remove 0 5091
remove 0 5092
remove 0 5093
remove 0 5094
remove 0 5095
remove 0 5096
remove 0 5097
remove 0 5098
remove 0 5099
remove 0 5100
remove 0 5101
remove 0 5102
remove 0 5103
remove 0 5104
remove 0 5105
remove 0 5106
remove 0 5107
remove 0 5108
remove 0 5109
remove 0 5110
remove 0 5111
remove 0 5112
remove 0 5113
remove 0 5114
remove 0 5115
remove 0 5116
remove 0 5117
remove 0 5118
remove 0 5119
remove 0 5120
remove 0 5121
remove 0 5122
remove 0 5123
remove 0 5124
remove 0 5125
remove 0 5126
remove 0 5127
remove 0 5128
remove 0 5129
remove 0 5130
remove 0 5131
remove 0 5132
remove 0 5133
remove 0 5134
remove 0 5135
remove 0 5136
remove 0 5137
remove 0 5138
remove 0 5139
remove 0 5140
remove 0 5141
remove 0 5142
remove 0 5143
remove 0 5144
remove 0 5145
remove 0 5146
remove 0 5147
remove 0 5148
remove 0 5149
remove 0 5150
remove 0 5151
remove 0 5152
remove 0 5153
remove 0 5154
remove 0 5155
remove 0 5156
remove 0 5157
remove 0 5158
remove 0 5159
remove 0 5160
remove 0 5161
remove 0 5162
remove 0 5163
remove 0 5164
remove 0 5165
remove 0 5166
remove 0 5167
remove 0 5168
remove 0 5169
remove 0 5170
remove 0 5171
remove 0 5172
remove 0 5173
remove 0 5174
remove 0 5175
remove 0 5176
remove 0 5177
remove 0 5178
remove 0 5179
remove 0 5180
remove 0 5181
remove 0 5182
remove 0 5183
remove 0 5184
remove 0 5185
remove 0 5186
remove 0 5187
remove 0 5188
remove 0 5189
remove 0 5190
remove 0 5191
remove 0 5192
remove 0 5193
remove 0 5194
remove 0 5195
remove 0 5196
remove 0 5197
remove 0 5198
remove 0 5199
remove 0 5200
remove 0 5201
remove 0 5202
remove 0 5203
remove 0 5204
remove 0 5205
remove 0 5206
remove 0 5207
remove 0 5208
remove 0 5209
remove 0 5210
remove 0 5211
remove 0 5212
remove 0 5213
remove 0 5214
remove 0 5215
remove 0 5216
remove 0 5217
remove 0 5218
remove 0 5219
remove 0 5220
remove 0 5221
remove 0 5222
remove 0 5223
remove 0 5224
remove 0 5225
remove 0 5226
remove 0 5227
remove 0 5228
remove 0 5229
remove 0 5230
remove 0 5231
remove 0 5232
remove 0 5233
remove 0 5234
remove 0 5235
remove 0 5236
remove 0 5237
remove 0 5238
remove 0 5239
remove 0 5240
remove 0 5241
remove 0 5242
remove 0 5243
remove 0 5244
remove 0 5245
remove 0 5246
remove 0 5247
remove 0 5248
remove 0 5249
remove 0 5250
remove 0 5251
remove 0 5252
remove 0 5253
remove 0 5254
remove 0 5255
remove 0 5256
remove 0 5257
remove 0 5258
remove 0 5259
remove 0 5260
remove 0 5261
remove 0 5262
remove 0 5263
remove 0 5264
remove 0 5265
remove 0 5266
remove 0 5267
remove 0 5268
remove 0 5269
remove 0 5270
remove 0 5271
remove 0 5272
remove 0 5273
remove 0 5274
remove 0 5275
remove 0 5276
remove 0 5277
remove 0 5278
remove 0 5279
remove 0 5280
remove 0 5281
remove 0 5282
remove 0 5283
remove 0 5284
remove 0 5285
remove 0 5286
remove 0 5287
remove 0 5288
remove 0 5289
remove 0 5290
remove 0 5291
remove 0 5292
remove 0 5293
remove 0 5294
remove 0 5295
remove 0 5296
remove 0 5297
remove 0 5298
remove 0 5299
remove 0 5300
remove 0 5301
remove 0 5302
remove 0 5303
remove 0 5304
remove 0 5305
remove 0 5306
remove 0 5307
remove 0 5308
remove 0 5309
remove 0 5310
remove 0 5311
remove 0 5312
remove 0 5313
remove 0 5314
remove 0 5315
remove 0 5316
remove 0 5317
remove 0 5318
remove 0 5319
remove 0 5320
remove 0 5321
remove 0 5322
remove 0 5323
remove 0 5324
remove 0 5325
remove 0 5326
remove 0 5327
remove 0 5328
remove 0 5329
remove 0 5330
remove 0 5331
remove 0 5332
remove 0 5333
remove 0 5334
remove 0 5335
remove 0 5336
remove 0 5337
remove 0 5338
remove 0 5339
remove 0 5340
remove 0 5341
remove 0 5342
remove 0 5343
remove 0 5344
remove 0 5345
remove 0 5346
remove 0 5347
remove 0 5348
remove 0 5349
remove 0 5350
remove 0 5351
remove 0 5352
remove 0 5353
remove 0 5354
remove 0 5355
remove 0 5356
remove 0 5357
remove 0 5358
remove 0 5359
remove 0 5360
remove 0 5361
remove 0 5362
remove 0 5363
remove 0 5364
remove 0 5365
remove 0 5366
remove 0 5367
remove 0 5368
remove 0 5369
remove 0 5370
remove 0 5371
remove 0 5372
remove 0 5373
remove 0 5374
remove 0 5375
remove 0 5376
remove 0 5377
remove 0 5378
remove 0 5379
remove 0 5380
remove 0 5381
remove 0 5382
remove 0 5383
remove 0 5384
remove 0 5385
remove 0 5386
remove 0 5387
remove 0 5388
remove 0 5389
remove 0 5390
remove 0 5391
remove 0 5392
remove 0 5393
remove 0 5394
remove 0 5395
remove 0 5396
remove 0 5397
remove 0 5398
remove 0 5399
remove 0 5400
remove 0 5401
remove 0 5402
remove 0 5403
remove 0 5404
remove 0 5405
remove 0 5406
remove 0 5407
remove 0 5408
remove 0 5409
remove 0 5410
remove 0 5411
remove 0 5412
remove 0 5413
remove 0 5414
remove 0 5415
remove 0 5416
remove 0 5417
remove 0 5418
remove 0 5419
remove 0 5420
remove 0 5421
remove 0 5422
remove 0 5423
remove 0 5424
remove 0 5425
remove 0 5426
remove 0 5427
remove 0 5428
remove 0 5429
remove 0 5430
remove 0 5431
remove 0 5432
remove 0 5433
remove 0 5434
remove 0 5435
remove 0 5436
remove 0 5437
remove 0 5438
remove 0 5439
remove 0 5440
remove 0 5441
remove 0 5442
remove 0 5443
remove 0 5444
remove 0 5445
remove 0 5446
remove 0 5447
remove 0 5448
remove 0 5449
remove 0 5450
remove 0 5451
remove 0 5452
remove 0 5453
remove 0 5454
remove 0 5455
remove 0 5456
remove 0 5457
remove 0 5458
remove 0 5459
remove 0 5460
remove 0 5461
remove 0 5462
remove 0 5463
remove 0 5464
remove 0 5465
remove 0 5466
remove 0 5467
remove 0 5468
remove 0 5469
remove 0 5470
remove 0 5471
remove 0 5472
remove 0 5473
remove 0 5474
remove 0 5475
remove 0 5476
remove 0 5477
remove 0 5478
remove 0 5479
remove 0 5480
remove 0 5481
remove 0 5482
remove 0 5483
remove 0 5484
remove 0 5485
remove 0 5486
remove 0 5487
remove 0 5488
remove 0 5489
remove 0 5490
remove 0 5491
remove 0 5492
remove 0 5493
remove 0 5494
remove 0 5495
remove 0 5496
remove 0 5497
remove 0 5498
remove 0 5499
remove 0 5500
remove 0 5501
remove 0 5502
remove 0 5503
remove 0 5504
remove 0 5505
remove 0 5506
remove 0 5507
remove 0 5508
remove 0 5509
remove 0 5510
remove 0 5511
remove 0 5512
remove 0 5513
remove 0 5514
remove 0 5515
remove 0 5516
remove 0 5517
remove 0 5518
remove 0 5519
remove 0 5520
remove 0 5521
remove 0 5522
remove 0 5523
remove 0 5524
remove 0 5525
remove 0 5526
remove 0 5527
remove 0 5528
remove 0 5529
remove 0 5530
remove 0 5531
remove 0 5532
remove 0 5533
remove 0 5534
remove 0 5535
remove 0 5536
remove 0 5537
remove 0 5538
remove 0 5539
remove 0 5540
remove 0 5541
remove 0 5542
remove 0 5543
remove 0 5544
remove 0 5545
remove 0 5546
remove 0 5547
remove 0 5548
remove 0 5549
remove 0 5550
remove 0 5551
remove 0 5552
remove 0 5553
remove 0 5554
remove 0 5555
remove 0 5556
remove 0 5557
remove 0 5558
remove 0 5559
remove 0 5560
remove 0 5561
remove 0 5562
remove 0 5563
remove 0 5564
remove 0 5565
remove 0 5566
remove 0 5567
remove 0 5568
remove 0 5569
remove 0 5570
remove 0 5571
remove 0 5572
remove 0 5573
remove 0 5574
remove 0 5575
remove 0 5576
remove 0 5577
remove 0 5578
remove 0 5579
remove 0 5580
remove 0 5581
remove 0 5582
remove 0 5583
remove 0 5584
remove 0 5585
remove 0 5586
remove 0 5587
remove 0 5588
remove 0 5589
remove 0 5590
remove 0 5591
remove 0 5592
remove 0 5593
remove 0 5594
remove 0 5595
remove 0 5596
remove 0 5597
remove 0 5598
remove 0 5599
remove 0 5600
remove 0 5601
remove 0 5602
remove 0 5603
remove 0 5604
remove 0 5605
remove 0 5606
remove 0 5607
remove 0 5608
remove 0 5609
remove 0 5610
remove 0 5611
remove 0 5612
remove 0 5613
remove 0 5614
remove 0 5615
remove 0 5616
remove 0 5617
remove 0 5618
remove 0 5619
remove 0 5620
remove 0 5621
remove 0 5622
remove 0 5623
remove 0 5624
remove 0 5625
remove 0 5626
remove 0 5627
remove 0 5628
remove 0 5629
remove 0 5630
remove 0 5631
remove 0 5632
remove 0 5633
remove 0 5634
remove 0 5635
remove 0 5636
remove 0 5637
remove 0 5638
remove 0 5639
remove 0 5640
remove 0 5641
remove 0 5642
remove 0 5643
remove 0 5644
remove 0 5645
remove 0 5646
remove 0 5647
remove 0 5648
remove 0 5649
remove 0 5650
remove 0 5651
remove 0 5652
remove 0 5653
remove 0 5654
remove 0 5655
remove 0 5656
remove 0 5657
remove 0 5658
remove 0 5659
remove 0 5660
remove 0 5661
remove 0 5662
remove 0 5663
remove 0 5664
remove 0 5665
remove 0 5666
remove 0 5667
remove 0 5668
remove 0 5669
remove 0 5670
remove 0 5671
remove 0 5672
remove 0 5673
remove 0 5674
remove 0 5675
remove 0 5676
remove 0 5677
remove 0 5678
remove 0 5679
remove 0 5680
remove 0 5681
remove 0 5682
remove 0 5683
remove 0 5684
remove 0 5685
remove 0 5686
remove 0 5687
remove 0 5688
remove 0 5689
remove 0 5690
remove 0 5691
remove 0 5692
remove 0 5693
remove 0 5694
remove 0 5695
remove 0 5696
remove 0 5697
remove 0 5698
remove 0 5699
remove 0 5700
remove 0 5701
remove 0 5702
remove 0 5703
remove 0 5704
remove 0 5705
remove 0 5706
remove 0 5707
remove 0 5708
remove 0 5709
remove 0 5710
remove 0 5711
remove 0 5712
remove 0 5713
remove 0 5714
remove 0 5715
remove 0 5716
remove 0 5717
remove 0 5718
remove 0 5719
remove 0 5720
remove 0 5721
remove 0 5722
remove 0 5723
remove 0 5724
remove 0 5725
remove 0 5726
remove 0 5727
remove 0 5728
remove 0 5729
remove 0 5730
remove 0 5731
remove 0 5732
remove 0 5733
remove 0 5734
remove 0 5735
remove 0 5736
remove 0 5737
remove 0 5738
remove 0 5739
remove 0 5740
remove 0 5741
remove 0 5742
remove 0 5743
remove 0 5744
remove 0 5745
remove 0 5746
remove 0 5747
remove 0 5748
remove 0 5749
remove 0 5750
remove 0 5751
remove 0 5752
remove 0 5753
remove 0 5754
remove 0 5755
remove 0 5756
remove 0 5757
remove 0 5758
remove 0 5759
remove 0 5760
remove 0 5761
remove 0 5762
remove 0 5763
remove 0 5764
remove 0 5765
remove 0 5766
remove 0 5767
remove 0 5768
remove 0 5769
remove 0 5770
remove 0 5771
remove 0 5772
remove 0 5773
remove 0 5774
remove 0 5775
remove 0 5776
remove 0 5777
remove 0 5778
remove 0 5779
remove 0 5780
remove 0 5781
remove 0 5782
remove 0 5783
remove 0 5784
remove 0 5785
remove 0 5786
remove 0 5787
remove 0 5788
remove 0 5789
remove 0 5790
remove 0 5791
remove 0 5792
remove 0 5793
remove 0 5794
remove 0 5795
remove 0 5796
remove 0 5797
remove 0 5798
remove 0 5799
remove 0 5800
remove 0 5801
remove 0 5802
remove 0 5803
remove 0 5804
remove 0 5805
remove 0 5806
remove 0 5807
remove 0 5808
remove 0 5809
remove 0 5810
remove 0 5811
remove 0 5812
remove 0 5813
remove 0 5814
remove 0 5815
remove 0 5816
remove 0 5817
remove 0 5818
remove 0 5819
remove 0 5820
remove 0 5821
remove 0 5822
remove 0 5823
remove 0 5824
remove 0 5825
remove 0 5826
remove 0 5827
remove 0 5828
remove 0 5829
remove 0 5830
remove 0 5831
remove 0 5832
remove 0 5833
remove 0 5834
remove 0 5835
remove 0 5836
remove 0 5837
remove 0 5838
remove 0 5839
remove 0 5840
remove 0 5841
remove 0 5842
remove 0 5843
remove 0 5844
remove 0 5845
remove 0 5846
remove 0 5847
remove 0 5848
remove 0 5849
remove 0 5850
remove 0 5851
remove 0 5852
remove 0 5853
remove 0 5854
remove 0 5855
remove 0 5856
remove 0 5857
remove 0 5858
remove 0 5859
remove 0 5860
remove 0 5861
remove 0 5862
remove 0 5863
remove 0 5864
remove 0 5865
remove 0 5866
remove 0 5867
remove 0 5868
remove 0 5869
remove 0 5870
remove 0 5871
remove 0 5872
remove 0 5873
remove 0 5874
remove 0 5875
remove 0 5876
remove 0 5877
remove 0 5878
remove 0 5879
remove 0 5880
remove 0 5881
remove 0 5882
remove 0 5883
remove 0 5884
remove 0 5885
remove 0 5886
remove 0 5887
remove 0 5888
remove 0 5889
remove 0 5890
remove 0 5891
remove 0 5892
remove 0 5893
remove 0 5894
remove 0 5895
remove 0 5896
remove 0 5897
remove 0 5898
remove 0 5899
remove 0 5900
remove 0 5901
remove 0 5902
remove 0 5903
remove 0 5904
remove 0 5905
remove 0 5906
remove 0 5907
remove 0 5908
remove 0 5909
remove 0 5910
remove 0 5911
remove 0 5912
remove 0 5913
remove 0 5914
remove 0 5915
remove 0 5916
remove 0 5917
remove 0 5918
remove 0 5919
remove 0 5920
remove 0 5921
remove 0 5922
remove 0 5923
remove 0 5924
remove 0 5925
remove 0 5926
remove 0 5927
remove 0 5928
remove 0 5929
remove 0 5930
remove 0 5931
remove 0 5932
remove 0 5933
remove 0 5934
remove 0 5935
remove 0 5936
remove 0 5937
remove 0 5938
remove 0 5939
remove 0 5940
remove 0 5941
remove 0 5942
remove 0 5943
remove 0 5944
remove 0 5945
remove 0 5946
remove 0 5947
remove 0 5948
remove 0 5949
remove 0 5950
remove 0 5951
remove 0 5952
remove 0 5953
remove 0 5954
remove 0 5955
remove 0 5956
remove 0 5957
remove 0 5958
remove 0 5959
remove 0 5960
remove 0 5961
remove 0 5962
remove 0 5963
remove 0 5964
remove 0 5965
remove 0 5966
remove 0 5967
remove 0 5968
remove 0 5969
remove 0 5970
remove 0 5971
remove 0 5972
remove 0 5973
remove 0 5974
remove 0 5975
remove 0 5976
remove 0 5977
remove 0 5978
remove 0 5979
remove 0 5980
remove 0 5981
remove 0 5982
remove 0 5983
remove 0 5984
remove 0 5985
remove 0 5986
remove 0 5987
remove 0 5988
remove 0 5989
remove 0 5990
remove 0 5991
remove 0 5992
remove 0 5993
remove 0 5994
remove 0 5995
remove 0 5996
remove 0 5997
remove 0 5998
remove 0 5999
remove 0 6000
remove 0 6001
remove 0 6002
remove 0 6003
remove 0 6004
remove 0 6005
remove 0 6006
remove 0 6007
remove 0 6008
remove 0 6009
remove 0 6010
remove 0 6011
remove 0 6012
remove 0 6013
remove 0 6014
remove 0 6015
remove 0 6016
remove 0 6017
remove 0 6018
remove 0 6019
remove 0 6020
remove 0 6021
remove 0 6022
remove 0 6023
remove 0 6024
remove 0 6025
remove 0 6026
remove 0 6027
remove 0 6028
remove 0 6029
remove 0 6030
remove 0 6031
remove 0 6032
remove 0 6033
remove 0 6034
remove 0 6035
remove 0 6036
remove 0 6037
remove 0 6038
remove 0 6039
remove 0 6040
remove 0 6041
remove 0 6042
remove 0 6043
remove 0 6044
remove 0 6045
remove 0 6046
remove 0 6047
remove 0 6048
remove 0 6049
remove 0 6050
remove 0 6051
remove 0 6052
remove 0 6053
remove 0 6054
remove 0 6055
remove 0 6056
remove 0 6057
remove 0 6058
remove 0 6059
remove 0 6060
remove 0 6061
remove 0 6062
remove 0 6063
remove 0 6064
remove 0 6065
remove 0 6066
remove 0 6067
remove 0 6068
remove 0 6069
remove 0 6070
remove 0 6071
remove 0 6072
remove 0 6073
remove 0 6074
remove 0 6075
remove 0 6076
remove 0 6077
remove 0 6078
remove 0 6079
remove 0 6080
remove 0 6081
remove 0 6082
remove 0 6083
remove 0 6084
remove 0 6085
remove 0 6086
remove 0 6087
remove 0 6088
remove 0 6089
remove 0 6090
remove 0 6091
remove 0 6092
remove 0 6093
remove 0 6094
remove 0 6095
remove 0 6096
remove 0 6097
remove 0 6098
remove 0 6099
remove 0 6100
remove 0 6101
remove 0 6102
remove 0 6103
remove 0 6104
remove 0 6105
remove 0 6106
remove 0 6107
remove 0 6108
remove 0 6109
remove 0 6110
remove 0 6111
remove 0 6112
remove 0 6113
remove 0 6114
remove 0 6115
remove 0 6116
remove 0 6117
remove 0 6118
remove 0 6119
remove 0 6120
remove 0 6121
remove 0 6122
remove 0 6123
remove 0 6124
remove 0 6125
remove 0 6126
remove 0 6127
remove 0 6128
remove 0 6129
remove 0 6130
remove 0 6131
remove 0 6132
remove 0 6133
remove 0 6134
remove 0 6135
remove 0 6136
remove 0 6137
remove 0 6138
remove 0 6139
remove 0 6140
remove 0 6141
remove 0 6142
remove 0 6143
remove 0 6144
remove 0 6145
remove 0 6146
remove 0 6147
remove 0 6148
remove 0 6149
remove 0 6150
remove 0 6151
remove 0 6152
remove 0 6153
remove 0 6154
remove 0 6155
remove 0 6156
remove 0 6157
remove 0 6158
remove 0 6159
remove 0 6160
remove 0 6161
remove 0 6162
remove 0 6163
remove 0 6164
remove 0 6165
remove 0 6166
remove 0 6167
remove 0 6168
remove 0 6169
remove 0 6170
remove 0 6171
remove 0 6172
remove 0 6173
remove 0 6174
remove 0 6175
remove 0 6176
remove 0 6177
remove 0 6178
remove 0 6179
remove 0 6180
remove 0 6181
remove 0 6182
remove 0 6183
remove 0 6184
remove 0 6185
remove 0 6186
remove 0 6187
remove 0 6188
remove 0 6189
remove 0 6190
remove 0 6191
remove 0 6192
remove 0 6193
remove 0 6194
remove 0 6195
remove 0 6196
remove 0 6197
remove 0 6198
remove 0 6199
remove 0 6200
remove 0 6201
remove 0 6202
remove 0 6203
remove 0 6204
remove 0 6205
remove 0 6206
remove 0 6207
remove 0 6208
remove 0 6209
remove 0 6210
remove 0 6211
remove 0 6212
remove 0 6213
remove 0 6214
remove 0 6215
remove 0 6216
remove 0 6217
remove 0 6218
remove 0 6219
remove 0 6220
remove 0 6221
remove 0 6222
remove 0 6223
remove 0 6224
remove 0 6225
remove 0 6226
remove 0 6227
remove 0 6228
remove 0 6229
remove 0 6230
remove 0 6231
remove 0 6232
remove 0 6233
remove 0 6234
remove 0 6235
remove 0 6236
remove 0 6237
remove 0 6238
remove 0 6239
remove 0 6240
remove 0 6241
remove 0 6242
remove 0 6243
remove 0 6244
remove 0 6245
remove 0 6246
remove 0 6247
remove 0 6248
remove 0 6249
remove 0 6250
remove 0 6251
remove 0 6252
remove 0 6253
remove 0 6254
remove 0 6255
remove 0 6256
remove 0 6257
remove 0 6258
remove 0 6259
remove 0 6260
remove 0 6261
remove 0 6262
remove 0 6263
remove 0 6264
remove 0 6265
remove 0 6266
remove 0 6267
remove 0 6268
remove 0 6269
remove 0 6270
remove 0 6271
remove 0 6272
remove 0 6273
remove 0 6274
remove 0 6275
remove 0 6276
remove 0 6277
remove 0 6278
remove 0 6279
remove 0 6280
remove 0 6281
remove 0 6282
remove 0 6283
remove 0 6284
remove 0 6285
remove 0 6286
remove 0 6287
remove 0 6288
remove 0 6289
remove 0 6290
remove 0 6291
remove 0 6292
remove 0 6293
remove 0 6294
remove 0 6295
remove 0 6296
remove 0 6297
remove 0 6298
remove 0 6299
remove 0 6300
remove 0 6301
remove 0 6302
remove 0 6303
remove 0 6304
remove 0 6305
remove 0 6306
remove 0 6307
remove 0 6308
remove 0 6309
remove 0 6310
remove 0 6311
remove 0 6312
remove 0 6313
remove 0 6314
remove 0 6315
remove 0 6316
remove 0 6317
remove 0 6318
remove 0 6319
remove 0 6320
remove 0 6321
remove 0 6322
remove 0 6323
remove 0 6324
remove 0 6325
remove 0 6326
remove 0 6327
remove 0 6328
remove 0 6329
remove 0 6330
remove 0 6331
remove 0 6332
remove 0 6333
remove 0 6334
remove 0 6335
remove 0 6336
remove 0 6337
remove 0 6338
remove 0 6339
remove 0 6340
remove 0 6341
remove 0 6342
remove 0 6343
remove 0 6344
remove 0 6345
remove 0 6346
remove 0 6347
remove 0 6348
remove 0 6349
remove 0 6350
remove 0 6351
remove 0 6352
remove 0 6353
remove 0 6354
remove 0 6355
remove 0 6356
remove 0 6357
remove 0 6358
remove 0 6359
remove 0 6360
remove 0 6361
remove 0 6362
remove 0 6363
remove 0 6364
remove 0 6365
remove 0 6366
remove 0 6367
remove 0 6368
remove 0 6369
remove 0 6370
remove 0 6371
remove 0 6372
remove 0 6373
remove 0 6374
remove 0 6375
remove 0 6376
remove 0 6377
remove 0 6378
remove 0 6379
remove 0 6380
remove 0 6381
remove 0 6382
remove 0 6383
remove 0 6384
remove 0 6385
remove 0 6386
remove 0 6387
remove 0 6388
remove 0 6389
remove 0 6390
remove 0 6391
remove 0 6392
remove 0 6393
remove 0 6394
remove 0 6395
remove 0 6396
remove 0 6397
remove 0 6398
remove 0 6399
remove 0 6400
remove 0 6401
remove 0 6402
remove 0 6403
remove 0 6404
remove 0 6405
remove 0 6406
remove 0 6407
remove 0 6408
remove 0 6409
remove 0 6410
remove 0 6411
remove 0 6412
remove 0 6413
remove 0 6414
remove 0 6415
remove 0 6416
remove 0 6417
remove 0 6418
remove 0 6419
remove 0 6420
remove 0 6421
remove 0 6422
remove 0 6423
remove 0 6424
remove 0 6425
remove 0 6426
remove 0 6427
remove 0 6428
remove 0 6429
remove 0 6430
remove 0 6431
remove 0 6432
remove 0 6433
remove 0 6434
remove 0 6435
remove 0 6436
remove 0 6437
remove 0 6438
remove 0 6439
remove 0 6440
remove 0 6441
remove 0 6442
remove 0 6443
remove 0 6444
remove 0 6445
remove 0 6446
remove 0 6447
remove 0 6448
remove 0 6449
remove 0 6450
remove 0 6451
remove 0 6452
remove 0 6453
remove 0 6454
remove 0 6455
remove 0 6456
remove 0 6457
remove 0 6458
remove 0 6459
remove 0 6460
remove 0 6461
remove 0 6462
remove 0 6463
remove 0 6464
remove 0 6465
remove 0 6466
remove 0 6467
remove 0 6468
remove 0 6469
remove 0 6470
remove 0 6471
remove 0 6472
remove 0 6473
remove 0 6474
remove 0 6475
remove 0 6476
remove 0 6477
remove 0 6478
remove 0 6479
remove 0 6480
remove 0 6481
remove 0 6482
remove 0 6483
remove 0 6484
remove 0 6485
remove 0 6486
remove 0 6487
remove 0 6488
remove 0 6489
remove 0 6490
remove 0 6491
remove 0 6492
remove 0 6493
remove 0 6494
remove 0 6495
remove 0 6496
remove 0 6497
remove 0 6498
remove 0 6499
remove 0 6500
remove 0 6501
remove 0 6502
remove 0 6503
remove 0 6504
remove 0 6505
remove 0 6506
remove 0 6507
remove 0 6508
remove 0 6509
remove 0 6510
remove 0 6511
remove 0 6512
remove 0 6513
remove 0 6514
remove 0 6515
remove 0 6516
remove 0 6517
remove 0 6518
remove 0 6519
remove 0 6520
remove 0 6521
remove 0 6522
remove 0 6523
remove 0 6524
remove 0 6525
remove 0 6526
remove 0 6527
remove 0 6528
remove 0 6529
remove 0 6530
remove 0 6531
remove 0 6532
remove 0 6533
remove 0 6534
remove 0 6535
remove 0 6536
remove 0 6537
remove 0 6538
remove 0 6539
remove 0 6540
remove 0 6541
remove 0 6542
remove 0 6543
remove 0 6544
remove 0 6545
remove 0 6546
remove 0 6547
remove 0 6548
remove 0 6549
remove 0 6550
remove 0 6551
remove 0 6552
remove 0 6553
remove 0 6554
remove 0 6555
remove 0 6556
remove 0 6557
remove 0 6558
remove 0 6559
remove 0 6560
remove 0 6561
remove 0 6562
remove 0 6563
remove 0 6564
remove 0 6565
remove 0 6566
remove 0 6567
remove 0 6568
remove 0 6569
remove 0 6570
remove 0 6571
remove 0 6572
remove 0 6573
remove 0 6574
remove 0 6575
remove 0 6576
remove 0 6577
remove 0 6578
remove 0 6579
remove 0 6580
remove 0 6581
remove 0 6582
remove 0 6583
remove 0 6584
remove 0 6585
remove 0 6586
remove 0 6587
remove 0 6588
remove 0 6589
remove 0 6590
remove 0 6591
remove 0 6592
remove 0 6593
remove 0 6594
remove 0 6595
remove 0 6596
remove 0 6597
remove 0 6598
remove 0 6599
remove 0 6600
remove 0 6601
remove 0 6602
remove 0 6603
remove 0 6604
remove 0 6605
remove 0 6606
remove 0 6607
remove 0 6608
remove 0 6609
remove 0 6610
remove 0 6611
remove 0 6612
remove 0 6613
remove 0 6614
remove 0 6615
remove 0 6616
remove 0 6617
remove 0 6618
remove 0 6619
remove 0 6620
remove 0 6621
remove 0 6622
remove 0 6623
remove 0 6624
remove 0 6625
remove 0 6626
remove 0 6627
remove 0 6628
remove 0 6629
remove 0 6630
remove 0 6631
remove 0 6632
remove 0 6633
remove 0 6634
remove 0 6635
remove 0 6636
remove 0 6637
remove 0 6638
remove 0 6639
remove 0 6640
remove 0 6641
remove 0 6642
remove 0 6643
remove 0 6644
remove 0 6645
remove 0 6646
remove 0 6647
remove 0 6648
remove 0 6649
remove 0 6650
remove 0 6651
remove 0 6652
remove 0 6653
remove 0 6654
remove 0 6655
remove 0 6656
remove 0 6657
remove 0 6658
remove 0 6659
remove 0 6660
remove 0 6661
remove 0 6662
remove 0 6663
remove 0 6664
remove 0 6665
remove 0 6666
remove 0 6667
remove 0 6668
remove 0 6669
remove 0 6670
remove 0 6671
remove 0 6672
remove 0 6673
remove 0 6674
remove 0 6675
remove 0 6676
remove 0 6677
remove 0 6678
remove 0 6679
remove 0 6680
remove 0 6681
remove 0 6682
remove 0 6683
remove 0 6684
remove 0 6685
remove 0 6686
remove 0 6687
remove 0 6688
remove 0 6689
remove 0 6690
remove 0 6691
remove 0 6692
remove 0 6693
remove 0 6694
remove 0 6695
remove 0 6696
remove 0 6697
remove 0 6698
remove 0 6699
remove 0 6700
remove 0 6701
remove 0 6702
remove 0 6703
remove 0 6704
remove 0 6705
remove 0 6706
remove 0 6707
remove 0 6708
remove 0 6709
remove 0 6710
remove 0 6711
remove 0 6712
remove 0 6713
remove 0 6714
remove 0 6715
remove 0 6716
remove 0 6717
remove 0 6718
remove 0 6719
remove 0 6720
remove 0 6721
remove 0 6722
remove 0 6723
remove 0 6724
remove 0 6725
remove 0 6726
remove 0 6727
remove 0 6728
remove 0 6729
remove 0 6730
remove 0 6731
remove 0 6732
remove 0 6733
remove 0 6734
remove 0 6735
remove 0 6736
remove 0 6737
remove 0 6738
remove 0 6739
remove 0 6740
remove 0 6741
remove 0 6742
remove 0 6743
remove 0 6744
remove 0 6745
remove 0 6746
remove 0 6747
remove 0 6748
remove 0 6749
remove 0 6750
remove 0 6751
remove 0 6752
remove 0 6753
remove 0 6754
remove 0 6755
remove 0 6756
remove 0 6757
remove 0 6758
remove 0 6759
remove 0 6760
remove 0 6761
remove 0 6762
remove 0 6763
remove 0 6764
remove 0 6765
remove 0 6766
remove 0 6767
remove 0 6768
remove 0 6769
remove 0 6770
remove 0 6771
remove 0 6772
remove 0 6773
remove 0 6774
remove 0 6775
remove 0 6776
remove 0 6777
remove 0 6778
remove 0 6779
remove 0 6780
remove 0 6781
remove 0 6782
remove 0 6783
remove 0 6784
remove 0 6785
remove 0 6786
remove 0 6787
remove 0 6788
remove 0 6789
remove 0 6790
remove 0 6791
remove 0 6792
remove 0 6793
remove 0 6794
remove 0 6795
remove 0 6796
remove 0 6797
remove 0 6798
remove 0 6799
remove 0 6800
remove 0 6801
remove 0 6802
remove 0 6803
remove 0 6804
remove 0 6805
remove 0 6806
remove 0 6807
remove 0 6808
remove 0 6809
remove 0 6810
remove 0 6811
remove 0 6812
remove 0 6813
remove 0 6814
remove 0 6815
remove 0 6816
remove 0 6817
remove 0 6818
remove 0 6819
remove 0 6820
remove 0 6821
remove 0 6822
remove 0 6823
remove 0 6824
remove 0 6825
remove 0 6826
remove 0 6827
remove 0 6828
remove 0 6829
remove 0 6830
remove 0 6831
remove 0 6832
remove 0 6833
remove 0 6834
remove 0 6835
remove 0 6836
remove 0 6837
remove 0 6838
remove 0 6839
remove 0 6840
remove 0 6841
remove 0 6842
remove 0 6843
remove 0 6844
remove 0 6845
remove 0 6846
remove 0 6847
remove 0 6848
remove 0 6849
remove 0 6850
remove 0 6851
remove 0 6852
remove 0 6853
remove 0 6854
remove 0 6855
remove 0 6856
remove 0 6857
remove 0 6858
remove 0 6859
remove 0 6860
remove 0 6861
remove 0 6862
remove 0 6863
remove 0 6864
remove 0 6865
remove 0 6866
remove 0 6867
remove 0 6868
remove 0 6869
remove 0 6870
remove 0 6871
remove 0 6872
remove 0 6873
remove 0 6874
remove 0 6875
remove 0 6876
remove 0 6877
remove 0 6878
remove 0 6879
remove 0 6880
remove 0 6881
remove 0 6882
remove 0 6883
remove 0 6884
remove 0 6885
remove 0 6886
remove 0 6887
remove 0 6888
remove 0 6889
remove 0 6890
remove 0 6891
remove 0 6892
remove 0 6893
remove 0 6894
remove 0 6895
remove 0 6896
remove 0 6897
remove 0 6898
remove 0 6899
remove 0 6900
remove 0 6901
remove 0 6902
remove 0 6903
remove 0 6904
remove 0 6905
remove 0 6906
remove 0 6907
remove 0 6908
remove 0 6909
remove 0 6910
remove 0 6911
remove 0 6912
remove 0 6913
remove 0 6914
remove 0 6915
remove 0 6916
remove 0 6917
remove 0 6918
remove 0 6919
remove 0 6920
remove 0 6921
remove 0 6922
remove 0 6923
remove 0 6924
remove 0 6925
remove 0 6926
remove 0 6927
remove 0 6928
remove 0 6929
remove 0 6930
remove 0 6931
remove 0 6932
remove 0 6933
remove 0 6934
remove 0 6935
remove 0 6936
remove 0 6937
remove 0 6938
remove 0 6939
remove 0 6940
remove 0 6941
remove 0 6942
remove 0 6943
remove 0 6944
remove 0 6945
remove 0 6946
remove 0 6947
remove 0 6948
remove 0 6949
remove 0 6950
remove 0 6951
remove 0 6952
remove 0 6953
remove 0 6954
remove 0 6955
remove 0 6956
remove 0 6957
remove 0 6958
remove 0 6959
remove 0 6960
remove 0 6961
remove 0 6962
remove 0 6963
remove 0 6964
remove 0 6965
remove 0 6966
remove 0 6967
remove 0 6968
remove 0 6969
remove 0 6970
remove 0 6971
remove 0 6972
remove 0 6973
remove 0 6974
remove 0 6975
remove 0 6976
remove 0 6977
remove 0 6978
remove 0 6979
remove 0 6980
remove 0 6981
remove 0 6982
remove 0 6983
remove 0 6984
remove 0 6985
remove 0 6986
remove 0 6987
remove 0 6988
remove 0 6989
remove 0 6990
remove 0 6991
remove 0 6992
remove 0 6993
remove 0 6994
remove 0 6995
remove 0 6996
remove 0 6997
remove 0 6998
remove 0 6999
remove 0 7000
remove 0 7001
remove 0 7002
remove 0 7003
remove 0 7004
remove 0 7005
remove 0 7006
remove 0 7007
remove 0 7008
remove 0 7009
remove 0 7010
remove 0 7011
remove 0 7012
remove 0 7013
remove 0 7014
remove 0 7015
remove 0 7016
remove 0 7017
remove 0 7018
remove 0 7019
remove 0 7020
remove 0 7021
remove 0 7022
remove 0 7023
remove 0 7024
remove 0 7025
remove 0 7026
remove 0 7027
remove 0 7028
remove 0 7029
remove 0 7030
remove 0 7031
remove 0 7032
remove 0 7033
remove 0 7034
remove 0 7035
remove 0 7036
remove 0 7037
remove 0 7038
remove 0 7039
remove 0 7040
remove 0 7041
remove 0 7042
remove 0 7043
remove 0 7044
remove 0 7045
remove 0 7046
remove 0 7047
remove 0 7048
remove 0 7049
remove 0 7050
remove 0 7051
remove 0 7052
remove 0 7053
remove 0 7054
remove 0 7055
remove 0 7056
remove 0 7057
remove 0 7058
remove 0 7059
remove 0 7060
remove 0 7061
remove 0 7062
remove 0 7063
remove 0 7064
remove 0 7065
remove 0 7066
remove 0 7067
remove 0 7068
remove 0 7069
remove 0 7070
remove 0 7071
remove 0 7072
remove 0 7073
remove 0 7074
remove 0 7075
remove 0 7076
remove 0 7077
remove 0 7078
remove 0 7079
remove 0 7080
remove 0 7081
remove 0 7082
remove 0 7083
remove 0 7084
remove 0 7085
remove 0 7086
remove 0 7087
remove 0 7088
remove 0 7089
remove 0 7090
remove 0 7091
remove 0 7092
remove 0 7093
remove 0 7094
remove 0 7095
remove 0 7096
remove 0 7097
remove 0 7098
remove 0 7099
remove 0 7100
remove 0 7101
remove 0 7102
remove 0 7103
remove 0 7104
remove 0 7105
remove 0 7106
remove 0 7107
remove 0 7108
remove 0 7109
remove 0 7110
remove 0 7111
remove 0 7112
remove 0 7113
remove 0 7114
remove 0 7115
remove 0 7116
remove 0 7117
remove 0 7118
remove 0 7119
remove 0 7120
remove 0 7121
remove 0 7122
remove 0 7123
remove 0 7124
remove 0 7125
remove 0 7126
remove 0 7127
remove 0 7128
remove 0 7129
remove 0 7130
remove 0 7131
remove 0 7132
remove 0 7133
remove 0 7134
remove 0 7135
remove 0 7136
remove 0 7137
remove 0 7138
remove 0 7139
remove 0 7140
remove 0 7141
remove 0 7142
remove 0 7143
remove 0 7144
remove 0 7145
remove 0 7146
remove 0 7147
remove 0 7148
remove 0 7149
remove 0 7150
remove 0 7151
remove 0 7152
remove 0 7153
remove 0 7154
remove 0 7155
remove 0 7156
remove 0 7157
remove 0 7158
remove 0 7159
remove 0 7160
remove 0 7161
remove 0 7162
remove 0 7163
remove 0 7164
remove 0 7165
remove 0 7166
remove 0 7167
remove 0 7168
remove 0 7169
remove 0 7170
remove 0 7171
remove 0 7172
remove 0 7173
remove 0 7174
remove 0 7175
remove 0 7176
remove 0 7177
remove 0 7178
remove 0 7179
remove 0 7180
remove 0 7181
remove 0 7182
remove 0 7183
remove 0 7184
remove 0 7185
remove 0 7186
remove 0 7187
remove 0 7188
remove 0 7189
remove 0 7190
remove 0 7191
remove 0 7192
remove 0 7193
remove 0 7194
remove 0 7195
remove 0 7196
remove 0 7197
remove 0 7198
remove 0 7199
remove 0 7200
remove 0 7201
remove 0 7202
remove 0 7203
remove 0 7204
remove 0 7205
remove 0 7206
remove 0 7207
remove 0 7208
remove 0 7209
remove 0 7210
remove 0 7211
remove 0 7212
remove 0 7213
remove 0 7214
remove 0 7215
remove 0 7216
remove 0 7217
remove 0 7218
remove 0 7219
remove 0 7220
remove 0 7221
remove 0 7222
remove 0 7223
remove 0 7224
remove 0 7225
remove 0 7226
remove 0 7227
remove 0 7228
remove 0 7229
remove 0 7230
remove 0 7231
remove 0 7232
remove 0 7233
remove 0 7234
remove 0 7235
remove 0 7236
remove 0 7237
remove 0 7238
remove 0 7239
remove 0 7240
remove 0 7241
remove 0 7242
remove 0 7243
remove 0 7244
remove 0 7245
remove 0 7246
remove 0 7247
remove 0 7248
remove 0 7249
remove 0 7250
remove 0 7251
remove 0 7252
remove 0 7253
remove 0 7254
remove 0 7255
remove 0 7256
remove 0 7257
remove 0 7258
remove 0 7259
remove 0 7260
remove 0 7261
remove 0 7262
remove 0 7263
remove 0 7264
remove 0 7265
remove 0 7266
remove 0 7267
remove 0 7268
remove 0 7269
remove 0 7270
remove 0 7271
remove 0 7272
remove 0 7273
remove 0 7274
remove 0 7275
remove 0 7276
remove 0 7277
remove 0 7278
remove 0 7279
remove 0 7280
remove 0 7281
remove 0 7282
remove 0 7283
remove 0 7284
remove 0 7285
remove 0 7286
remove 0 7287
remove 0 7288
remove 0 7289
remove 0 7290
remove 0 7291
remove 0 7292
remove 0 7293
remove 0 7294
remove 0 7295
remove 0 7296
remove 0 7297
remove 0 7298
remove 0 7299
remove 0 7300
remove 0 7301
remove 0 7302
remove 0 7303
remove 0 7304
remove 0 7305
remove 0 7306
remove 0 7307
remove 0 7308
remove 0 7309
remove 0 7310
remove 0 7311
remove 0 7312
remove 0 7313
remove 0 7314
remove 0 7315
remove 0 7316
remove 0 7317
remove 0 7318
remove 0 7319
remove 0 7320
remove 0 7321
remove 0 7322
remove 0 7323
remove 0 7324
remove 0 7325
remove 0 7326
remove 0 7327
remove 0 7328
remove 0 7329
remove 0 7330
remove 0 7331
remove 0 7332
remove 0 7333
remove 0 7334
remove 0 7335
remove 0 7336
remove 0 7337
remove 0 7338
remove 0 7339
remove 0 7340
remove 0 7341
remove 0 7342
remove 0 7343
remove 0 7344
remove 0 7345
remove 0 7346
remove 0 7347
remove 0 7348
remove 0 7349
remove 0 7350
remove 0 7351
remove 0 7352
remove 0 7353
remove 0 7354
remove 0 7355
remove 0 7356
remove 0 7357
remove 0 7358
remove 0 7359
remove 0 7360
remove 0 7361
remove 0 7362
remove 0 7363
remove 0 7364
remove 0 7365
remove 0 7366
remove 0 7367
remove 0 7368
remove 0 7369
remove 0 7370
remove 0 7371
remove 0 7372
remove 0 7373
remove 0 7374
remove 0 7375
remove 0 7376
remove 0 7377
remove 0 7378
remove 0 7379
remove 0 7380
remove 0 7381
remove 0 7382
remove 0 7383
remove 0 7384
remove 0 7385
remove 0 7386
remove 0 7387
remove 0 7388
remove 0 7389
remove 0 7390
remove 0 7391
remove 0 7392
remove 0 7393
remove 0 7394
remove 0 7395
remove 0 7396
remove 0 7397
remove 0 7398
remove 0 7399
remove 0 7400
remove 0 7401
remove 0 7402
remove 0 7403
remove 0 7404
remove 0 7405
remove 0 7406
remove 0 7407
remove 0 7408
remove 0 7409
remove 0 7410
remove 0 7411
remove 0 7412
remove 0 7413
remove 0 7414
remove 0 7415
remove 0 7416
remove 0 7417
remove 0 7418
remove 0 7419
remove 0 7420
remove 0 7421
remove 0 7422
remove 0 7423
remove 0 7424
remove 0 7425
remove 0 7426
remove 0 7427
remove 0 7428
remove 0 7429
remove 0 7430
remove 0 7431
remove 0 7432
remove 0 7433
remove 0 7434
remove 0 7435
remove 0 7436
remove 0 7437
remove 0 7438
remove 0 7439
remove 0 7440
remove 0 7441
remove 0 7442
remove 0 7443
remove 0 7444
remove 0 7445
remove 0 7446
remove 0 7447
remove 0 7448
remove 0 7449
remove 0 7450
remove 0 7451
remove 0 7452
remove 0 7453
remove 0 7454
remove 0 7455
remove 0 7456
remove 0 7457
remove 0 7458
remove 0 7459
remove 0 7460
remove 0 7461
remove 0 7462
remove 0 7463
remove 0 7464
remove 0 7465
remove 0 7466
remove 0 7467
remove 0 7468
remove 0 7469
remove 0 7470
remove 0 7471
remove 0 7472
remove 0 7473
remove 0 7474
remove 0 7475
remove 0 7476
remove 0 7477
remove 0 7478
remove 0 7479
remove 0 7480
remove 0 7481
remove 0 7482
remove 0 7483
remove 0 7484
remove 0 7485
remove 0 7486
remove 0 7487
remove 0 7488
remove 0 7489
remove 0 7490
remove 0 7491
remove 0 7492
remove 0 7493
remove 0 7494
remove 0 7495
remove 0 7496
remove 0 7497
remove 0 7498
remove 0 7499
remove 0 7500
remove 0 7501
remove 0 7502
remove 0 7503
remove 0 7504
remove 0 7505
remove 0 7506
remove 0 7507
remove 0 7508
remove 0 7509
remove 0 7510
remove 0 7511
remove 0 7512
remove 0 7513
remove 0 7514
remove 0 7515
remove 0 7516
remove 0 7517
remove 0 7518
remove 0 7519
remove 0 7520
remove 0 7521
remove 0 7522
remove 0 7523
remove 0 7524
remove 0 7525
remove 0 7526
remove 0 7527
remove 0 7528
remove 0 7529
remove 0 7530
remove 0 7531
remove 0 7532
remove 0 7533
remove 0 7534
remove 0 7535
remove 0 7536
remove 0 7537
remove 0 7538
remove 0 7539
remove 0 7540
remove 0 7541
remove 0 7542
remove 0 7543
remove 0 7544
remove 0 7545
remove 0 7546
remove 0 7547
remove 0 7548
remove 0 7549
remove 0 7550
remove 0 7551
remove 0 7552
remove 0 7553
remove 0 7554
remove 0 7555
remove 0 7556
remove 0 7557
remove 0 7558
remove 0 7559
remove 0 7560
remove 0 7561
remove 0 7562
remove 0 7563
remove 0 7564
remove 0 7565
remove 0 7566
remove 0 7567
remove 0 7568
remove 0 7569
remove 0 7570
remove 0 7571
remove 0 7572
remove 0 7573
remove 0 7574
remove 0 7575
remove 0 7576
remove 0 7577
remove 0 7578
remove 0 7579
remove 0 7580
remove 0 7581
remove 0 7582
remove 0 7583
remove 0 7584
remove 0 7585
remove 0 7586
remove 0 7587
remove 0 7588
remove 0 7589
remove 0 7590
remove 0 7591
remove 0 7592
remove 0 7593
remove 0 7594
remove 0 7595
remove 0 7596
remove 0 7597
remove 0 7598
remove 0 7599
remove 0 7600
remove 0 7601
remove 0 7602
remove 0 7603
remove 0 7604
remove 0 7605
remove 0 7606
remove 0 7607
remove 0 7608
remove 0 7609
remove 0 7610
remove 0 7611
remove 0 7612
remove 0 7613
remove 0 7614
remove 0 7615
remove 0 7616
remove 0 7617
remove 0 7618
remove 0 7619
remove 0 7620
remove 0 7621
remove 0 7622
remove 0 7623
remove 0 7624
remove 0 7625
remove 0 7626
remove 0 7627
remove 0 7628
remove 0 7629
remove 0 7630
remove 0 7631
remove 0 7632
remove 0 7633
remove 0 7634
remove 0 7635
remove 0 7636
remove 0 7637
remove 0 7638
remove 0 7639
remove 0 7640
remove 0 7641
remove 0 7642
remove 0 7643
remove 0 7644
remove 0 7645
remove 0 7646
remove 0 7647
remove 0 7648
remove 0 7649
remove 0 7650
remove 0 7651
remove 0 7652
remove 0 7653
remove 0 7654
remove 0 7655
remove 0 7656
remove 0 7657
remove 0 7658
remove 0 7659
remove 0 7660
remove 0 7661
remove 0 7662
remove 0 7663
remove 0 7664
remove 0 7665
remove 0 7666
remove 0 7667
remove 0 7668
remove 0 7669
remove 0 7670
remove 0 7671
remove 0 7672
remove 0 7673
remove 0 7674
remove 0 7675
remove 0 7676
remove 0 7677
remove 0 7678
remove 0 7679
remove 0 7680
remove 0 7681
remove 0 7682
remove 0 7683
remove 0 7684
remove 0 7685
remove 0 7686
remove 0 7687
remove 0 7688
remove 0 7689
remove 0 7690
remove 0 7691
remove 0 7692
remove 0 7693
remove 0 7694
remove 0 7695
remove 0 7696
remove 0 7697
remove 0 7698
remove 0 7699
remove 0 7700
remove 0 7701
remove 0 7702
remove 0 7703
remove 0 7704
remove 0 7705
remove 0 7706
remove 0 7707
remove 0 7708
remove 0 7709
remove 0 7710
remove 0 7711
remove 0 7712
remove 0 7713
remove 0 7714
remove 0 7715
remove 0 7716
remove 0 7717
remove 0 7718
remove 0 7719
remove 0 7720
remove 0 7721
remove 0 7722
remove 0 7723
remove 0 7724
remove 0 7725
remove 0 7726
remove 0 7727
remove 0 7728
remove 0 7729
remove 0 7730
remove 0 7731
remove 0 7732
remove 0 7733
remove 0 7734
remove 0 7735
remove 0 7736
remove 0 7737
remove 0 7738
remove 0 7739
remove 0 7740
remove 0 7741
remove 0 7742
remove 0 7743
remove 0 7744
remove 0 7745
remove 0 7746
remove 0 7747
remove 0 7748
remove 0 7749
remove 0 7750
remove 0 7751
remove 0 7752
remove 0 7753
remove 0 7754
remove 0 7755
remove 0 7756
remove 0 7757
remove 0 7758
remove 0 7759
remove 0 7760
remove 0 7761
remove 0 7762
remove 0 7763
remove 0 7764
remove 0 7765
remove 0 7766
remove 0 7767
remove 0 7768
remove 0 7769
remove 0 7770
remove 0 7771
remove 0 7772
remove 0 7773
remove 0 7774
remove 0 7775
remove 0 7776
remove 0 7777
remove 0 7778
remove 0 7779
remove 0 7780
remove 0 7781
remove 0 7782
remove 0 7783
remove 0 7784
remove 0 7785
remove 0 7786
remove 0 7787
remove 0 7788
remove 0 7789
remove 0 7790
remove 0 7791
remove 0 7792
remove 0 7793
remove 0 7794
remove 0 7795
remove 0 7796
remove 0 7797
remove 0 7798
remove 0 7799
remove 0 7800
remove 0 7801
remove 0 7802
remove 0 7803
remove 0 7804
remove 0 7805
remove 0 7806
remove 0 7807
remove 0 7808
remove 0 7809
remove 0 7810
remove 0 7811
remove 0 7812
remove 0 7813
remove 0 7814
remove 0 7815
remove 0 7816
remove 0 7817
remove 0 7818
remove 0 7819
remove 0 7820
remove 0 7821
remove 0 7822
remove 0 7823
remove 0 7824
remove 0 7825
remove 0 7826
remove 0 7827
remove 0 7828
remove 0 7829
remove 0 7830
remove 0 7831
remove 0 7832
remove 0 7833
remove 0 7834
remove 0 7835
remove 0 7836
remove 0 7837
remove 0 7838
remove 0 7839
remove 0 7840
remove 0 7841
remove 0 7842
remove 0 7843
remove 0 7844
remove 0 7845
remove 0 7846
remove 0 7847
remove 0 7848
remove 0 7849
remove 0 7850
remove 0 7851
remove 0 7852
remove 0 7853
remove 0 7854
remove 0 7855
remove 0 7856
remove 0 7857
remove 0 7858
remove 0 7859
remove 0 7860
remove 0 7861
remove 0 7862
remove 0 7863
remove 0 7864
remove 0 7865
remove 0 7866
remove 0 7867
remove 0 7868
remove 0 7869
remove 0 7870
remove 0 7871
remove 0 7872
remove 0 7873
remove 0 7874
remove 0 7875
remove 0 7876
remove 0 7877
remove 0 7878
remove 0 7879
remove 0 7880
remove 0 7881
remove 0 7882
remove 0 7883
remove 0 7884
remove 0 7885
remove 0 7886
remove 0 7887
remove 0 7888
remove 0 7889
remove 0 7890
remove 0 7891
remove 0 7892
remove 0 7893
remove 0 7894
remove 0 7895
remove 0 7896
remove 0 7897
remove 0 7898
remove 0 7899
remove 0 7900
remove 0 7901
remove 0 7902
remove 0 7903
remove 0 7904
remove 0 7905
remove 0 7906
remove 0 7907
remove 0 7908
remove 0 7909
remove 0 7910
remove 0 7911
remove 0 7912
remove 0 7913
remove 0 7914
remove 0 7915
remove 0 7916
remove 0 7917
remove 0 7918
remove 0 7919
remove 0 7920
remove 0 7921
remove 0 7922
remove 0 7923
remove 0 7924
remove 0 7925
remove 0 7926
remove 0 7927
remove 0 7928
remove 0 7929
remove 0 7930
remove 0 7931
remove 0 7932
remove 0 7933
remove 0 7934
remove 0 7935
remove 0 7936
remove 0 7937
remove 0 7938
remove 0 7939
remove 0 7940
remove 0 7941
remove 0 7942
remove 0 7943
remove 0 7944
remove 0 7945
remove 0 7946
remove 0 7947
remove 0 7948
remove 0 7949
remove 0 7950
remove 0 7951
remove 0 7952
remove 0 7953
remove 0 7954
remove 0 7955
remove 0 7956
remove 0 7957
remove 0 7958
remove 0 7959
remove 0 7960
remove 0 7961
remove 0 7962
remove 0 7963
remove 0 7964
remove 0 7965
remove 0 7966
remove 0 7967
remove 0 7968
remove 0 7969
remove 0 7970
remove 0 7971
remove 0 7972
remove 0 7973
remove 0 7974
remove 0 7975
remove 0 7976
remove 0 7977
remove 0 7978
remove 0 7979
remove 0 7980
remove 0 7981
remove 0 7982
remove 0 7983
remove 0 7984
remove 0 7985
remove 0 7986
remove 0 7987
remove 0 7988
remove 0 7989
remove 0 7990
remove 0 7991
remove 0 7992
remove 0 7993
remove 0 7994
remove 0 7995
remove 0 7996
remove 0 7997
remove 0 7998
remove 0 7999
remove 0 8000
remove 0 8001
remove 0 8002
remove 0 8003
remove 0 8004
remove 0 8005
remove 0 8006
remove 0 8007
remove 0 8008
remove 0 8009
remove 0 8010
remove 0 8011
remove 0 8012
remove 0 8013
remove 0 8014
remove 0 8015
remove 0 8016
remove 0 8017
remove 0 8018
remove 0 8019
remove 0 8020
remove 0 8021
remove 0 8022
remove 0 8023
remove 0 8024
remove 0 8025
remove 0 8026
remove 0 8027
remove 0 8028
remove 0 8029
remove 0 8030
remove 0 8031
remove 0 8032
remove 0 8033
remove 0 8034
remove 0 8035
remove 0 8036
remove 0 8037
remove 0 8038
remove 0 8039
remove 0 8040
remove 0 8041
remove 0 8042
remove 0 8043
remove 0 8044
remove 0 8045
remove 0 8046
remove 0 8047
remove 0 8048
remove 0 8049
remove 0 8050
remove 0 8051
remove 0 8052
remove 0 8053
remove 0 8054
remove 0 8055
remove 0 8056
remove 0 8057
remove 0 8058
remove 0 8059
remove 0 8060
remove 0 8061
remove 0 8062
remove 0 8063
remove 0 8064
remove 0 8065
remove 0 8066
remove 0 8067
remove 0 8068
remove 0 8069
remove 0 8070
remove 0 8071
remove 0 8072
remove 0 8073
remove 0 8074
remove 0 8075
remove 0 8076
remove 0 8077
remove 0 8078
remove 0 8079
remove 0 8080
remove 0 8081
remove 0 8082
remove 0 8083
remove 0 8084
remove 0 8085
remove 0 8086
remove 0 8087
remove 0 8088
remove 0 8089
remove 0 8090
remove 0 8091
remove 0 8092
remove 0 8093
remove 0 8094
remove 0 8095
remove 0 8096
remove 0 8097
remove 0 8098
remove 0 8099
remove 0 8100
remove 0 8101
remove 0 8102
remove 0 8103
remove 0 8104
remove 0 8105
remove 0 8106
remove 0 8107
remove 0 8108
remove 0 8109
remove 0 8110
remove 0 8111
remove 0 8112
remove 0 8113
remove 0 8114
remove 0 8115
remove 0 8116
remove 0 8117
remove 0 8118
remove 0 8119
remove 0 8120
remove 0 8121
remove 0 8122
remove 0 8123
remove 0 8124
remove 0 8125
remove 0 8126
remove 0 8127
remove 0 8128
remove 0 8129
remove 0 8130
remove 0 8131
remove 0 8132
remove 0 8133
remove 0 8134
remove 0 8135
remove 0 8136
remove 0 8137
remove 0 8138
remove 0 8139
remove 0 8140
remove 0 8141
remove 0 8142
remove 0 8143
remove 0 8144
remove 0 8145
remove 0 8146
remove 0 8147
remove 0 8148
remove 0 8149
remove 0 8150
remove 0 8151
remove 0 8152
remove 0 8153
remove 0 8154
remove 0 8155
remove 0 8156
remove 0 8157
remove 0 8158
remove 0 8159
remove 0 8160
remove 0 8161
remove 0 8162
remove 0 8163
remove 0 8164
remove 0 8165
remove 0 8166
remove 0 8167
remove 0 8168
remove 0 8169
remove 0 8170
remove 0 8171
remove 0 8172
remove 0 8173
remove 0 8174
remove 0 8175
remove 0 8176
remove 0 8177
remove 0 8178
remove 0 8179
remove 0 8180
remove 0 8181
remove 0 8182
remove 0 8183
remove 0 8184
remove 0 8185
remove 0 8186
remove 0 8187
remove 0 8188
remove 0 8189
remove 0 8190
remove 0 8191
remove 0 8192
remove 0 8193
remove 0 8194
remove 0 8195
remove 0 8196
remove 0 8197
remove 0 8198
remove 0 8199
remove 0 8200
remove 0 8201
remove 0 8202
remove 0 8203
remove 0 8204
remove 0 8205
remove 0 8206
remove 0 8207
remove 0 8208
remove 0 8209
remove 0 8210
remove 0 8211
remove 0 8212
remove 0 8213
remove 0 8214
remove 0 8215
remove 0 8216
remove 0 8217
remove 0 8218
remove 0 8219
remove 0 8220
remove 0 8221
remove 0 8222
remove 0 8223
remove 0 8224
remove 0 8225
remove 0 8226
remove 0 8227
remove 0 8228
remove 0 8229
remove 0 8230
remove 0 8231
remove 0 8232
remove 0 8233
remove 0 8234
remove 0 8235
remove 0 8236
remove 0 8237
remove 0 8238
remove 0 8239
remove 0 8240
remove 0 8241
remove 0 8242
remove 0 8243
remove 0 8244
remove 0 8245
remove 0 8246
remove 0 8247
remove 0 8248
remove 0 8249
remove 0 8250
remove 0 8251
remove 0 8252
remove 0 8253
remove 0 8254
remove 0 8255
remove 0 8256
remove 0 8257
remove 0 8258
remove 0 8259
remove 0 8260
remove 0 8261
remove 0 8262
remove 0 8263
remove 0 8264
remove 0 8265
remove 0 8266
remove 0 8267
remove 0 8268
remove 0 8269
remove 0 8270
remove 0 8271
remove 0 8272
remove 0 8273
remove 0 8274
remove 0 8275
remove 0 8276
remove 0 8277
remove 0 8278
remove 0 8279
remove 0 8280
remove 0 8281
remove 0 8282
remove 0 8283
remove 0 8284
remove 0 8285
remove 0 8286
remove 0 8287
remove 0 8288
remove 0 8289
remove 0 8290
remove 0 8291
remove 0 8292
remove 0 8293
remove 0 8294
remove 0 8295
remove 0 8296
remove 0 8297
remove 0 8298
remove 0 8299
remove 0 8300
remove 0 8301
remove 0 8302
remove 0 8303
remove 0 8304
remove 0 8305
remove 0 8306
remove 0 8307
remove 0 8308
remove 0 8309
remove 0 8310
remove 0 8311
remove 0 8312
remove 0 8313
remove 0 8314
remove 0 8315
remove 0 8316
remove 0 8317
remove 0 8318
remove 0 8319
remove 0 8320
remove 0 8321
remove 0 8322
remove 0 8323
remove 0 8324
remove 0 8325
remove 0 8326
remove 0 8327
remove 0 8328
remove 0 8329
remove 0 8330
remove 0 8331
remove 0 8332
remove 0 8333
remove 0 8334
remove 0 8335
remove 0 8336
remove 0 8337
remove 0 8338
remove 0 8339
remove 0 8340
remove 0 8341
remove 0 8342
remove 0 8343
remove 0 8344
remove 0 8345
remove 0 8346
remove 0 8347
remove 0 8348
remove 0 8349
remove 0 8350
remove 0 8351
remove 0 8352
remove 0 8353
remove 0 8354
remove 0 8355
remove 0 8356
remove 0 8357
remove 0 8358
remove 0 8359
remove 0 8360
remove 0 8361
remove 0 8362
remove 0 8363
remove 0 8364
remove 0 8365
remove 0 8366
remove 0 8367
remove 0 8368
remove 0 8369
remove 0 8370
remove 0 8371
remove 0 8372
remove 0 8373
remove 0 8374
remove 0 8375
remove 0 8376
remove 0 8377
remove 0 8378
remove 0 8379
remove 0 8380
remove 0 8381
remove 0 8382
remove 0 8383
remove 0 8384
remove 0 8385
remove 0 8386
remove 0 8387
remove 0 8388
remove 0 8389
remove 0 8390
remove 0 8391
remove 0 8392
remove 0 8393
remove 0 8394
remove 0 8395
remove 0 8396
remove 0 8397
remove 0 8398
remove 0 8399
remove 0 8400
remove 0 8401
remove 0 8402
remove 0 8403
remove 0 8404
remove 0 8405
remove 0 8406
remove 0 8407
remove 0 8408
remove 0 8409
remove 0 8410
remove 0 8411
remove 0 8412
remove 0 8413
remove 0 8414
remove 0 8415
remove 0 8416
remove 0 8417
remove 0 8418
remove 0 8419
remove 0 8420
remove 0 8421
remove 0 8422
remove 0 8423
remove 0 8424
remove 0 8425
remove 0 8426
remove 0 8427
remove 0 8428
remove 0 8429
remove 0 8430
remove 0 8431
remove 0 8432
remove 0 8433
remove 0 8434
remove 0 8435
remove 0 8436
remove 0 8437
remove 0 8438
remove 0 8439
remove 0 8440
remove 0 8441
remove 0 8442
remove 0 8443
remove 0 8444
remove 0 8445
remove 0 8446
remove 0 8447
remove 0 8448
remove 0 8449
remove 0 8450
remove 0 8451
remove 0 8452
remove 0 8453
remove 0 8454
remove 0 8455
remove 0 8456
remove 0 8457
remove 0 8458
remove 0 8459
remove 0 8460
remove 0 8461
remove 0 8462
remove 0 8463
remove 0 8464
remove 0 8465
remove 0 8466
remove 0 8467
remove 0 8468
remove 0 8469
remove 0 8470
remove 0 8471
remove 0 8472
remove 0 8473
remove 0 8474
remove 0 8475
remove 0 8476
remove 0 8477
remove 0 8478
remove 0 8479
remove 0 8480
remove 0 8481
remove 0 8482
remove 0 8483
remove 0 8484
remove 0 8485
remove 0 8486
remove 0 8487
remove 0 8488
remove 0 8489
remove 0 8490
remove 0 8491
remove 0 8492
remove 0 8493
remove 0 8494
remove 0 8495
remove 0 8496
remove 0 8497
remove 0 8498
remove 0 8499
remove 0 8500
remove 0 8501
remove 0 8502
remove 0 8503
remove 0 8504
remove 0 8505
remove 0 8506
remove 0 8507
remove 0 8508
remove 0 8509
remove 0 8510
remove 0 8511
remove 0 8512
remove 0 8513
remove 0 8514
remove 0 8515
remove 0 8516
remove 0 8517
remove 0 8518
remove 0 8519
remove 0 8520
remove 0 8521
remove 0 8522
remove 0 8523
remove 0 8524
remove 0 8525
remove 0 8526
remove 0 8527
remove 0 8528
remove 0 8529
remove 0 8530
remove 0 8531
remove 0 8532
remove 0 8533
remove 0 8534
remove 0 8535
remove 0 8536
remove 0 8537
remove 0 8538
remove 0 8539
remove 0 8540
remove 0 8541
remove 0 8542
remove 0 8543
remove 0 8544
remove 0 8545
remove 0 8546
remove 0 8547
remove 0 8548
remove 0 8549
remove 0 8550
remove 0 8551
remove 0 8552
remove 0 8553
remove 0 8554
remove 0 8555
remove 0 8556
remove 0 8557
remove 0 8558
remove 0 8559
remove 0 8560
remove 0 8561
remove 0 8562
remove 0 8563
remove 0 8564
remove 0 8565
remove 0 8566
remove 0 8567
remove 0 8568
remove 0 8569
remove 0 8570
remove 0 8571
remove 0 8572
remove 0 8573
remove 0 8574
remove 0 8575
remove 0 8576
remove 0 8577
remove 0 8578
remove 0 8579
remove 0 8580
remove 0 8581
remove 0 8582
remove 0 8583
remove 0 8584
remove 0 8585
remove 0 8586
remove 0 8587
remove 0 8588
remove 0 8589
remove 0 8590
remove 0 8591
remove 0 8592
remove 0 8593
remove 0 8594
remove 0 8595
remove 0 8596
remove 0 8597
remove 0 8598
remove 0 8599
remove 0 8600
remove 0 8601
remove 0 8602
remove 0 8603
remove 0 8604
remove 0 8605
remove 0 8606
remove 0 8607
remove 0 8608
remove 0 8609
remove 0 8610
remove 0 8611
remove 0 8612
remove 0 8613
remove 0 8614
remove 0 8615
remove 0 8616
remove 0 8617
remove 0 8618
remove 0 8619
remove 0 8620
remove 0 8621
remove 0 8622
remove 0 8623
remove 0 8624
remove 0 8625
remove 0 8626
remove 0 8627
remove 0 8628
remove 0 8629
remove 0 8630
remove 0 8631
remove 0 8632
remove 0 8633
remove 0 8634
remove 0 8635
remove 0 8636
remove 0 8637
remove 0 8638
remove 0 8639
remove 0 8640
remove 0 8641
remove 0 8642
remove 0 8643
remove 0 8644
remove 0 8645
remove 0 8646
remove 0 8647
remove 0 8648
remove 0 8649
remove 0 8650
remove 0 8651
remove 0 8652
remove 0 8653
remove 0 8654
remove 0 8655
remove 0 8656
remove 0 8657
remove 0 8658
remove 0 8659
remove 0 8660
remove 0 8661
remove 0 8662
remove 0 8663
remove 0 8664
remove 0 8665
remove 0 8666
remove 0 8667
remove 0 8668
remove 0 8669
remove 0 8670
remove 0 8671
remove 0 8672
remove 0 8673
remove 0 8674
remove 0 8675
remove 0 8676
remove 0 8677
remove 0 8678
remove 0 8679
remove 0 8680
remove 0 8681
remove 0 8682
remove 0 8683
remove 0 8684
remove 0 8685
remove 0 8686
remove 0 8687
remove 0 8688
remove 0 8689
remove 0 8690
remove 0 8691
remove 0 8692
remove 0 8693
remove 0 8694
remove 0 8695
remove 0 8696
remove 0 8697
remove 0 8698
remove 0 8699
remove 0 8700
remove 0 8701
remove 0 8702
remove 0 8703
remove 0 8704
remove 0 8705
remove 0 8706
remove 0 8707
remove 0 8708
remove 0 8709
remove 0 8710
remove 0 8711
remove 0 8712
remove 0 8713
remove 0 8714
remove 0 8715
remove 0 8716
remove 0 8717
remove 0 8718
remove 0 8719
remove 0 8720
remove 0 8721
remove 0 8722
remove 0 8723
remove 0 8724
remove 0 8725
remove 0 8726
remove 0 8727
remove 0 8728
remove 0 8729
remove 0 8730
remove 0 8731
remove 0 8732
remove 0 8733
remove 0 8734
remove 0 8735
remove 0 8736
remove 0 8737
remove 0 8738
remove 0 8739
remove 0 8740
remove 0 8741
remove 0 8742
remove 0 8743
remove 0 8744
remove 0 8745
remove 0 8746
remove 0 8747
remove 0 8748
remove 0 8749
remove 0 8750
remove 0 8751
remove 0 8752
remove 0 8753
remove 0 8754
remove 0 8755
remove 0 8756
remove 0 8757
remove 0 8758
remove 0 8759
remove 0 8760
remove 0 8761
remove 0 8762
remove 0 8763
remove 0 8764
remove 0 8765
remove 0 8766
remove 0 8767
remove 0 8768
remove 0 8769
remove 0 8770
remove 0 8771
remove 0 8772
remove 0 8773
remove 0 8774
remove 0 8775
remove 0 8776
remove 0 8777
remove 0 8778
remove 0 8779
remove 0 8780
remove 0 8781
remove 0 8782
remove 0 8783
remove 0 8784
remove 0 8785
remove 0 8786
remove 0 8787
remove 0 8788
remove 0 8789
remove 0 8790
remove 0 8791
remove 0 8792
remove 0 8793
remove 0 8794
remove 0 8795
remove 0 8796
remove 0 8797
remove 0 8798
remove 0 8799
remove 0 8800
remove 0 8801
remove 0 8802
remove 0 8803
remove 0 8804
remove 0 8805
remove 0 8806
remove 0 8807
remove 0 8808
remove 0 8809
remove 0 8810
remove 0 8811
remove 0 8812
remove 0 8813
remove 0 8814
remove 0 8815
remove 0 8816
remove 0 8817
remove 0 8818
remove 0 8819
remove 0 8820
remove 0 8821
remove 0 8822
remove 0 8823
remove 0 8824
remove 0 8825
remove 0 8826
remove 0 8827
remove 0 8828
remove 0 8829
remove 0 8830
remove 0 8831
remove 0 8832
remove 0 8833
remove 0 8834
remove 0 8835
remove 0 8836
remove 0 8837
remove 0 8838
remove 0 8839
remove 0 8840
remove 0 8841
remove 0 8842
remove 0 8843
remove 0 8844
remove 0 8845
remove 0 8846
remove 0 8847
remove 0 8848
remove 0 8849
remove 0 8850
remove 0 8851
remove 0 8852
remove 0 8853
remove 0 8854
remove 0 8855
remove 0 8856
remove 0 8857
remove 0 8858
remove 0 8859
remove 0 8860
remove 0 8861
remove 0 8862
remove 0 8863
remove 0 8864
remove 0 8865
remove 0 8866
remove 0 8867
remove 0 8868
remove 0 8869
remove 0 8870
remove 0 8871
remove 0 8872
remove 0 8873
remove 0 8874
remove 0 8875
remove 0 8876
remove 0 8877
remove 0 8878
remove 0 8879
remove 0 8880
remove 0 8881
remove 0 8882
remove 0 8883
remove 0 8884
remove 0 8885
remove 0 8886
remove 0 8887
remove 0 8888
remove 0 8889
remove 0 8890
remove 0 8891
remove 0 8892
remove 0 8893
remove 0 8894
remove 0 8895
remove 0 8896
remove 0 8897
remove 0 8898
remove 0 8899
remove 0 8900
remove 0 8901
remove 0 8902
remove 0 8903
remove 0 8904
remove 0 8905
remove 0 8906
remove 0 8907
remove 0 8908
remove 0 8909
remove 0 8910
remove 0 8911
remove 0 8912
remove 0 8913
remove 0 8914
remove 0 8915
remove 0 8916
remove 0 8917
remove 0 8918
remove 0 8919
remove 0 8920
remove 0 8921
remove 0 8922
remove 0 8923
remove 0 8924
remove 0 8925
remove 0 8926
remove 0 8927
remove 0 8928
remove 0 8929
remove 0 8930
remove 0 8931
remove 0 8932
remove 0 8933
remove 0 8934
remove 0 8935
remove 0 8936
remove 0 8937
remove 0 8938
remove 0 8939
remove 0 8940
remove 0 8941
remove 0 8942
remove 0 8943
remove 0 8944
remove 0 8945
remove 0 8946
remove 0 8947
remove 0 8948
remove 0 8949
remove 0 8950
remove 0 8951
remove 0 8952
remove 0 8953
remove 0 8954
remove 0 8955
remove 0 8956
remove 0 8957
remove 0 8958
remove 0 8959
remove 0 8960
remove 0 8961
remove 0 8962
remove 0 8963
remove 0 8964
remove 0 8965
remove 0 8966
remove 0 8967
remove 0 8968
remove 0 8969
remove 0 8970
remove 0 8971
remove 0 8972
remove 0 8973
remove 0 8974
remove 0 8975
remove 0 8976
remove 0 8977
remove 0 8978
remove 0 8979
remove 0 8980
remove 0 8981
remove 0 8982
remove 0 8983
remove 0 8984
remove 0 8985
remove 0 8986
remove 0 8987
remove 0 8988
remove 0 8989
remove 0 8990
remove 0 8991
remove 0 8992
remove 0 8993
remove 0 8994
remove 0 8995
remove 0 8996
remove 0 8997
remove 0 8998
remove 0 8999
remove 0 9000
remove 0 9001
remove 0 9002
remove 0 9003
remove 0 9004
remove 0 9005
remove 0 9006
remove 0 9007
remove 0 9008
remove 0 9009
remove 0 9010
remove 0 9011
remove 0 9012
remove 0 9013
remove 0 9014
remove 0 9015
remove 0 9016
remove 0 9017
remove 0 9018
remove 0 9019
remove 0 9020
remove 0 9021
remove 0 9022
remove 0 9023
remove 0 9024
remove 0 9025
remove 0 9026
remove 0 9027
remove 0 9028
remove 0 9029
remove 0 9030
remove 0 9031
remove 0 9032
remove 0 9033
remove 0 9034
remove 0 9035
remove 0 9036
remove 0 9037
remove 0 9038
remove 0 9039
remove 0 9040
remove 0 9041
remove 0 9042
remove 0 9043
remove 0 9044
remove 0 9045
remove 0 9046
remove 0 9047
remove 0 9048
remove 0 9049
remove 0 9050
remove 0 9051
remove 0 9052
remove 0 9053
remove 0 9054
remove 0 9055
remove 0 9056
remove 0 9057
remove 0 9058
remove 0 9059
remove 0 9060
remove 0 9061
remove 0 9062
remove 0 9063
remove 0 9064
remove 0 9065
remove 0 9066
remove 0 9067
remove 0 9068
remove 0 9069
remove 0 9070
remove 0 9071
remove 0 9072
remove 0 9073
remove 0 9074
remove 0 9075
remove 0 9076
remove 0 9077
remove 0 9078
remove 0 9079
remove 0 9080
remove 0 9081
remove 0 9082
remove 0 9083
remove 0 9084
remove 0 9085
remove 0 9086
remove 0 9087
remove 0 9088
remove 0 9089
remove 0 9090
remove 0 9091
remove 0 9092
remove 0 9093
remove 0 9094
remove 0 9095
remove 0 9096
remove 0 9097
remove 0 9098
remove 0 9099
remove 0 9100
remove 0 9101
remove 0 9102
remove 0 9103
remove 0 9104
remove 0 9105
remove 0 9106
remove 0 9107
remove 0 9108
remove 0 9109
remove 0 9110
remove 0 9111
remove 0 9112
remove 0 9113
remove 0 9114
remove 0 9115
remove 0 9116
remove 0 9117
remove 0 9118
remove 0 9119
remove 0 9120
remove 0 9121
remove 0 9122
remove 0 9123
remove 0 9124
remove 0 9125
remove 0 9126
remove 0 9127
remove 0 9128
remove 0 9129
remove 0 9130
remove 0 9131
remove 0 9132
remove 0 9133
remove 0 9134
remove 0 9135
remove 0 9136
remove 0 9137
remove 0 9138
remove 0 9139
remove 0 9140
remove 0 9141
remove 0 9142
remove 0 9143
remove 0 9144
remove 0 9145
remove 0 9146
remove 0 9147
remove 0 9148
remove 0 9149
remove 0 9150
remove 0 9151
remove 0 9152
remove 0 9153
remove 0 9154
remove 0 9155
remove 0 9156
remove 0 9157
remove 0 9158
remove 0 9159
remove 0 9160
remove 0 9161
remove 0 9162
remove 0 9163
remove 0 9164
remove 0 9165
remove 0 9166
remove 0 9167
remove 0 9168
remove 0 9169
remove 0 9170
remove 0 9171
remove 0 9172
remove 0 9173
remove 0 9174
remove 0 9175
remove 0 9176
remove 0 9177
remove 0 9178
remove 0 9179
remove 0 9180
remove 0 9181
remove 0 9182
remove 0 9183
remove 0 9184
remove 0 9185
remove 0 9186
remove 0 9187
remove 0 9188
remove 0 9189
remove 0 9190
remove 0 9191
remove 0 9192
remove 0 9193
remove 0 9194
remove 0 9195
remove 0 9196
remove 0 9197
remove 0 9198
remove 0 9199
remove 0 9200
remove 0 9201
remove 0 9202
remove 0 9203
remove 0 9204
remove 0 9205
remove 0 9206
remove 0 9207
remove 0 9208
remove 0 9209
remove 0 9210
remove 0 9211
remove 0 9212
remove 0 9213
remove 0 9214
remove 0 9215
remove 0 9216
remove 0 9217
remove 0 9218
remove 0 9219
remove 0 9220
remove 0 9221
remove 0 9222
remove 0 9223
remove 0 9224
remove 0 9225
remove 0 9226
remove 0 9227
remove 0 9228
remove 0 9229
remove 0 9230
remove 0 9231
remove 0 9232
remove 0 9233
remove 0 9234
remove 0 9235
remove 0 9236
remove 0 9237
remove 0 9238
remove 0 9239
remove 0 9240
remove 0 9241
remove 0 9242
remove 0 9243
remove 0 9244
remove 0 9245
remove 0 9246
remove 0 9247
remove 0 9248
remove 0 9249
remove 0 9250
remove 0 9251
remove 0 9252
remove 0 9253
remove 0 9254
remove 0 9255
remove 0 9256
remove 0 9257
remove 0 9258
remove 0 9259
remove 0 9260
remove 0 9261
remove 0 9262
remove 0 9263
remove 0 9264
remove 0 9265
remove 0 9266
remove 0 9267
remove 0 9268
remove 0 9269
remove 0 9270
remove 0 9271
remove 0 9272
remove 0 9273
remove 0 9274
remove 0 9275
remove 0 9276
remove 0 9277
remove 0 9278
remove 0 9279
remove 0 9280
remove 0 9281
remove 0 9282
remove 0 9283
remove 0 9284
remove 0 9285
remove 0 9286
remove 0 9287
remove 0 9288
remove 0 9289
remove 0 9290
remove 0 9291
remove 0 9292
remove 0 9293
remove 0 9294
remove 0 9295
remove 0 9296
remove 0 9297
remove 0 9298
remove 0 9299
remove 0 9300
remove 0 9301
remove 0 9302
remove 0 9303
remove 0 9304
remove 0 9305
remove 0 9306
remove 0 9307
remove 0 9308
remove 0 9309
remove 0 9310
remove 0 9311
remove 0 9312
remove 0 9313
remove 0 9314
remove 0 9315
remove 0 9316
remove 0 9317
remove 0 9318
remove 0 9319
remove 0 9320
remove 0 9321
remove 0 9322
remove 0 9323
remove 0 9324
remove 0 9325
remove 0 9326
remove 0 9327
remove 0 9328
remove 0 9329
remove 0 9330
remove 0 9331
remove 0 9332
remove 0 9333
remove 0 9334
remove 0 9335
remove 0 9336
remove 0 9337
remove 0 9338
remove 0 9339
remove 0 9340
remove 0 9341
remove 0 9342
remove 0 9343
remove 0 9344
remove 0 9345
remove 0 9346
remove 0 9347
remove 0 9348
remove 0 9349
remove 0 9350
remove 0 9351
remove 0 9352
remove 0 9353
remove 0 9354
remove 0 9355
remove 0 9356
remove 0 9357
remove 0 9358
remove 0 9359
remove 0 9360
remove 0 9361
remove 0 9362
remove 0 9363
remove 0 9364
remove 0 9365
remove 0 9366
remove 0 9367
remove 0 9368
remove 0 9369
remove 0 9370
remove 0 9371
remove 0 9372
remove 0 9373
remove 0 9374
remove 0 9375
remove 0 9376
remove 0 9377
remove 0 9378
remove 0 9379
remove 0 9380
remove 0 9381
remove 0 9382
remove 0 9383
remove 0 9384
remove 0 9385
remove 0 9386
remove 0 9387
remove 0 9388
remove 0 9389
remove 0 9390
remove 0 9391
remove 0 9392
remove 0 9393
remove 0 9394
remove 0 9395
remove 0 9396
remove 0 9397
remove 0 9398
remove 0 9399
remove 0 9400
remove 0 9401
remove 0 9402
remove 0 9403
remove 0 9404
remove 0 9405
remove 0 9406
remove 0 9407
remove 0 9408
remove 0 9409
remove 0 9410
remove 0 9411
remove 0 9412
remove 0 9413
remove 0 9414
remove 0 9415
remove 0 9416
remove 0 9417
remove 0 9418
remove 0 9419
remove 0 9420
remove 0 9421
remove 0 9422
remove 0 9423
remove 0 9424
remove 0 9425
remove 0 9426
remove 0 9427
remove 0 9428
remove 0 9429
remove 0 9430
remove 0 9431
remove 0 9432
remove 0 9433
remove 0 9434
remove 0 9435
remove 0 9436
remove 0 9437
remove 0 9438
remove 0 9439
remove 0 9440
remove 0 9441
remove 0 9442
remove 0 9443
remove 0 9444
remove 0 9445
remove 0 9446
remove 0 9447
remove 0 9448
remove 0 9449
remove 0 9450
remove 0 9451
remove 0 9452
remove 0 9453
remove 0 9454
remove 0 9455
remove 0 9456
remove 0 9457
remove 0 9458
remove 0 9459
remove 0 9460
remove 0 9461
remove 0 9462
remove 0 9463
remove 0 9464
remove 0 9465
remove 0 9466
remove 0 9467
remove 0 9468
remove 0 9469
remove 0 9470
remove 0 9471
remove 0 9472
remove 0 9473
remove 0 9474
remove 0 9475
remove 0 9476
remove 0 9477
remove 0 9478
remove 0 9479
remove 0 9480
remove 0 9481
remove 0 9482
remove 0 9483
remove 0 9484
remove 0 9485
remove 0 9486
remove 0 9487
remove 0 9488
remove 0 9489
remove 0 9490
remove 0 9491
remove 0 9492
remove 0 9493
remove 0 9494
remove 0 9495
remove 0 9496
remove 0 9497
remove 0 9498
remove 0 9499
remove 0 9500
remove 0 9501
remove 0 9502
remove 0 9503
remove 0 9504
remove 0 9505
remove 0 9506
remove 0 9507
remove 0 9508
remove 0 9509
remove 0 9510
remove 0 9511
remove 0 9512
remove 0 9513
remove 0 9514
remove 0 9515
remove 0 9516
remove 0 9517
remove 0 9518
remove 0 9519
remove 0 9520
remove 0 9521
remove 0 9522
remove 0 9523
remove 0 9524
remove 0 9525
remove 0 9526
remove 0 9527
remove 0 9528
remove 0 9529
remove 0 9530
remove 0 9531
remove 0 9532
remove 0 9533
remove 0 9534
remove 0 9535
remove 0 9536
remove 0 9537
remove 0 9538
remove 0 9539
remove 0 9540
remove 0 9541
remove 0 9542
remove 0 9543
remove 0 9544
remove 0 9545
remove 0 9546
remove 0 9547
remove 0 9548
remove 0 9549
remove 0 9550
remove 0 9551
remove 0 9552
remove 0 9553
remove 0 9554
remove 0 9555
remove 0 9556
remove 0 9557
remove 0 9558
remove 0 9559
remove 0 9560
remove 0 9561
remove 0 9562
remove 0 9563
remove 0 9564
remove 0 9565
remove 0 9566
remove 0 9567
remove 0 9568
remove 0 9569
remove 0 9570
remove 0 9571
remove 0 9572
remove 0 9573
remove 0 9574
remove 0 9575
remove 0 9576
remove 0 9577
remove 0 9578
remove 0 9579
remove 0 9580
remove 0 9581
remove 0 9582
remove 0 9583
remove 0 9584
remove 0 9585
remove 0 9586
remove 0 9587
remove 0 9588
remove 0 9589
remove 0 9590
remove 0 9591
remove 0 9592
remove 0 9593
remove 0 9594
remove 0 9595
remove 0 9596
remove 0 9597
remove 0 9598
remove 0 9599
remove 0 9600
remove 0 9601
remove 0 9602
remove 0 9603
remove 0 9604
remove 0 9605
remove 0 9606
remove 0 9607
remove 0 9608
remove 0 9609
remove 0 9610
remove 0 9611
remove 0 9612
remove 0 9613
remove 0 9614
remove 0 9615
remove 0 9616
remove 0 9617
remove 0 9618
remove 0 9619
remove 0 9620
remove 0 9621
remove 0 9622
remove 0 9623
remove 0 9624
remove 0 9625
remove 0 9626
remove 0 9627
remove 0 9628
remove 0 9629
remove 0 9630
remove 0 9631
remove 0 9632
remove 0 9633
remove 0 9634
remove 0 9635
remove 0 9636
remove 0 9637
remove 0 9638
remove 0 9639
remove 0 9640
remove 0 9641
remove 0 9642
remove 0 9643
remove 0 9644
remove 0 9645
remove 0 9646
remove 0 9647
remove 0 9648
remove 0 9649
remove 0 9650
remove 0 9651
remove 0 9652
remove 0 9653
remove 0 9654
remove 0 9655
remove 0 9656
remove 0 9657
remove 0 9658
remove 0 9659
remove 0 9660
remove 0 9661
remove 0 9662
remove 0 9663
remove 0 9664
remove 0 9665
remove 0 9666
remove 0 9667
remove 0 9668
remove 0 9669
remove 0 9670
remove 0 9671
remove 0 9672
remove 0 9673
remove 0 9674
remove 0 9675
remove 0 9676
remove 0 9677
remove 0 9678
remove 0 9679
remove 0 9680
remove 0 9681
remove 0 9682
remove 0 9683
remove 0 9684
remove 0 9685
remove 0 9686
remove 0 9687
remove 0 9688
remove 0 9689
remove 0 9690
remove 0 9691
remove 0 9692
remove 0 9693
remove 0 9694
remove 0 9695
remove 0 9696
remove 0 9697
remove 0 9698
remove 0 9699
remove 0 9700
remove 0 9701
remove 0 9702
remove 0 9703
remove 0 9704
remove 0 9705
remove 0 9706
remove 0 9707
remove 0 9708
remove 0 9709
remove 0 9710
remove 0 9711
remove 0 9712
remove 0 9713
remove 0 9714
remove 0 9715
remove 0 9716
remove 0 9717
remove 0 9718
remove 0 9719
remove 0 9720
remove 0 9721
remove 0 9722
remove 0 9723
remove 0 9724
remove 0 9725
remove 0 9726
remove 0 9727
remove 0 9728
remove 0 9729
remove 0 9730
remove 0 9731
remove 0 9732
remove 0 9733
remove 0 9734
remove 0 9735
remove 0 9736
remove 0 9737
remove 0 9738
remove 0 9739
remove 0 9740
remove 0 9741
remove 0 9742
remove 0 9743
remove 0 9744
remove 0 9745
remove 0 9746
remove 0 9747
remove 0 9748
remove 0 9749
remove 0 9750
remove 0 9751
remove 0 9752
remove 0 9753
remove 0 9754
remove 0 9755
remove 0 9756
remove 0 9757
remove 0 9758
remove 0 9759
remove 0 9760
remove 0 9761
remove 0 9762
remove 0 9763
remove 0 9764
remove 0 9765
remove 0 9766
remove 0 9767
remove 0 9768
remove 0 9769
remove 0 9770
remove 0 9771
remove 0 9772
remove 0 9773
remove 0 9774
remove 0 9775
remove 0 9776
remove 0 9777
remove 0 9778
remove 0 9779
remove 0 9780
remove 0 9781
remove 0 9782
remove 0 9783
remove 0 9784
remove 0 9785
remove 0 9786
remove 0 9787
remove 0 9788
remove 0 9789
remove 0 9790
remove 0 9791
remove 0 9792
remove 0 9793
remove 0 9794
remove 0 9795
remove 0 9796
remove 0 9797
remove 0 9798
remove 0 9799
remove 0 9800
remove 0 9801
remove 0 9802
remove 0 9803
remove 0 9804
remove 0 9805
remove 0 9806
remove 0 9807
remove 0 9808
remove 0 9809
remove 0 9810
remove 0 9811
remove 0 9812
remove 0 9813
remove 0 9814
remove 0 9815
remove 0 9816
remove 0 9817
remove 0 9818
remove 0 9819
remove 0 9820
remove 0 9821
remove 0 9822
remove 0 9823
remove 0 9824
remove 0 9825
remove 0 9826
remove 0 9827
remove 0 9828
remove 0 9829
remove 0 9830
remove 0 9831
remove 0 9832
remove 0 9833
remove 0 9834
remove 0 9835
remove 0 9836
remove 0 9837
remove 0 9838
remove 0 9839
remove 0 9840
remove 0 9841
remove 0 9842
remove 0 9843
remove 0 9844
remove 0 9845
remove 0 9846
remove 0 9847
remove 0 9848
remove 0 9849
remove 0 9850
remove 0 9851
remove 0 9852
remove 0 9853
remove 0 9854
remove 0 9855
remove 0 9856
remove 0 9857
remove 0 9858
remove 0 9859
remove 0 9860
remove 0 9861
remove 0 9862
remove 0 9863
remove 0 9864
remove 0 9865
remove 0 9866
remove 0 9867
remove 0 9868
remove 0 9869
remove 0 9870
remove 0 9871
remove 0 9872
remove 0 9873
remove 0 9874
remove 0 9875
remove 0 9876
remove 0 9877
remove 0 9878
remove 0 9879
remove 0 9880
remove 0 9881
remove 0 9882
remove 0 9883
remove 0 9884
remove 0 9885
remove 0 9886
remove 0 9887
remove 0 9888
remove 0 9889
remove 0 9890
remove 0 9891
remove 0 9892
remove 0 9893
remove 0 9894
remove 0 9895
remove 0 9896
remove 0 9897
remove 0 9898
remove 0 9899
remove 0 9900
remove 0 9901
remove 0 9902
remove 0 9903
remove 0 9904
remove 0 9905
remove 0 9906
remove 0 9907
remove 0 9908
remove 0 9909
remove 0 9910
remove 0 9911
remove 0 9912
remove 0 9913
remove 0 9914
remove 0 9915
remove 0 9916
remove 0 9917
remove 0 9918
remove 0 9919
remove 0 9920
remove 0 9921
remove 0 9922
remove 0 9923
remove 0 9924
remove 0 9925
remove 0 9926
remove 0 9927
remove 0 9928
remove 0 9929
remove 0 9930
remove 0 9931
remove 0 9932
remove 0 9933
remove 0 9934
remove 0 9935
remove 0 9936
remove 0 9937
remove 0 9938
remove 0 9939
remove 0 9940
remove 0 9941
remove 0 9942
remove 0 9943
remove 0 9944
remove 0 9945
remove 0 9946
remove 0 9947
remove 0 9948
remove 0 9949
remove 0 9950
remove 0 9951
remove 0 9952
remove 0 9953
remove 0 9954
remove 0 9955
remove 0 9956
remove 0 9957
remove 0 9958
remove 0 9959
remove 0 9960
remove 0 9961
remove 0 9962
remove 0 9963
remove 0 9964
remove 0 9965
remove 0 9966
remove 0 9967
remove 0 9968
remove 0 9969
remove 0 9970
remove 0 9971
remove 0 9972
remove 0 9973
remove 0 9974
remove 0 9975
remove 0 9976
remove 0 9977
remove 0 9978
remove 0 9979
remove 0 9980
remove 0 9981
remove 0 9982
remove 0 9983
remove 0 9984
remove 0 9985
remove 0 9986
remove 0 9987
remove 0 9988
remove 0 9989
remove 0 9990
remove 0 9991
remove 0 9992
remove 0 9993
remove 0 9994
remove 0 9995
remove 0 9996
remove 0 9997
remove 0 9998
remove 0 9999
remove 0 10000
remove 0 10001
remove 0 10002
remove 0 10003
remove 0 10004
remove 0 10005
remove 0 10006
remove 0 10007
remove 0 10008
remove 0 10009
remove 0 10010
remove 0 10011
remove 0 10012
remove 0 10013
remove 0 10014
remove 0 10015
remove 0 10016
remove 0 10017
remove 0 10018
remove 0 10019
remove 0 10020
remove 0 10021
remove 0 10022
remove 0 10023
remove 0 10024
remove 0 10025
remove 0 10026
remove 0 10027
remove 0 10028
remove 0 10029
remove 0 10030
remove 0 10031
remove 0 10032
remove 0 10033
remove 0 10034
remove 0 10035
remove 0 10036
remove 0 10037
remove 0 10038
remove 0 10039
remove 0 10040
remove 0 10041
remove 0 10042
remove 0 10043
remove 0 10044
remove 0 10045
remove 0 10046
remove 0 10047
remove 0 10048
remove 0 10049
remove 0 10050
remove 0 10051
remove 0 10052
remove 0 10053
remove 0 10054
remove 0 10055
remove 0 10056
remove 0 10057
remove 0 10058
remove 0 10059
remove 0 10060
remove 0 10061
remove 0 10062
remove 0 10063
remove 0 10064
remove 0 10065
remove 0 10066
remove 0 10067
remove 0 10068
remove 0 10069
remove 0 10070
remove 0 10071
remove 0 10072
remove 0 10073
remove 0 10074
remove 0 10075
remove 0 10076
remove 0 10077
remove 0 10078
remove 0 10079
remove 0 10080
remove 0 10081
remove 0 10082
remove 0 10083
remove 0 10084
remove 0 10085
remove 0 10086
remove 0 10087
remove 0 10088
remove 0 10089
remove 0 10090
remove 0 10091
remove 0 10092
remove 0 10093
remove 0 10094
remove 0 10095
remove 0 10096
remove 0 10097
remove 0 10098
remove 0 10099
remove 0 10100
remove 0 10101
remove 0 10102
remove 0 10103
remove 0 10104
remove 0 10105
remove 0 10106
remove 0 10107
remove 0 10108
remove 0 10109
remove 0 10110
remove 0 10111
remove 0 10112
remove 0 10113
remove 0 10114
remove 0 10115
remove 0 10116
remove 0 10117
remove 0 10118
remove 0 10119
remove 0 10120
remove 0 10121
remove 0 10122
remove 0 10123
remove 0 10124
remove 0 10125
remove 0 10126
remove 0 10127
remove 0 10128
remove 0 10129
remove 0 10130
remove 0 10131
remove 0 10132
remove 0 10133
remove 0 10134
remove 0 10135
remove 0 10136
remove 0 10137
remove 0 10138
remove 0 10139
remove 0 10140
remove 0 10141
remove 0 10142
remove 0 10143
remove 0 10144
remove 0 10145
remove 0 10146
remove 0 10147
remove 0 10148
remove 0 10149
remove 0 10150
remove 0 10151
remove 0 10152
remove 0 10153
remove 0 10154
remove 0 10155
remove 0 10156
remove 0 10157
remove 0 10158
remove 0 10159
remove 0 10160
remove 0 10161
remove 0 10162
remove 0 10163
remove 0 10164
remove 0 10165
remove 0 10166
remove 0 10167
remove 0 10168
remove 0 10169
remove 0 10170
remove 0 10171
remove 0 10172
remove 0 10173
remove 0 10174
remove 0 10175
remove 0 10176
remove 0 10177
remove 0 10178
remove 0 10179
remove 0 10180
remove 0 10181
remove 0 10182
remove 0 10183
remove 0 10184
remove 0 10185
remove 0 10186
remove 0 10187
remove 0 10188
remove 0 10189
remove 0 10190
remove 0 10191
remove 0 10192
remove 0 10193
remove 0 10194
remove 0 10195
remove 0 10196
remove 0 10197
remove 0 10198
remove 0 10199
remove 0 10200
remove 0 10201
remove 0 10202
remove 0 10203
remove 0 10204
remove 0 10205
remove 0 10206
remove 0 10207
remove 0 10208
remove 0 10209
remove 0 10210
remove 0 10211
remove 0 10212
remove 0 10213
remove 0 10214
remove 0 10215
remove 0 10216
remove 0 10217
remove 0 10218
remove 0 10219
remove 0 10220
remove 0 10221
remove 0 10222
remove 0 10223
remove 0 10224
remove 0 10225
remove 0 10226
remove 0 10227
remove 0 10228
remove 0 10229
remove 0 10230
remove 0 10231
remove 0 10232
remove 0 10233
remove 0 10234
remove 0 10235
remove 0 10236
remove 0 10237
remove 0 10238
remove 0 10239
remove 0 10240
remove 0 10241
remove 0 10242
remove 0 10243
remove 0 10244
remove 0 10245
remove 0 10246
remove 0 10247
remove 0 10248
remove 0 10249
remove 0 10250
remove 0 10251
remove 0 10252
remove 0 10253
remove 0 10254
remove 0 10255
remove 0 10256
remove 0 10257
remove 0 10258
remove 0 10259
remove 0 10260
remove 0 10261
remove 0 10262
remove 0 10263
remove 0 10264
remove 0 10265
remove 0 10266
remove 0 10267
remove 0 10268
remove 0 10269
remove 0 10270
remove 0 10271
remove 0 10272
remove 0 10273
remove 0 10274
remove 0 10275
remove 0 10276
remove 0 10277
remove 0 10278
remove 0 10279
remove 0 10280
remove 0 10281
remove 0 10282
remove 0 10283
remove 0 10284
remove 0 10285
remove 0 10286
remove 0 10287
remove 0 10288
remove 0 10289
remove 0 10290
remove 0 10291
remove 0 10292
remove 0 10293
remove 0 10294
remove 0 10295
remove 0 10296
remove 0 10297
remove 0 10298
remove 0 10299
remove 0 10300
remove 0 10301
remove 0 10302
remove 0 10303
remove 0 10304
remove 0 10305
remove 0 10306
remove 0 10307
remove 0 10308
remove 0 10309
remove 0 10310
remove 0 10311
remove 0 10312
remove 0 10313
remove 0 10314
remove 0 10315
remove 0 10316
remove 0 10317
remove 0 10318
remove 0 10319
remove 0 10320
remove 0 10321
remove 0 10322
remove 0 10323
remove 0 10324
remove 0 10325
remove 0 10326
remove 0 10327
remove 0 10328
remove 0 10329
remove 0 10330
remove 0 10331
remove 0 10332
remove 0 10333
remove 0 10334
remove 0 10335
remove 0 10336
remove 0 10337
remove 0 10338
remove 0 10339
remove 0 10340
remove 0 10341
remove 0 10342
remove 0 10343
remove 0 10344
remove 0 10345
remove 0 10346
remove 0 10347
remove 0 10348
remove 0 10349
remove 0 10350
remove 0 10351
remove 0 10352
remove 0 10353
remove 0 10354
remove 0 10355
remove 0 10356
remove 0 10357
remove 0 10358
remove 0 10359
remove 0 10360
remove 0 10361
remove 0 10362
remove 0 10363
remove 0 10364
remove 0 10365
remove 0 10366
remove 0 10367
remove 0 10368
remove 0 10369
remove 0 10370
remove 0 10371
remove 0 10372
remove 0 10373
remove 0 10374
remove 0 10375
remove 0 10376
remove 0 10377
remove 0 10378
remove 0 10379
remove 0 10380
remove 0 10381
remove 0 10382
remove 0 10383
remove 0 10384
remove 0 10385
remove 0 10386
remove 0 10387
remove 0 10388
remove 0 10389
remove 0 10390
remove 0 10391
remove 0 10392
remove 0 10393
remove 0 10394
remove 0 10395
remove 0 10396
remove 0 10397
remove 0 10398
remove 0 10399
remove 0 10400
remove 0 10401
remove 0 10402
remove 0 10403
remove 0 10404
remove 0 10405
remove 0 10406
remove 0 10407
remove 0 10408
remove 0 10409
remove 0 10410
remove 0 10411
remove 0 10412
remove 0 10413
remove 0 10414
remove 0 10415
remove 0 10416
remove 0 10417
remove 0 10418
remove 0 10419
remove 0 10420
remove 0 10421
remove 0 10422
remove 0 10423
remove 0 10424
remove 0 10425
remove 0 10426
remove 0 10427
remove 0 10428
remove 0 10429
remove 0 10430
remove 0 10431
remove 0 10432
remove 0 10433
remove 0 10434
remove 0 10435
remove 0 10436
remove 0 10437
remove 0 10438
remove 0 10439
remove 0 10440
remove 0 10441
remove 0 10442
remove 0 10443
remove 0 10444
remove 0 10445
remove 0 10446
remove 0 10447
remove 0 10448
remove 0 10449
remove 0 10450
remove 0 10451
remove 0 10452
remove 0 10453
remove 0 10454
remove 0 10455
remove 0 10456
remove 0 10457
remove 0 10458
remove 0 10459
remove 0 10460
remove 0 10461
remove 0 10462
remove 0 10463
remove 0 10464
remove 0 10465
remove 0 10466
remove 0 10467
remove 0 10468
remove 0 10469
remove 0 10470
remove 0 10471
remove 0 10472
remove 0 10473
remove 0 10474
remove 0 10475
remove 0 10476
remove 0 10477
remove 0 10478
remove 0 10479
remove 0 10480
remove 0 10481
remove 0 10482
remove 0 10483
remove 0 10484
remove 0 10485
remove 0 10486
remove 0 10487
remove 0 10488
remove 0 10489
remove 0 10490
remove 0 10491
remove 0 10492
remove 0 10493
remove 0 10494
remove 0 10495
remove 0 10496
remove 0 10497
remove 0 10498
remove 0 10499
remove 0 10500
remove 0 10501
remove 0 10502
remove 0 10503
remove 0 10504
remove 0 10505
remove 0 10506
remove 0 10507
remove 0 10508
remove 0 10509
remove 0 10510
remove 0 10511
remove 0 10512
remove 0 10513
remove 0 10514
remove 0 10515
remove 0 10516
remove 0 10517
remove 0 10518
remove 0 10519
remove 0 10520
remove 0 10521
remove 0 10522
remove 0 10523
remove 0 10524
remove 0 10525
remove 0 10526
remove 0 10527
remove 0 10528
remove 0 10529
remove 0 10530
remove 0 10531
remove 0 10532
remove 0 10533
remove 0 10534
remove 0 10535
remove 0 10536
remove 0 10537
remove 0 10538
remove 0 10539
remove 0 10540
remove 0 10541
remove 0 10542
remove 0 10543
remove 0 10544
remove 0 10545
remove 0 10546
remove 0 10547
remove 0 10548
remove 0 10549
remove 0 10550
remove 0 10551
remove 0 10552
remove 0 10553
remove 0 10554
remove 0 10555
remove 0 10556
remove 0 10557
remove 0 10558
remove 0 10559
remove 0 10560
remove 0 10561
remove 0 10562
remove 0 10563
remove 0 10564
remove 0 10565
remove 0 10566
remove 0 10567
remove 0 10568
remove 0 10569
remove 0 10570
remove 0 10571
remove 0 10572
remove 0 10573
remove 0 10574
remove 0 10575
remove 0 10576
remove 0 10577
remove 0 10578
remove 0 10579
remove 0 10580
remove 0 10581
remove 0 10582
remove 0 10583
remove 0 10584
remove 0 10585
remove 0 10586
remove 0 10587
remove 0 10588
remove 0 10589
remove 0 10590
remove 0 10591
remove 0 10592
remove 0 10593
remove 0 10594
remove 0 10595
remove 0 10596
remove 0 10597
remove 0 10598
remove 0 10599
remove 0 10600
remove 0 10601
remove 0 10602
remove 0 10603
remove 0 10604
remove 0 10605
remove 0 10606
remove 0 10607
remove 0 10608
remove 0 10609
remove 0 10610
remove 0 10611
remove 0 10612
remove 0 10613
remove 0 10614
remove 0 10615
remove 0 10616
remove 0 10617
remove 0 10618
remove 0 10619
remove 0 10620
remove 0 10621
remove 0 10622
remove 0 10623
remove 0 10624
remove 0 10625
remove 0 10626
remove 0 10627
remove 0 10628
remove 0 10629
remove 0 10630
remove 0 10631
remove 0 10632
remove 0 10633
remove 0 10634
remove 0 10635
remove 0 10636
remove 0 10637
remove 0 10638
remove 0 10639
remove 0 10640
remove 0 10641
remove 0 10642
remove 0 10643
remove 0 10644
remove 0 10645
remove 0 10646
remove 0 10647
remove 0 10648
remove 0 10649
remove 0 10650
remove 0 10651
remove 0 10652
remove 0 10653
remove 0 10654
remove 0 10655
remove 0 10656
remove 0 10657
remove 0 10658
remove 0 10659
remove 0 10660
remove 0 10661
remove 0 10662
remove 0 10663
remove 0 10664
remove 0 10665
remove 0 10666
remove 0 10667
remove 0 10668
remove 0 10669
remove 0 10670
remove 0 10671
remove 0 10672
remove 0 10673
remove 0 10674
remove 0 10675
remove 0 10676
remove 0 10677
remove 0 10678
remove 0 10679
remove 0 10680
remove 0 10681
remove 0 10682
remove 0 10683
remove 0 10684
remove 0 10685
remove 0 10686
remove 0 10687
remove 0 10688
remove 0 10689
remove 0 10690
remove 0 10691
remove 0 10692
remove 0 10693
remove 0 10694
remove 0 10695
remove 0 10696
remove 0 10697
remove 0 10698
remove 0 10699
remove 0 10700
remove 0 10701
remove 0 10702
remove 0 10703
remove 0 10704
remove 0 10705
remove 0 10706
remove 0 10707
remove 0 10708
remove 0 10709
remove 0 10710
remove 0 10711
remove 0 10712
remove 0 10713
remove 0 10714
remove 0 10715
remove 0 10716
remove 0 10717
remove 0 10718
remove 0 10719
remove 0 10720
remove 0 10721
remove 0 10722
remove 0 10723
remove 0 10724
remove 0 10725
remove 0 10726
remove 0 10727
remove 0 10728
remove 0 10729
remove 0 10730
remove 0 10731
remove 0 10732
remove 0 10733
remove 0 10734
remove 0 10735
remove 0 10736
remove 0 10737
remove 0 10738
remove 0 10739
remove 0 10740
remove 0 10741
remove 0 10742
remove 0 10743
remove 0 10744
remove 0 10745
remove 0 10746
remove 0 10747
remove 0 10748
remove 0 10749
remove 0 10750
remove 0 10751
remove 0 10752
remove 0 10753
remove 0 10754
remove 0 10755
remove 0 10756
remove 0 10757
remove 0 10758
remove 0 10759
remove 0 10760
remove 0 10761
remove 0 10762
remove 0 10763
remove 0 10764
remove 0 10765
remove 0 10766
remove 0 10767
remove 0 10768
remove 0 10769
remove 0 10770
remove 0 10771
remove 0 10772
remove 0 10773
remove 0 10774
remove 0 10775
remove 0 10776
remove 0 10777
remove 0 10778
remove 0 10779
remove 0 10780
remove 0 10781
remove 0 10782
remove 0 10783
remove 0 10784
remove 0 10785
remove 0 10786
remove 0 10787
remove 0 10788
remove 0 10789
remove 0 10790
remove 0 10791
remove 0 10792
remove 0 10793
remove 0 10794
remove 0 10795
remove 0 10796
remove 0 10797
remove 0 10798
remove 0 10799
remove 0 10800
remove 0 10801
remove 0 10802
remove 0 10803
remove 0 10804
remove 0 10805
remove 0 10806
remove 0 10807
remove 0 10808
remove 0 10809
remove 0 10810
remove 0 10811
remove 0 10812
remove 0 10813
remove 0 10814
remove 0 10815
remove 0 10816
remove 0 10817
remove 0 10818
remove 0 10819
remove 0 10820
remove 0 10821
remove 0 10822
remove 0 10823
remove 0 10824
remove 0 10825
remove 0 10826
remove 0 10827
remove 0 10828
remove 0 10829
remove 0 10830
remove 0 10831
remove 0 10832
remove 0 10833
remove 0 10834
remove 0 10835
remove 0 10836
remove 0 10837
remove 0 10838
remove 0 10839
remove 0 10840
remove 0 10841
remove 0 10842
remove 0 10843
remove 0 10844
remove 0 10845
remove 0 10846
remove 0 10847
remove 0 10848
remove 0 10849
remove 0 10850
remove 0 10851
remove 0 10852
remove 0 10853
remove 0 10854
remove 0 10855
remove 0 10856
remove 0 10857
remove 0 10858
remove 0 10859
remove 0 10860
remove 0 10861
remove 0 10862
remove 0 10863
remove 0 10864
remove 0 10865
remove 0 10866
remove 0 10867
remove 0 10868
remove 0 10869
remove 0 10870
remove 0 10871
remove 0 10872
remove 0 10873
remove 0 10874
remove 0 10875
remove 0 10876
remove 0 10877
remove 0 10878
remove 0 10879
remove 0 10880
remove 0 10881
remove 0 10882
remove 0 10883
remove 0 10884
remove 0 10885
remove 0 10886
remove 0 10887
remove 0 10888
remove 0 10889
remove 0 10890
remove 0 10891
remove 0 10892
remove 0 10893
remove 0 10894
remove 0 10895
remove 0 10896
remove 0 10897
remove 0 10898
remove 0 10899
remove 0 10900
remove 0 10901
remove 0 10902
remove 0 10903
remove 0 10904
remove 0 10905
remove 0 10906
remove 0 10907
remove 0 10908
remove 0 10909
remove 0 10910
remove 0 10911
remove 0 10912
remove 0 10913
remove 0 10914
remove 0 10915
remove 0 10916
remove 0 10917
remove 0 10918
remove 0 10919
remove 0 10920
remove 0 10921
remove 0 10922
remove 0 10923
remove 0 10924
remove 0 10925
remove 0 10926
remove 0 10927
remove 0 10928
remove 0 10929
remove 0 10930
remove 0 10931
remove 0 10932
remove 0 10933
remove 0 10934
remove 0 10935
remove 0 10936
remove 0 10937
remove 0 10938
remove 0 10939
remove 0 10940
remove 0 10941
remove 0 10942
remove 0 10943
remove 0 10944
remove 0 10945
remove 0 10946
remove 0 10947
remove 0 10948
remove 0 10949
remove 0 10950
remove 0 10951
remove 0 10952
remove 0 10953
remove 0 10954
remove 0 10955
remove 0 10956
remove 0 10957
remove 0 10958
remove 0 10959
remove 0 10960
remove 0 10961
remove 0 10962
remove 0 10963
remove 0 10964
remove 0 10965
remove 0 10966
remove 0 10967
remove 0 10968
remove 0 10969
remove 0 10970
remove 0 10971
remove 0 10972
remove 0 10973
remove 0 10974
remove 0 10975
remove 0 10976
remove 0 10977
remove 0 10978
remove 0 10979
remove 0 10980
remove 0 10981
remove 0 10982
remove 0 10983
remove 0 10984
remove 0 10985
remove 0 10986
remove 0 10987
remove 0 10988
remove 0 10989
remove 0 10990
remove 0 10991
remove 0 10992
remove 0 10993
remove 0 10994
remove 0 10995
remove 0 10996
remove 0 10997
remove 0 10998
remove 0 10999
remove 0 11000
remove 0 11001
remove 0 11002
remove 0 11003
remove 0 11004
remove 0 11005
remove 0 11006
remove 0 11007
remove 0 11008
remove 0 11009
remove 0 11010
remove 0 11011
remove 0 11012
remove 0 11013
remove 0 11014
remove 0 11015
remove 0 11016
remove 0 11017
remove 0 11018
remove 0 11019
remove 0 11020
remove 0 11021
remove 0 11022
remove 0 11023
remove 0 11024
remove 0 11025
remove 0 11026
remove 0 11027
remove 0 11028
remove 0 11029
remove 0 11030
remove 0 11031
remove 0 11032
remove 0 11033
remove 0 11034
remove 0 11035
remove 0 11036
remove 0 11037
remove 0 11038
remove 0 11039
remove 0 11040
remove 0 11041
remove 0 11042
remove 0 11043
remove 0 11044
remove 0 11045
remove 0 11046
remove 0 11047
remove 0 11048
remove 0 11049
remove 0 11050
remove 0 11051
remove 0 11052
remove 0 11053
remove 0 11054
remove 0 11055
remove 0 11056
remove 0 11057
remove 0 11058
remove 0 11059
remove 0 11060
remove 0 11061
remove 0 11062
remove 0 11063
remove 0 11064
remove 0 11065
remove 0 11066
remove 0 11067
remove 0 11068
remove 0 11069
remove 0 11070
remove 0 11071
remove 0 11072
remove 0 11073
remove 0 11074
remove 0 11075
remove 0 11076
remove 0 11077
remove 0 11078
remove 0 11079
remove 0 11080
remove 0 11081
remove 0 11082
remove 0 11083
remove 0 11084
remove 0 11085
remove 0 11086
remove 0 11087
remove 0 11088
remove 0 11089
remove 0 11090
remove 0 11091
remove 0 11092
remove 0 11093
remove 0 11094
remove 0 11095
remove 0 11096
remove 0 11097
remove 0 11098
remove 0 11099
remove 0 11100
remove 0 11101
remove 0 11102
remove 0 11103
remove 0 11104
remove 0 11105
remove 0 11106
remove 0 11107
remove 0 11108
remove 0 11109
remove 0 11110
remove 0 11111
remove 0 11112
remove 0 11113
remove 0 11114
remove 0 11115
remove 0 11116
remove 0 11117
remove 0 11118
remove 0 11119
remove 0 11120
remove 0 11121
remove 0 11122
remove 0 11123
remove 0 11124
remove 0 11125
remove 0 11126
remove 0 11127
remove 0 11128
remove 0 11129
remove 0 11130
remove 0 11131
remove 0 11132
remove 0 11133
remove 0 11134
remove 0 11135
remove 0 11136
remove 0 11137
remove 0 11138
remove 0 11139
remove 0 11140
remove 0 11141
remove 0 11142
remove 0 11143
remove 0 11144
remove 0 11145
remove 0 11146
remove 0 11147
remove 0 11148
remove 0 11149
remove 0 11150
remove 0 11151
remove 0 11152
remove 0 11153
remove 0 11154
remove 0 11155
remove 0 11156
remove 0 11157
remove 0 11158
remove 0 11159
remove 0 11160
remove 0 11161
remove 0 11162
remove 0 11163
remove 0 11164
remove 0 11165
remove 0 11166
remove 0 11167
remove 0 11168
remove 0 11169
remove 0 11170
remove 0 11171
remove 0 11172
remove 0 11173
remove 0 11174
remove 0 11175
remove 0 11176
remove 0 11177
remove 0 11178
remove 0 11179
remove 0 11180
remove 0 11181
remove 0 11182
remove 0 11183
remove 0 11184
remove 0 11185
remove 0 11186
remove 0 11187
remove 0 11188
remove 0 11189
remove 0 11190
remove 0 11191
remove 0 11192
remove 0 11193
remove 0 11194
remove 0 11195
remove 0 11196
remove 0 11197
remove 0 11198
remove 0 11199
remove 0 11200
remove 0 11201
remove 0 11202
remove 0 11203
remove 0 11204
remove 0 11205
remove 0 11206
remove 0 11207
remove 0 11208
remove 0 11209
remove 0 11210
remove 0 11211
remove 0 11212
remove 0 11213
remove 0 11214
remove 0 11215
remove 0 11216
remove 0 11217
remove 0 11218
remove 0 11219
remove 0 11220
remove 0 11221
remove 0 11222
remove 0 11223
remove 0 11224
remove 0 11225
remove 0 11226
remove 0 11227
remove 0 11228
remove 0 11229
remove 0 11230
remove 0 11231
remove 0 11232
remove 0 11233
remove 0 11234
remove 0 11235
remove 0 11236
remove 0 11237
remove 0 11238
remove 0 11239
remove 0 11240
remove 0 11241
remove 0 11242
remove 0 11243
remove 0 11244
remove 0 11245
remove 0 11246
remove 0 11247
remove 0 11248
remove 0 11249
remove 0 11250
remove 0 11251
remove 0 11252
remove 0 11253
remove 0 11254
remove 0 11255
remove 0 11256
remove 0 11257
remove 0 11258
remove 0 11259
remove 0 11260
remove 0 11261
remove 0 11262
remove 0 11263
remove 0 11264
remove 0 11265
remove 0 11266
remove 0 11267
remove 0 11268
remove 0 11269
remove 0 11270
remove 0 11271
remove 0 11272
remove 0 11273
remove 0 11274
remove 0 11275
remove 0 11276
remove 0 11277
remove 0 11278
remove 0 11279
remove 0 11280
remove 0 11281
remove 0 11282
remove 0 11283
remove 0 11284
remove 0 11285
remove 0 11286
remove 0 11287
remove 0 11288
remove 0 11289
remove 0 11290
remove 0 11291
remove 0 11292
remove 0 11293
remove 0 11294
remove 0 11295
remove 0 11296
remove 0 11297
remove 0 11298
remove 0 11299
remove 0 11300
remove 0 11301
remove 0 11302
remove 0 11303
remove 0 11304
remove 0 11305
remove 0 11306
remove 0 11307
remove 0 11308
remove 0 11309
remove 0 11310
remove 0 11311
remove 0 11312
remove 0 11313
remove 0 11314
remove 0 11315
remove 0 11316
remove 0 11317
remove 0 11318
remove 0 11319
remove 0 11320
remove 0 11321
remove 0 11322
remove 0 11323
remove 0 11324
remove 0 11325
remove 0 11326
remove 0 11327
remove 0 11328
remove 0 11329
remove 0 11330
remove 0 11331
remove 0 11332
remove 0 11333
remove 0 11334
remove 0 11335
remove 0 11336
remove 0 11337
remove 0 11338
remove 0 11339
remove 0 11340
remove 0 11341
remove 0 11342
remove 0 11343
remove 0 11344
remove 0 11345
remove 0 11346
remove 0 11347
remove 0 11348
remove 0 11349
remove 0 11350
remove 0 11351
remove 0 11352
remove 0 11353
remove 0 11354
remove 0 11355
remove 0 11356
remove 0 11357
remove 0 11358
remove 0 11359
remove 0 11360
remove 0 11361
remove 0 11362
remove 0 11363
remove 0 11364
remove 0 11365
remove 0 11366
remove 0 11367
remove 0 11368
remove 0 11369
remove 0 11370
remove 0 11371
remove 0 11372
remove 0 11373
remove 0 11374
remove 0 11375
remove 0 11376
remove 0 11377
remove 0 11378
remove 0 11379
remove 0 11380
remove 0 11381
remove 0 11382
remove 0 11383
remove 0 11384
remove 0 11385
remove 0 11386
remove 0 11387
remove 0 11388
remove 0 11389
remove 0 11390
remove 0 11391
remove 0 11392
remove 0 11393
remove 0 11394
remove 0 11395
remove 0 11396
remove 0 11397
remove 0 11398
remove 0 11399
remove 0 11400
remove 0 11401
remove 0 11402
remove 0 11403
remove 0 11404
remove 0 11405
remove 0 11406
remove 0 11407
remove 0 11408
remove 0 11409
remove 0 11410
remove 0 11411
remove 0 11412
remove 0 11413
remove 0 11414
remove 0 11415
remove 0 11416
remove 0 11417
remove 0 11418
remove 0 11419
remove 0 11420
remove 0 11421
remove 0 11422
remove 0 11423
remove 0 11424
remove 0 11425
remove 0 11426
remove 0 11427
remove 0 11428
remove 0 11429
remove 0 11430
remove 0 11431
remove 0 11432
remove 0 11433
remove 0 11434
remove 0 11435
remove 0 11436
remove 0 11437
remove 0 11438
remove 0 11439
remove 0 11440
remove 0 11441
remove 0 11442
remove 0 11443
remove 0 11444
remove 0 11445
remove 0 11446
remove 0 11447
remove 0 11448
remove 0 11449
remove 0 11450
remove 0 11451
remove 0 11452
remove 0 11453
remove 0 11454
remove 0 11455
remove 0 11456
remove 0 11457
remove 0 11458
remove 0 11459
remove 0 11460
remove 0 11461
remove 0 11462
remove 0 11463
remove 0 11464
remove 0 11465
remove 0 11466
remove 0 11467
remove 0 11468
remove 0 11469
remove 0 11470
remove 0 11471
remove 0 11472
remove 0 11473
remove 0 11474
remove 0 11475
remove 0 11476
remove 0 11477
remove 0 11478
remove 0 11479
remove 0 11480
remove 0 11481
remove 0 11482
remove 0 11483
remove 0 11484
remove 0 11485
remove 0 11486
remove 0 11487
remove 0 11488
remove 0 11489
remove 0 11490
remove 0 11491
remove 0 11492
remove 0 11493
remove 0 11494
remove 0 11495
remove 0 11496
remove 0 11497
remove 0 11498
remove 0 11499
remove 0 11500
remove 0 11501
remove 0 11502
remove 0 11503
remove 0 11504
remove 0 11505
remove 0 11506
remove 0 11507
remove 0 11508
remove 0 11509
remove 0 11510
remove 0 11511
remove 0 11512
remove 0 11513
remove 0 11514
remove 0 11515
remove 0 11516
remove 0 11517
remove 0 11518
remove 0 11519
remove 0 11520
remove 0 11521
remove 0 11522
remove 0 11523
remove 0 11524
remove 0 11525
remove 0 11526
remove 0 11527
remove 0 11528
remove 0 11529
remove 0 11530
remove 0 11531
remove 0 11532
remove 0 11533
remove 0 11534
remove 0 11535
remove 0 11536
remove 0 11537
remove 0 11538
remove 0 11539
remove 0 11540
remove 0 11541
remove 0 11542
remove 0 11543
remove 0 11544
remove 0 11545
remove 0 11546
remove 0 11547
remove 0 11548
remove 0 11549
remove 0 11550
remove 0 11551
remove 0 11552
remove 0 11553
remove 0 11554
remove 0 11555
remove 0 11556
remove 0 11557
remove 0 11558
remove 0 11559
remove 0 11560
remove 0 11561
remove 0 11562
remove 0 11563
remove 0 11564
remove 0 11565
remove 0 11566
remove 0 11567
remove 0 11568
remove 0 11569
remove 0 11570
remove 0 11571
remove 0 11572
remove 0 11573
remove 0 11574
remove 0 11575
remove 0 11576
remove 0 11577
remove 0 11578
remove 0 11579
remove 0 11580
remove 0 11581
remove 0 11582
remove 0 11583
remove 0 11584
remove 0 11585
remove 0 11586
remove 0 11587
remove 0 11588
remove 0 11589
remove 0 11590
remove 0 11591
remove 0 11592
remove 0 11593
remove 0 11594
remove 0 11595
remove 0 11596
remove 0 11597
remove 0 11598
remove 0 11599
remove 0 11600
remove 0 11601
remove 0 11602
remove 0 11603
remove 0 11604
remove 0 11605
remove 0 11606
remove 0 11607
remove 0 11608
remove 0 11609
remove 0 11610
remove 0 11611
remove 0 11612
remove 0 11613
remove 0 11614
remove 0 11615
remove 0 11616
remove 0 11617
remove 0 11618
remove 0 11619
remove 0 11620
remove 0 11621
remove 0 11622
remove 0 11623
remove 0 11624
remove 0 11625
remove 0 11626
remove 0 11627
remove 0 11628
remove 0 11629
remove 0 11630
remove 0 11631
remove 0 11632
remove 0 11633
remove 0 11634
remove 0 11635
remove 0 11636
remove 0 11637
remove 0 11638
remove 0 11639
remove 0 11640
remove 0 11641
remove 0 11642
remove 0 11643
remove 0 11644
remove 0 11645
remove 0 11646
remove 0 11647
remove 0 11648
remove 0 11649
remove 0 11650
remove 0 11651
remove 0 11652
remove 0 11653
remove 0 11654
remove 0 11655
remove 0 11656
remove 0 11657
remove 0 11658
remove 0 11659
remove 0 11660
remove 0 11661
remove 0 11662
remove 0 11663
remove 0 11664
remove 0 11665
remove 0 11666
remove 0 11667
remove 0 11668
remove 0 11669
remove 0 11670
remove 0 11671
remove 0 11672
remove 0 11673
remove 0 11674
remove 0 11675
remove 0 11676
remove 0 11677
remove 0 11678
remove 0 11679
remove 0 11680
remove 0 11681
remove 0 11682
remove 0 11683
remove 0 11684
remove 0 11685
remove 0 11686
remove 0 11687
remove 0 11688
remove 0 11689
remove 0 11690
remove 0 11691
remove 0 11692
remove 0 11693
remove 0 11694
remove 0 11695
remove 0 11696
remove 0 11697
remove 0 11698
remove 0 11699
remove 0 11700
remove 0 11701
remove 0 11702
remove 0 11703
remove 0 11704
remove 0 11705
remove 0 11706
remove 0 11707
remove 0 11708
remove 0 11709
remove 0 11710
remove 0 11711
remove 0 11712
remove 0 11713
remove 0 11714
remove 0 11715
remove 0 11716
remove 0 11717
remove 0 11718
remove 0 11719
remove 0 11720
remove 0 11721
remove 0 11722
remove 0 11723
remove 0 11724
remove 0 11725
remove 0 11726
remove 0 11727
remove 0 11728
remove 0 11729
remove 0 11730
remove 0 11731
remove 0 11732
remove 0 11733
remove 0 11734
remove 0 11735
remove 0 11736
remove 0 11737
remove 0 11738
remove 0 11739
remove 0 11740
remove 0 11741
remove 0 11742
remove 0 11743
remove 0 11744
remove 0 11745
remove 0 11746
remove 0 11747
remove 0 11748
remove 0 11749
remove 0 11750
remove 0 11751
remove 0 11752
remove 0 11753
remove 0 11754
remove 0 11755
remove 0 11756
remove 0 11757
remove 0 11758
remove 0 11759
remove 0 11760
remove 0 11761
remove 0 11762
remove 0 11763
remove 0 11764
remove 0 11765
remove 0 11766
remove 0 11767
remove 0 11768
remove 0 11769
remove 0 11770
remove 0 11771
remove 0 11772
remove 0 11773
remove 0 11774
remove 0 11775
remove 0 11776
remove 0 11777
remove 0 11778
remove 0 11779
remove 0 11780
remove 0 11781
remove 0 11782
remove 0 11783
remove 0 11784
remove 0 11785
remove 0 11786
remove 0 11787
remove 0 11788
remove 0 11789
remove 0 11790
remove 0 11791
remove 0 11792
remove 0 11793
remove 0 11794
remove 0 11795
remove 0 11796
remove 0 11797
remove 0 11798
remove 0 11799
remove 0 11800
remove 0 11801
remove 0 11802
remove 0 11803
remove 0 11804
remove 0 11805
remove 0 11806
remove 0 11807
remove 0 11808
remove 0 11809
remove 0 11810
remove 0 11811
remove 0 11812
remove 0 11813
remove 0 11814
remove 0 11815
remove 0 11816
remove 0 11817
remove 0 11818
remove 0 11819
remove 0 11820
remove 0 11821
remove 0 11822
remove 0 11823
remove 0 11824
remove 0 11825
remove 0 11826
remove 0 11827
remove 0 11828
remove 0 11829
remove 0 11830
remove 0 11831
remove 0 11832
remove 0 11833
remove 0 11834
remove 0 11835
remove 0 11836
remove 0 11837
remove 0 11838
remove 0 11839
remove 0 11840
remove 0 11841
remove 0 11842
remove 0 11843
remove 0 11844
remove 0 11845
remove 0 11846
remove 0 11847
remove 0 11848
remove 0 11849
remove 0 11850
remove 0 11851
remove 0 11852
remove 0 11853
remove 0 11854
remove 0 11855
remove 0 11856
remove 0 11857
remove 0 11858
remove 0 11859
remove 0 11860
remove 0 11861
remove 0 11862
remove 0 11863
remove 0 11864
remove 0 11865
remove 0 11866
remove 0 11867
remove 0 11868
remove 0 11869
remove 0 11870
remove 0 11871
remove 0 11872
remove 0 11873
remove 0 11874
remove 0 11875
remove 0 11876
remove 0 11877
remove 0 11878
remove 0 11879
remove 0 11880
remove 0 11881
remove 0 11882
remove 0 11883
remove 0 11884
remove 0 11885
remove 0 11886
remove 0 11887
remove 0 11888
remove 0 11889
remove 0 11890
remove 0 11891
remove 0 11892
remove 0 11893
remove 0 11894
remove 0 11895
remove 0 11896
remove 0 11897
remove 0 11898
remove 0 11899
remove 0 11900
remove 0 11901
remove 0 11902
remove 0 11903
remove 0 11904
remove 0 11905
remove 0 11906
remove 0 11907
remove 0 11908
remove 0 11909
remove 0 11910
remove 0 11911
remove 0 11912
remove 0 11913
remove 0 11914
remove 0 11915
remove 0 11916
remove 0 11917
remove 0 11918
remove 0 11919
remove 0 11920
remove 0 11921
remove 0 11922
remove 0 11923
remove 0 11924
remove 0 11925
remove 0 11926
remove 0 11927
remove 0 11928
remove 0 11929
remove 0 11930
remove 0 11931
remove 0 11932
remove 0 11933
remove 0 11934
remove 0 11935
remove 0 11936
remove 0 11937
remove 0 11938
remove 0 11939
remove 0 11940
remove 0 11941
remove 0 11942
remove 0 11943
remove 0 11944
remove 0 11945
remove 0 11946
remove 0 11947
remove 0 11948
remove 0 11949
remove 0 11950
remove 0 11951
remove 0 11952
remove 0 11953
remove 0 11954
remove 0 11955
remove 0 11956
remove 0 11957
remove 0 11958
remove 0 11959
remove 0 11960
remove 0 11961
remove 0 11962
remove 0 11963
remove 0 11964
remove 0 11965
remove 0 11966
remove 0 11967
remove 0 11968
remove 0 11969
remove 0 11970
remove 0 11971
remove 0 11972
remove 0 11973
remove 0 11974
remove 0 11975
remove 0 11976
remove 0 11977
remove 0 11978
remove 0 11979
remove 0 11980
remove 0 11981
remove 0 11982
remove 0 11983
remove 0 11984
remove 0 11985
remove 0 11986
remove 0 11987
remove 0 11988
remove 0 11989
remove 0 11990
remove 0 11991
remove 0 11992
remove 0 11993
remove 0 11994
remove 0 11995
remove 0 11996
remove 0 11997
remove 0 11998
remove 0 11999
remove 0 12000
remove 0 12001
remove 0 12002
remove 0 12003
remove 0 12004
remove 0 12005
remove 0 12006
remove 0 12007
remove 0 12008
remove 0 12009
remove 0 12010
remove 0 12011
remove 0 12012
remove 0 12013
remove 0 12014
remove 0 12015
remove 0 12016
remove 0 12017
remove 0 12018
remove 0 12019
remove 0 12020
remove 0 12021
remove 0 12022
remove 0 12023
remove 0 12024
remove 0 12025
remove 0 12026
remove 0 12027
remove 0 12028
remove 0 12029
remove 0 12030
remove 0 12031
remove 0 12032
remove 0 12033
remove 0 12034
remove 0 12035
remove 0 12036
remove 0 12037
remove 0 12038
remove 0 12039
remove 0 12040
remove 0 12041
remove 0 12042
remove 0 12043
remove 0 12044
remove 0 12045
remove 0 12046
remove 0 12047
remove 0 12048
remove 0 12049
remove 0 12050
remove 0 12051
remove 0 12052
remove 0 12053
remove 0 12054
remove 0 12055
remove 0 12056
remove 0 12057
remove 0 12058
remove 0 12059
remove 0 12060
remove 0 12061
remove 0 12062
remove 0 12063
remove 0 12064
remove 0 12065
remove 0 12066
remove 0 12067
remove 0 12068
remove 0 12069
remove 0 12070
remove 0 12071
remove 0 12072
remove 0 12073
remove 0 12074
remove 0 12075
remove 0 12076
remove 0 12077
remove 0 12078
remove 0 12079
remove 0 12080
remove 0 12081
remove 0 12082
remove 0 12083
remove 0 12084
remove 0 12085
remove 0 12086
remove 0 12087
remove 0 12088
remove 0 12089
remove 0 12090
remove 0 12091
remove 0 12092
remove 0 12093
remove 0 12094
remove 0 12095
remove 0 12096
remove 0 12097
remove 0 12098
remove 0 12099
remove 0 12100
remove 0 12101
remove 0 12102
remove 0 12103
remove 0 12104
remove 0 12105
remove 0 12106
remove 0 12107
remove 0 12108
remove 0 12109
remove 0 12110
remove 0 12111
remove 0 12112
remove 0 12113
remove 0 12114
remove 0 12115
remove 0 12116
remove 0 12117
remove 0 12118
remove 0 12119
remove 0 12120
remove 0 12121
remove 0 12122
remove 0 12123
remove 0 12124
remove 0 12125
remove 0 12126
remove 0 12127
remove 0 12128
remove 0 12129
remove 0 12130
remove 0 12131
remove 0 12132
remove 0 12133
remove 0 12134
remove 0 12135
remove 0 12136
remove 0 12137
remove 0 12138
remove 0 12139
remove 0 12140
remove 0 12141
remove 0 12142
remove 0 12143
remove 0 12144
remove 0 12145
remove 0 12146
remove 0 12147
remove 0 12148
remove 0 12149
remove 0 12150
remove 0 12151
remove 0 12152
remove 0 12153
remove 0 12154
remove 0 12155
remove 0 12156
remove 0 12157
remove 0 12158
remove 0 12159
remove 0 12160
remove 0 12161
remove 0 12162
remove 0 12163
remove 0 12164
remove 0 12165
remove 0 12166
remove 0 12167
remove 0 12168
remove 0 12169
remove 0 12170
remove 0 12171
remove 0 12172
remove 0 12173
remove 0 12174
remove 0 12175
remove 0 12176
remove 0 12177
remove 0 12178
remove 0 12179
remove 0 12180
remove 0 12181
remove 0 12182
remove 0 12183
remove 0 12184
remove 0 12185
remove 0 12186
remove 0 12187
remove 0 12188
remove 0 12189
remove 0 12190
remove 0 12191
remove 0 12192
remove 0 12193
remove 0 12194
remove 0 12195
remove 0 12196
remove 0 12197
remove 0 12198
remove 0 12199
remove 0 12200
remove 0 12201
remove 0 12202
remove 0 12203
remove 0 12204
remove 0 12205
remove 0 12206
remove 0 12207
remove 0 12208
remove 0 12209
remove 0 12210
remove 0 12211
remove 0 12212
remove 0 12213
remove 0 12214
remove 0 12215
remove 0 12216
remove 0 12217
remove 0 12218
remove 0 12219
remove 0 12220
remove 0 12221
remove 0 12222
remove 0 12223
remove 0 12224
remove 0 12225
remove 0 12226
remove 0 12227
remove 0 12228
remove 0 12229
remove 0 12230
remove 0 12231
remove 0 12232
remove 0 12233
remove 0 12234
remove 0 12235
remove 0 12236
remove 0 12237
remove 0 12238
remove 0 12239
remove 0 12240
remove 0 12241
remove 0 12242
remove 0 12243
remove 0 12244
remove 0 12245
remove 0 12246
remove 0 12247
remove 0 12248
remove 0 12249
remove 0 12250
remove 0 12251
remove 0 12252
remove 0 12253
remove 0 12254
remove 0 12255
remove 0 12256
remove 0 12257
remove 0 12258
remove 0 12259
remove 0 12260
remove 0 12261
remove 0 12262
remove 0 12263
remove 0 12264
remove 0 12265
remove 0 12266
remove 0 12267
remove 0 12268
remove 0 12269
remove 0 12270
remove 0 12271
remove 0 12272
remove 0 12273
remove 0 12274
remove 0 12275
remove 0 12276
remove 0 12277
remove 0 12278
remove 0 12279
remove 0 12280
remove 0 12281
remove 0 12282
remove 0 12283
remove 0 12284
remove 0 12285
remove 0 12286
remove 0 12287
remove 0 12288
remove 0 12289
remove 0 12290
remove 0 12291
remove 0 12292
remove 0 12293
remove 0 12294
remove 0 12295
remove 0 12296
remove 0 12297
remove 0 12298
remove 0 12299
remove 0 12300
remove 0 12301
remove 0 12302
remove 0 12303
remove 0 12304
remove 0 12305
remove 0 12306
remove 0 12307
remove 0 12308
remove 0 12309
remove 0 12310
remove 0 12311
remove 0 12312
remove 0 12313
remove 0 12314
remove 0 12315
remove 0 12316
remove 0 12317
remove 0 12318
remove 0 12319
remove 0 12320
remove 0 12321
remove 0 12322
remove 0 12323
remove 0 12324
remove 0 12325
remove 0 12326
remove 0 12327
remove 0 12328
remove 0 12329
remove 0 12330
remove 0 12331
remove 0 12332
remove 0 12333
remove 0 12334
remove 0 12335
remove 0 12336
remove 0 12337
remove 0 12338
remove 0 12339
remove 0 12340
remove 0 12341
remove 0 12342
remove 0 12343
remove 0 12344
remove 0 12345
remove 0 12346
remove 0 12347
remove 0 12348
remove 0 12349
remove 0 12350
remove 0 12351
remove 0 12352
remove 0 12353
remove 0 12354
remove 0 12355
remove 0 12356
remove 0 12357
remove 0 12358
remove 0 12359
remove 0 12360
remove 0 12361
remove 0 12362
remove 0 12363
remove 0 12364
remove 0 12365
remove 0 12366
remove 0 12367
remove 0 12368
remove 0 12369
remove 0 12370
remove 0 12371
remove 0 12372
remove 0 12373
remove 0 12374
remove 0 12375
remove 0 12376
remove 0 12377
remove 0 12378
remove 0 12379
remove 0 12380
remove 0 12381
remove 0 12382
remove 0 12383
remove 0 12384
remove 0 12385
remove 0 12386
remove 0 12387
remove 0 12388
remove 0 12389
remove 0 12390
remove 0 12391
remove 0 12392
remove 0 12393
remove 0 12394
remove 0 12395
remove 0 12396
remove 0 12397
remove 0 12398
remove 0 12399
remove 0 12400
remove 0 12401
remove 0 12402
remove 0 12403
remove 0 12404
remove 0 12405
remove 0 12406
remove 0 12407
remove 0 12408
remove 0 12409
remove 0 12410
remove 0 12411
remove 0 12412
remove 0 12413
remove 0 12414
remove 0 12415
remove 0 12416
remove 0 12417
remove 0 12418
remove 0 12419
remove 0 12420
remove 0 12421
remove 0 12422
remove 0 12423
remove 0 12424
remove 0 12425
remove 0 12426
remove 0 12427
remove 0 12428
remove 0 12429
remove 0 12430
remove 0 12431
remove 0 12432
remove 0 12433
remove 0 12434
remove 0 12435
remove 0 12436
remove 0 12437
remove 0 12438
remove 0 12439
remove 0 12440
remove 0 12441
remove 0 12442
remove 0 12443
remove 0 12444
remove 0 12445
remove 0 12446
remove 0 12447
remove 0 12448
remove 0 12449
remove 0 12450
remove 0 12451
remove 0 12452
remove 0 12453
remove 0 12454
remove 0 12455
remove 0 12456
remove 0 12457
remove 0 12458
remove 0 12459
remove 0 12460
remove 0 12461
remove 0 12462
remove 0 12463
remove 0 12464
remove 0 12465
remove 0 12466
remove 0 12467
remove 0 12468
remove 0 12469
remove 0 12470
remove 0 12471
remove 0 12472
remove 0 12473
remove 0 12474
remove 0 12475
remove 0 12476
remove 0 12477
remove 0 12478
remove 0 12479
remove 0 12480
remove 0 12481
remove 0 12482
remove 0 12483
remove 0 12484
remove 0 12485
remove 0 12486
remove 0 12487
remove 0 12488
remove 0 12489
remove 0 12490
remove 0 12491
remove 0 12492
remove 0 12493
remove 0 12494
remove 0 12495
remove 0 12496
remove 0 12497
remove 0 12498
remove 0 12499
remove 0 12500
remove 0 12501
remove 0 12502
remove 0 12503
remove 0 12504
remove 0 12505
remove 0 12506
remove 0 12507
remove 0 12508
remove 0 12509
remove 0 12510
remove 0 12511
remove 0 12512
remove 0 12513
remove 0 12514
remove 0 12515
remove 0 12516
remove 0 12517
remove 0 12518
remove 0 12519
remove 0 12520
remove 0 12521
remove 0 12522
remove 0 12523
remove 0 12524
remove 0 12525
remove 0 12526
remove 0 12527
remove 0 12528
remove 0 12529
remove 0 12530
remove 0 12531
remove 0 12532
remove 0 12533
remove 0 12534
remove 0 12535
remove 0 12536
remove 0 12537
remove 0 12538
remove 0 12539
remove 0 12540
remove 0 12541
remove 0 12542
remove 0 12543
remove 0 12544
remove 0 12545
remove 0 12546
remove 0 12547
remove 0 12548
remove 0 12549
remove 0 12550
remove 0 12551
remove 0 12552
remove 0 12553
remove 0 12554
remove 0 12555
remove 0 12556
remove 0 12557
remove 0 12558
remove 0 12559
remove 0 12560
remove 0 12561
remove 0 12562
remove 0 12563
remove 0 12564
remove 0 12565
remove 0 12566
remove 0 12567
remove 0 12568
remove 0 12569
remove 0 12570
remove 0 12571
remove 0 12572
remove 0 12573
remove 0 12574
remove 0 12575
remove 0 12576
remove 0 12577
remove 0 12578
remove 0 12579
remove 0 12580
remove 0 12581
remove 0 12582
remove 0 12583
remove 0 12584
remove 0 12585
remove 0 12586
remove 0 12587
remove 0 12588
remove 0 12589
remove 0 12590
remove 0 12591
remove 0 12592
remove 0 12593
remove 0 12594
remove 0 12595
remove 0 12596
remove 0 12597
remove 0 12598
remove 0 12599
remove 0 12600
remove 0 12601
remove 0 12602
remove 0 12603
remove 0 12604
remove 0 12605
remove 0 12606
remove 0 12607
remove 0 12608
remove 0 12609
remove 0 12610
remove 0 12611
remove 0 12612
remove 0 12613
remove 0 12614
remove 0 12615
remove 0 12616
remove 0 12617
remove 0 12618
remove 0 12619
remove 0 12620
remove 0 12621
remove 0 12622
remove 0 12623
remove 0 12624
remove 0 12625
remove 0 12626
remove 0 12627
remove 0 12628
remove 0 12629
remove 0 12630
remove 0 12631
remove 0 12632
remove 0 12633
remove 0 12634
remove 0 12635
remove 0 12636
remove 0 12637
remove 0 12638
remove 0 12639
remove 0 12640
remove 0 12641
remove 0 12642
remove 0 12643
remove 0 12644
remove 0 12645
remove 0 12646
remove 0 12647
remove 0 12648
remove 0 12649
remove 0 12650
remove 0 12651
remove 0 12652
remove 0 12653
remove 0 12654
remove 0 12655
remove 0 12656
remove 0 12657
remove 0 12658
remove 0 12659
remove 0 12660
remove 0 12661
remove 0 12662
remove 0 12663
remove 0 12664
remove 0 12665
remove 0 12666
remove 0 12667
remove 0 12668
remove 0 12669
remove 0 12670
remove 0 12671
remove 0 12672
remove 0 12673
remove 0 12674
remove 0 12675
remove 0 12676
remove 0 12677
remove 0 12678
remove 0 12679
remove 0 12680
remove 0 12681
remove 0 12682
remove 0 12683
remove 0 12684
remove 0 12685
remove 0 12686
remove 0 12687
remove 0 12688
remove 0 12689
remove 0 12690
remove 0 12691
remove 0 12692
remove 0 12693
remove 0 12694
remove 0 12695
remove 0 12696
remove 0 12697
remove 0 12698
remove 0 12699
remove 0 12700
remove 0 12701
remove 0 12702
remove 0 12703
remove 0 12704
remove 0 12705
remove 0 12706
remove 0 12707
remove 0 12708
remove 0 12709
remove 0 12710
remove 0 12711
remove 0 12712
remove 0 12713
remove 0 12714
remove 0 12715
remove 0 12716
remove 0 12717
remove 0 12718
remove 0 12719
remove 0 12720
remove 0 12721
remove 0 12722
remove 0 12723
remove 0 12724
remove 0 12725
remove 0 12726
remove 0 12727
remove 0 12728
remove 0 12729
remove 0 12730
remove 0 12731
remove 0 12732
remove 0 12733
remove 0 12734
remove 0 12735
remove 0 12736
remove 0 12737
remove 0 12738
remove 0 12739
remove 0 12740
remove 0 12741
remove 0 12742
remove 0 12743
remove 0 12744
remove 0 12745
remove 0 12746
remove 0 12747
remove 0 12748
remove 0 12749
remove 0 12750
remove 0 12751
remove 0 12752
remove 0 12753
remove 0 12754
remove 0 12755
remove 0 12756
remove 0 12757
remove 0 12758
remove 0 12759
remove 0 12760
remove 0 12761
remove 0 12762
remove 0 12763
remove 0 12764
remove 0 12765
remove 0 12766
remove 0 12767
remove 0 12768
remove 0 12769
remove 0 12770
remove 0 12771
remove 0 12772
remove 0 12773
remove 0 12774
remove 0 12775
remove 0 12776
remove 0 12777
remove 0 12778
remove 0 12779
remove 0 12780
remove 0 12781
remove 0 12782
remove 0 12783
remove 0 12784
remove 0 12785
remove 0 12786
remove 0 12787
remove 0 12788
remove 0 12789
remove 0 12790
remove 0 12791
remove 0 12792
remove 0 12793
remove 0 12794
remove 0 12795
remove 0 12796
remove 0 12797
remove 0 12798
remove 0 12799
remove 0 12800
remove 0 12801
remove 0 12802
remove 0 12803
remove 0 12804
remove 0 12805
remove 0 12806
remove 0 12807
remove 0 12808
remove 0 12809
remove 0 12810
remove 0 12811
remove 0 12812
remove 0 12813
remove 0 12814
remove 0 12815
remove 0 12816
remove 0 12817
remove 0 12818
remove 0 12819
remove 0 12820
remove 0 12821
remove 0 12822
remove 0 12823
remove 0 12824
remove 0 12825
remove 0 12826
remove 0 12827
remove 0 12828
remove 0 12829
remove 0 12830
remove 0 12831
remove 0 12832
remove 0 12833
remove 0 12834
remove 0 12835
remove 0 12836
remove 0 12837
remove 0 12838
remove 0 12839
remove 0 12840
remove 0 12841
remove 0 12842
remove 0 12843
remove 0 12844
remove 0 12845
remove 0 12846
remove 0 12847
remove 0 12848
remove 0 12849
remove 0 12850
remove 0 12851
remove 0 12852
remove 0 12853
remove 0 12854
remove 0 12855
remove 0 12856
remove 0 12857
remove 0 12858
remove 0 12859
remove 0 12860
remove 0 12861
remove 0 12862
remove 0 12863
remove 0 12864
remove 0 12865
remove 0 12866
remove 0 12867
remove 0 12868
remove 0 12869
remove 0 12870
remove 0 12871
remove 0 12872
remove 0 12873
remove 0 12874
remove 0 12875
remove 0 12876
remove 0 12877
remove 0 12878
remove 0 12879
remove 0 12880
remove 0 12881
remove 0 12882
remove 0 12883
remove 0 12884
remove 0 12885
remove 0 12886
remove 0 12887
remove 0 12888
remove 0 12889
remove 0 12890
remove 0 12891
remove 0 12892
remove 0 12893
remove 0 12894
remove 0 12895
remove 0 12896
remove 0 12897
remove 0 12898
remove 0 12899
remove 0 12900
remove 0 12901
remove 0 12902
remove 0 12903
remove 0 12904
remove 0 12905
remove 0 12906
remove 0 12907
remove 0 12908
remove 0 12909
remove 0 12910
remove 0 12911
remove 0 12912
remove 0 12913
remove 0 12914
remove 0 12915
remove 0 12916
remove 0 12917
remove 0 12918
remove 0 12919
remove 0 12920
remove 0 12921
remove 0 12922
remove 0 12923
remove 0 12924
remove 0 12925
remove 0 12926
remove 0 12927
remove 0 12928
remove 0 12929
remove 0 12930
remove 0 12931
remove 0 12932
remove 0 12933
remove 0 12934
remove 0 12935
remove 0 12936
remove 0 12937
remove 0 12938
remove 0 12939
remove 0 12940
remove 0 12941
remove 0 12942
remove 0 12943
remove 0 12944
remove 0 12945
remove 0 12946
remove 0 12947
remove 0 12948
remove 0 12949
remove 0 12950
remove 0 12951
remove 0 12952
remove 0 12953
remove 0 12954
remove 0 12955
remove 0 12956
remove 0 12957
remove 0 12958
remove 0 12959
remove 0 12960
remove 0 12961
remove 0 12962
remove 0 12963
remove 0 12964
remove 0 12965
remove 0 12966
remove 0 12967
remove 0 12968
remove 0 12969
remove 0 12970
remove 0 12971
remove 0 12972
remove 0 12973
remove 0 12974
remove 0 12975
remove 0 12976
remove 0 12977
remove 0 12978
remove 0 12979
remove 0 12980
remove 0 12981
remove 0 12982
remove 0 12983
remove 0 12984
remove 0 12985
remove 0 12986
remove 0 12987
remove 0 12988
remove 0 12989
remove 0 12990
remove 0 12991
remove 0 12992
remove 0 12993
remove 0 12994
remove 0 12995
remove 0 12996
remove 0 12997
remove 0 12998
remove 0 12999
remove 0 13000
remove 0 13001
remove 0 13002
remove 0 13003
remove 0 13004
remove 0 13005
remove 0 13006
remove 0 13007
remove 0 13008
remove 0 13009
remove 0 13010
remove 0 13011
remove 0 13012
remove 0 13013
remove 0 13014
remove 0 13015
remove 0 13016
remove 0 13017
remove 0 13018
remove 0 13019
remove 0 13020
remove 0 13021
remove 0 13022
remove 0 13023
remove 0 13024
remove 0 13025
remove 0 13026
remove 0 13027
remove 0 13028
remove 0 13029
remove 0 13030
remove 0 13031
remove 0 13032
remove 0 13033
remove 0 13034
remove 0 13035
remove 0 13036
remove 0 13037
remove 0 13038
remove 0 13039
remove 0 13040
remove 0 13041
remove 0 13042
remove 0 13043
remove 0 13044
remove 0 13045
remove 0 13046
remove 0 13047
remove 0 13048
remove 0 13049
remove 0 13050
remove 0 13051
remove 0 13052
remove 0 13053
remove 0 13054
remove 0 13055
remove 0 13056
remove 0 13057
remove 0 13058
remove 0 13059
remove 0 13060
remove 0 13061
remove 0 13062
remove 0 13063
remove 0 13064
remove 0 13065
remove 0 13066
remove 0 13067
remove 0 13068
remove 0 13069
remove 0 13070
remove 0 13071
remove 0 13072
remove 0 13073
remove 0 13074
remove 0 13075
remove 0 13076
remove 0 13077
remove 0 13078
remove 0 13079
remove 0 13080
remove 0 13081
remove 0 13082
remove 0 13083
remove 0 13084
remove 0 13085
remove 0 13086
remove 0 13087
remove 0 13088
remove 0 13089
remove 0 13090
remove 0 13091
remove 0 13092
remove 0 13093
remove 0 13094
remove 0 13095
remove 0 13096
remove 0 13097
remove 0 13098
remove 0 13099
remove 0 13100
remove 0 13101
remove 0 13102
remove 0 13103
remove 0 13104
remove 0 13105
remove 0 13106
remove 0 13107
remove 0 13108
remove 0 13109
remove 0 13110
remove 0 13111
remove 0 13112
remove 0 13113
remove 0 13114
remove 0 13115
remove 0 13116
remove 0 13117
remove 0 13118
remove 0 13119
remove 0 13120
remove 0 13121
remove 0 13122
remove 0 13123
remove 0 13124
remove 0 13125
remove 0 13126
remove 0 13127
remove 0 13128
remove 0 13129
remove 0 13130
remove 0 13131
remove 0 13132
remove 0 13133
remove 0 13134
remove 0 13135
remove 0 13136
remove 0 13137
remove 0 13138
remove 0 13139
remove 0 13140
remove 0 13141
remove 0 13142
remove 0 13143
remove 0 13144
remove 0 13145
remove 0 13146
remove 0 13147
remove 0 13148
remove 0 13149
remove 0 13150
remove 0 13151
remove 0 13152
remove 0 13153
remove 0 13154
remove 0 13155
remove 0 13156
remove 0 13157
remove 0 13158
remove 0 13159
remove 0 13160
remove 0 13161
remove 0 13162
remove 0 13163
remove 0 13164
remove 0 13165
remove 0 13166
remove 0 13167
remove 0 13168
remove 0 13169
remove 0 13170
remove 0 13171
remove 0 13172
remove 0 13173
remove 0 13174
remove 0 13175
remove 0 13176
remove 0 13177
remove 0 13178
remove 0 13179
remove 0 13180
remove 0 13181
remove 0 13182
remove 0 13183
remove 0 13184
remove 0 13185
remove 0 13186
remove 0 13187
remove 0 13188
remove 0 13189
remove 0 13190
remove 0 13191
remove 0 13192
remove 0 13193
remove 0 13194
remove 0 13195
remove 0 13196
remove 0 13197
remove 0 13198
remove 0 13199
remove 0 13200
remove 0 13201
remove 0 13202
remove 0 13203
remove 0 13204
remove 0 13205
remove 0 13206
remove 0 13207
remove 0 13208
remove 0 13209
remove 0 13210
remove 0 13211
remove 0 13212
remove 0 13213
remove 0 13214
remove 0 13215
remove 0 13216
remove 0 13217
remove 0 13218
remove 0 13219
remove 0 13220
remove 0 13221
remove 0 13222
remove 0 13223
remove 0 13224
remove 0 13225
remove 0 13226
remove 0 13227
remove 0 13228
remove 0 13229
remove 0 13230
remove 0 13231
remove 0 13232
remove 0 13233
remove 0 13234
remove 0 13235
remove 0 13236
remove 0 13237
remove 0 13238
remove 0 13239
remove 0 13240
remove 0 13241
remove 0 13242
remove 0 13243
remove 0 13244
remove 0 13245
remove 0 13246
remove 0 13247
remove 0 13248
remove 0 13249
remove 0 13250
remove 0 13251
remove 0 13252
remove 0 13253
remove 0 13254
remove 0 13255
remove 0 13256
remove 0 13257
remove 0 13258
remove 0 13259
remove 0 13260
remove 0 13261
remove 0 13262
remove 0 13263
remove 0 13264
remove 0 13265
remove 0 13266
remove 0 13267
remove 0 13268
remove 0 13269
remove 0 13270
remove 0 13271
remove 0 13272
remove 0 13273
remove 0 13274
remove 0 13275
remove 0 13276
remove 0 13277
remove 0 13278
remove 0 13279
remove 0 13280
remove 0 13281
remove 0 13282
remove 0 13283
remove 0 13284
remove 0 13285
remove 0 13286
remove 0 13287
remove 0 13288
remove 0 13289
remove 0 13290
remove 0 13291
remove 0 13292
remove 0 13293
remove 0 13294
remove 0 13295
remove 0 13296
remove 0 13297
remove 0 13298
remove 0 13299
remove 0 13300
remove 0 13301
remove 0 13302
remove 0 13303
remove 0 13304
remove 0 13305
remove 0 13306
remove 0 13307
remove 0 13308
remove 0 13309
remove 0 13310
remove 0 13311
remove 0 13312
remove 0 13313
remove 0 13314
remove 0 13315
remove 0 13316
remove 0 13317
remove 0 13318
remove 0 13319
remove 0 13320
remove 0 13321
remove 0 13322
remove 0 13323
remove 0 13324
remove 0 13325
remove 0 13326
remove 0 13327
remove 0 13328
remove 0 13329
remove 0 13330
remove 0 13331
remove 0 13332
remove 0 13333
remove 0 13334
remove 0 13335
remove 0 13336
remove 0 13337
remove 0 13338
remove 0 13339
remove 0 13340
remove 0 13341
remove 0 13342
remove 0 13343
remove 0 13344
remove 0 13345
remove 0 13346
remove 0 13347
remove 0 13348
remove 0 13349
remove 0 13350
remove 0 13351
remove 0 13352
remove 0 13353
remove 0 13354
remove 0 13355
remove 0 13356
remove 0 13357
remove 0 13358
remove 0 13359
remove 0 13360
remove 0 13361
remove 0 13362
remove 0 13363
remove 0 13364
remove 0 13365
remove 0 13366
remove 0 13367
remove 0 13368
remove 0 13369
remove 0 13370
remove 0 13371
remove 0 13372
remove 0 13373
remove 0 13374
remove 0 13375
remove 0 13376
remove 0 13377
remove 0 13378
remove 0 13379
remove 0 13380
remove 0 13381
remove 0 13382
remove 0 13383
remove 0 13384
remove 0 13385
remove 0 13386
remove 0 13387
remove 0 13388
remove 0 13389
remove 0 13390
remove 0 13391
remove 0 13392
remove 0 13393
remove 0 13394
remove 0 13395
remove 0 13396
remove 0 13397
remove 0 13398
remove 0 13399
remove 0 13400
remove 0 13401
remove 0 13402
remove 0 13403
remove 0 13404
remove 0 13405
remove 0 13406
remove 0 13407
remove 0 13408
remove 0 13409
remove 0 13410
remove 0 13411
remove 0 13412
remove 0 13413
remove 0 13414
remove 0 13415
remove 0 13416
remove 0 13417
remove 0 13418
remove 0 13419
remove 0 13420
remove 0 13421
remove 0 13422
remove 0 13423
remove 0 13424
remove 0 13425
remove 0 13426
remove 0 13427
remove 0 13428
remove 0 13429
remove 0 13430
remove 0 13431
remove 0 13432
remove 0 13433
remove 0 13434
remove 0 13435
remove 0 13436
remove 0 13437
remove 0 13438
remove 0 13439
remove 0 13440
remove 0 13441
remove 0 13442
remove 0 13443
remove 0 13444
remove 0 13445
remove 0 13446
remove 0 13447
remove 0 13448
remove 0 13449
remove 0 13450
remove 0 13451
remove 0 13452
remove 0 13453
remove 0 13454
remove 0 13455
remove 0 13456
remove 0 13457
remove 0 13458
remove 0 13459
remove 0 13460
remove 0 13461
remove 0 13462
remove 0 13463
remove 0 13464
remove 0 13465
remove 0 13466
remove 0 13467
remove 0 13468
remove 0 13469
remove 0 13470
remove 0 13471
remove 0 13472
remove 0 13473
remove 0 13474
remove 0 13475
remove 0 13476
remove 0 13477
remove 0 13478
remove 0 13479
remove 0 13480
remove 0 13481
remove 0 13482
remove 0 13483
remove 0 13484
remove 0 13485
remove 0 13486
remove 0 13487
remove 0 13488
remove 0 13489
remove 0 13490
remove 0 13491
remove 0 13492
remove 0 13493
remove 0 13494
remove 0 13495
remove 0 13496
remove 0 13497
remove 0 13498
remove 0 13499
remove 0 13500
remove 0 13501
remove 0 13502
remove 0 13503
remove 0 13504
remove 0 13505
remove 0 13506
remove 0 13507
remove 0 13508
remove 0 13509
remove 0 13510
remove 0 13511
remove 0 13512
remove 0 13513
remove 0 13514
remove 0 13515
remove 0 13516
remove 0 13517
remove 0 13518
remove 0 13519
remove 0 13520
remove 0 13521
remove 0 13522
remove 0 13523
remove 0 13524
remove 0 13525
remove 0 13526
remove 0 13527
remove 0 13528
remove 0 13529
remove 0 13530
remove 0 13531
remove 0 13532
remove 0 13533
remove 0 13534
remove 0 13535
remove 0 13536
remove 0 13537
remove 0 13538
remove 0 13539
remove 0 13540
remove 0 13541
remove 0 13542
remove 0 13543
remove 0 13544
remove 0 13545
remove 0 13546
remove 0 13547
remove 0 13548
remove 0 13549
remove 0 13550
remove 0 13551
remove 0 13552
remove 0 13553
remove 0 13554
remove 0 13555
remove 0 13556
remove 0 13557
remove 0 13558
remove 0 13559
remove 0 13560
remove 0 13561
remove 0 13562
remove 0 13563
remove 0 13564
remove 0 13565
remove 0 13566
remove 0 13567
remove 0 13568
remove 0 13569
remove 0 13570
remove 0 13571
remove 0 13572
remove 0 13573
remove 0 13574
remove 0 13575
remove 0 13576
remove 0 13577
remove 0 13578
remove 0 13579
remove 0 13580
remove 0 13581
remove 0 13582
remove 0 13583
remove 0 13584
remove 0 13585
remove 0 13586
remove 0 13587
remove 0 13588
remove 0 13589
remove 0 13590
remove 0 13591
remove 0 13592
remove 0 13593
remove 0 13594
remove 0 13595
remove 0 13596
remove 0 13597
remove 0 13598
remove 0 13599
remove 0 13600
remove 0 13601
remove 0 13602
remove 0 13603
remove 0 13604
remove 0 13605
remove 0 13606
remove 0 13607
remove 0 13608
remove 0 13609
remove 0 13610
remove 0 13611
remove 0 13612
remove 0 13613
remove 0 13614
remove 0 13615
remove 0 13616
remove 0 13617
remove 0 13618
remove 0 13619
remove 0 13620
remove 0 13621
remove 0 13622
remove 0 13623
remove 0 13624
remove 0 13625
remove 0 13626
remove 0 13627
remove 0 13628
remove 0 13629
remove 0 13630
remove 0 13631
remove 0 13632
remove 0 13633
remove 0 13634
remove 0 13635
remove 0 13636
remove 0 13637
remove 0 13638
remove 0 13639
remove 0 13640
remove 0 13641
remove 0 13642
remove 0 13643
remove 0 13644
remove 0 13645
remove 0 13646
remove 0 13647
remove 0 13648
remove 0 13649
remove 0 13650
remove 0 13651
remove 0 13652
remove 0 13653
remove 0 13654
remove 0 13655
remove 0 13656
remove 0 13657
remove 0 13658
remove 0 13659
remove 0 13660
remove 0 13661
remove 0 13662
remove 0 13663
remove 0 13664
remove 0 13665
remove 0 13666
remove 0 13667
remove 0 13668
remove 0 13669
remove 0 13670
remove 0 13671
remove 0 13672
remove 0 13673
remove 0 13674
remove 0 13675
remove 0 13676
remove 0 13677
remove 0 13678
remove 0 13679
remove 0 13680
remove 0 13681
remove 0 13682
remove 0 13683
remove 0 13684
remove 0 13685
remove 0 13686
remove 0 13687
remove 0 13688
remove 0 13689
remove 0 13690
remove 0 13691
remove 0 13692
remove 0 13693
remove 0 13694
remove 0 13695
remove 0 13696
remove 0 13697
remove 0 13698
remove 0 13699
remove 0 13700
remove 0 13701
remove 0 13702
remove 0 13703
remove 0 13704
remove 0 13705
remove 0 13706
remove 0 13707
remove 0 13708
remove 0 13709
remove 0 13710
remove 0 13711
remove 0 13712
remove 0 13713
remove 0 13714
remove 0 13715
remove 0 13716
remove 0 13717
remove 0 13718
remove 0 13719
remove 0 13720
remove 0 13721
remove 0 13722
remove 0 13723
remove 0 13724
remove 0 13725
remove 0 13726
remove 0 13727
remove 0 13728
remove 0 13729
remove 0 13730
remove 0 13731
remove 0 13732
remove 0 13733
remove 0 13734
remove 0 13735
remove 0 13736
remove 0 13737
remove 0 13738
remove 0 13739
remove 0 13740
remove 0 13741
remove 0 13742
remove 0 13743
remove 0 13744
remove 0 13745
remove 0 13746
remove 0 13747
remove 0 13748
remove 0 13749
remove 0 13750
remove 0 13751
remove 0 13752
remove 0 13753
remove 0 13754
remove 0 13755
remove 0 13756
remove 0 13757
remove 0 13758
remove 0 13759
remove 0 13760
remove 0 13761
remove 0 13762
remove 0 13763
remove 0 13764
remove 0 13765
remove 0 13766
remove 0 13767
remove 0 13768
remove 0 13769
remove 0 13770
remove 0 13771
remove 0 13772
remove 0 13773
remove 0 13774
remove 0 13775
remove 0 13776
remove 0 13777
remove 0 13778
remove 0 13779
remove 0 13780
remove 0 13781
remove 0 13782
remove 0 13783
remove 0 13784
remove 0 13785
remove 0 13786
remove 0 13787
remove 0 13788
remove 0 13789
remove 0 13790
remove 0 13791
remove 0 13792
remove 0 13793
remove 0 13794
remove 0 13795
remove 0 13796
remove 0 13797
remove 0 13798
remove 0 13799
remove 0 13800
remove 0 13801
remove 0 13802
remove 0 13803
remove 0 13804
remove 0 13805
remove 0 13806
remove 0 13807
remove 0 13808
remove 0 13809
remove 0 13810
remove 0 13811
remove 0 13812
remove 0 13813
remove 0 13814
remove 0 13815
remove 0 13816
remove 0 13817
remove 0 13818
remove 0 13819
remove 0 13820
remove 0 13821
remove 0 13822
remove 0 13823
remove 0 13824
remove 0 13825
remove 0 13826
remove 0 13827
remove 0 13828
remove 0 13829
remove 0 13830
remove 0 13831
remove 0 13832
remove 0 13833
remove 0 13834
remove 0 13835
remove 0 13836
remove 0 13837
remove 0 13838
remove 0 13839
remove 0 13840
remove 0 13841
remove 0 13842
remove 0 13843
remove 0 13844
remove 0 13845
remove 0 13846
remove 0 13847
remove 0 13848
remove 0 13849
remove 0 13850
remove 0 13851
remove 0 13852
remove 0 13853
remove 0 13854
remove 0 13855
remove 0 13856
remove 0 13857
remove 0 13858
remove 0 13859
remove 0 13860
remove 0 13861
remove 0 13862
remove 0 13863
remove 0 13864
remove 0 13865
remove 0 13866
remove 0 13867
remove 0 13868
remove 0 13869
remove 0 13870
remove 0 13871
remove 0 13872
remove 0 13873
remove 0 13874
remove 0 13875
remove 0 13876
remove 0 13877
remove 0 13878
remove 0 13879
remove 0 13880
remove 0 13881
remove 0 13882
remove 0 13883
remove 0 13884
remove 0 13885
remove 0 13886
remove 0 13887
remove 0 13888
remove 0 13889
remove 0 13890
remove 0 13891
remove 0 13892
remove 0 13893
remove 0 13894
remove 0 13895
remove 0 13896
remove 0 13897
remove 0 13898
remove 0 13899
remove 0 13900
remove 0 13901
remove 0 13902
remove 0 13903
remove 0 13904
remove 0 13905
remove 0 13906
remove 0 13907
remove 0 13908
remove 0 13909
remove 0 13910
remove 0 13911
remove 0 13912
remove 0 13913
remove 0 13914
remove 0 13915
remove 0 13916
remove 0 13917
remove 0 13918
remove 0 13919
remove 0 13920
remove 0 13921
remove 0 13922
remove 0 13923
remove 0 13924
remove 0 13925
remove 0 13926
remove 0 13927
remove 0 13928
remove 0 13929
remove 0 13930
remove 0 13931
remove 0 13932
remove 0 13933
remove 0 13934
remove 0 13935
remove 0 13936
remove 0 13937
remove 0 13938
remove 0 13939
remove 0 13940
remove 0 13941
remove 0 13942
remove 0 13943
remove 0 13944
remove 0 13945
remove 0 13946
remove 0 13947
remove 0 13948
remove 0 13949
remove 0 13950
remove 0 13951
remove 0 13952
remove 0 13953
remove 0 13954
remove 0 13955
remove 0 13956
remove 0 13957
remove 0 13958
remove 0 13959
remove 0 13960
remove 0 13961
remove 0 13962
remove 0 13963
remove 0 13964
remove 0 13965
remove 0 13966
remove 0 13967
remove 0 13968
remove 0 13969
remove 0 13970
remove 0 13971
remove 0 13972
remove 0 13973
remove 0 13974
remove 0 13975
remove 0 13976
remove 0 13977
remove 0 13978
remove 0 13979
remove 0 13980
remove 0 13981
remove 0 13982
remove 0 13983
remove 0 13984
remove 0 13985
remove 0 13986
remove 0 13987
remove 0 13988
remove 0 13989
remove 0 13990
remove 0 13991
remove 0 13992
remove 0 13993
remove 0 13994
remove 0 13995
remove 0 13996
remove 0 13997
remove 0 13998
remove 0 13999
remove 0 14000
remove 0 14001
remove 0 14002
remove 0 14003
remove 0 14004
remove 0 14005
remove 0 14006
remove 0 14007
remove 0 14008
remove 0 14009
remove 0 14010
remove 0 14011
remove 0 14012
remove 0 14013
remove 0 14014
remove 0 14015
remove 0 14016
remove 0 14017
remove 0 14018
remove 0 14019
remove 0 14020
remove 0 14021
remove 0 14022
remove 0 14023
remove 0 14024
remove 0 14025
remove 0 14026
remove 0 14027
remove 0 14028
remove 0 14029
remove 0 14030
remove 0 14031
remove 0 14032
remove 0 14033
remove 0 14034
remove 0 14035
remove 0 14036
remove 0 14037
remove 0 14038
remove 0 14039
remove 0 14040
remove 0 14041
remove 0 14042
remove 0 14043
remove 0 14044
remove 0 14045
remove 0 14046
remove 0 14047
remove 0 14048
remove 0 14049
remove 0 14050
remove 0 14051
remove 0 14052
remove 0 14053
remove 0 14054
remove 0 14055
remove 0 14056
remove 0 14057
remove 0 14058
remove 0 14059
remove 0 14060
remove 0 14061
remove 0 14062
remove 0 14063
remove 0 14064
remove 0 14065
remove 0 14066
remove 0 14067
remove 0 14068
remove 0 14069
remove 0 14070
remove 0 14071
remove 0 14072
remove 0 14073
remove 0 14074
remove 0 14075
remove 0 14076
remove 0 14077
remove 0 14078
remove 0 14079
remove 0 14080
remove 0 14081
remove 0 14082
remove 0 14083
remove 0 14084
remove 0 14085
remove 0 14086
remove 0 14087
remove 0 14088
remove 0 14089
remove 0 14090
remove 0 14091
remove 0 14092
remove 0 14093
remove 0 14094
remove 0 14095
remove 0 14096
remove 0 14097
remove 0 14098
remove 0 14099
remove 0 14100
remove 0 14101
remove 0 14102
remove 0 14103
remove 0 14104
remove 0 14105
remove 0 14106
remove 0 14107
remove 0 14108
remove 0 14109
remove 0 14110
remove 0 14111
remove 0 14112
remove 0 14113
remove 0 14114
remove 0 14115
remove 0 14116
remove 0 14117
remove 0 14118
remove 0 14119
remove 0 14120
remove 0 14121
remove 0 14122
remove 0 14123
remove 0 14124
remove 0 14125
remove 0 14126
remove 0 14127
remove 0 14128
remove 0 14129
remove 0 14130
remove 0 14131
remove 0 14132
remove 0 14133
remove 0 14134
remove 0 14135
remove 0 14136
remove 0 14137
remove 0 14138
remove 0 14139
remove 0 14140
remove 0 14141
remove 0 14142
remove 0 14143
remove 0 14144
remove 0 14145
remove 0 14146
remove 0 14147
remove 0 14148
remove 0 14149
remove 0 14150
remove 0 14151
remove 0 14152
remove 0 14153
remove 0 14154
remove 0 14155
remove 0 14156
remove 0 14157
remove 0 14158
remove 0 14159
remove 0 14160
remove 0 14161
remove 0 14162
remove 0 14163
remove 0 14164
remove 0 14165
remove 0 14166
remove 0 14167
remove 0 14168
remove 0 14169
remove 0 14170
remove 0 14171
remove 0 14172
remove 0 14173
remove 0 14174
remove 0 14175
remove 0 14176
remove 0 14177
remove 0 14178
remove 0 14179
remove 0 14180
remove 0 14181
remove 0 14182
remove 0 14183
remove 0 14184
remove 0 14185
remove 0 14186
remove 0 14187
remove 0 14188
remove 0 14189
remove 0 14190
remove 0 14191
remove 0 14192
remove 0 14193
remove 0 14194
remove 0 14195
remove 0 14196
remove 0 14197
remove 0 14198
remove 0 14199
remove 0 14200
remove 0 14201
remove 0 14202
remove 0 14203
remove 0 14204
remove 0 14205
remove 0 14206
remove 0 14207
remove 0 14208
remove 0 14209
remove 0 14210
remove 0 14211
remove 0 14212
remove 0 14213
remove 0 14214
remove 0 14215
remove 0 14216
remove 0 14217
remove 0 14218
remove 0 14219
remove 0 14220
remove 0 14221
remove 0 14222
remove 0 14223
remove 0 14224
remove 0 14225
remove 0 14226
remove 0 14227
remove 0 14228
remove 0 14229
remove 0 14230
remove 0 14231
remove 0 14232
remove 0 14233
remove 0 14234
remove 0 14235
remove 0 14236
remove 0 14237
remove 0 14238
remove 0 14239
remove 0 14240
remove 0 14241
remove 0 14242
remove 0 14243
remove 0 14244
remove 0 14245
remove 0 14246
remove 0 14247
remove 0 14248
remove 0 14249
remove 0 14250
remove 0 14251
remove 0 14252
remove 0 14253
remove 0 14254
remove 0 14255
remove 0 14256
remove 0 14257
remove 0 14258
remove 0 14259
remove 0 14260
remove 0 14261
remove 0 14262
remove 0 14263
remove 0 14264
remove 0 14265
remove 0 14266
remove 0 14267
remove 0 14268
remove 0 14269
remove 0 14270
remove 0 14271
remove 0 14272
remove 0 14273
remove 0 14274
remove 0 14275
remove 0 14276
remove 0 14277
remove 0 14278
remove 0 14279
remove 0 14280
remove 0 14281
remove 0 14282
remove 0 14283
remove 0 14284
remove 0 14285
remove 0 14286
remove 0 14287
remove 0 14288
remove 0 14289
remove 0 14290
remove 0 14291
remove 0 14292
remove 0 14293
remove 0 14294
remove 0 14295
remove 0 14296
remove 0 14297
remove 0 14298
remove 0 14299
remove 0 14300
remove 0 14301
remove 0 14302
remove 0 14303
remove 0 14304
remove 0 14305
remove 0 14306
remove 0 14307
remove 0 14308
remove 0 14309
remove 0 14310
remove 0 14311
remove 0 14312
remove 0 14313
remove 0 14314
remove 0 14315
remove 0 14316
remove 0 14317
remove 0 14318
remove 0 14319
remove 0 14320
remove 0 14321
remove 0 14322
remove 0 14323
remove 0 14324
remove 0 14325
remove 0 14326
remove 0 14327
remove 0 14328
remove 0 14329
remove 0 14330
remove 0 14331
remove 0 14332
remove 0 14333
remove 0 14334
remove 0 14335
remove 0 14336
remove 0 14337
remove 0 14338
remove 0 14339
remove 0 14340
remove 0 14341
remove 0 14342
remove 0 14343
remove 0 14344
remove 0 14345
remove 0 14346
remove 0 14347
remove 0 14348
remove 0 14349
remove 0 14350
remove 0 14351
remove 0 14352
remove 0 14353
remove 0 14354
remove 0 14355
remove 0 14356
remove 0 14357
remove 0 14358
remove 0 14359
remove 0 14360
remove 0 14361
remove 0 14362
remove 0 14363
remove 0 14364
remove 0 14365
remove 0 14366
remove 0 14367
remove 0 14368
remove 0 14369
remove 0 14370
remove 0 14371
remove 0 14372
remove 0 14373
remove 0 14374
remove 0 14375
remove 0 14376
remove 0 14377
remove 0 14378
remove 0 14379
remove 0 14380
remove 0 14381
remove 0 14382
remove 0 14383
remove 0 14384
remove 0 14385
remove 0 14386
remove 0 14387
remove 0 14388
remove 0 14389
remove 0 14390
remove 0 14391
remove 0 14392
remove 0 14393
remove 0 14394
remove 0 14395
remove 0 14396
remove 0 14397
remove 0 14398
remove 0 14399
remove 0 14400
remove 0 14401
remove 0 14402
remove 0 14403
remove 0 14404
remove 0 14405
remove 0 14406
remove 0 14407
remove 0 14408
remove 0 14409
remove 0 14410
remove 0 14411
remove 0 14412
remove 0 14413
remove 0 14414
remove 0 14415
remove 0 14416
remove 0 14417
remove 0 14418
remove 0 14419
remove 0 14420
remove 0 14421
remove 0 14422
remove 0 14423
remove 0 14424
remove 0 14425
remove 0 14426
remove 0 14427
remove 0 14428
remove 0 14429
remove 0 14430
remove 0 14431
remove 0 14432
remove 0 14433
remove 0 14434
remove 0 14435
remove 0 14436
remove 0 14437
remove 0 14438
remove 0 14439
remove 0 14440
remove 0 14441
remove 0 14442
remove 0 14443
remove 0 14444
remove 0 14445
remove 0 14446
remove 0 14447
remove 0 14448
remove 0 14449
remove 0 14450
remove 0 14451
remove 0 14452
remove 0 14453
remove 0 14454
remove 0 14455
remove 0 14456
remove 0 14457
remove 0 14458
remove 0 14459
remove 0 14460
remove 0 14461
remove 0 14462
remove 0 14463
remove 0 14464
remove 0 14465
remove 0 14466
remove 0 14467
remove 0 14468
remove 0 14469
remove 0 14470
remove 0 14471
remove 0 14472
remove 0 14473
remove 0 14474
remove 0 14475
remove 0 14476
remove 0 14477
remove 0 14478
remove 0 14479
remove 0 14480
remove 0 14481
remove 0 14482
remove 0 14483
remove 0 14484
remove 0 14485
remove 0 14486
remove 0 14487
remove 0 14488
remove 0 14489
remove 0 14490
remove 0 14491
remove 0 14492
remove 0 14493
remove 0 14494
remove 0 14495
remove 0 14496
remove 0 14497
remove 0 14498
remove 0 14499
remove 0 14500
remove 0 14501
remove 0 14502
remove 0 14503
remove 0 14504
remove 0 14505
remove 0 14506
remove 0 14507
remove 0 14508
remove 0 14509
remove 0 14510
remove 0 14511
remove 0 14512
remove 0 14513
remove 0 14514
remove 0 14515
remove 0 14516
remove 0 14517
remove 0 14518
remove 0 14519
remove 0 14520
remove 0 14521
remove 0 14522
remove 0 14523
remove 0 14524
remove 0 14525
remove 0 14526
remove 0 14527
remove 0 14528
remove 0 14529
remove 0 14530
remove 0 14531
remove 0 14532
remove 0 14533
remove 0 14534
remove 0 14535
remove 0 14536
remove 0 14537
remove 0 14538
remove 0 14539
remove 0 14540
remove 0 14541
remove 0 14542
remove 0 14543
remove 0 14544
remove 0 14545
remove 0 14546
remove 0 14547
remove 0 14548
remove 0 14549
remove 0 14550
remove 0 14551
remove 0 14552
remove 0 14553
remove 0 14554
remove 0 14555
remove 0 14556
remove 0 14557
remove 0 14558
remove 0 14559
remove 0 14560
remove 0 14561
remove 0 14562
remove 0 14563
remove 0 14564
remove 0 14565
remove 0 14566
remove 0 14567
remove 0 14568
remove 0 14569
remove 0 14570
remove 0 14571
remove 0 14572
remove 0 14573
remove 0 14574
remove 0 14575
remove 0 14576
remove 0 14577
remove 0 14578
remove 0 14579
remove 0 14580
remove 0 14581
remove 0 14582
remove 0 14583
remove 0 14584
remove 0 14585
remove 0 14586
remove 0 14587
remove 0 14588
remove 0 14589
remove 0 14590
remove 0 14591
remove 0 14592
remove 0 14593
remove 0 14594
remove 0 14595
remove 0 14596
remove 0 14597
remove 0 14598
remove 0 14599
remove 0 14600
remove 0 14601
remove 0 14602
remove 0 14603
remove 0 14604
remove 0 14605
remove 0 14606
remove 0 14607
remove 0 14608
remove 0 14609
remove 0 14610
remove 0 14611
remove 0 14612
remove 0 14613
remove 0 14614
remove 0 14615
remove 0 14616
remove 0 14617
remove 0 14618
remove 0 14619
remove 0 14620
remove 0 14621
remove 0 14622
remove 0 14623
remove 0 14624
remove 0 14625
remove 0 14626
remove 0 14627
remove 0 14628
remove 0 14629
remove 0 14630
remove 0 14631
remove 0 14632
remove 0 14633
remove 0 14634
remove 0 14635
remove 0 14636
remove 0 14637
remove 0 14638
remove 0 14639
remove 0 14640
remove 0 14641
remove 0 14642
remove 0 14643
remove 0 14644
remove 0 14645
remove 0 14646
remove 0 14647
remove 0 14648
remove 0 14649
remove 0 14650
remove 0 14651
remove 0 14652
remove 0 14653
remove 0 14654
remove 0 14655
remove 0 14656
remove 0 14657
remove 0 14658
remove 0 14659
remove 0 14660
remove 0 14661
remove 0 14662
remove 0 14663
remove 0 14664
remove 0 14665
remove 0 14666
remove 0 14667
remove 0 14668
remove 0 14669
remove 0 14670
remove 0 14671
remove 0 14672
remove 0 14673
remove 0 14674
remove 0 14675
remove 0 14676
remove 0 14677
remove 0 14678
remove 0 14679
remove 0 14680
remove 0 14681
remove 0 14682
remove 0 14683
remove 0 14684
remove 0 14685
remove 0 14686
remove 0 14687
remove 0 14688
remove 0 14689
remove 0 14690
remove 0 14691
remove 0 14692
remove 0 14693
remove 0 14694
remove 0 14695
remove 0 14696
remove 0 14697
remove 0 14698
remove 0 14699
remove 0 14700
remove 0 14701
remove 0 14702
remove 0 14703
remove 0 14704
remove 0 14705
remove 0 14706
remove 0 14707
remove 0 14708
remove 0 14709
remove 0 14710
remove 0 14711
remove 0 14712
remove 0 14713
remove 0 14714
remove 0 14715
remove 0 14716
remove 0 14717
remove 0 14718
remove 0 14719
remove 0 14720
remove 0 14721
remove 0 14722
remove 0 14723
remove 0 14724
remove 0 14725
remove 0 14726
remove 0 14727
remove 0 14728
remove 0 14729
remove 0 14730
remove 0 14731
remove 0 14732
remove 0 14733
remove 0 14734
remove 0 14735
remove 0 14736
remove 0 14737
remove 0 14738
remove 0 14739
remove 0 14740
remove 0 14741
remove 0 14742
remove 0 14743
remove 0 14744
remove 0 14745
remove 0 14746
remove 0 14747
remove 0 14748
remove 0 14749
remove 0 14750
remove 0 14751
remove 0 14752
remove 0 14753
remove 0 14754
remove 0 14755
remove 0 14756
remove 0 14757
remove 0 14758
remove 0 14759
remove 0 14760
remove 0 14761
remove 0 14762
remove 0 14763
remove 0 14764
remove 0 14765
remove 0 14766
remove 0 14767
remove 0 14768
remove 0 14769
remove 0 14770
remove 0 14771
remove 0 14772
remove 0 14773
remove 0 14774
remove 0 14775
remove 0 14776
remove 0 14777
remove 0 14778
remove 0 14779
remove 0 14780
remove 0 14781
remove 0 14782
remove 0 14783
remove 0 14784
remove 0 14785
remove 0 14786
remove 0 14787
remove 0 14788
remove 0 14789
remove 0 14790
remove 0 14791
remove 0 14792
remove 0 14793
remove 0 14794
remove 0 14795
remove 0 14796
remove 0 14797
remove 0 14798
remove 0 14799
remove 0 14800
remove 0 14801
remove 0 14802
remove 0 14803
remove 0 14804
remove 0 14805
remove 0 14806
remove 0 14807
remove 0 14808
remove 0 14809
remove 0 14810
remove 0 14811
remove 0 14812
remove 0 14813
remove 0 14814
remove 0 14815
remove 0 14816
remove 0 14817
remove 0 14818
remove 0 14819
remove 0 14820
remove 0 14821
remove 0 14822
remove 0 14823
remove 0 14824
remove 0 14825
remove 0 14826
remove 0 14827
remove 0 14828
remove 0 14829
remove 0 14830
remove 0 14831
remove 0 14832
remove 0 14833
remove 0 14834
remove 0 14835
remove 0 14836
remove 0 14837
remove 0 14838
remove 0 14839
remove 0 14840
remove 0 14841
remove 0 14842
remove 0 14843
remove 0 14844
remove 0 14845
remove 0 14846
remove 0 14847
remove 0 14848
remove 0 14849
remove 0 14850
remove 0 14851
remove 0 14852
remove 0 14853
remove 0 14854
remove 0 14855
remove 0 14856
remove 0 14857
remove 0 14858
remove 0 14859
remove 0 14860
remove 0 14861
remove 0 14862
remove 0 14863
remove 0 14864
remove 0 14865
remove 0 14866
remove 0 14867
remove 0 14868
remove 0 14869
remove 0 14870
remove 0 14871
remove 0 14872
remove 0 14873
remove 0 14874
remove 0 14875
remove 0 14876
remove 0 14877
remove 0 14878
remove 0 14879
remove 0 14880
remove 0 14881
remove 0 14882
remove 0 14883
remove 0 14884
remove 0 14885
remove 0 14886
remove 0 14887
remove 0 14888
remove 0 14889
remove 0 14890
remove 0 14891
remove 0 14892
remove 0 14893
remove 0 14894
remove 0 14895
remove 0 14896
remove 0 14897
remove 0 14898
remove 0 14899
remove 0 14900
remove 0 14901
remove 0 14902
remove 0 14903
remove 0 14904
remove 0 14905
remove 0 14906
remove 0 14907
remove 0 14908
remove 0 14909
remove 0 14910
remove 0 14911
remove 0 14912
remove 0 14913
remove 0 14914
remove 0 14915
remove 0 14916
remove 0 14917
remove 0 14918
remove 0 14919
remove 0 14920
remove 0 14921
remove 0 14922
remove 0 14923
remove 0 14924
remove 0 14925
remove 0 14926
remove 0 14927
remove 0 14928
remove 0 14929
remove 0 14930
remove 0 14931
remove 0 14932
remove 0 14933
remove 0 14934
remove 0 14935
remove 0 14936
remove 0 14937
remove 0 14938
remove 0 14939
remove 0 14940
remove 0 14941
remove 0 14942
remove 0 14943
remove 0 14944
remove 0 14945
remove 0 14946
remove 0 14947
remove 0 14948
remove 0 14949
remove 0 14950
remove 0 14951
remove 0 14952
remove 0 14953
remove 0 14954
remove 0 14955
remove 0 14956
remove 0 14957
remove 0 14958
remove 0 14959
remove 0 14960
remove 0 14961
remove 0 14962
remove 0 14963
remove 0 14964
remove 0 14965
remove 0 14966
remove 0 14967
remove 0 14968
remove 0 14969
remove 0 14970
remove 0 14971
remove 0 14972
remove 0 14973
remove 0 14974
remove 0 14975
remove 0 14976
remove 0 14977
remove 0 14978
remove 0 14979
remove 0 14980
remove 0 14981
remove 0 14982
remove 0 14983
remove 0 14984
remove 0 14985
remove 0 14986
remove 0 14987
remove 0 14988
remove 0 14989
remove 0 14990
remove 0 14991
remove 0 14992
remove 0 14993
remove 0 14994
remove 0 14995
remove 0 14996
remove 0 14997
remove 0 14998
remove 0 14999
remove 0 15000
remove 0 15001
remove 0 15002
remove 0 15003
remove 0 15004
remove 0 15005
remove 0 15006
remove 0 15007
remove 0 15008
remove 0 15009
remove 0 15010
remove 0 15011
remove 0 15012
remove 0 15013
remove 0 15014
remove 0 15015
remove 0 15016
remove 0 15017
remove 0 15018
remove 0 15019
remove 0 15020
remove 0 15021
remove 0 15022
remove 0 15023
remove 0 15024
remove 0 15025
remove 0 15026
remove 0 15027
remove 0 15028
remove 0 15029
remove 0 15030
remove 0 15031
remove 0 15032
remove 0 15033
remove 0 15034
remove 0 15035
remove 0 15036
remove 0 15037
remove 0 15038
remove 0 15039
remove 0 15040
remove 0 15041
remove 0 15042
remove 0 15043
remove 0 15044
remove 0 15045
remove 0 15046
remove 0 15047
remove 0 15048
remove 0 15049
remove 0 15050
remove 0 15051
remove 0 15052
remove 0 15053
remove 0 15054
remove 0 15055
remove 0 15056
remove 0 15057
remove 0 15058
remove 0 15059
remove 0 15060
remove 0 15061
remove 0 15062
remove 0 15063
remove 0 15064
remove 0 15065
remove 0 15066
remove 0 15067
remove 0 15068
remove 0 15069
remove 0 15070
remove 0 15071
remove 0 15072
remove 0 15073
remove 0 15074
remove 0 15075
remove 0 15076
remove 0 15077
remove 0 15078
remove 0 15079
remove 0 15080
remove 0 15081
remove 0 15082
remove 0 15083
remove 0 15084
remove 0 15085
remove 0 15086
remove 0 15087
remove 0 15088
remove 0 15089
remove 0 15090
remove 0 15091
remove 0 15092
remove 0 15093
remove 0 15094
remove 0 15095
remove 0 15096
remove 0 15097
remove 0 15098
remove 0 15099
remove 0 15100
remove 0 15101
remove 0 15102
remove 0 15103
remove 0 15104
remove 0 15105
remove 0 15106
remove 0 15107
remove 0 15108
remove 0 15109
remove 0 15110
remove 0 15111
remove 0 15112
remove 0 15113
remove 0 15114
remove 0 15115
remove 0 15116
remove 0 15117
remove 0 15118
remove 0 15119
remove 0 15120
remove 0 15121
remove 0 15122
remove 0 15123
remove 0 15124
remove 0 15125
remove 0 15126
remove 0 15127
remove 0 15128
remove 0 15129
remove 0 15130
remove 0 15131
remove 0 15132
remove 0 15133
remove 0 15134
remove 0 15135
remove 0 15136
remove 0 15137
remove 0 15138
remove 0 15139
remove 0 15140
remove 0 15141
remove 0 15142
remove 0 15143
remove 0 15144
remove 0 15145
remove 0 15146
remove 0 15147
remove 0 15148
remove 0 15149
remove 0 15150
remove 0 15151
remove 0 15152
remove 0 15153
remove 0 15154
remove 0 15155
remove 0 15156
remove 0 15157
remove 0 15158
remove 0 15159
remove 0 15160
remove 0 15161
remove 0 15162
remove 0 15163
remove 0 15164
remove 0 15165
remove 0 15166
remove 0 15167
remove 0 15168
remove 0 15169
remove 0 15170
remove 0 15171
remove 0 15172
remove 0 15173
remove 0 15174
remove 0 15175
remove 0 15176
remove 0 15177
remove 0 15178
remove 0 15179
remove 0 15180
remove 0 15181
remove 0 15182
remove 0 15183
remove 0 15184
remove 0 15185
remove 0 15186
remove 0 15187
remove 0 15188
remove 0 15189
remove 0 15190
remove 0 15191
remove 0 15192
remove 0 15193
remove 0 15194
remove 0 15195
remove 0 15196
remove 0 15197
remove 0 15198
remove 0 15199
remove 0 15200
remove 0 15201
remove 0 15202
remove 0 15203
remove 0 15204
remove 0 15205
remove 0 15206
remove 0 15207
remove 0 15208
remove 0 15209
remove 0 15210
remove 0 15211
remove 0 15212
remove 0 15213
remove 0 15214
remove 0 15215
remove 0 15216
remove 0 15217
remove 0 15218
remove 0 15219
remove 0 15220
remove 0 15221
remove 0 15222
remove 0 15223
remove 0 15224
remove 0 15225
remove 0 15226
remove 0 15227
remove 0 15228
remove 0 15229
remove 0 15230
remove 0 15231
remove 0 15232
remove 0 15233
remove 0 15234
remove 0 15235
remove 0 15236
remove 0 15237
remove 0 15238
remove 0 15239
remove 0 15240
remove 0 15241
remove 0 15242
remove 0 15243
remove 0 15244
remove 0 15245
remove 0 15246
remove 0 15247
remove 0 15248
remove 0 15249
remove 0 15250
remove 0 15251
remove 0 15252
remove 0 15253
remove 0 15254
remove 0 15255
remove 0 15256
remove 0 15257
remove 0 15258
remove 0 15259
remove 0 15260
remove 0 15261
remove 0 15262
remove 0 15263
remove 0 15264
remove 0 15265
remove 0 15266
remove 0 15267
remove 0 15268
remove 0 15269
remove 0 15270
remove 0 15271
remove 0 15272
remove 0 15273
remove 0 15274
remove 0 15275
remove 0 15276
remove 0 15277
remove 0 15278
remove 0 15279
remove 0 15280
remove 0 15281
remove 0 15282
remove 0 15283
remove 0 15284
remove 0 15285
remove 0 15286
remove 0 15287
remove 0 15288
remove 0 15289
remove 0 15290
remove 0 15291
remove 0 15292
remove 0 15293
remove 0 15294
remove 0 15295
remove 0 15296
remove 0 15297
remove 0 15298
remove 0 15299
remove 0 15300
remove 0 15301
remove 0 15302
remove 0 15303
remove 0 15304
remove 0 15305
remove 0 15306
remove 0 15307
remove 0 15308
remove 0 15309
remove 0 15310
remove 0 15311
remove 0 15312
remove 0 15313
remove 0 15314
remove 0 15315
remove 0 15316
remove 0 15317
remove 0 15318
remove 0 15319
remove 0 15320
remove 0 15321
remove 0 15322
remove 0 15323
remove 0 15324
remove 0 15325
remove 0 15326
remove 0 15327
remove 0 15328
remove 0 15329
remove 0 15330
remove 0 15331
remove 0 15332
remove 0 15333
remove 0 15334
remove 0 15335
remove 0 15336
remove 0 15337
remove 0 15338
remove 0 15339
remove 0 15340
remove 0 15341
remove 0 15342
remove 0 15343
remove 0 15344
remove 0 15345
remove 0 15346
remove 0 15347
remove 0 15348
remove 0 15349
remove 0 15350
remove 0 15351
remove 0 15352
remove 0 15353
remove 0 15354
remove 0 15355
remove 0 15356
remove 0 15357
remove 0 15358
remove 0 15359
remove 0 15360
remove 0 15361
remove 0 15362
remove 0 15363
remove 0 15364
remove 0 15365
remove 0 15366
remove 0 15367
remove 0 15368
remove 0 15369
remove 0 15370
remove 0 15371
remove 0 15372
remove 0 15373
remove 0 15374
remove 0 15375
remove 0 15376
remove 0 15377
remove 0 15378
remove 0 15379
remove 0 15380
remove 0 15381
remove 0 15382
remove 0 15383
remove 0 15384
remove 0 15385
remove 0 15386
remove 0 15387
remove 0 15388
remove 0 15389
remove 0 15390
remove 0 15391
remove 0 15392
remove 0 15393
remove 0 15394
remove 0 15395
remove 0 15396
remove 0 15397
remove 0 15398
remove 0 15399
remove 0 15400
remove 0 15401
remove 0 15402
remove 0 15403
remove 0 15404
remove 0 15405
remove 0 15406
remove 0 15407
remove 0 15408
remove 0 15409
remove 0 15410
remove 0 15411
remove 0 15412
remove 0 15413
remove 0 15414
remove 0 15415
remove 0 15416
remove 0 15417
remove 0 15418
remove 0 15419
remove 0 15420
remove 0 15421
remove 0 15422
remove 0 15423
remove 0 15424
remove 0 15425
remove 0 15426
remove 0 15427
remove 0 15428
remove 0 15429
remove 0 15430
remove 0 15431
remove 0 15432
remove 0 15433
remove 0 15434
remove 0 15435
remove 0 15436
remove 0 15437
remove 0 15438
remove 0 15439
remove 0 15440
remove 0 15441
remove 0 15442
remove 0 15443
remove 0 15444
remove 0 15445
remove 0 15446
remove 0 15447
remove 0 15448
remove 0 15449
remove 0 15450
remove 0 15451
remove 0 15452
remove 0 15453
remove 0 15454
remove 0 15455
remove 0 15456
remove 0 15457
remove 0 15458
remove 0 15459
remove 0 15460
remove 0 15461
remove 0 15462
remove 0 15463
remove 0 15464
remove 0 15465
remove 0 15466
remove 0 15467
remove 0 15468
remove 0 15469
remove 0 15470
remove 0 15471
remove 0 15472
remove 0 15473
remove 0 15474
remove 0 15475
remove 0 15476
remove 0 15477
remove 0 15478
remove 0 15479
remove 0 15480
remove 0 15481
remove 0 15482
remove 0 15483
remove 0 15484
remove 0 15485
remove 0 15486
remove 0 15487
remove 0 15488
remove 0 15489
remove 0 15490
remove 0 15491
remove 0 15492
remove 0 15493
remove 0 15494
remove 0 15495
remove 0 15496
remove 0 15497
remove 0 15498
remove 0 15499
remove 0 15500
remove 0 15501
remove 0 15502
remove 0 15503
remove 0 15504
remove 0 15505
remove 0 15506
remove 0 15507
remove 0 15508
remove 0 15509
remove 0 15510
remove 0 15511
remove 0 15512
remove 0 15513
remove 0 15514
remove 0 15515
remove 0 15516
remove 0 15517
remove 0 15518
remove 0 15519
remove 0 15520
remove 0 15521
remove 0 15522
remove 0 15523
remove 0 15524
remove 0 15525
remove 0 15526
remove 0 15527
remove 0 15528
remove 0 15529
remove 0 15530
remove 0 15531
remove 0 15532
remove 0 15533
remove 0 15534
remove 0 15535
remove 0 15536
remove 0 15537
remove 0 15538
remove 0 15539
remove 0 15540
remove 0 15541
remove 0 15542
remove 0 15543
remove 0 15544
remove 0 15545
remove 0 15546
remove 0 15547
remove 0 15548
remove 0 15549
remove 0 15550
remove 0 15551
remove 0 15552
remove 0 15553
remove 0 15554
remove 0 15555
remove 0 15556
remove 0 15557
remove 0 15558
remove 0 15559
remove 0 15560
remove 0 15561
remove 0 15562
remove 0 15563
remove 0 15564
remove 0 15565
remove 0 15566
remove 0 15567
remove 0 15568
remove 0 15569
remove 0 15570
remove 0 15571
remove 0 15572
remove 0 15573
remove 0 15574
remove 0 15575
remove 0 15576
remove 0 15577
remove 0 15578
remove 0 15579
remove 0 15580
remove 0 15581
remove 0 15582
remove 0 15583
remove 0 15584
remove 0 15585
remove 0 15586
remove 0 15587
remove 0 15588
remove 0 15589
remove 0 15590
remove 0 15591
remove 0 15592
remove 0 15593
remove 0 15594
remove 0 15595
remove 0 15596
remove 0 15597
remove 0 15598
remove 0 15599
remove 0 15600
remove 0 15601
remove 0 15602
remove 0 15603
remove 0 15604
remove 0 15605
remove 0 15606
remove 0 15607
remove 0 15608
remove 0 15609
remove 0 15610
remove 0 15611
remove 0 15612
remove 0 15613
remove 0 15614
remove 0 15615
remove 0 15616
remove 0 15617
remove 0 15618
remove 0 15619
remove 0 15620
remove 0 15621
remove 0 15622
remove 0 15623
remove 0 15624
remove 0 15625
remove 0 15626
remove 0 15627
remove 0 15628
remove 0 15629
remove 0 15630
remove 0 15631
remove 0 15632
remove 0 15633
remove 0 15634
remove 0 15635
remove 0 15636
remove 0 15637
remove 0 15638
remove 0 15639
remove 0 15640
remove 0 15641
remove 0 15642
remove 0 15643
remove 0 15644
remove 0 15645
remove 0 15646
remove 0 15647
remove 0 15648
remove 0 15649
remove 0 15650
remove 0 15651
remove 0 15652
remove 0 15653
remove 0 15654
remove 0 15655
remove 0 15656
remove 0 15657
remove 0 15658
remove 0 15659
remove 0 15660
remove 0 15661
remove 0 15662
remove 0 15663
remove 0 15664
remove 0 15665
remove 0 15666
remove 0 15667
remove 0 15668
remove 0 15669
remove 0 15670
remove 0 15671
remove 0 15672
remove 0 15673
remove 0 15674
remove 0 15675
remove 0 15676
remove 0 15677
remove 0 15678
remove 0 15679
remove 0 15680
remove 0 15681
remove 0 15682
remove 0 15683
remove 0 15684
remove 0 15685
remove 0 15686
remove 0 15687
remove 0 15688
remove 0 15689
remove 0 15690
remove 0 15691
remove 0 15692
remove 0 15693
remove 0 15694
remove 0 15695
remove 0 15696
remove 0 15697
remove 0 15698
remove 0 15699
remove 0 15700
remove 0 15701
remove 0 15702
remove 0 15703
remove 0 15704
remove 0 15705
remove 0 15706
remove 0 15707
remove 0 15708
remove 0 15709
remove 0 15710
remove 0 15711
remove 0 15712
remove 0 15713
remove 0 15714
remove 0 15715
remove 0 15716
remove 0 15717
remove 0 15718
remove 0 15719
remove 0 15720
remove 0 15721
remove 0 15722
remove 0 15723
remove 0 15724
remove 0 15725
remove 0 15726
remove 0 15727
remove 0 15728
remove 0 15729
remove 0 15730
remove 0 15731
remove 0 15732
remove 0 15733
remove 0 15734
remove 0 15735
remove 0 15736
remove 0 15737
remove 0 15738
remove 0 15739
remove 0 15740
remove 0 15741
remove 0 15742
remove 0 15743
remove 0 15744
remove 0 15745
remove 0 15746
remove 0 15747
remove 0 15748
remove 0 15749
remove 0 15750
remove 0 15751
remove 0 15752
remove 0 15753
remove 0 15754
remove 0 15755
remove 0 15756
remove 0 15757
remove 0 15758
remove 0 15759
remove 0 15760
remove 0 15761
remove 0 15762
remove 0 15763
remove 0 15764
remove 0 15765
remove 0 15766
remove 0 15767
remove 0 15768
remove 0 15769
remove 0 15770
remove 0 15771
remove 0 15772
remove 0 15773
remove 0 15774
remove 0 15775
remove 0 15776
remove 0 15777
remove 0 15778
remove 0 15779
remove 0 15780
remove 0 15781
remove 0 15782
remove 0 15783
remove 0 15784
remove 0 15785
remove 0 15786
remove 0 15787
remove 0 15788
remove 0 15789
remove 0 15790
remove 0 15791
remove 0 15792
remove 0 15793
remove 0 15794
remove 0 15795
remove 0 15796
remove 0 15797
remove 0 15798
remove 0 15799
remove 0 15800
remove 0 15801
remove 0 15802
remove 0 15803
remove 0 15804
remove 0 15805
remove 0 15806
remove 0 15807
remove 0 15808
remove 0 15809
remove 0 15810
remove 0 15811
remove 0 15812
remove 0 15813
remove 0 15814
remove 0 15815
remove 0 15816
remove 0 15817
remove 0 15818
remove 0 15819
remove 0 15820
remove 0 15821
remove 0 15822
remove 0 15823
remove 0 15824
remove 0 15825
remove 0 15826
remove 0 15827
remove 0 15828
remove 0 15829
remove 0 15830
remove 0 15831
remove 0 15832
remove 0 15833
remove 0 15834
remove 0 15835
remove 0 15836
remove 0 15837
remove 0 15838
remove 0 15839
remove 0 15840
remove 0 15841
remove 0 15842
remove 0 15843
remove 0 15844
remove 0 15845
remove 0 15846
remove 0 15847
remove 0 15848
remove 0 15849
remove 0 15850
remove 0 15851
remove 0 15852
remove 0 15853
remove 0 15854
remove 0 15855
remove 0 15856
remove 0 15857
remove 0 15858
remove 0 15859
remove 0 15860
remove 0 15861
remove 0 15862
remove 0 15863
remove 0 15864
remove 0 15865
remove 0 15866
remove 0 15867
remove 0 15868
remove 0 15869
remove 0 15870
remove 0 15871
remove 0 15872
remove 0 15873
remove 0 15874
remove 0 15875
remove 0 15876
remove 0 15877
remove 0 15878
remove 0 15879
remove 0 15880
remove 0 15881
remove 0 15882
remove 0 15883
remove 0 15884
remove 0 15885
remove 0 15886
remove 0 15887
remove 0 15888
remove 0 15889
remove 0 15890
remove 0 15891
remove 0 15892
remove 0 15893
remove 0 15894
remove 0 15895
remove 0 15896
remove 0 15897
remove 0 15898
remove 0 15899
remove 0 15900
remove 0 15901
remove 0 15902
remove 0 15903
remove 0 15904
remove 0 15905
remove 0 15906
remove 0 15907
remove 0 15908
remove 0 15909
remove 0 15910
remove 0 15911
remove 0 15912
remove 0 15913
remove 0 15914
remove 0 15915
remove 0 15916
remove 0 15917
remove 0 15918
remove 0 15919
remove 0 15920
remove 0 15921
remove 0 15922
remove 0 15923
remove 0 15924
remove 0 15925
remove 0 15926
remove 0 15927
remove 0 15928
remove 0 15929
remove 0 15930
remove 0 15931
remove 0 15932
remove 0 15933
remove 0 15934
remove 0 15935
remove 0 15936
remove 0 15937
remove 0 15938
remove 0 15939
remove 0 15940
remove 0 15941
remove 0 15942
remove 0 15943
remove 0 15944
remove 0 15945
remove 0 15946
remove 0 15947
remove 0 15948
remove 0 15949
remove 0 15950
remove 0 15951
remove 0 15952
remove 0 15953
remove 0 15954
remove 0 15955
remove 0 15956
remove 0 15957
remove 0 15958
remove 0 15959
remove 0 15960
remove 0 15961
remove 0 15962
remove 0 15963
remove 0 15964
remove 0 15965
remove 0 15966
remove 0 15967
remove 0 15968
remove 0 15969
remove 0 15970
remove 0 15971
remove 0 15972
remove 0 15973
remove 0 15974
remove 0 15975
remove 0 15976
remove 0 15977
remove 0 15978
remove 0 15979
remove 0 15980
remove 0 15981
remove 0 15982
remove 0 15983
remove 0 15984
remove 0 15985
remove 0 15986
remove 0 15987
remove 0 15988
remove 0 15989
remove 0 15990
remove 0 15991
remove 0 15992
remove 0 15993
remove 0 15994
remove 0 15995
remove 0 15996
remove 0 15997
remove 0 15998
remove 0 15999
remove 0 16000
remove 0 16001
remove 0 16002
remove 0 16003
remove 0 16004
remove 0 16005
remove 0 16006
remove 0 16007
remove 0 16008
remove 0 16009
remove 0 16010
remove 0 16011
remove 0 16012
remove 0 16013
remove 0 16014
remove 0 16015
remove 0 16016
remove 0 16017
remove 0 16018
remove 0 16019
remove 0 16020
remove 0 16021
remove 0 16022
remove 0 16023
remove 0 16024
remove 0 16025
remove 0 16026
remove 0 16027
remove 0 16028
remove 0 16029
remove 0 16030
remove 0 16031
remove 0 16032
remove 0 16033
remove 0 16034
remove 0 16035
remove 0 16036
remove 0 16037
remove 0 16038
remove 0 16039
remove 0 16040
remove 0 16041
remove 0 16042
remove 0 16043
remove 0 16044
remove 0 16045
remove 0 16046
remove 0 16047
remove 0 16048
remove 0 16049
remove 0 16050
remove 0 16051
remove 0 16052
remove 0 16053
remove 0 16054
remove 0 16055
remove 0 16056
remove 0 16057
remove 0 16058
remove 0 16059
remove 0 16060
remove 0 16061
remove 0 16062
remove 0 16063
remove 0 16064
remove 0 16065
remove 0 16066
remove 0 16067
remove 0 16068
remove 0 16069
remove 0 16070
remove 0 16071
remove 0 16072
remove 0 16073
remove 0 16074
remove 0 16075
remove 0 16076
remove 0 16077
remove 0 16078
remove 0 16079
remove 0 16080
remove 0 16081
remove 0 16082
remove 0 16083
remove 0 16084
remove 0 16085
remove 0 16086
remove 0 16087
remove 0 16088
remove 0 16089
remove 0 16090
remove 0 16091
remove 0 16092
remove 0 16093
remove 0 16094
remove 0 16095
remove 0 16096
remove 0 16097
remove 0 16098
remove 0 16099
remove 0 16100
remove 0 16101
remove 0 16102
remove 0 16103
remove 0 16104
remove 0 16105
remove 0 16106
remove 0 16107
remove 0 16108
remove 0 16109
remove 0 16110
remove 0 16111
remove 0 16112
remove 0 16113
remove 0 16114
remove 0 16115
remove 0 16116
remove 0 16117
remove 0 16118
remove 0 16119
remove 0 16120
remove 0 16121
remove 0 16122
remove 0 16123
remove 0 16124
remove 0 16125
remove 0 16126
remove 0 16127
remove 0 16128
remove 0 16129
remove 0 16130
remove 0 16131
remove 0 16132
remove 0 16133
remove 0 16134
remove 0 16135
remove 0 16136
remove 0 16137
remove 0 16138
remove 0 16139
remove 0 16140
remove 0 16141
remove 0 16142
remove 0 16143
remove 0 16144
remove 0 16145
remove 0 16146
remove 0 16147
remove 0 16148
remove 0 16149
remove 0 16150
remove 0 16151
remove 0 16152
remove 0 16153
remove 0 16154
remove 0 16155
remove 0 16156
remove 0 16157
remove 0 16158
remove 0 16159
remove 0 16160
remove 0 16161
remove 0 16162
remove 0 16163
remove 0 16164
remove 0 16165
remove 0 16166
remove 0 16167
remove 0 16168
remove 0 16169
remove 0 16170
remove 0 16171
remove 0 16172
remove 0 16173
remove 0 16174
remove 0 16175
remove 0 16176
remove 0 16177
remove 0 16178
remove 0 16179
remove 0 16180
remove 0 16181
remove 0 16182
remove 0 16183
remove 0 16184
remove 0 16185
remove 0 16186
remove 0 16187
remove 0 16188
remove 0 16189
remove 0 16190
remove 0 16191
remove 0 16192
remove 0 16193
remove 0 16194
remove 0 16195
remove 0 16196
remove 0 16197
remove 0 16198
remove 0 16199
remove 0 16200
remove 0 16201
remove 0 16202
remove 0 16203
remove 0 16204
remove 0 16205
remove 0 16206
remove 0 16207
remove 0 16208
remove 0 16209
remove 0 16210
remove 0 16211
remove 0 16212
remove 0 16213
remove 0 16214
remove 0 16215
remove 0 16216
remove 0 16217
remove 0 16218
remove 0 16219
remove 0 16220
remove 0 16221
remove 0 16222
remove 0 16223
remove 0 16224
remove 0 16225
remove 0 16226
remove 0 16227
remove 0 16228
remove 0 16229
remove 0 16230
remove 0 16231
remove 0 16232
remove 0 16233
remove 0 16234
remove 0 16235
remove 0 16236
remove 0 16237
remove 0 16238
remove 0 16239
remove 0 16240
remove 0 16241
remove 0 16242
remove 0 16243
remove 0 16244
remove 0 16245
remove 0 16246
remove 0 16247
remove 0 16248
remove 0 16249
remove 0 16250
remove 0 16251
remove 0 16252
remove 0 16253
remove 0 16254
remove 0 16255
remove 0 16256
remove 0 16257
remove 0 16258
remove 0 16259
remove 0 16260
remove 0 16261
remove 0 16262
remove 0 16263
remove 0 16264
remove 0 16265
remove 0 16266
remove 0 16267
remove 0 16268
remove 0 16269
remove 0 16270
remove 0 16271
remove 0 16272
remove 0 16273
remove 0 16274
remove 0 16275
remove 0 16276
remove 0 16277
remove 0 16278
remove 0 16279
remove 0 16280
remove 0 16281
remove 0 16282
remove 0 16283
remove 0 16284
remove 0 16285
remove 0 16286
remove 0 16287
remove 0 16288
remove 0 16289
remove 0 16290
remove 0 16291
remove 0 16292
remove 0 16293
remove 0 16294
remove 0 16295
remove 0 16296
remove 0 16297
remove 0 16298
remove 0 16299
remove 0 16300
remove 0 16301
remove 0 16302
remove 0 16303
remove 0 16304
remove 0 16305
remove 0 16306
remove 0 16307
remove 0 16308
remove 0 16309
remove 0 16310
remove 0 16311
remove 0 16312
remove 0 16313
remove 0 16314
remove 0 16315
remove 0 16316
remove 0 16317
remove 0 16318
remove 0 16319
remove 0 16320
remove 0 16321
remove 0 16322
remove 0 16323
remove 0 16324
remove 0 16325
remove 0 16326
remove 0 16327
remove 0 16328
remove 0 16329
remove 0 16330
remove 0 16331
remove 0 16332
remove 0 16333
remove 0 16334
remove 0 16335
remove 0 16336
remove 0 16337
remove 0 16338
remove 0 16339
remove 0 16340
remove 0 16341
remove 0 16342
remove 0 16343
remove 0 16344
remove 0 16345
remove 0 16346
remove 0 16347
remove 0 16348
remove 0 16349
remove 0 16350
remove 0 16351
remove 0 16352
remove 0 16353
remove 0 16354
remove 0 16355
remove 0 16356
remove 0 16357
remove 0 16358
remove 0 16359
remove 0 16360
remove 0 16361
remove 0 16362
remove 0 16363
remove 0 16364
remove 0 16365
remove 0 16366
remove 0 16367
remove 0 16368
remove 0 16369
remove 0 16370
remove 0 16371
remove 0 16372
remove 0 16373
remove 0 16374
remove 0 16375
remove 0 16376
remove 0 16377
remove 0 16378
remove 0 16379
remove 0 16380
remove 0 16381
remove 0 16382
remove 0 16383
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_seq-16384-IR result.txt
0,0 → 1,98304
insert 0 0 A
>> Inserting city A (0,0)
 
insert 0 1 A
>> Inserting city A (0,1)
 
insert 0 2 A
>> Inserting city A (0,2)
 
insert 0 3 A
>> Inserting city A (0,3)
 
insert 0 4 A
>> Inserting city A (0,4)
 
insert 0 5 A
>> Inserting city A (0,5)
 
insert 0 6 A
>> Inserting city A (0,6)
 
insert 0 7 A
>> Inserting city A (0,7)
 
insert 0 8 A
>> Inserting city A (0,8)
 
insert 0 9 A
>> Inserting city A (0,9)
 
insert 0 10 A
>> Inserting city A (0,10)
 
insert 0 11 A
>> Inserting city A (0,11)
 
insert 0 12 A
>> Inserting city A (0,12)
 
insert 0 13 A
>> Inserting city A (0,13)
 
insert 0 14 A
>> Inserting city A (0,14)
 
insert 0 15 A
>> Inserting city A (0,15)
 
insert 0 16 A
>> Inserting city A (0,16)
 
insert 0 17 A
>> Inserting city A (0,17)
 
insert 0 18 A
>> Inserting city A (0,18)
 
insert 0 19 A
>> Inserting city A (0,19)
 
insert 0 20 A
>> Inserting city A (0,20)
 
insert 0 21 A
>> Inserting city A (0,21)
 
insert 0 22 A
>> Inserting city A (0,22)
 
insert 0 23 A
>> Inserting city A (0,23)
 
insert 0 24 A
>> Inserting city A (0,24)
 
insert 0 25 A
>> Inserting city A (0,25)
 
insert 0 26 A
>> Inserting city A (0,26)
 
insert 0 27 A
>> Inserting city A (0,27)
 
insert 0 28 A
>> Inserting city A (0,28)
 
insert 0 29 A
>> Inserting city A (0,29)
 
insert 0 30 A
>> Inserting city A (0,30)
 
insert 0 31 A
>> Inserting city A (0,31)
 
insert 0 32 A
>> Inserting city A (0,32)
 
insert 0 33 A
>> Inserting city A (0,33)
 
insert 0 34 A
>> Inserting city A (0,34)
 
insert 0 35 A
>> Inserting city A (0,35)
 
insert 0 36 A
>> Inserting city A (0,36)
 
insert 0 37 A
>> Inserting city A (0,37)
 
insert 0 38 A
>> Inserting city A (0,38)
 
insert 0 39 A
>> Inserting city A (0,39)
 
insert 0 40 A
>> Inserting city A (0,40)
 
insert 0 41 A
>> Inserting city A (0,41)
 
insert 0 42 A
>> Inserting city A (0,42)
 
insert 0 43 A
>> Inserting city A (0,43)
 
insert 0 44 A
>> Inserting city A (0,44)
 
insert 0 45 A
>> Inserting city A (0,45)
 
insert 0 46 A
>> Inserting city A (0,46)
 
insert 0 47 A
>> Inserting city A (0,47)
 
insert 0 48 A
>> Inserting city A (0,48)
 
insert 0 49 A
>> Inserting city A (0,49)
 
insert 0 50 A
>> Inserting city A (0,50)
 
insert 0 51 A
>> Inserting city A (0,51)
 
insert 0 52 A
>> Inserting city A (0,52)
 
insert 0 53 A
>> Inserting city A (0,53)
 
insert 0 54 A
>> Inserting city A (0,54)
 
insert 0 55 A
>> Inserting city A (0,55)
 
insert 0 56 A
>> Inserting city A (0,56)
 
insert 0 57 A
>> Inserting city A (0,57)
 
insert 0 58 A
>> Inserting city A (0,58)
 
insert 0 59 A
>> Inserting city A (0,59)
 
insert 0 60 A
>> Inserting city A (0,60)
 
insert 0 61 A
>> Inserting city A (0,61)
 
insert 0 62 A
>> Inserting city A (0,62)
 
insert 0 63 A
>> Inserting city A (0,63)
 
insert 0 64 A
>> Inserting city A (0,64)
 
insert 0 65 A
>> Inserting city A (0,65)
 
insert 0 66 A
>> Inserting city A (0,66)
 
insert 0 67 A
>> Inserting city A (0,67)
 
insert 0 68 A
>> Inserting city A (0,68)
 
insert 0 69 A
>> Inserting city A (0,69)
 
insert 0 70 A
>> Inserting city A (0,70)
 
insert 0 71 A
>> Inserting city A (0,71)
 
insert 0 72 A
>> Inserting city A (0,72)
 
insert 0 73 A
>> Inserting city A (0,73)
 
insert 0 74 A
>> Inserting city A (0,74)
 
insert 0 75 A
>> Inserting city A (0,75)
 
insert 0 76 A
>> Inserting city A (0,76)
 
insert 0 77 A
>> Inserting city A (0,77)
 
insert 0 78 A
>> Inserting city A (0,78)
 
insert 0 79 A
>> Inserting city A (0,79)
 
insert 0 80 A
>> Inserting city A (0,80)
 
insert 0 81 A
>> Inserting city A (0,81)
 
insert 0 82 A
>> Inserting city A (0,82)
 
insert 0 83 A
>> Inserting city A (0,83)
 
insert 0 84 A
>> Inserting city A (0,84)
 
insert 0 85 A
>> Inserting city A (0,85)
 
insert 0 86 A
>> Inserting city A (0,86)
 
insert 0 87 A
>> Inserting city A (0,87)
 
insert 0 88 A
>> Inserting city A (0,88)
 
insert 0 89 A
>> Inserting city A (0,89)
 
insert 0 90 A
>> Inserting city A (0,90)
 
insert 0 91 A
>> Inserting city A (0,91)
 
insert 0 92 A
>> Inserting city A (0,92)
 
insert 0 93 A
>> Inserting city A (0,93)
 
insert 0 94 A
>> Inserting city A (0,94)
 
insert 0 95 A
>> Inserting city A (0,95)
 
insert 0 96 A
>> Inserting city A (0,96)
 
insert 0 97 A
>> Inserting city A (0,97)
 
insert 0 98 A
>> Inserting city A (0,98)
 
insert 0 99 A
>> Inserting city A (0,99)
 
insert 0 100 A
>> Inserting city A (0,100)
 
insert 0 101 A
>> Inserting city A (0,101)
 
insert 0 102 A
>> Inserting city A (0,102)
 
insert 0 103 A
>> Inserting city A (0,103)
 
insert 0 104 A
>> Inserting city A (0,104)
 
insert 0 105 A
>> Inserting city A (0,105)
 
insert 0 106 A
>> Inserting city A (0,106)
 
insert 0 107 A
>> Inserting city A (0,107)
 
insert 0 108 A
>> Inserting city A (0,108)
 
insert 0 109 A
>> Inserting city A (0,109)
 
insert 0 110 A
>> Inserting city A (0,110)
 
insert 0 111 A
>> Inserting city A (0,111)
 
insert 0 112 A
>> Inserting city A (0,112)
 
insert 0 113 A
>> Inserting city A (0,113)
 
insert 0 114 A
>> Inserting city A (0,114)
 
insert 0 115 A
>> Inserting city A (0,115)
 
insert 0 116 A
>> Inserting city A (0,116)
 
insert 0 117 A
>> Inserting city A (0,117)
 
insert 0 118 A
>> Inserting city A (0,118)
 
insert 0 119 A
>> Inserting city A (0,119)
 
insert 0 120 A
>> Inserting city A (0,120)
 
insert 0 121 A
>> Inserting city A (0,121)
 
insert 0 122 A
>> Inserting city A (0,122)
 
insert 0 123 A
>> Inserting city A (0,123)
 
insert 0 124 A
>> Inserting city A (0,124)
 
insert 0 125 A
>> Inserting city A (0,125)
 
insert 0 126 A
>> Inserting city A (0,126)
 
insert 0 127 A
>> Inserting city A (0,127)
 
insert 0 128 A
>> Inserting city A (0,128)
 
insert 0 129 A
>> Inserting city A (0,129)
 
insert 0 130 A
>> Inserting city A (0,130)
 
insert 0 131 A
>> Inserting city A (0,131)
 
insert 0 132 A
>> Inserting city A (0,132)
 
insert 0 133 A
>> Inserting city A (0,133)
 
insert 0 134 A
>> Inserting city A (0,134)
 
insert 0 135 A
>> Inserting city A (0,135)
 
insert 0 136 A
>> Inserting city A (0,136)
 
insert 0 137 A
>> Inserting city A (0,137)
 
insert 0 138 A
>> Inserting city A (0,138)
 
insert 0 139 A
>> Inserting city A (0,139)
 
insert 0 140 A
>> Inserting city A (0,140)
 
insert 0 141 A
>> Inserting city A (0,141)
 
insert 0 142 A
>> Inserting city A (0,142)
 
insert 0 143 A
>> Inserting city A (0,143)
 
insert 0 144 A
>> Inserting city A (0,144)
 
insert 0 145 A
>> Inserting city A (0,145)
 
insert 0 146 A
>> Inserting city A (0,146)
 
insert 0 147 A
>> Inserting city A (0,147)
 
insert 0 148 A
>> Inserting city A (0,148)
 
insert 0 149 A
>> Inserting city A (0,149)
 
insert 0 150 A
>> Inserting city A (0,150)
 
insert 0 151 A
>> Inserting city A (0,151)
 
insert 0 152 A
>> Inserting city A (0,152)
 
insert 0 153 A
>> Inserting city A (0,153)
 
insert 0 154 A
>> Inserting city A (0,154)
 
insert 0 155 A
>> Inserting city A (0,155)
 
insert 0 156 A
>> Inserting city A (0,156)
 
insert 0 157 A
>> Inserting city A (0,157)
 
insert 0 158 A
>> Inserting city A (0,158)
 
insert 0 159 A
>> Inserting city A (0,159)
 
insert 0 160 A
>> Inserting city A (0,160)
 
insert 0 161 A
>> Inserting city A (0,161)
 
insert 0 162 A
>> Inserting city A (0,162)
 
insert 0 163 A
>> Inserting city A (0,163)
 
insert 0 164 A
>> Inserting city A (0,164)
 
insert 0 165 A
>> Inserting city A (0,165)
 
insert 0 166 A
>> Inserting city A (0,166)
 
insert 0 167 A
>> Inserting city A (0,167)
 
insert 0 168 A
>> Inserting city A (0,168)
 
insert 0 169 A
>> Inserting city A (0,169)
 
insert 0 170 A
>> Inserting city A (0,170)
 
insert 0 171 A
>> Inserting city A (0,171)
 
insert 0 172 A
>> Inserting city A (0,172)
 
insert 0 173 A
>> Inserting city A (0,173)
 
insert 0 174 A
>> Inserting city A (0,174)
 
insert 0 175 A
>> Inserting city A (0,175)
 
insert 0 176 A
>> Inserting city A (0,176)
 
insert 0 177 A
>> Inserting city A (0,177)
 
insert 0 178 A
>> Inserting city A (0,178)
 
insert 0 179 A
>> Inserting city A (0,179)
 
insert 0 180 A
>> Inserting city A (0,180)
 
insert 0 181 A
>> Inserting city A (0,181)
 
insert 0 182 A
>> Inserting city A (0,182)
 
insert 0 183 A
>> Inserting city A (0,183)
 
insert 0 184 A
>> Inserting city A (0,184)
 
insert 0 185 A
>> Inserting city A (0,185)
 
insert 0 186 A
>> Inserting city A (0,186)
 
insert 0 187 A
>> Inserting city A (0,187)
 
insert 0 188 A
>> Inserting city A (0,188)
 
insert 0 189 A
>> Inserting city A (0,189)
 
insert 0 190 A
>> Inserting city A (0,190)
 
insert 0 191 A
>> Inserting city A (0,191)
 
insert 0 192 A
>> Inserting city A (0,192)
 
insert 0 193 A
>> Inserting city A (0,193)
 
insert 0 194 A
>> Inserting city A (0,194)
 
insert 0 195 A
>> Inserting city A (0,195)
 
insert 0 196 A
>> Inserting city A (0,196)
 
insert 0 197 A
>> Inserting city A (0,197)
 
insert 0 198 A
>> Inserting city A (0,198)
 
insert 0 199 A
>> Inserting city A (0,199)
 
insert 0 200 A
>> Inserting city A (0,200)
 
insert 0 201 A
>> Inserting city A (0,201)
 
insert 0 202 A
>> Inserting city A (0,202)
 
insert 0 203 A
>> Inserting city A (0,203)
 
insert 0 204 A
>> Inserting city A (0,204)
 
insert 0 205 A
>> Inserting city A (0,205)
 
insert 0 206 A
>> Inserting city A (0,206)
 
insert 0 207 A
>> Inserting city A (0,207)
 
insert 0 208 A
>> Inserting city A (0,208)
 
insert 0 209 A
>> Inserting city A (0,209)
 
insert 0 210 A
>> Inserting city A (0,210)
 
insert 0 211 A
>> Inserting city A (0,211)
 
insert 0 212 A
>> Inserting city A (0,212)
 
insert 0 213 A
>> Inserting city A (0,213)
 
insert 0 214 A
>> Inserting city A (0,214)
 
insert 0 215 A
>> Inserting city A (0,215)
 
insert 0 216 A
>> Inserting city A (0,216)
 
insert 0 217 A
>> Inserting city A (0,217)
 
insert 0 218 A
>> Inserting city A (0,218)
 
insert 0 219 A
>> Inserting city A (0,219)
 
insert 0 220 A
>> Inserting city A (0,220)
 
insert 0 221 A
>> Inserting city A (0,221)
 
insert 0 222 A
>> Inserting city A (0,222)
 
insert 0 223 A
>> Inserting city A (0,223)
 
insert 0 224 A
>> Inserting city A (0,224)
 
insert 0 225 A
>> Inserting city A (0,225)
 
insert 0 226 A
>> Inserting city A (0,226)
 
insert 0 227 A
>> Inserting city A (0,227)
 
insert 0 228 A
>> Inserting city A (0,228)
 
insert 0 229 A
>> Inserting city A (0,229)
 
insert 0 230 A
>> Inserting city A (0,230)
 
insert 0 231 A
>> Inserting city A (0,231)
 
insert 0 232 A
>> Inserting city A (0,232)
 
insert 0 233 A
>> Inserting city A (0,233)
 
insert 0 234 A
>> Inserting city A (0,234)
 
insert 0 235 A
>> Inserting city A (0,235)
 
insert 0 236 A
>> Inserting city A (0,236)
 
insert 0 237 A
>> Inserting city A (0,237)
 
insert 0 238 A
>> Inserting city A (0,238)
 
insert 0 239 A
>> Inserting city A (0,239)
 
insert 0 240 A
>> Inserting city A (0,240)
 
insert 0 241 A
>> Inserting city A (0,241)
 
insert 0 242 A
>> Inserting city A (0,242)
 
insert 0 243 A
>> Inserting city A (0,243)
 
insert 0 244 A
>> Inserting city A (0,244)
 
insert 0 245 A
>> Inserting city A (0,245)
 
insert 0 246 A
>> Inserting city A (0,246)
 
insert 0 247 A
>> Inserting city A (0,247)
 
insert 0 248 A
>> Inserting city A (0,248)
 
insert 0 249 A
>> Inserting city A (0,249)
 
insert 0 250 A
>> Inserting city A (0,250)
 
insert 0 251 A
>> Inserting city A (0,251)
 
insert 0 252 A
>> Inserting city A (0,252)
 
insert 0 253 A
>> Inserting city A (0,253)
 
insert 0 254 A
>> Inserting city A (0,254)
 
insert 0 255 A
>> Inserting city A (0,255)
 
insert 0 256 A
>> Inserting city A (0,256)
 
insert 0 257 A
>> Inserting city A (0,257)
 
insert 0 258 A
>> Inserting city A (0,258)
 
insert 0 259 A
>> Inserting city A (0,259)
 
insert 0 260 A
>> Inserting city A (0,260)
 
insert 0 261 A
>> Inserting city A (0,261)
 
insert 0 262 A
>> Inserting city A (0,262)
 
insert 0 263 A
>> Inserting city A (0,263)
 
insert 0 264 A
>> Inserting city A (0,264)
 
insert 0 265 A
>> Inserting city A (0,265)
 
insert 0 266 A
>> Inserting city A (0,266)
 
insert 0 267 A
>> Inserting city A (0,267)
 
insert 0 268 A
>> Inserting city A (0,268)
 
insert 0 269 A
>> Inserting city A (0,269)
 
insert 0 270 A
>> Inserting city A (0,270)
 
insert 0 271 A
>> Inserting city A (0,271)
 
insert 0 272 A
>> Inserting city A (0,272)
 
insert 0 273 A
>> Inserting city A (0,273)
 
insert 0 274 A
>> Inserting city A (0,274)
 
insert 0 275 A
>> Inserting city A (0,275)
 
insert 0 276 A
>> Inserting city A (0,276)
 
insert 0 277 A
>> Inserting city A (0,277)
 
insert 0 278 A
>> Inserting city A (0,278)
 
insert 0 279 A
>> Inserting city A (0,279)
 
insert 0 280 A
>> Inserting city A (0,280)
 
insert 0 281 A
>> Inserting city A (0,281)
 
insert 0 282 A
>> Inserting city A (0,282)
 
insert 0 283 A
>> Inserting city A (0,283)
 
insert 0 284 A
>> Inserting city A (0,284)
 
insert 0 285 A
>> Inserting city A (0,285)
 
insert 0 286 A
>> Inserting city A (0,286)
 
insert 0 287 A
>> Inserting city A (0,287)
 
insert 0 288 A
>> Inserting city A (0,288)
 
insert 0 289 A
>> Inserting city A (0,289)
 
insert 0 290 A
>> Inserting city A (0,290)
 
insert 0 291 A
>> Inserting city A (0,291)
 
insert 0 292 A
>> Inserting city A (0,292)
 
insert 0 293 A
>> Inserting city A (0,293)
 
insert 0 294 A
>> Inserting city A (0,294)
 
insert 0 295 A
>> Inserting city A (0,295)
 
insert 0 296 A
>> Inserting city A (0,296)
 
insert 0 297 A
>> Inserting city A (0,297)
 
insert 0 298 A
>> Inserting city A (0,298)
 
insert 0 299 A
>> Inserting city A (0,299)
 
insert 0 300 A
>> Inserting city A (0,300)
 
insert 0 301 A
>> Inserting city A (0,301)
 
insert 0 302 A
>> Inserting city A (0,302)
 
insert 0 303 A
>> Inserting city A (0,303)
 
insert 0 304 A
>> Inserting city A (0,304)
 
insert 0 305 A
>> Inserting city A (0,305)
 
insert 0 306 A
>> Inserting city A (0,306)
 
insert 0 307 A
>> Inserting city A (0,307)
 
insert 0 308 A
>> Inserting city A (0,308)
 
insert 0 309 A
>> Inserting city A (0,309)
 
insert 0 310 A
>> Inserting city A (0,310)
 
insert 0 311 A
>> Inserting city A (0,311)
 
insert 0 312 A
>> Inserting city A (0,312)
 
insert 0 313 A
>> Inserting city A (0,313)
 
insert 0 314 A
>> Inserting city A (0,314)
 
insert 0 315 A
>> Inserting city A (0,315)
 
insert 0 316 A
>> Inserting city A (0,316)
 
insert 0 317 A
>> Inserting city A (0,317)
 
insert 0 318 A
>> Inserting city A (0,318)
 
insert 0 319 A
>> Inserting city A (0,319)
 
insert 0 320 A
>> Inserting city A (0,320)
 
insert 0 321 A
>> Inserting city A (0,321)
 
insert 0 322 A
>> Inserting city A (0,322)
 
insert 0 323 A
>> Inserting city A (0,323)
 
insert 0 324 A
>> Inserting city A (0,324)
 
insert 0 325 A
>> Inserting city A (0,325)
 
insert 0 326 A
>> Inserting city A (0,326)
 
insert 0 327 A
>> Inserting city A (0,327)
 
insert 0 328 A
>> Inserting city A (0,328)
 
insert 0 329 A
>> Inserting city A (0,329)
 
insert 0 330 A
>> Inserting city A (0,330)
 
insert 0 331 A
>> Inserting city A (0,331)
 
insert 0 332 A
>> Inserting city A (0,332)
 
insert 0 333 A
>> Inserting city A (0,333)
 
insert 0 334 A
>> Inserting city A (0,334)
 
insert 0 335 A
>> Inserting city A (0,335)
 
insert 0 336 A
>> Inserting city A (0,336)
 
insert 0 337 A
>> Inserting city A (0,337)
 
insert 0 338 A
>> Inserting city A (0,338)
 
insert 0 339 A
>> Inserting city A (0,339)
 
insert 0 340 A
>> Inserting city A (0,340)
 
insert 0 341 A
>> Inserting city A (0,341)
 
insert 0 342 A
>> Inserting city A (0,342)
 
insert 0 343 A
>> Inserting city A (0,343)
 
insert 0 344 A
>> Inserting city A (0,344)
 
insert 0 345 A
>> Inserting city A (0,345)
 
insert 0 346 A
>> Inserting city A (0,346)
 
insert 0 347 A
>> Inserting city A (0,347)
 
insert 0 348 A
>> Inserting city A (0,348)
 
insert 0 349 A
>> Inserting city A (0,349)
 
insert 0 350 A
>> Inserting city A (0,350)
 
insert 0 351 A
>> Inserting city A (0,351)
 
insert 0 352 A
>> Inserting city A (0,352)
 
insert 0 353 A
>> Inserting city A (0,353)
 
insert 0 354 A
>> Inserting city A (0,354)
 
insert 0 355 A
>> Inserting city A (0,355)
 
insert 0 356 A
>> Inserting city A (0,356)
 
insert 0 357 A
>> Inserting city A (0,357)
 
insert 0 358 A
>> Inserting city A (0,358)
 
insert 0 359 A
>> Inserting city A (0,359)
 
insert 0 360 A
>> Inserting city A (0,360)
 
insert 0 361 A
>> Inserting city A (0,361)
 
insert 0 362 A
>> Inserting city A (0,362)
 
insert 0 363 A
>> Inserting city A (0,363)
 
insert 0 364 A
>> Inserting city A (0,364)
 
insert 0 365 A
>> Inserting city A (0,365)
 
insert 0 366 A
>> Inserting city A (0,366)
 
insert 0 367 A
>> Inserting city A (0,367)
 
insert 0 368 A
>> Inserting city A (0,368)
 
insert 0 369 A
>> Inserting city A (0,369)
 
insert 0 370 A
>> Inserting city A (0,370)
 
insert 0 371 A
>> Inserting city A (0,371)
 
insert 0 372 A
>> Inserting city A (0,372)
 
insert 0 373 A
>> Inserting city A (0,373)
 
insert 0 374 A
>> Inserting city A (0,374)
 
insert 0 375 A
>> Inserting city A (0,375)
 
insert 0 376 A
>> Inserting city A (0,376)
 
insert 0 377 A
>> Inserting city A (0,377)
 
insert 0 378 A
>> Inserting city A (0,378)
 
insert 0 379 A
>> Inserting city A (0,379)
 
insert 0 380 A
>> Inserting city A (0,380)
 
insert 0 381 A
>> Inserting city A (0,381)
 
insert 0 382 A
>> Inserting city A (0,382)
 
insert 0 383 A
>> Inserting city A (0,383)
 
insert 0 384 A
>> Inserting city A (0,384)
 
insert 0 385 A
>> Inserting city A (0,385)
 
insert 0 386 A
>> Inserting city A (0,386)
 
insert 0 387 A
>> Inserting city A (0,387)
 
insert 0 388 A
>> Inserting city A (0,388)
 
insert 0 389 A
>> Inserting city A (0,389)
 
insert 0 390 A
>> Inserting city A (0,390)
 
insert 0 391 A
>> Inserting city A (0,391)
 
insert 0 392 A
>> Inserting city A (0,392)
 
insert 0 393 A
>> Inserting city A (0,393)
 
insert 0 394 A
>> Inserting city A (0,394)
 
insert 0 395 A
>> Inserting city A (0,395)
 
insert 0 396 A
>> Inserting city A (0,396)
 
insert 0 397 A
>> Inserting city A (0,397)
 
insert 0 398 A
>> Inserting city A (0,398)
 
insert 0 399 A
>> Inserting city A (0,399)
 
insert 0 400 A
>> Inserting city A (0,400)
 
insert 0 401 A
>> Inserting city A (0,401)
 
insert 0 402 A
>> Inserting city A (0,402)
 
insert 0 403 A
>> Inserting city A (0,403)
 
insert 0 404 A
>> Inserting city A (0,404)
 
insert 0 405 A
>> Inserting city A (0,405)
 
insert 0 406 A
>> Inserting city A (0,406)
 
insert 0 407 A
>> Inserting city A (0,407)
 
insert 0 408 A
>> Inserting city A (0,408)
 
insert 0 409 A
>> Inserting city A (0,409)
 
insert 0 410 A
>> Inserting city A (0,410)
 
insert 0 411 A
>> Inserting city A (0,411)
 
insert 0 412 A
>> Inserting city A (0,412)
 
insert 0 413 A
>> Inserting city A (0,413)
 
insert 0 414 A
>> Inserting city A (0,414)
 
insert 0 415 A
>> Inserting city A (0,415)
 
insert 0 416 A
>> Inserting city A (0,416)
 
insert 0 417 A
>> Inserting city A (0,417)
 
insert 0 418 A
>> Inserting city A (0,418)
 
insert 0 419 A
>> Inserting city A (0,419)
 
insert 0 420 A
>> Inserting city A (0,420)
 
insert 0 421 A
>> Inserting city A (0,421)
 
insert 0 422 A
>> Inserting city A (0,422)
 
insert 0 423 A
>> Inserting city A (0,423)
 
insert 0 424 A
>> Inserting city A (0,424)
 
insert 0 425 A
>> Inserting city A (0,425)
 
insert 0 426 A
>> Inserting city A (0,426)
 
insert 0 427 A
>> Inserting city A (0,427)
 
insert 0 428 A
>> Inserting city A (0,428)
 
insert 0 429 A
>> Inserting city A (0,429)
 
insert 0 430 A
>> Inserting city A (0,430)
 
insert 0 431 A
>> Inserting city A (0,431)
 
insert 0 432 A
>> Inserting city A (0,432)
 
insert 0 433 A
>> Inserting city A (0,433)
 
insert 0 434 A
>> Inserting city A (0,434)
 
insert 0 435 A
>> Inserting city A (0,435)
 
insert 0 436 A
>> Inserting city A (0,436)
 
insert 0 437 A
>> Inserting city A (0,437)
 
insert 0 438 A
>> Inserting city A (0,438)
 
insert 0 439 A
>> Inserting city A (0,439)
 
insert 0 440 A
>> Inserting city A (0,440)
 
insert 0 441 A
>> Inserting city A (0,441)
 
insert 0 442 A
>> Inserting city A (0,442)
 
insert 0 443 A
>> Inserting city A (0,443)
 
insert 0 444 A
>> Inserting city A (0,444)
 
insert 0 445 A
>> Inserting city A (0,445)
 
insert 0 446 A
>> Inserting city A (0,446)
 
insert 0 447 A
>> Inserting city A (0,447)
 
insert 0 448 A
>> Inserting city A (0,448)
 
insert 0 449 A
>> Inserting city A (0,449)
 
insert 0 450 A
>> Inserting city A (0,450)
 
insert 0 451 A
>> Inserting city A (0,451)
 
insert 0 452 A
>> Inserting city A (0,452)
 
insert 0 453 A
>> Inserting city A (0,453)
 
insert 0 454 A
>> Inserting city A (0,454)
 
insert 0 455 A
>> Inserting city A (0,455)
 
insert 0 456 A
>> Inserting city A (0,456)
 
insert 0 457 A
>> Inserting city A (0,457)
 
insert 0 458 A
>> Inserting city A (0,458)
 
insert 0 459 A
>> Inserting city A (0,459)
 
insert 0 460 A
>> Inserting city A (0,460)
 
insert 0 461 A
>> Inserting city A (0,461)
 
insert 0 462 A
>> Inserting city A (0,462)
 
insert 0 463 A
>> Inserting city A (0,463)
 
insert 0 464 A
>> Inserting city A (0,464)
 
insert 0 465 A
>> Inserting city A (0,465)
 
insert 0 466 A
>> Inserting city A (0,466)
 
insert 0 467 A
>> Inserting city A (0,467)
 
insert 0 468 A
>> Inserting city A (0,468)
 
insert 0 469 A
>> Inserting city A (0,469)
 
insert 0 470 A
>> Inserting city A (0,470)
 
insert 0 471 A
>> Inserting city A (0,471)
 
insert 0 472 A
>> Inserting city A (0,472)
 
insert 0 473 A
>> Inserting city A (0,473)
 
insert 0 474 A
>> Inserting city A (0,474)
 
insert 0 475 A
>> Inserting city A (0,475)
 
insert 0 476 A
>> Inserting city A (0,476)
 
insert 0 477 A
>> Inserting city A (0,477)
 
insert 0 478 A
>> Inserting city A (0,478)
 
insert 0 479 A
>> Inserting city A (0,479)
 
insert 0 480 A
>> Inserting city A (0,480)
 
insert 0 481 A
>> Inserting city A (0,481)
 
insert 0 482 A
>> Inserting city A (0,482)
 
insert 0 483 A
>> Inserting city A (0,483)
 
insert 0 484 A
>> Inserting city A (0,484)
 
insert 0 485 A
>> Inserting city A (0,485)
 
insert 0 486 A
>> Inserting city A (0,486)
 
insert 0 487 A
>> Inserting city A (0,487)
 
insert 0 488 A
>> Inserting city A (0,488)
 
insert 0 489 A
>> Inserting city A (0,489)
 
insert 0 490 A
>> Inserting city A (0,490)
 
insert 0 491 A
>> Inserting city A (0,491)
 
insert 0 492 A
>> Inserting city A (0,492)
 
insert 0 493 A
>> Inserting city A (0,493)
 
insert 0 494 A
>> Inserting city A (0,494)
 
insert 0 495 A
>> Inserting city A (0,495)
 
insert 0 496 A
>> Inserting city A (0,496)
 
insert 0 497 A
>> Inserting city A (0,497)
 
insert 0 498 A
>> Inserting city A (0,498)
 
insert 0 499 A
>> Inserting city A (0,499)
 
insert 0 500 A
>> Inserting city A (0,500)
 
insert 0 501 A
>> Inserting city A (0,501)
 
insert 0 502 A
>> Inserting city A (0,502)
 
insert 0 503 A
>> Inserting city A (0,503)
 
insert 0 504 A
>> Inserting city A (0,504)
 
insert 0 505 A
>> Inserting city A (0,505)
 
insert 0 506 A
>> Inserting city A (0,506)
 
insert 0 507 A
>> Inserting city A (0,507)
 
insert 0 508 A
>> Inserting city A (0,508)
 
insert 0 509 A
>> Inserting city A (0,509)
 
insert 0 510 A
>> Inserting city A (0,510)
 
insert 0 511 A
>> Inserting city A (0,511)
 
insert 0 512 A
>> Inserting city A (0,512)
 
insert 0 513 A
>> Inserting city A (0,513)
 
insert 0 514 A
>> Inserting city A (0,514)
 
insert 0 515 A
>> Inserting city A (0,515)
 
insert 0 516 A
>> Inserting city A (0,516)
 
insert 0 517 A
>> Inserting city A (0,517)
 
insert 0 518 A
>> Inserting city A (0,518)
 
insert 0 519 A
>> Inserting city A (0,519)
 
insert 0 520 A
>> Inserting city A (0,520)
 
insert 0 521 A
>> Inserting city A (0,521)
 
insert 0 522 A
>> Inserting city A (0,522)
 
insert 0 523 A
>> Inserting city A (0,523)
 
insert 0 524 A
>> Inserting city A (0,524)
 
insert 0 525 A
>> Inserting city A (0,525)
 
insert 0 526 A
>> Inserting city A (0,526)
 
insert 0 527 A
>> Inserting city A (0,527)
 
insert 0 528 A
>> Inserting city A (0,528)
 
insert 0 529 A
>> Inserting city A (0,529)
 
insert 0 530 A
>> Inserting city A (0,530)
 
insert 0 531 A
>> Inserting city A (0,531)
 
insert 0 532 A
>> Inserting city A (0,532)
 
insert 0 533 A
>> Inserting city A (0,533)
 
insert 0 534 A
>> Inserting city A (0,534)
 
insert 0 535 A
>> Inserting city A (0,535)
 
insert 0 536 A
>> Inserting city A (0,536)
 
insert 0 537 A
>> Inserting city A (0,537)
 
insert 0 538 A
>> Inserting city A (0,538)
 
insert 0 539 A
>> Inserting city A (0,539)
 
insert 0 540 A
>> Inserting city A (0,540)
 
insert 0 541 A
>> Inserting city A (0,541)
 
insert 0 542 A
>> Inserting city A (0,542)
 
insert 0 543 A
>> Inserting city A (0,543)
 
insert 0 544 A
>> Inserting city A (0,544)
 
insert 0 545 A
>> Inserting city A (0,545)
 
insert 0 546 A
>> Inserting city A (0,546)
 
insert 0 547 A
>> Inserting city A (0,547)
 
insert 0 548 A
>> Inserting city A (0,548)
 
insert 0 549 A
>> Inserting city A (0,549)
 
insert 0 550 A
>> Inserting city A (0,550)
 
insert 0 551 A
>> Inserting city A (0,551)
 
insert 0 552 A
>> Inserting city A (0,552)
 
insert 0 553 A
>> Inserting city A (0,553)
 
insert 0 554 A
>> Inserting city A (0,554)
 
insert 0 555 A
>> Inserting city A (0,555)
 
insert 0 556 A
>> Inserting city A (0,556)
 
insert 0 557 A
>> Inserting city A (0,557)
 
insert 0 558 A
>> Inserting city A (0,558)
 
insert 0 559 A
>> Inserting city A (0,559)
 
insert 0 560 A
>> Inserting city A (0,560)
 
insert 0 561 A
>> Inserting city A (0,561)
 
insert 0 562 A
>> Inserting city A (0,562)
 
insert 0 563 A
>> Inserting city A (0,563)
 
insert 0 564 A
>> Inserting city A (0,564)
 
insert 0 565 A
>> Inserting city A (0,565)
 
insert 0 566 A
>> Inserting city A (0,566)
 
insert 0 567 A
>> Inserting city A (0,567)
 
insert 0 568 A
>> Inserting city A (0,568)
 
insert 0 569 A
>> Inserting city A (0,569)
 
insert 0 570 A
>> Inserting city A (0,570)
 
insert 0 571 A
>> Inserting city A (0,571)
 
insert 0 572 A
>> Inserting city A (0,572)
 
insert 0 573 A
>> Inserting city A (0,573)
 
insert 0 574 A
>> Inserting city A (0,574)
 
insert 0 575 A
>> Inserting city A (0,575)
 
insert 0 576 A
>> Inserting city A (0,576)
 
insert 0 577 A
>> Inserting city A (0,577)
 
insert 0 578 A
>> Inserting city A (0,578)
 
insert 0 579 A
>> Inserting city A (0,579)
 
insert 0 580 A
>> Inserting city A (0,580)
 
insert 0 581 A
>> Inserting city A (0,581)
 
insert 0 582 A
>> Inserting city A (0,582)
 
insert 0 583 A
>> Inserting city A (0,583)
 
insert 0 584 A
>> Inserting city A (0,584)
 
insert 0 585 A
>> Inserting city A (0,585)
 
insert 0 586 A
>> Inserting city A (0,586)
 
insert 0 587 A
>> Inserting city A (0,587)
 
insert 0 588 A
>> Inserting city A (0,588)
 
insert 0 589 A
>> Inserting city A (0,589)
 
insert 0 590 A
>> Inserting city A (0,590)
 
insert 0 591 A
>> Inserting city A (0,591)
 
insert 0 592 A
>> Inserting city A (0,592)
 
insert 0 593 A
>> Inserting city A (0,593)
 
insert 0 594 A
>> Inserting city A (0,594)
 
insert 0 595 A
>> Inserting city A (0,595)
 
insert 0 596 A
>> Inserting city A (0,596)
 
insert 0 597 A
>> Inserting city A (0,597)
 
insert 0 598 A
>> Inserting city A (0,598)
 
insert 0 599 A
>> Inserting city A (0,599)
 
insert 0 600 A
>> Inserting city A (0,600)
 
insert 0 601 A
>> Inserting city A (0,601)
 
insert 0 602 A
>> Inserting city A (0,602)
 
insert 0 603 A
>> Inserting city A (0,603)
 
insert 0 604 A
>> Inserting city A (0,604)
 
insert 0 605 A
>> Inserting city A (0,605)
 
insert 0 606 A
>> Inserting city A (0,606)
 
insert 0 607 A
>> Inserting city A (0,607)
 
insert 0 608 A
>> Inserting city A (0,608)
 
insert 0 609 A
>> Inserting city A (0,609)
 
insert 0 610 A
>> Inserting city A (0,610)
 
insert 0 611 A
>> Inserting city A (0,611)
 
insert 0 612 A
>> Inserting city A (0,612)
 
insert 0 613 A
>> Inserting city A (0,613)
 
insert 0 614 A
>> Inserting city A (0,614)
 
insert 0 615 A
>> Inserting city A (0,615)
 
insert 0 616 A
>> Inserting city A (0,616)
 
insert 0 617 A
>> Inserting city A (0,617)
 
insert 0 618 A
>> Inserting city A (0,618)
 
insert 0 619 A
>> Inserting city A (0,619)
 
insert 0 620 A
>> Inserting city A (0,620)
 
insert 0 621 A
>> Inserting city A (0,621)
 
insert 0 622 A
>> Inserting city A (0,622)
 
insert 0 623 A
>> Inserting city A (0,623)
 
insert 0 624 A
>> Inserting city A (0,624)
 
insert 0 625 A
>> Inserting city A (0,625)
 
insert 0 626 A
>> Inserting city A (0,626)
 
insert 0 627 A
>> Inserting city A (0,627)
 
insert 0 628 A
>> Inserting city A (0,628)
 
insert 0 629 A
>> Inserting city A (0,629)
 
insert 0 630 A
>> Inserting city A (0,630)
 
insert 0 631 A
>> Inserting city A (0,631)
 
insert 0 632 A
>> Inserting city A (0,632)
 
insert 0 633 A
>> Inserting city A (0,633)
 
insert 0 634 A
>> Inserting city A (0,634)
 
insert 0 635 A
>> Inserting city A (0,635)
 
insert 0 636 A
>> Inserting city A (0,636)
 
insert 0 637 A
>> Inserting city A (0,637)
 
insert 0 638 A
>> Inserting city A (0,638)
 
insert 0 639 A
>> Inserting city A (0,639)
 
insert 0 640 A
>> Inserting city A (0,640)
 
insert 0 641 A
>> Inserting city A (0,641)
 
insert 0 642 A
>> Inserting city A (0,642)
 
insert 0 643 A
>> Inserting city A (0,643)
 
insert 0 644 A
>> Inserting city A (0,644)
 
insert 0 645 A
>> Inserting city A (0,645)
 
insert 0 646 A
>> Inserting city A (0,646)
 
insert 0 647 A
>> Inserting city A (0,647)
 
insert 0 648 A
>> Inserting city A (0,648)
 
insert 0 649 A
>> Inserting city A (0,649)
 
insert 0 650 A
>> Inserting city A (0,650)
 
insert 0 651 A
>> Inserting city A (0,651)
 
insert 0 652 A
>> Inserting city A (0,652)
 
insert 0 653 A
>> Inserting city A (0,653)
 
insert 0 654 A
>> Inserting city A (0,654)
 
insert 0 655 A
>> Inserting city A (0,655)
 
insert 0 656 A
>> Inserting city A (0,656)
 
insert 0 657 A
>> Inserting city A (0,657)
 
insert 0 658 A
>> Inserting city A (0,658)
 
insert 0 659 A
>> Inserting city A (0,659)
 
insert 0 660 A
>> Inserting city A (0,660)
 
insert 0 661 A
>> Inserting city A (0,661)
 
insert 0 662 A
>> Inserting city A (0,662)
 
insert 0 663 A
>> Inserting city A (0,663)
 
insert 0 664 A
>> Inserting city A (0,664)
 
insert 0 665 A
>> Inserting city A (0,665)
 
insert 0 666 A
>> Inserting city A (0,666)
 
insert 0 667 A
>> Inserting city A (0,667)
 
insert 0 668 A
>> Inserting city A (0,668)
 
insert 0 669 A
>> Inserting city A (0,669)
 
insert 0 670 A
>> Inserting city A (0,670)
 
insert 0 671 A
>> Inserting city A (0,671)
 
insert 0 672 A
>> Inserting city A (0,672)
 
insert 0 673 A
>> Inserting city A (0,673)
 
insert 0 674 A
>> Inserting city A (0,674)
 
insert 0 675 A
>> Inserting city A (0,675)
 
insert 0 676 A
>> Inserting city A (0,676)
 
insert 0 677 A
>> Inserting city A (0,677)
 
insert 0 678 A
>> Inserting city A (0,678)
 
insert 0 679 A
>> Inserting city A (0,679)
 
insert 0 680 A
>> Inserting city A (0,680)
 
insert 0 681 A
>> Inserting city A (0,681)
 
insert 0 682 A
>> Inserting city A (0,682)
 
insert 0 683 A
>> Inserting city A (0,683)
 
insert 0 684 A
>> Inserting city A (0,684)
 
insert 0 685 A
>> Inserting city A (0,685)
 
insert 0 686 A
>> Inserting city A (0,686)
 
insert 0 687 A
>> Inserting city A (0,687)
 
insert 0 688 A
>> Inserting city A (0,688)
 
insert 0 689 A
>> Inserting city A (0,689)
 
insert 0 690 A
>> Inserting city A (0,690)
 
insert 0 691 A
>> Inserting city A (0,691)
 
insert 0 692 A
>> Inserting city A (0,692)
 
insert 0 693 A
>> Inserting city A (0,693)
 
insert 0 694 A
>> Inserting city A (0,694)
 
insert 0 695 A
>> Inserting city A (0,695)
 
insert 0 696 A
>> Inserting city A (0,696)
 
insert 0 697 A
>> Inserting city A (0,697)
 
insert 0 698 A
>> Inserting city A (0,698)
 
insert 0 699 A
>> Inserting city A (0,699)
 
insert 0 700 A
>> Inserting city A (0,700)
 
insert 0 701 A
>> Inserting city A (0,701)
 
insert 0 702 A
>> Inserting city A (0,702)
 
insert 0 703 A
>> Inserting city A (0,703)
 
insert 0 704 A
>> Inserting city A (0,704)
 
insert 0 705 A
>> Inserting city A (0,705)
 
insert 0 706 A
>> Inserting city A (0,706)
 
insert 0 707 A
>> Inserting city A (0,707)
 
insert 0 708 A
>> Inserting city A (0,708)
 
insert 0 709 A
>> Inserting city A (0,709)
 
insert 0 710 A
>> Inserting city A (0,710)
 
insert 0 711 A
>> Inserting city A (0,711)
 
insert 0 712 A
>> Inserting city A (0,712)
 
insert 0 713 A
>> Inserting city A (0,713)
 
insert 0 714 A
>> Inserting city A (0,714)
 
insert 0 715 A
>> Inserting city A (0,715)
 
insert 0 716 A
>> Inserting city A (0,716)
 
insert 0 717 A
>> Inserting city A (0,717)
 
insert 0 718 A
>> Inserting city A (0,718)
 
insert 0 719 A
>> Inserting city A (0,719)
 
insert 0 720 A
>> Inserting city A (0,720)
 
insert 0 721 A
>> Inserting city A (0,721)
 
insert 0 722 A
>> Inserting city A (0,722)
 
insert 0 723 A
>> Inserting city A (0,723)
 
insert 0 724 A
>> Inserting city A (0,724)
 
insert 0 725 A
>> Inserting city A (0,725)
 
insert 0 726 A
>> Inserting city A (0,726)
 
insert 0 727 A
>> Inserting city A (0,727)
 
insert 0 728 A
>> Inserting city A (0,728)
 
insert 0 729 A
>> Inserting city A (0,729)
 
insert 0 730 A
>> Inserting city A (0,730)
 
insert 0 731 A
>> Inserting city A (0,731)
 
insert 0 732 A
>> Inserting city A (0,732)
 
insert 0 733 A
>> Inserting city A (0,733)
 
insert 0 734 A
>> Inserting city A (0,734)
 
insert 0 735 A
>> Inserting city A (0,735)
 
insert 0 736 A
>> Inserting city A (0,736)
 
insert 0 737 A
>> Inserting city A (0,737)
 
insert 0 738 A
>> Inserting city A (0,738)
 
insert 0 739 A
>> Inserting city A (0,739)
 
insert 0 740 A
>> Inserting city A (0,740)
 
insert 0 741 A
>> Inserting city A (0,741)
 
insert 0 742 A
>> Inserting city A (0,742)
 
insert 0 743 A
>> Inserting city A (0,743)
 
insert 0 744 A
>> Inserting city A (0,744)
 
insert 0 745 A
>> Inserting city A (0,745)
 
insert 0 746 A
>> Inserting city A (0,746)
 
insert 0 747 A
>> Inserting city A (0,747)
 
insert 0 748 A
>> Inserting city A (0,748)
 
insert 0 749 A
>> Inserting city A (0,749)
 
insert 0 750 A
>> Inserting city A (0,750)
 
insert 0 751 A
>> Inserting city A (0,751)
 
insert 0 752 A
>> Inserting city A (0,752)
 
insert 0 753 A
>> Inserting city A (0,753)
 
insert 0 754 A
>> Inserting city A (0,754)
 
insert 0 755 A
>> Inserting city A (0,755)
 
insert 0 756 A
>> Inserting city A (0,756)
 
insert 0 757 A
>> Inserting city A (0,757)
 
insert 0 758 A
>> Inserting city A (0,758)
 
insert 0 759 A
>> Inserting city A (0,759)
 
insert 0 760 A
>> Inserting city A (0,760)
 
insert 0 761 A
>> Inserting city A (0,761)
 
insert 0 762 A
>> Inserting city A (0,762)
 
insert 0 763 A
>> Inserting city A (0,763)
 
insert 0 764 A
>> Inserting city A (0,764)
 
insert 0 765 A
>> Inserting city A (0,765)
 
insert 0 766 A
>> Inserting city A (0,766)
 
insert 0 767 A
>> Inserting city A (0,767)
 
insert 0 768 A
>> Inserting city A (0,768)
 
insert 0 769 A
>> Inserting city A (0,769)
 
insert 0 770 A
>> Inserting city A (0,770)
 
insert 0 771 A
>> Inserting city A (0,771)
 
insert 0 772 A
>> Inserting city A (0,772)
 
insert 0 773 A
>> Inserting city A (0,773)
 
insert 0 774 A
>> Inserting city A (0,774)
 
insert 0 775 A
>> Inserting city A (0,775)
 
insert 0 776 A
>> Inserting city A (0,776)
 
insert 0 777 A
>> Inserting city A (0,777)
 
insert 0 778 A
>> Inserting city A (0,778)
 
insert 0 779 A
>> Inserting city A (0,779)
 
insert 0 780 A
>> Inserting city A (0,780)
 
insert 0 781 A
>> Inserting city A (0,781)
 
insert 0 782 A
>> Inserting city A (0,782)
 
insert 0 783 A
>> Inserting city A (0,783)
 
insert 0 784 A
>> Inserting city A (0,784)
 
insert 0 785 A
>> Inserting city A (0,785)
 
insert 0 786 A
>> Inserting city A (0,786)
 
insert 0 787 A
>> Inserting city A (0,787)
 
insert 0 788 A
>> Inserting city A (0,788)
 
insert 0 789 A
>> Inserting city A (0,789)
 
insert 0 790 A
>> Inserting city A (0,790)
 
insert 0 791 A
>> Inserting city A (0,791)
 
insert 0 792 A
>> Inserting city A (0,792)
 
insert 0 793 A
>> Inserting city A (0,793)
 
insert 0 794 A
>> Inserting city A (0,794)
 
insert 0 795 A
>> Inserting city A (0,795)
 
insert 0 796 A
>> Inserting city A (0,796)
 
insert 0 797 A
>> Inserting city A (0,797)
 
insert 0 798 A
>> Inserting city A (0,798)
 
insert 0 799 A
>> Inserting city A (0,799)
 
insert 0 800 A
>> Inserting city A (0,800)
 
insert 0 801 A
>> Inserting city A (0,801)
 
insert 0 802 A
>> Inserting city A (0,802)
 
insert 0 803 A
>> Inserting city A (0,803)
 
insert 0 804 A
>> Inserting city A (0,804)
 
insert 0 805 A
>> Inserting city A (0,805)
 
insert 0 806 A
>> Inserting city A (0,806)
 
insert 0 807 A
>> Inserting city A (0,807)
 
insert 0 808 A
>> Inserting city A (0,808)
 
insert 0 809 A
>> Inserting city A (0,809)
 
insert 0 810 A
>> Inserting city A (0,810)
 
insert 0 811 A
>> Inserting city A (0,811)
 
insert 0 812 A
>> Inserting city A (0,812)
 
insert 0 813 A
>> Inserting city A (0,813)
 
insert 0 814 A
>> Inserting city A (0,814)
 
insert 0 815 A
>> Inserting city A (0,815)
 
insert 0 816 A
>> Inserting city A (0,816)
 
insert 0 817 A
>> Inserting city A (0,817)
 
insert 0 818 A
>> Inserting city A (0,818)
 
insert 0 819 A
>> Inserting city A (0,819)
 
insert 0 820 A
>> Inserting city A (0,820)
 
insert 0 821 A
>> Inserting city A (0,821)
 
insert 0 822 A
>> Inserting city A (0,822)
 
insert 0 823 A
>> Inserting city A (0,823)
 
insert 0 824 A
>> Inserting city A (0,824)
 
insert 0 825 A
>> Inserting city A (0,825)
 
insert 0 826 A
>> Inserting city A (0,826)
 
insert 0 827 A
>> Inserting city A (0,827)
 
insert 0 828 A
>> Inserting city A (0,828)
 
insert 0 829 A
>> Inserting city A (0,829)
 
insert 0 830 A
>> Inserting city A (0,830)
 
insert 0 831 A
>> Inserting city A (0,831)
 
insert 0 832 A
>> Inserting city A (0,832)
 
insert 0 833 A
>> Inserting city A (0,833)
 
insert 0 834 A
>> Inserting city A (0,834)
 
insert 0 835 A
>> Inserting city A (0,835)
 
insert 0 836 A
>> Inserting city A (0,836)
 
insert 0 837 A
>> Inserting city A (0,837)
 
insert 0 838 A
>> Inserting city A (0,838)
 
insert 0 839 A
>> Inserting city A (0,839)
 
insert 0 840 A
>> Inserting city A (0,840)
 
insert 0 841 A
>> Inserting city A (0,841)
 
insert 0 842 A
>> Inserting city A (0,842)
 
insert 0 843 A
>> Inserting city A (0,843)
 
insert 0 844 A
>> Inserting city A (0,844)
 
insert 0 845 A
>> Inserting city A (0,845)
 
insert 0 846 A
>> Inserting city A (0,846)
 
insert 0 847 A
>> Inserting city A (0,847)
 
insert 0 848 A
>> Inserting city A (0,848)
 
insert 0 849 A
>> Inserting city A (0,849)
 
insert 0 850 A
>> Inserting city A (0,850)
 
insert 0 851 A
>> Inserting city A (0,851)
 
insert 0 852 A
>> Inserting city A (0,852)
 
insert 0 853 A
>> Inserting city A (0,853)
 
insert 0 854 A
>> Inserting city A (0,854)
 
insert 0 855 A
>> Inserting city A (0,855)
 
insert 0 856 A
>> Inserting city A (0,856)
 
insert 0 857 A
>> Inserting city A (0,857)
 
insert 0 858 A
>> Inserting city A (0,858)
 
insert 0 859 A
>> Inserting city A (0,859)
 
insert 0 860 A
>> Inserting city A (0,860)
 
insert 0 861 A
>> Inserting city A (0,861)
 
insert 0 862 A
>> Inserting city A (0,862)
 
insert 0 863 A
>> Inserting city A (0,863)
 
insert 0 864 A
>> Inserting city A (0,864)
 
insert 0 865 A
>> Inserting city A (0,865)
 
insert 0 866 A
>> Inserting city A (0,866)
 
insert 0 867 A
>> Inserting city A (0,867)
 
insert 0 868 A
>> Inserting city A (0,868)
 
insert 0 869 A
>> Inserting city A (0,869)
 
insert 0 870 A
>> Inserting city A (0,870)
 
insert 0 871 A
>> Inserting city A (0,871)
 
insert 0 872 A
>> Inserting city A (0,872)
 
insert 0 873 A
>> Inserting city A (0,873)
 
insert 0 874 A
>> Inserting city A (0,874)
 
insert 0 875 A
>> Inserting city A (0,875)
 
insert 0 876 A
>> Inserting city A (0,876)
 
insert 0 877 A
>> Inserting city A (0,877)
 
insert 0 878 A
>> Inserting city A (0,878)
 
insert 0 879 A
>> Inserting city A (0,879)
 
insert 0 880 A
>> Inserting city A (0,880)
 
insert 0 881 A
>> Inserting city A (0,881)
 
insert 0 882 A
>> Inserting city A (0,882)
 
insert 0 883 A
>> Inserting city A (0,883)
 
insert 0 884 A
>> Inserting city A (0,884)
 
insert 0 885 A
>> Inserting city A (0,885)
 
insert 0 886 A
>> Inserting city A (0,886)
 
insert 0 887 A
>> Inserting city A (0,887)
 
insert 0 888 A
>> Inserting city A (0,888)
 
insert 0 889 A
>> Inserting city A (0,889)
 
insert 0 890 A
>> Inserting city A (0,890)
 
insert 0 891 A
>> Inserting city A (0,891)
 
insert 0 892 A
>> Inserting city A (0,892)
 
insert 0 893 A
>> Inserting city A (0,893)
 
insert 0 894 A
>> Inserting city A (0,894)
 
insert 0 895 A
>> Inserting city A (0,895)
 
insert 0 896 A
>> Inserting city A (0,896)
 
insert 0 897 A
>> Inserting city A (0,897)
 
insert 0 898 A
>> Inserting city A (0,898)
 
insert 0 899 A
>> Inserting city A (0,899)
 
insert 0 900 A
>> Inserting city A (0,900)
 
insert 0 901 A
>> Inserting city A (0,901)
 
insert 0 902 A
>> Inserting city A (0,902)
 
insert 0 903 A
>> Inserting city A (0,903)
 
insert 0 904 A
>> Inserting city A (0,904)
 
insert 0 905 A
>> Inserting city A (0,905)
 
insert 0 906 A
>> Inserting city A (0,906)
 
insert 0 907 A
>> Inserting city A (0,907)
 
insert 0 908 A
>> Inserting city A (0,908)
 
insert 0 909 A
>> Inserting city A (0,909)
 
insert 0 910 A
>> Inserting city A (0,910)
 
insert 0 911 A
>> Inserting city A (0,911)
 
insert 0 912 A
>> Inserting city A (0,912)
 
insert 0 913 A
>> Inserting city A (0,913)
 
insert 0 914 A
>> Inserting city A (0,914)
 
insert 0 915 A
>> Inserting city A (0,915)
 
insert 0 916 A
>> Inserting city A (0,916)
 
insert 0 917 A
>> Inserting city A (0,917)
 
insert 0 918 A
>> Inserting city A (0,918)
 
insert 0 919 A
>> Inserting city A (0,919)
 
insert 0 920 A
>> Inserting city A (0,920)
 
insert 0 921 A
>> Inserting city A (0,921)
 
insert 0 922 A
>> Inserting city A (0,922)
 
insert 0 923 A
>> Inserting city A (0,923)
 
insert 0 924 A
>> Inserting city A (0,924)
 
insert 0 925 A
>> Inserting city A (0,925)
 
insert 0 926 A
>> Inserting city A (0,926)
 
insert 0 927 A
>> Inserting city A (0,927)
 
insert 0 928 A
>> Inserting city A (0,928)
 
insert 0 929 A
>> Inserting city A (0,929)
 
insert 0 930 A
>> Inserting city A (0,930)
 
insert 0 931 A
>> Inserting city A (0,931)
 
insert 0 932 A
>> Inserting city A (0,932)
 
insert 0 933 A
>> Inserting city A (0,933)
 
insert 0 934 A
>> Inserting city A (0,934)
 
insert 0 935 A
>> Inserting city A (0,935)
 
insert 0 936 A
>> Inserting city A (0,936)
 
insert 0 937 A
>> Inserting city A (0,937)
 
insert 0 938 A
>> Inserting city A (0,938)
 
insert 0 939 A
>> Inserting city A (0,939)
 
insert 0 940 A
>> Inserting city A (0,940)
 
insert 0 941 A
>> Inserting city A (0,941)
 
insert 0 942 A
>> Inserting city A (0,942)
 
insert 0 943 A
>> Inserting city A (0,943)
 
insert 0 944 A
>> Inserting city A (0,944)
 
insert 0 945 A
>> Inserting city A (0,945)
 
insert 0 946 A
>> Inserting city A (0,946)
 
insert 0 947 A
>> Inserting city A (0,947)
 
insert 0 948 A
>> Inserting city A (0,948)
 
insert 0 949 A
>> Inserting city A (0,949)
 
insert 0 950 A
>> Inserting city A (0,950)
 
insert 0 951 A
>> Inserting city A (0,951)
 
insert 0 952 A
>> Inserting city A (0,952)
 
insert 0 953 A
>> Inserting city A (0,953)
 
insert 0 954 A
>> Inserting city A (0,954)
 
insert 0 955 A
>> Inserting city A (0,955)
 
insert 0 956 A
>> Inserting city A (0,956)
 
insert 0 957 A
>> Inserting city A (0,957)
 
insert 0 958 A
>> Inserting city A (0,958)
 
insert 0 959 A
>> Inserting city A (0,959)
 
insert 0 960 A
>> Inserting city A (0,960)
 
insert 0 961 A
>> Inserting city A (0,961)
 
insert 0 962 A
>> Inserting city A (0,962)
 
insert 0 963 A
>> Inserting city A (0,963)
 
insert 0 964 A
>> Inserting city A (0,964)
 
insert 0 965 A
>> Inserting city A (0,965)
 
insert 0 966 A
>> Inserting city A (0,966)
 
insert 0 967 A
>> Inserting city A (0,967)
 
insert 0 968 A
>> Inserting city A (0,968)
 
insert 0 969 A
>> Inserting city A (0,969)
 
insert 0 970 A
>> Inserting city A (0,970)
 
insert 0 971 A
>> Inserting city A (0,971)
 
insert 0 972 A
>> Inserting city A (0,972)
 
insert 0 973 A
>> Inserting city A (0,973)
 
insert 0 974 A
>> Inserting city A (0,974)
 
insert 0 975 A
>> Inserting city A (0,975)
 
insert 0 976 A
>> Inserting city A (0,976)
 
insert 0 977 A
>> Inserting city A (0,977)
 
insert 0 978 A
>> Inserting city A (0,978)
 
insert 0 979 A
>> Inserting city A (0,979)
 
insert 0 980 A
>> Inserting city A (0,980)
 
insert 0 981 A
>> Inserting city A (0,981)
 
insert 0 982 A
>> Inserting city A (0,982)
 
insert 0 983 A
>> Inserting city A (0,983)
 
insert 0 984 A
>> Inserting city A (0,984)
 
insert 0 985 A
>> Inserting city A (0,985)
 
insert 0 986 A
>> Inserting city A (0,986)
 
insert 0 987 A
>> Inserting city A (0,987)
 
insert 0 988 A
>> Inserting city A (0,988)
 
insert 0 989 A
>> Inserting city A (0,989)
 
insert 0 990 A
>> Inserting city A (0,990)
 
insert 0 991 A
>> Inserting city A (0,991)
 
insert 0 992 A
>> Inserting city A (0,992)
 
insert 0 993 A
>> Inserting city A (0,993)
 
insert 0 994 A
>> Inserting city A (0,994)
 
insert 0 995 A
>> Inserting city A (0,995)
 
insert 0 996 A
>> Inserting city A (0,996)
 
insert 0 997 A
>> Inserting city A (0,997)
 
insert 0 998 A
>> Inserting city A (0,998)
 
insert 0 999 A
>> Inserting city A (0,999)
 
insert 0 1000 A
>> Inserting city A (0,1000)
 
insert 0 1001 A
>> Inserting city A (0,1001)
 
insert 0 1002 A
>> Inserting city A (0,1002)
 
insert 0 1003 A
>> Inserting city A (0,1003)
 
insert 0 1004 A
>> Inserting city A (0,1004)
 
insert 0 1005 A
>> Inserting city A (0,1005)
 
insert 0 1006 A
>> Inserting city A (0,1006)
 
insert 0 1007 A
>> Inserting city A (0,1007)
 
insert 0 1008 A
>> Inserting city A (0,1008)
 
insert 0 1009 A
>> Inserting city A (0,1009)
 
insert 0 1010 A
>> Inserting city A (0,1010)
 
insert 0 1011 A
>> Inserting city A (0,1011)
 
insert 0 1012 A
>> Inserting city A (0,1012)
 
insert 0 1013 A
>> Inserting city A (0,1013)
 
insert 0 1014 A
>> Inserting city A (0,1014)
 
insert 0 1015 A
>> Inserting city A (0,1015)
 
insert 0 1016 A
>> Inserting city A (0,1016)
 
insert 0 1017 A
>> Inserting city A (0,1017)
 
insert 0 1018 A
>> Inserting city A (0,1018)
 
insert 0 1019 A
>> Inserting city A (0,1019)
 
insert 0 1020 A
>> Inserting city A (0,1020)
 
insert 0 1021 A
>> Inserting city A (0,1021)
 
insert 0 1022 A
>> Inserting city A (0,1022)
 
insert 0 1023 A
>> Inserting city A (0,1023)
 
insert 0 1024 A
>> Inserting city A (0,1024)
 
insert 0 1025 A
>> Inserting city A (0,1025)
 
insert 0 1026 A
>> Inserting city A (0,1026)
 
insert 0 1027 A
>> Inserting city A (0,1027)
 
insert 0 1028 A
>> Inserting city A (0,1028)
 
insert 0 1029 A
>> Inserting city A (0,1029)
 
insert 0 1030 A
>> Inserting city A (0,1030)
 
insert 0 1031 A
>> Inserting city A (0,1031)
 
insert 0 1032 A
>> Inserting city A (0,1032)
 
insert 0 1033 A
>> Inserting city A (0,1033)
 
insert 0 1034 A
>> Inserting city A (0,1034)
 
insert 0 1035 A
>> Inserting city A (0,1035)
 
insert 0 1036 A
>> Inserting city A (0,1036)
 
insert 0 1037 A
>> Inserting city A (0,1037)
 
insert 0 1038 A
>> Inserting city A (0,1038)
 
insert 0 1039 A
>> Inserting city A (0,1039)
 
insert 0 1040 A
>> Inserting city A (0,1040)
 
insert 0 1041 A
>> Inserting city A (0,1041)
 
insert 0 1042 A
>> Inserting city A (0,1042)
 
insert 0 1043 A
>> Inserting city A (0,1043)
 
insert 0 1044 A
>> Inserting city A (0,1044)
 
insert 0 1045 A
>> Inserting city A (0,1045)
 
insert 0 1046 A
>> Inserting city A (0,1046)
 
insert 0 1047 A
>> Inserting city A (0,1047)
 
insert 0 1048 A
>> Inserting city A (0,1048)
 
insert 0 1049 A
>> Inserting city A (0,1049)
 
insert 0 1050 A
>> Inserting city A (0,1050)
 
insert 0 1051 A
>> Inserting city A (0,1051)
 
insert 0 1052 A
>> Inserting city A (0,1052)
 
insert 0 1053 A
>> Inserting city A (0,1053)
 
insert 0 1054 A
>> Inserting city A (0,1054)
 
insert 0 1055 A
>> Inserting city A (0,1055)
 
insert 0 1056 A
>> Inserting city A (0,1056)
 
insert 0 1057 A
>> Inserting city A (0,1057)
 
insert 0 1058 A
>> Inserting city A (0,1058)
 
insert 0 1059 A
>> Inserting city A (0,1059)
 
insert 0 1060 A
>> Inserting city A (0,1060)
 
insert 0 1061 A
>> Inserting city A (0,1061)
 
insert 0 1062 A
>> Inserting city A (0,1062)
 
insert 0 1063 A
>> Inserting city A (0,1063)
 
insert 0 1064 A
>> Inserting city A (0,1064)
 
insert 0 1065 A
>> Inserting city A (0,1065)
 
insert 0 1066 A
>> Inserting city A (0,1066)
 
insert 0 1067 A
>> Inserting city A (0,1067)
 
insert 0 1068 A
>> Inserting city A (0,1068)
 
insert 0 1069 A
>> Inserting city A (0,1069)
 
insert 0 1070 A
>> Inserting city A (0,1070)
 
insert 0 1071 A
>> Inserting city A (0,1071)
 
insert 0 1072 A
>> Inserting city A (0,1072)
 
insert 0 1073 A
>> Inserting city A (0,1073)
 
insert 0 1074 A
>> Inserting city A (0,1074)
 
insert 0 1075 A
>> Inserting city A (0,1075)
 
insert 0 1076 A
>> Inserting city A (0,1076)
 
insert 0 1077 A
>> Inserting city A (0,1077)
 
insert 0 1078 A
>> Inserting city A (0,1078)
 
insert 0 1079 A
>> Inserting city A (0,1079)
 
insert 0 1080 A
>> Inserting city A (0,1080)
 
insert 0 1081 A
>> Inserting city A (0,1081)
 
insert 0 1082 A
>> Inserting city A (0,1082)
 
insert 0 1083 A
>> Inserting city A (0,1083)
 
insert 0 1084 A
>> Inserting city A (0,1084)
 
insert 0 1085 A
>> Inserting city A (0,1085)
 
insert 0 1086 A
>> Inserting city A (0,1086)
 
insert 0 1087 A
>> Inserting city A (0,1087)
 
insert 0 1088 A
>> Inserting city A (0,1088)
 
insert 0 1089 A
>> Inserting city A (0,1089)
 
insert 0 1090 A
>> Inserting city A (0,1090)
 
insert 0 1091 A
>> Inserting city A (0,1091)
 
insert 0 1092 A
>> Inserting city A (0,1092)
 
insert 0 1093 A
>> Inserting city A (0,1093)
 
insert 0 1094 A
>> Inserting city A (0,1094)
 
insert 0 1095 A
>> Inserting city A (0,1095)
 
insert 0 1096 A
>> Inserting city A (0,1096)
 
insert 0 1097 A
>> Inserting city A (0,1097)
 
insert 0 1098 A
>> Inserting city A (0,1098)
 
insert 0 1099 A
>> Inserting city A (0,1099)
 
insert 0 1100 A
>> Inserting city A (0,1100)
 
insert 0 1101 A
>> Inserting city A (0,1101)
 
insert 0 1102 A
>> Inserting city A (0,1102)
 
insert 0 1103 A
>> Inserting city A (0,1103)
 
insert 0 1104 A
>> Inserting city A (0,1104)
 
insert 0 1105 A
>> Inserting city A (0,1105)
 
insert 0 1106 A
>> Inserting city A (0,1106)
 
insert 0 1107 A
>> Inserting city A (0,1107)
 
insert 0 1108 A
>> Inserting city A (0,1108)
 
insert 0 1109 A
>> Inserting city A (0,1109)
 
insert 0 1110 A
>> Inserting city A (0,1110)
 
insert 0 1111 A
>> Inserting city A (0,1111)
 
insert 0 1112 A
>> Inserting city A (0,1112)
 
insert 0 1113 A
>> Inserting city A (0,1113)
 
insert 0 1114 A
>> Inserting city A (0,1114)
 
insert 0 1115 A
>> Inserting city A (0,1115)
 
insert 0 1116 A
>> Inserting city A (0,1116)
 
insert 0 1117 A
>> Inserting city A (0,1117)
 
insert 0 1118 A
>> Inserting city A (0,1118)
 
insert 0 1119 A
>> Inserting city A (0,1119)
 
insert 0 1120 A
>> Inserting city A (0,1120)
 
insert 0 1121 A
>> Inserting city A (0,1121)
 
insert 0 1122 A
>> Inserting city A (0,1122)
 
insert 0 1123 A
>> Inserting city A (0,1123)
 
insert 0 1124 A
>> Inserting city A (0,1124)
 
insert 0 1125 A
>> Inserting city A (0,1125)
 
insert 0 1126 A
>> Inserting city A (0,1126)
 
insert 0 1127 A
>> Inserting city A (0,1127)
 
insert 0 1128 A
>> Inserting city A (0,1128)
 
insert 0 1129 A
>> Inserting city A (0,1129)
 
insert 0 1130 A
>> Inserting city A (0,1130)
 
insert 0 1131 A
>> Inserting city A (0,1131)
 
insert 0 1132 A
>> Inserting city A (0,1132)
 
insert 0 1133 A
>> Inserting city A (0,1133)
 
insert 0 1134 A
>> Inserting city A (0,1134)
 
insert 0 1135 A
>> Inserting city A (0,1135)
 
insert 0 1136 A
>> Inserting city A (0,1136)
 
insert 0 1137 A
>> Inserting city A (0,1137)
 
insert 0 1138 A
>> Inserting city A (0,1138)
 
insert 0 1139 A
>> Inserting city A (0,1139)
 
insert 0 1140 A
>> Inserting city A (0,1140)
 
insert 0 1141 A
>> Inserting city A (0,1141)
 
insert 0 1142 A
>> Inserting city A (0,1142)
 
insert 0 1143 A
>> Inserting city A (0,1143)
 
insert 0 1144 A
>> Inserting city A (0,1144)
 
insert 0 1145 A
>> Inserting city A (0,1145)
 
insert 0 1146 A
>> Inserting city A (0,1146)
 
insert 0 1147 A
>> Inserting city A (0,1147)
 
insert 0 1148 A
>> Inserting city A (0,1148)
 
insert 0 1149 A
>> Inserting city A (0,1149)
 
insert 0 1150 A
>> Inserting city A (0,1150)
 
insert 0 1151 A
>> Inserting city A (0,1151)
 
insert 0 1152 A
>> Inserting city A (0,1152)
 
insert 0 1153 A
>> Inserting city A (0,1153)
 
insert 0 1154 A
>> Inserting city A (0,1154)
 
insert 0 1155 A
>> Inserting city A (0,1155)
 
insert 0 1156 A
>> Inserting city A (0,1156)
 
insert 0 1157 A
>> Inserting city A (0,1157)
 
insert 0 1158 A
>> Inserting city A (0,1158)
 
insert 0 1159 A
>> Inserting city A (0,1159)
 
insert 0 1160 A
>> Inserting city A (0,1160)
 
insert 0 1161 A
>> Inserting city A (0,1161)
 
insert 0 1162 A
>> Inserting city A (0,1162)
 
insert 0 1163 A
>> Inserting city A (0,1163)
 
insert 0 1164 A
>> Inserting city A (0,1164)
 
insert 0 1165 A
>> Inserting city A (0,1165)
 
insert 0 1166 A
>> Inserting city A (0,1166)
 
insert 0 1167 A
>> Inserting city A (0,1167)
 
insert 0 1168 A
>> Inserting city A (0,1168)
 
insert 0 1169 A
>> Inserting city A (0,1169)
 
insert 0 1170 A
>> Inserting city A (0,1170)
 
insert 0 1171 A
>> Inserting city A (0,1171)
 
insert 0 1172 A
>> Inserting city A (0,1172)
 
insert 0 1173 A
>> Inserting city A (0,1173)
 
insert 0 1174 A
>> Inserting city A (0,1174)
 
insert 0 1175 A
>> Inserting city A (0,1175)
 
insert 0 1176 A
>> Inserting city A (0,1176)
 
insert 0 1177 A
>> Inserting city A (0,1177)
 
insert 0 1178 A
>> Inserting city A (0,1178)
 
insert 0 1179 A
>> Inserting city A (0,1179)
 
insert 0 1180 A
>> Inserting city A (0,1180)
 
insert 0 1181 A
>> Inserting city A (0,1181)
 
insert 0 1182 A
>> Inserting city A (0,1182)
 
insert 0 1183 A
>> Inserting city A (0,1183)
 
insert 0 1184 A
>> Inserting city A (0,1184)
 
insert 0 1185 A
>> Inserting city A (0,1185)
 
insert 0 1186 A
>> Inserting city A (0,1186)
 
insert 0 1187 A
>> Inserting city A (0,1187)
 
insert 0 1188 A
>> Inserting city A (0,1188)
 
insert 0 1189 A
>> Inserting city A (0,1189)
 
insert 0 1190 A
>> Inserting city A (0,1190)
 
insert 0 1191 A
>> Inserting city A (0,1191)
 
insert 0 1192 A
>> Inserting city A (0,1192)
 
insert 0 1193 A
>> Inserting city A (0,1193)
 
insert 0 1194 A
>> Inserting city A (0,1194)
 
insert 0 1195 A
>> Inserting city A (0,1195)
 
insert 0 1196 A
>> Inserting city A (0,1196)
 
insert 0 1197 A
>> Inserting city A (0,1197)
 
insert 0 1198 A
>> Inserting city A (0,1198)
 
insert 0 1199 A
>> Inserting city A (0,1199)
 
insert 0 1200 A
>> Inserting city A (0,1200)
 
insert 0 1201 A
>> Inserting city A (0,1201)
 
insert 0 1202 A
>> Inserting city A (0,1202)
 
insert 0 1203 A
>> Inserting city A (0,1203)
 
insert 0 1204 A
>> Inserting city A (0,1204)
 
insert 0 1205 A
>> Inserting city A (0,1205)
 
insert 0 1206 A
>> Inserting city A (0,1206)
 
insert 0 1207 A
>> Inserting city A (0,1207)
 
insert 0 1208 A
>> Inserting city A (0,1208)
 
insert 0 1209 A
>> Inserting city A (0,1209)
 
insert 0 1210 A
>> Inserting city A (0,1210)
 
insert 0 1211 A
>> Inserting city A (0,1211)
 
insert 0 1212 A
>> Inserting city A (0,1212)
 
insert 0 1213 A
>> Inserting city A (0,1213)
 
insert 0 1214 A
>> Inserting city A (0,1214)
 
insert 0 1215 A
>> Inserting city A (0,1215)
 
insert 0 1216 A
>> Inserting city A (0,1216)
 
insert 0 1217 A
>> Inserting city A (0,1217)
 
insert 0 1218 A
>> Inserting city A (0,1218)
 
insert 0 1219 A
>> Inserting city A (0,1219)
 
insert 0 1220 A
>> Inserting city A (0,1220)
 
insert 0 1221 A
>> Inserting city A (0,1221)
 
insert 0 1222 A
>> Inserting city A (0,1222)
 
insert 0 1223 A
>> Inserting city A (0,1223)
 
insert 0 1224 A
>> Inserting city A (0,1224)
 
insert 0 1225 A
>> Inserting city A (0,1225)
 
insert 0 1226 A
>> Inserting city A (0,1226)
 
insert 0 1227 A
>> Inserting city A (0,1227)
 
insert 0 1228 A
>> Inserting city A (0,1228)
 
insert 0 1229 A
>> Inserting city A (0,1229)
 
insert 0 1230 A
>> Inserting city A (0,1230)
 
insert 0 1231 A
>> Inserting city A (0,1231)
 
insert 0 1232 A
>> Inserting city A (0,1232)
 
insert 0 1233 A
>> Inserting city A (0,1233)
 
insert 0 1234 A
>> Inserting city A (0,1234)
 
insert 0 1235 A
>> Inserting city A (0,1235)
 
insert 0 1236 A
>> Inserting city A (0,1236)
 
insert 0 1237 A
>> Inserting city A (0,1237)
 
insert 0 1238 A
>> Inserting city A (0,1238)
 
insert 0 1239 A
>> Inserting city A (0,1239)
 
insert 0 1240 A
>> Inserting city A (0,1240)
 
insert 0 1241 A
>> Inserting city A (0,1241)
 
insert 0 1242 A
>> Inserting city A (0,1242)
 
insert 0 1243 A
>> Inserting city A (0,1243)
 
insert 0 1244 A
>> Inserting city A (0,1244)
 
insert 0 1245 A
>> Inserting city A (0,1245)
 
insert 0 1246 A
>> Inserting city A (0,1246)
 
insert 0 1247 A
>> Inserting city A (0,1247)
 
insert 0 1248 A
>> Inserting city A (0,1248)
 
insert 0 1249 A
>> Inserting city A (0,1249)
 
insert 0 1250 A
>> Inserting city A (0,1250)
 
insert 0 1251 A
>> Inserting city A (0,1251)
 
insert 0 1252 A
>> Inserting city A (0,1252)
 
insert 0 1253 A
>> Inserting city A (0,1253)
 
insert 0 1254 A
>> Inserting city A (0,1254)
 
insert 0 1255 A
>> Inserting city A (0,1255)
 
insert 0 1256 A
>> Inserting city A (0,1256)
 
insert 0 1257 A
>> Inserting city A (0,1257)
 
insert 0 1258 A
>> Inserting city A (0,1258)
 
insert 0 1259 A
>> Inserting city A (0,1259)
 
insert 0 1260 A
>> Inserting city A (0,1260)
 
insert 0 1261 A
>> Inserting city A (0,1261)
 
insert 0 1262 A
>> Inserting city A (0,1262)
 
insert 0 1263 A
>> Inserting city A (0,1263)
 
insert 0 1264 A
>> Inserting city A (0,1264)
 
insert 0 1265 A
>> Inserting city A (0,1265)
 
insert 0 1266 A
>> Inserting city A (0,1266)
 
insert 0 1267 A
>> Inserting city A (0,1267)
 
insert 0 1268 A
>> Inserting city A (0,1268)
 
insert 0 1269 A
>> Inserting city A (0,1269)
 
insert 0 1270 A
>> Inserting city A (0,1270)
 
insert 0 1271 A
>> Inserting city A (0,1271)
 
insert 0 1272 A
>> Inserting city A (0,1272)
 
insert 0 1273 A
>> Inserting city A (0,1273)
 
insert 0 1274 A
>> Inserting city A (0,1274)
 
insert 0 1275 A
>> Inserting city A (0,1275)
 
insert 0 1276 A
>> Inserting city A (0,1276)
 
insert 0 1277 A
>> Inserting city A (0,1277)
 
insert 0 1278 A
>> Inserting city A (0,1278)
 
insert 0 1279 A
>> Inserting city A (0,1279)
 
insert 0 1280 A
>> Inserting city A (0,1280)
 
insert 0 1281 A
>> Inserting city A (0,1281)
 
insert 0 1282 A
>> Inserting city A (0,1282)
 
insert 0 1283 A
>> Inserting city A (0,1283)
 
insert 0 1284 A
>> Inserting city A (0,1284)
 
insert 0 1285 A
>> Inserting city A (0,1285)
 
insert 0 1286 A
>> Inserting city A (0,1286)
 
insert 0 1287 A
>> Inserting city A (0,1287)
 
insert 0 1288 A
>> Inserting city A (0,1288)
 
insert 0 1289 A
>> Inserting city A (0,1289)
 
insert 0 1290 A
>> Inserting city A (0,1290)
 
insert 0 1291 A
>> Inserting city A (0,1291)
 
insert 0 1292 A
>> Inserting city A (0,1292)
 
insert 0 1293 A
>> Inserting city A (0,1293)
 
insert 0 1294 A
>> Inserting city A (0,1294)
 
insert 0 1295 A
>> Inserting city A (0,1295)
 
insert 0 1296 A
>> Inserting city A (0,1296)
 
insert 0 1297 A
>> Inserting city A (0,1297)
 
insert 0 1298 A
>> Inserting city A (0,1298)
 
insert 0 1299 A
>> Inserting city A (0,1299)
 
insert 0 1300 A
>> Inserting city A (0,1300)
 
insert 0 1301 A
>> Inserting city A (0,1301)
 
insert 0 1302 A
>> Inserting city A (0,1302)
 
insert 0 1303 A
>> Inserting city A (0,1303)
 
insert 0 1304 A
>> Inserting city A (0,1304)
 
insert 0 1305 A
>> Inserting city A (0,1305)
 
insert 0 1306 A
>> Inserting city A (0,1306)
 
insert 0 1307 A
>> Inserting city A (0,1307)
 
insert 0 1308 A
>> Inserting city A (0,1308)
 
insert 0 1309 A
>> Inserting city A (0,1309)
 
insert 0 1310 A
>> Inserting city A (0,1310)
 
insert 0 1311 A
>> Inserting city A (0,1311)
 
insert 0 1312 A
>> Inserting city A (0,1312)
 
insert 0 1313 A
>> Inserting city A (0,1313)
 
insert 0 1314 A
>> Inserting city A (0,1314)
 
insert 0 1315 A
>> Inserting city A (0,1315)
 
insert 0 1316 A
>> Inserting city A (0,1316)
 
insert 0 1317 A
>> Inserting city A (0,1317)
 
insert 0 1318 A
>> Inserting city A (0,1318)
 
insert 0 1319 A
>> Inserting city A (0,1319)
 
insert 0 1320 A
>> Inserting city A (0,1320)
 
insert 0 1321 A
>> Inserting city A (0,1321)
 
insert 0 1322 A
>> Inserting city A (0,1322)
 
insert 0 1323 A
>> Inserting city A (0,1323)
 
insert 0 1324 A
>> Inserting city A (0,1324)
 
insert 0 1325 A
>> Inserting city A (0,1325)
 
insert 0 1326 A
>> Inserting city A (0,1326)
 
insert 0 1327 A
>> Inserting city A (0,1327)
 
insert 0 1328 A
>> Inserting city A (0,1328)
 
insert 0 1329 A
>> Inserting city A (0,1329)
 
insert 0 1330 A
>> Inserting city A (0,1330)
 
insert 0 1331 A
>> Inserting city A (0,1331)
 
insert 0 1332 A
>> Inserting city A (0,1332)
 
insert 0 1333 A
>> Inserting city A (0,1333)
 
insert 0 1334 A
>> Inserting city A (0,1334)
 
insert 0 1335 A
>> Inserting city A (0,1335)
 
insert 0 1336 A
>> Inserting city A (0,1336)
 
insert 0 1337 A
>> Inserting city A (0,1337)
 
insert 0 1338 A
>> Inserting city A (0,1338)
 
insert 0 1339 A
>> Inserting city A (0,1339)
 
insert 0 1340 A
>> Inserting city A (0,1340)
 
insert 0 1341 A
>> Inserting city A (0,1341)
 
insert 0 1342 A
>> Inserting city A (0,1342)
 
insert 0 1343 A
>> Inserting city A (0,1343)
 
insert 0 1344 A
>> Inserting city A (0,1344)
 
insert 0 1345 A
>> Inserting city A (0,1345)
 
insert 0 1346 A
>> Inserting city A (0,1346)
 
insert 0 1347 A
>> Inserting city A (0,1347)
 
insert 0 1348 A
>> Inserting city A (0,1348)
 
insert 0 1349 A
>> Inserting city A (0,1349)
 
insert 0 1350 A
>> Inserting city A (0,1350)
 
insert 0 1351 A
>> Inserting city A (0,1351)
 
insert 0 1352 A
>> Inserting city A (0,1352)
 
insert 0 1353 A
>> Inserting city A (0,1353)
 
insert 0 1354 A
>> Inserting city A (0,1354)
 
insert 0 1355 A
>> Inserting city A (0,1355)
 
insert 0 1356 A
>> Inserting city A (0,1356)
 
insert 0 1357 A
>> Inserting city A (0,1357)
 
insert 0 1358 A
>> Inserting city A (0,1358)
 
insert 0 1359 A
>> Inserting city A (0,1359)
 
insert 0 1360 A
>> Inserting city A (0,1360)
 
insert 0 1361 A
>> Inserting city A (0,1361)
 
insert 0 1362 A
>> Inserting city A (0,1362)
 
insert 0 1363 A
>> Inserting city A (0,1363)
 
insert 0 1364 A
>> Inserting city A (0,1364)
 
insert 0 1365 A
>> Inserting city A (0,1365)
 
insert 0 1366 A
>> Inserting city A (0,1366)
 
insert 0 1367 A
>> Inserting city A (0,1367)
 
insert 0 1368 A
>> Inserting city A (0,1368)
 
insert 0 1369 A
>> Inserting city A (0,1369)
 
insert 0 1370 A
>> Inserting city A (0,1370)
 
insert 0 1371 A
>> Inserting city A (0,1371)
 
insert 0 1372 A
>> Inserting city A (0,1372)
 
insert 0 1373 A
>> Inserting city A (0,1373)
 
insert 0 1374 A
>> Inserting city A (0,1374)
 
insert 0 1375 A
>> Inserting city A (0,1375)
 
insert 0 1376 A
>> Inserting city A (0,1376)
 
insert 0 1377 A
>> Inserting city A (0,1377)
 
insert 0 1378 A
>> Inserting city A (0,1378)
 
insert 0 1379 A
>> Inserting city A (0,1379)
 
insert 0 1380 A
>> Inserting city A (0,1380)
 
insert 0 1381 A
>> Inserting city A (0,1381)
 
insert 0 1382 A
>> Inserting city A (0,1382)
 
insert 0 1383 A
>> Inserting city A (0,1383)
 
insert 0 1384 A
>> Inserting city A (0,1384)
 
insert 0 1385 A
>> Inserting city A (0,1385)
 
insert 0 1386 A
>> Inserting city A (0,1386)
 
insert 0 1387 A
>> Inserting city A (0,1387)
 
insert 0 1388 A
>> Inserting city A (0,1388)
 
insert 0 1389 A
>> Inserting city A (0,1389)
 
insert 0 1390 A
>> Inserting city A (0,1390)
 
insert 0 1391 A
>> Inserting city A (0,1391)
 
insert 0 1392 A
>> Inserting city A (0,1392)
 
insert 0 1393 A
>> Inserting city A (0,1393)
 
insert 0 1394 A
>> Inserting city A (0,1394)
 
insert 0 1395 A
>> Inserting city A (0,1395)
 
insert 0 1396 A
>> Inserting city A (0,1396)
 
insert 0 1397 A
>> Inserting city A (0,1397)
 
insert 0 1398 A
>> Inserting city A (0,1398)
 
insert 0 1399 A
>> Inserting city A (0,1399)
 
insert 0 1400 A
>> Inserting city A (0,1400)
 
insert 0 1401 A
>> Inserting city A (0,1401)
 
insert 0 1402 A
>> Inserting city A (0,1402)
 
insert 0 1403 A
>> Inserting city A (0,1403)
 
insert 0 1404 A
>> Inserting city A (0,1404)
 
insert 0 1405 A
>> Inserting city A (0,1405)
 
insert 0 1406 A
>> Inserting city A (0,1406)
 
insert 0 1407 A
>> Inserting city A (0,1407)
 
insert 0 1408 A
>> Inserting city A (0,1408)
 
insert 0 1409 A
>> Inserting city A (0,1409)
 
insert 0 1410 A
>> Inserting city A (0,1410)
 
insert 0 1411 A
>> Inserting city A (0,1411)
 
insert 0 1412 A
>> Inserting city A (0,1412)
 
insert 0 1413 A
>> Inserting city A (0,1413)
 
insert 0 1414 A
>> Inserting city A (0,1414)
 
insert 0 1415 A
>> Inserting city A (0,1415)
 
insert 0 1416 A
>> Inserting city A (0,1416)
 
insert 0 1417 A
>> Inserting city A (0,1417)
 
insert 0 1418 A
>> Inserting city A (0,1418)
 
insert 0 1419 A
>> Inserting city A (0,1419)
 
insert 0 1420 A
>> Inserting city A (0,1420)
 
insert 0 1421 A
>> Inserting city A (0,1421)
 
insert 0 1422 A
>> Inserting city A (0,1422)
 
insert 0 1423 A
>> Inserting city A (0,1423)
 
insert 0 1424 A
>> Inserting city A (0,1424)
 
insert 0 1425 A
>> Inserting city A (0,1425)
 
insert 0 1426 A
>> Inserting city A (0,1426)
 
insert 0 1427 A
>> Inserting city A (0,1427)
 
insert 0 1428 A
>> Inserting city A (0,1428)
 
insert 0 1429 A
>> Inserting city A (0,1429)
 
insert 0 1430 A
>> Inserting city A (0,1430)
 
insert 0 1431 A
>> Inserting city A (0,1431)
 
insert 0 1432 A
>> Inserting city A (0,1432)
 
insert 0 1433 A
>> Inserting city A (0,1433)
 
insert 0 1434 A
>> Inserting city A (0,1434)
 
insert 0 1435 A
>> Inserting city A (0,1435)
 
insert 0 1436 A
>> Inserting city A (0,1436)
 
insert 0 1437 A
>> Inserting city A (0,1437)
 
insert 0 1438 A
>> Inserting city A (0,1438)
 
insert 0 1439 A
>> Inserting city A (0,1439)
 
insert 0 1440 A
>> Inserting city A (0,1440)
 
insert 0 1441 A
>> Inserting city A (0,1441)
 
insert 0 1442 A
>> Inserting city A (0,1442)
 
insert 0 1443 A
>> Inserting city A (0,1443)
 
insert 0 1444 A
>> Inserting city A (0,1444)
 
insert 0 1445 A
>> Inserting city A (0,1445)
 
insert 0 1446 A
>> Inserting city A (0,1446)
 
insert 0 1447 A
>> Inserting city A (0,1447)
 
insert 0 1448 A
>> Inserting city A (0,1448)
 
insert 0 1449 A
>> Inserting city A (0,1449)
 
insert 0 1450 A
>> Inserting city A (0,1450)
 
insert 0 1451 A
>> Inserting city A (0,1451)
 
insert 0 1452 A
>> Inserting city A (0,1452)
 
insert 0 1453 A
>> Inserting city A (0,1453)
 
insert 0 1454 A
>> Inserting city A (0,1454)
 
insert 0 1455 A
>> Inserting city A (0,1455)
 
insert 0 1456 A
>> Inserting city A (0,1456)
 
insert 0 1457 A
>> Inserting city A (0,1457)
 
insert 0 1458 A
>> Inserting city A (0,1458)
 
insert 0 1459 A
>> Inserting city A (0,1459)
 
insert 0 1460 A
>> Inserting city A (0,1460)
 
insert 0 1461 A
>> Inserting city A (0,1461)
 
insert 0 1462 A
>> Inserting city A (0,1462)
 
insert 0 1463 A
>> Inserting city A (0,1463)
 
insert 0 1464 A
>> Inserting city A (0,1464)
 
insert 0 1465 A
>> Inserting city A (0,1465)
 
insert 0 1466 A
>> Inserting city A (0,1466)
 
insert 0 1467 A
>> Inserting city A (0,1467)
 
insert 0 1468 A
>> Inserting city A (0,1468)
 
insert 0 1469 A
>> Inserting city A (0,1469)
 
insert 0 1470 A
>> Inserting city A (0,1470)
 
insert 0 1471 A
>> Inserting city A (0,1471)
 
insert 0 1472 A
>> Inserting city A (0,1472)
 
insert 0 1473 A
>> Inserting city A (0,1473)
 
insert 0 1474 A
>> Inserting city A (0,1474)
 
insert 0 1475 A
>> Inserting city A (0,1475)
 
insert 0 1476 A
>> Inserting city A (0,1476)
 
insert 0 1477 A
>> Inserting city A (0,1477)
 
insert 0 1478 A
>> Inserting city A (0,1478)
 
insert 0 1479 A
>> Inserting city A (0,1479)
 
insert 0 1480 A
>> Inserting city A (0,1480)
 
insert 0 1481 A
>> Inserting city A (0,1481)
 
insert 0 1482 A
>> Inserting city A (0,1482)
 
insert 0 1483 A
>> Inserting city A (0,1483)
 
insert 0 1484 A
>> Inserting city A (0,1484)
 
insert 0 1485 A
>> Inserting city A (0,1485)
 
insert 0 1486 A
>> Inserting city A (0,1486)
 
insert 0 1487 A
>> Inserting city A (0,1487)
 
insert 0 1488 A
>> Inserting city A (0,1488)
 
insert 0 1489 A
>> Inserting city A (0,1489)
 
insert 0 1490 A
>> Inserting city A (0,1490)
 
insert 0 1491 A
>> Inserting city A (0,1491)
 
insert 0 1492 A
>> Inserting city A (0,1492)
 
insert 0 1493 A
>> Inserting city A (0,1493)
 
insert 0 1494 A
>> Inserting city A (0,1494)
 
insert 0 1495 A
>> Inserting city A (0,1495)
 
insert 0 1496 A
>> Inserting city A (0,1496)
 
insert 0 1497 A
>> Inserting city A (0,1497)
 
insert 0 1498 A
>> Inserting city A (0,1498)
 
insert 0 1499 A
>> Inserting city A (0,1499)
 
insert 0 1500 A
>> Inserting city A (0,1500)
 
insert 0 1501 A
>> Inserting city A (0,1501)
 
insert 0 1502 A
>> Inserting city A (0,1502)
 
insert 0 1503 A
>> Inserting city A (0,1503)
 
insert 0 1504 A
>> Inserting city A (0,1504)
 
insert 0 1505 A
>> Inserting city A (0,1505)
 
insert 0 1506 A
>> Inserting city A (0,1506)
 
insert 0 1507 A
>> Inserting city A (0,1507)
 
insert 0 1508 A
>> Inserting city A (0,1508)
 
insert 0 1509 A
>> Inserting city A (0,1509)
 
insert 0 1510 A
>> Inserting city A (0,1510)
 
insert 0 1511 A
>> Inserting city A (0,1511)
 
insert 0 1512 A
>> Inserting city A (0,1512)
 
insert 0 1513 A
>> Inserting city A (0,1513)
 
insert 0 1514 A
>> Inserting city A (0,1514)
 
insert 0 1515 A
>> Inserting city A (0,1515)
 
insert 0 1516 A
>> Inserting city A (0,1516)
 
insert 0 1517 A
>> Inserting city A (0,1517)
 
insert 0 1518 A
>> Inserting city A (0,1518)
 
insert 0 1519 A
>> Inserting city A (0,1519)
 
insert 0 1520 A
>> Inserting city A (0,1520)
 
insert 0 1521 A
>> Inserting city A (0,1521)
 
insert 0 1522 A
>> Inserting city A (0,1522)
 
insert 0 1523 A
>> Inserting city A (0,1523)
 
insert 0 1524 A
>> Inserting city A (0,1524)
 
insert 0 1525 A
>> Inserting city A (0,1525)
 
insert 0 1526 A
>> Inserting city A (0,1526)
 
insert 0 1527 A
>> Inserting city A (0,1527)
 
insert 0 1528 A
>> Inserting city A (0,1528)
 
insert 0 1529 A
>> Inserting city A (0,1529)
 
insert 0 1530 A
>> Inserting city A (0,1530)
 
insert 0 1531 A
>> Inserting city A (0,1531)
 
insert 0 1532 A
>> Inserting city A (0,1532)
 
insert 0 1533 A
>> Inserting city A (0,1533)
 
insert 0 1534 A
>> Inserting city A (0,1534)
 
insert 0 1535 A
>> Inserting city A (0,1535)
 
insert 0 1536 A
>> Inserting city A (0,1536)
 
insert 0 1537 A
>> Inserting city A (0,1537)
 
insert 0 1538 A
>> Inserting city A (0,1538)
 
insert 0 1539 A
>> Inserting city A (0,1539)
 
insert 0 1540 A
>> Inserting city A (0,1540)
 
insert 0 1541 A
>> Inserting city A (0,1541)
 
insert 0 1542 A
>> Inserting city A (0,1542)
 
insert 0 1543 A
>> Inserting city A (0,1543)
 
insert 0 1544 A
>> Inserting city A (0,1544)
 
insert 0 1545 A
>> Inserting city A (0,1545)
 
insert 0 1546 A
>> Inserting city A (0,1546)
 
insert 0 1547 A
>> Inserting city A (0,1547)
 
insert 0 1548 A
>> Inserting city A (0,1548)
 
insert 0 1549 A
>> Inserting city A (0,1549)
 
insert 0 1550 A
>> Inserting city A (0,1550)
 
insert 0 1551 A
>> Inserting city A (0,1551)
 
insert 0 1552 A
>> Inserting city A (0,1552)
 
insert 0 1553 A
>> Inserting city A (0,1553)
 
insert 0 1554 A
>> Inserting city A (0,1554)
 
insert 0 1555 A
>> Inserting city A (0,1555)
 
insert 0 1556 A
>> Inserting city A (0,1556)
 
insert 0 1557 A
>> Inserting city A (0,1557)
 
insert 0 1558 A
>> Inserting city A (0,1558)
 
insert 0 1559 A
>> Inserting city A (0,1559)
 
insert 0 1560 A
>> Inserting city A (0,1560)
 
insert 0 1561 A
>> Inserting city A (0,1561)
 
insert 0 1562 A
>> Inserting city A (0,1562)
 
insert 0 1563 A
>> Inserting city A (0,1563)
 
insert 0 1564 A
>> Inserting city A (0,1564)
 
insert 0 1565 A
>> Inserting city A (0,1565)
 
insert 0 1566 A
>> Inserting city A (0,1566)
 
insert 0 1567 A
>> Inserting city A (0,1567)
 
insert 0 1568 A
>> Inserting city A (0,1568)
 
insert 0 1569 A
>> Inserting city A (0,1569)
 
insert 0 1570 A
>> Inserting city A (0,1570)
 
insert 0 1571 A
>> Inserting city A (0,1571)
 
insert 0 1572 A
>> Inserting city A (0,1572)
 
insert 0 1573 A
>> Inserting city A (0,1573)
 
insert 0 1574 A
>> Inserting city A (0,1574)
 
insert 0 1575 A
>> Inserting city A (0,1575)
 
insert 0 1576 A
>> Inserting city A (0,1576)
 
insert 0 1577 A
>> Inserting city A (0,1577)
 
insert 0 1578 A
>> Inserting city A (0,1578)
 
insert 0 1579 A
>> Inserting city A (0,1579)
 
insert 0 1580 A
>> Inserting city A (0,1580)
 
insert 0 1581 A
>> Inserting city A (0,1581)
 
insert 0 1582 A
>> Inserting city A (0,1582)
 
insert 0 1583 A
>> Inserting city A (0,1583)
 
insert 0 1584 A
>> Inserting city A (0,1584)
 
insert 0 1585 A
>> Inserting city A (0,1585)
 
insert 0 1586 A
>> Inserting city A (0,1586)
 
insert 0 1587 A
>> Inserting city A (0,1587)
 
insert 0 1588 A
>> Inserting city A (0,1588)
 
insert 0 1589 A
>> Inserting city A (0,1589)
 
insert 0 1590 A
>> Inserting city A (0,1590)
 
insert 0 1591 A
>> Inserting city A (0,1591)
 
insert 0 1592 A
>> Inserting city A (0,1592)
 
insert 0 1593 A
>> Inserting city A (0,1593)
 
insert 0 1594 A
>> Inserting city A (0,1594)
 
insert 0 1595 A
>> Inserting city A (0,1595)
 
insert 0 1596 A
>> Inserting city A (0,1596)
 
insert 0 1597 A
>> Inserting city A (0,1597)
 
insert 0 1598 A
>> Inserting city A (0,1598)
 
insert 0 1599 A
>> Inserting city A (0,1599)
 
insert 0 1600 A
>> Inserting city A (0,1600)
 
insert 0 1601 A
>> Inserting city A (0,1601)
 
insert 0 1602 A
>> Inserting city A (0,1602)
 
insert 0 1603 A
>> Inserting city A (0,1603)
 
insert 0 1604 A
>> Inserting city A (0,1604)
 
insert 0 1605 A
>> Inserting city A (0,1605)
 
insert 0 1606 A
>> Inserting city A (0,1606)
 
insert 0 1607 A
>> Inserting city A (0,1607)
 
insert 0 1608 A
>> Inserting city A (0,1608)
 
insert 0 1609 A
>> Inserting city A (0,1609)
 
insert 0 1610 A
>> Inserting city A (0,1610)
 
insert 0 1611 A
>> Inserting city A (0,1611)
 
insert 0 1612 A
>> Inserting city A (0,1612)
 
insert 0 1613 A
>> Inserting city A (0,1613)
 
insert 0 1614 A
>> Inserting city A (0,1614)
 
insert 0 1615 A
>> Inserting city A (0,1615)
 
insert 0 1616 A
>> Inserting city A (0,1616)
 
insert 0 1617 A
>> Inserting city A (0,1617)
 
insert 0 1618 A
>> Inserting city A (0,1618)
 
insert 0 1619 A
>> Inserting city A (0,1619)
 
insert 0 1620 A
>> Inserting city A (0,1620)
 
insert 0 1621 A
>> Inserting city A (0,1621)
 
insert 0 1622 A
>> Inserting city A (0,1622)
 
insert 0 1623 A
>> Inserting city A (0,1623)
 
insert 0 1624 A
>> Inserting city A (0,1624)
 
insert 0 1625 A
>> Inserting city A (0,1625)
 
insert 0 1626 A
>> Inserting city A (0,1626)
 
insert 0 1627 A
>> Inserting city A (0,1627)
 
insert 0 1628 A
>> Inserting city A (0,1628)
 
insert 0 1629 A
>> Inserting city A (0,1629)
 
insert 0 1630 A
>> Inserting city A (0,1630)
 
insert 0 1631 A
>> Inserting city A (0,1631)
 
insert 0 1632 A
>> Inserting city A (0,1632)
 
insert 0 1633 A
>> Inserting city A (0,1633)
 
insert 0 1634 A
>> Inserting city A (0,1634)
 
insert 0 1635 A
>> Inserting city A (0,1635)
 
insert 0 1636 A
>> Inserting city A (0,1636)
 
insert 0 1637 A
>> Inserting city A (0,1637)
 
insert 0 1638 A
>> Inserting city A (0,1638)
 
insert 0 1639 A
>> Inserting city A (0,1639)
 
insert 0 1640 A
>> Inserting city A (0,1640)
 
insert 0 1641 A
>> Inserting city A (0,1641)
 
insert 0 1642 A
>> Inserting city A (0,1642)
 
insert 0 1643 A
>> Inserting city A (0,1643)
 
insert 0 1644 A
>> Inserting city A (0,1644)
 
insert 0 1645 A
>> Inserting city A (0,1645)
 
insert 0 1646 A
>> Inserting city A (0,1646)
 
insert 0 1647 A
>> Inserting city A (0,1647)
 
insert 0 1648 A
>> Inserting city A (0,1648)
 
insert 0 1649 A
>> Inserting city A (0,1649)
 
insert 0 1650 A
>> Inserting city A (0,1650)
 
insert 0 1651 A
>> Inserting city A (0,1651)
 
insert 0 1652 A
>> Inserting city A (0,1652)
 
insert 0 1653 A
>> Inserting city A (0,1653)
 
insert 0 1654 A
>> Inserting city A (0,1654)
 
insert 0 1655 A
>> Inserting city A (0,1655)
 
insert 0 1656 A
>> Inserting city A (0,1656)
 
insert 0 1657 A
>> Inserting city A (0,1657)
 
insert 0 1658 A
>> Inserting city A (0,1658)
 
insert 0 1659 A
>> Inserting city A (0,1659)
 
insert 0 1660 A
>> Inserting city A (0,1660)
 
insert 0 1661 A
>> Inserting city A (0,1661)
 
insert 0 1662 A
>> Inserting city A (0,1662)
 
insert 0 1663 A
>> Inserting city A (0,1663)
 
insert 0 1664 A
>> Inserting city A (0,1664)
 
insert 0 1665 A
>> Inserting city A (0,1665)
 
insert 0 1666 A
>> Inserting city A (0,1666)
 
insert 0 1667 A
>> Inserting city A (0,1667)
 
insert 0 1668 A
>> Inserting city A (0,1668)
 
insert 0 1669 A
>> Inserting city A (0,1669)
 
insert 0 1670 A
>> Inserting city A (0,1670)
 
insert 0 1671 A
>> Inserting city A (0,1671)
 
insert 0 1672 A
>> Inserting city A (0,1672)
 
insert 0 1673 A
>> Inserting city A (0,1673)
 
insert 0 1674 A
>> Inserting city A (0,1674)
 
insert 0 1675 A
>> Inserting city A (0,1675)
 
insert 0 1676 A
>> Inserting city A (0,1676)
 
insert 0 1677 A
>> Inserting city A (0,1677)
 
insert 0 1678 A
>> Inserting city A (0,1678)
 
insert 0 1679 A
>> Inserting city A (0,1679)
 
insert 0 1680 A
>> Inserting city A (0,1680)
 
insert 0 1681 A
>> Inserting city A (0,1681)
 
insert 0 1682 A
>> Inserting city A (0,1682)
 
insert 0 1683 A
>> Inserting city A (0,1683)
 
insert 0 1684 A
>> Inserting city A (0,1684)
 
insert 0 1685 A
>> Inserting city A (0,1685)
 
insert 0 1686 A
>> Inserting city A (0,1686)
 
insert 0 1687 A
>> Inserting city A (0,1687)
 
insert 0 1688 A
>> Inserting city A (0,1688)
 
insert 0 1689 A
>> Inserting city A (0,1689)
 
insert 0 1690 A
>> Inserting city A (0,1690)
 
insert 0 1691 A
>> Inserting city A (0,1691)
 
insert 0 1692 A
>> Inserting city A (0,1692)
 
insert 0 1693 A
>> Inserting city A (0,1693)
 
insert 0 1694 A
>> Inserting city A (0,1694)
 
insert 0 1695 A
>> Inserting city A (0,1695)
 
insert 0 1696 A
>> Inserting city A (0,1696)
 
insert 0 1697 A
>> Inserting city A (0,1697)
 
insert 0 1698 A
>> Inserting city A (0,1698)
 
insert 0 1699 A
>> Inserting city A (0,1699)
 
insert 0 1700 A
>> Inserting city A (0,1700)
 
insert 0 1701 A
>> Inserting city A (0,1701)
 
insert 0 1702 A
>> Inserting city A (0,1702)
 
insert 0 1703 A
>> Inserting city A (0,1703)
 
insert 0 1704 A
>> Inserting city A (0,1704)
 
insert 0 1705 A
>> Inserting city A (0,1705)
 
insert 0 1706 A
>> Inserting city A (0,1706)
 
insert 0 1707 A
>> Inserting city A (0,1707)
 
insert 0 1708 A
>> Inserting city A (0,1708)
 
insert 0 1709 A
>> Inserting city A (0,1709)
 
insert 0 1710 A
>> Inserting city A (0,1710)
 
insert 0 1711 A
>> Inserting city A (0,1711)
 
insert 0 1712 A
>> Inserting city A (0,1712)
 
insert 0 1713 A
>> Inserting city A (0,1713)
 
insert 0 1714 A
>> Inserting city A (0,1714)
 
insert 0 1715 A
>> Inserting city A (0,1715)
 
insert 0 1716 A
>> Inserting city A (0,1716)
 
insert 0 1717 A
>> Inserting city A (0,1717)
 
insert 0 1718 A
>> Inserting city A (0,1718)
 
insert 0 1719 A
>> Inserting city A (0,1719)
 
insert 0 1720 A
>> Inserting city A (0,1720)
 
insert 0 1721 A
>> Inserting city A (0,1721)
 
insert 0 1722 A
>> Inserting city A (0,1722)
 
insert 0 1723 A
>> Inserting city A (0,1723)
 
insert 0 1724 A
>> Inserting city A (0,1724)
 
insert 0 1725 A
>> Inserting city A (0,1725)
 
insert 0 1726 A
>> Inserting city A (0,1726)
 
insert 0 1727 A
>> Inserting city A (0,1727)
 
insert 0 1728 A
>> Inserting city A (0,1728)
 
insert 0 1729 A
>> Inserting city A (0,1729)
 
insert 0 1730 A
>> Inserting city A (0,1730)
 
insert 0 1731 A
>> Inserting city A (0,1731)
 
insert 0 1732 A
>> Inserting city A (0,1732)
 
insert 0 1733 A
>> Inserting city A (0,1733)
 
insert 0 1734 A
>> Inserting city A (0,1734)
 
insert 0 1735 A
>> Inserting city A (0,1735)
 
insert 0 1736 A
>> Inserting city A (0,1736)
 
insert 0 1737 A
>> Inserting city A (0,1737)
 
insert 0 1738 A
>> Inserting city A (0,1738)
 
insert 0 1739 A
>> Inserting city A (0,1739)
 
insert 0 1740 A
>> Inserting city A (0,1740)
 
insert 0 1741 A
>> Inserting city A (0,1741)
 
insert 0 1742 A
>> Inserting city A (0,1742)
 
insert 0 1743 A
>> Inserting city A (0,1743)
 
insert 0 1744 A
>> Inserting city A (0,1744)
 
insert 0 1745 A
>> Inserting city A (0,1745)
 
insert 0 1746 A
>> Inserting city A (0,1746)
 
insert 0 1747 A
>> Inserting city A (0,1747)
 
insert 0 1748 A
>> Inserting city A (0,1748)
 
insert 0 1749 A
>> Inserting city A (0,1749)
 
insert 0 1750 A
>> Inserting city A (0,1750)
 
insert 0 1751 A
>> Inserting city A (0,1751)
 
insert 0 1752 A
>> Inserting city A (0,1752)
 
insert 0 1753 A
>> Inserting city A (0,1753)
 
insert 0 1754 A
>> Inserting city A (0,1754)
 
insert 0 1755 A
>> Inserting city A (0,1755)
 
insert 0 1756 A
>> Inserting city A (0,1756)
 
insert 0 1757 A
>> Inserting city A (0,1757)
 
insert 0 1758 A
>> Inserting city A (0,1758)
 
insert 0 1759 A
>> Inserting city A (0,1759)
 
insert 0 1760 A
>> Inserting city A (0,1760)
 
insert 0 1761 A
>> Inserting city A (0,1761)
 
insert 0 1762 A
>> Inserting city A (0,1762)
 
insert 0 1763 A
>> Inserting city A (0,1763)
 
insert 0 1764 A
>> Inserting city A (0,1764)
 
insert 0 1765 A
>> Inserting city A (0,1765)
 
insert 0 1766 A
>> Inserting city A (0,1766)
 
insert 0 1767 A
>> Inserting city A (0,1767)
 
insert 0 1768 A
>> Inserting city A (0,1768)
 
insert 0 1769 A
>> Inserting city A (0,1769)
 
insert 0 1770 A
>> Inserting city A (0,1770)
 
insert 0 1771 A
>> Inserting city A (0,1771)
 
insert 0 1772 A
>> Inserting city A (0,1772)
 
insert 0 1773 A
>> Inserting city A (0,1773)
 
insert 0 1774 A
>> Inserting city A (0,1774)
 
insert 0 1775 A
>> Inserting city A (0,1775)
 
insert 0 1776 A
>> Inserting city A (0,1776)
 
insert 0 1777 A
>> Inserting city A (0,1777)
 
insert 0 1778 A
>> Inserting city A (0,1778)
 
insert 0 1779 A
>> Inserting city A (0,1779)
 
insert 0 1780 A
>> Inserting city A (0,1780)
 
insert 0 1781 A
>> Inserting city A (0,1781)
 
insert 0 1782 A
>> Inserting city A (0,1782)
 
insert 0 1783 A
>> Inserting city A (0,1783)
 
insert 0 1784 A
>> Inserting city A (0,1784)
 
insert 0 1785 A
>> Inserting city A (0,1785)
 
insert 0 1786 A
>> Inserting city A (0,1786)
 
insert 0 1787 A
>> Inserting city A (0,1787)
 
insert 0 1788 A
>> Inserting city A (0,1788)
 
insert 0 1789 A
>> Inserting city A (0,1789)
 
insert 0 1790 A
>> Inserting city A (0,1790)
 
insert 0 1791 A
>> Inserting city A (0,1791)
 
insert 0 1792 A
>> Inserting city A (0,1792)
 
insert 0 1793 A
>> Inserting city A (0,1793)
 
insert 0 1794 A
>> Inserting city A (0,1794)
 
insert 0 1795 A
>> Inserting city A (0,1795)
 
insert 0 1796 A
>> Inserting city A (0,1796)
 
insert 0 1797 A
>> Inserting city A (0,1797)
 
insert 0 1798 A
>> Inserting city A (0,1798)
 
insert 0 1799 A
>> Inserting city A (0,1799)
 
insert 0 1800 A
>> Inserting city A (0,1800)
 
insert 0 1801 A
>> Inserting city A (0,1801)
 
insert 0 1802 A
>> Inserting city A (0,1802)
 
insert 0 1803 A
>> Inserting city A (0,1803)
 
insert 0 1804 A
>> Inserting city A (0,1804)
 
insert 0 1805 A
>> Inserting city A (0,1805)
 
insert 0 1806 A
>> Inserting city A (0,1806)
 
insert 0 1807 A
>> Inserting city A (0,1807)
 
insert 0 1808 A
>> Inserting city A (0,1808)
 
insert 0 1809 A
>> Inserting city A (0,1809)
 
insert 0 1810 A
>> Inserting city A (0,1810)
 
insert 0 1811 A
>> Inserting city A (0,1811)
 
insert 0 1812 A
>> Inserting city A (0,1812)
 
insert 0 1813 A
>> Inserting city A (0,1813)
 
insert 0 1814 A
>> Inserting city A (0,1814)
 
insert 0 1815 A
>> Inserting city A (0,1815)
 
insert 0 1816 A
>> Inserting city A (0,1816)
 
insert 0 1817 A
>> Inserting city A (0,1817)
 
insert 0 1818 A
>> Inserting city A (0,1818)
 
insert 0 1819 A
>> Inserting city A (0,1819)
 
insert 0 1820 A
>> Inserting city A (0,1820)
 
insert 0 1821 A
>> Inserting city A (0,1821)
 
insert 0 1822 A
>> Inserting city A (0,1822)
 
insert 0 1823 A
>> Inserting city A (0,1823)
 
insert 0 1824 A
>> Inserting city A (0,1824)
 
insert 0 1825 A
>> Inserting city A (0,1825)
 
insert 0 1826 A
>> Inserting city A (0,1826)
 
insert 0 1827 A
>> Inserting city A (0,1827)
 
insert 0 1828 A
>> Inserting city A (0,1828)
 
insert 0 1829 A
>> Inserting city A (0,1829)
 
insert 0 1830 A
>> Inserting city A (0,1830)
 
insert 0 1831 A
>> Inserting city A (0,1831)
 
insert 0 1832 A
>> Inserting city A (0,1832)
 
insert 0 1833 A
>> Inserting city A (0,1833)
 
insert 0 1834 A
>> Inserting city A (0,1834)
 
insert 0 1835 A
>> Inserting city A (0,1835)
 
insert 0 1836 A
>> Inserting city A (0,1836)
 
insert 0 1837 A
>> Inserting city A (0,1837)
 
insert 0 1838 A
>> Inserting city A (0,1838)
 
insert 0 1839 A
>> Inserting city A (0,1839)
 
insert 0 1840 A
>> Inserting city A (0,1840)
 
insert 0 1841 A
>> Inserting city A (0,1841)
 
insert 0 1842 A
>> Inserting city A (0,1842)
 
insert 0 1843 A
>> Inserting city A (0,1843)
 
insert 0 1844 A
>> Inserting city A (0,1844)
 
insert 0 1845 A
>> Inserting city A (0,1845)
 
insert 0 1846 A
>> Inserting city A (0,1846)
 
insert 0 1847 A
>> Inserting city A (0,1847)
 
insert 0 1848 A
>> Inserting city A (0,1848)
 
insert 0 1849 A
>> Inserting city A (0,1849)
 
insert 0 1850 A
>> Inserting city A (0,1850)
 
insert 0 1851 A
>> Inserting city A (0,1851)
 
insert 0 1852 A
>> Inserting city A (0,1852)
 
insert 0 1853 A
>> Inserting city A (0,1853)
 
insert 0 1854 A
>> Inserting city A (0,1854)
 
insert 0 1855 A
>> Inserting city A (0,1855)
 
insert 0 1856 A
>> Inserting city A (0,1856)
 
insert 0 1857 A
>> Inserting city A (0,1857)
 
insert 0 1858 A
>> Inserting city A (0,1858)
 
insert 0 1859 A
>> Inserting city A (0,1859)
 
insert 0 1860 A
>> Inserting city A (0,1860)
 
insert 0 1861 A
>> Inserting city A (0,1861)
 
insert 0 1862 A
>> Inserting city A (0,1862)
 
insert 0 1863 A
>> Inserting city A (0,1863)
 
insert 0 1864 A
>> Inserting city A (0,1864)
 
insert 0 1865 A
>> Inserting city A (0,1865)
 
insert 0 1866 A
>> Inserting city A (0,1866)
 
insert 0 1867 A
>> Inserting city A (0,1867)
 
insert 0 1868 A
>> Inserting city A (0,1868)
 
insert 0 1869 A
>> Inserting city A (0,1869)
 
insert 0 1870 A
>> Inserting city A (0,1870)
 
insert 0 1871 A
>> Inserting city A (0,1871)
 
insert 0 1872 A
>> Inserting city A (0,1872)
 
insert 0 1873 A
>> Inserting city A (0,1873)
 
insert 0 1874 A
>> Inserting city A (0,1874)
 
insert 0 1875 A
>> Inserting city A (0,1875)
 
insert 0 1876 A
>> Inserting city A (0,1876)
 
insert 0 1877 A
>> Inserting city A (0,1877)
 
insert 0 1878 A
>> Inserting city A (0,1878)
 
insert 0 1879 A
>> Inserting city A (0,1879)
 
insert 0 1880 A
>> Inserting city A (0,1880)
 
insert 0 1881 A
>> Inserting city A (0,1881)
 
insert 0 1882 A
>> Inserting city A (0,1882)
 
insert 0 1883 A
>> Inserting city A (0,1883)
 
insert 0 1884 A
>> Inserting city A (0,1884)
 
insert 0 1885 A
>> Inserting city A (0,1885)
 
insert 0 1886 A
>> Inserting city A (0,1886)
 
insert 0 1887 A
>> Inserting city A (0,1887)
 
insert 0 1888 A
>> Inserting city A (0,1888)
 
insert 0 1889 A
>> Inserting city A (0,1889)
 
insert 0 1890 A
>> Inserting city A (0,1890)
 
insert 0 1891 A
>> Inserting city A (0,1891)
 
insert 0 1892 A
>> Inserting city A (0,1892)
 
insert 0 1893 A
>> Inserting city A (0,1893)
 
insert 0 1894 A
>> Inserting city A (0,1894)
 
insert 0 1895 A
>> Inserting city A (0,1895)
 
insert 0 1896 A
>> Inserting city A (0,1896)
 
insert 0 1897 A
>> Inserting city A (0,1897)
 
insert 0 1898 A
>> Inserting city A (0,1898)
 
insert 0 1899 A
>> Inserting city A (0,1899)
 
insert 0 1900 A
>> Inserting city A (0,1900)
 
insert 0 1901 A
>> Inserting city A (0,1901)
 
insert 0 1902 A
>> Inserting city A (0,1902)
 
insert 0 1903 A
>> Inserting city A (0,1903)
 
insert 0 1904 A
>> Inserting city A (0,1904)
 
insert 0 1905 A
>> Inserting city A (0,1905)
 
insert 0 1906 A
>> Inserting city A (0,1906)
 
insert 0 1907 A
>> Inserting city A (0,1907)
 
insert 0 1908 A
>> Inserting city A (0,1908)
 
insert 0 1909 A
>> Inserting city A (0,1909)
 
insert 0 1910 A
>> Inserting city A (0,1910)
 
insert 0 1911 A
>> Inserting city A (0,1911)
 
insert 0 1912 A
>> Inserting city A (0,1912)
 
insert 0 1913 A
>> Inserting city A (0,1913)
 
insert 0 1914 A
>> Inserting city A (0,1914)
 
insert 0 1915 A
>> Inserting city A (0,1915)
 
insert 0 1916 A
>> Inserting city A (0,1916)
 
insert 0 1917 A
>> Inserting city A (0,1917)
 
insert 0 1918 A
>> Inserting city A (0,1918)
 
insert 0 1919 A
>> Inserting city A (0,1919)
 
insert 0 1920 A
>> Inserting city A (0,1920)
 
insert 0 1921 A
>> Inserting city A (0,1921)
 
insert 0 1922 A
>> Inserting city A (0,1922)
 
insert 0 1923 A
>> Inserting city A (0,1923)
 
insert 0 1924 A
>> Inserting city A (0,1924)
 
insert 0 1925 A
>> Inserting city A (0,1925)
 
insert 0 1926 A
>> Inserting city A (0,1926)
 
insert 0 1927 A
>> Inserting city A (0,1927)
 
insert 0 1928 A
>> Inserting city A (0,1928)
 
insert 0 1929 A
>> Inserting city A (0,1929)
 
insert 0 1930 A
>> Inserting city A (0,1930)
 
insert 0 1931 A
>> Inserting city A (0,1931)
 
insert 0 1932 A
>> Inserting city A (0,1932)
 
insert 0 1933 A
>> Inserting city A (0,1933)
 
insert 0 1934 A
>> Inserting city A (0,1934)
 
insert 0 1935 A
>> Inserting city A (0,1935)
 
insert 0 1936 A
>> Inserting city A (0,1936)
 
insert 0 1937 A
>> Inserting city A (0,1937)
 
insert 0 1938 A
>> Inserting city A (0,1938)
 
insert 0 1939 A
>> Inserting city A (0,1939)
 
insert 0 1940 A
>> Inserting city A (0,1940)
 
insert 0 1941 A
>> Inserting city A (0,1941)
 
insert 0 1942 A
>> Inserting city A (0,1942)
 
insert 0 1943 A
>> Inserting city A (0,1943)
 
insert 0 1944 A
>> Inserting city A (0,1944)
 
insert 0 1945 A
>> Inserting city A (0,1945)
 
insert 0 1946 A
>> Inserting city A (0,1946)
 
insert 0 1947 A
>> Inserting city A (0,1947)
 
insert 0 1948 A
>> Inserting city A (0,1948)
 
insert 0 1949 A
>> Inserting city A (0,1949)
 
insert 0 1950 A
>> Inserting city A (0,1950)
 
insert 0 1951 A
>> Inserting city A (0,1951)
 
insert 0 1952 A
>> Inserting city A (0,1952)
 
insert 0 1953 A
>> Inserting city A (0,1953)
 
insert 0 1954 A
>> Inserting city A (0,1954)
 
insert 0 1955 A
>> Inserting city A (0,1955)
 
insert 0 1956 A
>> Inserting city A (0,1956)
 
insert 0 1957 A
>> Inserting city A (0,1957)
 
insert 0 1958 A
>> Inserting city A (0,1958)
 
insert 0 1959 A
>> Inserting city A (0,1959)
 
insert 0 1960 A
>> Inserting city A (0,1960)
 
insert 0 1961 A
>> Inserting city A (0,1961)
 
insert 0 1962 A
>> Inserting city A (0,1962)
 
insert 0 1963 A
>> Inserting city A (0,1963)
 
insert 0 1964 A
>> Inserting city A (0,1964)
 
insert 0 1965 A
>> Inserting city A (0,1965)
 
insert 0 1966 A
>> Inserting city A (0,1966)
 
insert 0 1967 A
>> Inserting city A (0,1967)
 
insert 0 1968 A
>> Inserting city A (0,1968)
 
insert 0 1969 A
>> Inserting city A (0,1969)
 
insert 0 1970 A
>> Inserting city A (0,1970)
 
insert 0 1971 A
>> Inserting city A (0,1971)
 
insert 0 1972 A
>> Inserting city A (0,1972)
 
insert 0 1973 A
>> Inserting city A (0,1973)
 
insert 0 1974 A
>> Inserting city A (0,1974)
 
insert 0 1975 A
>> Inserting city A (0,1975)
 
insert 0 1976 A
>> Inserting city A (0,1976)
 
insert 0 1977 A
>> Inserting city A (0,1977)
 
insert 0 1978 A
>> Inserting city A (0,1978)
 
insert 0 1979 A
>> Inserting city A (0,1979)
 
insert 0 1980 A
>> Inserting city A (0,1980)
 
insert 0 1981 A
>> Inserting city A (0,1981)
 
insert 0 1982 A
>> Inserting city A (0,1982)
 
insert 0 1983 A
>> Inserting city A (0,1983)
 
insert 0 1984 A
>> Inserting city A (0,1984)
 
insert 0 1985 A
>> Inserting city A (0,1985)
 
insert 0 1986 A
>> Inserting city A (0,1986)
 
insert 0 1987 A
>> Inserting city A (0,1987)
 
insert 0 1988 A
>> Inserting city A (0,1988)
 
insert 0 1989 A
>> Inserting city A (0,1989)
 
insert 0 1990 A
>> Inserting city A (0,1990)
 
insert 0 1991 A
>> Inserting city A (0,1991)
 
insert 0 1992 A
>> Inserting city A (0,1992)
 
insert 0 1993 A
>> Inserting city A (0,1993)
 
insert 0 1994 A
>> Inserting city A (0,1994)
 
insert 0 1995 A
>> Inserting city A (0,1995)
 
insert 0 1996 A
>> Inserting city A (0,1996)
 
insert 0 1997 A
>> Inserting city A (0,1997)
 
insert 0 1998 A
>> Inserting city A (0,1998)
 
insert 0 1999 A
>> Inserting city A (0,1999)
 
insert 0 2000 A
>> Inserting city A (0,2000)
 
insert 0 2001 A
>> Inserting city A (0,2001)
 
insert 0 2002 A
>> Inserting city A (0,2002)
 
insert 0 2003 A
>> Inserting city A (0,2003)
 
insert 0 2004 A
>> Inserting city A (0,2004)
 
insert 0 2005 A
>> Inserting city A (0,2005)
 
insert 0 2006 A
>> Inserting city A (0,2006)
 
insert 0 2007 A
>> Inserting city A (0,2007)
 
insert 0 2008 A
>> Inserting city A (0,2008)
 
insert 0 2009 A
>> Inserting city A (0,2009)
 
insert 0 2010 A
>> Inserting city A (0,2010)
 
insert 0 2011 A
>> Inserting city A (0,2011)
 
insert 0 2012 A
>> Inserting city A (0,2012)
 
insert 0 2013 A
>> Inserting city A (0,2013)
 
insert 0 2014 A
>> Inserting city A (0,2014)
 
insert 0 2015 A
>> Inserting city A (0,2015)
 
insert 0 2016 A
>> Inserting city A (0,2016)
 
insert 0 2017 A
>> Inserting city A (0,2017)
 
insert 0 2018 A
>> Inserting city A (0,2018)
 
insert 0 2019 A
>> Inserting city A (0,2019)
 
insert 0 2020 A
>> Inserting city A (0,2020)
 
insert 0 2021 A
>> Inserting city A (0,2021)
 
insert 0 2022 A
>> Inserting city A (0,2022)
 
insert 0 2023 A
>> Inserting city A (0,2023)
 
insert 0 2024 A
>> Inserting city A (0,2024)
 
insert 0 2025 A
>> Inserting city A (0,2025)
 
insert 0 2026 A
>> Inserting city A (0,2026)
 
insert 0 2027 A
>> Inserting city A (0,2027)
 
insert 0 2028 A
>> Inserting city A (0,2028)
 
insert 0 2029 A
>> Inserting city A (0,2029)
 
insert 0 2030 A
>> Inserting city A (0,2030)
 
insert 0 2031 A
>> Inserting city A (0,2031)
 
insert 0 2032 A
>> Inserting city A (0,2032)
 
insert 0 2033 A
>> Inserting city A (0,2033)
 
insert 0 2034 A
>> Inserting city A (0,2034)
 
insert 0 2035 A
>> Inserting city A (0,2035)
 
insert 0 2036 A
>> Inserting city A (0,2036)
 
insert 0 2037 A
>> Inserting city A (0,2037)
 
insert 0 2038 A
>> Inserting city A (0,2038)
 
insert 0 2039 A
>> Inserting city A (0,2039)
 
insert 0 2040 A
>> Inserting city A (0,2040)
 
insert 0 2041 A
>> Inserting city A (0,2041)
 
insert 0 2042 A
>> Inserting city A (0,2042)
 
insert 0 2043 A
>> Inserting city A (0,2043)
 
insert 0 2044 A
>> Inserting city A (0,2044)
 
insert 0 2045 A
>> Inserting city A (0,2045)
 
insert 0 2046 A
>> Inserting city A (0,2046)
 
insert 0 2047 A
>> Inserting city A (0,2047)
 
insert 0 2048 A
>> Inserting city A (0,2048)
 
insert 0 2049 A
>> Inserting city A (0,2049)
 
insert 0 2050 A
>> Inserting city A (0,2050)
 
insert 0 2051 A
>> Inserting city A (0,2051)
 
insert 0 2052 A
>> Inserting city A (0,2052)
 
insert 0 2053 A
>> Inserting city A (0,2053)
 
insert 0 2054 A
>> Inserting city A (0,2054)
 
insert 0 2055 A
>> Inserting city A (0,2055)
 
insert 0 2056 A
>> Inserting city A (0,2056)
 
insert 0 2057 A
>> Inserting city A (0,2057)
 
insert 0 2058 A
>> Inserting city A (0,2058)
 
insert 0 2059 A
>> Inserting city A (0,2059)
 
insert 0 2060 A
>> Inserting city A (0,2060)
 
insert 0 2061 A
>> Inserting city A (0,2061)
 
insert 0 2062 A
>> Inserting city A (0,2062)
 
insert 0 2063 A
>> Inserting city A (0,2063)
 
insert 0 2064 A
>> Inserting city A (0,2064)
 
insert 0 2065 A
>> Inserting city A (0,2065)
 
insert 0 2066 A
>> Inserting city A (0,2066)
 
insert 0 2067 A
>> Inserting city A (0,2067)
 
insert 0 2068 A
>> Inserting city A (0,2068)
 
insert 0 2069 A
>> Inserting city A (0,2069)
 
insert 0 2070 A
>> Inserting city A (0,2070)
 
insert 0 2071 A
>> Inserting city A (0,2071)
 
insert 0 2072 A
>> Inserting city A (0,2072)
 
insert 0 2073 A
>> Inserting city A (0,2073)
 
insert 0 2074 A
>> Inserting city A (0,2074)
 
insert 0 2075 A
>> Inserting city A (0,2075)
 
insert 0 2076 A
>> Inserting city A (0,2076)
 
insert 0 2077 A
>> Inserting city A (0,2077)
 
insert 0 2078 A
>> Inserting city A (0,2078)
 
insert 0 2079 A
>> Inserting city A (0,2079)
 
insert 0 2080 A
>> Inserting city A (0,2080)
 
insert 0 2081 A
>> Inserting city A (0,2081)
 
insert 0 2082 A
>> Inserting city A (0,2082)
 
insert 0 2083 A
>> Inserting city A (0,2083)
 
insert 0 2084 A
>> Inserting city A (0,2084)
 
insert 0 2085 A
>> Inserting city A (0,2085)
 
insert 0 2086 A
>> Inserting city A (0,2086)
 
insert 0 2087 A
>> Inserting city A (0,2087)
 
insert 0 2088 A
>> Inserting city A (0,2088)
 
insert 0 2089 A
>> Inserting city A (0,2089)
 
insert 0 2090 A
>> Inserting city A (0,2090)
 
insert 0 2091 A
>> Inserting city A (0,2091)
 
insert 0 2092 A
>> Inserting city A (0,2092)
 
insert 0 2093 A
>> Inserting city A (0,2093)
 
insert 0 2094 A
>> Inserting city A (0,2094)
 
insert 0 2095 A
>> Inserting city A (0,2095)
 
insert 0 2096 A
>> Inserting city A (0,2096)
 
insert 0 2097 A
>> Inserting city A (0,2097)
 
insert 0 2098 A
>> Inserting city A (0,2098)
 
insert 0 2099 A
>> Inserting city A (0,2099)
 
insert 0 2100 A
>> Inserting city A (0,2100)
 
insert 0 2101 A
>> Inserting city A (0,2101)
 
insert 0 2102 A
>> Inserting city A (0,2102)
 
insert 0 2103 A
>> Inserting city A (0,2103)
 
insert 0 2104 A
>> Inserting city A (0,2104)
 
insert 0 2105 A
>> Inserting city A (0,2105)
 
insert 0 2106 A
>> Inserting city A (0,2106)
 
insert 0 2107 A
>> Inserting city A (0,2107)
 
insert 0 2108 A
>> Inserting city A (0,2108)
 
insert 0 2109 A
>> Inserting city A (0,2109)
 
insert 0 2110 A
>> Inserting city A (0,2110)
 
insert 0 2111 A
>> Inserting city A (0,2111)
 
insert 0 2112 A
>> Inserting city A (0,2112)
 
insert 0 2113 A
>> Inserting city A (0,2113)
 
insert 0 2114 A
>> Inserting city A (0,2114)
 
insert 0 2115 A
>> Inserting city A (0,2115)
 
insert 0 2116 A
>> Inserting city A (0,2116)
 
insert 0 2117 A
>> Inserting city A (0,2117)
 
insert 0 2118 A
>> Inserting city A (0,2118)
 
insert 0 2119 A
>> Inserting city A (0,2119)
 
insert 0 2120 A
>> Inserting city A (0,2120)
 
insert 0 2121 A
>> Inserting city A (0,2121)
 
insert 0 2122 A
>> Inserting city A (0,2122)
 
insert 0 2123 A
>> Inserting city A (0,2123)
 
insert 0 2124 A
>> Inserting city A (0,2124)
 
insert 0 2125 A
>> Inserting city A (0,2125)
 
insert 0 2126 A
>> Inserting city A (0,2126)
 
insert 0 2127 A
>> Inserting city A (0,2127)
 
insert 0 2128 A
>> Inserting city A (0,2128)
 
insert 0 2129 A
>> Inserting city A (0,2129)
 
insert 0 2130 A
>> Inserting city A (0,2130)
 
insert 0 2131 A
>> Inserting city A (0,2131)
 
insert 0 2132 A
>> Inserting city A (0,2132)
 
insert 0 2133 A
>> Inserting city A (0,2133)
 
insert 0 2134 A
>> Inserting city A (0,2134)
 
insert 0 2135 A
>> Inserting city A (0,2135)
 
insert 0 2136 A
>> Inserting city A (0,2136)
 
insert 0 2137 A
>> Inserting city A (0,2137)
 
insert 0 2138 A
>> Inserting city A (0,2138)
 
insert 0 2139 A
>> Inserting city A (0,2139)
 
insert 0 2140 A
>> Inserting city A (0,2140)
 
insert 0 2141 A
>> Inserting city A (0,2141)
 
insert 0 2142 A
>> Inserting city A (0,2142)
 
insert 0 2143 A
>> Inserting city A (0,2143)
 
insert 0 2144 A
>> Inserting city A (0,2144)
 
insert 0 2145 A
>> Inserting city A (0,2145)
 
insert 0 2146 A
>> Inserting city A (0,2146)
 
insert 0 2147 A
>> Inserting city A (0,2147)
 
insert 0 2148 A
>> Inserting city A (0,2148)
 
insert 0 2149 A
>> Inserting city A (0,2149)
 
insert 0 2150 A
>> Inserting city A (0,2150)
 
insert 0 2151 A
>> Inserting city A (0,2151)
 
insert 0 2152 A
>> Inserting city A (0,2152)
 
insert 0 2153 A
>> Inserting city A (0,2153)
 
insert 0 2154 A
>> Inserting city A (0,2154)
 
insert 0 2155 A
>> Inserting city A (0,2155)
 
insert 0 2156 A
>> Inserting city A (0,2156)
 
insert 0 2157 A
>> Inserting city A (0,2157)
 
insert 0 2158 A
>> Inserting city A (0,2158)
 
insert 0 2159 A
>> Inserting city A (0,2159)
 
insert 0 2160 A
>> Inserting city A (0,2160)
 
insert 0 2161 A
>> Inserting city A (0,2161)
 
insert 0 2162 A
>> Inserting city A (0,2162)
 
insert 0 2163 A
>> Inserting city A (0,2163)
 
insert 0 2164 A
>> Inserting city A (0,2164)
 
insert 0 2165 A
>> Inserting city A (0,2165)
 
insert 0 2166 A
>> Inserting city A (0,2166)
 
insert 0 2167 A
>> Inserting city A (0,2167)
 
insert 0 2168 A
>> Inserting city A (0,2168)
 
insert 0 2169 A
>> Inserting city A (0,2169)
 
insert 0 2170 A
>> Inserting city A (0,2170)
 
insert 0 2171 A
>> Inserting city A (0,2171)
 
insert 0 2172 A
>> Inserting city A (0,2172)
 
insert 0 2173 A
>> Inserting city A (0,2173)
 
insert 0 2174 A
>> Inserting city A (0,2174)
 
insert 0 2175 A
>> Inserting city A (0,2175)
 
insert 0 2176 A
>> Inserting city A (0,2176)
 
insert 0 2177 A
>> Inserting city A (0,2177)
 
insert 0 2178 A
>> Inserting city A (0,2178)
 
insert 0 2179 A
>> Inserting city A (0,2179)
 
insert 0 2180 A
>> Inserting city A (0,2180)
 
insert 0 2181 A
>> Inserting city A (0,2181)
 
insert 0 2182 A
>> Inserting city A (0,2182)
 
insert 0 2183 A
>> Inserting city A (0,2183)
 
insert 0 2184 A
>> Inserting city A (0,2184)
 
insert 0 2185 A
>> Inserting city A (0,2185)
 
insert 0 2186 A
>> Inserting city A (0,2186)
 
insert 0 2187 A
>> Inserting city A (0,2187)
 
insert 0 2188 A
>> Inserting city A (0,2188)
 
insert 0 2189 A
>> Inserting city A (0,2189)
 
insert 0 2190 A
>> Inserting city A (0,2190)
 
insert 0 2191 A
>> Inserting city A (0,2191)
 
insert 0 2192 A
>> Inserting city A (0,2192)
 
insert 0 2193 A
>> Inserting city A (0,2193)
 
insert 0 2194 A
>> Inserting city A (0,2194)
 
insert 0 2195 A
>> Inserting city A (0,2195)
 
insert 0 2196 A
>> Inserting city A (0,2196)
 
insert 0 2197 A
>> Inserting city A (0,2197)
 
insert 0 2198 A
>> Inserting city A (0,2198)
 
insert 0 2199 A
>> Inserting city A (0,2199)
 
insert 0 2200 A
>> Inserting city A (0,2200)
 
insert 0 2201 A
>> Inserting city A (0,2201)
 
insert 0 2202 A
>> Inserting city A (0,2202)
 
insert 0 2203 A
>> Inserting city A (0,2203)
 
insert 0 2204 A
>> Inserting city A (0,2204)
 
insert 0 2205 A
>> Inserting city A (0,2205)
 
insert 0 2206 A
>> Inserting city A (0,2206)
 
insert 0 2207 A
>> Inserting city A (0,2207)
 
insert 0 2208 A
>> Inserting city A (0,2208)
 
insert 0 2209 A
>> Inserting city A (0,2209)
 
insert 0 2210 A
>> Inserting city A (0,2210)
 
insert 0 2211 A
>> Inserting city A (0,2211)
 
insert 0 2212 A
>> Inserting city A (0,2212)
 
insert 0 2213 A
>> Inserting city A (0,2213)
 
insert 0 2214 A
>> Inserting city A (0,2214)
 
insert 0 2215 A
>> Inserting city A (0,2215)
 
insert 0 2216 A
>> Inserting city A (0,2216)
 
insert 0 2217 A
>> Inserting city A (0,2217)
 
insert 0 2218 A
>> Inserting city A (0,2218)
 
insert 0 2219 A
>> Inserting city A (0,2219)
 
insert 0 2220 A
>> Inserting city A (0,2220)
 
insert 0 2221 A
>> Inserting city A (0,2221)
 
insert 0 2222 A
>> Inserting city A (0,2222)
 
insert 0 2223 A
>> Inserting city A (0,2223)
 
insert 0 2224 A
>> Inserting city A (0,2224)
 
insert 0 2225 A
>> Inserting city A (0,2225)
 
insert 0 2226 A
>> Inserting city A (0,2226)
 
insert 0 2227 A
>> Inserting city A (0,2227)
 
insert 0 2228 A
>> Inserting city A (0,2228)
 
insert 0 2229 A
>> Inserting city A (0,2229)
 
insert 0 2230 A
>> Inserting city A (0,2230)
 
insert 0 2231 A
>> Inserting city A (0,2231)
 
insert 0 2232 A
>> Inserting city A (0,2232)
 
insert 0 2233 A
>> Inserting city A (0,2233)
 
insert 0 2234 A
>> Inserting city A (0,2234)
 
insert 0 2235 A
>> Inserting city A (0,2235)
 
insert 0 2236 A
>> Inserting city A (0,2236)
 
insert 0 2237 A
>> Inserting city A (0,2237)
 
insert 0 2238 A
>> Inserting city A (0,2238)
 
insert 0 2239 A
>> Inserting city A (0,2239)
 
insert 0 2240 A
>> Inserting city A (0,2240)
 
insert 0 2241 A
>> Inserting city A (0,2241)
 
insert 0 2242 A
>> Inserting city A (0,2242)
 
insert 0 2243 A
>> Inserting city A (0,2243)
 
insert 0 2244 A
>> Inserting city A (0,2244)
 
insert 0 2245 A
>> Inserting city A (0,2245)
 
insert 0 2246 A
>> Inserting city A (0,2246)
 
insert 0 2247 A
>> Inserting city A (0,2247)
 
insert 0 2248 A
>> Inserting city A (0,2248)
 
insert 0 2249 A
>> Inserting city A (0,2249)
 
insert 0 2250 A
>> Inserting city A (0,2250)
 
insert 0 2251 A
>> Inserting city A (0,2251)
 
insert 0 2252 A
>> Inserting city A (0,2252)
 
insert 0 2253 A
>> Inserting city A (0,2253)
 
insert 0 2254 A
>> Inserting city A (0,2254)
 
insert 0 2255 A
>> Inserting city A (0,2255)
 
insert 0 2256 A
>> Inserting city A (0,2256)
 
insert 0 2257 A
>> Inserting city A (0,2257)
 
insert 0 2258 A
>> Inserting city A (0,2258)
 
insert 0 2259 A
>> Inserting city A (0,2259)
 
insert 0 2260 A
>> Inserting city A (0,2260)
 
insert 0 2261 A
>> Inserting city A (0,2261)
 
insert 0 2262 A
>> Inserting city A (0,2262)
 
insert 0 2263 A
>> Inserting city A (0,2263)
 
insert 0 2264 A
>> Inserting city A (0,2264)
 
insert 0 2265 A
>> Inserting city A (0,2265)
 
insert 0 2266 A
>> Inserting city A (0,2266)
 
insert 0 2267 A
>> Inserting city A (0,2267)
 
insert 0 2268 A
>> Inserting city A (0,2268)
 
insert 0 2269 A
>> Inserting city A (0,2269)
 
insert 0 2270 A
>> Inserting city A (0,2270)
 
insert 0 2271 A
>> Inserting city A (0,2271)
 
insert 0 2272 A
>> Inserting city A (0,2272)
 
insert 0 2273 A
>> Inserting city A (0,2273)
 
insert 0 2274 A
>> Inserting city A (0,2274)
 
insert 0 2275 A
>> Inserting city A (0,2275)
 
insert 0 2276 A
>> Inserting city A (0,2276)
 
insert 0 2277 A
>> Inserting city A (0,2277)
 
insert 0 2278 A
>> Inserting city A (0,2278)
 
insert 0 2279 A
>> Inserting city A (0,2279)
 
insert 0 2280 A
>> Inserting city A (0,2280)
 
insert 0 2281 A
>> Inserting city A (0,2281)
 
insert 0 2282 A
>> Inserting city A (0,2282)
 
insert 0 2283 A
>> Inserting city A (0,2283)
 
insert 0 2284 A
>> Inserting city A (0,2284)
 
insert 0 2285 A
>> Inserting city A (0,2285)
 
insert 0 2286 A
>> Inserting city A (0,2286)
 
insert 0 2287 A
>> Inserting city A (0,2287)
 
insert 0 2288 A
>> Inserting city A (0,2288)
 
insert 0 2289 A
>> Inserting city A (0,2289)
 
insert 0 2290 A
>> Inserting city A (0,2290)
 
insert 0 2291 A
>> Inserting city A (0,2291)
 
insert 0 2292 A
>> Inserting city A (0,2292)
 
insert 0 2293 A
>> Inserting city A (0,2293)
 
insert 0 2294 A
>> Inserting city A (0,2294)
 
insert 0 2295 A
>> Inserting city A (0,2295)
 
insert 0 2296 A
>> Inserting city A (0,2296)
 
insert 0 2297 A
>> Inserting city A (0,2297)
 
insert 0 2298 A
>> Inserting city A (0,2298)
 
insert 0 2299 A
>> Inserting city A (0,2299)
 
insert 0 2300 A
>> Inserting city A (0,2300)
 
insert 0 2301 A
>> Inserting city A (0,2301)
 
insert 0 2302 A
>> Inserting city A (0,2302)
 
insert 0 2303 A
>> Inserting city A (0,2303)
 
insert 0 2304 A
>> Inserting city A (0,2304)
 
insert 0 2305 A
>> Inserting city A (0,2305)
 
insert 0 2306 A
>> Inserting city A (0,2306)
 
insert 0 2307 A
>> Inserting city A (0,2307)
 
insert 0 2308 A
>> Inserting city A (0,2308)
 
insert 0 2309 A
>> Inserting city A (0,2309)
 
insert 0 2310 A
>> Inserting city A (0,2310)
 
insert 0 2311 A
>> Inserting city A (0,2311)
 
insert 0 2312 A
>> Inserting city A (0,2312)
 
insert 0 2313 A
>> Inserting city A (0,2313)
 
insert 0 2314 A
>> Inserting city A (0,2314)
 
insert 0 2315 A
>> Inserting city A (0,2315)
 
insert 0 2316 A
>> Inserting city A (0,2316)
 
insert 0 2317 A
>> Inserting city A (0,2317)
 
insert 0 2318 A
>> Inserting city A (0,2318)
 
insert 0 2319 A
>> Inserting city A (0,2319)
 
insert 0 2320 A
>> Inserting city A (0,2320)
 
insert 0 2321 A
>> Inserting city A (0,2321)
 
insert 0 2322 A
>> Inserting city A (0,2322)
 
insert 0 2323 A
>> Inserting city A (0,2323)
 
insert 0 2324 A
>> Inserting city A (0,2324)
 
insert 0 2325 A
>> Inserting city A (0,2325)
 
insert 0 2326 A
>> Inserting city A (0,2326)
 
insert 0 2327 A
>> Inserting city A (0,2327)
 
insert 0 2328 A
>> Inserting city A (0,2328)
 
insert 0 2329 A
>> Inserting city A (0,2329)
 
insert 0 2330 A
>> Inserting city A (0,2330)
 
insert 0 2331 A
>> Inserting city A (0,2331)
 
insert 0 2332 A
>> Inserting city A (0,2332)
 
insert 0 2333 A
>> Inserting city A (0,2333)
 
insert 0 2334 A
>> Inserting city A (0,2334)
 
insert 0 2335 A
>> Inserting city A (0,2335)
 
insert 0 2336 A
>> Inserting city A (0,2336)
 
insert 0 2337 A
>> Inserting city A (0,2337)
 
insert 0 2338 A
>> Inserting city A (0,2338)
 
insert 0 2339 A
>> Inserting city A (0,2339)
 
insert 0 2340 A
>> Inserting city A (0,2340)
 
insert 0 2341 A
>> Inserting city A (0,2341)
 
insert 0 2342 A
>> Inserting city A (0,2342)
 
insert 0 2343 A
>> Inserting city A (0,2343)
 
insert 0 2344 A
>> Inserting city A (0,2344)
 
insert 0 2345 A
>> Inserting city A (0,2345)
 
insert 0 2346 A
>> Inserting city A (0,2346)
 
insert 0 2347 A
>> Inserting city A (0,2347)
 
insert 0 2348 A
>> Inserting city A (0,2348)
 
insert 0 2349 A
>> Inserting city A (0,2349)
 
insert 0 2350 A
>> Inserting city A (0,2350)
 
insert 0 2351 A
>> Inserting city A (0,2351)
 
insert 0 2352 A
>> Inserting city A (0,2352)
 
insert 0 2353 A
>> Inserting city A (0,2353)
 
insert 0 2354 A
>> Inserting city A (0,2354)
 
insert 0 2355 A
>> Inserting city A (0,2355)
 
insert 0 2356 A
>> Inserting city A (0,2356)
 
insert 0 2357 A
>> Inserting city A (0,2357)
 
insert 0 2358 A
>> Inserting city A (0,2358)
 
insert 0 2359 A
>> Inserting city A (0,2359)
 
insert 0 2360 A
>> Inserting city A (0,2360)
 
insert 0 2361 A
>> Inserting city A (0,2361)
 
insert 0 2362 A
>> Inserting city A (0,2362)
 
insert 0 2363 A
>> Inserting city A (0,2363)
 
insert 0 2364 A
>> Inserting city A (0,2364)
 
insert 0 2365 A
>> Inserting city A (0,2365)
 
insert 0 2366 A
>> Inserting city A (0,2366)
 
insert 0 2367 A
>> Inserting city A (0,2367)
 
insert 0 2368 A
>> Inserting city A (0,2368)
 
insert 0 2369 A
>> Inserting city A (0,2369)
 
insert 0 2370 A
>> Inserting city A (0,2370)
 
insert 0 2371 A
>> Inserting city A (0,2371)
 
insert 0 2372 A
>> Inserting city A (0,2372)
 
insert 0 2373 A
>> Inserting city A (0,2373)
 
insert 0 2374 A
>> Inserting city A (0,2374)
 
insert 0 2375 A
>> Inserting city A (0,2375)
 
insert 0 2376 A
>> Inserting city A (0,2376)
 
insert 0 2377 A
>> Inserting city A (0,2377)
 
insert 0 2378 A
>> Inserting city A (0,2378)
 
insert 0 2379 A
>> Inserting city A (0,2379)
 
insert 0 2380 A
>> Inserting city A (0,2380)
 
insert 0 2381 A
>> Inserting city A (0,2381)
 
insert 0 2382 A
>> Inserting city A (0,2382)
 
insert 0 2383 A
>> Inserting city A (0,2383)
 
insert 0 2384 A
>> Inserting city A (0,2384)
 
insert 0 2385 A
>> Inserting city A (0,2385)
 
insert 0 2386 A
>> Inserting city A (0,2386)
 
insert 0 2387 A
>> Inserting city A (0,2387)
 
insert 0 2388 A
>> Inserting city A (0,2388)
 
insert 0 2389 A
>> Inserting city A (0,2389)
 
insert 0 2390 A
>> Inserting city A (0,2390)
 
insert 0 2391 A
>> Inserting city A (0,2391)
 
insert 0 2392 A
>> Inserting city A (0,2392)
 
insert 0 2393 A
>> Inserting city A (0,2393)
 
insert 0 2394 A
>> Inserting city A (0,2394)
 
insert 0 2395 A
>> Inserting city A (0,2395)
 
insert 0 2396 A
>> Inserting city A (0,2396)
 
insert 0 2397 A
>> Inserting city A (0,2397)
 
insert 0 2398 A
>> Inserting city A (0,2398)
 
insert 0 2399 A
>> Inserting city A (0,2399)
 
insert 0 2400 A
>> Inserting city A (0,2400)
 
insert 0 2401 A
>> Inserting city A (0,2401)
 
insert 0 2402 A
>> Inserting city A (0,2402)
 
insert 0 2403 A
>> Inserting city A (0,2403)
 
insert 0 2404 A
>> Inserting city A (0,2404)
 
insert 0 2405 A
>> Inserting city A (0,2405)
 
insert 0 2406 A
>> Inserting city A (0,2406)
 
insert 0 2407 A
>> Inserting city A (0,2407)
 
insert 0 2408 A
>> Inserting city A (0,2408)
 
insert 0 2409 A
>> Inserting city A (0,2409)
 
insert 0 2410 A
>> Inserting city A (0,2410)
 
insert 0 2411 A
>> Inserting city A (0,2411)
 
insert 0 2412 A
>> Inserting city A (0,2412)
 
insert 0 2413 A
>> Inserting city A (0,2413)
 
insert 0 2414 A
>> Inserting city A (0,2414)
 
insert 0 2415 A
>> Inserting city A (0,2415)
 
insert 0 2416 A
>> Inserting city A (0,2416)
 
insert 0 2417 A
>> Inserting city A (0,2417)
 
insert 0 2418 A
>> Inserting city A (0,2418)
 
insert 0 2419 A
>> Inserting city A (0,2419)
 
insert 0 2420 A
>> Inserting city A (0,2420)
 
insert 0 2421 A
>> Inserting city A (0,2421)
 
insert 0 2422 A
>> Inserting city A (0,2422)
 
insert 0 2423 A
>> Inserting city A (0,2423)
 
insert 0 2424 A
>> Inserting city A (0,2424)
 
insert 0 2425 A
>> Inserting city A (0,2425)
 
insert 0 2426 A
>> Inserting city A (0,2426)
 
insert 0 2427 A
>> Inserting city A (0,2427)
 
insert 0 2428 A
>> Inserting city A (0,2428)
 
insert 0 2429 A
>> Inserting city A (0,2429)
 
insert 0 2430 A
>> Inserting city A (0,2430)
 
insert 0 2431 A
>> Inserting city A (0,2431)
 
insert 0 2432 A
>> Inserting city A (0,2432)
 
insert 0 2433 A
>> Inserting city A (0,2433)
 
insert 0 2434 A
>> Inserting city A (0,2434)
 
insert 0 2435 A
>> Inserting city A (0,2435)
 
insert 0 2436 A
>> Inserting city A (0,2436)
 
insert 0 2437 A
>> Inserting city A (0,2437)
 
insert 0 2438 A
>> Inserting city A (0,2438)
 
insert 0 2439 A
>> Inserting city A (0,2439)
 
insert 0 2440 A
>> Inserting city A (0,2440)
 
insert 0 2441 A
>> Inserting city A (0,2441)
 
insert 0 2442 A
>> Inserting city A (0,2442)
 
insert 0 2443 A
>> Inserting city A (0,2443)
 
insert 0 2444 A
>> Inserting city A (0,2444)
 
insert 0 2445 A
>> Inserting city A (0,2445)
 
insert 0 2446 A
>> Inserting city A (0,2446)
 
insert 0 2447 A
>> Inserting city A (0,2447)
 
insert 0 2448 A
>> Inserting city A (0,2448)
 
insert 0 2449 A
>> Inserting city A (0,2449)
 
insert 0 2450 A
>> Inserting city A (0,2450)
 
insert 0 2451 A
>> Inserting city A (0,2451)
 
insert 0 2452 A
>> Inserting city A (0,2452)
 
insert 0 2453 A
>> Inserting city A (0,2453)
 
insert 0 2454 A
>> Inserting city A (0,2454)
 
insert 0 2455 A
>> Inserting city A (0,2455)
 
insert 0 2456 A
>> Inserting city A (0,2456)
 
insert 0 2457 A
>> Inserting city A (0,2457)
 
insert 0 2458 A
>> Inserting city A (0,2458)
 
insert 0 2459 A
>> Inserting city A (0,2459)
 
insert 0 2460 A
>> Inserting city A (0,2460)
 
insert 0 2461 A
>> Inserting city A (0,2461)
 
insert 0 2462 A
>> Inserting city A (0,2462)
 
insert 0 2463 A
>> Inserting city A (0,2463)
 
insert 0 2464 A
>> Inserting city A (0,2464)
 
insert 0 2465 A
>> Inserting city A (0,2465)
 
insert 0 2466 A
>> Inserting city A (0,2466)
 
insert 0 2467 A
>> Inserting city A (0,2467)
 
insert 0 2468 A
>> Inserting city A (0,2468)
 
insert 0 2469 A
>> Inserting city A (0,2469)
 
insert 0 2470 A
>> Inserting city A (0,2470)
 
insert 0 2471 A
>> Inserting city A (0,2471)
 
insert 0 2472 A
>> Inserting city A (0,2472)
 
insert 0 2473 A
>> Inserting city A (0,2473)
 
insert 0 2474 A
>> Inserting city A (0,2474)
 
insert 0 2475 A
>> Inserting city A (0,2475)
 
insert 0 2476 A
>> Inserting city A (0,2476)
 
insert 0 2477 A
>> Inserting city A (0,2477)
 
insert 0 2478 A
>> Inserting city A (0,2478)
 
insert 0 2479 A
>> Inserting city A (0,2479)
 
insert 0 2480 A
>> Inserting city A (0,2480)
 
insert 0 2481 A
>> Inserting city A (0,2481)
 
insert 0 2482 A
>> Inserting city A (0,2482)
 
insert 0 2483 A
>> Inserting city A (0,2483)
 
insert 0 2484 A
>> Inserting city A (0,2484)
 
insert 0 2485 A
>> Inserting city A (0,2485)
 
insert 0 2486 A
>> Inserting city A (0,2486)
 
insert 0 2487 A
>> Inserting city A (0,2487)
 
insert 0 2488 A
>> Inserting city A (0,2488)
 
insert 0 2489 A
>> Inserting city A (0,2489)
 
insert 0 2490 A
>> Inserting city A (0,2490)
 
insert 0 2491 A
>> Inserting city A (0,2491)
 
insert 0 2492 A
>> Inserting city A (0,2492)
 
insert 0 2493 A
>> Inserting city A (0,2493)
 
insert 0 2494 A
>> Inserting city A (0,2494)
 
insert 0 2495 A
>> Inserting city A (0,2495)
 
insert 0 2496 A
>> Inserting city A (0,2496)
 
insert 0 2497 A
>> Inserting city A (0,2497)
 
insert 0 2498 A
>> Inserting city A (0,2498)
 
insert 0 2499 A
>> Inserting city A (0,2499)
 
insert 0 2500 A
>> Inserting city A (0,2500)
 
insert 0 2501 A
>> Inserting city A (0,2501)
 
insert 0 2502 A
>> Inserting city A (0,2502)
 
insert 0 2503 A
>> Inserting city A (0,2503)
 
insert 0 2504 A
>> Inserting city A (0,2504)
 
insert 0 2505 A
>> Inserting city A (0,2505)
 
insert 0 2506 A
>> Inserting city A (0,2506)
 
insert 0 2507 A
>> Inserting city A (0,2507)
 
insert 0 2508 A
>> Inserting city A (0,2508)
 
insert 0 2509 A
>> Inserting city A (0,2509)
 
insert 0 2510 A
>> Inserting city A (0,2510)
 
insert 0 2511 A
>> Inserting city A (0,2511)
 
insert 0 2512 A
>> Inserting city A (0,2512)
 
insert 0 2513 A
>> Inserting city A (0,2513)
 
insert 0 2514 A
>> Inserting city A (0,2514)
 
insert 0 2515 A
>> Inserting city A (0,2515)
 
insert 0 2516 A
>> Inserting city A (0,2516)
 
insert 0 2517 A
>> Inserting city A (0,2517)
 
insert 0 2518 A
>> Inserting city A (0,2518)
 
insert 0 2519 A
>> Inserting city A (0,2519)
 
insert 0 2520 A
>> Inserting city A (0,2520)
 
insert 0 2521 A
>> Inserting city A (0,2521)
 
insert 0 2522 A
>> Inserting city A (0,2522)
 
insert 0 2523 A
>> Inserting city A (0,2523)
 
insert 0 2524 A
>> Inserting city A (0,2524)
 
insert 0 2525 A
>> Inserting city A (0,2525)
 
insert 0 2526 A
>> Inserting city A (0,2526)
 
insert 0 2527 A
>> Inserting city A (0,2527)
 
insert 0 2528 A
>> Inserting city A (0,2528)
 
insert 0 2529 A
>> Inserting city A (0,2529)
 
insert 0 2530 A
>> Inserting city A (0,2530)
 
insert 0 2531 A
>> Inserting city A (0,2531)
 
insert 0 2532 A
>> Inserting city A (0,2532)
 
insert 0 2533 A
>> Inserting city A (0,2533)
 
insert 0 2534 A
>> Inserting city A (0,2534)
 
insert 0 2535 A
>> Inserting city A (0,2535)
 
insert 0 2536 A
>> Inserting city A (0,2536)
 
insert 0 2537 A
>> Inserting city A (0,2537)
 
insert 0 2538 A
>> Inserting city A (0,2538)
 
insert 0 2539 A
>> Inserting city A (0,2539)
 
insert 0 2540 A
>> Inserting city A (0,2540)
 
insert 0 2541 A
>> Inserting city A (0,2541)
 
insert 0 2542 A
>> Inserting city A (0,2542)
 
insert 0 2543 A
>> Inserting city A (0,2543)
 
insert 0 2544 A
>> Inserting city A (0,2544)
 
insert 0 2545 A
>> Inserting city A (0,2545)
 
insert 0 2546 A
>> Inserting city A (0,2546)
 
insert 0 2547 A
>> Inserting city A (0,2547)
 
insert 0 2548 A
>> Inserting city A (0,2548)
 
insert 0 2549 A
>> Inserting city A (0,2549)
 
insert 0 2550 A
>> Inserting city A (0,2550)
 
insert 0 2551 A
>> Inserting city A (0,2551)
 
insert 0 2552 A
>> Inserting city A (0,2552)
 
insert 0 2553 A
>> Inserting city A (0,2553)
 
insert 0 2554 A
>> Inserting city A (0,2554)
 
insert 0 2555 A
>> Inserting city A (0,2555)
 
insert 0 2556 A
>> Inserting city A (0,2556)
 
insert 0 2557 A
>> Inserting city A (0,2557)
 
insert 0 2558 A
>> Inserting city A (0,2558)
 
insert 0 2559 A
>> Inserting city A (0,2559)
 
insert 0 2560 A
>> Inserting city A (0,2560)
 
insert 0 2561 A
>> Inserting city A (0,2561)
 
insert 0 2562 A
>> Inserting city A (0,2562)
 
insert 0 2563 A
>> Inserting city A (0,2563)
 
insert 0 2564 A
>> Inserting city A (0,2564)
 
insert 0 2565 A
>> Inserting city A (0,2565)
 
insert 0 2566 A
>> Inserting city A (0,2566)
 
insert 0 2567 A
>> Inserting city A (0,2567)
 
insert 0 2568 A
>> Inserting city A (0,2568)
 
insert 0 2569 A
>> Inserting city A (0,2569)
 
insert 0 2570 A
>> Inserting city A (0,2570)
 
insert 0 2571 A
>> Inserting city A (0,2571)
 
insert 0 2572 A
>> Inserting city A (0,2572)
 
insert 0 2573 A
>> Inserting city A (0,2573)
 
insert 0 2574 A
>> Inserting city A (0,2574)
 
insert 0 2575 A
>> Inserting city A (0,2575)
 
insert 0 2576 A
>> Inserting city A (0,2576)
 
insert 0 2577 A
>> Inserting city A (0,2577)
 
insert 0 2578 A
>> Inserting city A (0,2578)
 
insert 0 2579 A
>> Inserting city A (0,2579)
 
insert 0 2580 A
>> Inserting city A (0,2580)
 
insert 0 2581 A
>> Inserting city A (0,2581)
 
insert 0 2582 A
>> Inserting city A (0,2582)
 
insert 0 2583 A
>> Inserting city A (0,2583)
 
insert 0 2584 A
>> Inserting city A (0,2584)
 
insert 0 2585 A
>> Inserting city A (0,2585)
 
insert 0 2586 A
>> Inserting city A (0,2586)
 
insert 0 2587 A
>> Inserting city A (0,2587)
 
insert 0 2588 A
>> Inserting city A (0,2588)
 
insert 0 2589 A
>> Inserting city A (0,2589)
 
insert 0 2590 A
>> Inserting city A (0,2590)
 
insert 0 2591 A
>> Inserting city A (0,2591)
 
insert 0 2592 A
>> Inserting city A (0,2592)
 
insert 0 2593 A
>> Inserting city A (0,2593)
 
insert 0 2594 A
>> Inserting city A (0,2594)
 
insert 0 2595 A
>> Inserting city A (0,2595)
 
insert 0 2596 A
>> Inserting city A (0,2596)
 
insert 0 2597 A
>> Inserting city A (0,2597)
 
insert 0 2598 A
>> Inserting city A (0,2598)
 
insert 0 2599 A
>> Inserting city A (0,2599)
 
insert 0 2600 A
>> Inserting city A (0,2600)
 
insert 0 2601 A
>> Inserting city A (0,2601)
 
insert 0 2602 A
>> Inserting city A (0,2602)
 
insert 0 2603 A
>> Inserting city A (0,2603)
 
insert 0 2604 A
>> Inserting city A (0,2604)
 
insert 0 2605 A
>> Inserting city A (0,2605)
 
insert 0 2606 A
>> Inserting city A (0,2606)
 
insert 0 2607 A
>> Inserting city A (0,2607)
 
insert 0 2608 A
>> Inserting city A (0,2608)
 
insert 0 2609 A
>> Inserting city A (0,2609)
 
insert 0 2610 A
>> Inserting city A (0,2610)
 
insert 0 2611 A
>> Inserting city A (0,2611)
 
insert 0 2612 A
>> Inserting city A (0,2612)
 
insert 0 2613 A
>> Inserting city A (0,2613)
 
insert 0 2614 A
>> Inserting city A (0,2614)
 
insert 0 2615 A
>> Inserting city A (0,2615)
 
insert 0 2616 A
>> Inserting city A (0,2616)
 
insert 0 2617 A
>> Inserting city A (0,2617)
 
insert 0 2618 A
>> Inserting city A (0,2618)
 
insert 0 2619 A
>> Inserting city A (0,2619)
 
insert 0 2620 A
>> Inserting city A (0,2620)
 
insert 0 2621 A
>> Inserting city A (0,2621)
 
insert 0 2622 A
>> Inserting city A (0,2622)
 
insert 0 2623 A
>> Inserting city A (0,2623)
 
insert 0 2624 A
>> Inserting city A (0,2624)
 
insert 0 2625 A
>> Inserting city A (0,2625)
 
insert 0 2626 A
>> Inserting city A (0,2626)
 
insert 0 2627 A
>> Inserting city A (0,2627)
 
insert 0 2628 A
>> Inserting city A (0,2628)
 
insert 0 2629 A
>> Inserting city A (0,2629)
 
insert 0 2630 A
>> Inserting city A (0,2630)
 
insert 0 2631 A
>> Inserting city A (0,2631)
 
insert 0 2632 A
>> Inserting city A (0,2632)
 
insert 0 2633 A
>> Inserting city A (0,2633)
 
insert 0 2634 A
>> Inserting city A (0,2634)
 
insert 0 2635 A
>> Inserting city A (0,2635)
 
insert 0 2636 A
>> Inserting city A (0,2636)
 
insert 0 2637 A
>> Inserting city A (0,2637)
 
insert 0 2638 A
>> Inserting city A (0,2638)
 
insert 0 2639 A
>> Inserting city A (0,2639)
 
insert 0 2640 A
>> Inserting city A (0,2640)
 
insert 0 2641 A
>> Inserting city A (0,2641)
 
insert 0 2642 A
>> Inserting city A (0,2642)
 
insert 0 2643 A
>> Inserting city A (0,2643)
 
insert 0 2644 A
>> Inserting city A (0,2644)
 
insert 0 2645 A
>> Inserting city A (0,2645)
 
insert 0 2646 A
>> Inserting city A (0,2646)
 
insert 0 2647 A
>> Inserting city A (0,2647)
 
insert 0 2648 A
>> Inserting city A (0,2648)
 
insert 0 2649 A
>> Inserting city A (0,2649)
 
insert 0 2650 A
>> Inserting city A (0,2650)
 
insert 0 2651 A
>> Inserting city A (0,2651)
 
insert 0 2652 A
>> Inserting city A (0,2652)
 
insert 0 2653 A
>> Inserting city A (0,2653)
 
insert 0 2654 A
>> Inserting city A (0,2654)
 
insert 0 2655 A
>> Inserting city A (0,2655)
 
insert 0 2656 A
>> Inserting city A (0,2656)
 
insert 0 2657 A
>> Inserting city A (0,2657)
 
insert 0 2658 A
>> Inserting city A (0,2658)
 
insert 0 2659 A
>> Inserting city A (0,2659)
 
insert 0 2660 A
>> Inserting city A (0,2660)
 
insert 0 2661 A
>> Inserting city A (0,2661)
 
insert 0 2662 A
>> Inserting city A (0,2662)
 
insert 0 2663 A
>> Inserting city A (0,2663)
 
insert 0 2664 A
>> Inserting city A (0,2664)
 
insert 0 2665 A
>> Inserting city A (0,2665)
 
insert 0 2666 A
>> Inserting city A (0,2666)
 
insert 0 2667 A
>> Inserting city A (0,2667)
 
insert 0 2668 A
>> Inserting city A (0,2668)
 
insert 0 2669 A
>> Inserting city A (0,2669)
 
insert 0 2670 A
>> Inserting city A (0,2670)
 
insert 0 2671 A
>> Inserting city A (0,2671)
 
insert 0 2672 A
>> Inserting city A (0,2672)
 
insert 0 2673 A
>> Inserting city A (0,2673)
 
insert 0 2674 A
>> Inserting city A (0,2674)
 
insert 0 2675 A
>> Inserting city A (0,2675)
 
insert 0 2676 A
>> Inserting city A (0,2676)
 
insert 0 2677 A
>> Inserting city A (0,2677)
 
insert 0 2678 A
>> Inserting city A (0,2678)
 
insert 0 2679 A
>> Inserting city A (0,2679)
 
insert 0 2680 A
>> Inserting city A (0,2680)
 
insert 0 2681 A
>> Inserting city A (0,2681)
 
insert 0 2682 A
>> Inserting city A (0,2682)
 
insert 0 2683 A
>> Inserting city A (0,2683)
 
insert 0 2684 A
>> Inserting city A (0,2684)
 
insert 0 2685 A
>> Inserting city A (0,2685)
 
insert 0 2686 A
>> Inserting city A (0,2686)
 
insert 0 2687 A
>> Inserting city A (0,2687)
 
insert 0 2688 A
>> Inserting city A (0,2688)
 
insert 0 2689 A
>> Inserting city A (0,2689)
 
insert 0 2690 A
>> Inserting city A (0,2690)
 
insert 0 2691 A
>> Inserting city A (0,2691)
 
insert 0 2692 A
>> Inserting city A (0,2692)
 
insert 0 2693 A
>> Inserting city A (0,2693)
 
insert 0 2694 A
>> Inserting city A (0,2694)
 
insert 0 2695 A
>> Inserting city A (0,2695)
 
insert 0 2696 A
>> Inserting city A (0,2696)
 
insert 0 2697 A
>> Inserting city A (0,2697)
 
insert 0 2698 A
>> Inserting city A (0,2698)
 
insert 0 2699 A
>> Inserting city A (0,2699)
 
insert 0 2700 A
>> Inserting city A (0,2700)
 
insert 0 2701 A
>> Inserting city A (0,2701)
 
insert 0 2702 A
>> Inserting city A (0,2702)
 
insert 0 2703 A
>> Inserting city A (0,2703)
 
insert 0 2704 A
>> Inserting city A (0,2704)
 
insert 0 2705 A
>> Inserting city A (0,2705)
 
insert 0 2706 A
>> Inserting city A (0,2706)
 
insert 0 2707 A
>> Inserting city A (0,2707)
 
insert 0 2708 A
>> Inserting city A (0,2708)
 
insert 0 2709 A
>> Inserting city A (0,2709)
 
insert 0 2710 A
>> Inserting city A (0,2710)
 
insert 0 2711 A
>> Inserting city A (0,2711)
 
insert 0 2712 A
>> Inserting city A (0,2712)
 
insert 0 2713 A
>> Inserting city A (0,2713)
 
insert 0 2714 A
>> Inserting city A (0,2714)
 
insert 0 2715 A
>> Inserting city A (0,2715)
 
insert 0 2716 A
>> Inserting city A (0,2716)
 
insert 0 2717 A
>> Inserting city A (0,2717)
 
insert 0 2718 A
>> Inserting city A (0,2718)
 
insert 0 2719 A
>> Inserting city A (0,2719)
 
insert 0 2720 A
>> Inserting city A (0,2720)
 
insert 0 2721 A
>> Inserting city A (0,2721)
 
insert 0 2722 A
>> Inserting city A (0,2722)
 
insert 0 2723 A
>> Inserting city A (0,2723)
 
insert 0 2724 A
>> Inserting city A (0,2724)
 
insert 0 2725 A
>> Inserting city A (0,2725)
 
insert 0 2726 A
>> Inserting city A (0,2726)
 
insert 0 2727 A
>> Inserting city A (0,2727)
 
insert 0 2728 A
>> Inserting city A (0,2728)
 
insert 0 2729 A
>> Inserting city A (0,2729)
 
insert 0 2730 A
>> Inserting city A (0,2730)
 
insert 0 2731 A
>> Inserting city A (0,2731)
 
insert 0 2732 A
>> Inserting city A (0,2732)
 
insert 0 2733 A
>> Inserting city A (0,2733)
 
insert 0 2734 A
>> Inserting city A (0,2734)
 
insert 0 2735 A
>> Inserting city A (0,2735)
 
insert 0 2736 A
>> Inserting city A (0,2736)
 
insert 0 2737 A
>> Inserting city A (0,2737)
 
insert 0 2738 A
>> Inserting city A (0,2738)
 
insert 0 2739 A
>> Inserting city A (0,2739)
 
insert 0 2740 A
>> Inserting city A (0,2740)
 
insert 0 2741 A
>> Inserting city A (0,2741)
 
insert 0 2742 A
>> Inserting city A (0,2742)
 
insert 0 2743 A
>> Inserting city A (0,2743)
 
insert 0 2744 A
>> Inserting city A (0,2744)
 
insert 0 2745 A
>> Inserting city A (0,2745)
 
insert 0 2746 A
>> Inserting city A (0,2746)
 
insert 0 2747 A
>> Inserting city A (0,2747)
 
insert 0 2748 A
>> Inserting city A (0,2748)
 
insert 0 2749 A
>> Inserting city A (0,2749)
 
insert 0 2750 A
>> Inserting city A (0,2750)
 
insert 0 2751 A
>> Inserting city A (0,2751)
 
insert 0 2752 A
>> Inserting city A (0,2752)
 
insert 0 2753 A
>> Inserting city A (0,2753)
 
insert 0 2754 A
>> Inserting city A (0,2754)
 
insert 0 2755 A
>> Inserting city A (0,2755)
 
insert 0 2756 A
>> Inserting city A (0,2756)
 
insert 0 2757 A
>> Inserting city A (0,2757)
 
insert 0 2758 A
>> Inserting city A (0,2758)
 
insert 0 2759 A
>> Inserting city A (0,2759)
 
insert 0 2760 A
>> Inserting city A (0,2760)
 
insert 0 2761 A
>> Inserting city A (0,2761)
 
insert 0 2762 A
>> Inserting city A (0,2762)
 
insert 0 2763 A
>> Inserting city A (0,2763)
 
insert 0 2764 A
>> Inserting city A (0,2764)
 
insert 0 2765 A
>> Inserting city A (0,2765)
 
insert 0 2766 A
>> Inserting city A (0,2766)
 
insert 0 2767 A
>> Inserting city A (0,2767)
 
insert 0 2768 A
>> Inserting city A (0,2768)
 
insert 0 2769 A
>> Inserting city A (0,2769)
 
insert 0 2770 A
>> Inserting city A (0,2770)
 
insert 0 2771 A
>> Inserting city A (0,2771)
 
insert 0 2772 A
>> Inserting city A (0,2772)
 
insert 0 2773 A
>> Inserting city A (0,2773)
 
insert 0 2774 A
>> Inserting city A (0,2774)
 
insert 0 2775 A
>> Inserting city A (0,2775)
 
insert 0 2776 A
>> Inserting city A (0,2776)
 
insert 0 2777 A
>> Inserting city A (0,2777)
 
insert 0 2778 A
>> Inserting city A (0,2778)
 
insert 0 2779 A
>> Inserting city A (0,2779)
 
insert 0 2780 A
>> Inserting city A (0,2780)
 
insert 0 2781 A
>> Inserting city A (0,2781)
 
insert 0 2782 A
>> Inserting city A (0,2782)
 
insert 0 2783 A
>> Inserting city A (0,2783)
 
insert 0 2784 A
>> Inserting city A (0,2784)
 
insert 0 2785 A
>> Inserting city A (0,2785)
 
insert 0 2786 A
>> Inserting city A (0,2786)
 
insert 0 2787 A
>> Inserting city A (0,2787)
 
insert 0 2788 A
>> Inserting city A (0,2788)
 
insert 0 2789 A
>> Inserting city A (0,2789)
 
insert 0 2790 A
>> Inserting city A (0,2790)
 
insert 0 2791 A
>> Inserting city A (0,2791)
 
insert 0 2792 A
>> Inserting city A (0,2792)
 
insert 0 2793 A
>> Inserting city A (0,2793)
 
insert 0 2794 A
>> Inserting city A (0,2794)
 
insert 0 2795 A
>> Inserting city A (0,2795)
 
insert 0 2796 A
>> Inserting city A (0,2796)
 
insert 0 2797 A
>> Inserting city A (0,2797)
 
insert 0 2798 A
>> Inserting city A (0,2798)
 
insert 0 2799 A
>> Inserting city A (0,2799)
 
insert 0 2800 A
>> Inserting city A (0,2800)
 
insert 0 2801 A
>> Inserting city A (0,2801)
 
insert 0 2802 A
>> Inserting city A (0,2802)
 
insert 0 2803 A
>> Inserting city A (0,2803)
 
insert 0 2804 A
>> Inserting city A (0,2804)
 
insert 0 2805 A
>> Inserting city A (0,2805)
 
insert 0 2806 A
>> Inserting city A (0,2806)
 
insert 0 2807 A
>> Inserting city A (0,2807)
 
insert 0 2808 A
>> Inserting city A (0,2808)
 
insert 0 2809 A
>> Inserting city A (0,2809)
 
insert 0 2810 A
>> Inserting city A (0,2810)
 
insert 0 2811 A
>> Inserting city A (0,2811)
 
insert 0 2812 A
>> Inserting city A (0,2812)
 
insert 0 2813 A
>> Inserting city A (0,2813)
 
insert 0 2814 A
>> Inserting city A (0,2814)
 
insert 0 2815 A
>> Inserting city A (0,2815)
 
insert 0 2816 A
>> Inserting city A (0,2816)
 
insert 0 2817 A
>> Inserting city A (0,2817)
 
insert 0 2818 A
>> Inserting city A (0,2818)
 
insert 0 2819 A
>> Inserting city A (0,2819)
 
insert 0 2820 A
>> Inserting city A (0,2820)
 
insert 0 2821 A
>> Inserting city A (0,2821)
 
insert 0 2822 A
>> Inserting city A (0,2822)
 
insert 0 2823 A
>> Inserting city A (0,2823)
 
insert 0 2824 A
>> Inserting city A (0,2824)
 
insert 0 2825 A
>> Inserting city A (0,2825)
 
insert 0 2826 A
>> Inserting city A (0,2826)
 
insert 0 2827 A
>> Inserting city A (0,2827)
 
insert 0 2828 A
>> Inserting city A (0,2828)
 
insert 0 2829 A
>> Inserting city A (0,2829)
 
insert 0 2830 A
>> Inserting city A (0,2830)
 
insert 0 2831 A
>> Inserting city A (0,2831)
 
insert 0 2832 A
>> Inserting city A (0,2832)
 
insert 0 2833 A
>> Inserting city A (0,2833)
 
insert 0 2834 A
>> Inserting city A (0,2834)
 
insert 0 2835 A
>> Inserting city A (0,2835)
 
insert 0 2836 A
>> Inserting city A (0,2836)
 
insert 0 2837 A
>> Inserting city A (0,2837)
 
insert 0 2838 A
>> Inserting city A (0,2838)
 
insert 0 2839 A
>> Inserting city A (0,2839)
 
insert 0 2840 A
>> Inserting city A (0,2840)
 
insert 0 2841 A
>> Inserting city A (0,2841)
 
insert 0 2842 A
>> Inserting city A (0,2842)
 
insert 0 2843 A
>> Inserting city A (0,2843)
 
insert 0 2844 A
>> Inserting city A (0,2844)
 
insert 0 2845 A
>> Inserting city A (0,2845)
 
insert 0 2846 A
>> Inserting city A (0,2846)
 
insert 0 2847 A
>> Inserting city A (0,2847)
 
insert 0 2848 A
>> Inserting city A (0,2848)
 
insert 0 2849 A
>> Inserting city A (0,2849)
 
insert 0 2850 A
>> Inserting city A (0,2850)
 
insert 0 2851 A
>> Inserting city A (0,2851)
 
insert 0 2852 A
>> Inserting city A (0,2852)
 
insert 0 2853 A
>> Inserting city A (0,2853)
 
insert 0 2854 A
>> Inserting city A (0,2854)
 
insert 0 2855 A
>> Inserting city A (0,2855)
 
insert 0 2856 A
>> Inserting city A (0,2856)
 
insert 0 2857 A
>> Inserting city A (0,2857)
 
insert 0 2858 A
>> Inserting city A (0,2858)
 
insert 0 2859 A
>> Inserting city A (0,2859)
 
insert 0 2860 A
>> Inserting city A (0,2860)
 
insert 0 2861 A
>> Inserting city A (0,2861)
 
insert 0 2862 A
>> Inserting city A (0,2862)
 
insert 0 2863 A
>> Inserting city A (0,2863)
 
insert 0 2864 A
>> Inserting city A (0,2864)
 
insert 0 2865 A
>> Inserting city A (0,2865)
 
insert 0 2866 A
>> Inserting city A (0,2866)
 
insert 0 2867 A
>> Inserting city A (0,2867)
 
insert 0 2868 A
>> Inserting city A (0,2868)
 
insert 0 2869 A
>> Inserting city A (0,2869)
 
insert 0 2870 A
>> Inserting city A (0,2870)
 
insert 0 2871 A
>> Inserting city A (0,2871)
 
insert 0 2872 A
>> Inserting city A (0,2872)
 
insert 0 2873 A
>> Inserting city A (0,2873)
 
insert 0 2874 A
>> Inserting city A (0,2874)
 
insert 0 2875 A
>> Inserting city A (0,2875)
 
insert 0 2876 A
>> Inserting city A (0,2876)
 
insert 0 2877 A
>> Inserting city A (0,2877)
 
insert 0 2878 A
>> Inserting city A (0,2878)
 
insert 0 2879 A
>> Inserting city A (0,2879)
 
insert 0 2880 A
>> Inserting city A (0,2880)
 
insert 0 2881 A
>> Inserting city A (0,2881)
 
insert 0 2882 A
>> Inserting city A (0,2882)
 
insert 0 2883 A
>> Inserting city A (0,2883)
 
insert 0 2884 A
>> Inserting city A (0,2884)
 
insert 0 2885 A
>> Inserting city A (0,2885)
 
insert 0 2886 A
>> Inserting city A (0,2886)
 
insert 0 2887 A
>> Inserting city A (0,2887)
 
insert 0 2888 A
>> Inserting city A (0,2888)
 
insert 0 2889 A
>> Inserting city A (0,2889)
 
insert 0 2890 A
>> Inserting city A (0,2890)
 
insert 0 2891 A
>> Inserting city A (0,2891)
 
insert 0 2892 A
>> Inserting city A (0,2892)
 
insert 0 2893 A
>> Inserting city A (0,2893)
 
insert 0 2894 A
>> Inserting city A (0,2894)
 
insert 0 2895 A
>> Inserting city A (0,2895)
 
insert 0 2896 A
>> Inserting city A (0,2896)
 
insert 0 2897 A
>> Inserting city A (0,2897)
 
insert 0 2898 A
>> Inserting city A (0,2898)
 
insert 0 2899 A
>> Inserting city A (0,2899)
 
insert 0 2900 A
>> Inserting city A (0,2900)
 
insert 0 2901 A
>> Inserting city A (0,2901)
 
insert 0 2902 A
>> Inserting city A (0,2902)
 
insert 0 2903 A
>> Inserting city A (0,2903)
 
insert 0 2904 A
>> Inserting city A (0,2904)
 
insert 0 2905 A
>> Inserting city A (0,2905)
 
insert 0 2906 A
>> Inserting city A (0,2906)
 
insert 0 2907 A
>> Inserting city A (0,2907)
 
insert 0 2908 A
>> Inserting city A (0,2908)
 
insert 0 2909 A
>> Inserting city A (0,2909)
 
insert 0 2910 A
>> Inserting city A (0,2910)
 
insert 0 2911 A
>> Inserting city A (0,2911)
 
insert 0 2912 A
>> Inserting city A (0,2912)
 
insert 0 2913 A
>> Inserting city A (0,2913)
 
insert 0 2914 A
>> Inserting city A (0,2914)
 
insert 0 2915 A
>> Inserting city A (0,2915)
 
insert 0 2916 A
>> Inserting city A (0,2916)
 
insert 0 2917 A
>> Inserting city A (0,2917)
 
insert 0 2918 A
>> Inserting city A (0,2918)
 
insert 0 2919 A
>> Inserting city A (0,2919)
 
insert 0 2920 A
>> Inserting city A (0,2920)
 
insert 0 2921 A
>> Inserting city A (0,2921)
 
insert 0 2922 A
>> Inserting city A (0,2922)
 
insert 0 2923 A
>> Inserting city A (0,2923)
 
insert 0 2924 A
>> Inserting city A (0,2924)
 
insert 0 2925 A
>> Inserting city A (0,2925)
 
insert 0 2926 A
>> Inserting city A (0,2926)
 
insert 0 2927 A
>> Inserting city A (0,2927)
 
insert 0 2928 A
>> Inserting city A (0,2928)
 
insert 0 2929 A
>> Inserting city A (0,2929)
 
insert 0 2930 A
>> Inserting city A (0,2930)
 
insert 0 2931 A
>> Inserting city A (0,2931)
 
insert 0 2932 A
>> Inserting city A (0,2932)
 
insert 0 2933 A
>> Inserting city A (0,2933)
 
insert 0 2934 A
>> Inserting city A (0,2934)
 
insert 0 2935 A
>> Inserting city A (0,2935)
 
insert 0 2936 A
>> Inserting city A (0,2936)
 
insert 0 2937 A
>> Inserting city A (0,2937)
 
insert 0 2938 A
>> Inserting city A (0,2938)
 
insert 0 2939 A
>> Inserting city A (0,2939)
 
insert 0 2940 A
>> Inserting city A (0,2940)
 
insert 0 2941 A
>> Inserting city A (0,2941)
 
insert 0 2942 A
>> Inserting city A (0,2942)
 
insert 0 2943 A
>> Inserting city A (0,2943)
 
insert 0 2944 A
>> Inserting city A (0,2944)
 
insert 0 2945 A
>> Inserting city A (0,2945)
 
insert 0 2946 A
>> Inserting city A (0,2946)
 
insert 0 2947 A
>> Inserting city A (0,2947)
 
insert 0 2948 A
>> Inserting city A (0,2948)
 
insert 0 2949 A
>> Inserting city A (0,2949)
 
insert 0 2950 A
>> Inserting city A (0,2950)
 
insert 0 2951 A
>> Inserting city A (0,2951)
 
insert 0 2952 A
>> Inserting city A (0,2952)
 
insert 0 2953 A
>> Inserting city A (0,2953)
 
insert 0 2954 A
>> Inserting city A (0,2954)
 
insert 0 2955 A
>> Inserting city A (0,2955)
 
insert 0 2956 A
>> Inserting city A (0,2956)
 
insert 0 2957 A
>> Inserting city A (0,2957)
 
insert 0 2958 A
>> Inserting city A (0,2958)
 
insert 0 2959 A
>> Inserting city A (0,2959)
 
insert 0 2960 A
>> Inserting city A (0,2960)
 
insert 0 2961 A
>> Inserting city A (0,2961)
 
insert 0 2962 A
>> Inserting city A (0,2962)
 
insert 0 2963 A
>> Inserting city A (0,2963)
 
insert 0 2964 A
>> Inserting city A (0,2964)
 
insert 0 2965 A
>> Inserting city A (0,2965)
 
insert 0 2966 A
>> Inserting city A (0,2966)
 
insert 0 2967 A
>> Inserting city A (0,2967)
 
insert 0 2968 A
>> Inserting city A (0,2968)
 
insert 0 2969 A
>> Inserting city A (0,2969)
 
insert 0 2970 A
>> Inserting city A (0,2970)
 
insert 0 2971 A
>> Inserting city A (0,2971)
 
insert 0 2972 A
>> Inserting city A (0,2972)
 
insert 0 2973 A
>> Inserting city A (0,2973)
 
insert 0 2974 A
>> Inserting city A (0,2974)
 
insert 0 2975 A
>> Inserting city A (0,2975)
 
insert 0 2976 A
>> Inserting city A (0,2976)
 
insert 0 2977 A
>> Inserting city A (0,2977)
 
insert 0 2978 A
>> Inserting city A (0,2978)
 
insert 0 2979 A
>> Inserting city A (0,2979)
 
insert 0 2980 A
>> Inserting city A (0,2980)
 
insert 0 2981 A
>> Inserting city A (0,2981)
 
insert 0 2982 A
>> Inserting city A (0,2982)
 
insert 0 2983 A
>> Inserting city A (0,2983)
 
insert 0 2984 A
>> Inserting city A (0,2984)
 
insert 0 2985 A
>> Inserting city A (0,2985)
 
insert 0 2986 A
>> Inserting city A (0,2986)
 
insert 0 2987 A
>> Inserting city A (0,2987)
 
insert 0 2988 A
>> Inserting city A (0,2988)
 
insert 0 2989 A
>> Inserting city A (0,2989)
 
insert 0 2990 A
>> Inserting city A (0,2990)
 
insert 0 2991 A
>> Inserting city A (0,2991)
 
insert 0 2992 A
>> Inserting city A (0,2992)
 
insert 0 2993 A
>> Inserting city A (0,2993)
 
insert 0 2994 A
>> Inserting city A (0,2994)
 
insert 0 2995 A
>> Inserting city A (0,2995)
 
insert 0 2996 A
>> Inserting city A (0,2996)
 
insert 0 2997 A
>> Inserting city A (0,2997)
 
insert 0 2998 A
>> Inserting city A (0,2998)
 
insert 0 2999 A
>> Inserting city A (0,2999)
 
insert 0 3000 A
>> Inserting city A (0,3000)
 
insert 0 3001 A
>> Inserting city A (0,3001)
 
insert 0 3002 A
>> Inserting city A (0,3002)
 
insert 0 3003 A
>> Inserting city A (0,3003)
 
insert 0 3004 A
>> Inserting city A (0,3004)
 
insert 0 3005 A
>> Inserting city A (0,3005)
 
insert 0 3006 A
>> Inserting city A (0,3006)
 
insert 0 3007 A
>> Inserting city A (0,3007)
 
insert 0 3008 A
>> Inserting city A (0,3008)
 
insert 0 3009 A
>> Inserting city A (0,3009)
 
insert 0 3010 A
>> Inserting city A (0,3010)
 
insert 0 3011 A
>> Inserting city A (0,3011)
 
insert 0 3012 A
>> Inserting city A (0,3012)
 
insert 0 3013 A
>> Inserting city A (0,3013)
 
insert 0 3014 A
>> Inserting city A (0,3014)
 
insert 0 3015 A
>> Inserting city A (0,3015)
 
insert 0 3016 A
>> Inserting city A (0,3016)
 
insert 0 3017 A
>> Inserting city A (0,3017)
 
insert 0 3018 A
>> Inserting city A (0,3018)
 
insert 0 3019 A
>> Inserting city A (0,3019)
 
insert 0 3020 A
>> Inserting city A (0,3020)
 
insert 0 3021 A
>> Inserting city A (0,3021)
 
insert 0 3022 A
>> Inserting city A (0,3022)
 
insert 0 3023 A
>> Inserting city A (0,3023)
 
insert 0 3024 A
>> Inserting city A (0,3024)
 
insert 0 3025 A
>> Inserting city A (0,3025)
 
insert 0 3026 A
>> Inserting city A (0,3026)
 
insert 0 3027 A
>> Inserting city A (0,3027)
 
insert 0 3028 A
>> Inserting city A (0,3028)
 
insert 0 3029 A
>> Inserting city A (0,3029)
 
insert 0 3030 A
>> Inserting city A (0,3030)
 
insert 0 3031 A
>> Inserting city A (0,3031)
 
insert 0 3032 A
>> Inserting city A (0,3032)
 
insert 0 3033 A
>> Inserting city A (0,3033)
 
insert 0 3034 A
>> Inserting city A (0,3034)
 
insert 0 3035 A
>> Inserting city A (0,3035)
 
insert 0 3036 A
>> Inserting city A (0,3036)
 
insert 0 3037 A
>> Inserting city A (0,3037)
 
insert 0 3038 A
>> Inserting city A (0,3038)
 
insert 0 3039 A
>> Inserting city A (0,3039)
 
insert 0 3040 A
>> Inserting city A (0,3040)
 
insert 0 3041 A
>> Inserting city A (0,3041)
 
insert 0 3042 A
>> Inserting city A (0,3042)
 
insert 0 3043 A
>> Inserting city A (0,3043)
 
insert 0 3044 A
>> Inserting city A (0,3044)
 
insert 0 3045 A
>> Inserting city A (0,3045)
 
insert 0 3046 A
>> Inserting city A (0,3046)
 
insert 0 3047 A
>> Inserting city A (0,3047)
 
insert 0 3048 A
>> Inserting city A (0,3048)
 
insert 0 3049 A
>> Inserting city A (0,3049)
 
insert 0 3050 A
>> Inserting city A (0,3050)
 
insert 0 3051 A
>> Inserting city A (0,3051)
 
insert 0 3052 A
>> Inserting city A (0,3052)
 
insert 0 3053 A
>> Inserting city A (0,3053)
 
insert 0 3054 A
>> Inserting city A (0,3054)
 
insert 0 3055 A
>> Inserting city A (0,3055)
 
insert 0 3056 A
>> Inserting city A (0,3056)
 
insert 0 3057 A
>> Inserting city A (0,3057)
 
insert 0 3058 A
>> Inserting city A (0,3058)
 
insert 0 3059 A
>> Inserting city A (0,3059)
 
insert 0 3060 A
>> Inserting city A (0,3060)
 
insert 0 3061 A
>> Inserting city A (0,3061)
 
insert 0 3062 A
>> Inserting city A (0,3062)
 
insert 0 3063 A
>> Inserting city A (0,3063)
 
insert 0 3064 A
>> Inserting city A (0,3064)
 
insert 0 3065 A
>> Inserting city A (0,3065)
 
insert 0 3066 A
>> Inserting city A (0,3066)
 
insert 0 3067 A
>> Inserting city A (0,3067)
 
insert 0 3068 A
>> Inserting city A (0,3068)
 
insert 0 3069 A
>> Inserting city A (0,3069)
 
insert 0 3070 A
>> Inserting city A (0,3070)
 
insert 0 3071 A
>> Inserting city A (0,3071)
 
insert 0 3072 A
>> Inserting city A (0,3072)
 
insert 0 3073 A
>> Inserting city A (0,3073)
 
insert 0 3074 A
>> Inserting city A (0,3074)
 
insert 0 3075 A
>> Inserting city A (0,3075)
 
insert 0 3076 A
>> Inserting city A (0,3076)
 
insert 0 3077 A
>> Inserting city A (0,3077)
 
insert 0 3078 A
>> Inserting city A (0,3078)
 
insert 0 3079 A
>> Inserting city A (0,3079)
 
insert 0 3080 A
>> Inserting city A (0,3080)
 
insert 0 3081 A
>> Inserting city A (0,3081)
 
insert 0 3082 A
>> Inserting city A (0,3082)
 
insert 0 3083 A
>> Inserting city A (0,3083)
 
insert 0 3084 A
>> Inserting city A (0,3084)
 
insert 0 3085 A
>> Inserting city A (0,3085)
 
insert 0 3086 A
>> Inserting city A (0,3086)
 
insert 0 3087 A
>> Inserting city A (0,3087)
 
insert 0 3088 A
>> Inserting city A (0,3088)
 
insert 0 3089 A
>> Inserting city A (0,3089)
 
insert 0 3090 A
>> Inserting city A (0,3090)
 
insert 0 3091 A
>> Inserting city A (0,3091)
 
insert 0 3092 A
>> Inserting city A (0,3092)
 
insert 0 3093 A
>> Inserting city A (0,3093)
 
insert 0 3094 A
>> Inserting city A (0,3094)
 
insert 0 3095 A
>> Inserting city A (0,3095)
 
insert 0 3096 A
>> Inserting city A (0,3096)
 
insert 0 3097 A
>> Inserting city A (0,3097)
 
insert 0 3098 A
>> Inserting city A (0,3098)
 
insert 0 3099 A
>> Inserting city A (0,3099)
 
insert 0 3100 A
>> Inserting city A (0,3100)
 
insert 0 3101 A
>> Inserting city A (0,3101)
 
insert 0 3102 A
>> Inserting city A (0,3102)
 
insert 0 3103 A
>> Inserting city A (0,3103)
 
insert 0 3104 A
>> Inserting city A (0,3104)
 
insert 0 3105 A
>> Inserting city A (0,3105)
 
insert 0 3106 A
>> Inserting city A (0,3106)
 
insert 0 3107 A
>> Inserting city A (0,3107)
 
insert 0 3108 A
>> Inserting city A (0,3108)
 
insert 0 3109 A
>> Inserting city A (0,3109)
 
insert 0 3110 A
>> Inserting city A (0,3110)
 
insert 0 3111 A
>> Inserting city A (0,3111)
 
insert 0 3112 A
>> Inserting city A (0,3112)
 
insert 0 3113 A
>> Inserting city A (0,3113)
 
insert 0 3114 A
>> Inserting city A (0,3114)
 
insert 0 3115 A
>> Inserting city A (0,3115)
 
insert 0 3116 A
>> Inserting city A (0,3116)
 
insert 0 3117 A
>> Inserting city A (0,3117)
 
insert 0 3118 A
>> Inserting city A (0,3118)
 
insert 0 3119 A
>> Inserting city A (0,3119)
 
insert 0 3120 A
>> Inserting city A (0,3120)
 
insert 0 3121 A
>> Inserting city A (0,3121)
 
insert 0 3122 A
>> Inserting city A (0,3122)
 
insert 0 3123 A
>> Inserting city A (0,3123)
 
insert 0 3124 A
>> Inserting city A (0,3124)
 
insert 0 3125 A
>> Inserting city A (0,3125)
 
insert 0 3126 A
>> Inserting city A (0,3126)
 
insert 0 3127 A
>> Inserting city A (0,3127)
 
insert 0 3128 A
>> Inserting city A (0,3128)
 
insert 0 3129 A
>> Inserting city A (0,3129)
 
insert 0 3130 A
>> Inserting city A (0,3130)
 
insert 0 3131 A
>> Inserting city A (0,3131)
 
insert 0 3132 A
>> Inserting city A (0,3132)
 
insert 0 3133 A
>> Inserting city A (0,3133)
 
insert 0 3134 A
>> Inserting city A (0,3134)
 
insert 0 3135 A
>> Inserting city A (0,3135)
 
insert 0 3136 A
>> Inserting city A (0,3136)
 
insert 0 3137 A
>> Inserting city A (0,3137)
 
insert 0 3138 A
>> Inserting city A (0,3138)
 
insert 0 3139 A
>> Inserting city A (0,3139)
 
insert 0 3140 A
>> Inserting city A (0,3140)
 
insert 0 3141 A
>> Inserting city A (0,3141)
 
insert 0 3142 A
>> Inserting city A (0,3142)
 
insert 0 3143 A
>> Inserting city A (0,3143)
 
insert 0 3144 A
>> Inserting city A (0,3144)
 
insert 0 3145 A
>> Inserting city A (0,3145)
 
insert 0 3146 A
>> Inserting city A (0,3146)
 
insert 0 3147 A
>> Inserting city A (0,3147)
 
insert 0 3148 A
>> Inserting city A (0,3148)
 
insert 0 3149 A
>> Inserting city A (0,3149)
 
insert 0 3150 A
>> Inserting city A (0,3150)
 
insert 0 3151 A
>> Inserting city A (0,3151)
 
insert 0 3152 A
>> Inserting city A (0,3152)
 
insert 0 3153 A
>> Inserting city A (0,3153)
 
insert 0 3154 A
>> Inserting city A (0,3154)
 
insert 0 3155 A
>> Inserting city A (0,3155)
 
insert 0 3156 A
>> Inserting city A (0,3156)
 
insert 0 3157 A
>> Inserting city A (0,3157)
 
insert 0 3158 A
>> Inserting city A (0,3158)
 
insert 0 3159 A
>> Inserting city A (0,3159)
 
insert 0 3160 A
>> Inserting city A (0,3160)
 
insert 0 3161 A
>> Inserting city A (0,3161)
 
insert 0 3162 A
>> Inserting city A (0,3162)
 
insert 0 3163 A
>> Inserting city A (0,3163)
 
insert 0 3164 A
>> Inserting city A (0,3164)
 
insert 0 3165 A
>> Inserting city A (0,3165)
 
insert 0 3166 A
>> Inserting city A (0,3166)
 
insert 0 3167 A
>> Inserting city A (0,3167)
 
insert 0 3168 A
>> Inserting city A (0,3168)
 
insert 0 3169 A
>> Inserting city A (0,3169)
 
insert 0 3170 A
>> Inserting city A (0,3170)
 
insert 0 3171 A
>> Inserting city A (0,3171)
 
insert 0 3172 A
>> Inserting city A (0,3172)
 
insert 0 3173 A
>> Inserting city A (0,3173)
 
insert 0 3174 A
>> Inserting city A (0,3174)
 
insert 0 3175 A
>> Inserting city A (0,3175)
 
insert 0 3176 A
>> Inserting city A (0,3176)
 
insert 0 3177 A
>> Inserting city A (0,3177)
 
insert 0 3178 A
>> Inserting city A (0,3178)
 
insert 0 3179 A
>> Inserting city A (0,3179)
 
insert 0 3180 A
>> Inserting city A (0,3180)
 
insert 0 3181 A
>> Inserting city A (0,3181)
 
insert 0 3182 A
>> Inserting city A (0,3182)
 
insert 0 3183 A
>> Inserting city A (0,3183)
 
insert 0 3184 A
>> Inserting city A (0,3184)
 
insert 0 3185 A
>> Inserting city A (0,3185)
 
insert 0 3186 A
>> Inserting city A (0,3186)
 
insert 0 3187 A
>> Inserting city A (0,3187)
 
insert 0 3188 A
>> Inserting city A (0,3188)
 
insert 0 3189 A
>> Inserting city A (0,3189)
 
insert 0 3190 A
>> Inserting city A (0,3190)
 
insert 0 3191 A
>> Inserting city A (0,3191)
 
insert 0 3192 A
>> Inserting city A (0,3192)
 
insert 0 3193 A
>> Inserting city A (0,3193)
 
insert 0 3194 A
>> Inserting city A (0,3194)
 
insert 0 3195 A
>> Inserting city A (0,3195)
 
insert 0 3196 A
>> Inserting city A (0,3196)
 
insert 0 3197 A
>> Inserting city A (0,3197)
 
insert 0 3198 A
>> Inserting city A (0,3198)
 
insert 0 3199 A
>> Inserting city A (0,3199)
 
insert 0 3200 A
>> Inserting city A (0,3200)
 
insert 0 3201 A
>> Inserting city A (0,3201)
 
insert 0 3202 A
>> Inserting city A (0,3202)
 
insert 0 3203 A
>> Inserting city A (0,3203)
 
insert 0 3204 A
>> Inserting city A (0,3204)
 
insert 0 3205 A
>> Inserting city A (0,3205)
 
insert 0 3206 A
>> Inserting city A (0,3206)
 
insert 0 3207 A
>> Inserting city A (0,3207)
 
insert 0 3208 A
>> Inserting city A (0,3208)
 
insert 0 3209 A
>> Inserting city A (0,3209)
 
insert 0 3210 A
>> Inserting city A (0,3210)
 
insert 0 3211 A
>> Inserting city A (0,3211)
 
insert 0 3212 A
>> Inserting city A (0,3212)
 
insert 0 3213 A
>> Inserting city A (0,3213)
 
insert 0 3214 A
>> Inserting city A (0,3214)
 
insert 0 3215 A
>> Inserting city A (0,3215)
 
insert 0 3216 A
>> Inserting city A (0,3216)
 
insert 0 3217 A
>> Inserting city A (0,3217)
 
insert 0 3218 A
>> Inserting city A (0,3218)
 
insert 0 3219 A
>> Inserting city A (0,3219)
 
insert 0 3220 A
>> Inserting city A (0,3220)
 
insert 0 3221 A
>> Inserting city A (0,3221)
 
insert 0 3222 A
>> Inserting city A (0,3222)
 
insert 0 3223 A
>> Inserting city A (0,3223)
 
insert 0 3224 A
>> Inserting city A (0,3224)
 
insert 0 3225 A
>> Inserting city A (0,3225)
 
insert 0 3226 A
>> Inserting city A (0,3226)
 
insert 0 3227 A
>> Inserting city A (0,3227)
 
insert 0 3228 A
>> Inserting city A (0,3228)
 
insert 0 3229 A
>> Inserting city A (0,3229)
 
insert 0 3230 A
>> Inserting city A (0,3230)
 
insert 0 3231 A
>> Inserting city A (0,3231)
 
insert 0 3232 A
>> Inserting city A (0,3232)
 
insert 0 3233 A
>> Inserting city A (0,3233)
 
insert 0 3234 A
>> Inserting city A (0,3234)
 
insert 0 3235 A
>> Inserting city A (0,3235)
 
insert 0 3236 A
>> Inserting city A (0,3236)
 
insert 0 3237 A
>> Inserting city A (0,3237)
 
insert 0 3238 A
>> Inserting city A (0,3238)
 
insert 0 3239 A
>> Inserting city A (0,3239)
 
insert 0 3240 A
>> Inserting city A (0,3240)
 
insert 0 3241 A
>> Inserting city A (0,3241)
 
insert 0 3242 A
>> Inserting city A (0,3242)
 
insert 0 3243 A
>> Inserting city A (0,3243)
 
insert 0 3244 A
>> Inserting city A (0,3244)
 
insert 0 3245 A
>> Inserting city A (0,3245)
 
insert 0 3246 A
>> Inserting city A (0,3246)
 
insert 0 3247 A
>> Inserting city A (0,3247)
 
insert 0 3248 A
>> Inserting city A (0,3248)
 
insert 0 3249 A
>> Inserting city A (0,3249)
 
insert 0 3250 A
>> Inserting city A (0,3250)
 
insert 0 3251 A
>> Inserting city A (0,3251)
 
insert 0 3252 A
>> Inserting city A (0,3252)
 
insert 0 3253 A
>> Inserting city A (0,3253)
 
insert 0 3254 A
>> Inserting city A (0,3254)
 
insert 0 3255 A
>> Inserting city A (0,3255)
 
insert 0 3256 A
>> Inserting city A (0,3256)
 
insert 0 3257 A
>> Inserting city A (0,3257)
 
insert 0 3258 A
>> Inserting city A (0,3258)
 
insert 0 3259 A
>> Inserting city A (0,3259)
 
insert 0 3260 A
>> Inserting city A (0,3260)
 
insert 0 3261 A
>> Inserting city A (0,3261)
 
insert 0 3262 A
>> Inserting city A (0,3262)
 
insert 0 3263 A
>> Inserting city A (0,3263)
 
insert 0 3264 A
>> Inserting city A (0,3264)
 
insert 0 3265 A
>> Inserting city A (0,3265)
 
insert 0 3266 A
>> Inserting city A (0,3266)
 
insert 0 3267 A
>> Inserting city A (0,3267)
 
insert 0 3268 A
>> Inserting city A (0,3268)
 
insert 0 3269 A
>> Inserting city A (0,3269)
 
insert 0 3270 A
>> Inserting city A (0,3270)
 
insert 0 3271 A
>> Inserting city A (0,3271)
 
insert 0 3272 A
>> Inserting city A (0,3272)
 
insert 0 3273 A
>> Inserting city A (0,3273)
 
insert 0 3274 A
>> Inserting city A (0,3274)
 
insert 0 3275 A
>> Inserting city A (0,3275)
 
insert 0 3276 A
>> Inserting city A (0,3276)
 
insert 0 3277 A
>> Inserting city A (0,3277)
 
insert 0 3278 A
>> Inserting city A (0,3278)
 
insert 0 3279 A
>> Inserting city A (0,3279)
 
insert 0 3280 A
>> Inserting city A (0,3280)
 
insert 0 3281 A
>> Inserting city A (0,3281)
 
insert 0 3282 A
>> Inserting city A (0,3282)
 
insert 0 3283 A
>> Inserting city A (0,3283)
 
insert 0 3284 A
>> Inserting city A (0,3284)
 
insert 0 3285 A
>> Inserting city A (0,3285)
 
insert 0 3286 A
>> Inserting city A (0,3286)
 
insert 0 3287 A
>> Inserting city A (0,3287)
 
insert 0 3288 A
>> Inserting city A (0,3288)
 
insert 0 3289 A
>> Inserting city A (0,3289)
 
insert 0 3290 A
>> Inserting city A (0,3290)
 
insert 0 3291 A
>> Inserting city A (0,3291)
 
insert 0 3292 A
>> Inserting city A (0,3292)
 
insert 0 3293 A
>> Inserting city A (0,3293)
 
insert 0 3294 A
>> Inserting city A (0,3294)
 
insert 0 3295 A
>> Inserting city A (0,3295)
 
insert 0 3296 A
>> Inserting city A (0,3296)
 
insert 0 3297 A
>> Inserting city A (0,3297)
 
insert 0 3298 A
>> Inserting city A (0,3298)
 
insert 0 3299 A
>> Inserting city A (0,3299)
 
insert 0 3300 A
>> Inserting city A (0,3300)
 
insert 0 3301 A
>> Inserting city A (0,3301)
 
insert 0 3302 A
>> Inserting city A (0,3302)
 
insert 0 3303 A
>> Inserting city A (0,3303)
 
insert 0 3304 A
>> Inserting city A (0,3304)
 
insert 0 3305 A
>> Inserting city A (0,3305)
 
insert 0 3306 A
>> Inserting city A (0,3306)
 
insert 0 3307 A
>> Inserting city A (0,3307)
 
insert 0 3308 A
>> Inserting city A (0,3308)
 
insert 0 3309 A
>> Inserting city A (0,3309)
 
insert 0 3310 A
>> Inserting city A (0,3310)
 
insert 0 3311 A
>> Inserting city A (0,3311)
 
insert 0 3312 A
>> Inserting city A (0,3312)
 
insert 0 3313 A
>> Inserting city A (0,3313)
 
insert 0 3314 A
>> Inserting city A (0,3314)
 
insert 0 3315 A
>> Inserting city A (0,3315)
 
insert 0 3316 A
>> Inserting city A (0,3316)
 
insert 0 3317 A
>> Inserting city A (0,3317)
 
insert 0 3318 A
>> Inserting city A (0,3318)
 
insert 0 3319 A
>> Inserting city A (0,3319)
 
insert 0 3320 A
>> Inserting city A (0,3320)
 
insert 0 3321 A
>> Inserting city A (0,3321)
 
insert 0 3322 A
>> Inserting city A (0,3322)
 
insert 0 3323 A
>> Inserting city A (0,3323)
 
insert 0 3324 A
>> Inserting city A (0,3324)
 
insert 0 3325 A
>> Inserting city A (0,3325)
 
insert 0 3326 A
>> Inserting city A (0,3326)
 
insert 0 3327 A
>> Inserting city A (0,3327)
 
insert 0 3328 A
>> Inserting city A (0,3328)
 
insert 0 3329 A
>> Inserting city A (0,3329)
 
insert 0 3330 A
>> Inserting city A (0,3330)
 
insert 0 3331 A
>> Inserting city A (0,3331)
 
insert 0 3332 A
>> Inserting city A (0,3332)
 
insert 0 3333 A
>> Inserting city A (0,3333)
 
insert 0 3334 A
>> Inserting city A (0,3334)
 
insert 0 3335 A
>> Inserting city A (0,3335)
 
insert 0 3336 A
>> Inserting city A (0,3336)
 
insert 0 3337 A
>> Inserting city A (0,3337)
 
insert 0 3338 A
>> Inserting city A (0,3338)
 
insert 0 3339 A
>> Inserting city A (0,3339)
 
insert 0 3340 A
>> Inserting city A (0,3340)
 
insert 0 3341 A
>> Inserting city A (0,3341)
 
insert 0 3342 A
>> Inserting city A (0,3342)
 
insert 0 3343 A
>> Inserting city A (0,3343)
 
insert 0 3344 A
>> Inserting city A (0,3344)
 
insert 0 3345 A
>> Inserting city A (0,3345)
 
insert 0 3346 A
>> Inserting city A (0,3346)
 
insert 0 3347 A
>> Inserting city A (0,3347)
 
insert 0 3348 A
>> Inserting city A (0,3348)
 
insert 0 3349 A
>> Inserting city A (0,3349)
 
insert 0 3350 A
>> Inserting city A (0,3350)
 
insert 0 3351 A
>> Inserting city A (0,3351)
 
insert 0 3352 A
>> Inserting city A (0,3352)
 
insert 0 3353 A
>> Inserting city A (0,3353)
 
insert 0 3354 A
>> Inserting city A (0,3354)
 
insert 0 3355 A
>> Inserting city A (0,3355)
 
insert 0 3356 A
>> Inserting city A (0,3356)
 
insert 0 3357 A
>> Inserting city A (0,3357)
 
insert 0 3358 A
>> Inserting city A (0,3358)
 
insert 0 3359 A
>> Inserting city A (0,3359)
 
insert 0 3360 A
>> Inserting city A (0,3360)
 
insert 0 3361 A
>> Inserting city A (0,3361)
 
insert 0 3362 A
>> Inserting city A (0,3362)
 
insert 0 3363 A
>> Inserting city A (0,3363)
 
insert 0 3364 A
>> Inserting city A (0,3364)
 
insert 0 3365 A
>> Inserting city A (0,3365)
 
insert 0 3366 A
>> Inserting city A (0,3366)
 
insert 0 3367 A
>> Inserting city A (0,3367)
 
insert 0 3368 A
>> Inserting city A (0,3368)
 
insert 0 3369 A
>> Inserting city A (0,3369)
 
insert 0 3370 A
>> Inserting city A (0,3370)
 
insert 0 3371 A
>> Inserting city A (0,3371)
 
insert 0 3372 A
>> Inserting city A (0,3372)
 
insert 0 3373 A
>> Inserting city A (0,3373)
 
insert 0 3374 A
>> Inserting city A (0,3374)
 
insert 0 3375 A
>> Inserting city A (0,3375)
 
insert 0 3376 A
>> Inserting city A (0,3376)
 
insert 0 3377 A
>> Inserting city A (0,3377)
 
insert 0 3378 A
>> Inserting city A (0,3378)
 
insert 0 3379 A
>> Inserting city A (0,3379)
 
insert 0 3380 A
>> Inserting city A (0,3380)
 
insert 0 3381 A
>> Inserting city A (0,3381)
 
insert 0 3382 A
>> Inserting city A (0,3382)
 
insert 0 3383 A
>> Inserting city A (0,3383)
 
insert 0 3384 A
>> Inserting city A (0,3384)
 
insert 0 3385 A
>> Inserting city A (0,3385)
 
insert 0 3386 A
>> Inserting city A (0,3386)
 
insert 0 3387 A
>> Inserting city A (0,3387)
 
insert 0 3388 A
>> Inserting city A (0,3388)
 
insert 0 3389 A
>> Inserting city A (0,3389)
 
insert 0 3390 A
>> Inserting city A (0,3390)
 
insert 0 3391 A
>> Inserting city A (0,3391)
 
insert 0 3392 A
>> Inserting city A (0,3392)
 
insert 0 3393 A
>> Inserting city A (0,3393)
 
insert 0 3394 A
>> Inserting city A (0,3394)
 
insert 0 3395 A
>> Inserting city A (0,3395)
 
insert 0 3396 A
>> Inserting city A (0,3396)
 
insert 0 3397 A
>> Inserting city A (0,3397)
 
insert 0 3398 A
>> Inserting city A (0,3398)
 
insert 0 3399 A
>> Inserting city A (0,3399)
 
insert 0 3400 A
>> Inserting city A (0,3400)
 
insert 0 3401 A
>> Inserting city A (0,3401)
 
insert 0 3402 A
>> Inserting city A (0,3402)
 
insert 0 3403 A
>> Inserting city A (0,3403)
 
insert 0 3404 A
>> Inserting city A (0,3404)
 
insert 0 3405 A
>> Inserting city A (0,3405)
 
insert 0 3406 A
>> Inserting city A (0,3406)
 
insert 0 3407 A
>> Inserting city A (0,3407)
 
insert 0 3408 A
>> Inserting city A (0,3408)
 
insert 0 3409 A
>> Inserting city A (0,3409)
 
insert 0 3410 A
>> Inserting city A (0,3410)
 
insert 0 3411 A
>> Inserting city A (0,3411)
 
insert 0 3412 A
>> Inserting city A (0,3412)
 
insert 0 3413 A
>> Inserting city A (0,3413)
 
insert 0 3414 A
>> Inserting city A (0,3414)
 
insert 0 3415 A
>> Inserting city A (0,3415)
 
insert 0 3416 A
>> Inserting city A (0,3416)
 
insert 0 3417 A
>> Inserting city A (0,3417)
 
insert 0 3418 A
>> Inserting city A (0,3418)
 
insert 0 3419 A
>> Inserting city A (0,3419)
 
insert 0 3420 A
>> Inserting city A (0,3420)
 
insert 0 3421 A
>> Inserting city A (0,3421)
 
insert 0 3422 A
>> Inserting city A (0,3422)
 
insert 0 3423 A
>> Inserting city A (0,3423)
 
insert 0 3424 A
>> Inserting city A (0,3424)
 
insert 0 3425 A
>> Inserting city A (0,3425)
 
insert 0 3426 A
>> Inserting city A (0,3426)
 
insert 0 3427 A
>> Inserting city A (0,3427)
 
insert 0 3428 A
>> Inserting city A (0,3428)
 
insert 0 3429 A
>> Inserting city A (0,3429)
 
insert 0 3430 A
>> Inserting city A (0,3430)
 
insert 0 3431 A
>> Inserting city A (0,3431)
 
insert 0 3432 A
>> Inserting city A (0,3432)
 
insert 0 3433 A
>> Inserting city A (0,3433)
 
insert 0 3434 A
>> Inserting city A (0,3434)
 
insert 0 3435 A
>> Inserting city A (0,3435)
 
insert 0 3436 A
>> Inserting city A (0,3436)
 
insert 0 3437 A
>> Inserting city A (0,3437)
 
insert 0 3438 A
>> Inserting city A (0,3438)
 
insert 0 3439 A
>> Inserting city A (0,3439)
 
insert 0 3440 A
>> Inserting city A (0,3440)
 
insert 0 3441 A
>> Inserting city A (0,3441)
 
insert 0 3442 A
>> Inserting city A (0,3442)
 
insert 0 3443 A
>> Inserting city A (0,3443)
 
insert 0 3444 A
>> Inserting city A (0,3444)
 
insert 0 3445 A
>> Inserting city A (0,3445)
 
insert 0 3446 A
>> Inserting city A (0,3446)
 
insert 0 3447 A
>> Inserting city A (0,3447)
 
insert 0 3448 A
>> Inserting city A (0,3448)
 
insert 0 3449 A
>> Inserting city A (0,3449)
 
insert 0 3450 A
>> Inserting city A (0,3450)
 
insert 0 3451 A
>> Inserting city A (0,3451)
 
insert 0 3452 A
>> Inserting city A (0,3452)
 
insert 0 3453 A
>> Inserting city A (0,3453)
 
insert 0 3454 A
>> Inserting city A (0,3454)
 
insert 0 3455 A
>> Inserting city A (0,3455)
 
insert 0 3456 A
>> Inserting city A (0,3456)
 
insert 0 3457 A
>> Inserting city A (0,3457)
 
insert 0 3458 A
>> Inserting city A (0,3458)
 
insert 0 3459 A
>> Inserting city A (0,3459)
 
insert 0 3460 A
>> Inserting city A (0,3460)
 
insert 0 3461 A
>> Inserting city A (0,3461)
 
insert 0 3462 A
>> Inserting city A (0,3462)
 
insert 0 3463 A
>> Inserting city A (0,3463)
 
insert 0 3464 A
>> Inserting city A (0,3464)
 
insert 0 3465 A
>> Inserting city A (0,3465)
 
insert 0 3466 A
>> Inserting city A (0,3466)
 
insert 0 3467 A
>> Inserting city A (0,3467)
 
insert 0 3468 A
>> Inserting city A (0,3468)
 
insert 0 3469 A
>> Inserting city A (0,3469)
 
insert 0 3470 A
>> Inserting city A (0,3470)
 
insert 0 3471 A
>> Inserting city A (0,3471)
 
insert 0 3472 A
>> Inserting city A (0,3472)
 
insert 0 3473 A
>> Inserting city A (0,3473)
 
insert 0 3474 A
>> Inserting city A (0,3474)
 
insert 0 3475 A
>> Inserting city A (0,3475)
 
insert 0 3476 A
>> Inserting city A (0,3476)
 
insert 0 3477 A
>> Inserting city A (0,3477)
 
insert 0 3478 A
>> Inserting city A (0,3478)
 
insert 0 3479 A
>> Inserting city A (0,3479)
 
insert 0 3480 A
>> Inserting city A (0,3480)
 
insert 0 3481 A
>> Inserting city A (0,3481)
 
insert 0 3482 A
>> Inserting city A (0,3482)
 
insert 0 3483 A
>> Inserting city A (0,3483)
 
insert 0 3484 A
>> Inserting city A (0,3484)
 
insert 0 3485 A
>> Inserting city A (0,3485)
 
insert 0 3486 A
>> Inserting city A (0,3486)
 
insert 0 3487 A
>> Inserting city A (0,3487)
 
insert 0 3488 A
>> Inserting city A (0,3488)
 
insert 0 3489 A
>> Inserting city A (0,3489)
 
insert 0 3490 A
>> Inserting city A (0,3490)
 
insert 0 3491 A
>> Inserting city A (0,3491)
 
insert 0 3492 A
>> Inserting city A (0,3492)
 
insert 0 3493 A
>> Inserting city A (0,3493)
 
insert 0 3494 A
>> Inserting city A (0,3494)
 
insert 0 3495 A
>> Inserting city A (0,3495)
 
insert 0 3496 A
>> Inserting city A (0,3496)
 
insert 0 3497 A
>> Inserting city A (0,3497)
 
insert 0 3498 A
>> Inserting city A (0,3498)
 
insert 0 3499 A
>> Inserting city A (0,3499)
 
insert 0 3500 A
>> Inserting city A (0,3500)
 
insert 0 3501 A
>> Inserting city A (0,3501)
 
insert 0 3502 A
>> Inserting city A (0,3502)
 
insert 0 3503 A
>> Inserting city A (0,3503)
 
insert 0 3504 A
>> Inserting city A (0,3504)
 
insert 0 3505 A
>> Inserting city A (0,3505)
 
insert 0 3506 A
>> Inserting city A (0,3506)
 
insert 0 3507 A
>> Inserting city A (0,3507)
 
insert 0 3508 A
>> Inserting city A (0,3508)
 
insert 0 3509 A
>> Inserting city A (0,3509)
 
insert 0 3510 A
>> Inserting city A (0,3510)
 
insert 0 3511 A
>> Inserting city A (0,3511)
 
insert 0 3512 A
>> Inserting city A (0,3512)
 
insert 0 3513 A
>> Inserting city A (0,3513)
 
insert 0 3514 A
>> Inserting city A (0,3514)
 
insert 0 3515 A
>> Inserting city A (0,3515)
 
insert 0 3516 A
>> Inserting city A (0,3516)
 
insert 0 3517 A
>> Inserting city A (0,3517)
 
insert 0 3518 A
>> Inserting city A (0,3518)
 
insert 0 3519 A
>> Inserting city A (0,3519)
 
insert 0 3520 A
>> Inserting city A (0,3520)
 
insert 0 3521 A
>> Inserting city A (0,3521)
 
insert 0 3522 A
>> Inserting city A (0,3522)
 
insert 0 3523 A
>> Inserting city A (0,3523)
 
insert 0 3524 A
>> Inserting city A (0,3524)
 
insert 0 3525 A
>> Inserting city A (0,3525)
 
insert 0 3526 A
>> Inserting city A (0,3526)
 
insert 0 3527 A
>> Inserting city A (0,3527)
 
insert 0 3528 A
>> Inserting city A (0,3528)
 
insert 0 3529 A
>> Inserting city A (0,3529)
 
insert 0 3530 A
>> Inserting city A (0,3530)
 
insert 0 3531 A
>> Inserting city A (0,3531)
 
insert 0 3532 A
>> Inserting city A (0,3532)
 
insert 0 3533 A
>> Inserting city A (0,3533)
 
insert 0 3534 A
>> Inserting city A (0,3534)
 
insert 0 3535 A
>> Inserting city A (0,3535)
 
insert 0 3536 A
>> Inserting city A (0,3536)
 
insert 0 3537 A
>> Inserting city A (0,3537)
 
insert 0 3538 A
>> Inserting city A (0,3538)
 
insert 0 3539 A
>> Inserting city A (0,3539)
 
insert 0 3540 A
>> Inserting city A (0,3540)
 
insert 0 3541 A
>> Inserting city A (0,3541)
 
insert 0 3542 A
>> Inserting city A (0,3542)
 
insert 0 3543 A
>> Inserting city A (0,3543)
 
insert 0 3544 A
>> Inserting city A (0,3544)
 
insert 0 3545 A
>> Inserting city A (0,3545)
 
insert 0 3546 A
>> Inserting city A (0,3546)
 
insert 0 3547 A
>> Inserting city A (0,3547)
 
insert 0 3548 A
>> Inserting city A (0,3548)
 
insert 0 3549 A
>> Inserting city A (0,3549)
 
insert 0 3550 A
>> Inserting city A (0,3550)
 
insert 0 3551 A
>> Inserting city A (0,3551)
 
insert 0 3552 A
>> Inserting city A (0,3552)
 
insert 0 3553 A
>> Inserting city A (0,3553)
 
insert 0 3554 A
>> Inserting city A (0,3554)
 
insert 0 3555 A
>> Inserting city A (0,3555)
 
insert 0 3556 A
>> Inserting city A (0,3556)
 
insert 0 3557 A
>> Inserting city A (0,3557)
 
insert 0 3558 A
>> Inserting city A (0,3558)
 
insert 0 3559 A
>> Inserting city A (0,3559)
 
insert 0 3560 A
>> Inserting city A (0,3560)
 
insert 0 3561 A
>> Inserting city A (0,3561)
 
insert 0 3562 A
>> Inserting city A (0,3562)
 
insert 0 3563 A
>> Inserting city A (0,3563)
 
insert 0 3564 A
>> Inserting city A (0,3564)
 
insert 0 3565 A
>> Inserting city A (0,3565)
 
insert 0 3566 A
>> Inserting city A (0,3566)
 
insert 0 3567 A
>> Inserting city A (0,3567)
 
insert 0 3568 A
>> Inserting city A (0,3568)
 
insert 0 3569 A
>> Inserting city A (0,3569)
 
insert 0 3570 A
>> Inserting city A (0,3570)
 
insert 0 3571 A
>> Inserting city A (0,3571)
 
insert 0 3572 A
>> Inserting city A (0,3572)
 
insert 0 3573 A
>> Inserting city A (0,3573)
 
insert 0 3574 A
>> Inserting city A (0,3574)
 
insert 0 3575 A
>> Inserting city A (0,3575)
 
insert 0 3576 A
>> Inserting city A (0,3576)
 
insert 0 3577 A
>> Inserting city A (0,3577)
 
insert 0 3578 A
>> Inserting city A (0,3578)
 
insert 0 3579 A
>> Inserting city A (0,3579)
 
insert 0 3580 A
>> Inserting city A (0,3580)
 
insert 0 3581 A
>> Inserting city A (0,3581)
 
insert 0 3582 A
>> Inserting city A (0,3582)
 
insert 0 3583 A
>> Inserting city A (0,3583)
 
insert 0 3584 A
>> Inserting city A (0,3584)
 
insert 0 3585 A
>> Inserting city A (0,3585)
 
insert 0 3586 A
>> Inserting city A (0,3586)
 
insert 0 3587 A
>> Inserting city A (0,3587)
 
insert 0 3588 A
>> Inserting city A (0,3588)
 
insert 0 3589 A
>> Inserting city A (0,3589)
 
insert 0 3590 A
>> Inserting city A (0,3590)
 
insert 0 3591 A
>> Inserting city A (0,3591)
 
insert 0 3592 A
>> Inserting city A (0,3592)
 
insert 0 3593 A
>> Inserting city A (0,3593)
 
insert 0 3594 A
>> Inserting city A (0,3594)
 
insert 0 3595 A
>> Inserting city A (0,3595)
 
insert 0 3596 A
>> Inserting city A (0,3596)
 
insert 0 3597 A
>> Inserting city A (0,3597)
 
insert 0 3598 A
>> Inserting city A (0,3598)
 
insert 0 3599 A
>> Inserting city A (0,3599)
 
insert 0 3600 A
>> Inserting city A (0,3600)
 
insert 0 3601 A
>> Inserting city A (0,3601)
 
insert 0 3602 A
>> Inserting city A (0,3602)
 
insert 0 3603 A
>> Inserting city A (0,3603)
 
insert 0 3604 A
>> Inserting city A (0,3604)
 
insert 0 3605 A
>> Inserting city A (0,3605)
 
insert 0 3606 A
>> Inserting city A (0,3606)
 
insert 0 3607 A
>> Inserting city A (0,3607)
 
insert 0 3608 A
>> Inserting city A (0,3608)
 
insert 0 3609 A
>> Inserting city A (0,3609)
 
insert 0 3610 A
>> Inserting city A (0,3610)
 
insert 0 3611 A
>> Inserting city A (0,3611)
 
insert 0 3612 A
>> Inserting city A (0,3612)
 
insert 0 3613 A
>> Inserting city A (0,3613)
 
insert 0 3614 A
>> Inserting city A (0,3614)
 
insert 0 3615 A
>> Inserting city A (0,3615)
 
insert 0 3616 A
>> Inserting city A (0,3616)
 
insert 0 3617 A
>> Inserting city A (0,3617)
 
insert 0 3618 A
>> Inserting city A (0,3618)
 
insert 0 3619 A
>> Inserting city A (0,3619)
 
insert 0 3620 A
>> Inserting city A (0,3620)
 
insert 0 3621 A
>> Inserting city A (0,3621)
 
insert 0 3622 A
>> Inserting city A (0,3622)
 
insert 0 3623 A
>> Inserting city A (0,3623)
 
insert 0 3624 A
>> Inserting city A (0,3624)
 
insert 0 3625 A
>> Inserting city A (0,3625)
 
insert 0 3626 A
>> Inserting city A (0,3626)
 
insert 0 3627 A
>> Inserting city A (0,3627)
 
insert 0 3628 A
>> Inserting city A (0,3628)
 
insert 0 3629 A
>> Inserting city A (0,3629)
 
insert 0 3630 A
>> Inserting city A (0,3630)
 
insert 0 3631 A
>> Inserting city A (0,3631)
 
insert 0 3632 A
>> Inserting city A (0,3632)
 
insert 0 3633 A
>> Inserting city A (0,3633)
 
insert 0 3634 A
>> Inserting city A (0,3634)
 
insert 0 3635 A
>> Inserting city A (0,3635)
 
insert 0 3636 A
>> Inserting city A (0,3636)
 
insert 0 3637 A
>> Inserting city A (0,3637)
 
insert 0 3638 A
>> Inserting city A (0,3638)
 
insert 0 3639 A
>> Inserting city A (0,3639)
 
insert 0 3640 A
>> Inserting city A (0,3640)
 
insert 0 3641 A
>> Inserting city A (0,3641)
 
insert 0 3642 A
>> Inserting city A (0,3642)
 
insert 0 3643 A
>> Inserting city A (0,3643)
 
insert 0 3644 A
>> Inserting city A (0,3644)
 
insert 0 3645 A
>> Inserting city A (0,3645)
 
insert 0 3646 A
>> Inserting city A (0,3646)
 
insert 0 3647 A
>> Inserting city A (0,3647)
 
insert 0 3648 A
>> Inserting city A (0,3648)
 
insert 0 3649 A
>> Inserting city A (0,3649)
 
insert 0 3650 A
>> Inserting city A (0,3650)
 
insert 0 3651 A
>> Inserting city A (0,3651)
 
insert 0 3652 A
>> Inserting city A (0,3652)
 
insert 0 3653 A
>> Inserting city A (0,3653)
 
insert 0 3654 A
>> Inserting city A (0,3654)
 
insert 0 3655 A
>> Inserting city A (0,3655)
 
insert 0 3656 A
>> Inserting city A (0,3656)
 
insert 0 3657 A
>> Inserting city A (0,3657)
 
insert 0 3658 A
>> Inserting city A (0,3658)
 
insert 0 3659 A
>> Inserting city A (0,3659)
 
insert 0 3660 A
>> Inserting city A (0,3660)
 
insert 0 3661 A
>> Inserting city A (0,3661)
 
insert 0 3662 A
>> Inserting city A (0,3662)
 
insert 0 3663 A
>> Inserting city A (0,3663)
 
insert 0 3664 A
>> Inserting city A (0,3664)
 
insert 0 3665 A
>> Inserting city A (0,3665)
 
insert 0 3666 A
>> Inserting city A (0,3666)
 
insert 0 3667 A
>> Inserting city A (0,3667)
 
insert 0 3668 A
>> Inserting city A (0,3668)
 
insert 0 3669 A
>> Inserting city A (0,3669)
 
insert 0 3670 A
>> Inserting city A (0,3670)
 
insert 0 3671 A
>> Inserting city A (0,3671)
 
insert 0 3672 A
>> Inserting city A (0,3672)
 
insert 0 3673 A
>> Inserting city A (0,3673)
 
insert 0 3674 A
>> Inserting city A (0,3674)
 
insert 0 3675 A
>> Inserting city A (0,3675)
 
insert 0 3676 A
>> Inserting city A (0,3676)
 
insert 0 3677 A
>> Inserting city A (0,3677)
 
insert 0 3678 A
>> Inserting city A (0,3678)
 
insert 0 3679 A
>> Inserting city A (0,3679)
 
insert 0 3680 A
>> Inserting city A (0,3680)
 
insert 0 3681 A
>> Inserting city A (0,3681)
 
insert 0 3682 A
>> Inserting city A (0,3682)
 
insert 0 3683 A
>> Inserting city A (0,3683)
 
insert 0 3684 A
>> Inserting city A (0,3684)
 
insert 0 3685 A
>> Inserting city A (0,3685)
 
insert 0 3686 A
>> Inserting city A (0,3686)
 
insert 0 3687 A
>> Inserting city A (0,3687)
 
insert 0 3688 A
>> Inserting city A (0,3688)
 
insert 0 3689 A
>> Inserting city A (0,3689)
 
insert 0 3690 A
>> Inserting city A (0,3690)
 
insert 0 3691 A
>> Inserting city A (0,3691)
 
insert 0 3692 A
>> Inserting city A (0,3692)
 
insert 0 3693 A
>> Inserting city A (0,3693)
 
insert 0 3694 A
>> Inserting city A (0,3694)
 
insert 0 3695 A
>> Inserting city A (0,3695)
 
insert 0 3696 A
>> Inserting city A (0,3696)
 
insert 0 3697 A
>> Inserting city A (0,3697)
 
insert 0 3698 A
>> Inserting city A (0,3698)
 
insert 0 3699 A
>> Inserting city A (0,3699)
 
insert 0 3700 A
>> Inserting city A (0,3700)
 
insert 0 3701 A
>> Inserting city A (0,3701)
 
insert 0 3702 A
>> Inserting city A (0,3702)
 
insert 0 3703 A
>> Inserting city A (0,3703)
 
insert 0 3704 A
>> Inserting city A (0,3704)
 
insert 0 3705 A
>> Inserting city A (0,3705)
 
insert 0 3706 A
>> Inserting city A (0,3706)
 
insert 0 3707 A
>> Inserting city A (0,3707)
 
insert 0 3708 A
>> Inserting city A (0,3708)
 
insert 0 3709 A
>> Inserting city A (0,3709)
 
insert 0 3710 A
>> Inserting city A (0,3710)
 
insert 0 3711 A
>> Inserting city A (0,3711)
 
insert 0 3712 A
>> Inserting city A (0,3712)
 
insert 0 3713 A
>> Inserting city A (0,3713)
 
insert 0 3714 A
>> Inserting city A (0,3714)
 
insert 0 3715 A
>> Inserting city A (0,3715)
 
insert 0 3716 A
>> Inserting city A (0,3716)
 
insert 0 3717 A
>> Inserting city A (0,3717)
 
insert 0 3718 A
>> Inserting city A (0,3718)
 
insert 0 3719 A
>> Inserting city A (0,3719)
 
insert 0 3720 A
>> Inserting city A (0,3720)
 
insert 0 3721 A
>> Inserting city A (0,3721)
 
insert 0 3722 A
>> Inserting city A (0,3722)
 
insert 0 3723 A
>> Inserting city A (0,3723)
 
insert 0 3724 A
>> Inserting city A (0,3724)
 
insert 0 3725 A
>> Inserting city A (0,3725)
 
insert 0 3726 A
>> Inserting city A (0,3726)
 
insert 0 3727 A
>> Inserting city A (0,3727)
 
insert 0 3728 A
>> Inserting city A (0,3728)
 
insert 0 3729 A
>> Inserting city A (0,3729)
 
insert 0 3730 A
>> Inserting city A (0,3730)
 
insert 0 3731 A
>> Inserting city A (0,3731)
 
insert 0 3732 A
>> Inserting city A (0,3732)
 
insert 0 3733 A
>> Inserting city A (0,3733)
 
insert 0 3734 A
>> Inserting city A (0,3734)
 
insert 0 3735 A
>> Inserting city A (0,3735)
 
insert 0 3736 A
>> Inserting city A (0,3736)
 
insert 0 3737 A
>> Inserting city A (0,3737)
 
insert 0 3738 A
>> Inserting city A (0,3738)
 
insert 0 3739 A
>> Inserting city A (0,3739)
 
insert 0 3740 A
>> Inserting city A (0,3740)
 
insert 0 3741 A
>> Inserting city A (0,3741)
 
insert 0 3742 A
>> Inserting city A (0,3742)
 
insert 0 3743 A
>> Inserting city A (0,3743)
 
insert 0 3744 A
>> Inserting city A (0,3744)
 
insert 0 3745 A
>> Inserting city A (0,3745)
 
insert 0 3746 A
>> Inserting city A (0,3746)
 
insert 0 3747 A
>> Inserting city A (0,3747)
 
insert 0 3748 A
>> Inserting city A (0,3748)
 
insert 0 3749 A
>> Inserting city A (0,3749)
 
insert 0 3750 A
>> Inserting city A (0,3750)
 
insert 0 3751 A
>> Inserting city A (0,3751)
 
insert 0 3752 A
>> Inserting city A (0,3752)
 
insert 0 3753 A
>> Inserting city A (0,3753)
 
insert 0 3754 A
>> Inserting city A (0,3754)
 
insert 0 3755 A
>> Inserting city A (0,3755)
 
insert 0 3756 A
>> Inserting city A (0,3756)
 
insert 0 3757 A
>> Inserting city A (0,3757)
 
insert 0 3758 A
>> Inserting city A (0,3758)
 
insert 0 3759 A
>> Inserting city A (0,3759)
 
insert 0 3760 A
>> Inserting city A (0,3760)
 
insert 0 3761 A
>> Inserting city A (0,3761)
 
insert 0 3762 A
>> Inserting city A (0,3762)
 
insert 0 3763 A
>> Inserting city A (0,3763)
 
insert 0 3764 A
>> Inserting city A (0,3764)
 
insert 0 3765 A
>> Inserting city A (0,3765)
 
insert 0 3766 A
>> Inserting city A (0,3766)
 
insert 0 3767 A
>> Inserting city A (0,3767)
 
insert 0 3768 A
>> Inserting city A (0,3768)
 
insert 0 3769 A
>> Inserting city A (0,3769)
 
insert 0 3770 A
>> Inserting city A (0,3770)
 
insert 0 3771 A
>> Inserting city A (0,3771)
 
insert 0 3772 A
>> Inserting city A (0,3772)
 
insert 0 3773 A
>> Inserting city A (0,3773)
 
insert 0 3774 A
>> Inserting city A (0,3774)
 
insert 0 3775 A
>> Inserting city A (0,3775)
 
insert 0 3776 A
>> Inserting city A (0,3776)
 
insert 0 3777 A
>> Inserting city A (0,3777)
 
insert 0 3778 A
>> Inserting city A (0,3778)
 
insert 0 3779 A
>> Inserting city A (0,3779)
 
insert 0 3780 A
>> Inserting city A (0,3780)
 
insert 0 3781 A
>> Inserting city A (0,3781)
 
insert 0 3782 A
>> Inserting city A (0,3782)
 
insert 0 3783 A
>> Inserting city A (0,3783)
 
insert 0 3784 A
>> Inserting city A (0,3784)
 
insert 0 3785 A
>> Inserting city A (0,3785)
 
insert 0 3786 A
>> Inserting city A (0,3786)
 
insert 0 3787 A
>> Inserting city A (0,3787)
 
insert 0 3788 A
>> Inserting city A (0,3788)
 
insert 0 3789 A
>> Inserting city A (0,3789)
 
insert 0 3790 A
>> Inserting city A (0,3790)
 
insert 0 3791 A
>> Inserting city A (0,3791)
 
insert 0 3792 A
>> Inserting city A (0,3792)
 
insert 0 3793 A
>> Inserting city A (0,3793)
 
insert 0 3794 A
>> Inserting city A (0,3794)
 
insert 0 3795 A
>> Inserting city A (0,3795)
 
insert 0 3796 A
>> Inserting city A (0,3796)
 
insert 0 3797 A
>> Inserting city A (0,3797)
 
insert 0 3798 A
>> Inserting city A (0,3798)
 
insert 0 3799 A
>> Inserting city A (0,3799)
 
insert 0 3800 A
>> Inserting city A (0,3800)
 
insert 0 3801 A
>> Inserting city A (0,3801)
 
insert 0 3802 A
>> Inserting city A (0,3802)
 
insert 0 3803 A
>> Inserting city A (0,3803)
 
insert 0 3804 A
>> Inserting city A (0,3804)
 
insert 0 3805 A
>> Inserting city A (0,3805)
 
insert 0 3806 A
>> Inserting city A (0,3806)
 
insert 0 3807 A
>> Inserting city A (0,3807)
 
insert 0 3808 A
>> Inserting city A (0,3808)
 
insert 0 3809 A
>> Inserting city A (0,3809)
 
insert 0 3810 A
>> Inserting city A (0,3810)
 
insert 0 3811 A
>> Inserting city A (0,3811)
 
insert 0 3812 A
>> Inserting city A (0,3812)
 
insert 0 3813 A
>> Inserting city A (0,3813)
 
insert 0 3814 A
>> Inserting city A (0,3814)
 
insert 0 3815 A
>> Inserting city A (0,3815)
 
insert 0 3816 A
>> Inserting city A (0,3816)
 
insert 0 3817 A
>> Inserting city A (0,3817)
 
insert 0 3818 A
>> Inserting city A (0,3818)
 
insert 0 3819 A
>> Inserting city A (0,3819)
 
insert 0 3820 A
>> Inserting city A (0,3820)
 
insert 0 3821 A
>> Inserting city A (0,3821)
 
insert 0 3822 A
>> Inserting city A (0,3822)
 
insert 0 3823 A
>> Inserting city A (0,3823)
 
insert 0 3824 A
>> Inserting city A (0,3824)
 
insert 0 3825 A
>> Inserting city A (0,3825)
 
insert 0 3826 A
>> Inserting city A (0,3826)
 
insert 0 3827 A
>> Inserting city A (0,3827)
 
insert 0 3828 A
>> Inserting city A (0,3828)
 
insert 0 3829 A
>> Inserting city A (0,3829)
 
insert 0 3830 A
>> Inserting city A (0,3830)
 
insert 0 3831 A
>> Inserting city A (0,3831)
 
insert 0 3832 A
>> Inserting city A (0,3832)
 
insert 0 3833 A
>> Inserting city A (0,3833)
 
insert 0 3834 A
>> Inserting city A (0,3834)
 
insert 0 3835 A
>> Inserting city A (0,3835)
 
insert 0 3836 A
>> Inserting city A (0,3836)
 
insert 0 3837 A
>> Inserting city A (0,3837)
 
insert 0 3838 A
>> Inserting city A (0,3838)
 
insert 0 3839 A
>> Inserting city A (0,3839)
 
insert 0 3840 A
>> Inserting city A (0,3840)
 
insert 0 3841 A
>> Inserting city A (0,3841)
 
insert 0 3842 A
>> Inserting city A (0,3842)
 
insert 0 3843 A
>> Inserting city A (0,3843)
 
insert 0 3844 A
>> Inserting city A (0,3844)
 
insert 0 3845 A
>> Inserting city A (0,3845)
 
insert 0 3846 A
>> Inserting city A (0,3846)
 
insert 0 3847 A
>> Inserting city A (0,3847)
 
insert 0 3848 A
>> Inserting city A (0,3848)
 
insert 0 3849 A
>> Inserting city A (0,3849)
 
insert 0 3850 A
>> Inserting city A (0,3850)
 
insert 0 3851 A
>> Inserting city A (0,3851)
 
insert 0 3852 A
>> Inserting city A (0,3852)
 
insert 0 3853 A
>> Inserting city A (0,3853)
 
insert 0 3854 A
>> Inserting city A (0,3854)
 
insert 0 3855 A
>> Inserting city A (0,3855)
 
insert 0 3856 A
>> Inserting city A (0,3856)
 
insert 0 3857 A
>> Inserting city A (0,3857)
 
insert 0 3858 A
>> Inserting city A (0,3858)
 
insert 0 3859 A
>> Inserting city A (0,3859)
 
insert 0 3860 A
>> Inserting city A (0,3860)
 
insert 0 3861 A
>> Inserting city A (0,3861)
 
insert 0 3862 A
>> Inserting city A (0,3862)
 
insert 0 3863 A
>> Inserting city A (0,3863)
 
insert 0 3864 A
>> Inserting city A (0,3864)
 
insert 0 3865 A
>> Inserting city A (0,3865)
 
insert 0 3866 A
>> Inserting city A (0,3866)
 
insert 0 3867 A
>> Inserting city A (0,3867)
 
insert 0 3868 A
>> Inserting city A (0,3868)
 
insert 0 3869 A
>> Inserting city A (0,3869)
 
insert 0 3870 A
>> Inserting city A (0,3870)
 
insert 0 3871 A
>> Inserting city A (0,3871)
 
insert 0 3872 A
>> Inserting city A (0,3872)
 
insert 0 3873 A
>> Inserting city A (0,3873)
 
insert 0 3874 A
>> Inserting city A (0,3874)
 
insert 0 3875 A
>> Inserting city A (0,3875)
 
insert 0 3876 A
>> Inserting city A (0,3876)
 
insert 0 3877 A
>> Inserting city A (0,3877)
 
insert 0 3878 A
>> Inserting city A (0,3878)
 
insert 0 3879 A
>> Inserting city A (0,3879)
 
insert 0 3880 A
>> Inserting city A (0,3880)
 
insert 0 3881 A
>> Inserting city A (0,3881)
 
insert 0 3882 A
>> Inserting city A (0,3882)
 
insert 0 3883 A
>> Inserting city A (0,3883)
 
insert 0 3884 A
>> Inserting city A (0,3884)
 
insert 0 3885 A
>> Inserting city A (0,3885)
 
insert 0 3886 A
>> Inserting city A (0,3886)
 
insert 0 3887 A
>> Inserting city A (0,3887)
 
insert 0 3888 A
>> Inserting city A (0,3888)
 
insert 0 3889 A
>> Inserting city A (0,3889)
 
insert 0 3890 A
>> Inserting city A (0,3890)
 
insert 0 3891 A
>> Inserting city A (0,3891)
 
insert 0 3892 A
>> Inserting city A (0,3892)
 
insert 0 3893 A
>> Inserting city A (0,3893)
 
insert 0 3894 A
>> Inserting city A (0,3894)
 
insert 0 3895 A
>> Inserting city A (0,3895)
 
insert 0 3896 A
>> Inserting city A (0,3896)
 
insert 0 3897 A
>> Inserting city A (0,3897)
 
insert 0 3898 A
>> Inserting city A (0,3898)
 
insert 0 3899 A
>> Inserting city A (0,3899)
 
insert 0 3900 A
>> Inserting city A (0,3900)
 
insert 0 3901 A
>> Inserting city A (0,3901)
 
insert 0 3902 A
>> Inserting city A (0,3902)
 
insert 0 3903 A
>> Inserting city A (0,3903)
 
insert 0 3904 A
>> Inserting city A (0,3904)
 
insert 0 3905 A
>> Inserting city A (0,3905)
 
insert 0 3906 A
>> Inserting city A (0,3906)
 
insert 0 3907 A
>> Inserting city A (0,3907)
 
insert 0 3908 A
>> Inserting city A (0,3908)
 
insert 0 3909 A
>> Inserting city A (0,3909)
 
insert 0 3910 A
>> Inserting city A (0,3910)
 
insert 0 3911 A
>> Inserting city A (0,3911)
 
insert 0 3912 A
>> Inserting city A (0,3912)
 
insert 0 3913 A
>> Inserting city A (0,3913)
 
insert 0 3914 A
>> Inserting city A (0,3914)
 
insert 0 3915 A
>> Inserting city A (0,3915)
 
insert 0 3916 A
>> Inserting city A (0,3916)
 
insert 0 3917 A
>> Inserting city A (0,3917)
 
insert 0 3918 A
>> Inserting city A (0,3918)
 
insert 0 3919 A
>> Inserting city A (0,3919)
 
insert 0 3920 A
>> Inserting city A (0,3920)
 
insert 0 3921 A
>> Inserting city A (0,3921)
 
insert 0 3922 A
>> Inserting city A (0,3922)
 
insert 0 3923 A
>> Inserting city A (0,3923)
 
insert 0 3924 A
>> Inserting city A (0,3924)
 
insert 0 3925 A
>> Inserting city A (0,3925)
 
insert 0 3926 A
>> Inserting city A (0,3926)
 
insert 0 3927 A
>> Inserting city A (0,3927)
 
insert 0 3928 A
>> Inserting city A (0,3928)
 
insert 0 3929 A
>> Inserting city A (0,3929)
 
insert 0 3930 A
>> Inserting city A (0,3930)
 
insert 0 3931 A
>> Inserting city A (0,3931)
 
insert 0 3932 A
>> Inserting city A (0,3932)
 
insert 0 3933 A
>> Inserting city A (0,3933)
 
insert 0 3934 A
>> Inserting city A (0,3934)
 
insert 0 3935 A
>> Inserting city A (0,3935)
 
insert 0 3936 A
>> Inserting city A (0,3936)
 
insert 0 3937 A
>> Inserting city A (0,3937)
 
insert 0 3938 A
>> Inserting city A (0,3938)
 
insert 0 3939 A
>> Inserting city A (0,3939)
 
insert 0 3940 A
>> Inserting city A (0,3940)
 
insert 0 3941 A
>> Inserting city A (0,3941)
 
insert 0 3942 A
>> Inserting city A (0,3942)
 
insert 0 3943 A
>> Inserting city A (0,3943)
 
insert 0 3944 A
>> Inserting city A (0,3944)
 
insert 0 3945 A
>> Inserting city A (0,3945)
 
insert 0 3946 A
>> Inserting city A (0,3946)
 
insert 0 3947 A
>> Inserting city A (0,3947)
 
insert 0 3948 A
>> Inserting city A (0,3948)
 
insert 0 3949 A
>> Inserting city A (0,3949)
 
insert 0 3950 A
>> Inserting city A (0,3950)
 
insert 0 3951 A
>> Inserting city A (0,3951)
 
insert 0 3952 A
>> Inserting city A (0,3952)
 
insert 0 3953 A
>> Inserting city A (0,3953)
 
insert 0 3954 A
>> Inserting city A (0,3954)
 
insert 0 3955 A
>> Inserting city A (0,3955)
 
insert 0 3956 A
>> Inserting city A (0,3956)
 
insert 0 3957 A
>> Inserting city A (0,3957)
 
insert 0 3958 A
>> Inserting city A (0,3958)
 
insert 0 3959 A
>> Inserting city A (0,3959)
 
insert 0 3960 A
>> Inserting city A (0,3960)
 
insert 0 3961 A
>> Inserting city A (0,3961)
 
insert 0 3962 A
>> Inserting city A (0,3962)
 
insert 0 3963 A
>> Inserting city A (0,3963)
 
insert 0 3964 A
>> Inserting city A (0,3964)
 
insert 0 3965 A
>> Inserting city A (0,3965)
 
insert 0 3966 A
>> Inserting city A (0,3966)
 
insert 0 3967 A
>> Inserting city A (0,3967)
 
insert 0 3968 A
>> Inserting city A (0,3968)
 
insert 0 3969 A
>> Inserting city A (0,3969)
 
insert 0 3970 A
>> Inserting city A (0,3970)
 
insert 0 3971 A
>> Inserting city A (0,3971)
 
insert 0 3972 A
>> Inserting city A (0,3972)
 
insert 0 3973 A
>> Inserting city A (0,3973)
 
insert 0 3974 A
>> Inserting city A (0,3974)
 
insert 0 3975 A
>> Inserting city A (0,3975)
 
insert 0 3976 A
>> Inserting city A (0,3976)
 
insert 0 3977 A
>> Inserting city A (0,3977)
 
insert 0 3978 A
>> Inserting city A (0,3978)
 
insert 0 3979 A
>> Inserting city A (0,3979)
 
insert 0 3980 A
>> Inserting city A (0,3980)
 
insert 0 3981 A
>> Inserting city A (0,3981)
 
insert 0 3982 A
>> Inserting city A (0,3982)
 
insert 0 3983 A
>> Inserting city A (0,3983)
 
insert 0 3984 A
>> Inserting city A (0,3984)
 
insert 0 3985 A
>> Inserting city A (0,3985)
 
insert 0 3986 A
>> Inserting city A (0,3986)
 
insert 0 3987 A
>> Inserting city A (0,3987)
 
insert 0 3988 A
>> Inserting city A (0,3988)
 
insert 0 3989 A
>> Inserting city A (0,3989)
 
insert 0 3990 A
>> Inserting city A (0,3990)
 
insert 0 3991 A
>> Inserting city A (0,3991)
 
insert 0 3992 A
>> Inserting city A (0,3992)
 
insert 0 3993 A
>> Inserting city A (0,3993)
 
insert 0 3994 A
>> Inserting city A (0,3994)
 
insert 0 3995 A
>> Inserting city A (0,3995)
 
insert 0 3996 A
>> Inserting city A (0,3996)
 
insert 0 3997 A
>> Inserting city A (0,3997)
 
insert 0 3998 A
>> Inserting city A (0,3998)
 
insert 0 3999 A
>> Inserting city A (0,3999)
 
insert 0 4000 A
>> Inserting city A (0,4000)
 
insert 0 4001 A
>> Inserting city A (0,4001)
 
insert 0 4002 A
>> Inserting city A (0,4002)
 
insert 0 4003 A
>> Inserting city A (0,4003)
 
insert 0 4004 A
>> Inserting city A (0,4004)
 
insert 0 4005 A
>> Inserting city A (0,4005)
 
insert 0 4006 A
>> Inserting city A (0,4006)
 
insert 0 4007 A
>> Inserting city A (0,4007)
 
insert 0 4008 A
>> Inserting city A (0,4008)
 
insert 0 4009 A
>> Inserting city A (0,4009)
 
insert 0 4010 A
>> Inserting city A (0,4010)
 
insert 0 4011 A
>> Inserting city A (0,4011)
 
insert 0 4012 A
>> Inserting city A (0,4012)
 
insert 0 4013 A
>> Inserting city A (0,4013)
 
insert 0 4014 A
>> Inserting city A (0,4014)
 
insert 0 4015 A
>> Inserting city A (0,4015)
 
insert 0 4016 A
>> Inserting city A (0,4016)
 
insert 0 4017 A
>> Inserting city A (0,4017)
 
insert 0 4018 A
>> Inserting city A (0,4018)
 
insert 0 4019 A
>> Inserting city A (0,4019)
 
insert 0 4020 A
>> Inserting city A (0,4020)
 
insert 0 4021 A
>> Inserting city A (0,4021)
 
insert 0 4022 A
>> Inserting city A (0,4022)
 
insert 0 4023 A
>> Inserting city A (0,4023)
 
insert 0 4024 A
>> Inserting city A (0,4024)
 
insert 0 4025 A
>> Inserting city A (0,4025)
 
insert 0 4026 A
>> Inserting city A (0,4026)
 
insert 0 4027 A
>> Inserting city A (0,4027)
 
insert 0 4028 A
>> Inserting city A (0,4028)
 
insert 0 4029 A
>> Inserting city A (0,4029)
 
insert 0 4030 A
>> Inserting city A (0,4030)
 
insert 0 4031 A
>> Inserting city A (0,4031)
 
insert 0 4032 A
>> Inserting city A (0,4032)
 
insert 0 4033 A
>> Inserting city A (0,4033)
 
insert 0 4034 A
>> Inserting city A (0,4034)
 
insert 0 4035 A
>> Inserting city A (0,4035)
 
insert 0 4036 A
>> Inserting city A (0,4036)
 
insert 0 4037 A
>> Inserting city A (0,4037)
 
insert 0 4038 A
>> Inserting city A (0,4038)
 
insert 0 4039 A
>> Inserting city A (0,4039)
 
insert 0 4040 A
>> Inserting city A (0,4040)
 
insert 0 4041 A
>> Inserting city A (0,4041)
 
insert 0 4042 A
>> Inserting city A (0,4042)
 
insert 0 4043 A
>> Inserting city A (0,4043)
 
insert 0 4044 A
>> Inserting city A (0,4044)
 
insert 0 4045 A
>> Inserting city A (0,4045)
 
insert 0 4046 A
>> Inserting city A (0,4046)
 
insert 0 4047 A
>> Inserting city A (0,4047)
 
insert 0 4048 A
>> Inserting city A (0,4048)
 
insert 0 4049 A
>> Inserting city A (0,4049)
 
insert 0 4050 A
>> Inserting city A (0,4050)
 
insert 0 4051 A
>> Inserting city A (0,4051)
 
insert 0 4052 A
>> Inserting city A (0,4052)
 
insert 0 4053 A
>> Inserting city A (0,4053)
 
insert 0 4054 A
>> Inserting city A (0,4054)
 
insert 0 4055 A
>> Inserting city A (0,4055)
 
insert 0 4056 A
>> Inserting city A (0,4056)
 
insert 0 4057 A
>> Inserting city A (0,4057)
 
insert 0 4058 A
>> Inserting city A (0,4058)
 
insert 0 4059 A
>> Inserting city A (0,4059)
 
insert 0 4060 A
>> Inserting city A (0,4060)
 
insert 0 4061 A
>> Inserting city A (0,4061)
 
insert 0 4062 A
>> Inserting city A (0,4062)
 
insert 0 4063 A
>> Inserting city A (0,4063)
 
insert 0 4064 A
>> Inserting city A (0,4064)
 
insert 0 4065 A
>> Inserting city A (0,4065)
 
insert 0 4066 A
>> Inserting city A (0,4066)
 
insert 0 4067 A
>> Inserting city A (0,4067)
 
insert 0 4068 A
>> Inserting city A (0,4068)
 
insert 0 4069 A
>> Inserting city A (0,4069)
 
insert 0 4070 A
>> Inserting city A (0,4070)
 
insert 0 4071 A
>> Inserting city A (0,4071)
 
insert 0 4072 A
>> Inserting city A (0,4072)
 
insert 0 4073 A
>> Inserting city A (0,4073)
 
insert 0 4074 A
>> Inserting city A (0,4074)
 
insert 0 4075 A
>> Inserting city A (0,4075)
 
insert 0 4076 A
>> Inserting city A (0,4076)
 
insert 0 4077 A
>> Inserting city A (0,4077)
 
insert 0 4078 A
>> Inserting city A (0,4078)
 
insert 0 4079 A
>> Inserting city A (0,4079)
 
insert 0 4080 A
>> Inserting city A (0,4080)
 
insert 0 4081 A
>> Inserting city A (0,4081)
 
insert 0 4082 A
>> Inserting city A (0,4082)
 
insert 0 4083 A
>> Inserting city A (0,4083)
 
insert 0 4084 A
>> Inserting city A (0,4084)
 
insert 0 4085 A
>> Inserting city A (0,4085)
 
insert 0 4086 A
>> Inserting city A (0,4086)
 
insert 0 4087 A
>> Inserting city A (0,4087)
 
insert 0 4088 A
>> Inserting city A (0,4088)
 
insert 0 4089 A
>> Inserting city A (0,4089)
 
insert 0 4090 A
>> Inserting city A (0,4090)
 
insert 0 4091 A
>> Inserting city A (0,4091)
 
insert 0 4092 A
>> Inserting city A (0,4092)
 
insert 0 4093 A
>> Inserting city A (0,4093)
 
insert 0 4094 A
>> Inserting city A (0,4094)
 
insert 0 4095 A
>> Inserting city A (0,4095)
 
insert 0 4096 A
>> Inserting city A (0,4096)
 
insert 0 4097 A
>> Inserting city A (0,4097)
 
insert 0 4098 A
>> Inserting city A (0,4098)
 
insert 0 4099 A
>> Inserting city A (0,4099)
 
insert 0 4100 A
>> Inserting city A (0,4100)
 
insert 0 4101 A
>> Inserting city A (0,4101)
 
insert 0 4102 A
>> Inserting city A (0,4102)
 
insert 0 4103 A
>> Inserting city A (0,4103)
 
insert 0 4104 A
>> Inserting city A (0,4104)
 
insert 0 4105 A
>> Inserting city A (0,4105)
 
insert 0 4106 A
>> Inserting city A (0,4106)
 
insert 0 4107 A
>> Inserting city A (0,4107)
 
insert 0 4108 A
>> Inserting city A (0,4108)
 
insert 0 4109 A
>> Inserting city A (0,4109)
 
insert 0 4110 A
>> Inserting city A (0,4110)
 
insert 0 4111 A
>> Inserting city A (0,4111)
 
insert 0 4112 A
>> Inserting city A (0,4112)
 
insert 0 4113 A
>> Inserting city A (0,4113)
 
insert 0 4114 A
>> Inserting city A (0,4114)
 
insert 0 4115 A
>> Inserting city A (0,4115)
 
insert 0 4116 A
>> Inserting city A (0,4116)
 
insert 0 4117 A
>> Inserting city A (0,4117)
 
insert 0 4118 A
>> Inserting city A (0,4118)
 
insert 0 4119 A
>> Inserting city A (0,4119)
 
insert 0 4120 A
>> Inserting city A (0,4120)
 
insert 0 4121 A
>> Inserting city A (0,4121)
 
insert 0 4122 A
>> Inserting city A (0,4122)
 
insert 0 4123 A
>> Inserting city A (0,4123)
 
insert 0 4124 A
>> Inserting city A (0,4124)
 
insert 0 4125 A
>> Inserting city A (0,4125)
 
insert 0 4126 A
>> Inserting city A (0,4126)
 
insert 0 4127 A
>> Inserting city A (0,4127)
 
insert 0 4128 A
>> Inserting city A (0,4128)
 
insert 0 4129 A
>> Inserting city A (0,4129)
 
insert 0 4130 A
>> Inserting city A (0,4130)
 
insert 0 4131 A
>> Inserting city A (0,4131)
 
insert 0 4132 A
>> Inserting city A (0,4132)
 
insert 0 4133 A
>> Inserting city A (0,4133)
 
insert 0 4134 A
>> Inserting city A (0,4134)
 
insert 0 4135 A
>> Inserting city A (0,4135)
 
insert 0 4136 A
>> Inserting city A (0,4136)
 
insert 0 4137 A
>> Inserting city A (0,4137)
 
insert 0 4138 A
>> Inserting city A (0,4138)
 
insert 0 4139 A
>> Inserting city A (0,4139)
 
insert 0 4140 A
>> Inserting city A (0,4140)
 
insert 0 4141 A
>> Inserting city A (0,4141)
 
insert 0 4142 A
>> Inserting city A (0,4142)
 
insert 0 4143 A
>> Inserting city A (0,4143)
 
insert 0 4144 A
>> Inserting city A (0,4144)
 
insert 0 4145 A
>> Inserting city A (0,4145)
 
insert 0 4146 A
>> Inserting city A (0,4146)
 
insert 0 4147 A
>> Inserting city A (0,4147)
 
insert 0 4148 A
>> Inserting city A (0,4148)
 
insert 0 4149 A
>> Inserting city A (0,4149)
 
insert 0 4150 A
>> Inserting city A (0,4150)
 
insert 0 4151 A
>> Inserting city A (0,4151)
 
insert 0 4152 A
>> Inserting city A (0,4152)
 
insert 0 4153 A
>> Inserting city A (0,4153)
 
insert 0 4154 A
>> Inserting city A (0,4154)
 
insert 0 4155 A
>> Inserting city A (0,4155)
 
insert 0 4156 A
>> Inserting city A (0,4156)
 
insert 0 4157 A
>> Inserting city A (0,4157)
 
insert 0 4158 A
>> Inserting city A (0,4158)
 
insert 0 4159 A
>> Inserting city A (0,4159)
 
insert 0 4160 A
>> Inserting city A (0,4160)
 
insert 0 4161 A
>> Inserting city A (0,4161)
 
insert 0 4162 A
>> Inserting city A (0,4162)
 
insert 0 4163 A
>> Inserting city A (0,4163)
 
insert 0 4164 A
>> Inserting city A (0,4164)
 
insert 0 4165 A
>> Inserting city A (0,4165)
 
insert 0 4166 A
>> Inserting city A (0,4166)
 
insert 0 4167 A
>> Inserting city A (0,4167)
 
insert 0 4168 A
>> Inserting city A (0,4168)
 
insert 0 4169 A
>> Inserting city A (0,4169)
 
insert 0 4170 A
>> Inserting city A (0,4170)
 
insert 0 4171 A
>> Inserting city A (0,4171)
 
insert 0 4172 A
>> Inserting city A (0,4172)
 
insert 0 4173 A
>> Inserting city A (0,4173)
 
insert 0 4174 A
>> Inserting city A (0,4174)
 
insert 0 4175 A
>> Inserting city A (0,4175)
 
insert 0 4176 A
>> Inserting city A (0,4176)
 
insert 0 4177 A
>> Inserting city A (0,4177)
 
insert 0 4178 A
>> Inserting city A (0,4178)
 
insert 0 4179 A
>> Inserting city A (0,4179)
 
insert 0 4180 A
>> Inserting city A (0,4180)
 
insert 0 4181 A
>> Inserting city A (0,4181)
 
insert 0 4182 A
>> Inserting city A (0,4182)
 
insert 0 4183 A
>> Inserting city A (0,4183)
 
insert 0 4184 A
>> Inserting city A (0,4184)
 
insert 0 4185 A
>> Inserting city A (0,4185)
 
insert 0 4186 A
>> Inserting city A (0,4186)
 
insert 0 4187 A
>> Inserting city A (0,4187)
 
insert 0 4188 A
>> Inserting city A (0,4188)
 
insert 0 4189 A
>> Inserting city A (0,4189)
 
insert 0 4190 A
>> Inserting city A (0,4190)
 
insert 0 4191 A
>> Inserting city A (0,4191)
 
insert 0 4192 A
>> Inserting city A (0,4192)
 
insert 0 4193 A
>> Inserting city A (0,4193)
 
insert 0 4194 A
>> Inserting city A (0,4194)
 
insert 0 4195 A
>> Inserting city A (0,4195)
 
insert 0 4196 A
>> Inserting city A (0,4196)
 
insert 0 4197 A
>> Inserting city A (0,4197)
 
insert 0 4198 A
>> Inserting city A (0,4198)
 
insert 0 4199 A
>> Inserting city A (0,4199)
 
insert 0 4200 A
>> Inserting city A (0,4200)
 
insert 0 4201 A
>> Inserting city A (0,4201)
 
insert 0 4202 A
>> Inserting city A (0,4202)
 
insert 0 4203 A
>> Inserting city A (0,4203)
 
insert 0 4204 A
>> Inserting city A (0,4204)
 
insert 0 4205 A
>> Inserting city A (0,4205)
 
insert 0 4206 A
>> Inserting city A (0,4206)
 
insert 0 4207 A
>> Inserting city A (0,4207)
 
insert 0 4208 A
>> Inserting city A (0,4208)
 
insert 0 4209 A
>> Inserting city A (0,4209)
 
insert 0 4210 A
>> Inserting city A (0,4210)
 
insert 0 4211 A
>> Inserting city A (0,4211)
 
insert 0 4212 A
>> Inserting city A (0,4212)
 
insert 0 4213 A
>> Inserting city A (0,4213)
 
insert 0 4214 A
>> Inserting city A (0,4214)
 
insert 0 4215 A
>> Inserting city A (0,4215)
 
insert 0 4216 A
>> Inserting city A (0,4216)
 
insert 0 4217 A
>> Inserting city A (0,4217)
 
insert 0 4218 A
>> Inserting city A (0,4218)
 
insert 0 4219 A
>> Inserting city A (0,4219)
 
insert 0 4220 A
>> Inserting city A (0,4220)
 
insert 0 4221 A
>> Inserting city A (0,4221)
 
insert 0 4222 A
>> Inserting city A (0,4222)
 
insert 0 4223 A
>> Inserting city A (0,4223)
 
insert 0 4224 A
>> Inserting city A (0,4224)
 
insert 0 4225 A
>> Inserting city A (0,4225)
 
insert 0 4226 A
>> Inserting city A (0,4226)
 
insert 0 4227 A
>> Inserting city A (0,4227)
 
insert 0 4228 A
>> Inserting city A (0,4228)
 
insert 0 4229 A
>> Inserting city A (0,4229)
 
insert 0 4230 A
>> Inserting city A (0,4230)
 
insert 0 4231 A
>> Inserting city A (0,4231)
 
insert 0 4232 A
>> Inserting city A (0,4232)
 
insert 0 4233 A
>> Inserting city A (0,4233)
 
insert 0 4234 A
>> Inserting city A (0,4234)
 
insert 0 4235 A
>> Inserting city A (0,4235)
 
insert 0 4236 A
>> Inserting city A (0,4236)
 
insert 0 4237 A
>> Inserting city A (0,4237)
 
insert 0 4238 A
>> Inserting city A (0,4238)
 
insert 0 4239 A
>> Inserting city A (0,4239)
 
insert 0 4240 A
>> Inserting city A (0,4240)
 
insert 0 4241 A
>> Inserting city A (0,4241)
 
insert 0 4242 A
>> Inserting city A (0,4242)
 
insert 0 4243 A
>> Inserting city A (0,4243)
 
insert 0 4244 A
>> Inserting city A (0,4244)
 
insert 0 4245 A
>> Inserting city A (0,4245)
 
insert 0 4246 A
>> Inserting city A (0,4246)
 
insert 0 4247 A
>> Inserting city A (0,4247)
 
insert 0 4248 A
>> Inserting city A (0,4248)
 
insert 0 4249 A
>> Inserting city A (0,4249)
 
insert 0 4250 A
>> Inserting city A (0,4250)
 
insert 0 4251 A
>> Inserting city A (0,4251)
 
insert 0 4252 A
>> Inserting city A (0,4252)
 
insert 0 4253 A
>> Inserting city A (0,4253)
 
insert 0 4254 A
>> Inserting city A (0,4254)
 
insert 0 4255 A
>> Inserting city A (0,4255)
 
insert 0 4256 A
>> Inserting city A (0,4256)
 
insert 0 4257 A
>> Inserting city A (0,4257)
 
insert 0 4258 A
>> Inserting city A (0,4258)
 
insert 0 4259 A
>> Inserting city A (0,4259)
 
insert 0 4260 A
>> Inserting city A (0,4260)
 
insert 0 4261 A
>> Inserting city A (0,4261)
 
insert 0 4262 A
>> Inserting city A (0,4262)
 
insert 0 4263 A
>> Inserting city A (0,4263)
 
insert 0 4264 A
>> Inserting city A (0,4264)
 
insert 0 4265 A
>> Inserting city A (0,4265)
 
insert 0 4266 A
>> Inserting city A (0,4266)
 
insert 0 4267 A
>> Inserting city A (0,4267)
 
insert 0 4268 A
>> Inserting city A (0,4268)
 
insert 0 4269 A
>> Inserting city A (0,4269)
 
insert 0 4270 A
>> Inserting city A (0,4270)
 
insert 0 4271 A
>> Inserting city A (0,4271)
 
insert 0 4272 A
>> Inserting city A (0,4272)
 
insert 0 4273 A
>> Inserting city A (0,4273)
 
insert 0 4274 A
>> Inserting city A (0,4274)
 
insert 0 4275 A
>> Inserting city A (0,4275)
 
insert 0 4276 A
>> Inserting city A (0,4276)
 
insert 0 4277 A
>> Inserting city A (0,4277)
 
insert 0 4278 A
>> Inserting city A (0,4278)
 
insert 0 4279 A
>> Inserting city A (0,4279)
 
insert 0 4280 A
>> Inserting city A (0,4280)
 
insert 0 4281 A
>> Inserting city A (0,4281)
 
insert 0 4282 A
>> Inserting city A (0,4282)
 
insert 0 4283 A
>> Inserting city A (0,4283)
 
insert 0 4284 A
>> Inserting city A (0,4284)
 
insert 0 4285 A
>> Inserting city A (0,4285)
 
insert 0 4286 A
>> Inserting city A (0,4286)
 
insert 0 4287 A
>> Inserting city A (0,4287)
 
insert 0 4288 A
>> Inserting city A (0,4288)
 
insert 0 4289 A
>> Inserting city A (0,4289)
 
insert 0 4290 A
>> Inserting city A (0,4290)
 
insert 0 4291 A
>> Inserting city A (0,4291)
 
insert 0 4292 A
>> Inserting city A (0,4292)
 
insert 0 4293 A
>> Inserting city A (0,4293)
 
insert 0 4294 A
>> Inserting city A (0,4294)
 
insert 0 4295 A
>> Inserting city A (0,4295)
 
insert 0 4296 A
>> Inserting city A (0,4296)
 
insert 0 4297 A
>> Inserting city A (0,4297)
 
insert 0 4298 A
>> Inserting city A (0,4298)
 
insert 0 4299 A
>> Inserting city A (0,4299)
 
insert 0 4300 A
>> Inserting city A (0,4300)
 
insert 0 4301 A
>> Inserting city A (0,4301)
 
insert 0 4302 A
>> Inserting city A (0,4302)
 
insert 0 4303 A
>> Inserting city A (0,4303)
 
insert 0 4304 A
>> Inserting city A (0,4304)
 
insert 0 4305 A
>> Inserting city A (0,4305)
 
insert 0 4306 A
>> Inserting city A (0,4306)
 
insert 0 4307 A
>> Inserting city A (0,4307)
 
insert 0 4308 A
>> Inserting city A (0,4308)
 
insert 0 4309 A
>> Inserting city A (0,4309)
 
insert 0 4310 A
>> Inserting city A (0,4310)
 
insert 0 4311 A
>> Inserting city A (0,4311)
 
insert 0 4312 A
>> Inserting city A (0,4312)
 
insert 0 4313 A
>> Inserting city A (0,4313)
 
insert 0 4314 A
>> Inserting city A (0,4314)
 
insert 0 4315 A
>> Inserting city A (0,4315)
 
insert 0 4316 A
>> Inserting city A (0,4316)
 
insert 0 4317 A
>> Inserting city A (0,4317)
 
insert 0 4318 A
>> Inserting city A (0,4318)
 
insert 0 4319 A
>> Inserting city A (0,4319)
 
insert 0 4320 A
>> Inserting city A (0,4320)
 
insert 0 4321 A
>> Inserting city A (0,4321)
 
insert 0 4322 A
>> Inserting city A (0,4322)
 
insert 0 4323 A
>> Inserting city A (0,4323)
 
insert 0 4324 A
>> Inserting city A (0,4324)
 
insert 0 4325 A
>> Inserting city A (0,4325)
 
insert 0 4326 A
>> Inserting city A (0,4326)
 
insert 0 4327 A
>> Inserting city A (0,4327)
 
insert 0 4328 A
>> Inserting city A (0,4328)
 
insert 0 4329 A
>> Inserting city A (0,4329)
 
insert 0 4330 A
>> Inserting city A (0,4330)
 
insert 0 4331 A
>> Inserting city A (0,4331)
 
insert 0 4332 A
>> Inserting city A (0,4332)
 
insert 0 4333 A
>> Inserting city A (0,4333)
 
insert 0 4334 A
>> Inserting city A (0,4334)
 
insert 0 4335 A
>> Inserting city A (0,4335)
 
insert 0 4336 A
>> Inserting city A (0,4336)
 
insert 0 4337 A
>> Inserting city A (0,4337)
 
insert 0 4338 A
>> Inserting city A (0,4338)
 
insert 0 4339 A
>> Inserting city A (0,4339)
 
insert 0 4340 A
>> Inserting city A (0,4340)
 
insert 0 4341 A
>> Inserting city A (0,4341)
 
insert 0 4342 A
>> Inserting city A (0,4342)
 
insert 0 4343 A
>> Inserting city A (0,4343)
 
insert 0 4344 A
>> Inserting city A (0,4344)
 
insert 0 4345 A
>> Inserting city A (0,4345)
 
insert 0 4346 A
>> Inserting city A (0,4346)
 
insert 0 4347 A
>> Inserting city A (0,4347)
 
insert 0 4348 A
>> Inserting city A (0,4348)
 
insert 0 4349 A
>> Inserting city A (0,4349)
 
insert 0 4350 A
>> Inserting city A (0,4350)
 
insert 0 4351 A
>> Inserting city A (0,4351)
 
insert 0 4352 A
>> Inserting city A (0,4352)
 
insert 0 4353 A
>> Inserting city A (0,4353)
 
insert 0 4354 A
>> Inserting city A (0,4354)
 
insert 0 4355 A
>> Inserting city A (0,4355)
 
insert 0 4356 A
>> Inserting city A (0,4356)
 
insert 0 4357 A
>> Inserting city A (0,4357)
 
insert 0 4358 A
>> Inserting city A (0,4358)
 
insert 0 4359 A
>> Inserting city A (0,4359)
 
insert 0 4360 A
>> Inserting city A (0,4360)
 
insert 0 4361 A
>> Inserting city A (0,4361)
 
insert 0 4362 A
>> Inserting city A (0,4362)
 
insert 0 4363 A
>> Inserting city A (0,4363)
 
insert 0 4364 A
>> Inserting city A (0,4364)
 
insert 0 4365 A
>> Inserting city A (0,4365)
 
insert 0 4366 A
>> Inserting city A (0,4366)
 
insert 0 4367 A
>> Inserting city A (0,4367)
 
insert 0 4368 A
>> Inserting city A (0,4368)
 
insert 0 4369 A
>> Inserting city A (0,4369)
 
insert 0 4370 A
>> Inserting city A (0,4370)
 
insert 0 4371 A
>> Inserting city A (0,4371)
 
insert 0 4372 A
>> Inserting city A (0,4372)
 
insert 0 4373 A
>> Inserting city A (0,4373)
 
insert 0 4374 A
>> Inserting city A (0,4374)
 
insert 0 4375 A
>> Inserting city A (0,4375)
 
insert 0 4376 A
>> Inserting city A (0,4376)
 
insert 0 4377 A
>> Inserting city A (0,4377)
 
insert 0 4378 A
>> Inserting city A (0,4378)
 
insert 0 4379 A
>> Inserting city A (0,4379)
 
insert 0 4380 A
>> Inserting city A (0,4380)
 
insert 0 4381 A
>> Inserting city A (0,4381)
 
insert 0 4382 A
>> Inserting city A (0,4382)
 
insert 0 4383 A
>> Inserting city A (0,4383)
 
insert 0 4384 A
>> Inserting city A (0,4384)
 
insert 0 4385 A
>> Inserting city A (0,4385)
 
insert 0 4386 A
>> Inserting city A (0,4386)
 
insert 0 4387 A
>> Inserting city A (0,4387)
 
insert 0 4388 A
>> Inserting city A (0,4388)
 
insert 0 4389 A
>> Inserting city A (0,4389)
 
insert 0 4390 A
>> Inserting city A (0,4390)
 
insert 0 4391 A
>> Inserting city A (0,4391)
 
insert 0 4392 A
>> Inserting city A (0,4392)
 
insert 0 4393 A
>> Inserting city A (0,4393)
 
insert 0 4394 A
>> Inserting city A (0,4394)
 
insert 0 4395 A
>> Inserting city A (0,4395)
 
insert 0 4396 A
>> Inserting city A (0,4396)
 
insert 0 4397 A
>> Inserting city A (0,4397)
 
insert 0 4398 A
>> Inserting city A (0,4398)
 
insert 0 4399 A
>> Inserting city A (0,4399)
 
insert 0 4400 A
>> Inserting city A (0,4400)
 
insert 0 4401 A
>> Inserting city A (0,4401)
 
insert 0 4402 A
>> Inserting city A (0,4402)
 
insert 0 4403 A
>> Inserting city A (0,4403)
 
insert 0 4404 A
>> Inserting city A (0,4404)
 
insert 0 4405 A
>> Inserting city A (0,4405)
 
insert 0 4406 A
>> Inserting city A (0,4406)
 
insert 0 4407 A
>> Inserting city A (0,4407)
 
insert 0 4408 A
>> Inserting city A (0,4408)
 
insert 0 4409 A
>> Inserting city A (0,4409)
 
insert 0 4410 A
>> Inserting city A (0,4410)
 
insert 0 4411 A
>> Inserting city A (0,4411)
 
insert 0 4412 A
>> Inserting city A (0,4412)
 
insert 0 4413 A
>> Inserting city A (0,4413)
 
insert 0 4414 A
>> Inserting city A (0,4414)
 
insert 0 4415 A
>> Inserting city A (0,4415)
 
insert 0 4416 A
>> Inserting city A (0,4416)
 
insert 0 4417 A
>> Inserting city A (0,4417)
 
insert 0 4418 A
>> Inserting city A (0,4418)
 
insert 0 4419 A
>> Inserting city A (0,4419)
 
insert 0 4420 A
>> Inserting city A (0,4420)
 
insert 0 4421 A
>> Inserting city A (0,4421)
 
insert 0 4422 A
>> Inserting city A (0,4422)
 
insert 0 4423 A
>> Inserting city A (0,4423)
 
insert 0 4424 A
>> Inserting city A (0,4424)
 
insert 0 4425 A
>> Inserting city A (0,4425)
 
insert 0 4426 A
>> Inserting city A (0,4426)
 
insert 0 4427 A
>> Inserting city A (0,4427)
 
insert 0 4428 A
>> Inserting city A (0,4428)
 
insert 0 4429 A
>> Inserting city A (0,4429)
 
insert 0 4430 A
>> Inserting city A (0,4430)
 
insert 0 4431 A
>> Inserting city A (0,4431)
 
insert 0 4432 A
>> Inserting city A (0,4432)
 
insert 0 4433 A
>> Inserting city A (0,4433)
 
insert 0 4434 A
>> Inserting city A (0,4434)
 
insert 0 4435 A
>> Inserting city A (0,4435)
 
insert 0 4436 A
>> Inserting city A (0,4436)
 
insert 0 4437 A
>> Inserting city A (0,4437)
 
insert 0 4438 A
>> Inserting city A (0,4438)
 
insert 0 4439 A
>> Inserting city A (0,4439)
 
insert 0 4440 A
>> Inserting city A (0,4440)
 
insert 0 4441 A
>> Inserting city A (0,4441)
 
insert 0 4442 A
>> Inserting city A (0,4442)
 
insert 0 4443 A
>> Inserting city A (0,4443)
 
insert 0 4444 A
>> Inserting city A (0,4444)
 
insert 0 4445 A
>> Inserting city A (0,4445)
 
insert 0 4446 A
>> Inserting city A (0,4446)
 
insert 0 4447 A
>> Inserting city A (0,4447)
 
insert 0 4448 A
>> Inserting city A (0,4448)
 
insert 0 4449 A
>> Inserting city A (0,4449)
 
insert 0 4450 A
>> Inserting city A (0,4450)
 
insert 0 4451 A
>> Inserting city A (0,4451)
 
insert 0 4452 A
>> Inserting city A (0,4452)
 
insert 0 4453 A
>> Inserting city A (0,4453)
 
insert 0 4454 A
>> Inserting city A (0,4454)
 
insert 0 4455 A
>> Inserting city A (0,4455)
 
insert 0 4456 A
>> Inserting city A (0,4456)
 
insert 0 4457 A
>> Inserting city A (0,4457)
 
insert 0 4458 A
>> Inserting city A (0,4458)
 
insert 0 4459 A
>> Inserting city A (0,4459)
 
insert 0 4460 A
>> Inserting city A (0,4460)
 
insert 0 4461 A
>> Inserting city A (0,4461)
 
insert 0 4462 A
>> Inserting city A (0,4462)
 
insert 0 4463 A
>> Inserting city A (0,4463)
 
insert 0 4464 A
>> Inserting city A (0,4464)
 
insert 0 4465 A
>> Inserting city A (0,4465)
 
insert 0 4466 A
>> Inserting city A (0,4466)
 
insert 0 4467 A
>> Inserting city A (0,4467)
 
insert 0 4468 A
>> Inserting city A (0,4468)
 
insert 0 4469 A
>> Inserting city A (0,4469)
 
insert 0 4470 A
>> Inserting city A (0,4470)
 
insert 0 4471 A
>> Inserting city A (0,4471)
 
insert 0 4472 A
>> Inserting city A (0,4472)
 
insert 0 4473 A
>> Inserting city A (0,4473)
 
insert 0 4474 A
>> Inserting city A (0,4474)
 
insert 0 4475 A
>> Inserting city A (0,4475)
 
insert 0 4476 A
>> Inserting city A (0,4476)
 
insert 0 4477 A
>> Inserting city A (0,4477)
 
insert 0 4478 A
>> Inserting city A (0,4478)
 
insert 0 4479 A
>> Inserting city A (0,4479)
 
insert 0 4480 A
>> Inserting city A (0,4480)
 
insert 0 4481 A
>> Inserting city A (0,4481)
 
insert 0 4482 A
>> Inserting city A (0,4482)
 
insert 0 4483 A
>> Inserting city A (0,4483)
 
insert 0 4484 A
>> Inserting city A (0,4484)
 
insert 0 4485 A
>> Inserting city A (0,4485)
 
insert 0 4486 A
>> Inserting city A (0,4486)
 
insert 0 4487 A
>> Inserting city A (0,4487)
 
insert 0 4488 A
>> Inserting city A (0,4488)
 
insert 0 4489 A
>> Inserting city A (0,4489)
 
insert 0 4490 A
>> Inserting city A (0,4490)
 
insert 0 4491 A
>> Inserting city A (0,4491)
 
insert 0 4492 A
>> Inserting city A (0,4492)
 
insert 0 4493 A
>> Inserting city A (0,4493)
 
insert 0 4494 A
>> Inserting city A (0,4494)
 
insert 0 4495 A
>> Inserting city A (0,4495)
 
insert 0 4496 A
>> Inserting city A (0,4496)
 
insert 0 4497 A
>> Inserting city A (0,4497)
 
insert 0 4498 A
>> Inserting city A (0,4498)
 
insert 0 4499 A
>> Inserting city A (0,4499)
 
insert 0 4500 A
>> Inserting city A (0,4500)
 
insert 0 4501 A
>> Inserting city A (0,4501)
 
insert 0 4502 A
>> Inserting city A (0,4502)
 
insert 0 4503 A
>> Inserting city A (0,4503)
 
insert 0 4504 A
>> Inserting city A (0,4504)
 
insert 0 4505 A
>> Inserting city A (0,4505)
 
insert 0 4506 A
>> Inserting city A (0,4506)
 
insert 0 4507 A
>> Inserting city A (0,4507)
 
insert 0 4508 A
>> Inserting city A (0,4508)
 
insert 0 4509 A
>> Inserting city A (0,4509)
 
insert 0 4510 A
>> Inserting city A (0,4510)
 
insert 0 4511 A
>> Inserting city A (0,4511)
 
insert 0 4512 A
>> Inserting city A (0,4512)
 
insert 0 4513 A
>> Inserting city A (0,4513)
 
insert 0 4514 A
>> Inserting city A (0,4514)
 
insert 0 4515 A
>> Inserting city A (0,4515)
 
insert 0 4516 A
>> Inserting city A (0,4516)
 
insert 0 4517 A
>> Inserting city A (0,4517)
 
insert 0 4518 A
>> Inserting city A (0,4518)
 
insert 0 4519 A
>> Inserting city A (0,4519)
 
insert 0 4520 A
>> Inserting city A (0,4520)
 
insert 0 4521 A
>> Inserting city A (0,4521)
 
insert 0 4522 A
>> Inserting city A (0,4522)
 
insert 0 4523 A
>> Inserting city A (0,4523)
 
insert 0 4524 A
>> Inserting city A (0,4524)
 
insert 0 4525 A
>> Inserting city A (0,4525)
 
insert 0 4526 A
>> Inserting city A (0,4526)
 
insert 0 4527 A
>> Inserting city A (0,4527)
 
insert 0 4528 A
>> Inserting city A (0,4528)
 
insert 0 4529 A
>> Inserting city A (0,4529)
 
insert 0 4530 A
>> Inserting city A (0,4530)
 
insert 0 4531 A
>> Inserting city A (0,4531)
 
insert 0 4532 A
>> Inserting city A (0,4532)
 
insert 0 4533 A
>> Inserting city A (0,4533)
 
insert 0 4534 A
>> Inserting city A (0,4534)
 
insert 0 4535 A
>> Inserting city A (0,4535)
 
insert 0 4536 A
>> Inserting city A (0,4536)
 
insert 0 4537 A
>> Inserting city A (0,4537)
 
insert 0 4538 A
>> Inserting city A (0,4538)
 
insert 0 4539 A
>> Inserting city A (0,4539)
 
insert 0 4540 A
>> Inserting city A (0,4540)
 
insert 0 4541 A
>> Inserting city A (0,4541)
 
insert 0 4542 A
>> Inserting city A (0,4542)
 
insert 0 4543 A
>> Inserting city A (0,4543)
 
insert 0 4544 A
>> Inserting city A (0,4544)
 
insert 0 4545 A
>> Inserting city A (0,4545)
 
insert 0 4546 A
>> Inserting city A (0,4546)
 
insert 0 4547 A
>> Inserting city A (0,4547)
 
insert 0 4548 A
>> Inserting city A (0,4548)
 
insert 0 4549 A
>> Inserting city A (0,4549)
 
insert 0 4550 A
>> Inserting city A (0,4550)
 
insert 0 4551 A
>> Inserting city A (0,4551)
 
insert 0 4552 A
>> Inserting city A (0,4552)
 
insert 0 4553 A
>> Inserting city A (0,4553)
 
insert 0 4554 A
>> Inserting city A (0,4554)
 
insert 0 4555 A
>> Inserting city A (0,4555)
 
insert 0 4556 A
>> Inserting city A (0,4556)
 
insert 0 4557 A
>> Inserting city A (0,4557)
 
insert 0 4558 A
>> Inserting city A (0,4558)
 
insert 0 4559 A
>> Inserting city A (0,4559)
 
insert 0 4560 A
>> Inserting city A (0,4560)
 
insert 0 4561 A
>> Inserting city A (0,4561)
 
insert 0 4562 A
>> Inserting city A (0,4562)
 
insert 0 4563 A
>> Inserting city A (0,4563)
 
insert 0 4564 A
>> Inserting city A (0,4564)
 
insert 0 4565 A
>> Inserting city A (0,4565)
 
insert 0 4566 A
>> Inserting city A (0,4566)
 
insert 0 4567 A
>> Inserting city A (0,4567)
 
insert 0 4568 A
>> Inserting city A (0,4568)
 
insert 0 4569 A
>> Inserting city A (0,4569)
 
insert 0 4570 A
>> Inserting city A (0,4570)
 
insert 0 4571 A
>> Inserting city A (0,4571)
 
insert 0 4572 A
>> Inserting city A (0,4572)
 
insert 0 4573 A
>> Inserting city A (0,4573)
 
insert 0 4574 A
>> Inserting city A (0,4574)
 
insert 0 4575 A
>> Inserting city A (0,4575)
 
insert 0 4576 A
>> Inserting city A (0,4576)
 
insert 0 4577 A
>> Inserting city A (0,4577)
 
insert 0 4578 A
>> Inserting city A (0,4578)
 
insert 0 4579 A
>> Inserting city A (0,4579)
 
insert 0 4580 A
>> Inserting city A (0,4580)
 
insert 0 4581 A
>> Inserting city A (0,4581)
 
insert 0 4582 A
>> Inserting city A (0,4582)
 
insert 0 4583 A
>> Inserting city A (0,4583)
 
insert 0 4584 A
>> Inserting city A (0,4584)
 
insert 0 4585 A
>> Inserting city A (0,4585)
 
insert 0 4586 A
>> Inserting city A (0,4586)
 
insert 0 4587 A
>> Inserting city A (0,4587)
 
insert 0 4588 A
>> Inserting city A (0,4588)
 
insert 0 4589 A
>> Inserting city A (0,4589)
 
insert 0 4590 A
>> Inserting city A (0,4590)
 
insert 0 4591 A
>> Inserting city A (0,4591)
 
insert 0 4592 A
>> Inserting city A (0,4592)
 
insert 0 4593 A
>> Inserting city A (0,4593)
 
insert 0 4594 A
>> Inserting city A (0,4594)
 
insert 0 4595 A
>> Inserting city A (0,4595)
 
insert 0 4596 A
>> Inserting city A (0,4596)
 
insert 0 4597 A
>> Inserting city A (0,4597)
 
insert 0 4598 A
>> Inserting city A (0,4598)
 
insert 0 4599 A
>> Inserting city A (0,4599)
 
insert 0 4600 A
>> Inserting city A (0,4600)
 
insert 0 4601 A
>> Inserting city A (0,4601)
 
insert 0 4602 A
>> Inserting city A (0,4602)
 
insert 0 4603 A
>> Inserting city A (0,4603)
 
insert 0 4604 A
>> Inserting city A (0,4604)
 
insert 0 4605 A
>> Inserting city A (0,4605)
 
insert 0 4606 A
>> Inserting city A (0,4606)
 
insert 0 4607 A
>> Inserting city A (0,4607)
 
insert 0 4608 A
>> Inserting city A (0,4608)
 
insert 0 4609 A
>> Inserting city A (0,4609)
 
insert 0 4610 A
>> Inserting city A (0,4610)
 
insert 0 4611 A
>> Inserting city A (0,4611)
 
insert 0 4612 A
>> Inserting city A (0,4612)
 
insert 0 4613 A
>> Inserting city A (0,4613)
 
insert 0 4614 A
>> Inserting city A (0,4614)
 
insert 0 4615 A
>> Inserting city A (0,4615)
 
insert 0 4616 A
>> Inserting city A (0,4616)
 
insert 0 4617 A
>> Inserting city A (0,4617)
 
insert 0 4618 A
>> Inserting city A (0,4618)
 
insert 0 4619 A
>> Inserting city A (0,4619)
 
insert 0 4620 A
>> Inserting city A (0,4620)
 
insert 0 4621 A
>> Inserting city A (0,4621)
 
insert 0 4622 A
>> Inserting city A (0,4622)
 
insert 0 4623 A
>> Inserting city A (0,4623)
 
insert 0 4624 A
>> Inserting city A (0,4624)
 
insert 0 4625 A
>> Inserting city A (0,4625)
 
insert 0 4626 A
>> Inserting city A (0,4626)
 
insert 0 4627 A
>> Inserting city A (0,4627)
 
insert 0 4628 A
>> Inserting city A (0,4628)
 
insert 0 4629 A
>> Inserting city A (0,4629)
 
insert 0 4630 A
>> Inserting city A (0,4630)
 
insert 0 4631 A
>> Inserting city A (0,4631)
 
insert 0 4632 A
>> Inserting city A (0,4632)
 
insert 0 4633 A
>> Inserting city A (0,4633)
 
insert 0 4634 A
>> Inserting city A (0,4634)
 
insert 0 4635 A
>> Inserting city A (0,4635)
 
insert 0 4636 A
>> Inserting city A (0,4636)
 
insert 0 4637 A
>> Inserting city A (0,4637)
 
insert 0 4638 A
>> Inserting city A (0,4638)
 
insert 0 4639 A
>> Inserting city A (0,4639)
 
insert 0 4640 A
>> Inserting city A (0,4640)
 
insert 0 4641 A
>> Inserting city A (0,4641)
 
insert 0 4642 A
>> Inserting city A (0,4642)
 
insert 0 4643 A
>> Inserting city A (0,4643)
 
insert 0 4644 A
>> Inserting city A (0,4644)
 
insert 0 4645 A
>> Inserting city A (0,4645)
 
insert 0 4646 A
>> Inserting city A (0,4646)
 
insert 0 4647 A
>> Inserting city A (0,4647)
 
insert 0 4648 A
>> Inserting city A (0,4648)
 
insert 0 4649 A
>> Inserting city A (0,4649)
 
insert 0 4650 A
>> Inserting city A (0,4650)
 
insert 0 4651 A
>> Inserting city A (0,4651)
 
insert 0 4652 A
>> Inserting city A (0,4652)
 
insert 0 4653 A
>> Inserting city A (0,4653)
 
insert 0 4654 A
>> Inserting city A (0,4654)
 
insert 0 4655 A
>> Inserting city A (0,4655)
 
insert 0 4656 A
>> Inserting city A (0,4656)
 
insert 0 4657 A
>> Inserting city A (0,4657)
 
insert 0 4658 A
>> Inserting city A (0,4658)
 
insert 0 4659 A
>> Inserting city A (0,4659)
 
insert 0 4660 A
>> Inserting city A (0,4660)
 
insert 0 4661 A
>> Inserting city A (0,4661)
 
insert 0 4662 A
>> Inserting city A (0,4662)
 
insert 0 4663 A
>> Inserting city A (0,4663)
 
insert 0 4664 A
>> Inserting city A (0,4664)
 
insert 0 4665 A
>> Inserting city A (0,4665)
 
insert 0 4666 A
>> Inserting city A (0,4666)
 
insert 0 4667 A
>> Inserting city A (0,4667)
 
insert 0 4668 A
>> Inserting city A (0,4668)
 
insert 0 4669 A
>> Inserting city A (0,4669)
 
insert 0 4670 A
>> Inserting city A (0,4670)
 
insert 0 4671 A
>> Inserting city A (0,4671)
 
insert 0 4672 A
>> Inserting city A (0,4672)
 
insert 0 4673 A
>> Inserting city A (0,4673)
 
insert 0 4674 A
>> Inserting city A (0,4674)
 
insert 0 4675 A
>> Inserting city A (0,4675)
 
insert 0 4676 A
>> Inserting city A (0,4676)
 
insert 0 4677 A
>> Inserting city A (0,4677)
 
insert 0 4678 A
>> Inserting city A (0,4678)
 
insert 0 4679 A
>> Inserting city A (0,4679)
 
insert 0 4680 A
>> Inserting city A (0,4680)
 
insert 0 4681 A
>> Inserting city A (0,4681)
 
insert 0 4682 A
>> Inserting city A (0,4682)
 
insert 0 4683 A
>> Inserting city A (0,4683)
 
insert 0 4684 A
>> Inserting city A (0,4684)
 
insert 0 4685 A
>> Inserting city A (0,4685)
 
insert 0 4686 A
>> Inserting city A (0,4686)
 
insert 0 4687 A
>> Inserting city A (0,4687)
 
insert 0 4688 A
>> Inserting city A (0,4688)
 
insert 0 4689 A
>> Inserting city A (0,4689)
 
insert 0 4690 A
>> Inserting city A (0,4690)
 
insert 0 4691 A
>> Inserting city A (0,4691)
 
insert 0 4692 A
>> Inserting city A (0,4692)
 
insert 0 4693 A
>> Inserting city A (0,4693)
 
insert 0 4694 A
>> Inserting city A (0,4694)
 
insert 0 4695 A
>> Inserting city A (0,4695)
 
insert 0 4696 A
>> Inserting city A (0,4696)
 
insert 0 4697 A
>> Inserting city A (0,4697)
 
insert 0 4698 A
>> Inserting city A (0,4698)
 
insert 0 4699 A
>> Inserting city A (0,4699)
 
insert 0 4700 A
>> Inserting city A (0,4700)
 
insert 0 4701 A
>> Inserting city A (0,4701)
 
insert 0 4702 A
>> Inserting city A (0,4702)
 
insert 0 4703 A
>> Inserting city A (0,4703)
 
insert 0 4704 A
>> Inserting city A (0,4704)
 
insert 0 4705 A
>> Inserting city A (0,4705)
 
insert 0 4706 A
>> Inserting city A (0,4706)
 
insert 0 4707 A
>> Inserting city A (0,4707)
 
insert 0 4708 A
>> Inserting city A (0,4708)
 
insert 0 4709 A
>> Inserting city A (0,4709)
 
insert 0 4710 A
>> Inserting city A (0,4710)
 
insert 0 4711 A
>> Inserting city A (0,4711)
 
insert 0 4712 A
>> Inserting city A (0,4712)
 
insert 0 4713 A
>> Inserting city A (0,4713)
 
insert 0 4714 A
>> Inserting city A (0,4714)
 
insert 0 4715 A
>> Inserting city A (0,4715)
 
insert 0 4716 A
>> Inserting city A (0,4716)
 
insert 0 4717 A
>> Inserting city A (0,4717)
 
insert 0 4718 A
>> Inserting city A (0,4718)
 
insert 0 4719 A
>> Inserting city A (0,4719)
 
insert 0 4720 A
>> Inserting city A (0,4720)
 
insert 0 4721 A
>> Inserting city A (0,4721)
 
insert 0 4722 A
>> Inserting city A (0,4722)
 
insert 0 4723 A
>> Inserting city A (0,4723)
 
insert 0 4724 A
>> Inserting city A (0,4724)
 
insert 0 4725 A
>> Inserting city A (0,4725)
 
insert 0 4726 A
>> Inserting city A (0,4726)
 
insert 0 4727 A
>> Inserting city A (0,4727)
 
insert 0 4728 A
>> Inserting city A (0,4728)
 
insert 0 4729 A
>> Inserting city A (0,4729)
 
insert 0 4730 A
>> Inserting city A (0,4730)
 
insert 0 4731 A
>> Inserting city A (0,4731)
 
insert 0 4732 A
>> Inserting city A (0,4732)
 
insert 0 4733 A
>> Inserting city A (0,4733)
 
insert 0 4734 A
>> Inserting city A (0,4734)
 
insert 0 4735 A
>> Inserting city A (0,4735)
 
insert 0 4736 A
>> Inserting city A (0,4736)
 
insert 0 4737 A
>> Inserting city A (0,4737)
 
insert 0 4738 A
>> Inserting city A (0,4738)
 
insert 0 4739 A
>> Inserting city A (0,4739)
 
insert 0 4740 A
>> Inserting city A (0,4740)
 
insert 0 4741 A
>> Inserting city A (0,4741)
 
insert 0 4742 A
>> Inserting city A (0,4742)
 
insert 0 4743 A
>> Inserting city A (0,4743)
 
insert 0 4744 A
>> Inserting city A (0,4744)
 
insert 0 4745 A
>> Inserting city A (0,4745)
 
insert 0 4746 A
>> Inserting city A (0,4746)
 
insert 0 4747 A
>> Inserting city A (0,4747)
 
insert 0 4748 A
>> Inserting city A (0,4748)
 
insert 0 4749 A
>> Inserting city A (0,4749)
 
insert 0 4750 A
>> Inserting city A (0,4750)
 
insert 0 4751 A
>> Inserting city A (0,4751)
 
insert 0 4752 A
>> Inserting city A (0,4752)
 
insert 0 4753 A
>> Inserting city A (0,4753)
 
insert 0 4754 A
>> Inserting city A (0,4754)
 
insert 0 4755 A
>> Inserting city A (0,4755)
 
insert 0 4756 A
>> Inserting city A (0,4756)
 
insert 0 4757 A
>> Inserting city A (0,4757)
 
insert 0 4758 A
>> Inserting city A (0,4758)
 
insert 0 4759 A
>> Inserting city A (0,4759)
 
insert 0 4760 A
>> Inserting city A (0,4760)
 
insert 0 4761 A
>> Inserting city A (0,4761)
 
insert 0 4762 A
>> Inserting city A (0,4762)
 
insert 0 4763 A
>> Inserting city A (0,4763)
 
insert 0 4764 A
>> Inserting city A (0,4764)
 
insert 0 4765 A
>> Inserting city A (0,4765)
 
insert 0 4766 A
>> Inserting city A (0,4766)
 
insert 0 4767 A
>> Inserting city A (0,4767)
 
insert 0 4768 A
>> Inserting city A (0,4768)
 
insert 0 4769 A
>> Inserting city A (0,4769)
 
insert 0 4770 A
>> Inserting city A (0,4770)
 
insert 0 4771 A
>> Inserting city A (0,4771)
 
insert 0 4772 A
>> Inserting city A (0,4772)
 
insert 0 4773 A
>> Inserting city A (0,4773)
 
insert 0 4774 A
>> Inserting city A (0,4774)
 
insert 0 4775 A
>> Inserting city A (0,4775)
 
insert 0 4776 A
>> Inserting city A (0,4776)
 
insert 0 4777 A
>> Inserting city A (0,4777)
 
insert 0 4778 A
>> Inserting city A (0,4778)
 
insert 0 4779 A
>> Inserting city A (0,4779)
 
insert 0 4780 A
>> Inserting city A (0,4780)
 
insert 0 4781 A
>> Inserting city A (0,4781)
 
insert 0 4782 A
>> Inserting city A (0,4782)
 
insert 0 4783 A
>> Inserting city A (0,4783)
 
insert 0 4784 A
>> Inserting city A (0,4784)
 
insert 0 4785 A
>> Inserting city A (0,4785)
 
insert 0 4786 A
>> Inserting city A (0,4786)
 
insert 0 4787 A
>> Inserting city A (0,4787)
 
insert 0 4788 A
>> Inserting city A (0,4788)
 
insert 0 4789 A
>> Inserting city A (0,4789)
 
insert 0 4790 A
>> Inserting city A (0,4790)
 
insert 0 4791 A
>> Inserting city A (0,4791)
 
insert 0 4792 A
>> Inserting city A (0,4792)
 
insert 0 4793 A
>> Inserting city A (0,4793)
 
insert 0 4794 A
>> Inserting city A (0,4794)
 
insert 0 4795 A
>> Inserting city A (0,4795)
 
insert 0 4796 A
>> Inserting city A (0,4796)
 
insert 0 4797 A
>> Inserting city A (0,4797)
 
insert 0 4798 A
>> Inserting city A (0,4798)
 
insert 0 4799 A
>> Inserting city A (0,4799)
 
insert 0 4800 A
>> Inserting city A (0,4800)
 
insert 0 4801 A
>> Inserting city A (0,4801)
 
insert 0 4802 A
>> Inserting city A (0,4802)
 
insert 0 4803 A
>> Inserting city A (0,4803)
 
insert 0 4804 A
>> Inserting city A (0,4804)
 
insert 0 4805 A
>> Inserting city A (0,4805)
 
insert 0 4806 A
>> Inserting city A (0,4806)
 
insert 0 4807 A
>> Inserting city A (0,4807)
 
insert 0 4808 A
>> Inserting city A (0,4808)
 
insert 0 4809 A
>> Inserting city A (0,4809)
 
insert 0 4810 A
>> Inserting city A (0,4810)
 
insert 0 4811 A
>> Inserting city A (0,4811)
 
insert 0 4812 A
>> Inserting city A (0,4812)
 
insert 0 4813 A
>> Inserting city A (0,4813)
 
insert 0 4814 A
>> Inserting city A (0,4814)
 
insert 0 4815 A
>> Inserting city A (0,4815)
 
insert 0 4816 A
>> Inserting city A (0,4816)
 
insert 0 4817 A
>> Inserting city A (0,4817)
 
insert 0 4818 A
>> Inserting city A (0,4818)
 
insert 0 4819 A
>> Inserting city A (0,4819)
 
insert 0 4820 A
>> Inserting city A (0,4820)
 
insert 0 4821 A
>> Inserting city A (0,4821)
 
insert 0 4822 A
>> Inserting city A (0,4822)
 
insert 0 4823 A
>> Inserting city A (0,4823)
 
insert 0 4824 A
>> Inserting city A (0,4824)
 
insert 0 4825 A
>> Inserting city A (0,4825)
 
insert 0 4826 A
>> Inserting city A (0,4826)
 
insert 0 4827 A
>> Inserting city A (0,4827)
 
insert 0 4828 A
>> Inserting city A (0,4828)
 
insert 0 4829 A
>> Inserting city A (0,4829)
 
insert 0 4830 A
>> Inserting city A (0,4830)
 
insert 0 4831 A
>> Inserting city A (0,4831)
 
insert 0 4832 A
>> Inserting city A (0,4832)
 
insert 0 4833 A
>> Inserting city A (0,4833)
 
insert 0 4834 A
>> Inserting city A (0,4834)
 
insert 0 4835 A
>> Inserting city A (0,4835)
 
insert 0 4836 A
>> Inserting city A (0,4836)
 
insert 0 4837 A
>> Inserting city A (0,4837)
 
insert 0 4838 A
>> Inserting city A (0,4838)
 
insert 0 4839 A
>> Inserting city A (0,4839)
 
insert 0 4840 A
>> Inserting city A (0,4840)
 
insert 0 4841 A
>> Inserting city A (0,4841)
 
insert 0 4842 A
>> Inserting city A (0,4842)
 
insert 0 4843 A
>> Inserting city A (0,4843)
 
insert 0 4844 A
>> Inserting city A (0,4844)
 
insert 0 4845 A
>> Inserting city A (0,4845)
 
insert 0 4846 A
>> Inserting city A (0,4846)
 
insert 0 4847 A
>> Inserting city A (0,4847)
 
insert 0 4848 A
>> Inserting city A (0,4848)
 
insert 0 4849 A
>> Inserting city A (0,4849)
 
insert 0 4850 A
>> Inserting city A (0,4850)
 
insert 0 4851 A
>> Inserting city A (0,4851)
 
insert 0 4852 A
>> Inserting city A (0,4852)
 
insert 0 4853 A
>> Inserting city A (0,4853)
 
insert 0 4854 A
>> Inserting city A (0,4854)
 
insert 0 4855 A
>> Inserting city A (0,4855)
 
insert 0 4856 A
>> Inserting city A (0,4856)
 
insert 0 4857 A
>> Inserting city A (0,4857)
 
insert 0 4858 A
>> Inserting city A (0,4858)
 
insert 0 4859 A
>> Inserting city A (0,4859)
 
insert 0 4860 A
>> Inserting city A (0,4860)
 
insert 0 4861 A
>> Inserting city A (0,4861)
 
insert 0 4862 A
>> Inserting city A (0,4862)
 
insert 0 4863 A
>> Inserting city A (0,4863)
 
insert 0 4864 A
>> Inserting city A (0,4864)
 
insert 0 4865 A
>> Inserting city A (0,4865)
 
insert 0 4866 A
>> Inserting city A (0,4866)
 
insert 0 4867 A
>> Inserting city A (0,4867)
 
insert 0 4868 A
>> Inserting city A (0,4868)
 
insert 0 4869 A
>> Inserting city A (0,4869)
 
insert 0 4870 A
>> Inserting city A (0,4870)
 
insert 0 4871 A
>> Inserting city A (0,4871)
 
insert 0 4872 A
>> Inserting city A (0,4872)
 
insert 0 4873 A
>> Inserting city A (0,4873)
 
insert 0 4874 A
>> Inserting city A (0,4874)
 
insert 0 4875 A
>> Inserting city A (0,4875)
 
insert 0 4876 A
>> Inserting city A (0,4876)
 
insert 0 4877 A
>> Inserting city A (0,4877)
 
insert 0 4878 A
>> Inserting city A (0,4878)
 
insert 0 4879 A
>> Inserting city A (0,4879)
 
insert 0 4880 A
>> Inserting city A (0,4880)
 
insert 0 4881 A
>> Inserting city A (0,4881)
 
insert 0 4882 A
>> Inserting city A (0,4882)
 
insert 0 4883 A
>> Inserting city A (0,4883)
 
insert 0 4884 A
>> Inserting city A (0,4884)
 
insert 0 4885 A
>> Inserting city A (0,4885)
 
insert 0 4886 A
>> Inserting city A (0,4886)
 
insert 0 4887 A
>> Inserting city A (0,4887)
 
insert 0 4888 A
>> Inserting city A (0,4888)
 
insert 0 4889 A
>> Inserting city A (0,4889)
 
insert 0 4890 A
>> Inserting city A (0,4890)
 
insert 0 4891 A
>> Inserting city A (0,4891)
 
insert 0 4892 A
>> Inserting city A (0,4892)
 
insert 0 4893 A
>> Inserting city A (0,4893)
 
insert 0 4894 A
>> Inserting city A (0,4894)
 
insert 0 4895 A
>> Inserting city A (0,4895)
 
insert 0 4896 A
>> Inserting city A (0,4896)
 
insert 0 4897 A
>> Inserting city A (0,4897)
 
insert 0 4898 A
>> Inserting city A (0,4898)
 
insert 0 4899 A
>> Inserting city A (0,4899)
 
insert 0 4900 A
>> Inserting city A (0,4900)
 
insert 0 4901 A
>> Inserting city A (0,4901)
 
insert 0 4902 A
>> Inserting city A (0,4902)
 
insert 0 4903 A
>> Inserting city A (0,4903)
 
insert 0 4904 A
>> Inserting city A (0,4904)
 
insert 0 4905 A
>> Inserting city A (0,4905)
 
insert 0 4906 A
>> Inserting city A (0,4906)
 
insert 0 4907 A
>> Inserting city A (0,4907)
 
insert 0 4908 A
>> Inserting city A (0,4908)
 
insert 0 4909 A
>> Inserting city A (0,4909)
 
insert 0 4910 A
>> Inserting city A (0,4910)
 
insert 0 4911 A
>> Inserting city A (0,4911)
 
insert 0 4912 A
>> Inserting city A (0,4912)
 
insert 0 4913 A
>> Inserting city A (0,4913)
 
insert 0 4914 A
>> Inserting city A (0,4914)
 
insert 0 4915 A
>> Inserting city A (0,4915)
 
insert 0 4916 A
>> Inserting city A (0,4916)
 
insert 0 4917 A
>> Inserting city A (0,4917)
 
insert 0 4918 A
>> Inserting city A (0,4918)
 
insert 0 4919 A
>> Inserting city A (0,4919)
 
insert 0 4920 A
>> Inserting city A (0,4920)
 
insert 0 4921 A
>> Inserting city A (0,4921)
 
insert 0 4922 A
>> Inserting city A (0,4922)
 
insert 0 4923 A
>> Inserting city A (0,4923)
 
insert 0 4924 A
>> Inserting city A (0,4924)
 
insert 0 4925 A
>> Inserting city A (0,4925)
 
insert 0 4926 A
>> Inserting city A (0,4926)
 
insert 0 4927 A
>> Inserting city A (0,4927)
 
insert 0 4928 A
>> Inserting city A (0,4928)
 
insert 0 4929 A
>> Inserting city A (0,4929)
 
insert 0 4930 A
>> Inserting city A (0,4930)
 
insert 0 4931 A
>> Inserting city A (0,4931)
 
insert 0 4932 A
>> Inserting city A (0,4932)
 
insert 0 4933 A
>> Inserting city A (0,4933)
 
insert 0 4934 A
>> Inserting city A (0,4934)
 
insert 0 4935 A
>> Inserting city A (0,4935)
 
insert 0 4936 A
>> Inserting city A (0,4936)
 
insert 0 4937 A
>> Inserting city A (0,4937)
 
insert 0 4938 A
>> Inserting city A (0,4938)
 
insert 0 4939 A
>> Inserting city A (0,4939)
 
insert 0 4940 A
>> Inserting city A (0,4940)
 
insert 0 4941 A
>> Inserting city A (0,4941)
 
insert 0 4942 A
>> Inserting city A (0,4942)
 
insert 0 4943 A
>> Inserting city A (0,4943)
 
insert 0 4944 A
>> Inserting city A (0,4944)
 
insert 0 4945 A
>> Inserting city A (0,4945)
 
insert 0 4946 A
>> Inserting city A (0,4946)
 
insert 0 4947 A
>> Inserting city A (0,4947)
 
insert 0 4948 A
>> Inserting city A (0,4948)
 
insert 0 4949 A
>> Inserting city A (0,4949)
 
insert 0 4950 A
>> Inserting city A (0,4950)
 
insert 0 4951 A
>> Inserting city A (0,4951)
 
insert 0 4952 A
>> Inserting city A (0,4952)
 
insert 0 4953 A
>> Inserting city A (0,4953)
 
insert 0 4954 A
>> Inserting city A (0,4954)
 
insert 0 4955 A
>> Inserting city A (0,4955)
 
insert 0 4956 A
>> Inserting city A (0,4956)
 
insert 0 4957 A
>> Inserting city A (0,4957)
 
insert 0 4958 A
>> Inserting city A (0,4958)
 
insert 0 4959 A
>> Inserting city A (0,4959)
 
insert 0 4960 A
>> Inserting city A (0,4960)
 
insert 0 4961 A
>> Inserting city A (0,4961)
 
insert 0 4962 A
>> Inserting city A (0,4962)
 
insert 0 4963 A
>> Inserting city A (0,4963)
 
insert 0 4964 A
>> Inserting city A (0,4964)
 
insert 0 4965 A
>> Inserting city A (0,4965)
 
insert 0 4966 A
>> Inserting city A (0,4966)
 
insert 0 4967 A
>> Inserting city A (0,4967)
 
insert 0 4968 A
>> Inserting city A (0,4968)
 
insert 0 4969 A
>> Inserting city A (0,4969)
 
insert 0 4970 A
>> Inserting city A (0,4970)
 
insert 0 4971 A
>> Inserting city A (0,4971)
 
insert 0 4972 A
>> Inserting city A (0,4972)
 
insert 0 4973 A
>> Inserting city A (0,4973)
 
insert 0 4974 A
>> Inserting city A (0,4974)
 
insert 0 4975 A
>> Inserting city A (0,4975)
 
insert 0 4976 A
>> Inserting city A (0,4976)
 
insert 0 4977 A
>> Inserting city A (0,4977)
 
insert 0 4978 A
>> Inserting city A (0,4978)
 
insert 0 4979 A
>> Inserting city A (0,4979)
 
insert 0 4980 A
>> Inserting city A (0,4980)
 
insert 0 4981 A
>> Inserting city A (0,4981)
 
insert 0 4982 A
>> Inserting city A (0,4982)
 
insert 0 4983 A
>> Inserting city A (0,4983)
 
insert 0 4984 A
>> Inserting city A (0,4984)
 
insert 0 4985 A
>> Inserting city A (0,4985)
 
insert 0 4986 A
>> Inserting city A (0,4986)
 
insert 0 4987 A
>> Inserting city A (0,4987)
 
insert 0 4988 A
>> Inserting city A (0,4988)
 
insert 0 4989 A
>> Inserting city A (0,4989)
 
insert 0 4990 A
>> Inserting city A (0,4990)
 
insert 0 4991 A
>> Inserting city A (0,4991)
 
insert 0 4992 A
>> Inserting city A (0,4992)
 
insert 0 4993 A
>> Inserting city A (0,4993)
 
insert 0 4994 A
>> Inserting city A (0,4994)
 
insert 0 4995 A
>> Inserting city A (0,4995)
 
insert 0 4996 A
>> Inserting city A (0,4996)
 
insert 0 4997 A
>> Inserting city A (0,4997)
 
insert 0 4998 A
>> Inserting city A (0,4998)
 
insert 0 4999 A
>> Inserting city A (0,4999)
 
insert 0 5000 A
>> Inserting city A (0,5000)
 
insert 0 5001 A
>> Inserting city A (0,5001)
 
insert 0 5002 A
>> Inserting city A (0,5002)
 
insert 0 5003 A
>> Inserting city A (0,5003)
 
insert 0 5004 A
>> Inserting city A (0,5004)
 
insert 0 5005 A
>> Inserting city A (0,5005)
 
insert 0 5006 A
>> Inserting city A (0,5006)
 
insert 0 5007 A
>> Inserting city A (0,5007)
 
insert 0 5008 A
>> Inserting city A (0,5008)
 
insert 0 5009 A
>> Inserting city A (0,5009)
 
insert 0 5010 A
>> Inserting city A (0,5010)
 
insert 0 5011 A
>> Inserting city A (0,5011)
 
insert 0 5012 A
>> Inserting city A (0,5012)
 
insert 0 5013 A
>> Inserting city A (0,5013)
 
insert 0 5014 A
>> Inserting city A (0,5014)
 
insert 0 5015 A
>> Inserting city A (0,5015)
 
insert 0 5016 A
>> Inserting city A (0,5016)
 
insert 0 5017 A
>> Inserting city A (0,5017)
 
insert 0 5018 A
>> Inserting city A (0,5018)
 
insert 0 5019 A
>> Inserting city A (0,5019)
 
insert 0 5020 A
>> Inserting city A (0,5020)
 
insert 0 5021 A
>> Inserting city A (0,5021)
 
insert 0 5022 A
>> Inserting city A (0,5022)
 
insert 0 5023 A
>> Inserting city A (0,5023)
 
insert 0 5024 A
>> Inserting city A (0,5024)
 
insert 0 5025 A
>> Inserting city A (0,5025)
 
insert 0 5026 A
>> Inserting city A (0,5026)
 
insert 0 5027 A
>> Inserting city A (0,5027)
 
insert 0 5028 A
>> Inserting city A (0,5028)
 
insert 0 5029 A
>> Inserting city A (0,5029)
 
insert 0 5030 A
>> Inserting city A (0,5030)
 
insert 0 5031 A
>> Inserting city A (0,5031)
 
insert 0 5032 A
>> Inserting city A (0,5032)
 
insert 0 5033 A
>> Inserting city A (0,5033)
 
insert 0 5034 A
>> Inserting city A (0,5034)
 
insert 0 5035 A
>> Inserting city A (0,5035)
 
insert 0 5036 A
>> Inserting city A (0,5036)
 
insert 0 5037 A
>> Inserting city A (0,5037)
 
insert 0 5038 A
>> Inserting city A (0,5038)
 
insert 0 5039 A
>> Inserting city A (0,5039)
 
insert 0 5040 A
>> Inserting city A (0,5040)
 
insert 0 5041 A
>> Inserting city A (0,5041)
 
insert 0 5042 A
>> Inserting city A (0,5042)
 
insert 0 5043 A
>> Inserting city A (0,5043)
 
insert 0 5044 A
>> Inserting city A (0,5044)
 
insert 0 5045 A
>> Inserting city A (0,5045)
 
insert 0 5046 A
>> Inserting city A (0,5046)
 
insert 0 5047 A
>> Inserting city A (0,5047)
 
insert 0 5048 A
>> Inserting city A (0,5048)
 
insert 0 5049 A
>> Inserting city A (0,5049)
 
insert 0 5050 A
>> Inserting city A (0,5050)
 
insert 0 5051 A
>> Inserting city A (0,5051)
 
insert 0 5052 A
>> Inserting city A (0,5052)
 
insert 0 5053 A
>> Inserting city A (0,5053)
 
insert 0 5054 A
>> Inserting city A (0,5054)
 
insert 0 5055 A
>> Inserting city A (0,5055)
 
insert 0 5056 A
>> Inserting city A (0,5056)
 
insert 0 5057 A
>> Inserting city A (0,5057)
 
insert 0 5058 A
>> Inserting city A (0,5058)
 
insert 0 5059 A
>> Inserting city A (0,5059)
 
insert 0 5060 A
>> Inserting city A (0,5060)
 
insert 0 5061 A
>> Inserting city A (0,5061)
 
insert 0 5062 A
>> Inserting city A (0,5062)
 
insert 0 5063 A
>> Inserting city A (0,5063)
 
insert 0 5064 A
>> Inserting city A (0,5064)
 
insert 0 5065 A
>> Inserting city A (0,5065)
 
insert 0 5066 A
>> Inserting city A (0,5066)
 
insert 0 5067 A
>> Inserting city A (0,5067)
 
insert 0 5068 A
>> Inserting city A (0,5068)
 
insert 0 5069 A
>> Inserting city A (0,5069)
 
insert 0 5070 A
>> Inserting city A (0,5070)
 
insert 0 5071 A
>> Inserting city A (0,5071)
 
insert 0 5072 A
>> Inserting city A (0,5072)
 
insert 0 5073 A
>> Inserting city A (0,5073)
 
insert 0 5074 A
>> Inserting city A (0,5074)
 
insert 0 5075 A
>> Inserting city A (0,5075)
 
insert 0 5076 A
>> Inserting city A (0,5076)
 
insert 0 5077 A
>> Inserting city A (0,5077)
 
insert 0 5078 A
>> Inserting city A (0,5078)
 
insert 0 5079 A
>> Inserting city A (0,5079)
 
insert 0 5080 A
>> Inserting city A (0,5080)
 
insert 0 5081 A
>> Inserting city A (0,5081)
 
insert 0 5082 A
>> Inserting city A (0,5082)
 
insert 0 5083 A
>> Inserting city A (0,5083)
 
insert 0 5084 A
>> Inserting city A (0,5084)
 
insert 0 5085 A
>> Inserting city A (0,5085)
 
insert 0 5086 A
>> Inserting city A (0,5086)
 
insert 0 5087 A
>> Inserting city A (0,5087)
 
insert 0 5088 A
>> Inserting city A (0,5088)
 
insert 0 5089 A
>> Inserting city A (0,5089)
 
insert 0 5090 A
>> Inserting city A (0,5090)
 
insert 0 5091 A
>> Inserting city A (0,5091)
 
insert 0 5092 A
>> Inserting city A (0,5092)
 
insert 0 5093 A
>> Inserting city A (0,5093)
 
insert 0 5094 A
>> Inserting city A (0,5094)
 
insert 0 5095 A
>> Inserting city A (0,5095)
 
insert 0 5096 A
>> Inserting city A (0,5096)
 
insert 0 5097 A
>> Inserting city A (0,5097)
 
insert 0 5098 A
>> Inserting city A (0,5098)
 
insert 0 5099 A
>> Inserting city A (0,5099)
 
insert 0 5100 A
>> Inserting city A (0,5100)
 
insert 0 5101 A
>> Inserting city A (0,5101)
 
insert 0 5102 A
>> Inserting city A (0,5102)
 
insert 0 5103 A
>> Inserting city A (0,5103)
 
insert 0 5104 A
>> Inserting city A (0,5104)
 
insert 0 5105 A
>> Inserting city A (0,5105)
 
insert 0 5106 A
>> Inserting city A (0,5106)
 
insert 0 5107 A
>> Inserting city A (0,5107)
 
insert 0 5108 A
>> Inserting city A (0,5108)
 
insert 0 5109 A
>> Inserting city A (0,5109)
 
insert 0 5110 A
>> Inserting city A (0,5110)
 
insert 0 5111 A
>> Inserting city A (0,5111)
 
insert 0 5112 A
>> Inserting city A (0,5112)
 
insert 0 5113 A
>> Inserting city A (0,5113)
 
insert 0 5114 A
>> Inserting city A (0,5114)
 
insert 0 5115 A
>> Inserting city A (0,5115)
 
insert 0 5116 A
>> Inserting city A (0,5116)
 
insert 0 5117 A
>> Inserting city A (0,5117)
 
insert 0 5118 A
>> Inserting city A (0,5118)
 
insert 0 5119 A
>> Inserting city A (0,5119)
 
insert 0 5120 A
>> Inserting city A (0,5120)
 
insert 0 5121 A
>> Inserting city A (0,5121)
 
insert 0 5122 A
>> Inserting city A (0,5122)
 
insert 0 5123 A
>> Inserting city A (0,5123)
 
insert 0 5124 A
>> Inserting city A (0,5124)
 
insert 0 5125 A
>> Inserting city A (0,5125)
 
insert 0 5126 A
>> Inserting city A (0,5126)
 
insert 0 5127 A
>> Inserting city A (0,5127)
 
insert 0 5128 A
>> Inserting city A (0,5128)
 
insert 0 5129 A
>> Inserting city A (0,5129)
 
insert 0 5130 A
>> Inserting city A (0,5130)
 
insert 0 5131 A
>> Inserting city A (0,5131)
 
insert 0 5132 A
>> Inserting city A (0,5132)
 
insert 0 5133 A
>> Inserting city A (0,5133)
 
insert 0 5134 A
>> Inserting city A (0,5134)
 
insert 0 5135 A
>> Inserting city A (0,5135)
 
insert 0 5136 A
>> Inserting city A (0,5136)
 
insert 0 5137 A
>> Inserting city A (0,5137)
 
insert 0 5138 A
>> Inserting city A (0,5138)
 
insert 0 5139 A
>> Inserting city A (0,5139)
 
insert 0 5140 A
>> Inserting city A (0,5140)
 
insert 0 5141 A
>> Inserting city A (0,5141)
 
insert 0 5142 A
>> Inserting city A (0,5142)
 
insert 0 5143 A
>> Inserting city A (0,5143)
 
insert 0 5144 A
>> Inserting city A (0,5144)
 
insert 0 5145 A
>> Inserting city A (0,5145)
 
insert 0 5146 A
>> Inserting city A (0,5146)
 
insert 0 5147 A
>> Inserting city A (0,5147)
 
insert 0 5148 A
>> Inserting city A (0,5148)
 
insert 0 5149 A
>> Inserting city A (0,5149)
 
insert 0 5150 A
>> Inserting city A (0,5150)
 
insert 0 5151 A
>> Inserting city A (0,5151)
 
insert 0 5152 A
>> Inserting city A (0,5152)
 
insert 0 5153 A
>> Inserting city A (0,5153)
 
insert 0 5154 A
>> Inserting city A (0,5154)
 
insert 0 5155 A
>> Inserting city A (0,5155)
 
insert 0 5156 A
>> Inserting city A (0,5156)
 
insert 0 5157 A
>> Inserting city A (0,5157)
 
insert 0 5158 A
>> Inserting city A (0,5158)
 
insert 0 5159 A
>> Inserting city A (0,5159)
 
insert 0 5160 A
>> Inserting city A (0,5160)
 
insert 0 5161 A
>> Inserting city A (0,5161)
 
insert 0 5162 A
>> Inserting city A (0,5162)
 
insert 0 5163 A
>> Inserting city A (0,5163)
 
insert 0 5164 A
>> Inserting city A (0,5164)
 
insert 0 5165 A
>> Inserting city A (0,5165)
 
insert 0 5166 A
>> Inserting city A (0,5166)
 
insert 0 5167 A
>> Inserting city A (0,5167)
 
insert 0 5168 A
>> Inserting city A (0,5168)
 
insert 0 5169 A
>> Inserting city A (0,5169)
 
insert 0 5170 A
>> Inserting city A (0,5170)
 
insert 0 5171 A
>> Inserting city A (0,5171)
 
insert 0 5172 A
>> Inserting city A (0,5172)
 
insert 0 5173 A
>> Inserting city A (0,5173)
 
insert 0 5174 A
>> Inserting city A (0,5174)
 
insert 0 5175 A
>> Inserting city A (0,5175)
 
insert 0 5176 A
>> Inserting city A (0,5176)
 
insert 0 5177 A
>> Inserting city A (0,5177)
 
insert 0 5178 A
>> Inserting city A (0,5178)
 
insert 0 5179 A
>> Inserting city A (0,5179)
 
insert 0 5180 A
>> Inserting city A (0,5180)
 
insert 0 5181 A
>> Inserting city A (0,5181)
 
insert 0 5182 A
>> Inserting city A (0,5182)
 
insert 0 5183 A
>> Inserting city A (0,5183)
 
insert 0 5184 A
>> Inserting city A (0,5184)
 
insert 0 5185 A
>> Inserting city A (0,5185)
 
insert 0 5186 A
>> Inserting city A (0,5186)
 
insert 0 5187 A
>> Inserting city A (0,5187)
 
insert 0 5188 A
>> Inserting city A (0,5188)
 
insert 0 5189 A
>> Inserting city A (0,5189)
 
insert 0 5190 A
>> Inserting city A (0,5190)
 
insert 0 5191 A
>> Inserting city A (0,5191)
 
insert 0 5192 A
>> Inserting city A (0,5192)
 
insert 0 5193 A
>> Inserting city A (0,5193)
 
insert 0 5194 A
>> Inserting city A (0,5194)
 
insert 0 5195 A
>> Inserting city A (0,5195)
 
insert 0 5196 A
>> Inserting city A (0,5196)
 
insert 0 5197 A
>> Inserting city A (0,5197)
 
insert 0 5198 A
>> Inserting city A (0,5198)
 
insert 0 5199 A
>> Inserting city A (0,5199)
 
insert 0 5200 A
>> Inserting city A (0,5200)
 
insert 0 5201 A
>> Inserting city A (0,5201)
 
insert 0 5202 A
>> Inserting city A (0,5202)
 
insert 0 5203 A
>> Inserting city A (0,5203)
 
insert 0 5204 A
>> Inserting city A (0,5204)
 
insert 0 5205 A
>> Inserting city A (0,5205)
 
insert 0 5206 A
>> Inserting city A (0,5206)
 
insert 0 5207 A
>> Inserting city A (0,5207)
 
insert 0 5208 A
>> Inserting city A (0,5208)
 
insert 0 5209 A
>> Inserting city A (0,5209)
 
insert 0 5210 A
>> Inserting city A (0,5210)
 
insert 0 5211 A
>> Inserting city A (0,5211)
 
insert 0 5212 A
>> Inserting city A (0,5212)
 
insert 0 5213 A
>> Inserting city A (0,5213)
 
insert 0 5214 A
>> Inserting city A (0,5214)
 
insert 0 5215 A
>> Inserting city A (0,5215)
 
insert 0 5216 A
>> Inserting city A (0,5216)
 
insert 0 5217 A
>> Inserting city A (0,5217)
 
insert 0 5218 A
>> Inserting city A (0,5218)
 
insert 0 5219 A
>> Inserting city A (0,5219)
 
insert 0 5220 A
>> Inserting city A (0,5220)
 
insert 0 5221 A
>> Inserting city A (0,5221)
 
insert 0 5222 A
>> Inserting city A (0,5222)
 
insert 0 5223 A
>> Inserting city A (0,5223)
 
insert 0 5224 A
>> Inserting city A (0,5224)
 
insert 0 5225 A
>> Inserting city A (0,5225)
 
insert 0 5226 A
>> Inserting city A (0,5226)
 
insert 0 5227 A
>> Inserting city A (0,5227)
 
insert 0 5228 A
>> Inserting city A (0,5228)
 
insert 0 5229 A
>> Inserting city A (0,5229)
 
insert 0 5230 A
>> Inserting city A (0,5230)
 
insert 0 5231 A
>> Inserting city A (0,5231)
 
insert 0 5232 A
>> Inserting city A (0,5232)
 
insert 0 5233 A
>> Inserting city A (0,5233)
 
insert 0 5234 A
>> Inserting city A (0,5234)
 
insert 0 5235 A
>> Inserting city A (0,5235)
 
insert 0 5236 A
>> Inserting city A (0,5236)
 
insert 0 5237 A
>> Inserting city A (0,5237)
 
insert 0 5238 A
>> Inserting city A (0,5238)
 
insert 0 5239 A
>> Inserting city A (0,5239)
 
insert 0 5240 A
>> Inserting city A (0,5240)
 
insert 0 5241 A
>> Inserting city A (0,5241)
 
insert 0 5242 A
>> Inserting city A (0,5242)
 
insert 0 5243 A
>> Inserting city A (0,5243)
 
insert 0 5244 A
>> Inserting city A (0,5244)
 
insert 0 5245 A
>> Inserting city A (0,5245)
 
insert 0 5246 A
>> Inserting city A (0,5246)
 
insert 0 5247 A
>> Inserting city A (0,5247)
 
insert 0 5248 A
>> Inserting city A (0,5248)
 
insert 0 5249 A
>> Inserting city A (0,5249)
 
insert 0 5250 A
>> Inserting city A (0,5250)
 
insert 0 5251 A
>> Inserting city A (0,5251)
 
insert 0 5252 A
>> Inserting city A (0,5252)
 
insert 0 5253 A
>> Inserting city A (0,5253)
 
insert 0 5254 A
>> Inserting city A (0,5254)
 
insert 0 5255 A
>> Inserting city A (0,5255)
 
insert 0 5256 A
>> Inserting city A (0,5256)
 
insert 0 5257 A
>> Inserting city A (0,5257)
 
insert 0 5258 A
>> Inserting city A (0,5258)
 
insert 0 5259 A
>> Inserting city A (0,5259)
 
insert 0 5260 A
>> Inserting city A (0,5260)
 
insert 0 5261 A
>> Inserting city A (0,5261)
 
insert 0 5262 A
>> Inserting city A (0,5262)
 
insert 0 5263 A
>> Inserting city A (0,5263)
 
insert 0 5264 A
>> Inserting city A (0,5264)
 
insert 0 5265 A
>> Inserting city A (0,5265)
 
insert 0 5266 A
>> Inserting city A (0,5266)
 
insert 0 5267 A
>> Inserting city A (0,5267)
 
insert 0 5268 A
>> Inserting city A (0,5268)
 
insert 0 5269 A
>> Inserting city A (0,5269)
 
insert 0 5270 A
>> Inserting city A (0,5270)
 
insert 0 5271 A
>> Inserting city A (0,5271)
 
insert 0 5272 A
>> Inserting city A (0,5272)
 
insert 0 5273 A
>> Inserting city A (0,5273)
 
insert 0 5274 A
>> Inserting city A (0,5274)
 
insert 0 5275 A
>> Inserting city A (0,5275)
 
insert 0 5276 A
>> Inserting city A (0,5276)
 
insert 0 5277 A
>> Inserting city A (0,5277)
 
insert 0 5278 A
>> Inserting city A (0,5278)
 
insert 0 5279 A
>> Inserting city A (0,5279)
 
insert 0 5280 A
>> Inserting city A (0,5280)
 
insert 0 5281 A
>> Inserting city A (0,5281)
 
insert 0 5282 A
>> Inserting city A (0,5282)
 
insert 0 5283 A
>> Inserting city A (0,5283)
 
insert 0 5284 A
>> Inserting city A (0,5284)
 
insert 0 5285 A
>> Inserting city A (0,5285)
 
insert 0 5286 A
>> Inserting city A (0,5286)
 
insert 0 5287 A
>> Inserting city A (0,5287)
 
insert 0 5288 A
>> Inserting city A (0,5288)
 
insert 0 5289 A
>> Inserting city A (0,5289)
 
insert 0 5290 A
>> Inserting city A (0,5290)
 
insert 0 5291 A
>> Inserting city A (0,5291)
 
insert 0 5292 A
>> Inserting city A (0,5292)
 
insert 0 5293 A
>> Inserting city A (0,5293)
 
insert 0 5294 A
>> Inserting city A (0,5294)
 
insert 0 5295 A
>> Inserting city A (0,5295)
 
insert 0 5296 A
>> Inserting city A (0,5296)
 
insert 0 5297 A
>> Inserting city A (0,5297)
 
insert 0 5298 A
>> Inserting city A (0,5298)
 
insert 0 5299 A
>> Inserting city A (0,5299)
 
insert 0 5300 A
>> Inserting city A (0,5300)
 
insert 0 5301 A
>> Inserting city A (0,5301)
 
insert 0 5302 A
>> Inserting city A (0,5302)
 
insert 0 5303 A
>> Inserting city A (0,5303)
 
insert 0 5304 A
>> Inserting city A (0,5304)
 
insert 0 5305 A
>> Inserting city A (0,5305)
 
insert 0 5306 A
>> Inserting city A (0,5306)
 
insert 0 5307 A
>> Inserting city A (0,5307)
 
insert 0 5308 A
>> Inserting city A (0,5308)
 
insert 0 5309 A
>> Inserting city A (0,5309)
 
insert 0 5310 A
>> Inserting city A (0,5310)
 
insert 0 5311 A
>> Inserting city A (0,5311)
 
insert 0 5312 A
>> Inserting city A (0,5312)
 
insert 0 5313 A
>> Inserting city A (0,5313)
 
insert 0 5314 A
>> Inserting city A (0,5314)
 
insert 0 5315 A
>> Inserting city A (0,5315)
 
insert 0 5316 A
>> Inserting city A (0,5316)
 
insert 0 5317 A
>> Inserting city A (0,5317)
 
insert 0 5318 A
>> Inserting city A (0,5318)
 
insert 0 5319 A
>> Inserting city A (0,5319)
 
insert 0 5320 A
>> Inserting city A (0,5320)
 
insert 0 5321 A
>> Inserting city A (0,5321)
 
insert 0 5322 A
>> Inserting city A (0,5322)
 
insert 0 5323 A
>> Inserting city A (0,5323)
 
insert 0 5324 A
>> Inserting city A (0,5324)
 
insert 0 5325 A
>> Inserting city A (0,5325)
 
insert 0 5326 A
>> Inserting city A (0,5326)
 
insert 0 5327 A
>> Inserting city A (0,5327)
 
insert 0 5328 A
>> Inserting city A (0,5328)
 
insert 0 5329 A
>> Inserting city A (0,5329)
 
insert 0 5330 A
>> Inserting city A (0,5330)
 
insert 0 5331 A
>> Inserting city A (0,5331)
 
insert 0 5332 A
>> Inserting city A (0,5332)
 
insert 0 5333 A
>> Inserting city A (0,5333)
 
insert 0 5334 A
>> Inserting city A (0,5334)
 
insert 0 5335 A
>> Inserting city A (0,5335)
 
insert 0 5336 A
>> Inserting city A (0,5336)
 
insert 0 5337 A
>> Inserting city A (0,5337)
 
insert 0 5338 A
>> Inserting city A (0,5338)
 
insert 0 5339 A
>> Inserting city A (0,5339)
 
insert 0 5340 A
>> Inserting city A (0,5340)
 
insert 0 5341 A
>> Inserting city A (0,5341)
 
insert 0 5342 A
>> Inserting city A (0,5342)
 
insert 0 5343 A
>> Inserting city A (0,5343)
 
insert 0 5344 A
>> Inserting city A (0,5344)
 
insert 0 5345 A
>> Inserting city A (0,5345)
 
insert 0 5346 A
>> Inserting city A (0,5346)
 
insert 0 5347 A
>> Inserting city A (0,5347)
 
insert 0 5348 A
>> Inserting city A (0,5348)
 
insert 0 5349 A
>> Inserting city A (0,5349)
 
insert 0 5350 A
>> Inserting city A (0,5350)
 
insert 0 5351 A
>> Inserting city A (0,5351)
 
insert 0 5352 A
>> Inserting city A (0,5352)
 
insert 0 5353 A
>> Inserting city A (0,5353)
 
insert 0 5354 A
>> Inserting city A (0,5354)
 
insert 0 5355 A
>> Inserting city A (0,5355)
 
insert 0 5356 A
>> Inserting city A (0,5356)
 
insert 0 5357 A
>> Inserting city A (0,5357)
 
insert 0 5358 A
>> Inserting city A (0,5358)
 
insert 0 5359 A
>> Inserting city A (0,5359)
 
insert 0 5360 A
>> Inserting city A (0,5360)
 
insert 0 5361 A
>> Inserting city A (0,5361)
 
insert 0 5362 A
>> Inserting city A (0,5362)
 
insert 0 5363 A
>> Inserting city A (0,5363)
 
insert 0 5364 A
>> Inserting city A (0,5364)
 
insert 0 5365 A
>> Inserting city A (0,5365)
 
insert 0 5366 A
>> Inserting city A (0,5366)
 
insert 0 5367 A
>> Inserting city A (0,5367)
 
insert 0 5368 A
>> Inserting city A (0,5368)
 
insert 0 5369 A
>> Inserting city A (0,5369)
 
insert 0 5370 A
>> Inserting city A (0,5370)
 
insert 0 5371 A
>> Inserting city A (0,5371)
 
insert 0 5372 A
>> Inserting city A (0,5372)
 
insert 0 5373 A
>> Inserting city A (0,5373)
 
insert 0 5374 A
>> Inserting city A (0,5374)
 
insert 0 5375 A
>> Inserting city A (0,5375)
 
insert 0 5376 A
>> Inserting city A (0,5376)
 
insert 0 5377 A
>> Inserting city A (0,5377)
 
insert 0 5378 A
>> Inserting city A (0,5378)
 
insert 0 5379 A
>> Inserting city A (0,5379)
 
insert 0 5380 A
>> Inserting city A (0,5380)
 
insert 0 5381 A
>> Inserting city A (0,5381)
 
insert 0 5382 A
>> Inserting city A (0,5382)
 
insert 0 5383 A
>> Inserting city A (0,5383)
 
insert 0 5384 A
>> Inserting city A (0,5384)
 
insert 0 5385 A
>> Inserting city A (0,5385)
 
insert 0 5386 A
>> Inserting city A (0,5386)
 
insert 0 5387 A
>> Inserting city A (0,5387)
 
insert 0 5388 A
>> Inserting city A (0,5388)
 
insert 0 5389 A
>> Inserting city A (0,5389)
 
insert 0 5390 A
>> Inserting city A (0,5390)
 
insert 0 5391 A
>> Inserting city A (0,5391)
 
insert 0 5392 A
>> Inserting city A (0,5392)
 
insert 0 5393 A
>> Inserting city A (0,5393)
 
insert 0 5394 A
>> Inserting city A (0,5394)
 
insert 0 5395 A
>> Inserting city A (0,5395)
 
insert 0 5396 A
>> Inserting city A (0,5396)
 
insert 0 5397 A
>> Inserting city A (0,5397)
 
insert 0 5398 A
>> Inserting city A (0,5398)
 
insert 0 5399 A
>> Inserting city A (0,5399)
 
insert 0 5400 A
>> Inserting city A (0,5400)
 
insert 0 5401 A
>> Inserting city A (0,5401)
 
insert 0 5402 A
>> Inserting city A (0,5402)
 
insert 0 5403 A
>> Inserting city A (0,5403)
 
insert 0 5404 A
>> Inserting city A (0,5404)
 
insert 0 5405 A
>> Inserting city A (0,5405)
 
insert 0 5406 A
>> Inserting city A (0,5406)
 
insert 0 5407 A
>> Inserting city A (0,5407)
 
insert 0 5408 A
>> Inserting city A (0,5408)
 
insert 0 5409 A
>> Inserting city A (0,5409)
 
insert 0 5410 A
>> Inserting city A (0,5410)
 
insert 0 5411 A
>> Inserting city A (0,5411)
 
insert 0 5412 A
>> Inserting city A (0,5412)
 
insert 0 5413 A
>> Inserting city A (0,5413)
 
insert 0 5414 A
>> Inserting city A (0,5414)
 
insert 0 5415 A
>> Inserting city A (0,5415)
 
insert 0 5416 A
>> Inserting city A (0,5416)
 
insert 0 5417 A
>> Inserting city A (0,5417)
 
insert 0 5418 A
>> Inserting city A (0,5418)
 
insert 0 5419 A
>> Inserting city A (0,5419)
 
insert 0 5420 A
>> Inserting city A (0,5420)
 
insert 0 5421 A
>> Inserting city A (0,5421)
 
insert 0 5422 A
>> Inserting city A (0,5422)
 
insert 0 5423 A
>> Inserting city A (0,5423)
 
insert 0 5424 A
>> Inserting city A (0,5424)
 
insert 0 5425 A
>> Inserting city A (0,5425)
 
insert 0 5426 A
>> Inserting city A (0,5426)
 
insert 0 5427 A
>> Inserting city A (0,5427)
 
insert 0 5428 A
>> Inserting city A (0,5428)
 
insert 0 5429 A
>> Inserting city A (0,5429)
 
insert 0 5430 A
>> Inserting city A (0,5430)
 
insert 0 5431 A
>> Inserting city A (0,5431)
 
insert 0 5432 A
>> Inserting city A (0,5432)
 
insert 0 5433 A
>> Inserting city A (0,5433)
 
insert 0 5434 A
>> Inserting city A (0,5434)
 
insert 0 5435 A
>> Inserting city A (0,5435)
 
insert 0 5436 A
>> Inserting city A (0,5436)
 
insert 0 5437 A
>> Inserting city A (0,5437)
 
insert 0 5438 A
>> Inserting city A (0,5438)
 
insert 0 5439 A
>> Inserting city A (0,5439)
 
insert 0 5440 A
>> Inserting city A (0,5440)
 
insert 0 5441 A
>> Inserting city A (0,5441)
 
insert 0 5442 A
>> Inserting city A (0,5442)
 
insert 0 5443 A
>> Inserting city A (0,5443)
 
insert 0 5444 A
>> Inserting city A (0,5444)
 
insert 0 5445 A
>> Inserting city A (0,5445)
 
insert 0 5446 A
>> Inserting city A (0,5446)
 
insert 0 5447 A
>> Inserting city A (0,5447)
 
insert 0 5448 A
>> Inserting city A (0,5448)
 
insert 0 5449 A
>> Inserting city A (0,5449)
 
insert 0 5450 A
>> Inserting city A (0,5450)
 
insert 0 5451 A
>> Inserting city A (0,5451)
 
insert 0 5452 A
>> Inserting city A (0,5452)
 
insert 0 5453 A
>> Inserting city A (0,5453)
 
insert 0 5454 A
>> Inserting city A (0,5454)
 
insert 0 5455 A
>> Inserting city A (0,5455)
 
insert 0 5456 A
>> Inserting city A (0,5456)
 
insert 0 5457 A
>> Inserting city A (0,5457)
 
insert 0 5458 A
>> Inserting city A (0,5458)
 
insert 0 5459 A
>> Inserting city A (0,5459)
 
insert 0 5460 A
>> Inserting city A (0,5460)
 
insert 0 5461 A
>> Inserting city A (0,5461)
 
insert 0 5462 A
>> Inserting city A (0,5462)
 
insert 0 5463 A
>> Inserting city A (0,5463)
 
insert 0 5464 A
>> Inserting city A (0,5464)
 
insert 0 5465 A
>> Inserting city A (0,5465)
 
insert 0 5466 A
>> Inserting city A (0,5466)
 
insert 0 5467 A
>> Inserting city A (0,5467)
 
insert 0 5468 A
>> Inserting city A (0,5468)
 
insert 0 5469 A
>> Inserting city A (0,5469)
 
insert 0 5470 A
>> Inserting city A (0,5470)
 
insert 0 5471 A
>> Inserting city A (0,5471)
 
insert 0 5472 A
>> Inserting city A (0,5472)
 
insert 0 5473 A
>> Inserting city A (0,5473)
 
insert 0 5474 A
>> Inserting city A (0,5474)
 
insert 0 5475 A
>> Inserting city A (0,5475)
 
insert 0 5476 A
>> Inserting city A (0,5476)
 
insert 0 5477 A
>> Inserting city A (0,5477)
 
insert 0 5478 A
>> Inserting city A (0,5478)
 
insert 0 5479 A
>> Inserting city A (0,5479)
 
insert 0 5480 A
>> Inserting city A (0,5480)
 
insert 0 5481 A
>> Inserting city A (0,5481)
 
insert 0 5482 A
>> Inserting city A (0,5482)
 
insert 0 5483 A
>> Inserting city A (0,5483)
 
insert 0 5484 A
>> Inserting city A (0,5484)
 
insert 0 5485 A
>> Inserting city A (0,5485)
 
insert 0 5486 A
>> Inserting city A (0,5486)
 
insert 0 5487 A
>> Inserting city A (0,5487)
 
insert 0 5488 A
>> Inserting city A (0,5488)
 
insert 0 5489 A
>> Inserting city A (0,5489)
 
insert 0 5490 A
>> Inserting city A (0,5490)
 
insert 0 5491 A
>> Inserting city A (0,5491)
 
insert 0 5492 A
>> Inserting city A (0,5492)
 
insert 0 5493 A
>> Inserting city A (0,5493)
 
insert 0 5494 A
>> Inserting city A (0,5494)
 
insert 0 5495 A
>> Inserting city A (0,5495)
 
insert 0 5496 A
>> Inserting city A (0,5496)
 
insert 0 5497 A
>> Inserting city A (0,5497)
 
insert 0 5498 A
>> Inserting city A (0,5498)
 
insert 0 5499 A
>> Inserting city A (0,5499)
 
insert 0 5500 A
>> Inserting city A (0,5500)
 
insert 0 5501 A
>> Inserting city A (0,5501)
 
insert 0 5502 A
>> Inserting city A (0,5502)
 
insert 0 5503 A
>> Inserting city A (0,5503)
 
insert 0 5504 A
>> Inserting city A (0,5504)
 
insert 0 5505 A
>> Inserting city A (0,5505)
 
insert 0 5506 A
>> Inserting city A (0,5506)
 
insert 0 5507 A
>> Inserting city A (0,5507)
 
insert 0 5508 A
>> Inserting city A (0,5508)
 
insert 0 5509 A
>> Inserting city A (0,5509)
 
insert 0 5510 A
>> Inserting city A (0,5510)
 
insert 0 5511 A
>> Inserting city A (0,5511)
 
insert 0 5512 A
>> Inserting city A (0,5512)
 
insert 0 5513 A
>> Inserting city A (0,5513)
 
insert 0 5514 A
>> Inserting city A (0,5514)
 
insert 0 5515 A
>> Inserting city A (0,5515)
 
insert 0 5516 A
>> Inserting city A (0,5516)
 
insert 0 5517 A
>> Inserting city A (0,5517)
 
insert 0 5518 A
>> Inserting city A (0,5518)
 
insert 0 5519 A
>> Inserting city A (0,5519)
 
insert 0 5520 A
>> Inserting city A (0,5520)
 
insert 0 5521 A
>> Inserting city A (0,5521)
 
insert 0 5522 A
>> Inserting city A (0,5522)
 
insert 0 5523 A
>> Inserting city A (0,5523)
 
insert 0 5524 A
>> Inserting city A (0,5524)
 
insert 0 5525 A
>> Inserting city A (0,5525)
 
insert 0 5526 A
>> Inserting city A (0,5526)
 
insert 0 5527 A
>> Inserting city A (0,5527)
 
insert 0 5528 A
>> Inserting city A (0,5528)
 
insert 0 5529 A
>> Inserting city A (0,5529)
 
insert 0 5530 A
>> Inserting city A (0,5530)
 
insert 0 5531 A
>> Inserting city A (0,5531)
 
insert 0 5532 A
>> Inserting city A (0,5532)
 
insert 0 5533 A
>> Inserting city A (0,5533)
 
insert 0 5534 A
>> Inserting city A (0,5534)
 
insert 0 5535 A
>> Inserting city A (0,5535)
 
insert 0 5536 A
>> Inserting city A (0,5536)
 
insert 0 5537 A
>> Inserting city A (0,5537)
 
insert 0 5538 A
>> Inserting city A (0,5538)
 
insert 0 5539 A
>> Inserting city A (0,5539)
 
insert 0 5540 A
>> Inserting city A (0,5540)
 
insert 0 5541 A
>> Inserting city A (0,5541)
 
insert 0 5542 A
>> Inserting city A (0,5542)
 
insert 0 5543 A
>> Inserting city A (0,5543)
 
insert 0 5544 A
>> Inserting city A (0,5544)
 
insert 0 5545 A
>> Inserting city A (0,5545)
 
insert 0 5546 A
>> Inserting city A (0,5546)
 
insert 0 5547 A
>> Inserting city A (0,5547)
 
insert 0 5548 A
>> Inserting city A (0,5548)
 
insert 0 5549 A
>> Inserting city A (0,5549)
 
insert 0 5550 A
>> Inserting city A (0,5550)
 
insert 0 5551 A
>> Inserting city A (0,5551)
 
insert 0 5552 A
>> Inserting city A (0,5552)
 
insert 0 5553 A
>> Inserting city A (0,5553)
 
insert 0 5554 A
>> Inserting city A (0,5554)
 
insert 0 5555 A
>> Inserting city A (0,5555)
 
insert 0 5556 A
>> Inserting city A (0,5556)
 
insert 0 5557 A
>> Inserting city A (0,5557)
 
insert 0 5558 A
>> Inserting city A (0,5558)
 
insert 0 5559 A
>> Inserting city A (0,5559)
 
insert 0 5560 A
>> Inserting city A (0,5560)
 
insert 0 5561 A
>> Inserting city A (0,5561)
 
insert 0 5562 A
>> Inserting city A (0,5562)
 
insert 0 5563 A
>> Inserting city A (0,5563)
 
insert 0 5564 A
>> Inserting city A (0,5564)
 
insert 0 5565 A
>> Inserting city A (0,5565)
 
insert 0 5566 A
>> Inserting city A (0,5566)
 
insert 0 5567 A
>> Inserting city A (0,5567)
 
insert 0 5568 A
>> Inserting city A (0,5568)
 
insert 0 5569 A
>> Inserting city A (0,5569)
 
insert 0 5570 A
>> Inserting city A (0,5570)
 
insert 0 5571 A
>> Inserting city A (0,5571)
 
insert 0 5572 A
>> Inserting city A (0,5572)
 
insert 0 5573 A
>> Inserting city A (0,5573)
 
insert 0 5574 A
>> Inserting city A (0,5574)
 
insert 0 5575 A
>> Inserting city A (0,5575)
 
insert 0 5576 A
>> Inserting city A (0,5576)
 
insert 0 5577 A
>> Inserting city A (0,5577)
 
insert 0 5578 A
>> Inserting city A (0,5578)
 
insert 0 5579 A
>> Inserting city A (0,5579)
 
insert 0 5580 A
>> Inserting city A (0,5580)
 
insert 0 5581 A
>> Inserting city A (0,5581)
 
insert 0 5582 A
>> Inserting city A (0,5582)
 
insert 0 5583 A
>> Inserting city A (0,5583)
 
insert 0 5584 A
>> Inserting city A (0,5584)
 
insert 0 5585 A
>> Inserting city A (0,5585)
 
insert 0 5586 A
>> Inserting city A (0,5586)
 
insert 0 5587 A
>> Inserting city A (0,5587)
 
insert 0 5588 A
>> Inserting city A (0,5588)
 
insert 0 5589 A
>> Inserting city A (0,5589)
 
insert 0 5590 A
>> Inserting city A (0,5590)
 
insert 0 5591 A
>> Inserting city A (0,5591)
 
insert 0 5592 A
>> Inserting city A (0,5592)
 
insert 0 5593 A
>> Inserting city A (0,5593)
 
insert 0 5594 A
>> Inserting city A (0,5594)
 
insert 0 5595 A
>> Inserting city A (0,5595)
 
insert 0 5596 A
>> Inserting city A (0,5596)
 
insert 0 5597 A
>> Inserting city A (0,5597)
 
insert 0 5598 A
>> Inserting city A (0,5598)
 
insert 0 5599 A
>> Inserting city A (0,5599)
 
insert 0 5600 A
>> Inserting city A (0,5600)
 
insert 0 5601 A
>> Inserting city A (0,5601)
 
insert 0 5602 A
>> Inserting city A (0,5602)
 
insert 0 5603 A
>> Inserting city A (0,5603)
 
insert 0 5604 A
>> Inserting city A (0,5604)
 
insert 0 5605 A
>> Inserting city A (0,5605)
 
insert 0 5606 A
>> Inserting city A (0,5606)
 
insert 0 5607 A
>> Inserting city A (0,5607)
 
insert 0 5608 A
>> Inserting city A (0,5608)
 
insert 0 5609 A
>> Inserting city A (0,5609)
 
insert 0 5610 A
>> Inserting city A (0,5610)
 
insert 0 5611 A
>> Inserting city A (0,5611)
 
insert 0 5612 A
>> Inserting city A (0,5612)
 
insert 0 5613 A
>> Inserting city A (0,5613)
 
insert 0 5614 A
>> Inserting city A (0,5614)
 
insert 0 5615 A
>> Inserting city A (0,5615)
 
insert 0 5616 A
>> Inserting city A (0,5616)
 
insert 0 5617 A
>> Inserting city A (0,5617)
 
insert 0 5618 A
>> Inserting city A (0,5618)
 
insert 0 5619 A
>> Inserting city A (0,5619)
 
insert 0 5620 A
>> Inserting city A (0,5620)
 
insert 0 5621 A
>> Inserting city A (0,5621)
 
insert 0 5622 A
>> Inserting city A (0,5622)
 
insert 0 5623 A
>> Inserting city A (0,5623)
 
insert 0 5624 A
>> Inserting city A (0,5624)
 
insert 0 5625 A
>> Inserting city A (0,5625)
 
insert 0 5626 A
>> Inserting city A (0,5626)
 
insert 0 5627 A
>> Inserting city A (0,5627)
 
insert 0 5628 A
>> Inserting city A (0,5628)
 
insert 0 5629 A
>> Inserting city A (0,5629)
 
insert 0 5630 A
>> Inserting city A (0,5630)
 
insert 0 5631 A
>> Inserting city A (0,5631)
 
insert 0 5632 A
>> Inserting city A (0,5632)
 
insert 0 5633 A
>> Inserting city A (0,5633)
 
insert 0 5634 A
>> Inserting city A (0,5634)
 
insert 0 5635 A
>> Inserting city A (0,5635)
 
insert 0 5636 A
>> Inserting city A (0,5636)
 
insert 0 5637 A
>> Inserting city A (0,5637)
 
insert 0 5638 A
>> Inserting city A (0,5638)
 
insert 0 5639 A
>> Inserting city A (0,5639)
 
insert 0 5640 A
>> Inserting city A (0,5640)
 
insert 0 5641 A
>> Inserting city A (0,5641)
 
insert 0 5642 A
>> Inserting city A (0,5642)
 
insert 0 5643 A
>> Inserting city A (0,5643)
 
insert 0 5644 A
>> Inserting city A (0,5644)
 
insert 0 5645 A
>> Inserting city A (0,5645)
 
insert 0 5646 A
>> Inserting city A (0,5646)
 
insert 0 5647 A
>> Inserting city A (0,5647)
 
insert 0 5648 A
>> Inserting city A (0,5648)
 
insert 0 5649 A
>> Inserting city A (0,5649)
 
insert 0 5650 A
>> Inserting city A (0,5650)
 
insert 0 5651 A
>> Inserting city A (0,5651)
 
insert 0 5652 A
>> Inserting city A (0,5652)
 
insert 0 5653 A
>> Inserting city A (0,5653)
 
insert 0 5654 A
>> Inserting city A (0,5654)
 
insert 0 5655 A
>> Inserting city A (0,5655)
 
insert 0 5656 A
>> Inserting city A (0,5656)
 
insert 0 5657 A
>> Inserting city A (0,5657)
 
insert 0 5658 A
>> Inserting city A (0,5658)
 
insert 0 5659 A
>> Inserting city A (0,5659)
 
insert 0 5660 A
>> Inserting city A (0,5660)
 
insert 0 5661 A
>> Inserting city A (0,5661)
 
insert 0 5662 A
>> Inserting city A (0,5662)
 
insert 0 5663 A
>> Inserting city A (0,5663)
 
insert 0 5664 A
>> Inserting city A (0,5664)
 
insert 0 5665 A
>> Inserting city A (0,5665)
 
insert 0 5666 A
>> Inserting city A (0,5666)
 
insert 0 5667 A
>> Inserting city A (0,5667)
 
insert 0 5668 A
>> Inserting city A (0,5668)
 
insert 0 5669 A
>> Inserting city A (0,5669)
 
insert 0 5670 A
>> Inserting city A (0,5670)
 
insert 0 5671 A
>> Inserting city A (0,5671)
 
insert 0 5672 A
>> Inserting city A (0,5672)
 
insert 0 5673 A
>> Inserting city A (0,5673)
 
insert 0 5674 A
>> Inserting city A (0,5674)
 
insert 0 5675 A
>> Inserting city A (0,5675)
 
insert 0 5676 A
>> Inserting city A (0,5676)
 
insert 0 5677 A
>> Inserting city A (0,5677)
 
insert 0 5678 A
>> Inserting city A (0,5678)
 
insert 0 5679 A
>> Inserting city A (0,5679)
 
insert 0 5680 A
>> Inserting city A (0,5680)
 
insert 0 5681 A
>> Inserting city A (0,5681)
 
insert 0 5682 A
>> Inserting city A (0,5682)
 
insert 0 5683 A
>> Inserting city A (0,5683)
 
insert 0 5684 A
>> Inserting city A (0,5684)
 
insert 0 5685 A
>> Inserting city A (0,5685)
 
insert 0 5686 A
>> Inserting city A (0,5686)
 
insert 0 5687 A
>> Inserting city A (0,5687)
 
insert 0 5688 A
>> Inserting city A (0,5688)
 
insert 0 5689 A
>> Inserting city A (0,5689)
 
insert 0 5690 A
>> Inserting city A (0,5690)
 
insert 0 5691 A
>> Inserting city A (0,5691)
 
insert 0 5692 A
>> Inserting city A (0,5692)
 
insert 0 5693 A
>> Inserting city A (0,5693)
 
insert 0 5694 A
>> Inserting city A (0,5694)
 
insert 0 5695 A
>> Inserting city A (0,5695)
 
insert 0 5696 A
>> Inserting city A (0,5696)
 
insert 0 5697 A
>> Inserting city A (0,5697)
 
insert 0 5698 A
>> Inserting city A (0,5698)
 
insert 0 5699 A
>> Inserting city A (0,5699)
 
insert 0 5700 A
>> Inserting city A (0,5700)
 
insert 0 5701 A
>> Inserting city A (0,5701)
 
insert 0 5702 A
>> Inserting city A (0,5702)
 
insert 0 5703 A
>> Inserting city A (0,5703)
 
insert 0 5704 A
>> Inserting city A (0,5704)
 
insert 0 5705 A
>> Inserting city A (0,5705)
 
insert 0 5706 A
>> Inserting city A (0,5706)
 
insert 0 5707 A
>> Inserting city A (0,5707)
 
insert 0 5708 A
>> Inserting city A (0,5708)
 
insert 0 5709 A
>> Inserting city A (0,5709)
 
insert 0 5710 A
>> Inserting city A (0,5710)
 
insert 0 5711 A
>> Inserting city A (0,5711)
 
insert 0 5712 A
>> Inserting city A (0,5712)
 
insert 0 5713 A
>> Inserting city A (0,5713)
 
insert 0 5714 A
>> Inserting city A (0,5714)
 
insert 0 5715 A
>> Inserting city A (0,5715)
 
insert 0 5716 A
>> Inserting city A (0,5716)
 
insert 0 5717 A
>> Inserting city A (0,5717)
 
insert 0 5718 A
>> Inserting city A (0,5718)
 
insert 0 5719 A
>> Inserting city A (0,5719)
 
insert 0 5720 A
>> Inserting city A (0,5720)
 
insert 0 5721 A
>> Inserting city A (0,5721)
 
insert 0 5722 A
>> Inserting city A (0,5722)
 
insert 0 5723 A
>> Inserting city A (0,5723)
 
insert 0 5724 A
>> Inserting city A (0,5724)
 
insert 0 5725 A
>> Inserting city A (0,5725)
 
insert 0 5726 A
>> Inserting city A (0,5726)
 
insert 0 5727 A
>> Inserting city A (0,5727)
 
insert 0 5728 A
>> Inserting city A (0,5728)
 
insert 0 5729 A
>> Inserting city A (0,5729)
 
insert 0 5730 A
>> Inserting city A (0,5730)
 
insert 0 5731 A
>> Inserting city A (0,5731)
 
insert 0 5732 A
>> Inserting city A (0,5732)
 
insert 0 5733 A
>> Inserting city A (0,5733)
 
insert 0 5734 A
>> Inserting city A (0,5734)
 
insert 0 5735 A
>> Inserting city A (0,5735)
 
insert 0 5736 A
>> Inserting city A (0,5736)
 
insert 0 5737 A
>> Inserting city A (0,5737)
 
insert 0 5738 A
>> Inserting city A (0,5738)
 
insert 0 5739 A
>> Inserting city A (0,5739)
 
insert 0 5740 A
>> Inserting city A (0,5740)
 
insert 0 5741 A
>> Inserting city A (0,5741)
 
insert 0 5742 A
>> Inserting city A (0,5742)
 
insert 0 5743 A
>> Inserting city A (0,5743)
 
insert 0 5744 A
>> Inserting city A (0,5744)
 
insert 0 5745 A
>> Inserting city A (0,5745)
 
insert 0 5746 A
>> Inserting city A (0,5746)
 
insert 0 5747 A
>> Inserting city A (0,5747)
 
insert 0 5748 A
>> Inserting city A (0,5748)
 
insert 0 5749 A
>> Inserting city A (0,5749)
 
insert 0 5750 A
>> Inserting city A (0,5750)
 
insert 0 5751 A
>> Inserting city A (0,5751)
 
insert 0 5752 A
>> Inserting city A (0,5752)
 
insert 0 5753 A
>> Inserting city A (0,5753)
 
insert 0 5754 A
>> Inserting city A (0,5754)
 
insert 0 5755 A
>> Inserting city A (0,5755)
 
insert 0 5756 A
>> Inserting city A (0,5756)
 
insert 0 5757 A
>> Inserting city A (0,5757)
 
insert 0 5758 A
>> Inserting city A (0,5758)
 
insert 0 5759 A
>> Inserting city A (0,5759)
 
insert 0 5760 A
>> Inserting city A (0,5760)
 
insert 0 5761 A
>> Inserting city A (0,5761)
 
insert 0 5762 A
>> Inserting city A (0,5762)
 
insert 0 5763 A
>> Inserting city A (0,5763)
 
insert 0 5764 A
>> Inserting city A (0,5764)
 
insert 0 5765 A
>> Inserting city A (0,5765)
 
insert 0 5766 A
>> Inserting city A (0,5766)
 
insert 0 5767 A
>> Inserting city A (0,5767)
 
insert 0 5768 A
>> Inserting city A (0,5768)
 
insert 0 5769 A
>> Inserting city A (0,5769)
 
insert 0 5770 A
>> Inserting city A (0,5770)
 
insert 0 5771 A
>> Inserting city A (0,5771)
 
insert 0 5772 A
>> Inserting city A (0,5772)
 
insert 0 5773 A
>> Inserting city A (0,5773)
 
insert 0 5774 A
>> Inserting city A (0,5774)
 
insert 0 5775 A
>> Inserting city A (0,5775)
 
insert 0 5776 A
>> Inserting city A (0,5776)
 
insert 0 5777 A
>> Inserting city A (0,5777)
 
insert 0 5778 A
>> Inserting city A (0,5778)
 
insert 0 5779 A
>> Inserting city A (0,5779)
 
insert 0 5780 A
>> Inserting city A (0,5780)
 
insert 0 5781 A
>> Inserting city A (0,5781)
 
insert 0 5782 A
>> Inserting city A (0,5782)
 
insert 0 5783 A
>> Inserting city A (0,5783)
 
insert 0 5784 A
>> Inserting city A (0,5784)
 
insert 0 5785 A
>> Inserting city A (0,5785)
 
insert 0 5786 A
>> Inserting city A (0,5786)
 
insert 0 5787 A
>> Inserting city A (0,5787)
 
insert 0 5788 A
>> Inserting city A (0,5788)
 
insert 0 5789 A
>> Inserting city A (0,5789)
 
insert 0 5790 A
>> Inserting city A (0,5790)
 
insert 0 5791 A
>> Inserting city A (0,5791)
 
insert 0 5792 A
>> Inserting city A (0,5792)
 
insert 0 5793 A
>> Inserting city A (0,5793)
 
insert 0 5794 A
>> Inserting city A (0,5794)
 
insert 0 5795 A
>> Inserting city A (0,5795)
 
insert 0 5796 A
>> Inserting city A (0,5796)
 
insert 0 5797 A
>> Inserting city A (0,5797)
 
insert 0 5798 A
>> Inserting city A (0,5798)
 
insert 0 5799 A
>> Inserting city A (0,5799)
 
insert 0 5800 A
>> Inserting city A (0,5800)
 
insert 0 5801 A
>> Inserting city A (0,5801)
 
insert 0 5802 A
>> Inserting city A (0,5802)
 
insert 0 5803 A
>> Inserting city A (0,5803)
 
insert 0 5804 A
>> Inserting city A (0,5804)
 
insert 0 5805 A
>> Inserting city A (0,5805)
 
insert 0 5806 A
>> Inserting city A (0,5806)
 
insert 0 5807 A
>> Inserting city A (0,5807)
 
insert 0 5808 A
>> Inserting city A (0,5808)
 
insert 0 5809 A
>> Inserting city A (0,5809)
 
insert 0 5810 A
>> Inserting city A (0,5810)
 
insert 0 5811 A
>> Inserting city A (0,5811)
 
insert 0 5812 A
>> Inserting city A (0,5812)
 
insert 0 5813 A
>> Inserting city A (0,5813)
 
insert 0 5814 A
>> Inserting city A (0,5814)
 
insert 0 5815 A
>> Inserting city A (0,5815)
 
insert 0 5816 A
>> Inserting city A (0,5816)
 
insert 0 5817 A
>> Inserting city A (0,5817)
 
insert 0 5818 A
>> Inserting city A (0,5818)
 
insert 0 5819 A
>> Inserting city A (0,5819)
 
insert 0 5820 A
>> Inserting city A (0,5820)
 
insert 0 5821 A
>> Inserting city A (0,5821)
 
insert 0 5822 A
>> Inserting city A (0,5822)
 
insert 0 5823 A
>> Inserting city A (0,5823)
 
insert 0 5824 A
>> Inserting city A (0,5824)
 
insert 0 5825 A
>> Inserting city A (0,5825)
 
insert 0 5826 A
>> Inserting city A (0,5826)
 
insert 0 5827 A
>> Inserting city A (0,5827)
 
insert 0 5828 A
>> Inserting city A (0,5828)
 
insert 0 5829 A
>> Inserting city A (0,5829)
 
insert 0 5830 A
>> Inserting city A (0,5830)
 
insert 0 5831 A
>> Inserting city A (0,5831)
 
insert 0 5832 A
>> Inserting city A (0,5832)
 
insert 0 5833 A
>> Inserting city A (0,5833)
 
insert 0 5834 A
>> Inserting city A (0,5834)
 
insert 0 5835 A
>> Inserting city A (0,5835)
 
insert 0 5836 A
>> Inserting city A (0,5836)
 
insert 0 5837 A
>> Inserting city A (0,5837)
 
insert 0 5838 A
>> Inserting city A (0,5838)
 
insert 0 5839 A
>> Inserting city A (0,5839)
 
insert 0 5840 A
>> Inserting city A (0,5840)
 
insert 0 5841 A
>> Inserting city A (0,5841)
 
insert 0 5842 A
>> Inserting city A (0,5842)
 
insert 0 5843 A
>> Inserting city A (0,5843)
 
insert 0 5844 A
>> Inserting city A (0,5844)
 
insert 0 5845 A
>> Inserting city A (0,5845)
 
insert 0 5846 A
>> Inserting city A (0,5846)
 
insert 0 5847 A
>> Inserting city A (0,5847)
 
insert 0 5848 A
>> Inserting city A (0,5848)
 
insert 0 5849 A
>> Inserting city A (0,5849)
 
insert 0 5850 A
>> Inserting city A (0,5850)
 
insert 0 5851 A
>> Inserting city A (0,5851)
 
insert 0 5852 A
>> Inserting city A (0,5852)
 
insert 0 5853 A
>> Inserting city A (0,5853)
 
insert 0 5854 A
>> Inserting city A (0,5854)
 
insert 0 5855 A
>> Inserting city A (0,5855)
 
insert 0 5856 A
>> Inserting city A (0,5856)
 
insert 0 5857 A
>> Inserting city A (0,5857)
 
insert 0 5858 A
>> Inserting city A (0,5858)
 
insert 0 5859 A
>> Inserting city A (0,5859)
 
insert 0 5860 A
>> Inserting city A (0,5860)
 
insert 0 5861 A
>> Inserting city A (0,5861)
 
insert 0 5862 A
>> Inserting city A (0,5862)
 
insert 0 5863 A
>> Inserting city A (0,5863)
 
insert 0 5864 A
>> Inserting city A (0,5864)
 
insert 0 5865 A
>> Inserting city A (0,5865)
 
insert 0 5866 A
>> Inserting city A (0,5866)
 
insert 0 5867 A
>> Inserting city A (0,5867)
 
insert 0 5868 A
>> Inserting city A (0,5868)
 
insert 0 5869 A
>> Inserting city A (0,5869)
 
insert 0 5870 A
>> Inserting city A (0,5870)
 
insert 0 5871 A
>> Inserting city A (0,5871)
 
insert 0 5872 A
>> Inserting city A (0,5872)
 
insert 0 5873 A
>> Inserting city A (0,5873)
 
insert 0 5874 A
>> Inserting city A (0,5874)
 
insert 0 5875 A
>> Inserting city A (0,5875)
 
insert 0 5876 A
>> Inserting city A (0,5876)
 
insert 0 5877 A
>> Inserting city A (0,5877)
 
insert 0 5878 A
>> Inserting city A (0,5878)
 
insert 0 5879 A
>> Inserting city A (0,5879)
 
insert 0 5880 A
>> Inserting city A (0,5880)
 
insert 0 5881 A
>> Inserting city A (0,5881)
 
insert 0 5882 A
>> Inserting city A (0,5882)
 
insert 0 5883 A
>> Inserting city A (0,5883)
 
insert 0 5884 A
>> Inserting city A (0,5884)
 
insert 0 5885 A
>> Inserting city A (0,5885)
 
insert 0 5886 A
>> Inserting city A (0,5886)
 
insert 0 5887 A
>> Inserting city A (0,5887)
 
insert 0 5888 A
>> Inserting city A (0,5888)
 
insert 0 5889 A
>> Inserting city A (0,5889)
 
insert 0 5890 A
>> Inserting city A (0,5890)
 
insert 0 5891 A
>> Inserting city A (0,5891)
 
insert 0 5892 A
>> Inserting city A (0,5892)
 
insert 0 5893 A
>> Inserting city A (0,5893)
 
insert 0 5894 A
>> Inserting city A (0,5894)
 
insert 0 5895 A
>> Inserting city A (0,5895)
 
insert 0 5896 A
>> Inserting city A (0,5896)
 
insert 0 5897 A
>> Inserting city A (0,5897)
 
insert 0 5898 A
>> Inserting city A (0,5898)
 
insert 0 5899 A
>> Inserting city A (0,5899)
 
insert 0 5900 A
>> Inserting city A (0,5900)
 
insert 0 5901 A
>> Inserting city A (0,5901)
 
insert 0 5902 A
>> Inserting city A (0,5902)
 
insert 0 5903 A
>> Inserting city A (0,5903)
 
insert 0 5904 A
>> Inserting city A (0,5904)
 
insert 0 5905 A
>> Inserting city A (0,5905)
 
insert 0 5906 A
>> Inserting city A (0,5906)
 
insert 0 5907 A
>> Inserting city A (0,5907)
 
insert 0 5908 A
>> Inserting city A (0,5908)
 
insert 0 5909 A
>> Inserting city A (0,5909)
 
insert 0 5910 A
>> Inserting city A (0,5910)
 
insert 0 5911 A
>> Inserting city A (0,5911)
 
insert 0 5912 A
>> Inserting city A (0,5912)
 
insert 0 5913 A
>> Inserting city A (0,5913)
 
insert 0 5914 A
>> Inserting city A (0,5914)
 
insert 0 5915 A
>> Inserting city A (0,5915)
 
insert 0 5916 A
>> Inserting city A (0,5916)
 
insert 0 5917 A
>> Inserting city A (0,5917)
 
insert 0 5918 A
>> Inserting city A (0,5918)
 
insert 0 5919 A
>> Inserting city A (0,5919)
 
insert 0 5920 A
>> Inserting city A (0,5920)
 
insert 0 5921 A
>> Inserting city A (0,5921)
 
insert 0 5922 A
>> Inserting city A (0,5922)
 
insert 0 5923 A
>> Inserting city A (0,5923)
 
insert 0 5924 A
>> Inserting city A (0,5924)
 
insert 0 5925 A
>> Inserting city A (0,5925)
 
insert 0 5926 A
>> Inserting city A (0,5926)
 
insert 0 5927 A
>> Inserting city A (0,5927)
 
insert 0 5928 A
>> Inserting city A (0,5928)
 
insert 0 5929 A
>> Inserting city A (0,5929)
 
insert 0 5930 A
>> Inserting city A (0,5930)
 
insert 0 5931 A
>> Inserting city A (0,5931)
 
insert 0 5932 A
>> Inserting city A (0,5932)
 
insert 0 5933 A
>> Inserting city A (0,5933)
 
insert 0 5934 A
>> Inserting city A (0,5934)
 
insert 0 5935 A
>> Inserting city A (0,5935)
 
insert 0 5936 A
>> Inserting city A (0,5936)
 
insert 0 5937 A
>> Inserting city A (0,5937)
 
insert 0 5938 A
>> Inserting city A (0,5938)
 
insert 0 5939 A
>> Inserting city A (0,5939)
 
insert 0 5940 A
>> Inserting city A (0,5940)
 
insert 0 5941 A
>> Inserting city A (0,5941)
 
insert 0 5942 A
>> Inserting city A (0,5942)
 
insert 0 5943 A
>> Inserting city A (0,5943)
 
insert 0 5944 A
>> Inserting city A (0,5944)
 
insert 0 5945 A
>> Inserting city A (0,5945)
 
insert 0 5946 A
>> Inserting city A (0,5946)
 
insert 0 5947 A
>> Inserting city A (0,5947)
 
insert 0 5948 A
>> Inserting city A (0,5948)
 
insert 0 5949 A
>> Inserting city A (0,5949)
 
insert 0 5950 A
>> Inserting city A (0,5950)
 
insert 0 5951 A
>> Inserting city A (0,5951)
 
insert 0 5952 A
>> Inserting city A (0,5952)
 
insert 0 5953 A
>> Inserting city A (0,5953)
 
insert 0 5954 A
>> Inserting city A (0,5954)
 
insert 0 5955 A
>> Inserting city A (0,5955)
 
insert 0 5956 A
>> Inserting city A (0,5956)
 
insert 0 5957 A
>> Inserting city A (0,5957)
 
insert 0 5958 A
>> Inserting city A (0,5958)
 
insert 0 5959 A
>> Inserting city A (0,5959)
 
insert 0 5960 A
>> Inserting city A (0,5960)
 
insert 0 5961 A
>> Inserting city A (0,5961)
 
insert 0 5962 A
>> Inserting city A (0,5962)
 
insert 0 5963 A
>> Inserting city A (0,5963)
 
insert 0 5964 A
>> Inserting city A (0,5964)
 
insert 0 5965 A
>> Inserting city A (0,5965)
 
insert 0 5966 A
>> Inserting city A (0,5966)
 
insert 0 5967 A
>> Inserting city A (0,5967)
 
insert 0 5968 A
>> Inserting city A (0,5968)
 
insert 0 5969 A
>> Inserting city A (0,5969)
 
insert 0 5970 A
>> Inserting city A (0,5970)
 
insert 0 5971 A
>> Inserting city A (0,5971)
 
insert 0 5972 A
>> Inserting city A (0,5972)
 
insert 0 5973 A
>> Inserting city A (0,5973)
 
insert 0 5974 A
>> Inserting city A (0,5974)
 
insert 0 5975 A
>> Inserting city A (0,5975)
 
insert 0 5976 A
>> Inserting city A (0,5976)
 
insert 0 5977 A
>> Inserting city A (0,5977)
 
insert 0 5978 A
>> Inserting city A (0,5978)
 
insert 0 5979 A
>> Inserting city A (0,5979)
 
insert 0 5980 A
>> Inserting city A (0,5980)
 
insert 0 5981 A
>> Inserting city A (0,5981)
 
insert 0 5982 A
>> Inserting city A (0,5982)
 
insert 0 5983 A
>> Inserting city A (0,5983)
 
insert 0 5984 A
>> Inserting city A (0,5984)
 
insert 0 5985 A
>> Inserting city A (0,5985)
 
insert 0 5986 A
>> Inserting city A (0,5986)
 
insert 0 5987 A
>> Inserting city A (0,5987)
 
insert 0 5988 A
>> Inserting city A (0,5988)
 
insert 0 5989 A
>> Inserting city A (0,5989)
 
insert 0 5990 A
>> Inserting city A (0,5990)
 
insert 0 5991 A
>> Inserting city A (0,5991)
 
insert 0 5992 A
>> Inserting city A (0,5992)
 
insert 0 5993 A
>> Inserting city A (0,5993)
 
insert 0 5994 A
>> Inserting city A (0,5994)
 
insert 0 5995 A
>> Inserting city A (0,5995)
 
insert 0 5996 A
>> Inserting city A (0,5996)
 
insert 0 5997 A
>> Inserting city A (0,5997)
 
insert 0 5998 A
>> Inserting city A (0,5998)
 
insert 0 5999 A
>> Inserting city A (0,5999)
 
insert 0 6000 A
>> Inserting city A (0,6000)
 
insert 0 6001 A
>> Inserting city A (0,6001)
 
insert 0 6002 A
>> Inserting city A (0,6002)
 
insert 0 6003 A
>> Inserting city A (0,6003)
 
insert 0 6004 A
>> Inserting city A (0,6004)
 
insert 0 6005 A
>> Inserting city A (0,6005)
 
insert 0 6006 A
>> Inserting city A (0,6006)
 
insert 0 6007 A
>> Inserting city A (0,6007)
 
insert 0 6008 A
>> Inserting city A (0,6008)
 
insert 0 6009 A
>> Inserting city A (0,6009)
 
insert 0 6010 A
>> Inserting city A (0,6010)
 
insert 0 6011 A
>> Inserting city A (0,6011)
 
insert 0 6012 A
>> Inserting city A (0,6012)
 
insert 0 6013 A
>> Inserting city A (0,6013)
 
insert 0 6014 A
>> Inserting city A (0,6014)
 
insert 0 6015 A
>> Inserting city A (0,6015)
 
insert 0 6016 A
>> Inserting city A (0,6016)
 
insert 0 6017 A
>> Inserting city A (0,6017)
 
insert 0 6018 A
>> Inserting city A (0,6018)
 
insert 0 6019 A
>> Inserting city A (0,6019)
 
insert 0 6020 A
>> Inserting city A (0,6020)
 
insert 0 6021 A
>> Inserting city A (0,6021)
 
insert 0 6022 A
>> Inserting city A (0,6022)
 
insert 0 6023 A
>> Inserting city A (0,6023)
 
insert 0 6024 A
>> Inserting city A (0,6024)
 
insert 0 6025 A
>> Inserting city A (0,6025)
 
insert 0 6026 A
>> Inserting city A (0,6026)
 
insert 0 6027 A
>> Inserting city A (0,6027)
 
insert 0 6028 A
>> Inserting city A (0,6028)
 
insert 0 6029 A
>> Inserting city A (0,6029)
 
insert 0 6030 A
>> Inserting city A (0,6030)
 
insert 0 6031 A
>> Inserting city A (0,6031)
 
insert 0 6032 A
>> Inserting city A (0,6032)
 
insert 0 6033 A
>> Inserting city A (0,6033)
 
insert 0 6034 A
>> Inserting city A (0,6034)
 
insert 0 6035 A
>> Inserting city A (0,6035)
 
insert 0 6036 A
>> Inserting city A (0,6036)
 
insert 0 6037 A
>> Inserting city A (0,6037)
 
insert 0 6038 A
>> Inserting city A (0,6038)
 
insert 0 6039 A
>> Inserting city A (0,6039)
 
insert 0 6040 A
>> Inserting city A (0,6040)
 
insert 0 6041 A
>> Inserting city A (0,6041)
 
insert 0 6042 A
>> Inserting city A (0,6042)
 
insert 0 6043 A
>> Inserting city A (0,6043)
 
insert 0 6044 A
>> Inserting city A (0,6044)
 
insert 0 6045 A
>> Inserting city A (0,6045)
 
insert 0 6046 A
>> Inserting city A (0,6046)
 
insert 0 6047 A
>> Inserting city A (0,6047)
 
insert 0 6048 A
>> Inserting city A (0,6048)
 
insert 0 6049 A
>> Inserting city A (0,6049)
 
insert 0 6050 A
>> Inserting city A (0,6050)
 
insert 0 6051 A
>> Inserting city A (0,6051)
 
insert 0 6052 A
>> Inserting city A (0,6052)
 
insert 0 6053 A
>> Inserting city A (0,6053)
 
insert 0 6054 A
>> Inserting city A (0,6054)
 
insert 0 6055 A
>> Inserting city A (0,6055)
 
insert 0 6056 A
>> Inserting city A (0,6056)
 
insert 0 6057 A
>> Inserting city A (0,6057)
 
insert 0 6058 A
>> Inserting city A (0,6058)
 
insert 0 6059 A
>> Inserting city A (0,6059)
 
insert 0 6060 A
>> Inserting city A (0,6060)
 
insert 0 6061 A
>> Inserting city A (0,6061)
 
insert 0 6062 A
>> Inserting city A (0,6062)
 
insert 0 6063 A
>> Inserting city A (0,6063)
 
insert 0 6064 A
>> Inserting city A (0,6064)
 
insert 0 6065 A
>> Inserting city A (0,6065)
 
insert 0 6066 A
>> Inserting city A (0,6066)
 
insert 0 6067 A
>> Inserting city A (0,6067)
 
insert 0 6068 A
>> Inserting city A (0,6068)
 
insert 0 6069 A
>> Inserting city A (0,6069)
 
insert 0 6070 A
>> Inserting city A (0,6070)
 
insert 0 6071 A
>> Inserting city A (0,6071)
 
insert 0 6072 A
>> Inserting city A (0,6072)
 
insert 0 6073 A
>> Inserting city A (0,6073)
 
insert 0 6074 A
>> Inserting city A (0,6074)
 
insert 0 6075 A
>> Inserting city A (0,6075)
 
insert 0 6076 A
>> Inserting city A (0,6076)
 
insert 0 6077 A
>> Inserting city A (0,6077)
 
insert 0 6078 A
>> Inserting city A (0,6078)
 
insert 0 6079 A
>> Inserting city A (0,6079)
 
insert 0 6080 A
>> Inserting city A (0,6080)
 
insert 0 6081 A
>> Inserting city A (0,6081)
 
insert 0 6082 A
>> Inserting city A (0,6082)
 
insert 0 6083 A
>> Inserting city A (0,6083)
 
insert 0 6084 A
>> Inserting city A (0,6084)
 
insert 0 6085 A
>> Inserting city A (0,6085)
 
insert 0 6086 A
>> Inserting city A (0,6086)
 
insert 0 6087 A
>> Inserting city A (0,6087)
 
insert 0 6088 A
>> Inserting city A (0,6088)
 
insert 0 6089 A
>> Inserting city A (0,6089)
 
insert 0 6090 A
>> Inserting city A (0,6090)
 
insert 0 6091 A
>> Inserting city A (0,6091)
 
insert 0 6092 A
>> Inserting city A (0,6092)
 
insert 0 6093 A
>> Inserting city A (0,6093)
 
insert 0 6094 A
>> Inserting city A (0,6094)
 
insert 0 6095 A
>> Inserting city A (0,6095)
 
insert 0 6096 A
>> Inserting city A (0,6096)
 
insert 0 6097 A
>> Inserting city A (0,6097)
 
insert 0 6098 A
>> Inserting city A (0,6098)
 
insert 0 6099 A
>> Inserting city A (0,6099)
 
insert 0 6100 A
>> Inserting city A (0,6100)
 
insert 0 6101 A
>> Inserting city A (0,6101)
 
insert 0 6102 A
>> Inserting city A (0,6102)
 
insert 0 6103 A
>> Inserting city A (0,6103)
 
insert 0 6104 A
>> Inserting city A (0,6104)
 
insert 0 6105 A
>> Inserting city A (0,6105)
 
insert 0 6106 A
>> Inserting city A (0,6106)
 
insert 0 6107 A
>> Inserting city A (0,6107)
 
insert 0 6108 A
>> Inserting city A (0,6108)
 
insert 0 6109 A
>> Inserting city A (0,6109)
 
insert 0 6110 A
>> Inserting city A (0,6110)
 
insert 0 6111 A
>> Inserting city A (0,6111)
 
insert 0 6112 A
>> Inserting city A (0,6112)
 
insert 0 6113 A
>> Inserting city A (0,6113)
 
insert 0 6114 A
>> Inserting city A (0,6114)
 
insert 0 6115 A
>> Inserting city A (0,6115)
 
insert 0 6116 A
>> Inserting city A (0,6116)
 
insert 0 6117 A
>> Inserting city A (0,6117)
 
insert 0 6118 A
>> Inserting city A (0,6118)
 
insert 0 6119 A
>> Inserting city A (0,6119)
 
insert 0 6120 A
>> Inserting city A (0,6120)
 
insert 0 6121 A
>> Inserting city A (0,6121)
 
insert 0 6122 A
>> Inserting city A (0,6122)
 
insert 0 6123 A
>> Inserting city A (0,6123)
 
insert 0 6124 A
>> Inserting city A (0,6124)
 
insert 0 6125 A
>> Inserting city A (0,6125)
 
insert 0 6126 A
>> Inserting city A (0,6126)
 
insert 0 6127 A
>> Inserting city A (0,6127)
 
insert 0 6128 A
>> Inserting city A (0,6128)
 
insert 0 6129 A
>> Inserting city A (0,6129)
 
insert 0 6130 A
>> Inserting city A (0,6130)
 
insert 0 6131 A
>> Inserting city A (0,6131)
 
insert 0 6132 A
>> Inserting city A (0,6132)
 
insert 0 6133 A
>> Inserting city A (0,6133)
 
insert 0 6134 A
>> Inserting city A (0,6134)
 
insert 0 6135 A
>> Inserting city A (0,6135)
 
insert 0 6136 A
>> Inserting city A (0,6136)
 
insert 0 6137 A
>> Inserting city A (0,6137)
 
insert 0 6138 A
>> Inserting city A (0,6138)
 
insert 0 6139 A
>> Inserting city A (0,6139)
 
insert 0 6140 A
>> Inserting city A (0,6140)
 
insert 0 6141 A
>> Inserting city A (0,6141)
 
insert 0 6142 A
>> Inserting city A (0,6142)
 
insert 0 6143 A
>> Inserting city A (0,6143)
 
insert 0 6144 A
>> Inserting city A (0,6144)
 
insert 0 6145 A
>> Inserting city A (0,6145)
 
insert 0 6146 A
>> Inserting city A (0,6146)
 
insert 0 6147 A
>> Inserting city A (0,6147)
 
insert 0 6148 A
>> Inserting city A (0,6148)
 
insert 0 6149 A
>> Inserting city A (0,6149)
 
insert 0 6150 A
>> Inserting city A (0,6150)
 
insert 0 6151 A
>> Inserting city A (0,6151)
 
insert 0 6152 A
>> Inserting city A (0,6152)
 
insert 0 6153 A
>> Inserting city A (0,6153)
 
insert 0 6154 A
>> Inserting city A (0,6154)
 
insert 0 6155 A
>> Inserting city A (0,6155)
 
insert 0 6156 A
>> Inserting city A (0,6156)
 
insert 0 6157 A
>> Inserting city A (0,6157)
 
insert 0 6158 A
>> Inserting city A (0,6158)
 
insert 0 6159 A
>> Inserting city A (0,6159)
 
insert 0 6160 A
>> Inserting city A (0,6160)
 
insert 0 6161 A
>> Inserting city A (0,6161)
 
insert 0 6162 A
>> Inserting city A (0,6162)
 
insert 0 6163 A
>> Inserting city A (0,6163)
 
insert 0 6164 A
>> Inserting city A (0,6164)
 
insert 0 6165 A
>> Inserting city A (0,6165)
 
insert 0 6166 A
>> Inserting city A (0,6166)
 
insert 0 6167 A
>> Inserting city A (0,6167)
 
insert 0 6168 A
>> Inserting city A (0,6168)
 
insert 0 6169 A
>> Inserting city A (0,6169)
 
insert 0 6170 A
>> Inserting city A (0,6170)
 
insert 0 6171 A
>> Inserting city A (0,6171)
 
insert 0 6172 A
>> Inserting city A (0,6172)
 
insert 0 6173 A
>> Inserting city A (0,6173)
 
insert 0 6174 A
>> Inserting city A (0,6174)
 
insert 0 6175 A
>> Inserting city A (0,6175)
 
insert 0 6176 A
>> Inserting city A (0,6176)
 
insert 0 6177 A
>> Inserting city A (0,6177)
 
insert 0 6178 A
>> Inserting city A (0,6178)
 
insert 0 6179 A
>> Inserting city A (0,6179)
 
insert 0 6180 A
>> Inserting city A (0,6180)
 
insert 0 6181 A
>> Inserting city A (0,6181)
 
insert 0 6182 A
>> Inserting city A (0,6182)
 
insert 0 6183 A
>> Inserting city A (0,6183)
 
insert 0 6184 A
>> Inserting city A (0,6184)
 
insert 0 6185 A
>> Inserting city A (0,6185)
 
insert 0 6186 A
>> Inserting city A (0,6186)
 
insert 0 6187 A
>> Inserting city A (0,6187)
 
insert 0 6188 A
>> Inserting city A (0,6188)
 
insert 0 6189 A
>> Inserting city A (0,6189)
 
insert 0 6190 A
>> Inserting city A (0,6190)
 
insert 0 6191 A
>> Inserting city A (0,6191)
 
insert 0 6192 A
>> Inserting city A (0,6192)
 
insert 0 6193 A
>> Inserting city A (0,6193)
 
insert 0 6194 A
>> Inserting city A (0,6194)
 
insert 0 6195 A
>> Inserting city A (0,6195)
 
insert 0 6196 A
>> Inserting city A (0,6196)
 
insert 0 6197 A
>> Inserting city A (0,6197)
 
insert 0 6198 A
>> Inserting city A (0,6198)
 
insert 0 6199 A
>> Inserting city A (0,6199)
 
insert 0 6200 A
>> Inserting city A (0,6200)
 
insert 0 6201 A
>> Inserting city A (0,6201)
 
insert 0 6202 A
>> Inserting city A (0,6202)
 
insert 0 6203 A
>> Inserting city A (0,6203)
 
insert 0 6204 A
>> Inserting city A (0,6204)
 
insert 0 6205 A
>> Inserting city A (0,6205)
 
insert 0 6206 A
>> Inserting city A (0,6206)
 
insert 0 6207 A
>> Inserting city A (0,6207)
 
insert 0 6208 A
>> Inserting city A (0,6208)
 
insert 0 6209 A
>> Inserting city A (0,6209)
 
insert 0 6210 A
>> Inserting city A (0,6210)
 
insert 0 6211 A
>> Inserting city A (0,6211)
 
insert 0 6212 A
>> Inserting city A (0,6212)
 
insert 0 6213 A
>> Inserting city A (0,6213)
 
insert 0 6214 A
>> Inserting city A (0,6214)
 
insert 0 6215 A
>> Inserting city A (0,6215)
 
insert 0 6216 A
>> Inserting city A (0,6216)
 
insert 0 6217 A
>> Inserting city A (0,6217)
 
insert 0 6218 A
>> Inserting city A (0,6218)
 
insert 0 6219 A
>> Inserting city A (0,6219)
 
insert 0 6220 A
>> Inserting city A (0,6220)
 
insert 0 6221 A
>> Inserting city A (0,6221)
 
insert 0 6222 A
>> Inserting city A (0,6222)
 
insert 0 6223 A
>> Inserting city A (0,6223)
 
insert 0 6224 A
>> Inserting city A (0,6224)
 
insert 0 6225 A
>> Inserting city A (0,6225)
 
insert 0 6226 A
>> Inserting city A (0,6226)
 
insert 0 6227 A
>> Inserting city A (0,6227)
 
insert 0 6228 A
>> Inserting city A (0,6228)
 
insert 0 6229 A
>> Inserting city A (0,6229)
 
insert 0 6230 A
>> Inserting city A (0,6230)
 
insert 0 6231 A
>> Inserting city A (0,6231)
 
insert 0 6232 A
>> Inserting city A (0,6232)
 
insert 0 6233 A
>> Inserting city A (0,6233)
 
insert 0 6234 A
>> Inserting city A (0,6234)
 
insert 0 6235 A
>> Inserting city A (0,6235)
 
insert 0 6236 A
>> Inserting city A (0,6236)
 
insert 0 6237 A
>> Inserting city A (0,6237)
 
insert 0 6238 A
>> Inserting city A (0,6238)
 
insert 0 6239 A
>> Inserting city A (0,6239)
 
insert 0 6240 A
>> Inserting city A (0,6240)
 
insert 0 6241 A
>> Inserting city A (0,6241)
 
insert 0 6242 A
>> Inserting city A (0,6242)
 
insert 0 6243 A
>> Inserting city A (0,6243)
 
insert 0 6244 A
>> Inserting city A (0,6244)
 
insert 0 6245 A
>> Inserting city A (0,6245)
 
insert 0 6246 A
>> Inserting city A (0,6246)
 
insert 0 6247 A
>> Inserting city A (0,6247)
 
insert 0 6248 A
>> Inserting city A (0,6248)
 
insert 0 6249 A
>> Inserting city A (0,6249)
 
insert 0 6250 A
>> Inserting city A (0,6250)
 
insert 0 6251 A
>> Inserting city A (0,6251)
 
insert 0 6252 A
>> Inserting city A (0,6252)
 
insert 0 6253 A
>> Inserting city A (0,6253)
 
insert 0 6254 A
>> Inserting city A (0,6254)
 
insert 0 6255 A
>> Inserting city A (0,6255)
 
insert 0 6256 A
>> Inserting city A (0,6256)
 
insert 0 6257 A
>> Inserting city A (0,6257)
 
insert 0 6258 A
>> Inserting city A (0,6258)
 
insert 0 6259 A
>> Inserting city A (0,6259)
 
insert 0 6260 A
>> Inserting city A (0,6260)
 
insert 0 6261 A
>> Inserting city A (0,6261)
 
insert 0 6262 A
>> Inserting city A (0,6262)
 
insert 0 6263 A
>> Inserting city A (0,6263)
 
insert 0 6264 A
>> Inserting city A (0,6264)
 
insert 0 6265 A
>> Inserting city A (0,6265)
 
insert 0 6266 A
>> Inserting city A (0,6266)
 
insert 0 6267 A
>> Inserting city A (0,6267)
 
insert 0 6268 A
>> Inserting city A (0,6268)
 
insert 0 6269 A
>> Inserting city A (0,6269)
 
insert 0 6270 A
>> Inserting city A (0,6270)
 
insert 0 6271 A
>> Inserting city A (0,6271)
 
insert 0 6272 A
>> Inserting city A (0,6272)
 
insert 0 6273 A
>> Inserting city A (0,6273)
 
insert 0 6274 A
>> Inserting city A (0,6274)
 
insert 0 6275 A
>> Inserting city A (0,6275)
 
insert 0 6276 A
>> Inserting city A (0,6276)
 
insert 0 6277 A
>> Inserting city A (0,6277)
 
insert 0 6278 A
>> Inserting city A (0,6278)
 
insert 0 6279 A
>> Inserting city A (0,6279)
 
insert 0 6280 A
>> Inserting city A (0,6280)
 
insert 0 6281 A
>> Inserting city A (0,6281)
 
insert 0 6282 A
>> Inserting city A (0,6282)
 
insert 0 6283 A
>> Inserting city A (0,6283)
 
insert 0 6284 A
>> Inserting city A (0,6284)
 
insert 0 6285 A
>> Inserting city A (0,6285)
 
insert 0 6286 A
>> Inserting city A (0,6286)
 
insert 0 6287 A
>> Inserting city A (0,6287)
 
insert 0 6288 A
>> Inserting city A (0,6288)
 
insert 0 6289 A
>> Inserting city A (0,6289)
 
insert 0 6290 A
>> Inserting city A (0,6290)
 
insert 0 6291 A
>> Inserting city A (0,6291)
 
insert 0 6292 A
>> Inserting city A (0,6292)
 
insert 0 6293 A
>> Inserting city A (0,6293)
 
insert 0 6294 A
>> Inserting city A (0,6294)
 
insert 0 6295 A
>> Inserting city A (0,6295)
 
insert 0 6296 A
>> Inserting city A (0,6296)
 
insert 0 6297 A
>> Inserting city A (0,6297)
 
insert 0 6298 A
>> Inserting city A (0,6298)
 
insert 0 6299 A
>> Inserting city A (0,6299)
 
insert 0 6300 A
>> Inserting city A (0,6300)
 
insert 0 6301 A
>> Inserting city A (0,6301)
 
insert 0 6302 A
>> Inserting city A (0,6302)
 
insert 0 6303 A
>> Inserting city A (0,6303)
 
insert 0 6304 A
>> Inserting city A (0,6304)
 
insert 0 6305 A
>> Inserting city A (0,6305)
 
insert 0 6306 A
>> Inserting city A (0,6306)
 
insert 0 6307 A
>> Inserting city A (0,6307)
 
insert 0 6308 A
>> Inserting city A (0,6308)
 
insert 0 6309 A
>> Inserting city A (0,6309)
 
insert 0 6310 A
>> Inserting city A (0,6310)
 
insert 0 6311 A
>> Inserting city A (0,6311)
 
insert 0 6312 A
>> Inserting city A (0,6312)
 
insert 0 6313 A
>> Inserting city A (0,6313)
 
insert 0 6314 A
>> Inserting city A (0,6314)
 
insert 0 6315 A
>> Inserting city A (0,6315)
 
insert 0 6316 A
>> Inserting city A (0,6316)
 
insert 0 6317 A
>> Inserting city A (0,6317)
 
insert 0 6318 A
>> Inserting city A (0,6318)
 
insert 0 6319 A
>> Inserting city A (0,6319)
 
insert 0 6320 A
>> Inserting city A (0,6320)
 
insert 0 6321 A
>> Inserting city A (0,6321)
 
insert 0 6322 A
>> Inserting city A (0,6322)
 
insert 0 6323 A
>> Inserting city A (0,6323)
 
insert 0 6324 A
>> Inserting city A (0,6324)
 
insert 0 6325 A
>> Inserting city A (0,6325)
 
insert 0 6326 A
>> Inserting city A (0,6326)
 
insert 0 6327 A
>> Inserting city A (0,6327)
 
insert 0 6328 A
>> Inserting city A (0,6328)
 
insert 0 6329 A
>> Inserting city A (0,6329)
 
insert 0 6330 A
>> Inserting city A (0,6330)
 
insert 0 6331 A
>> Inserting city A (0,6331)
 
insert 0 6332 A
>> Inserting city A (0,6332)
 
insert 0 6333 A
>> Inserting city A (0,6333)
 
insert 0 6334 A
>> Inserting city A (0,6334)
 
insert 0 6335 A
>> Inserting city A (0,6335)
 
insert 0 6336 A
>> Inserting city A (0,6336)
 
insert 0 6337 A
>> Inserting city A (0,6337)
 
insert 0 6338 A
>> Inserting city A (0,6338)
 
insert 0 6339 A
>> Inserting city A (0,6339)
 
insert 0 6340 A
>> Inserting city A (0,6340)
 
insert 0 6341 A
>> Inserting city A (0,6341)
 
insert 0 6342 A
>> Inserting city A (0,6342)
 
insert 0 6343 A
>> Inserting city A (0,6343)
 
insert 0 6344 A
>> Inserting city A (0,6344)
 
insert 0 6345 A
>> Inserting city A (0,6345)
 
insert 0 6346 A
>> Inserting city A (0,6346)
 
insert 0 6347 A
>> Inserting city A (0,6347)
 
insert 0 6348 A
>> Inserting city A (0,6348)
 
insert 0 6349 A
>> Inserting city A (0,6349)
 
insert 0 6350 A
>> Inserting city A (0,6350)
 
insert 0 6351 A
>> Inserting city A (0,6351)
 
insert 0 6352 A
>> Inserting city A (0,6352)
 
insert 0 6353 A
>> Inserting city A (0,6353)
 
insert 0 6354 A
>> Inserting city A (0,6354)
 
insert 0 6355 A
>> Inserting city A (0,6355)
 
insert 0 6356 A
>> Inserting city A (0,6356)
 
insert 0 6357 A
>> Inserting city A (0,6357)
 
insert 0 6358 A
>> Inserting city A (0,6358)
 
insert 0 6359 A
>> Inserting city A (0,6359)
 
insert 0 6360 A
>> Inserting city A (0,6360)
 
insert 0 6361 A
>> Inserting city A (0,6361)
 
insert 0 6362 A
>> Inserting city A (0,6362)
 
insert 0 6363 A
>> Inserting city A (0,6363)
 
insert 0 6364 A
>> Inserting city A (0,6364)
 
insert 0 6365 A
>> Inserting city A (0,6365)
 
insert 0 6366 A
>> Inserting city A (0,6366)
 
insert 0 6367 A
>> Inserting city A (0,6367)
 
insert 0 6368 A
>> Inserting city A (0,6368)
 
insert 0 6369 A
>> Inserting city A (0,6369)
 
insert 0 6370 A
>> Inserting city A (0,6370)
 
insert 0 6371 A
>> Inserting city A (0,6371)
 
insert 0 6372 A
>> Inserting city A (0,6372)
 
insert 0 6373 A
>> Inserting city A (0,6373)
 
insert 0 6374 A
>> Inserting city A (0,6374)
 
insert 0 6375 A
>> Inserting city A (0,6375)
 
insert 0 6376 A
>> Inserting city A (0,6376)
 
insert 0 6377 A
>> Inserting city A (0,6377)
 
insert 0 6378 A
>> Inserting city A (0,6378)
 
insert 0 6379 A
>> Inserting city A (0,6379)
 
insert 0 6380 A
>> Inserting city A (0,6380)
 
insert 0 6381 A
>> Inserting city A (0,6381)
 
insert 0 6382 A
>> Inserting city A (0,6382)
 
insert 0 6383 A
>> Inserting city A (0,6383)
 
insert 0 6384 A
>> Inserting city A (0,6384)
 
insert 0 6385 A
>> Inserting city A (0,6385)
 
insert 0 6386 A
>> Inserting city A (0,6386)
 
insert 0 6387 A
>> Inserting city A (0,6387)
 
insert 0 6388 A
>> Inserting city A (0,6388)
 
insert 0 6389 A
>> Inserting city A (0,6389)
 
insert 0 6390 A
>> Inserting city A (0,6390)
 
insert 0 6391 A
>> Inserting city A (0,6391)
 
insert 0 6392 A
>> Inserting city A (0,6392)
 
insert 0 6393 A
>> Inserting city A (0,6393)
 
insert 0 6394 A
>> Inserting city A (0,6394)
 
insert 0 6395 A
>> Inserting city A (0,6395)
 
insert 0 6396 A
>> Inserting city A (0,6396)
 
insert 0 6397 A
>> Inserting city A (0,6397)
 
insert 0 6398 A
>> Inserting city A (0,6398)
 
insert 0 6399 A
>> Inserting city A (0,6399)
 
insert 0 6400 A
>> Inserting city A (0,6400)
 
insert 0 6401 A
>> Inserting city A (0,6401)
 
insert 0 6402 A
>> Inserting city A (0,6402)
 
insert 0 6403 A
>> Inserting city A (0,6403)
 
insert 0 6404 A
>> Inserting city A (0,6404)
 
insert 0 6405 A
>> Inserting city A (0,6405)
 
insert 0 6406 A
>> Inserting city A (0,6406)
 
insert 0 6407 A
>> Inserting city A (0,6407)
 
insert 0 6408 A
>> Inserting city A (0,6408)
 
insert 0 6409 A
>> Inserting city A (0,6409)
 
insert 0 6410 A
>> Inserting city A (0,6410)
 
insert 0 6411 A
>> Inserting city A (0,6411)
 
insert 0 6412 A
>> Inserting city A (0,6412)
 
insert 0 6413 A
>> Inserting city A (0,6413)
 
insert 0 6414 A
>> Inserting city A (0,6414)
 
insert 0 6415 A
>> Inserting city A (0,6415)
 
insert 0 6416 A
>> Inserting city A (0,6416)
 
insert 0 6417 A
>> Inserting city A (0,6417)
 
insert 0 6418 A
>> Inserting city A (0,6418)
 
insert 0 6419 A
>> Inserting city A (0,6419)
 
insert 0 6420 A
>> Inserting city A (0,6420)
 
insert 0 6421 A
>> Inserting city A (0,6421)
 
insert 0 6422 A
>> Inserting city A (0,6422)
 
insert 0 6423 A
>> Inserting city A (0,6423)
 
insert 0 6424 A
>> Inserting city A (0,6424)
 
insert 0 6425 A
>> Inserting city A (0,6425)
 
insert 0 6426 A
>> Inserting city A (0,6426)
 
insert 0 6427 A
>> Inserting city A (0,6427)
 
insert 0 6428 A
>> Inserting city A (0,6428)
 
insert 0 6429 A
>> Inserting city A (0,6429)
 
insert 0 6430 A
>> Inserting city A (0,6430)
 
insert 0 6431 A
>> Inserting city A (0,6431)
 
insert 0 6432 A
>> Inserting city A (0,6432)
 
insert 0 6433 A
>> Inserting city A (0,6433)
 
insert 0 6434 A
>> Inserting city A (0,6434)
 
insert 0 6435 A
>> Inserting city A (0,6435)
 
insert 0 6436 A
>> Inserting city A (0,6436)
 
insert 0 6437 A
>> Inserting city A (0,6437)
 
insert 0 6438 A
>> Inserting city A (0,6438)
 
insert 0 6439 A
>> Inserting city A (0,6439)
 
insert 0 6440 A
>> Inserting city A (0,6440)
 
insert 0 6441 A
>> Inserting city A (0,6441)
 
insert 0 6442 A
>> Inserting city A (0,6442)
 
insert 0 6443 A
>> Inserting city A (0,6443)
 
insert 0 6444 A
>> Inserting city A (0,6444)
 
insert 0 6445 A
>> Inserting city A (0,6445)
 
insert 0 6446 A
>> Inserting city A (0,6446)
 
insert 0 6447 A
>> Inserting city A (0,6447)
 
insert 0 6448 A
>> Inserting city A (0,6448)
 
insert 0 6449 A
>> Inserting city A (0,6449)
 
insert 0 6450 A
>> Inserting city A (0,6450)
 
insert 0 6451 A
>> Inserting city A (0,6451)
 
insert 0 6452 A
>> Inserting city A (0,6452)
 
insert 0 6453 A
>> Inserting city A (0,6453)
 
insert 0 6454 A
>> Inserting city A (0,6454)
 
insert 0 6455 A
>> Inserting city A (0,6455)
 
insert 0 6456 A
>> Inserting city A (0,6456)
 
insert 0 6457 A
>> Inserting city A (0,6457)
 
insert 0 6458 A
>> Inserting city A (0,6458)
 
insert 0 6459 A
>> Inserting city A (0,6459)
 
insert 0 6460 A
>> Inserting city A (0,6460)
 
insert 0 6461 A
>> Inserting city A (0,6461)
 
insert 0 6462 A
>> Inserting city A (0,6462)
 
insert 0 6463 A
>> Inserting city A (0,6463)
 
insert 0 6464 A
>> Inserting city A (0,6464)
 
insert 0 6465 A
>> Inserting city A (0,6465)
 
insert 0 6466 A
>> Inserting city A (0,6466)
 
insert 0 6467 A
>> Inserting city A (0,6467)
 
insert 0 6468 A
>> Inserting city A (0,6468)
 
insert 0 6469 A
>> Inserting city A (0,6469)
 
insert 0 6470 A
>> Inserting city A (0,6470)
 
insert 0 6471 A
>> Inserting city A (0,6471)
 
insert 0 6472 A
>> Inserting city A (0,6472)
 
insert 0 6473 A
>> Inserting city A (0,6473)
 
insert 0 6474 A
>> Inserting city A (0,6474)
 
insert 0 6475 A
>> Inserting city A (0,6475)
 
insert 0 6476 A
>> Inserting city A (0,6476)
 
insert 0 6477 A
>> Inserting city A (0,6477)
 
insert 0 6478 A
>> Inserting city A (0,6478)
 
insert 0 6479 A
>> Inserting city A (0,6479)
 
insert 0 6480 A
>> Inserting city A (0,6480)
 
insert 0 6481 A
>> Inserting city A (0,6481)
 
insert 0 6482 A
>> Inserting city A (0,6482)
 
insert 0 6483 A
>> Inserting city A (0,6483)
 
insert 0 6484 A
>> Inserting city A (0,6484)
 
insert 0 6485 A
>> Inserting city A (0,6485)
 
insert 0 6486 A
>> Inserting city A (0,6486)
 
insert 0 6487 A
>> Inserting city A (0,6487)
 
insert 0 6488 A
>> Inserting city A (0,6488)
 
insert 0 6489 A
>> Inserting city A (0,6489)
 
insert 0 6490 A
>> Inserting city A (0,6490)
 
insert 0 6491 A
>> Inserting city A (0,6491)
 
insert 0 6492 A
>> Inserting city A (0,6492)
 
insert 0 6493 A
>> Inserting city A (0,6493)
 
insert 0 6494 A
>> Inserting city A (0,6494)
 
insert 0 6495 A
>> Inserting city A (0,6495)
 
insert 0 6496 A
>> Inserting city A (0,6496)
 
insert 0 6497 A
>> Inserting city A (0,6497)
 
insert 0 6498 A
>> Inserting city A (0,6498)
 
insert 0 6499 A
>> Inserting city A (0,6499)
 
insert 0 6500 A
>> Inserting city A (0,6500)
 
insert 0 6501 A
>> Inserting city A (0,6501)
 
insert 0 6502 A
>> Inserting city A (0,6502)
 
insert 0 6503 A
>> Inserting city A (0,6503)
 
insert 0 6504 A
>> Inserting city A (0,6504)
 
insert 0 6505 A
>> Inserting city A (0,6505)
 
insert 0 6506 A
>> Inserting city A (0,6506)
 
insert 0 6507 A
>> Inserting city A (0,6507)
 
insert 0 6508 A
>> Inserting city A (0,6508)
 
insert 0 6509 A
>> Inserting city A (0,6509)
 
insert 0 6510 A
>> Inserting city A (0,6510)
 
insert 0 6511 A
>> Inserting city A (0,6511)
 
insert 0 6512 A
>> Inserting city A (0,6512)
 
insert 0 6513 A
>> Inserting city A (0,6513)
 
insert 0 6514 A
>> Inserting city A (0,6514)
 
insert 0 6515 A
>> Inserting city A (0,6515)
 
insert 0 6516 A
>> Inserting city A (0,6516)
 
insert 0 6517 A
>> Inserting city A (0,6517)
 
insert 0 6518 A
>> Inserting city A (0,6518)
 
insert 0 6519 A
>> Inserting city A (0,6519)
 
insert 0 6520 A
>> Inserting city A (0,6520)
 
insert 0 6521 A
>> Inserting city A (0,6521)
 
insert 0 6522 A
>> Inserting city A (0,6522)
 
insert 0 6523 A
>> Inserting city A (0,6523)
 
insert 0 6524 A
>> Inserting city A (0,6524)
 
insert 0 6525 A
>> Inserting city A (0,6525)
 
insert 0 6526 A
>> Inserting city A (0,6526)
 
insert 0 6527 A
>> Inserting city A (0,6527)
 
insert 0 6528 A
>> Inserting city A (0,6528)
 
insert 0 6529 A
>> Inserting city A (0,6529)
 
insert 0 6530 A
>> Inserting city A (0,6530)
 
insert 0 6531 A
>> Inserting city A (0,6531)
 
insert 0 6532 A
>> Inserting city A (0,6532)
 
insert 0 6533 A
>> Inserting city A (0,6533)
 
insert 0 6534 A
>> Inserting city A (0,6534)
 
insert 0 6535 A
>> Inserting city A (0,6535)
 
insert 0 6536 A
>> Inserting city A (0,6536)
 
insert 0 6537 A
>> Inserting city A (0,6537)
 
insert 0 6538 A
>> Inserting city A (0,6538)
 
insert 0 6539 A
>> Inserting city A (0,6539)
 
insert 0 6540 A
>> Inserting city A (0,6540)
 
insert 0 6541 A
>> Inserting city A (0,6541)
 
insert 0 6542 A
>> Inserting city A (0,6542)
 
insert 0 6543 A
>> Inserting city A (0,6543)
 
insert 0 6544 A
>> Inserting city A (0,6544)
 
insert 0 6545 A
>> Inserting city A (0,6545)
 
insert 0 6546 A
>> Inserting city A (0,6546)
 
insert 0 6547 A
>> Inserting city A (0,6547)
 
insert 0 6548 A
>> Inserting city A (0,6548)
 
insert 0 6549 A
>> Inserting city A (0,6549)
 
insert 0 6550 A
>> Inserting city A (0,6550)
 
insert 0 6551 A
>> Inserting city A (0,6551)
 
insert 0 6552 A
>> Inserting city A (0,6552)
 
insert 0 6553 A
>> Inserting city A (0,6553)
 
insert 0 6554 A
>> Inserting city A (0,6554)
 
insert 0 6555 A
>> Inserting city A (0,6555)
 
insert 0 6556 A
>> Inserting city A (0,6556)
 
insert 0 6557 A
>> Inserting city A (0,6557)
 
insert 0 6558 A
>> Inserting city A (0,6558)
 
insert 0 6559 A
>> Inserting city A (0,6559)
 
insert 0 6560 A
>> Inserting city A (0,6560)
 
insert 0 6561 A
>> Inserting city A (0,6561)
 
insert 0 6562 A
>> Inserting city A (0,6562)
 
insert 0 6563 A
>> Inserting city A (0,6563)
 
insert 0 6564 A
>> Inserting city A (0,6564)
 
insert 0 6565 A
>> Inserting city A (0,6565)
 
insert 0 6566 A
>> Inserting city A (0,6566)
 
insert 0 6567 A
>> Inserting city A (0,6567)
 
insert 0 6568 A
>> Inserting city A (0,6568)
 
insert 0 6569 A
>> Inserting city A (0,6569)
 
insert 0 6570 A
>> Inserting city A (0,6570)
 
insert 0 6571 A
>> Inserting city A (0,6571)
 
insert 0 6572 A
>> Inserting city A (0,6572)
 
insert 0 6573 A
>> Inserting city A (0,6573)
 
insert 0 6574 A
>> Inserting city A (0,6574)
 
insert 0 6575 A
>> Inserting city A (0,6575)
 
insert 0 6576 A
>> Inserting city A (0,6576)
 
insert 0 6577 A
>> Inserting city A (0,6577)
 
insert 0 6578 A
>> Inserting city A (0,6578)
 
insert 0 6579 A
>> Inserting city A (0,6579)
 
insert 0 6580 A
>> Inserting city A (0,6580)
 
insert 0 6581 A
>> Inserting city A (0,6581)
 
insert 0 6582 A
>> Inserting city A (0,6582)
 
insert 0 6583 A
>> Inserting city A (0,6583)
 
insert 0 6584 A
>> Inserting city A (0,6584)
 
insert 0 6585 A
>> Inserting city A (0,6585)
 
insert 0 6586 A
>> Inserting city A (0,6586)
 
insert 0 6587 A
>> Inserting city A (0,6587)
 
insert 0 6588 A
>> Inserting city A (0,6588)
 
insert 0 6589 A
>> Inserting city A (0,6589)
 
insert 0 6590 A
>> Inserting city A (0,6590)
 
insert 0 6591 A
>> Inserting city A (0,6591)
 
insert 0 6592 A
>> Inserting city A (0,6592)
 
insert 0 6593 A
>> Inserting city A (0,6593)
 
insert 0 6594 A
>> Inserting city A (0,6594)
 
insert 0 6595 A
>> Inserting city A (0,6595)
 
insert 0 6596 A
>> Inserting city A (0,6596)
 
insert 0 6597 A
>> Inserting city A (0,6597)
 
insert 0 6598 A
>> Inserting city A (0,6598)
 
insert 0 6599 A
>> Inserting city A (0,6599)
 
insert 0 6600 A
>> Inserting city A (0,6600)
 
insert 0 6601 A
>> Inserting city A (0,6601)
 
insert 0 6602 A
>> Inserting city A (0,6602)
 
insert 0 6603 A
>> Inserting city A (0,6603)
 
insert 0 6604 A
>> Inserting city A (0,6604)
 
insert 0 6605 A
>> Inserting city A (0,6605)
 
insert 0 6606 A
>> Inserting city A (0,6606)
 
insert 0 6607 A
>> Inserting city A (0,6607)
 
insert 0 6608 A
>> Inserting city A (0,6608)
 
insert 0 6609 A
>> Inserting city A (0,6609)
 
insert 0 6610 A
>> Inserting city A (0,6610)
 
insert 0 6611 A
>> Inserting city A (0,6611)
 
insert 0 6612 A
>> Inserting city A (0,6612)
 
insert 0 6613 A
>> Inserting city A (0,6613)
 
insert 0 6614 A
>> Inserting city A (0,6614)
 
insert 0 6615 A
>> Inserting city A (0,6615)
 
insert 0 6616 A
>> Inserting city A (0,6616)
 
insert 0 6617 A
>> Inserting city A (0,6617)
 
insert 0 6618 A
>> Inserting city A (0,6618)
 
insert 0 6619 A
>> Inserting city A (0,6619)
 
insert 0 6620 A
>> Inserting city A (0,6620)
 
insert 0 6621 A
>> Inserting city A (0,6621)
 
insert 0 6622 A
>> Inserting city A (0,6622)
 
insert 0 6623 A
>> Inserting city A (0,6623)
 
insert 0 6624 A
>> Inserting city A (0,6624)
 
insert 0 6625 A
>> Inserting city A (0,6625)
 
insert 0 6626 A
>> Inserting city A (0,6626)
 
insert 0 6627 A
>> Inserting city A (0,6627)
 
insert 0 6628 A
>> Inserting city A (0,6628)
 
insert 0 6629 A
>> Inserting city A (0,6629)
 
insert 0 6630 A
>> Inserting city A (0,6630)
 
insert 0 6631 A
>> Inserting city A (0,6631)
 
insert 0 6632 A
>> Inserting city A (0,6632)
 
insert 0 6633 A
>> Inserting city A (0,6633)
 
insert 0 6634 A
>> Inserting city A (0,6634)
 
insert 0 6635 A
>> Inserting city A (0,6635)
 
insert 0 6636 A
>> Inserting city A (0,6636)
 
insert 0 6637 A
>> Inserting city A (0,6637)
 
insert 0 6638 A
>> Inserting city A (0,6638)
 
insert 0 6639 A
>> Inserting city A (0,6639)
 
insert 0 6640 A
>> Inserting city A (0,6640)
 
insert 0 6641 A
>> Inserting city A (0,6641)
 
insert 0 6642 A
>> Inserting city A (0,6642)
 
insert 0 6643 A
>> Inserting city A (0,6643)
 
insert 0 6644 A
>> Inserting city A (0,6644)
 
insert 0 6645 A
>> Inserting city A (0,6645)
 
insert 0 6646 A
>> Inserting city A (0,6646)
 
insert 0 6647 A
>> Inserting city A (0,6647)
 
insert 0 6648 A
>> Inserting city A (0,6648)
 
insert 0 6649 A
>> Inserting city A (0,6649)
 
insert 0 6650 A
>> Inserting city A (0,6650)
 
insert 0 6651 A
>> Inserting city A (0,6651)
 
insert 0 6652 A
>> Inserting city A (0,6652)
 
insert 0 6653 A
>> Inserting city A (0,6653)
 
insert 0 6654 A
>> Inserting city A (0,6654)
 
insert 0 6655 A
>> Inserting city A (0,6655)
 
insert 0 6656 A
>> Inserting city A (0,6656)
 
insert 0 6657 A
>> Inserting city A (0,6657)
 
insert 0 6658 A
>> Inserting city A (0,6658)
 
insert 0 6659 A
>> Inserting city A (0,6659)
 
insert 0 6660 A
>> Inserting city A (0,6660)
 
insert 0 6661 A
>> Inserting city A (0,6661)
 
insert 0 6662 A
>> Inserting city A (0,6662)
 
insert 0 6663 A
>> Inserting city A (0,6663)
 
insert 0 6664 A
>> Inserting city A (0,6664)
 
insert 0 6665 A
>> Inserting city A (0,6665)
 
insert 0 6666 A
>> Inserting city A (0,6666)
 
insert 0 6667 A
>> Inserting city A (0,6667)
 
insert 0 6668 A
>> Inserting city A (0,6668)
 
insert 0 6669 A
>> Inserting city A (0,6669)
 
insert 0 6670 A
>> Inserting city A (0,6670)
 
insert 0 6671 A
>> Inserting city A (0,6671)
 
insert 0 6672 A
>> Inserting city A (0,6672)
 
insert 0 6673 A
>> Inserting city A (0,6673)
 
insert 0 6674 A
>> Inserting city A (0,6674)
 
insert 0 6675 A
>> Inserting city A (0,6675)
 
insert 0 6676 A
>> Inserting city A (0,6676)
 
insert 0 6677 A
>> Inserting city A (0,6677)
 
insert 0 6678 A
>> Inserting city A (0,6678)
 
insert 0 6679 A
>> Inserting city A (0,6679)
 
insert 0 6680 A
>> Inserting city A (0,6680)
 
insert 0 6681 A
>> Inserting city A (0,6681)
 
insert 0 6682 A
>> Inserting city A (0,6682)
 
insert 0 6683 A
>> Inserting city A (0,6683)
 
insert 0 6684 A
>> Inserting city A (0,6684)
 
insert 0 6685 A
>> Inserting city A (0,6685)
 
insert 0 6686 A
>> Inserting city A (0,6686)
 
insert 0 6687 A
>> Inserting city A (0,6687)
 
insert 0 6688 A
>> Inserting city A (0,6688)
 
insert 0 6689 A
>> Inserting city A (0,6689)
 
insert 0 6690 A
>> Inserting city A (0,6690)
 
insert 0 6691 A
>> Inserting city A (0,6691)
 
insert 0 6692 A
>> Inserting city A (0,6692)
 
insert 0 6693 A
>> Inserting city A (0,6693)
 
insert 0 6694 A
>> Inserting city A (0,6694)
 
insert 0 6695 A
>> Inserting city A (0,6695)
 
insert 0 6696 A
>> Inserting city A (0,6696)
 
insert 0 6697 A
>> Inserting city A (0,6697)
 
insert 0 6698 A
>> Inserting city A (0,6698)
 
insert 0 6699 A
>> Inserting city A (0,6699)
 
insert 0 6700 A
>> Inserting city A (0,6700)
 
insert 0 6701 A
>> Inserting city A (0,6701)
 
insert 0 6702 A
>> Inserting city A (0,6702)
 
insert 0 6703 A
>> Inserting city A (0,6703)
 
insert 0 6704 A
>> Inserting city A (0,6704)
 
insert 0 6705 A
>> Inserting city A (0,6705)
 
insert 0 6706 A
>> Inserting city A (0,6706)
 
insert 0 6707 A
>> Inserting city A (0,6707)
 
insert 0 6708 A
>> Inserting city A (0,6708)
 
insert 0 6709 A
>> Inserting city A (0,6709)
 
insert 0 6710 A
>> Inserting city A (0,6710)
 
insert 0 6711 A
>> Inserting city A (0,6711)
 
insert 0 6712 A
>> Inserting city A (0,6712)
 
insert 0 6713 A
>> Inserting city A (0,6713)
 
insert 0 6714 A
>> Inserting city A (0,6714)
 
insert 0 6715 A
>> Inserting city A (0,6715)
 
insert 0 6716 A
>> Inserting city A (0,6716)
 
insert 0 6717 A
>> Inserting city A (0,6717)
 
insert 0 6718 A
>> Inserting city A (0,6718)
 
insert 0 6719 A
>> Inserting city A (0,6719)
 
insert 0 6720 A
>> Inserting city A (0,6720)
 
insert 0 6721 A
>> Inserting city A (0,6721)
 
insert 0 6722 A
>> Inserting city A (0,6722)
 
insert 0 6723 A
>> Inserting city A (0,6723)
 
insert 0 6724 A
>> Inserting city A (0,6724)
 
insert 0 6725 A
>> Inserting city A (0,6725)
 
insert 0 6726 A
>> Inserting city A (0,6726)
 
insert 0 6727 A
>> Inserting city A (0,6727)
 
insert 0 6728 A
>> Inserting city A (0,6728)
 
insert 0 6729 A
>> Inserting city A (0,6729)
 
insert 0 6730 A
>> Inserting city A (0,6730)
 
insert 0 6731 A
>> Inserting city A (0,6731)
 
insert 0 6732 A
>> Inserting city A (0,6732)
 
insert 0 6733 A
>> Inserting city A (0,6733)
 
insert 0 6734 A
>> Inserting city A (0,6734)
 
insert 0 6735 A
>> Inserting city A (0,6735)
 
insert 0 6736 A
>> Inserting city A (0,6736)
 
insert 0 6737 A
>> Inserting city A (0,6737)
 
insert 0 6738 A
>> Inserting city A (0,6738)
 
insert 0 6739 A
>> Inserting city A (0,6739)
 
insert 0 6740 A
>> Inserting city A (0,6740)
 
insert 0 6741 A
>> Inserting city A (0,6741)
 
insert 0 6742 A
>> Inserting city A (0,6742)
 
insert 0 6743 A
>> Inserting city A (0,6743)
 
insert 0 6744 A
>> Inserting city A (0,6744)
 
insert 0 6745 A
>> Inserting city A (0,6745)
 
insert 0 6746 A
>> Inserting city A (0,6746)
 
insert 0 6747 A
>> Inserting city A (0,6747)
 
insert 0 6748 A
>> Inserting city A (0,6748)
 
insert 0 6749 A
>> Inserting city A (0,6749)
 
insert 0 6750 A
>> Inserting city A (0,6750)
 
insert 0 6751 A
>> Inserting city A (0,6751)
 
insert 0 6752 A
>> Inserting city A (0,6752)
 
insert 0 6753 A
>> Inserting city A (0,6753)
 
insert 0 6754 A
>> Inserting city A (0,6754)
 
insert 0 6755 A
>> Inserting city A (0,6755)
 
insert 0 6756 A
>> Inserting city A (0,6756)
 
insert 0 6757 A
>> Inserting city A (0,6757)
 
insert 0 6758 A
>> Inserting city A (0,6758)
 
insert 0 6759 A
>> Inserting city A (0,6759)
 
insert 0 6760 A
>> Inserting city A (0,6760)
 
insert 0 6761 A
>> Inserting city A (0,6761)
 
insert 0 6762 A
>> Inserting city A (0,6762)
 
insert 0 6763 A
>> Inserting city A (0,6763)
 
insert 0 6764 A
>> Inserting city A (0,6764)
 
insert 0 6765 A
>> Inserting city A (0,6765)
 
insert 0 6766 A
>> Inserting city A (0,6766)
 
insert 0 6767 A
>> Inserting city A (0,6767)
 
insert 0 6768 A
>> Inserting city A (0,6768)
 
insert 0 6769 A
>> Inserting city A (0,6769)
 
insert 0 6770 A
>> Inserting city A (0,6770)
 
insert 0 6771 A
>> Inserting city A (0,6771)
 
insert 0 6772 A
>> Inserting city A (0,6772)
 
insert 0 6773 A
>> Inserting city A (0,6773)
 
insert 0 6774 A
>> Inserting city A (0,6774)
 
insert 0 6775 A
>> Inserting city A (0,6775)
 
insert 0 6776 A
>> Inserting city A (0,6776)
 
insert 0 6777 A
>> Inserting city A (0,6777)
 
insert 0 6778 A
>> Inserting city A (0,6778)
 
insert 0 6779 A
>> Inserting city A (0,6779)
 
insert 0 6780 A
>> Inserting city A (0,6780)
 
insert 0 6781 A
>> Inserting city A (0,6781)
 
insert 0 6782 A
>> Inserting city A (0,6782)
 
insert 0 6783 A
>> Inserting city A (0,6783)
 
insert 0 6784 A
>> Inserting city A (0,6784)
 
insert 0 6785 A
>> Inserting city A (0,6785)
 
insert 0 6786 A
>> Inserting city A (0,6786)
 
insert 0 6787 A
>> Inserting city A (0,6787)
 
insert 0 6788 A
>> Inserting city A (0,6788)
 
insert 0 6789 A
>> Inserting city A (0,6789)
 
insert 0 6790 A
>> Inserting city A (0,6790)
 
insert 0 6791 A
>> Inserting city A (0,6791)
 
insert 0 6792 A
>> Inserting city A (0,6792)
 
insert 0 6793 A
>> Inserting city A (0,6793)
 
insert 0 6794 A
>> Inserting city A (0,6794)
 
insert 0 6795 A
>> Inserting city A (0,6795)
 
insert 0 6796 A
>> Inserting city A (0,6796)
 
insert 0 6797 A
>> Inserting city A (0,6797)
 
insert 0 6798 A
>> Inserting city A (0,6798)
 
insert 0 6799 A
>> Inserting city A (0,6799)
 
insert 0 6800 A
>> Inserting city A (0,6800)
 
insert 0 6801 A
>> Inserting city A (0,6801)
 
insert 0 6802 A
>> Inserting city A (0,6802)
 
insert 0 6803 A
>> Inserting city A (0,6803)
 
insert 0 6804 A
>> Inserting city A (0,6804)
 
insert 0 6805 A
>> Inserting city A (0,6805)
 
insert 0 6806 A
>> Inserting city A (0,6806)
 
insert 0 6807 A
>> Inserting city A (0,6807)
 
insert 0 6808 A
>> Inserting city A (0,6808)
 
insert 0 6809 A
>> Inserting city A (0,6809)
 
insert 0 6810 A
>> Inserting city A (0,6810)
 
insert 0 6811 A
>> Inserting city A (0,6811)
 
insert 0 6812 A
>> Inserting city A (0,6812)
 
insert 0 6813 A
>> Inserting city A (0,6813)
 
insert 0 6814 A
>> Inserting city A (0,6814)
 
insert 0 6815 A
>> Inserting city A (0,6815)
 
insert 0 6816 A
>> Inserting city A (0,6816)
 
insert 0 6817 A
>> Inserting city A (0,6817)
 
insert 0 6818 A
>> Inserting city A (0,6818)
 
insert 0 6819 A
>> Inserting city A (0,6819)
 
insert 0 6820 A
>> Inserting city A (0,6820)
 
insert 0 6821 A
>> Inserting city A (0,6821)
 
insert 0 6822 A
>> Inserting city A (0,6822)
 
insert 0 6823 A
>> Inserting city A (0,6823)
 
insert 0 6824 A
>> Inserting city A (0,6824)
 
insert 0 6825 A
>> Inserting city A (0,6825)
 
insert 0 6826 A
>> Inserting city A (0,6826)
 
insert 0 6827 A
>> Inserting city A (0,6827)
 
insert 0 6828 A
>> Inserting city A (0,6828)
 
insert 0 6829 A
>> Inserting city A (0,6829)
 
insert 0 6830 A
>> Inserting city A (0,6830)
 
insert 0 6831 A
>> Inserting city A (0,6831)
 
insert 0 6832 A
>> Inserting city A (0,6832)
 
insert 0 6833 A
>> Inserting city A (0,6833)
 
insert 0 6834 A
>> Inserting city A (0,6834)
 
insert 0 6835 A
>> Inserting city A (0,6835)
 
insert 0 6836 A
>> Inserting city A (0,6836)
 
insert 0 6837 A
>> Inserting city A (0,6837)
 
insert 0 6838 A
>> Inserting city A (0,6838)
 
insert 0 6839 A
>> Inserting city A (0,6839)
 
insert 0 6840 A
>> Inserting city A (0,6840)
 
insert 0 6841 A
>> Inserting city A (0,6841)
 
insert 0 6842 A
>> Inserting city A (0,6842)
 
insert 0 6843 A
>> Inserting city A (0,6843)
 
insert 0 6844 A
>> Inserting city A (0,6844)
 
insert 0 6845 A
>> Inserting city A (0,6845)
 
insert 0 6846 A
>> Inserting city A (0,6846)
 
insert 0 6847 A
>> Inserting city A (0,6847)
 
insert 0 6848 A
>> Inserting city A (0,6848)
 
insert 0 6849 A
>> Inserting city A (0,6849)
 
insert 0 6850 A
>> Inserting city A (0,6850)
 
insert 0 6851 A
>> Inserting city A (0,6851)
 
insert 0 6852 A
>> Inserting city A (0,6852)
 
insert 0 6853 A
>> Inserting city A (0,6853)
 
insert 0 6854 A
>> Inserting city A (0,6854)
 
insert 0 6855 A
>> Inserting city A (0,6855)
 
insert 0 6856 A
>> Inserting city A (0,6856)
 
insert 0 6857 A
>> Inserting city A (0,6857)
 
insert 0 6858 A
>> Inserting city A (0,6858)
 
insert 0 6859 A
>> Inserting city A (0,6859)
 
insert 0 6860 A
>> Inserting city A (0,6860)
 
insert 0 6861 A
>> Inserting city A (0,6861)
 
insert 0 6862 A
>> Inserting city A (0,6862)
 
insert 0 6863 A
>> Inserting city A (0,6863)
 
insert 0 6864 A
>> Inserting city A (0,6864)
 
insert 0 6865 A
>> Inserting city A (0,6865)
 
insert 0 6866 A
>> Inserting city A (0,6866)
 
insert 0 6867 A
>> Inserting city A (0,6867)
 
insert 0 6868 A
>> Inserting city A (0,6868)
 
insert 0 6869 A
>> Inserting city A (0,6869)
 
insert 0 6870 A
>> Inserting city A (0,6870)
 
insert 0 6871 A
>> Inserting city A (0,6871)
 
insert 0 6872 A
>> Inserting city A (0,6872)
 
insert 0 6873 A
>> Inserting city A (0,6873)
 
insert 0 6874 A
>> Inserting city A (0,6874)
 
insert 0 6875 A
>> Inserting city A (0,6875)
 
insert 0 6876 A
>> Inserting city A (0,6876)
 
insert 0 6877 A
>> Inserting city A (0,6877)
 
insert 0 6878 A
>> Inserting city A (0,6878)
 
insert 0 6879 A
>> Inserting city A (0,6879)
 
insert 0 6880 A
>> Inserting city A (0,6880)
 
insert 0 6881 A
>> Inserting city A (0,6881)
 
insert 0 6882 A
>> Inserting city A (0,6882)
 
insert 0 6883 A
>> Inserting city A (0,6883)
 
insert 0 6884 A
>> Inserting city A (0,6884)
 
insert 0 6885 A
>> Inserting city A (0,6885)
 
insert 0 6886 A
>> Inserting city A (0,6886)
 
insert 0 6887 A
>> Inserting city A (0,6887)
 
insert 0 6888 A
>> Inserting city A (0,6888)
 
insert 0 6889 A
>> Inserting city A (0,6889)
 
insert 0 6890 A
>> Inserting city A (0,6890)
 
insert 0 6891 A
>> Inserting city A (0,6891)
 
insert 0 6892 A
>> Inserting city A (0,6892)
 
insert 0 6893 A
>> Inserting city A (0,6893)
 
insert 0 6894 A
>> Inserting city A (0,6894)
 
insert 0 6895 A
>> Inserting city A (0,6895)
 
insert 0 6896 A
>> Inserting city A (0,6896)
 
insert 0 6897 A
>> Inserting city A (0,6897)
 
insert 0 6898 A
>> Inserting city A (0,6898)
 
insert 0 6899 A
>> Inserting city A (0,6899)
 
insert 0 6900 A
>> Inserting city A (0,6900)
 
insert 0 6901 A
>> Inserting city A (0,6901)
 
insert 0 6902 A
>> Inserting city A (0,6902)
 
insert 0 6903 A
>> Inserting city A (0,6903)
 
insert 0 6904 A
>> Inserting city A (0,6904)
 
insert 0 6905 A
>> Inserting city A (0,6905)
 
insert 0 6906 A
>> Inserting city A (0,6906)
 
insert 0 6907 A
>> Inserting city A (0,6907)
 
insert 0 6908 A
>> Inserting city A (0,6908)
 
insert 0 6909 A
>> Inserting city A (0,6909)
 
insert 0 6910 A
>> Inserting city A (0,6910)
 
insert 0 6911 A
>> Inserting city A (0,6911)
 
insert 0 6912 A
>> Inserting city A (0,6912)
 
insert 0 6913 A
>> Inserting city A (0,6913)
 
insert 0 6914 A
>> Inserting city A (0,6914)
 
insert 0 6915 A
>> Inserting city A (0,6915)
 
insert 0 6916 A
>> Inserting city A (0,6916)
 
insert 0 6917 A
>> Inserting city A (0,6917)
 
insert 0 6918 A
>> Inserting city A (0,6918)
 
insert 0 6919 A
>> Inserting city A (0,6919)
 
insert 0 6920 A
>> Inserting city A (0,6920)
 
insert 0 6921 A
>> Inserting city A (0,6921)
 
insert 0 6922 A
>> Inserting city A (0,6922)
 
insert 0 6923 A
>> Inserting city A (0,6923)
 
insert 0 6924 A
>> Inserting city A (0,6924)
 
insert 0 6925 A
>> Inserting city A (0,6925)
 
insert 0 6926 A
>> Inserting city A (0,6926)
 
insert 0 6927 A
>> Inserting city A (0,6927)
 
insert 0 6928 A
>> Inserting city A (0,6928)
 
insert 0 6929 A
>> Inserting city A (0,6929)
 
insert 0 6930 A
>> Inserting city A (0,6930)
 
insert 0 6931 A
>> Inserting city A (0,6931)
 
insert 0 6932 A
>> Inserting city A (0,6932)
 
insert 0 6933 A
>> Inserting city A (0,6933)
 
insert 0 6934 A
>> Inserting city A (0,6934)
 
insert 0 6935 A
>> Inserting city A (0,6935)
 
insert 0 6936 A
>> Inserting city A (0,6936)
 
insert 0 6937 A
>> Inserting city A (0,6937)
 
insert 0 6938 A
>> Inserting city A (0,6938)
 
insert 0 6939 A
>> Inserting city A (0,6939)
 
insert 0 6940 A
>> Inserting city A (0,6940)
 
insert 0 6941 A
>> Inserting city A (0,6941)
 
insert 0 6942 A
>> Inserting city A (0,6942)
 
insert 0 6943 A
>> Inserting city A (0,6943)
 
insert 0 6944 A
>> Inserting city A (0,6944)
 
insert 0 6945 A
>> Inserting city A (0,6945)
 
insert 0 6946 A
>> Inserting city A (0,6946)
 
insert 0 6947 A
>> Inserting city A (0,6947)
 
insert 0 6948 A
>> Inserting city A (0,6948)
 
insert 0 6949 A
>> Inserting city A (0,6949)
 
insert 0 6950 A
>> Inserting city A (0,6950)
 
insert 0 6951 A
>> Inserting city A (0,6951)
 
insert 0 6952 A
>> Inserting city A (0,6952)
 
insert 0 6953 A
>> Inserting city A (0,6953)
 
insert 0 6954 A
>> Inserting city A (0,6954)
 
insert 0 6955 A
>> Inserting city A (0,6955)
 
insert 0 6956 A
>> Inserting city A (0,6956)
 
insert 0 6957 A
>> Inserting city A (0,6957)
 
insert 0 6958 A
>> Inserting city A (0,6958)
 
insert 0 6959 A
>> Inserting city A (0,6959)
 
insert 0 6960 A
>> Inserting city A (0,6960)
 
insert 0 6961 A
>> Inserting city A (0,6961)
 
insert 0 6962 A
>> Inserting city A (0,6962)
 
insert 0 6963 A
>> Inserting city A (0,6963)
 
insert 0 6964 A
>> Inserting city A (0,6964)
 
insert 0 6965 A
>> Inserting city A (0,6965)
 
insert 0 6966 A
>> Inserting city A (0,6966)
 
insert 0 6967 A
>> Inserting city A (0,6967)
 
insert 0 6968 A
>> Inserting city A (0,6968)
 
insert 0 6969 A
>> Inserting city A (0,6969)
 
insert 0 6970 A
>> Inserting city A (0,6970)
 
insert 0 6971 A
>> Inserting city A (0,6971)
 
insert 0 6972 A
>> Inserting city A (0,6972)
 
insert 0 6973 A
>> Inserting city A (0,6973)
 
insert 0 6974 A
>> Inserting city A (0,6974)
 
insert 0 6975 A
>> Inserting city A (0,6975)
 
insert 0 6976 A
>> Inserting city A (0,6976)
 
insert 0 6977 A
>> Inserting city A (0,6977)
 
insert 0 6978 A
>> Inserting city A (0,6978)
 
insert 0 6979 A
>> Inserting city A (0,6979)
 
insert 0 6980 A
>> Inserting city A (0,6980)
 
insert 0 6981 A
>> Inserting city A (0,6981)
 
insert 0 6982 A
>> Inserting city A (0,6982)
 
insert 0 6983 A
>> Inserting city A (0,6983)
 
insert 0 6984 A
>> Inserting city A (0,6984)
 
insert 0 6985 A
>> Inserting city A (0,6985)
 
insert 0 6986 A
>> Inserting city A (0,6986)
 
insert 0 6987 A
>> Inserting city A (0,6987)
 
insert 0 6988 A
>> Inserting city A (0,6988)
 
insert 0 6989 A
>> Inserting city A (0,6989)
 
insert 0 6990 A
>> Inserting city A (0,6990)
 
insert 0 6991 A
>> Inserting city A (0,6991)
 
insert 0 6992 A
>> Inserting city A (0,6992)
 
insert 0 6993 A
>> Inserting city A (0,6993)
 
insert 0 6994 A
>> Inserting city A (0,6994)
 
insert 0 6995 A
>> Inserting city A (0,6995)
 
insert 0 6996 A
>> Inserting city A (0,6996)
 
insert 0 6997 A
>> Inserting city A (0,6997)
 
insert 0 6998 A
>> Inserting city A (0,6998)
 
insert 0 6999 A
>> Inserting city A (0,6999)
 
insert 0 7000 A
>> Inserting city A (0,7000)
 
insert 0 7001 A
>> Inserting city A (0,7001)
 
insert 0 7002 A
>> Inserting city A (0,7002)
 
insert 0 7003 A
>> Inserting city A (0,7003)
 
insert 0 7004 A
>> Inserting city A (0,7004)
 
insert 0 7005 A
>> Inserting city A (0,7005)
 
insert 0 7006 A
>> Inserting city A (0,7006)
 
insert 0 7007 A
>> Inserting city A (0,7007)
 
insert 0 7008 A
>> Inserting city A (0,7008)
 
insert 0 7009 A
>> Inserting city A (0,7009)
 
insert 0 7010 A
>> Inserting city A (0,7010)
 
insert 0 7011 A
>> Inserting city A (0,7011)
 
insert 0 7012 A
>> Inserting city A (0,7012)
 
insert 0 7013 A
>> Inserting city A (0,7013)
 
insert 0 7014 A
>> Inserting city A (0,7014)
 
insert 0 7015 A
>> Inserting city A (0,7015)
 
insert 0 7016 A
>> Inserting city A (0,7016)
 
insert 0 7017 A
>> Inserting city A (0,7017)
 
insert 0 7018 A
>> Inserting city A (0,7018)
 
insert 0 7019 A
>> Inserting city A (0,7019)
 
insert 0 7020 A
>> Inserting city A (0,7020)
 
insert 0 7021 A
>> Inserting city A (0,7021)
 
insert 0 7022 A
>> Inserting city A (0,7022)
 
insert 0 7023 A
>> Inserting city A (0,7023)
 
insert 0 7024 A
>> Inserting city A (0,7024)
 
insert 0 7025 A
>> Inserting city A (0,7025)
 
insert 0 7026 A
>> Inserting city A (0,7026)
 
insert 0 7027 A
>> Inserting city A (0,7027)
 
insert 0 7028 A
>> Inserting city A (0,7028)
 
insert 0 7029 A
>> Inserting city A (0,7029)
 
insert 0 7030 A
>> Inserting city A (0,7030)
 
insert 0 7031 A
>> Inserting city A (0,7031)
 
insert 0 7032 A
>> Inserting city A (0,7032)
 
insert 0 7033 A
>> Inserting city A (0,7033)
 
insert 0 7034 A
>> Inserting city A (0,7034)
 
insert 0 7035 A
>> Inserting city A (0,7035)
 
insert 0 7036 A
>> Inserting city A (0,7036)
 
insert 0 7037 A
>> Inserting city A (0,7037)
 
insert 0 7038 A
>> Inserting city A (0,7038)
 
insert 0 7039 A
>> Inserting city A (0,7039)
 
insert 0 7040 A
>> Inserting city A (0,7040)
 
insert 0 7041 A
>> Inserting city A (0,7041)
 
insert 0 7042 A
>> Inserting city A (0,7042)
 
insert 0 7043 A
>> Inserting city A (0,7043)
 
insert 0 7044 A
>> Inserting city A (0,7044)
 
insert 0 7045 A
>> Inserting city A (0,7045)
 
insert 0 7046 A
>> Inserting city A (0,7046)
 
insert 0 7047 A
>> Inserting city A (0,7047)
 
insert 0 7048 A
>> Inserting city A (0,7048)
 
insert 0 7049 A
>> Inserting city A (0,7049)
 
insert 0 7050 A
>> Inserting city A (0,7050)
 
insert 0 7051 A
>> Inserting city A (0,7051)
 
insert 0 7052 A
>> Inserting city A (0,7052)
 
insert 0 7053 A
>> Inserting city A (0,7053)
 
insert 0 7054 A
>> Inserting city A (0,7054)
 
insert 0 7055 A
>> Inserting city A (0,7055)
 
insert 0 7056 A
>> Inserting city A (0,7056)
 
insert 0 7057 A
>> Inserting city A (0,7057)
 
insert 0 7058 A
>> Inserting city A (0,7058)
 
insert 0 7059 A
>> Inserting city A (0,7059)
 
insert 0 7060 A
>> Inserting city A (0,7060)
 
insert 0 7061 A
>> Inserting city A (0,7061)
 
insert 0 7062 A
>> Inserting city A (0,7062)
 
insert 0 7063 A
>> Inserting city A (0,7063)
 
insert 0 7064 A
>> Inserting city A (0,7064)
 
insert 0 7065 A
>> Inserting city A (0,7065)
 
insert 0 7066 A
>> Inserting city A (0,7066)
 
insert 0 7067 A
>> Inserting city A (0,7067)
 
insert 0 7068 A
>> Inserting city A (0,7068)
 
insert 0 7069 A
>> Inserting city A (0,7069)
 
insert 0 7070 A
>> Inserting city A (0,7070)
 
insert 0 7071 A
>> Inserting city A (0,7071)
 
insert 0 7072 A
>> Inserting city A (0,7072)
 
insert 0 7073 A
>> Inserting city A (0,7073)
 
insert 0 7074 A
>> Inserting city A (0,7074)
 
insert 0 7075 A
>> Inserting city A (0,7075)
 
insert 0 7076 A
>> Inserting city A (0,7076)
 
insert 0 7077 A
>> Inserting city A (0,7077)
 
insert 0 7078 A
>> Inserting city A (0,7078)
 
insert 0 7079 A
>> Inserting city A (0,7079)
 
insert 0 7080 A
>> Inserting city A (0,7080)
 
insert 0 7081 A
>> Inserting city A (0,7081)
 
insert 0 7082 A
>> Inserting city A (0,7082)
 
insert 0 7083 A
>> Inserting city A (0,7083)
 
insert 0 7084 A
>> Inserting city A (0,7084)
 
insert 0 7085 A
>> Inserting city A (0,7085)
 
insert 0 7086 A
>> Inserting city A (0,7086)
 
insert 0 7087 A
>> Inserting city A (0,7087)
 
insert 0 7088 A
>> Inserting city A (0,7088)
 
insert 0 7089 A
>> Inserting city A (0,7089)
 
insert 0 7090 A
>> Inserting city A (0,7090)
 
insert 0 7091 A
>> Inserting city A (0,7091)
 
insert 0 7092 A
>> Inserting city A (0,7092)
 
insert 0 7093 A
>> Inserting city A (0,7093)
 
insert 0 7094 A
>> Inserting city A (0,7094)
 
insert 0 7095 A
>> Inserting city A (0,7095)
 
insert 0 7096 A
>> Inserting city A (0,7096)
 
insert 0 7097 A
>> Inserting city A (0,7097)
 
insert 0 7098 A
>> Inserting city A (0,7098)
 
insert 0 7099 A
>> Inserting city A (0,7099)
 
insert 0 7100 A
>> Inserting city A (0,7100)
 
insert 0 7101 A
>> Inserting city A (0,7101)
 
insert 0 7102 A
>> Inserting city A (0,7102)
 
insert 0 7103 A
>> Inserting city A (0,7103)
 
insert 0 7104 A
>> Inserting city A (0,7104)
 
insert 0 7105 A
>> Inserting city A (0,7105)
 
insert 0 7106 A
>> Inserting city A (0,7106)
 
insert 0 7107 A
>> Inserting city A (0,7107)
 
insert 0 7108 A
>> Inserting city A (0,7108)
 
insert 0 7109 A
>> Inserting city A (0,7109)
 
insert 0 7110 A
>> Inserting city A (0,7110)
 
insert 0 7111 A
>> Inserting city A (0,7111)
 
insert 0 7112 A
>> Inserting city A (0,7112)
 
insert 0 7113 A
>> Inserting city A (0,7113)
 
insert 0 7114 A
>> Inserting city A (0,7114)
 
insert 0 7115 A
>> Inserting city A (0,7115)
 
insert 0 7116 A
>> Inserting city A (0,7116)
 
insert 0 7117 A
>> Inserting city A (0,7117)
 
insert 0 7118 A
>> Inserting city A (0,7118)
 
insert 0 7119 A
>> Inserting city A (0,7119)
 
insert 0 7120 A
>> Inserting city A (0,7120)
 
insert 0 7121 A
>> Inserting city A (0,7121)
 
insert 0 7122 A
>> Inserting city A (0,7122)
 
insert 0 7123 A
>> Inserting city A (0,7123)
 
insert 0 7124 A
>> Inserting city A (0,7124)
 
insert 0 7125 A
>> Inserting city A (0,7125)
 
insert 0 7126 A
>> Inserting city A (0,7126)
 
insert 0 7127 A
>> Inserting city A (0,7127)
 
insert 0 7128 A
>> Inserting city A (0,7128)
 
insert 0 7129 A
>> Inserting city A (0,7129)
 
insert 0 7130 A
>> Inserting city A (0,7130)
 
insert 0 7131 A
>> Inserting city A (0,7131)
 
insert 0 7132 A
>> Inserting city A (0,7132)
 
insert 0 7133 A
>> Inserting city A (0,7133)
 
insert 0 7134 A
>> Inserting city A (0,7134)
 
insert 0 7135 A
>> Inserting city A (0,7135)
 
insert 0 7136 A
>> Inserting city A (0,7136)
 
insert 0 7137 A
>> Inserting city A (0,7137)
 
insert 0 7138 A
>> Inserting city A (0,7138)
 
insert 0 7139 A
>> Inserting city A (0,7139)
 
insert 0 7140 A
>> Inserting city A (0,7140)
 
insert 0 7141 A
>> Inserting city A (0,7141)
 
insert 0 7142 A
>> Inserting city A (0,7142)
 
insert 0 7143 A
>> Inserting city A (0,7143)
 
insert 0 7144 A
>> Inserting city A (0,7144)
 
insert 0 7145 A
>> Inserting city A (0,7145)
 
insert 0 7146 A
>> Inserting city A (0,7146)
 
insert 0 7147 A
>> Inserting city A (0,7147)
 
insert 0 7148 A
>> Inserting city A (0,7148)
 
insert 0 7149 A
>> Inserting city A (0,7149)
 
insert 0 7150 A
>> Inserting city A (0,7150)
 
insert 0 7151 A
>> Inserting city A (0,7151)
 
insert 0 7152 A
>> Inserting city A (0,7152)
 
insert 0 7153 A
>> Inserting city A (0,7153)
 
insert 0 7154 A
>> Inserting city A (0,7154)
 
insert 0 7155 A
>> Inserting city A (0,7155)
 
insert 0 7156 A
>> Inserting city A (0,7156)
 
insert 0 7157 A
>> Inserting city A (0,7157)
 
insert 0 7158 A
>> Inserting city A (0,7158)
 
insert 0 7159 A
>> Inserting city A (0,7159)
 
insert 0 7160 A
>> Inserting city A (0,7160)
 
insert 0 7161 A
>> Inserting city A (0,7161)
 
insert 0 7162 A
>> Inserting city A (0,7162)
 
insert 0 7163 A
>> Inserting city A (0,7163)
 
insert 0 7164 A
>> Inserting city A (0,7164)
 
insert 0 7165 A
>> Inserting city A (0,7165)
 
insert 0 7166 A
>> Inserting city A (0,7166)
 
insert 0 7167 A
>> Inserting city A (0,7167)
 
insert 0 7168 A
>> Inserting city A (0,7168)
 
insert 0 7169 A
>> Inserting city A (0,7169)
 
insert 0 7170 A
>> Inserting city A (0,7170)
 
insert 0 7171 A
>> Inserting city A (0,7171)
 
insert 0 7172 A
>> Inserting city A (0,7172)
 
insert 0 7173 A
>> Inserting city A (0,7173)
 
insert 0 7174 A
>> Inserting city A (0,7174)
 
insert 0 7175 A
>> Inserting city A (0,7175)
 
insert 0 7176 A
>> Inserting city A (0,7176)
 
insert 0 7177 A
>> Inserting city A (0,7177)
 
insert 0 7178 A
>> Inserting city A (0,7178)
 
insert 0 7179 A
>> Inserting city A (0,7179)
 
insert 0 7180 A
>> Inserting city A (0,7180)
 
insert 0 7181 A
>> Inserting city A (0,7181)
 
insert 0 7182 A
>> Inserting city A (0,7182)
 
insert 0 7183 A
>> Inserting city A (0,7183)
 
insert 0 7184 A
>> Inserting city A (0,7184)
 
insert 0 7185 A
>> Inserting city A (0,7185)
 
insert 0 7186 A
>> Inserting city A (0,7186)
 
insert 0 7187 A
>> Inserting city A (0,7187)
 
insert 0 7188 A
>> Inserting city A (0,7188)
 
insert 0 7189 A
>> Inserting city A (0,7189)
 
insert 0 7190 A
>> Inserting city A (0,7190)
 
insert 0 7191 A
>> Inserting city A (0,7191)
 
insert 0 7192 A
>> Inserting city A (0,7192)
 
insert 0 7193 A
>> Inserting city A (0,7193)
 
insert 0 7194 A
>> Inserting city A (0,7194)
 
insert 0 7195 A
>> Inserting city A (0,7195)
 
insert 0 7196 A
>> Inserting city A (0,7196)
 
insert 0 7197 A
>> Inserting city A (0,7197)
 
insert 0 7198 A
>> Inserting city A (0,7198)
 
insert 0 7199 A
>> Inserting city A (0,7199)
 
insert 0 7200 A
>> Inserting city A (0,7200)
 
insert 0 7201 A
>> Inserting city A (0,7201)
 
insert 0 7202 A
>> Inserting city A (0,7202)
 
insert 0 7203 A
>> Inserting city A (0,7203)
 
insert 0 7204 A
>> Inserting city A (0,7204)
 
insert 0 7205 A
>> Inserting city A (0,7205)
 
insert 0 7206 A
>> Inserting city A (0,7206)
 
insert 0 7207 A
>> Inserting city A (0,7207)
 
insert 0 7208 A
>> Inserting city A (0,7208)
 
insert 0 7209 A
>> Inserting city A (0,7209)
 
insert 0 7210 A
>> Inserting city A (0,7210)
 
insert 0 7211 A
>> Inserting city A (0,7211)
 
insert 0 7212 A
>> Inserting city A (0,7212)
 
insert 0 7213 A
>> Inserting city A (0,7213)
 
insert 0 7214 A
>> Inserting city A (0,7214)
 
insert 0 7215 A
>> Inserting city A (0,7215)
 
insert 0 7216 A
>> Inserting city A (0,7216)
 
insert 0 7217 A
>> Inserting city A (0,7217)
 
insert 0 7218 A
>> Inserting city A (0,7218)
 
insert 0 7219 A
>> Inserting city A (0,7219)
 
insert 0 7220 A
>> Inserting city A (0,7220)
 
insert 0 7221 A
>> Inserting city A (0,7221)
 
insert 0 7222 A
>> Inserting city A (0,7222)
 
insert 0 7223 A
>> Inserting city A (0,7223)
 
insert 0 7224 A
>> Inserting city A (0,7224)
 
insert 0 7225 A
>> Inserting city A (0,7225)
 
insert 0 7226 A
>> Inserting city A (0,7226)
 
insert 0 7227 A
>> Inserting city A (0,7227)
 
insert 0 7228 A
>> Inserting city A (0,7228)
 
insert 0 7229 A
>> Inserting city A (0,7229)
 
insert 0 7230 A
>> Inserting city A (0,7230)
 
insert 0 7231 A
>> Inserting city A (0,7231)
 
insert 0 7232 A
>> Inserting city A (0,7232)
 
insert 0 7233 A
>> Inserting city A (0,7233)
 
insert 0 7234 A
>> Inserting city A (0,7234)
 
insert 0 7235 A
>> Inserting city A (0,7235)
 
insert 0 7236 A
>> Inserting city A (0,7236)
 
insert 0 7237 A
>> Inserting city A (0,7237)
 
insert 0 7238 A
>> Inserting city A (0,7238)
 
insert 0 7239 A
>> Inserting city A (0,7239)
 
insert 0 7240 A
>> Inserting city A (0,7240)
 
insert 0 7241 A
>> Inserting city A (0,7241)
 
insert 0 7242 A
>> Inserting city A (0,7242)
 
insert 0 7243 A
>> Inserting city A (0,7243)
 
insert 0 7244 A
>> Inserting city A (0,7244)
 
insert 0 7245 A
>> Inserting city A (0,7245)
 
insert 0 7246 A
>> Inserting city A (0,7246)
 
insert 0 7247 A
>> Inserting city A (0,7247)
 
insert 0 7248 A
>> Inserting city A (0,7248)
 
insert 0 7249 A
>> Inserting city A (0,7249)
 
insert 0 7250 A
>> Inserting city A (0,7250)
 
insert 0 7251 A
>> Inserting city A (0,7251)
 
insert 0 7252 A
>> Inserting city A (0,7252)
 
insert 0 7253 A
>> Inserting city A (0,7253)
 
insert 0 7254 A
>> Inserting city A (0,7254)
 
insert 0 7255 A
>> Inserting city A (0,7255)
 
insert 0 7256 A
>> Inserting city A (0,7256)
 
insert 0 7257 A
>> Inserting city A (0,7257)
 
insert 0 7258 A
>> Inserting city A (0,7258)
 
insert 0 7259 A
>> Inserting city A (0,7259)
 
insert 0 7260 A
>> Inserting city A (0,7260)
 
insert 0 7261 A
>> Inserting city A (0,7261)
 
insert 0 7262 A
>> Inserting city A (0,7262)
 
insert 0 7263 A
>> Inserting city A (0,7263)
 
insert 0 7264 A
>> Inserting city A (0,7264)
 
insert 0 7265 A
>> Inserting city A (0,7265)
 
insert 0 7266 A
>> Inserting city A (0,7266)
 
insert 0 7267 A
>> Inserting city A (0,7267)
 
insert 0 7268 A
>> Inserting city A (0,7268)
 
insert 0 7269 A
>> Inserting city A (0,7269)
 
insert 0 7270 A
>> Inserting city A (0,7270)
 
insert 0 7271 A
>> Inserting city A (0,7271)
 
insert 0 7272 A
>> Inserting city A (0,7272)
 
insert 0 7273 A
>> Inserting city A (0,7273)
 
insert 0 7274 A
>> Inserting city A (0,7274)
 
insert 0 7275 A
>> Inserting city A (0,7275)
 
insert 0 7276 A
>> Inserting city A (0,7276)
 
insert 0 7277 A
>> Inserting city A (0,7277)
 
insert 0 7278 A
>> Inserting city A (0,7278)
 
insert 0 7279 A
>> Inserting city A (0,7279)
 
insert 0 7280 A
>> Inserting city A (0,7280)
 
insert 0 7281 A
>> Inserting city A (0,7281)
 
insert 0 7282 A
>> Inserting city A (0,7282)
 
insert 0 7283 A
>> Inserting city A (0,7283)
 
insert 0 7284 A
>> Inserting city A (0,7284)
 
insert 0 7285 A
>> Inserting city A (0,7285)
 
insert 0 7286 A
>> Inserting city A (0,7286)
 
insert 0 7287 A
>> Inserting city A (0,7287)
 
insert 0 7288 A
>> Inserting city A (0,7288)
 
insert 0 7289 A
>> Inserting city A (0,7289)
 
insert 0 7290 A
>> Inserting city A (0,7290)
 
insert 0 7291 A
>> Inserting city A (0,7291)
 
insert 0 7292 A
>> Inserting city A (0,7292)
 
insert 0 7293 A
>> Inserting city A (0,7293)
 
insert 0 7294 A
>> Inserting city A (0,7294)
 
insert 0 7295 A
>> Inserting city A (0,7295)
 
insert 0 7296 A
>> Inserting city A (0,7296)
 
insert 0 7297 A
>> Inserting city A (0,7297)
 
insert 0 7298 A
>> Inserting city A (0,7298)
 
insert 0 7299 A
>> Inserting city A (0,7299)
 
insert 0 7300 A
>> Inserting city A (0,7300)
 
insert 0 7301 A
>> Inserting city A (0,7301)
 
insert 0 7302 A
>> Inserting city A (0,7302)
 
insert 0 7303 A
>> Inserting city A (0,7303)
 
insert 0 7304 A
>> Inserting city A (0,7304)
 
insert 0 7305 A
>> Inserting city A (0,7305)
 
insert 0 7306 A
>> Inserting city A (0,7306)
 
insert 0 7307 A
>> Inserting city A (0,7307)
 
insert 0 7308 A
>> Inserting city A (0,7308)
 
insert 0 7309 A
>> Inserting city A (0,7309)
 
insert 0 7310 A
>> Inserting city A (0,7310)
 
insert 0 7311 A
>> Inserting city A (0,7311)
 
insert 0 7312 A
>> Inserting city A (0,7312)
 
insert 0 7313 A
>> Inserting city A (0,7313)
 
insert 0 7314 A
>> Inserting city A (0,7314)
 
insert 0 7315 A
>> Inserting city A (0,7315)
 
insert 0 7316 A
>> Inserting city A (0,7316)
 
insert 0 7317 A
>> Inserting city A (0,7317)
 
insert 0 7318 A
>> Inserting city A (0,7318)
 
insert 0 7319 A
>> Inserting city A (0,7319)
 
insert 0 7320 A
>> Inserting city A (0,7320)
 
insert 0 7321 A
>> Inserting city A (0,7321)
 
insert 0 7322 A
>> Inserting city A (0,7322)
 
insert 0 7323 A
>> Inserting city A (0,7323)
 
insert 0 7324 A
>> Inserting city A (0,7324)
 
insert 0 7325 A
>> Inserting city A (0,7325)
 
insert 0 7326 A
>> Inserting city A (0,7326)
 
insert 0 7327 A
>> Inserting city A (0,7327)
 
insert 0 7328 A
>> Inserting city A (0,7328)
 
insert 0 7329 A
>> Inserting city A (0,7329)
 
insert 0 7330 A
>> Inserting city A (0,7330)
 
insert 0 7331 A
>> Inserting city A (0,7331)
 
insert 0 7332 A
>> Inserting city A (0,7332)
 
insert 0 7333 A
>> Inserting city A (0,7333)
 
insert 0 7334 A
>> Inserting city A (0,7334)
 
insert 0 7335 A
>> Inserting city A (0,7335)
 
insert 0 7336 A
>> Inserting city A (0,7336)
 
insert 0 7337 A
>> Inserting city A (0,7337)
 
insert 0 7338 A
>> Inserting city A (0,7338)
 
insert 0 7339 A
>> Inserting city A (0,7339)
 
insert 0 7340 A
>> Inserting city A (0,7340)
 
insert 0 7341 A
>> Inserting city A (0,7341)
 
insert 0 7342 A
>> Inserting city A (0,7342)
 
insert 0 7343 A
>> Inserting city A (0,7343)
 
insert 0 7344 A
>> Inserting city A (0,7344)
 
insert 0 7345 A
>> Inserting city A (0,7345)
 
insert 0 7346 A
>> Inserting city A (0,7346)
 
insert 0 7347 A
>> Inserting city A (0,7347)
 
insert 0 7348 A
>> Inserting city A (0,7348)
 
insert 0 7349 A
>> Inserting city A (0,7349)
 
insert 0 7350 A
>> Inserting city A (0,7350)
 
insert 0 7351 A
>> Inserting city A (0,7351)
 
insert 0 7352 A
>> Inserting city A (0,7352)
 
insert 0 7353 A
>> Inserting city A (0,7353)
 
insert 0 7354 A
>> Inserting city A (0,7354)
 
insert 0 7355 A
>> Inserting city A (0,7355)
 
insert 0 7356 A
>> Inserting city A (0,7356)
 
insert 0 7357 A
>> Inserting city A (0,7357)
 
insert 0 7358 A
>> Inserting city A (0,7358)
 
insert 0 7359 A
>> Inserting city A (0,7359)
 
insert 0 7360 A
>> Inserting city A (0,7360)
 
insert 0 7361 A
>> Inserting city A (0,7361)
 
insert 0 7362 A
>> Inserting city A (0,7362)
 
insert 0 7363 A
>> Inserting city A (0,7363)
 
insert 0 7364 A
>> Inserting city A (0,7364)
 
insert 0 7365 A
>> Inserting city A (0,7365)
 
insert 0 7366 A
>> Inserting city A (0,7366)
 
insert 0 7367 A
>> Inserting city A (0,7367)
 
insert 0 7368 A
>> Inserting city A (0,7368)
 
insert 0 7369 A
>> Inserting city A (0,7369)
 
insert 0 7370 A
>> Inserting city A (0,7370)
 
insert 0 7371 A
>> Inserting city A (0,7371)
 
insert 0 7372 A
>> Inserting city A (0,7372)
 
insert 0 7373 A
>> Inserting city A (0,7373)
 
insert 0 7374 A
>> Inserting city A (0,7374)
 
insert 0 7375 A
>> Inserting city A (0,7375)
 
insert 0 7376 A
>> Inserting city A (0,7376)
 
insert 0 7377 A
>> Inserting city A (0,7377)
 
insert 0 7378 A
>> Inserting city A (0,7378)
 
insert 0 7379 A
>> Inserting city A (0,7379)
 
insert 0 7380 A
>> Inserting city A (0,7380)
 
insert 0 7381 A
>> Inserting city A (0,7381)
 
insert 0 7382 A
>> Inserting city A (0,7382)
 
insert 0 7383 A
>> Inserting city A (0,7383)
 
insert 0 7384 A
>> Inserting city A (0,7384)
 
insert 0 7385 A
>> Inserting city A (0,7385)
 
insert 0 7386 A
>> Inserting city A (0,7386)
 
insert 0 7387 A
>> Inserting city A (0,7387)
 
insert 0 7388 A
>> Inserting city A (0,7388)
 
insert 0 7389 A
>> Inserting city A (0,7389)
 
insert 0 7390 A
>> Inserting city A (0,7390)
 
insert 0 7391 A
>> Inserting city A (0,7391)
 
insert 0 7392 A
>> Inserting city A (0,7392)
 
insert 0 7393 A
>> Inserting city A (0,7393)
 
insert 0 7394 A
>> Inserting city A (0,7394)
 
insert 0 7395 A
>> Inserting city A (0,7395)
 
insert 0 7396 A
>> Inserting city A (0,7396)
 
insert 0 7397 A
>> Inserting city A (0,7397)
 
insert 0 7398 A
>> Inserting city A (0,7398)
 
insert 0 7399 A
>> Inserting city A (0,7399)
 
insert 0 7400 A
>> Inserting city A (0,7400)
 
insert 0 7401 A
>> Inserting city A (0,7401)
 
insert 0 7402 A
>> Inserting city A (0,7402)
 
insert 0 7403 A
>> Inserting city A (0,7403)
 
insert 0 7404 A
>> Inserting city A (0,7404)
 
insert 0 7405 A
>> Inserting city A (0,7405)
 
insert 0 7406 A
>> Inserting city A (0,7406)
 
insert 0 7407 A
>> Inserting city A (0,7407)
 
insert 0 7408 A
>> Inserting city A (0,7408)
 
insert 0 7409 A
>> Inserting city A (0,7409)
 
insert 0 7410 A
>> Inserting city A (0,7410)
 
insert 0 7411 A
>> Inserting city A (0,7411)
 
insert 0 7412 A
>> Inserting city A (0,7412)
 
insert 0 7413 A
>> Inserting city A (0,7413)
 
insert 0 7414 A
>> Inserting city A (0,7414)
 
insert 0 7415 A
>> Inserting city A (0,7415)
 
insert 0 7416 A
>> Inserting city A (0,7416)
 
insert 0 7417 A
>> Inserting city A (0,7417)
 
insert 0 7418 A
>> Inserting city A (0,7418)
 
insert 0 7419 A
>> Inserting city A (0,7419)
 
insert 0 7420 A
>> Inserting city A (0,7420)
 
insert 0 7421 A
>> Inserting city A (0,7421)
 
insert 0 7422 A
>> Inserting city A (0,7422)
 
insert 0 7423 A
>> Inserting city A (0,7423)
 
insert 0 7424 A
>> Inserting city A (0,7424)
 
insert 0 7425 A
>> Inserting city A (0,7425)
 
insert 0 7426 A
>> Inserting city A (0,7426)
 
insert 0 7427 A
>> Inserting city A (0,7427)
 
insert 0 7428 A
>> Inserting city A (0,7428)
 
insert 0 7429 A
>> Inserting city A (0,7429)
 
insert 0 7430 A
>> Inserting city A (0,7430)
 
insert 0 7431 A
>> Inserting city A (0,7431)
 
insert 0 7432 A
>> Inserting city A (0,7432)
 
insert 0 7433 A
>> Inserting city A (0,7433)
 
insert 0 7434 A
>> Inserting city A (0,7434)
 
insert 0 7435 A
>> Inserting city A (0,7435)
 
insert 0 7436 A
>> Inserting city A (0,7436)
 
insert 0 7437 A
>> Inserting city A (0,7437)
 
insert 0 7438 A
>> Inserting city A (0,7438)
 
insert 0 7439 A
>> Inserting city A (0,7439)
 
insert 0 7440 A
>> Inserting city A (0,7440)
 
insert 0 7441 A
>> Inserting city A (0,7441)
 
insert 0 7442 A
>> Inserting city A (0,7442)
 
insert 0 7443 A
>> Inserting city A (0,7443)
 
insert 0 7444 A
>> Inserting city A (0,7444)
 
insert 0 7445 A
>> Inserting city A (0,7445)
 
insert 0 7446 A
>> Inserting city A (0,7446)
 
insert 0 7447 A
>> Inserting city A (0,7447)
 
insert 0 7448 A
>> Inserting city A (0,7448)
 
insert 0 7449 A
>> Inserting city A (0,7449)
 
insert 0 7450 A
>> Inserting city A (0,7450)
 
insert 0 7451 A
>> Inserting city A (0,7451)
 
insert 0 7452 A
>> Inserting city A (0,7452)
 
insert 0 7453 A
>> Inserting city A (0,7453)
 
insert 0 7454 A
>> Inserting city A (0,7454)
 
insert 0 7455 A
>> Inserting city A (0,7455)
 
insert 0 7456 A
>> Inserting city A (0,7456)
 
insert 0 7457 A
>> Inserting city A (0,7457)
 
insert 0 7458 A
>> Inserting city A (0,7458)
 
insert 0 7459 A
>> Inserting city A (0,7459)
 
insert 0 7460 A
>> Inserting city A (0,7460)
 
insert 0 7461 A
>> Inserting city A (0,7461)
 
insert 0 7462 A
>> Inserting city A (0,7462)
 
insert 0 7463 A
>> Inserting city A (0,7463)
 
insert 0 7464 A
>> Inserting city A (0,7464)
 
insert 0 7465 A
>> Inserting city A (0,7465)
 
insert 0 7466 A
>> Inserting city A (0,7466)
 
insert 0 7467 A
>> Inserting city A (0,7467)
 
insert 0 7468 A
>> Inserting city A (0,7468)
 
insert 0 7469 A
>> Inserting city A (0,7469)
 
insert 0 7470 A
>> Inserting city A (0,7470)
 
insert 0 7471 A
>> Inserting city A (0,7471)
 
insert 0 7472 A
>> Inserting city A (0,7472)
 
insert 0 7473 A
>> Inserting city A (0,7473)
 
insert 0 7474 A
>> Inserting city A (0,7474)
 
insert 0 7475 A
>> Inserting city A (0,7475)
 
insert 0 7476 A
>> Inserting city A (0,7476)
 
insert 0 7477 A
>> Inserting city A (0,7477)
 
insert 0 7478 A
>> Inserting city A (0,7478)
 
insert 0 7479 A
>> Inserting city A (0,7479)
 
insert 0 7480 A
>> Inserting city A (0,7480)
 
insert 0 7481 A
>> Inserting city A (0,7481)
 
insert 0 7482 A
>> Inserting city A (0,7482)
 
insert 0 7483 A
>> Inserting city A (0,7483)
 
insert 0 7484 A
>> Inserting city A (0,7484)
 
insert 0 7485 A
>> Inserting city A (0,7485)
 
insert 0 7486 A
>> Inserting city A (0,7486)
 
insert 0 7487 A
>> Inserting city A (0,7487)
 
insert 0 7488 A
>> Inserting city A (0,7488)
 
insert 0 7489 A
>> Inserting city A (0,7489)
 
insert 0 7490 A
>> Inserting city A (0,7490)
 
insert 0 7491 A
>> Inserting city A (0,7491)
 
insert 0 7492 A
>> Inserting city A (0,7492)
 
insert 0 7493 A
>> Inserting city A (0,7493)
 
insert 0 7494 A
>> Inserting city A (0,7494)
 
insert 0 7495 A
>> Inserting city A (0,7495)
 
insert 0 7496 A
>> Inserting city A (0,7496)
 
insert 0 7497 A
>> Inserting city A (0,7497)
 
insert 0 7498 A
>> Inserting city A (0,7498)
 
insert 0 7499 A
>> Inserting city A (0,7499)
 
insert 0 7500 A
>> Inserting city A (0,7500)
 
insert 0 7501 A
>> Inserting city A (0,7501)
 
insert 0 7502 A
>> Inserting city A (0,7502)
 
insert 0 7503 A
>> Inserting city A (0,7503)
 
insert 0 7504 A
>> Inserting city A (0,7504)
 
insert 0 7505 A
>> Inserting city A (0,7505)
 
insert 0 7506 A
>> Inserting city A (0,7506)
 
insert 0 7507 A
>> Inserting city A (0,7507)
 
insert 0 7508 A
>> Inserting city A (0,7508)
 
insert 0 7509 A
>> Inserting city A (0,7509)
 
insert 0 7510 A
>> Inserting city A (0,7510)
 
insert 0 7511 A
>> Inserting city A (0,7511)
 
insert 0 7512 A
>> Inserting city A (0,7512)
 
insert 0 7513 A
>> Inserting city A (0,7513)
 
insert 0 7514 A
>> Inserting city A (0,7514)
 
insert 0 7515 A
>> Inserting city A (0,7515)
 
insert 0 7516 A
>> Inserting city A (0,7516)
 
insert 0 7517 A
>> Inserting city A (0,7517)
 
insert 0 7518 A
>> Inserting city A (0,7518)
 
insert 0 7519 A
>> Inserting city A (0,7519)
 
insert 0 7520 A
>> Inserting city A (0,7520)
 
insert 0 7521 A
>> Inserting city A (0,7521)
 
insert 0 7522 A
>> Inserting city A (0,7522)
 
insert 0 7523 A
>> Inserting city A (0,7523)
 
insert 0 7524 A
>> Inserting city A (0,7524)
 
insert 0 7525 A
>> Inserting city A (0,7525)
 
insert 0 7526 A
>> Inserting city A (0,7526)
 
insert 0 7527 A
>> Inserting city A (0,7527)
 
insert 0 7528 A
>> Inserting city A (0,7528)
 
insert 0 7529 A
>> Inserting city A (0,7529)
 
insert 0 7530 A
>> Inserting city A (0,7530)
 
insert 0 7531 A
>> Inserting city A (0,7531)
 
insert 0 7532 A
>> Inserting city A (0,7532)
 
insert 0 7533 A
>> Inserting city A (0,7533)
 
insert 0 7534 A
>> Inserting city A (0,7534)
 
insert 0 7535 A
>> Inserting city A (0,7535)
 
insert 0 7536 A
>> Inserting city A (0,7536)
 
insert 0 7537 A
>> Inserting city A (0,7537)
 
insert 0 7538 A
>> Inserting city A (0,7538)
 
insert 0 7539 A
>> Inserting city A (0,7539)
 
insert 0 7540 A
>> Inserting city A (0,7540)
 
insert 0 7541 A
>> Inserting city A (0,7541)
 
insert 0 7542 A
>> Inserting city A (0,7542)
 
insert 0 7543 A
>> Inserting city A (0,7543)
 
insert 0 7544 A
>> Inserting city A (0,7544)
 
insert 0 7545 A
>> Inserting city A (0,7545)
 
insert 0 7546 A
>> Inserting city A (0,7546)
 
insert 0 7547 A
>> Inserting city A (0,7547)
 
insert 0 7548 A
>> Inserting city A (0,7548)
 
insert 0 7549 A
>> Inserting city A (0,7549)
 
insert 0 7550 A
>> Inserting city A (0,7550)
 
insert 0 7551 A
>> Inserting city A (0,7551)
 
insert 0 7552 A
>> Inserting city A (0,7552)
 
insert 0 7553 A
>> Inserting city A (0,7553)
 
insert 0 7554 A
>> Inserting city A (0,7554)
 
insert 0 7555 A
>> Inserting city A (0,7555)
 
insert 0 7556 A
>> Inserting city A (0,7556)
 
insert 0 7557 A
>> Inserting city A (0,7557)
 
insert 0 7558 A
>> Inserting city A (0,7558)
 
insert 0 7559 A
>> Inserting city A (0,7559)
 
insert 0 7560 A
>> Inserting city A (0,7560)
 
insert 0 7561 A
>> Inserting city A (0,7561)
 
insert 0 7562 A
>> Inserting city A (0,7562)
 
insert 0 7563 A
>> Inserting city A (0,7563)
 
insert 0 7564 A
>> Inserting city A (0,7564)
 
insert 0 7565 A
>> Inserting city A (0,7565)
 
insert 0 7566 A
>> Inserting city A (0,7566)
 
insert 0 7567 A
>> Inserting city A (0,7567)
 
insert 0 7568 A
>> Inserting city A (0,7568)
 
insert 0 7569 A
>> Inserting city A (0,7569)
 
insert 0 7570 A
>> Inserting city A (0,7570)
 
insert 0 7571 A
>> Inserting city A (0,7571)
 
insert 0 7572 A
>> Inserting city A (0,7572)
 
insert 0 7573 A
>> Inserting city A (0,7573)
 
insert 0 7574 A
>> Inserting city A (0,7574)
 
insert 0 7575 A
>> Inserting city A (0,7575)
 
insert 0 7576 A
>> Inserting city A (0,7576)
 
insert 0 7577 A
>> Inserting city A (0,7577)
 
insert 0 7578 A
>> Inserting city A (0,7578)
 
insert 0 7579 A
>> Inserting city A (0,7579)
 
insert 0 7580 A
>> Inserting city A (0,7580)
 
insert 0 7581 A
>> Inserting city A (0,7581)
 
insert 0 7582 A
>> Inserting city A (0,7582)
 
insert 0 7583 A
>> Inserting city A (0,7583)
 
insert 0 7584 A
>> Inserting city A (0,7584)
 
insert 0 7585 A
>> Inserting city A (0,7585)
 
insert 0 7586 A
>> Inserting city A (0,7586)
 
insert 0 7587 A
>> Inserting city A (0,7587)
 
insert 0 7588 A
>> Inserting city A (0,7588)
 
insert 0 7589 A
>> Inserting city A (0,7589)
 
insert 0 7590 A
>> Inserting city A (0,7590)
 
insert 0 7591 A
>> Inserting city A (0,7591)
 
insert 0 7592 A
>> Inserting city A (0,7592)
 
insert 0 7593 A
>> Inserting city A (0,7593)
 
insert 0 7594 A
>> Inserting city A (0,7594)
 
insert 0 7595 A
>> Inserting city A (0,7595)
 
insert 0 7596 A
>> Inserting city A (0,7596)
 
insert 0 7597 A
>> Inserting city A (0,7597)
 
insert 0 7598 A
>> Inserting city A (0,7598)
 
insert 0 7599 A
>> Inserting city A (0,7599)
 
insert 0 7600 A
>> Inserting city A (0,7600)
 
insert 0 7601 A
>> Inserting city A (0,7601)
 
insert 0 7602 A
>> Inserting city A (0,7602)
 
insert 0 7603 A
>> Inserting city A (0,7603)
 
insert 0 7604 A
>> Inserting city A (0,7604)
 
insert 0 7605 A
>> Inserting city A (0,7605)
 
insert 0 7606 A
>> Inserting city A (0,7606)
 
insert 0 7607 A
>> Inserting city A (0,7607)
 
insert 0 7608 A
>> Inserting city A (0,7608)
 
insert 0 7609 A
>> Inserting city A (0,7609)
 
insert 0 7610 A
>> Inserting city A (0,7610)
 
insert 0 7611 A
>> Inserting city A (0,7611)
 
insert 0 7612 A
>> Inserting city A (0,7612)
 
insert 0 7613 A
>> Inserting city A (0,7613)
 
insert 0 7614 A
>> Inserting city A (0,7614)
 
insert 0 7615 A
>> Inserting city A (0,7615)
 
insert 0 7616 A
>> Inserting city A (0,7616)
 
insert 0 7617 A
>> Inserting city A (0,7617)
 
insert 0 7618 A
>> Inserting city A (0,7618)
 
insert 0 7619 A
>> Inserting city A (0,7619)
 
insert 0 7620 A
>> Inserting city A (0,7620)
 
insert 0 7621 A
>> Inserting city A (0,7621)
 
insert 0 7622 A
>> Inserting city A (0,7622)
 
insert 0 7623 A
>> Inserting city A (0,7623)
 
insert 0 7624 A
>> Inserting city A (0,7624)
 
insert 0 7625 A
>> Inserting city A (0,7625)
 
insert 0 7626 A
>> Inserting city A (0,7626)
 
insert 0 7627 A
>> Inserting city A (0,7627)
 
insert 0 7628 A
>> Inserting city A (0,7628)
 
insert 0 7629 A
>> Inserting city A (0,7629)
 
insert 0 7630 A
>> Inserting city A (0,7630)
 
insert 0 7631 A
>> Inserting city A (0,7631)
 
insert 0 7632 A
>> Inserting city A (0,7632)
 
insert 0 7633 A
>> Inserting city A (0,7633)
 
insert 0 7634 A
>> Inserting city A (0,7634)
 
insert 0 7635 A
>> Inserting city A (0,7635)
 
insert 0 7636 A
>> Inserting city A (0,7636)
 
insert 0 7637 A
>> Inserting city A (0,7637)
 
insert 0 7638 A
>> Inserting city A (0,7638)
 
insert 0 7639 A
>> Inserting city A (0,7639)
 
insert 0 7640 A
>> Inserting city A (0,7640)
 
insert 0 7641 A
>> Inserting city A (0,7641)
 
insert 0 7642 A
>> Inserting city A (0,7642)
 
insert 0 7643 A
>> Inserting city A (0,7643)
 
insert 0 7644 A
>> Inserting city A (0,7644)
 
insert 0 7645 A
>> Inserting city A (0,7645)
 
insert 0 7646 A
>> Inserting city A (0,7646)
 
insert 0 7647 A
>> Inserting city A (0,7647)
 
insert 0 7648 A
>> Inserting city A (0,7648)
 
insert 0 7649 A
>> Inserting city A (0,7649)
 
insert 0 7650 A
>> Inserting city A (0,7650)
 
insert 0 7651 A
>> Inserting city A (0,7651)
 
insert 0 7652 A
>> Inserting city A (0,7652)
 
insert 0 7653 A
>> Inserting city A (0,7653)
 
insert 0 7654 A
>> Inserting city A (0,7654)
 
insert 0 7655 A
>> Inserting city A (0,7655)
 
insert 0 7656 A
>> Inserting city A (0,7656)
 
insert 0 7657 A
>> Inserting city A (0,7657)
 
insert 0 7658 A
>> Inserting city A (0,7658)
 
insert 0 7659 A
>> Inserting city A (0,7659)
 
insert 0 7660 A
>> Inserting city A (0,7660)
 
insert 0 7661 A
>> Inserting city A (0,7661)
 
insert 0 7662 A
>> Inserting city A (0,7662)
 
insert 0 7663 A
>> Inserting city A (0,7663)
 
insert 0 7664 A
>> Inserting city A (0,7664)
 
insert 0 7665 A
>> Inserting city A (0,7665)
 
insert 0 7666 A
>> Inserting city A (0,7666)
 
insert 0 7667 A
>> Inserting city A (0,7667)
 
insert 0 7668 A
>> Inserting city A (0,7668)
 
insert 0 7669 A
>> Inserting city A (0,7669)
 
insert 0 7670 A
>> Inserting city A (0,7670)
 
insert 0 7671 A
>> Inserting city A (0,7671)
 
insert 0 7672 A
>> Inserting city A (0,7672)
 
insert 0 7673 A
>> Inserting city A (0,7673)
 
insert 0 7674 A
>> Inserting city A (0,7674)
 
insert 0 7675 A
>> Inserting city A (0,7675)
 
insert 0 7676 A
>> Inserting city A (0,7676)
 
insert 0 7677 A
>> Inserting city A (0,7677)
 
insert 0 7678 A
>> Inserting city A (0,7678)
 
insert 0 7679 A
>> Inserting city A (0,7679)
 
insert 0 7680 A
>> Inserting city A (0,7680)
 
insert 0 7681 A
>> Inserting city A (0,7681)
 
insert 0 7682 A
>> Inserting city A (0,7682)
 
insert 0 7683 A
>> Inserting city A (0,7683)
 
insert 0 7684 A
>> Inserting city A (0,7684)
 
insert 0 7685 A
>> Inserting city A (0,7685)
 
insert 0 7686 A
>> Inserting city A (0,7686)
 
insert 0 7687 A
>> Inserting city A (0,7687)
 
insert 0 7688 A
>> Inserting city A (0,7688)
 
insert 0 7689 A
>> Inserting city A (0,7689)
 
insert 0 7690 A
>> Inserting city A (0,7690)
 
insert 0 7691 A
>> Inserting city A (0,7691)
 
insert 0 7692 A
>> Inserting city A (0,7692)
 
insert 0 7693 A
>> Inserting city A (0,7693)
 
insert 0 7694 A
>> Inserting city A (0,7694)
 
insert 0 7695 A
>> Inserting city A (0,7695)
 
insert 0 7696 A
>> Inserting city A (0,7696)
 
insert 0 7697 A
>> Inserting city A (0,7697)
 
insert 0 7698 A
>> Inserting city A (0,7698)
 
insert 0 7699 A
>> Inserting city A (0,7699)
 
insert 0 7700 A
>> Inserting city A (0,7700)
 
insert 0 7701 A
>> Inserting city A (0,7701)
 
insert 0 7702 A
>> Inserting city A (0,7702)
 
insert 0 7703 A
>> Inserting city A (0,7703)
 
insert 0 7704 A
>> Inserting city A (0,7704)
 
insert 0 7705 A
>> Inserting city A (0,7705)
 
insert 0 7706 A
>> Inserting city A (0,7706)
 
insert 0 7707 A
>> Inserting city A (0,7707)
 
insert 0 7708 A
>> Inserting city A (0,7708)
 
insert 0 7709 A
>> Inserting city A (0,7709)
 
insert 0 7710 A
>> Inserting city A (0,7710)
 
insert 0 7711 A
>> Inserting city A (0,7711)
 
insert 0 7712 A
>> Inserting city A (0,7712)
 
insert 0 7713 A
>> Inserting city A (0,7713)
 
insert 0 7714 A
>> Inserting city A (0,7714)
 
insert 0 7715 A
>> Inserting city A (0,7715)
 
insert 0 7716 A
>> Inserting city A (0,7716)
 
insert 0 7717 A
>> Inserting city A (0,7717)
 
insert 0 7718 A
>> Inserting city A (0,7718)
 
insert 0 7719 A
>> Inserting city A (0,7719)
 
insert 0 7720 A
>> Inserting city A (0,7720)
 
insert 0 7721 A
>> Inserting city A (0,7721)
 
insert 0 7722 A
>> Inserting city A (0,7722)
 
insert 0 7723 A
>> Inserting city A (0,7723)
 
insert 0 7724 A
>> Inserting city A (0,7724)
 
insert 0 7725 A
>> Inserting city A (0,7725)
 
insert 0 7726 A
>> Inserting city A (0,7726)
 
insert 0 7727 A
>> Inserting city A (0,7727)
 
insert 0 7728 A
>> Inserting city A (0,7728)
 
insert 0 7729 A
>> Inserting city A (0,7729)
 
insert 0 7730 A
>> Inserting city A (0,7730)
 
insert 0 7731 A
>> Inserting city A (0,7731)
 
insert 0 7732 A
>> Inserting city A (0,7732)
 
insert 0 7733 A
>> Inserting city A (0,7733)
 
insert 0 7734 A
>> Inserting city A (0,7734)
 
insert 0 7735 A
>> Inserting city A (0,7735)
 
insert 0 7736 A
>> Inserting city A (0,7736)
 
insert 0 7737 A
>> Inserting city A (0,7737)
 
insert 0 7738 A
>> Inserting city A (0,7738)
 
insert 0 7739 A
>> Inserting city A (0,7739)
 
insert 0 7740 A
>> Inserting city A (0,7740)
 
insert 0 7741 A
>> Inserting city A (0,7741)
 
insert 0 7742 A
>> Inserting city A (0,7742)
 
insert 0 7743 A
>> Inserting city A (0,7743)
 
insert 0 7744 A
>> Inserting city A (0,7744)
 
insert 0 7745 A
>> Inserting city A (0,7745)
 
insert 0 7746 A
>> Inserting city A (0,7746)
 
insert 0 7747 A
>> Inserting city A (0,7747)
 
insert 0 7748 A
>> Inserting city A (0,7748)
 
insert 0 7749 A
>> Inserting city A (0,7749)
 
insert 0 7750 A
>> Inserting city A (0,7750)
 
insert 0 7751 A
>> Inserting city A (0,7751)
 
insert 0 7752 A
>> Inserting city A (0,7752)
 
insert 0 7753 A
>> Inserting city A (0,7753)
 
insert 0 7754 A
>> Inserting city A (0,7754)
 
insert 0 7755 A
>> Inserting city A (0,7755)
 
insert 0 7756 A
>> Inserting city A (0,7756)
 
insert 0 7757 A
>> Inserting city A (0,7757)
 
insert 0 7758 A
>> Inserting city A (0,7758)
 
insert 0 7759 A
>> Inserting city A (0,7759)
 
insert 0 7760 A
>> Inserting city A (0,7760)
 
insert 0 7761 A
>> Inserting city A (0,7761)
 
insert 0 7762 A
>> Inserting city A (0,7762)
 
insert 0 7763 A
>> Inserting city A (0,7763)
 
insert 0 7764 A
>> Inserting city A (0,7764)
 
insert 0 7765 A
>> Inserting city A (0,7765)
 
insert 0 7766 A
>> Inserting city A (0,7766)
 
insert 0 7767 A
>> Inserting city A (0,7767)
 
insert 0 7768 A
>> Inserting city A (0,7768)
 
insert 0 7769 A
>> Inserting city A (0,7769)
 
insert 0 7770 A
>> Inserting city A (0,7770)
 
insert 0 7771 A
>> Inserting city A (0,7771)
 
insert 0 7772 A
>> Inserting city A (0,7772)
 
insert 0 7773 A
>> Inserting city A (0,7773)
 
insert 0 7774 A
>> Inserting city A (0,7774)
 
insert 0 7775 A
>> Inserting city A (0,7775)
 
insert 0 7776 A
>> Inserting city A (0,7776)
 
insert 0 7777 A
>> Inserting city A (0,7777)
 
insert 0 7778 A
>> Inserting city A (0,7778)
 
insert 0 7779 A
>> Inserting city A (0,7779)
 
insert 0 7780 A
>> Inserting city A (0,7780)
 
insert 0 7781 A
>> Inserting city A (0,7781)
 
insert 0 7782 A
>> Inserting city A (0,7782)
 
insert 0 7783 A
>> Inserting city A (0,7783)
 
insert 0 7784 A
>> Inserting city A (0,7784)
 
insert 0 7785 A
>> Inserting city A (0,7785)
 
insert 0 7786 A
>> Inserting city A (0,7786)
 
insert 0 7787 A
>> Inserting city A (0,7787)
 
insert 0 7788 A
>> Inserting city A (0,7788)
 
insert 0 7789 A
>> Inserting city A (0,7789)
 
insert 0 7790 A
>> Inserting city A (0,7790)
 
insert 0 7791 A
>> Inserting city A (0,7791)
 
insert 0 7792 A
>> Inserting city A (0,7792)
 
insert 0 7793 A
>> Inserting city A (0,7793)
 
insert 0 7794 A
>> Inserting city A (0,7794)
 
insert 0 7795 A
>> Inserting city A (0,7795)
 
insert 0 7796 A
>> Inserting city A (0,7796)
 
insert 0 7797 A
>> Inserting city A (0,7797)
 
insert 0 7798 A
>> Inserting city A (0,7798)
 
insert 0 7799 A
>> Inserting city A (0,7799)
 
insert 0 7800 A
>> Inserting city A (0,7800)
 
insert 0 7801 A
>> Inserting city A (0,7801)
 
insert 0 7802 A
>> Inserting city A (0,7802)
 
insert 0 7803 A
>> Inserting city A (0,7803)
 
insert 0 7804 A
>> Inserting city A (0,7804)
 
insert 0 7805 A
>> Inserting city A (0,7805)
 
insert 0 7806 A
>> Inserting city A (0,7806)
 
insert 0 7807 A
>> Inserting city A (0,7807)
 
insert 0 7808 A
>> Inserting city A (0,7808)
 
insert 0 7809 A
>> Inserting city A (0,7809)
 
insert 0 7810 A
>> Inserting city A (0,7810)
 
insert 0 7811 A
>> Inserting city A (0,7811)
 
insert 0 7812 A
>> Inserting city A (0,7812)
 
insert 0 7813 A
>> Inserting city A (0,7813)
 
insert 0 7814 A
>> Inserting city A (0,7814)
 
insert 0 7815 A
>> Inserting city A (0,7815)
 
insert 0 7816 A
>> Inserting city A (0,7816)
 
insert 0 7817 A
>> Inserting city A (0,7817)
 
insert 0 7818 A
>> Inserting city A (0,7818)
 
insert 0 7819 A
>> Inserting city A (0,7819)
 
insert 0 7820 A
>> Inserting city A (0,7820)
 
insert 0 7821 A
>> Inserting city A (0,7821)
 
insert 0 7822 A
>> Inserting city A (0,7822)
 
insert 0 7823 A
>> Inserting city A (0,7823)
 
insert 0 7824 A
>> Inserting city A (0,7824)
 
insert 0 7825 A
>> Inserting city A (0,7825)
 
insert 0 7826 A
>> Inserting city A (0,7826)
 
insert 0 7827 A
>> Inserting city A (0,7827)
 
insert 0 7828 A
>> Inserting city A (0,7828)
 
insert 0 7829 A
>> Inserting city A (0,7829)
 
insert 0 7830 A
>> Inserting city A (0,7830)
 
insert 0 7831 A
>> Inserting city A (0,7831)
 
insert 0 7832 A
>> Inserting city A (0,7832)
 
insert 0 7833 A
>> Inserting city A (0,7833)
 
insert 0 7834 A
>> Inserting city A (0,7834)
 
insert 0 7835 A
>> Inserting city A (0,7835)
 
insert 0 7836 A
>> Inserting city A (0,7836)
 
insert 0 7837 A
>> Inserting city A (0,7837)
 
insert 0 7838 A
>> Inserting city A (0,7838)
 
insert 0 7839 A
>> Inserting city A (0,7839)
 
insert 0 7840 A
>> Inserting city A (0,7840)
 
insert 0 7841 A
>> Inserting city A (0,7841)
 
insert 0 7842 A
>> Inserting city A (0,7842)
 
insert 0 7843 A
>> Inserting city A (0,7843)
 
insert 0 7844 A
>> Inserting city A (0,7844)
 
insert 0 7845 A
>> Inserting city A (0,7845)
 
insert 0 7846 A
>> Inserting city A (0,7846)
 
insert 0 7847 A
>> Inserting city A (0,7847)
 
insert 0 7848 A
>> Inserting city A (0,7848)
 
insert 0 7849 A
>> Inserting city A (0,7849)
 
insert 0 7850 A
>> Inserting city A (0,7850)
 
insert 0 7851 A
>> Inserting city A (0,7851)
 
insert 0 7852 A
>> Inserting city A (0,7852)
 
insert 0 7853 A
>> Inserting city A (0,7853)
 
insert 0 7854 A
>> Inserting city A (0,7854)
 
insert 0 7855 A
>> Inserting city A (0,7855)
 
insert 0 7856 A
>> Inserting city A (0,7856)
 
insert 0 7857 A
>> Inserting city A (0,7857)
 
insert 0 7858 A
>> Inserting city A (0,7858)
 
insert 0 7859 A
>> Inserting city A (0,7859)
 
insert 0 7860 A
>> Inserting city A (0,7860)
 
insert 0 7861 A
>> Inserting city A (0,7861)
 
insert 0 7862 A
>> Inserting city A (0,7862)
 
insert 0 7863 A
>> Inserting city A (0,7863)
 
insert 0 7864 A
>> Inserting city A (0,7864)
 
insert 0 7865 A
>> Inserting city A (0,7865)
 
insert 0 7866 A
>> Inserting city A (0,7866)
 
insert 0 7867 A
>> Inserting city A (0,7867)
 
insert 0 7868 A
>> Inserting city A (0,7868)
 
insert 0 7869 A
>> Inserting city A (0,7869)
 
insert 0 7870 A
>> Inserting city A (0,7870)
 
insert 0 7871 A
>> Inserting city A (0,7871)
 
insert 0 7872 A
>> Inserting city A (0,7872)
 
insert 0 7873 A
>> Inserting city A (0,7873)
 
insert 0 7874 A
>> Inserting city A (0,7874)
 
insert 0 7875 A
>> Inserting city A (0,7875)
 
insert 0 7876 A
>> Inserting city A (0,7876)
 
insert 0 7877 A
>> Inserting city A (0,7877)
 
insert 0 7878 A
>> Inserting city A (0,7878)
 
insert 0 7879 A
>> Inserting city A (0,7879)
 
insert 0 7880 A
>> Inserting city A (0,7880)
 
insert 0 7881 A
>> Inserting city A (0,7881)
 
insert 0 7882 A
>> Inserting city A (0,7882)
 
insert 0 7883 A
>> Inserting city A (0,7883)
 
insert 0 7884 A
>> Inserting city A (0,7884)
 
insert 0 7885 A
>> Inserting city A (0,7885)
 
insert 0 7886 A
>> Inserting city A (0,7886)
 
insert 0 7887 A
>> Inserting city A (0,7887)
 
insert 0 7888 A
>> Inserting city A (0,7888)
 
insert 0 7889 A
>> Inserting city A (0,7889)
 
insert 0 7890 A
>> Inserting city A (0,7890)
 
insert 0 7891 A
>> Inserting city A (0,7891)
 
insert 0 7892 A
>> Inserting city A (0,7892)
 
insert 0 7893 A
>> Inserting city A (0,7893)
 
insert 0 7894 A
>> Inserting city A (0,7894)
 
insert 0 7895 A
>> Inserting city A (0,7895)
 
insert 0 7896 A
>> Inserting city A (0,7896)
 
insert 0 7897 A
>> Inserting city A (0,7897)
 
insert 0 7898 A
>> Inserting city A (0,7898)
 
insert 0 7899 A
>> Inserting city A (0,7899)
 
insert 0 7900 A
>> Inserting city A (0,7900)
 
insert 0 7901 A
>> Inserting city A (0,7901)
 
insert 0 7902 A
>> Inserting city A (0,7902)
 
insert 0 7903 A
>> Inserting city A (0,7903)
 
insert 0 7904 A
>> Inserting city A (0,7904)
 
insert 0 7905 A
>> Inserting city A (0,7905)
 
insert 0 7906 A
>> Inserting city A (0,7906)
 
insert 0 7907 A
>> Inserting city A (0,7907)
 
insert 0 7908 A
>> Inserting city A (0,7908)
 
insert 0 7909 A
>> Inserting city A (0,7909)
 
insert 0 7910 A
>> Inserting city A (0,7910)
 
insert 0 7911 A
>> Inserting city A (0,7911)
 
insert 0 7912 A
>> Inserting city A (0,7912)
 
insert 0 7913 A
>> Inserting city A (0,7913)
 
insert 0 7914 A
>> Inserting city A (0,7914)
 
insert 0 7915 A
>> Inserting city A (0,7915)
 
insert 0 7916 A
>> Inserting city A (0,7916)
 
insert 0 7917 A
>> Inserting city A (0,7917)
 
insert 0 7918 A
>> Inserting city A (0,7918)
 
insert 0 7919 A
>> Inserting city A (0,7919)
 
insert 0 7920 A
>> Inserting city A (0,7920)
 
insert 0 7921 A
>> Inserting city A (0,7921)
 
insert 0 7922 A
>> Inserting city A (0,7922)
 
insert 0 7923 A
>> Inserting city A (0,7923)
 
insert 0 7924 A
>> Inserting city A (0,7924)
 
insert 0 7925 A
>> Inserting city A (0,7925)
 
insert 0 7926 A
>> Inserting city A (0,7926)
 
insert 0 7927 A
>> Inserting city A (0,7927)
 
insert 0 7928 A
>> Inserting city A (0,7928)
 
insert 0 7929 A
>> Inserting city A (0,7929)
 
insert 0 7930 A
>> Inserting city A (0,7930)
 
insert 0 7931 A
>> Inserting city A (0,7931)
 
insert 0 7932 A
>> Inserting city A (0,7932)
 
insert 0 7933 A
>> Inserting city A (0,7933)
 
insert 0 7934 A
>> Inserting city A (0,7934)
 
insert 0 7935 A
>> Inserting city A (0,7935)
 
insert 0 7936 A
>> Inserting city A (0,7936)
 
insert 0 7937 A
>> Inserting city A (0,7937)
 
insert 0 7938 A
>> Inserting city A (0,7938)
 
insert 0 7939 A
>> Inserting city A (0,7939)
 
insert 0 7940 A
>> Inserting city A (0,7940)
 
insert 0 7941 A
>> Inserting city A (0,7941)
 
insert 0 7942 A
>> Inserting city A (0,7942)
 
insert 0 7943 A
>> Inserting city A (0,7943)
 
insert 0 7944 A
>> Inserting city A (0,7944)
 
insert 0 7945 A
>> Inserting city A (0,7945)
 
insert 0 7946 A
>> Inserting city A (0,7946)
 
insert 0 7947 A
>> Inserting city A (0,7947)
 
insert 0 7948 A
>> Inserting city A (0,7948)
 
insert 0 7949 A
>> Inserting city A (0,7949)
 
insert 0 7950 A
>> Inserting city A (0,7950)
 
insert 0 7951 A
>> Inserting city A (0,7951)
 
insert 0 7952 A
>> Inserting city A (0,7952)
 
insert 0 7953 A
>> Inserting city A (0,7953)
 
insert 0 7954 A
>> Inserting city A (0,7954)
 
insert 0 7955 A
>> Inserting city A (0,7955)
 
insert 0 7956 A
>> Inserting city A (0,7956)
 
insert 0 7957 A
>> Inserting city A (0,7957)
 
insert 0 7958 A
>> Inserting city A (0,7958)
 
insert 0 7959 A
>> Inserting city A (0,7959)
 
insert 0 7960 A
>> Inserting city A (0,7960)
 
insert 0 7961 A
>> Inserting city A (0,7961)
 
insert 0 7962 A
>> Inserting city A (0,7962)
 
insert 0 7963 A
>> Inserting city A (0,7963)
 
insert 0 7964 A
>> Inserting city A (0,7964)
 
insert 0 7965 A
>> Inserting city A (0,7965)
 
insert 0 7966 A
>> Inserting city A (0,7966)
 
insert 0 7967 A
>> Inserting city A (0,7967)
 
insert 0 7968 A
>> Inserting city A (0,7968)
 
insert 0 7969 A
>> Inserting city A (0,7969)
 
insert 0 7970 A
>> Inserting city A (0,7970)
 
insert 0 7971 A
>> Inserting city A (0,7971)
 
insert 0 7972 A
>> Inserting city A (0,7972)
 
insert 0 7973 A
>> Inserting city A (0,7973)
 
insert 0 7974 A
>> Inserting city A (0,7974)
 
insert 0 7975 A
>> Inserting city A (0,7975)
 
insert 0 7976 A
>> Inserting city A (0,7976)
 
insert 0 7977 A
>> Inserting city A (0,7977)
 
insert 0 7978 A
>> Inserting city A (0,7978)
 
insert 0 7979 A
>> Inserting city A (0,7979)
 
insert 0 7980 A
>> Inserting city A (0,7980)
 
insert 0 7981 A
>> Inserting city A (0,7981)
 
insert 0 7982 A
>> Inserting city A (0,7982)
 
insert 0 7983 A
>> Inserting city A (0,7983)
 
insert 0 7984 A
>> Inserting city A (0,7984)
 
insert 0 7985 A
>> Inserting city A (0,7985)
 
insert 0 7986 A
>> Inserting city A (0,7986)
 
insert 0 7987 A
>> Inserting city A (0,7987)
 
insert 0 7988 A
>> Inserting city A (0,7988)
 
insert 0 7989 A
>> Inserting city A (0,7989)
 
insert 0 7990 A
>> Inserting city A (0,7990)
 
insert 0 7991 A
>> Inserting city A (0,7991)
 
insert 0 7992 A
>> Inserting city A (0,7992)
 
insert 0 7993 A
>> Inserting city A (0,7993)
 
insert 0 7994 A
>> Inserting city A (0,7994)
 
insert 0 7995 A
>> Inserting city A (0,7995)
 
insert 0 7996 A
>> Inserting city A (0,7996)
 
insert 0 7997 A
>> Inserting city A (0,7997)
 
insert 0 7998 A
>> Inserting city A (0,7998)
 
insert 0 7999 A
>> Inserting city A (0,7999)
 
insert 0 8000 A
>> Inserting city A (0,8000)
 
insert 0 8001 A
>> Inserting city A (0,8001)
 
insert 0 8002 A
>> Inserting city A (0,8002)
 
insert 0 8003 A
>> Inserting city A (0,8003)
 
insert 0 8004 A
>> Inserting city A (0,8004)
 
insert 0 8005 A
>> Inserting city A (0,8005)
 
insert 0 8006 A
>> Inserting city A (0,8006)
 
insert 0 8007 A
>> Inserting city A (0,8007)
 
insert 0 8008 A
>> Inserting city A (0,8008)
 
insert 0 8009 A
>> Inserting city A (0,8009)
 
insert 0 8010 A
>> Inserting city A (0,8010)
 
insert 0 8011 A
>> Inserting city A (0,8011)
 
insert 0 8012 A
>> Inserting city A (0,8012)
 
insert 0 8013 A
>> Inserting city A (0,8013)
 
insert 0 8014 A
>> Inserting city A (0,8014)
 
insert 0 8015 A
>> Inserting city A (0,8015)
 
insert 0 8016 A
>> Inserting city A (0,8016)
 
insert 0 8017 A
>> Inserting city A (0,8017)
 
insert 0 8018 A
>> Inserting city A (0,8018)
 
insert 0 8019 A
>> Inserting city A (0,8019)
 
insert 0 8020 A
>> Inserting city A (0,8020)
 
insert 0 8021 A
>> Inserting city A (0,8021)
 
insert 0 8022 A
>> Inserting city A (0,8022)
 
insert 0 8023 A
>> Inserting city A (0,8023)
 
insert 0 8024 A
>> Inserting city A (0,8024)
 
insert 0 8025 A
>> Inserting city A (0,8025)
 
insert 0 8026 A
>> Inserting city A (0,8026)
 
insert 0 8027 A
>> Inserting city A (0,8027)
 
insert 0 8028 A
>> Inserting city A (0,8028)
 
insert 0 8029 A
>> Inserting city A (0,8029)
 
insert 0 8030 A
>> Inserting city A (0,8030)
 
insert 0 8031 A
>> Inserting city A (0,8031)
 
insert 0 8032 A
>> Inserting city A (0,8032)
 
insert 0 8033 A
>> Inserting city A (0,8033)
 
insert 0 8034 A
>> Inserting city A (0,8034)
 
insert 0 8035 A
>> Inserting city A (0,8035)
 
insert 0 8036 A
>> Inserting city A (0,8036)
 
insert 0 8037 A
>> Inserting city A (0,8037)
 
insert 0 8038 A
>> Inserting city A (0,8038)
 
insert 0 8039 A
>> Inserting city A (0,8039)
 
insert 0 8040 A
>> Inserting city A (0,8040)
 
insert 0 8041 A
>> Inserting city A (0,8041)
 
insert 0 8042 A
>> Inserting city A (0,8042)
 
insert 0 8043 A
>> Inserting city A (0,8043)
 
insert 0 8044 A
>> Inserting city A (0,8044)
 
insert 0 8045 A
>> Inserting city A (0,8045)
 
insert 0 8046 A
>> Inserting city A (0,8046)
 
insert 0 8047 A
>> Inserting city A (0,8047)
 
insert 0 8048 A
>> Inserting city A (0,8048)
 
insert 0 8049 A
>> Inserting city A (0,8049)
 
insert 0 8050 A
>> Inserting city A (0,8050)
 
insert 0 8051 A
>> Inserting city A (0,8051)
 
insert 0 8052 A
>> Inserting city A (0,8052)
 
insert 0 8053 A
>> Inserting city A (0,8053)
 
insert 0 8054 A
>> Inserting city A (0,8054)
 
insert 0 8055 A
>> Inserting city A (0,8055)
 
insert 0 8056 A
>> Inserting city A (0,8056)
 
insert 0 8057 A
>> Inserting city A (0,8057)
 
insert 0 8058 A
>> Inserting city A (0,8058)
 
insert 0 8059 A
>> Inserting city A (0,8059)
 
insert 0 8060 A
>> Inserting city A (0,8060)
 
insert 0 8061 A
>> Inserting city A (0,8061)
 
insert 0 8062 A
>> Inserting city A (0,8062)
 
insert 0 8063 A
>> Inserting city A (0,8063)
 
insert 0 8064 A
>> Inserting city A (0,8064)
 
insert 0 8065 A
>> Inserting city A (0,8065)
 
insert 0 8066 A
>> Inserting city A (0,8066)
 
insert 0 8067 A
>> Inserting city A (0,8067)
 
insert 0 8068 A
>> Inserting city A (0,8068)
 
insert 0 8069 A
>> Inserting city A (0,8069)
 
insert 0 8070 A
>> Inserting city A (0,8070)
 
insert 0 8071 A
>> Inserting city A (0,8071)
 
insert 0 8072 A
>> Inserting city A (0,8072)
 
insert 0 8073 A
>> Inserting city A (0,8073)
 
insert 0 8074 A
>> Inserting city A (0,8074)
 
insert 0 8075 A
>> Inserting city A (0,8075)
 
insert 0 8076 A
>> Inserting city A (0,8076)
 
insert 0 8077 A
>> Inserting city A (0,8077)
 
insert 0 8078 A
>> Inserting city A (0,8078)
 
insert 0 8079 A
>> Inserting city A (0,8079)
 
insert 0 8080 A
>> Inserting city A (0,8080)
 
insert 0 8081 A
>> Inserting city A (0,8081)
 
insert 0 8082 A
>> Inserting city A (0,8082)
 
insert 0 8083 A
>> Inserting city A (0,8083)
 
insert 0 8084 A
>> Inserting city A (0,8084)
 
insert 0 8085 A
>> Inserting city A (0,8085)
 
insert 0 8086 A
>> Inserting city A (0,8086)
 
insert 0 8087 A
>> Inserting city A (0,8087)
 
insert 0 8088 A
>> Inserting city A (0,8088)
 
insert 0 8089 A
>> Inserting city A (0,8089)
 
insert 0 8090 A
>> Inserting city A (0,8090)
 
insert 0 8091 A
>> Inserting city A (0,8091)
 
insert 0 8092 A
>> Inserting city A (0,8092)
 
insert 0 8093 A
>> Inserting city A (0,8093)
 
insert 0 8094 A
>> Inserting city A (0,8094)
 
insert 0 8095 A
>> Inserting city A (0,8095)
 
insert 0 8096 A
>> Inserting city A (0,8096)
 
insert 0 8097 A
>> Inserting city A (0,8097)
 
insert 0 8098 A
>> Inserting city A (0,8098)
 
insert 0 8099 A
>> Inserting city A (0,8099)
 
insert 0 8100 A
>> Inserting city A (0,8100)
 
insert 0 8101 A
>> Inserting city A (0,8101)
 
insert 0 8102 A
>> Inserting city A (0,8102)
 
insert 0 8103 A
>> Inserting city A (0,8103)
 
insert 0 8104 A
>> Inserting city A (0,8104)
 
insert 0 8105 A
>> Inserting city A (0,8105)
 
insert 0 8106 A
>> Inserting city A (0,8106)
 
insert 0 8107 A
>> Inserting city A (0,8107)
 
insert 0 8108 A
>> Inserting city A (0,8108)
 
insert 0 8109 A
>> Inserting city A (0,8109)
 
insert 0 8110 A
>> Inserting city A (0,8110)
 
insert 0 8111 A
>> Inserting city A (0,8111)
 
insert 0 8112 A
>> Inserting city A (0,8112)
 
insert 0 8113 A
>> Inserting city A (0,8113)
 
insert 0 8114 A
>> Inserting city A (0,8114)
 
insert 0 8115 A
>> Inserting city A (0,8115)
 
insert 0 8116 A
>> Inserting city A (0,8116)
 
insert 0 8117 A
>> Inserting city A (0,8117)
 
insert 0 8118 A
>> Inserting city A (0,8118)
 
insert 0 8119 A
>> Inserting city A (0,8119)
 
insert 0 8120 A
>> Inserting city A (0,8120)
 
insert 0 8121 A
>> Inserting city A (0,8121)
 
insert 0 8122 A
>> Inserting city A (0,8122)
 
insert 0 8123 A
>> Inserting city A (0,8123)
 
insert 0 8124 A
>> Inserting city A (0,8124)
 
insert 0 8125 A
>> Inserting city A (0,8125)
 
insert 0 8126 A
>> Inserting city A (0,8126)
 
insert 0 8127 A
>> Inserting city A (0,8127)
 
insert 0 8128 A
>> Inserting city A (0,8128)
 
insert 0 8129 A
>> Inserting city A (0,8129)
 
insert 0 8130 A
>> Inserting city A (0,8130)
 
insert 0 8131 A
>> Inserting city A (0,8131)
 
insert 0 8132 A
>> Inserting city A (0,8132)
 
insert 0 8133 A
>> Inserting city A (0,8133)
 
insert 0 8134 A
>> Inserting city A (0,8134)
 
insert 0 8135 A
>> Inserting city A (0,8135)
 
insert 0 8136 A
>> Inserting city A (0,8136)
 
insert 0 8137 A
>> Inserting city A (0,8137)
 
insert 0 8138 A
>> Inserting city A (0,8138)
 
insert 0 8139 A
>> Inserting city A (0,8139)
 
insert 0 8140 A
>> Inserting city A (0,8140)
 
insert 0 8141 A
>> Inserting city A (0,8141)
 
insert 0 8142 A
>> Inserting city A (0,8142)
 
insert 0 8143 A
>> Inserting city A (0,8143)
 
insert 0 8144 A
>> Inserting city A (0,8144)
 
insert 0 8145 A
>> Inserting city A (0,8145)
 
insert 0 8146 A
>> Inserting city A (0,8146)
 
insert 0 8147 A
>> Inserting city A (0,8147)
 
insert 0 8148 A
>> Inserting city A (0,8148)
 
insert 0 8149 A
>> Inserting city A (0,8149)
 
insert 0 8150 A
>> Inserting city A (0,8150)
 
insert 0 8151 A
>> Inserting city A (0,8151)
 
insert 0 8152 A
>> Inserting city A (0,8152)
 
insert 0 8153 A
>> Inserting city A (0,8153)
 
insert 0 8154 A
>> Inserting city A (0,8154)
 
insert 0 8155 A
>> Inserting city A (0,8155)
 
insert 0 8156 A
>> Inserting city A (0,8156)
 
insert 0 8157 A
>> Inserting city A (0,8157)
 
insert 0 8158 A
>> Inserting city A (0,8158)
 
insert 0 8159 A
>> Inserting city A (0,8159)
 
insert 0 8160 A
>> Inserting city A (0,8160)
 
insert 0 8161 A
>> Inserting city A (0,8161)
 
insert 0 8162 A
>> Inserting city A (0,8162)
 
insert 0 8163 A
>> Inserting city A (0,8163)
 
insert 0 8164 A
>> Inserting city A (0,8164)
 
insert 0 8165 A
>> Inserting city A (0,8165)
 
insert 0 8166 A
>> Inserting city A (0,8166)
 
insert 0 8167 A
>> Inserting city A (0,8167)
 
insert 0 8168 A
>> Inserting city A (0,8168)
 
insert 0 8169 A
>> Inserting city A (0,8169)
 
insert 0 8170 A
>> Inserting city A (0,8170)
 
insert 0 8171 A
>> Inserting city A (0,8171)
 
insert 0 8172 A
>> Inserting city A (0,8172)
 
insert 0 8173 A
>> Inserting city A (0,8173)
 
insert 0 8174 A
>> Inserting city A (0,8174)
 
insert 0 8175 A
>> Inserting city A (0,8175)
 
insert 0 8176 A
>> Inserting city A (0,8176)
 
insert 0 8177 A
>> Inserting city A (0,8177)
 
insert 0 8178 A
>> Inserting city A (0,8178)
 
insert 0 8179 A
>> Inserting city A (0,8179)
 
insert 0 8180 A
>> Inserting city A (0,8180)
 
insert 0 8181 A
>> Inserting city A (0,8181)
 
insert 0 8182 A
>> Inserting city A (0,8182)
 
insert 0 8183 A
>> Inserting city A (0,8183)
 
insert 0 8184 A
>> Inserting city A (0,8184)
 
insert 0 8185 A
>> Inserting city A (0,8185)
 
insert 0 8186 A
>> Inserting city A (0,8186)
 
insert 0 8187 A
>> Inserting city A (0,8187)
 
insert 0 8188 A
>> Inserting city A (0,8188)
 
insert 0 8189 A
>> Inserting city A (0,8189)
 
insert 0 8190 A
>> Inserting city A (0,8190)
 
insert 0 8191 A
>> Inserting city A (0,8191)
 
insert 0 8192 A
>> Inserting city A (0,8192)
 
insert 0 8193 A
>> Inserting city A (0,8193)
 
insert 0 8194 A
>> Inserting city A (0,8194)
 
insert 0 8195 A
>> Inserting city A (0,8195)
 
insert 0 8196 A
>> Inserting city A (0,8196)
 
insert 0 8197 A
>> Inserting city A (0,8197)
 
insert 0 8198 A
>> Inserting city A (0,8198)
 
insert 0 8199 A
>> Inserting city A (0,8199)
 
insert 0 8200 A
>> Inserting city A (0,8200)
 
insert 0 8201 A
>> Inserting city A (0,8201)
 
insert 0 8202 A
>> Inserting city A (0,8202)
 
insert 0 8203 A
>> Inserting city A (0,8203)
 
insert 0 8204 A
>> Inserting city A (0,8204)
 
insert 0 8205 A
>> Inserting city A (0,8205)
 
insert 0 8206 A
>> Inserting city A (0,8206)
 
insert 0 8207 A
>> Inserting city A (0,8207)
 
insert 0 8208 A
>> Inserting city A (0,8208)
 
insert 0 8209 A
>> Inserting city A (0,8209)
 
insert 0 8210 A
>> Inserting city A (0,8210)
 
insert 0 8211 A
>> Inserting city A (0,8211)
 
insert 0 8212 A
>> Inserting city A (0,8212)
 
insert 0 8213 A
>> Inserting city A (0,8213)
 
insert 0 8214 A
>> Inserting city A (0,8214)
 
insert 0 8215 A
>> Inserting city A (0,8215)
 
insert 0 8216 A
>> Inserting city A (0,8216)
 
insert 0 8217 A
>> Inserting city A (0,8217)
 
insert 0 8218 A
>> Inserting city A (0,8218)
 
insert 0 8219 A
>> Inserting city A (0,8219)
 
insert 0 8220 A
>> Inserting city A (0,8220)
 
insert 0 8221 A
>> Inserting city A (0,8221)
 
insert 0 8222 A
>> Inserting city A (0,8222)
 
insert 0 8223 A
>> Inserting city A (0,8223)
 
insert 0 8224 A
>> Inserting city A (0,8224)
 
insert 0 8225 A
>> Inserting city A (0,8225)
 
insert 0 8226 A
>> Inserting city A (0,8226)
 
insert 0 8227 A
>> Inserting city A (0,8227)
 
insert 0 8228 A
>> Inserting city A (0,8228)
 
insert 0 8229 A
>> Inserting city A (0,8229)
 
insert 0 8230 A
>> Inserting city A (0,8230)
 
insert 0 8231 A
>> Inserting city A (0,8231)
 
insert 0 8232 A
>> Inserting city A (0,8232)
 
insert 0 8233 A
>> Inserting city A (0,8233)
 
insert 0 8234 A
>> Inserting city A (0,8234)
 
insert 0 8235 A
>> Inserting city A (0,8235)
 
insert 0 8236 A
>> Inserting city A (0,8236)
 
insert 0 8237 A
>> Inserting city A (0,8237)
 
insert 0 8238 A
>> Inserting city A (0,8238)
 
insert 0 8239 A
>> Inserting city A (0,8239)
 
insert 0 8240 A
>> Inserting city A (0,8240)
 
insert 0 8241 A
>> Inserting city A (0,8241)
 
insert 0 8242 A
>> Inserting city A (0,8242)
 
insert 0 8243 A
>> Inserting city A (0,8243)
 
insert 0 8244 A
>> Inserting city A (0,8244)
 
insert 0 8245 A
>> Inserting city A (0,8245)
 
insert 0 8246 A
>> Inserting city A (0,8246)
 
insert 0 8247 A
>> Inserting city A (0,8247)
 
insert 0 8248 A
>> Inserting city A (0,8248)
 
insert 0 8249 A
>> Inserting city A (0,8249)
 
insert 0 8250 A
>> Inserting city A (0,8250)
 
insert 0 8251 A
>> Inserting city A (0,8251)
 
insert 0 8252 A
>> Inserting city A (0,8252)
 
insert 0 8253 A
>> Inserting city A (0,8253)
 
insert 0 8254 A
>> Inserting city A (0,8254)
 
insert 0 8255 A
>> Inserting city A (0,8255)
 
insert 0 8256 A
>> Inserting city A (0,8256)
 
insert 0 8257 A
>> Inserting city A (0,8257)
 
insert 0 8258 A
>> Inserting city A (0,8258)
 
insert 0 8259 A
>> Inserting city A (0,8259)
 
insert 0 8260 A
>> Inserting city A (0,8260)
 
insert 0 8261 A
>> Inserting city A (0,8261)
 
insert 0 8262 A
>> Inserting city A (0,8262)
 
insert 0 8263 A
>> Inserting city A (0,8263)
 
insert 0 8264 A
>> Inserting city A (0,8264)
 
insert 0 8265 A
>> Inserting city A (0,8265)
 
insert 0 8266 A
>> Inserting city A (0,8266)
 
insert 0 8267 A
>> Inserting city A (0,8267)
 
insert 0 8268 A
>> Inserting city A (0,8268)
 
insert 0 8269 A
>> Inserting city A (0,8269)
 
insert 0 8270 A
>> Inserting city A (0,8270)
 
insert 0 8271 A
>> Inserting city A (0,8271)
 
insert 0 8272 A
>> Inserting city A (0,8272)
 
insert 0 8273 A
>> Inserting city A (0,8273)
 
insert 0 8274 A
>> Inserting city A (0,8274)
 
insert 0 8275 A
>> Inserting city A (0,8275)
 
insert 0 8276 A
>> Inserting city A (0,8276)
 
insert 0 8277 A
>> Inserting city A (0,8277)
 
insert 0 8278 A
>> Inserting city A (0,8278)
 
insert 0 8279 A
>> Inserting city A (0,8279)
 
insert 0 8280 A
>> Inserting city A (0,8280)
 
insert 0 8281 A
>> Inserting city A (0,8281)
 
insert 0 8282 A
>> Inserting city A (0,8282)
 
insert 0 8283 A
>> Inserting city A (0,8283)
 
insert 0 8284 A
>> Inserting city A (0,8284)
 
insert 0 8285 A
>> Inserting city A (0,8285)
 
insert 0 8286 A
>> Inserting city A (0,8286)
 
insert 0 8287 A
>> Inserting city A (0,8287)
 
insert 0 8288 A
>> Inserting city A (0,8288)
 
insert 0 8289 A
>> Inserting city A (0,8289)
 
insert 0 8290 A
>> Inserting city A (0,8290)
 
insert 0 8291 A
>> Inserting city A (0,8291)
 
insert 0 8292 A
>> Inserting city A (0,8292)
 
insert 0 8293 A
>> Inserting city A (0,8293)
 
insert 0 8294 A
>> Inserting city A (0,8294)
 
insert 0 8295 A
>> Inserting city A (0,8295)
 
insert 0 8296 A
>> Inserting city A (0,8296)
 
insert 0 8297 A
>> Inserting city A (0,8297)
 
insert 0 8298 A
>> Inserting city A (0,8298)
 
insert 0 8299 A
>> Inserting city A (0,8299)
 
insert 0 8300 A
>> Inserting city A (0,8300)
 
insert 0 8301 A
>> Inserting city A (0,8301)
 
insert 0 8302 A
>> Inserting city A (0,8302)
 
insert 0 8303 A
>> Inserting city A (0,8303)
 
insert 0 8304 A
>> Inserting city A (0,8304)
 
insert 0 8305 A
>> Inserting city A (0,8305)
 
insert 0 8306 A
>> Inserting city A (0,8306)
 
insert 0 8307 A
>> Inserting city A (0,8307)
 
insert 0 8308 A
>> Inserting city A (0,8308)
 
insert 0 8309 A
>> Inserting city A (0,8309)
 
insert 0 8310 A
>> Inserting city A (0,8310)
 
insert 0 8311 A
>> Inserting city A (0,8311)
 
insert 0 8312 A
>> Inserting city A (0,8312)
 
insert 0 8313 A
>> Inserting city A (0,8313)
 
insert 0 8314 A
>> Inserting city A (0,8314)
 
insert 0 8315 A
>> Inserting city A (0,8315)
 
insert 0 8316 A
>> Inserting city A (0,8316)
 
insert 0 8317 A
>> Inserting city A (0,8317)
 
insert 0 8318 A
>> Inserting city A (0,8318)
 
insert 0 8319 A
>> Inserting city A (0,8319)
 
insert 0 8320 A
>> Inserting city A (0,8320)
 
insert 0 8321 A
>> Inserting city A (0,8321)
 
insert 0 8322 A
>> Inserting city A (0,8322)
 
insert 0 8323 A
>> Inserting city A (0,8323)
 
insert 0 8324 A
>> Inserting city A (0,8324)
 
insert 0 8325 A
>> Inserting city A (0,8325)
 
insert 0 8326 A
>> Inserting city A (0,8326)
 
insert 0 8327 A
>> Inserting city A (0,8327)
 
insert 0 8328 A
>> Inserting city A (0,8328)
 
insert 0 8329 A
>> Inserting city A (0,8329)
 
insert 0 8330 A
>> Inserting city A (0,8330)
 
insert 0 8331 A
>> Inserting city A (0,8331)
 
insert 0 8332 A
>> Inserting city A (0,8332)
 
insert 0 8333 A
>> Inserting city A (0,8333)
 
insert 0 8334 A
>> Inserting city A (0,8334)
 
insert 0 8335 A
>> Inserting city A (0,8335)
 
insert 0 8336 A
>> Inserting city A (0,8336)
 
insert 0 8337 A
>> Inserting city A (0,8337)
 
insert 0 8338 A
>> Inserting city A (0,8338)
 
insert 0 8339 A
>> Inserting city A (0,8339)
 
insert 0 8340 A
>> Inserting city A (0,8340)
 
insert 0 8341 A
>> Inserting city A (0,8341)
 
insert 0 8342 A
>> Inserting city A (0,8342)
 
insert 0 8343 A
>> Inserting city A (0,8343)
 
insert 0 8344 A
>> Inserting city A (0,8344)
 
insert 0 8345 A
>> Inserting city A (0,8345)
 
insert 0 8346 A
>> Inserting city A (0,8346)
 
insert 0 8347 A
>> Inserting city A (0,8347)
 
insert 0 8348 A
>> Inserting city A (0,8348)
 
insert 0 8349 A
>> Inserting city A (0,8349)
 
insert 0 8350 A
>> Inserting city A (0,8350)
 
insert 0 8351 A
>> Inserting city A (0,8351)
 
insert 0 8352 A
>> Inserting city A (0,8352)
 
insert 0 8353 A
>> Inserting city A (0,8353)
 
insert 0 8354 A
>> Inserting city A (0,8354)
 
insert 0 8355 A
>> Inserting city A (0,8355)
 
insert 0 8356 A
>> Inserting city A (0,8356)
 
insert 0 8357 A
>> Inserting city A (0,8357)
 
insert 0 8358 A
>> Inserting city A (0,8358)
 
insert 0 8359 A
>> Inserting city A (0,8359)
 
insert 0 8360 A
>> Inserting city A (0,8360)
 
insert 0 8361 A
>> Inserting city A (0,8361)
 
insert 0 8362 A
>> Inserting city A (0,8362)
 
insert 0 8363 A
>> Inserting city A (0,8363)
 
insert 0 8364 A
>> Inserting city A (0,8364)
 
insert 0 8365 A
>> Inserting city A (0,8365)
 
insert 0 8366 A
>> Inserting city A (0,8366)
 
insert 0 8367 A
>> Inserting city A (0,8367)
 
insert 0 8368 A
>> Inserting city A (0,8368)
 
insert 0 8369 A
>> Inserting city A (0,8369)
 
insert 0 8370 A
>> Inserting city A (0,8370)
 
insert 0 8371 A
>> Inserting city A (0,8371)
 
insert 0 8372 A
>> Inserting city A (0,8372)
 
insert 0 8373 A
>> Inserting city A (0,8373)
 
insert 0 8374 A
>> Inserting city A (0,8374)
 
insert 0 8375 A
>> Inserting city A (0,8375)
 
insert 0 8376 A
>> Inserting city A (0,8376)
 
insert 0 8377 A
>> Inserting city A (0,8377)
 
insert 0 8378 A
>> Inserting city A (0,8378)
 
insert 0 8379 A
>> Inserting city A (0,8379)
 
insert 0 8380 A
>> Inserting city A (0,8380)
 
insert 0 8381 A
>> Inserting city A (0,8381)
 
insert 0 8382 A
>> Inserting city A (0,8382)
 
insert 0 8383 A
>> Inserting city A (0,8383)
 
insert 0 8384 A
>> Inserting city A (0,8384)
 
insert 0 8385 A
>> Inserting city A (0,8385)
 
insert 0 8386 A
>> Inserting city A (0,8386)
 
insert 0 8387 A
>> Inserting city A (0,8387)
 
insert 0 8388 A
>> Inserting city A (0,8388)
 
insert 0 8389 A
>> Inserting city A (0,8389)
 
insert 0 8390 A
>> Inserting city A (0,8390)
 
insert 0 8391 A
>> Inserting city A (0,8391)
 
insert 0 8392 A
>> Inserting city A (0,8392)
 
insert 0 8393 A
>> Inserting city A (0,8393)
 
insert 0 8394 A
>> Inserting city A (0,8394)
 
insert 0 8395 A
>> Inserting city A (0,8395)
 
insert 0 8396 A
>> Inserting city A (0,8396)
 
insert 0 8397 A
>> Inserting city A (0,8397)
 
insert 0 8398 A
>> Inserting city A (0,8398)
 
insert 0 8399 A
>> Inserting city A (0,8399)
 
insert 0 8400 A
>> Inserting city A (0,8400)
 
insert 0 8401 A
>> Inserting city A (0,8401)
 
insert 0 8402 A
>> Inserting city A (0,8402)
 
insert 0 8403 A
>> Inserting city A (0,8403)
 
insert 0 8404 A
>> Inserting city A (0,8404)
 
insert 0 8405 A
>> Inserting city A (0,8405)
 
insert 0 8406 A
>> Inserting city A (0,8406)
 
insert 0 8407 A
>> Inserting city A (0,8407)
 
insert 0 8408 A
>> Inserting city A (0,8408)
 
insert 0 8409 A
>> Inserting city A (0,8409)
 
insert 0 8410 A
>> Inserting city A (0,8410)
 
insert 0 8411 A
>> Inserting city A (0,8411)
 
insert 0 8412 A
>> Inserting city A (0,8412)
 
insert 0 8413 A
>> Inserting city A (0,8413)
 
insert 0 8414 A
>> Inserting city A (0,8414)
 
insert 0 8415 A
>> Inserting city A (0,8415)
 
insert 0 8416 A
>> Inserting city A (0,8416)
 
insert 0 8417 A
>> Inserting city A (0,8417)
 
insert 0 8418 A
>> Inserting city A (0,8418)
 
insert 0 8419 A
>> Inserting city A (0,8419)
 
insert 0 8420 A
>> Inserting city A (0,8420)
 
insert 0 8421 A
>> Inserting city A (0,8421)
 
insert 0 8422 A
>> Inserting city A (0,8422)
 
insert 0 8423 A
>> Inserting city A (0,8423)
 
insert 0 8424 A
>> Inserting city A (0,8424)
 
insert 0 8425 A
>> Inserting city A (0,8425)
 
insert 0 8426 A
>> Inserting city A (0,8426)
 
insert 0 8427 A
>> Inserting city A (0,8427)
 
insert 0 8428 A
>> Inserting city A (0,8428)
 
insert 0 8429 A
>> Inserting city A (0,8429)
 
insert 0 8430 A
>> Inserting city A (0,8430)
 
insert 0 8431 A
>> Inserting city A (0,8431)
 
insert 0 8432 A
>> Inserting city A (0,8432)
 
insert 0 8433 A
>> Inserting city A (0,8433)
 
insert 0 8434 A
>> Inserting city A (0,8434)
 
insert 0 8435 A
>> Inserting city A (0,8435)
 
insert 0 8436 A
>> Inserting city A (0,8436)
 
insert 0 8437 A
>> Inserting city A (0,8437)
 
insert 0 8438 A
>> Inserting city A (0,8438)
 
insert 0 8439 A
>> Inserting city A (0,8439)
 
insert 0 8440 A
>> Inserting city A (0,8440)
 
insert 0 8441 A
>> Inserting city A (0,8441)
 
insert 0 8442 A
>> Inserting city A (0,8442)
 
insert 0 8443 A
>> Inserting city A (0,8443)
 
insert 0 8444 A
>> Inserting city A (0,8444)
 
insert 0 8445 A
>> Inserting city A (0,8445)
 
insert 0 8446 A
>> Inserting city A (0,8446)
 
insert 0 8447 A
>> Inserting city A (0,8447)
 
insert 0 8448 A
>> Inserting city A (0,8448)
 
insert 0 8449 A
>> Inserting city A (0,8449)
 
insert 0 8450 A
>> Inserting city A (0,8450)
 
insert 0 8451 A
>> Inserting city A (0,8451)
 
insert 0 8452 A
>> Inserting city A (0,8452)
 
insert 0 8453 A
>> Inserting city A (0,8453)
 
insert 0 8454 A
>> Inserting city A (0,8454)
 
insert 0 8455 A
>> Inserting city A (0,8455)
 
insert 0 8456 A
>> Inserting city A (0,8456)
 
insert 0 8457 A
>> Inserting city A (0,8457)
 
insert 0 8458 A
>> Inserting city A (0,8458)
 
insert 0 8459 A
>> Inserting city A (0,8459)
 
insert 0 8460 A
>> Inserting city A (0,8460)
 
insert 0 8461 A
>> Inserting city A (0,8461)
 
insert 0 8462 A
>> Inserting city A (0,8462)
 
insert 0 8463 A
>> Inserting city A (0,8463)
 
insert 0 8464 A
>> Inserting city A (0,8464)
 
insert 0 8465 A
>> Inserting city A (0,8465)
 
insert 0 8466 A
>> Inserting city A (0,8466)
 
insert 0 8467 A
>> Inserting city A (0,8467)
 
insert 0 8468 A
>> Inserting city A (0,8468)
 
insert 0 8469 A
>> Inserting city A (0,8469)
 
insert 0 8470 A
>> Inserting city A (0,8470)
 
insert 0 8471 A
>> Inserting city A (0,8471)
 
insert 0 8472 A
>> Inserting city A (0,8472)
 
insert 0 8473 A
>> Inserting city A (0,8473)
 
insert 0 8474 A
>> Inserting city A (0,8474)
 
insert 0 8475 A
>> Inserting city A (0,8475)
 
insert 0 8476 A
>> Inserting city A (0,8476)
 
insert 0 8477 A
>> Inserting city A (0,8477)
 
insert 0 8478 A
>> Inserting city A (0,8478)
 
insert 0 8479 A
>> Inserting city A (0,8479)
 
insert 0 8480 A
>> Inserting city A (0,8480)
 
insert 0 8481 A
>> Inserting city A (0,8481)
 
insert 0 8482 A
>> Inserting city A (0,8482)
 
insert 0 8483 A
>> Inserting city A (0,8483)
 
insert 0 8484 A
>> Inserting city A (0,8484)
 
insert 0 8485 A
>> Inserting city A (0,8485)
 
insert 0 8486 A
>> Inserting city A (0,8486)
 
insert 0 8487 A
>> Inserting city A (0,8487)
 
insert 0 8488 A
>> Inserting city A (0,8488)
 
insert 0 8489 A
>> Inserting city A (0,8489)
 
insert 0 8490 A
>> Inserting city A (0,8490)
 
insert 0 8491 A
>> Inserting city A (0,8491)
 
insert 0 8492 A
>> Inserting city A (0,8492)
 
insert 0 8493 A
>> Inserting city A (0,8493)
 
insert 0 8494 A
>> Inserting city A (0,8494)
 
insert 0 8495 A
>> Inserting city A (0,8495)
 
insert 0 8496 A
>> Inserting city A (0,8496)
 
insert 0 8497 A
>> Inserting city A (0,8497)
 
insert 0 8498 A
>> Inserting city A (0,8498)
 
insert 0 8499 A
>> Inserting city A (0,8499)
 
insert 0 8500 A
>> Inserting city A (0,8500)
 
insert 0 8501 A
>> Inserting city A (0,8501)
 
insert 0 8502 A
>> Inserting city A (0,8502)
 
insert 0 8503 A
>> Inserting city A (0,8503)
 
insert 0 8504 A
>> Inserting city A (0,8504)
 
insert 0 8505 A
>> Inserting city A (0,8505)
 
insert 0 8506 A
>> Inserting city A (0,8506)
 
insert 0 8507 A
>> Inserting city A (0,8507)
 
insert 0 8508 A
>> Inserting city A (0,8508)
 
insert 0 8509 A
>> Inserting city A (0,8509)
 
insert 0 8510 A
>> Inserting city A (0,8510)
 
insert 0 8511 A
>> Inserting city A (0,8511)
 
insert 0 8512 A
>> Inserting city A (0,8512)
 
insert 0 8513 A
>> Inserting city A (0,8513)
 
insert 0 8514 A
>> Inserting city A (0,8514)
 
insert 0 8515 A
>> Inserting city A (0,8515)
 
insert 0 8516 A
>> Inserting city A (0,8516)
 
insert 0 8517 A
>> Inserting city A (0,8517)
 
insert 0 8518 A
>> Inserting city A (0,8518)
 
insert 0 8519 A
>> Inserting city A (0,8519)
 
insert 0 8520 A
>> Inserting city A (0,8520)
 
insert 0 8521 A
>> Inserting city A (0,8521)
 
insert 0 8522 A
>> Inserting city A (0,8522)
 
insert 0 8523 A
>> Inserting city A (0,8523)
 
insert 0 8524 A
>> Inserting city A (0,8524)
 
insert 0 8525 A
>> Inserting city A (0,8525)
 
insert 0 8526 A
>> Inserting city A (0,8526)
 
insert 0 8527 A
>> Inserting city A (0,8527)
 
insert 0 8528 A
>> Inserting city A (0,8528)
 
insert 0 8529 A
>> Inserting city A (0,8529)
 
insert 0 8530 A
>> Inserting city A (0,8530)
 
insert 0 8531 A
>> Inserting city A (0,8531)
 
insert 0 8532 A
>> Inserting city A (0,8532)
 
insert 0 8533 A
>> Inserting city A (0,8533)
 
insert 0 8534 A
>> Inserting city A (0,8534)
 
insert 0 8535 A
>> Inserting city A (0,8535)
 
insert 0 8536 A
>> Inserting city A (0,8536)
 
insert 0 8537 A
>> Inserting city A (0,8537)
 
insert 0 8538 A
>> Inserting city A (0,8538)
 
insert 0 8539 A
>> Inserting city A (0,8539)
 
insert 0 8540 A
>> Inserting city A (0,8540)
 
insert 0 8541 A
>> Inserting city A (0,8541)
 
insert 0 8542 A
>> Inserting city A (0,8542)
 
insert 0 8543 A
>> Inserting city A (0,8543)
 
insert 0 8544 A
>> Inserting city A (0,8544)
 
insert 0 8545 A
>> Inserting city A (0,8545)
 
insert 0 8546 A
>> Inserting city A (0,8546)
 
insert 0 8547 A
>> Inserting city A (0,8547)
 
insert 0 8548 A
>> Inserting city A (0,8548)
 
insert 0 8549 A
>> Inserting city A (0,8549)
 
insert 0 8550 A
>> Inserting city A (0,8550)
 
insert 0 8551 A
>> Inserting city A (0,8551)
 
insert 0 8552 A
>> Inserting city A (0,8552)
 
insert 0 8553 A
>> Inserting city A (0,8553)
 
insert 0 8554 A
>> Inserting city A (0,8554)
 
insert 0 8555 A
>> Inserting city A (0,8555)
 
insert 0 8556 A
>> Inserting city A (0,8556)
 
insert 0 8557 A
>> Inserting city A (0,8557)
 
insert 0 8558 A
>> Inserting city A (0,8558)
 
insert 0 8559 A
>> Inserting city A (0,8559)
 
insert 0 8560 A
>> Inserting city A (0,8560)
 
insert 0 8561 A
>> Inserting city A (0,8561)
 
insert 0 8562 A
>> Inserting city A (0,8562)
 
insert 0 8563 A
>> Inserting city A (0,8563)
 
insert 0 8564 A
>> Inserting city A (0,8564)
 
insert 0 8565 A
>> Inserting city A (0,8565)
 
insert 0 8566 A
>> Inserting city A (0,8566)
 
insert 0 8567 A
>> Inserting city A (0,8567)
 
insert 0 8568 A
>> Inserting city A (0,8568)
 
insert 0 8569 A
>> Inserting city A (0,8569)
 
insert 0 8570 A
>> Inserting city A (0,8570)
 
insert 0 8571 A
>> Inserting city A (0,8571)
 
insert 0 8572 A
>> Inserting city A (0,8572)
 
insert 0 8573 A
>> Inserting city A (0,8573)
 
insert 0 8574 A
>> Inserting city A (0,8574)
 
insert 0 8575 A
>> Inserting city A (0,8575)
 
insert 0 8576 A
>> Inserting city A (0,8576)
 
insert 0 8577 A
>> Inserting city A (0,8577)
 
insert 0 8578 A
>> Inserting city A (0,8578)
 
insert 0 8579 A
>> Inserting city A (0,8579)
 
insert 0 8580 A
>> Inserting city A (0,8580)
 
insert 0 8581 A
>> Inserting city A (0,8581)
 
insert 0 8582 A
>> Inserting city A (0,8582)
 
insert 0 8583 A
>> Inserting city A (0,8583)
 
insert 0 8584 A
>> Inserting city A (0,8584)
 
insert 0 8585 A
>> Inserting city A (0,8585)
 
insert 0 8586 A
>> Inserting city A (0,8586)
 
insert 0 8587 A
>> Inserting city A (0,8587)
 
insert 0 8588 A
>> Inserting city A (0,8588)
 
insert 0 8589 A
>> Inserting city A (0,8589)
 
insert 0 8590 A
>> Inserting city A (0,8590)
 
insert 0 8591 A
>> Inserting city A (0,8591)
 
insert 0 8592 A
>> Inserting city A (0,8592)
 
insert 0 8593 A
>> Inserting city A (0,8593)
 
insert 0 8594 A
>> Inserting city A (0,8594)
 
insert 0 8595 A
>> Inserting city A (0,8595)
 
insert 0 8596 A
>> Inserting city A (0,8596)
 
insert 0 8597 A
>> Inserting city A (0,8597)
 
insert 0 8598 A
>> Inserting city A (0,8598)
 
insert 0 8599 A
>> Inserting city A (0,8599)
 
insert 0 8600 A
>> Inserting city A (0,8600)
 
insert 0 8601 A
>> Inserting city A (0,8601)
 
insert 0 8602 A
>> Inserting city A (0,8602)
 
insert 0 8603 A
>> Inserting city A (0,8603)
 
insert 0 8604 A
>> Inserting city A (0,8604)
 
insert 0 8605 A
>> Inserting city A (0,8605)
 
insert 0 8606 A
>> Inserting city A (0,8606)
 
insert 0 8607 A
>> Inserting city A (0,8607)
 
insert 0 8608 A
>> Inserting city A (0,8608)
 
insert 0 8609 A
>> Inserting city A (0,8609)
 
insert 0 8610 A
>> Inserting city A (0,8610)
 
insert 0 8611 A
>> Inserting city A (0,8611)
 
insert 0 8612 A
>> Inserting city A (0,8612)
 
insert 0 8613 A
>> Inserting city A (0,8613)
 
insert 0 8614 A
>> Inserting city A (0,8614)
 
insert 0 8615 A
>> Inserting city A (0,8615)
 
insert 0 8616 A
>> Inserting city A (0,8616)
 
insert 0 8617 A
>> Inserting city A (0,8617)
 
insert 0 8618 A
>> Inserting city A (0,8618)
 
insert 0 8619 A
>> Inserting city A (0,8619)
 
insert 0 8620 A
>> Inserting city A (0,8620)
 
insert 0 8621 A
>> Inserting city A (0,8621)
 
insert 0 8622 A
>> Inserting city A (0,8622)
 
insert 0 8623 A
>> Inserting city A (0,8623)
 
insert 0 8624 A
>> Inserting city A (0,8624)
 
insert 0 8625 A
>> Inserting city A (0,8625)
 
insert 0 8626 A
>> Inserting city A (0,8626)
 
insert 0 8627 A
>> Inserting city A (0,8627)
 
insert 0 8628 A
>> Inserting city A (0,8628)
 
insert 0 8629 A
>> Inserting city A (0,8629)
 
insert 0 8630 A
>> Inserting city A (0,8630)
 
insert 0 8631 A
>> Inserting city A (0,8631)
 
insert 0 8632 A
>> Inserting city A (0,8632)
 
insert 0 8633 A
>> Inserting city A (0,8633)
 
insert 0 8634 A
>> Inserting city A (0,8634)
 
insert 0 8635 A
>> Inserting city A (0,8635)
 
insert 0 8636 A
>> Inserting city A (0,8636)
 
insert 0 8637 A
>> Inserting city A (0,8637)
 
insert 0 8638 A
>> Inserting city A (0,8638)
 
insert 0 8639 A
>> Inserting city A (0,8639)
 
insert 0 8640 A
>> Inserting city A (0,8640)
 
insert 0 8641 A
>> Inserting city A (0,8641)
 
insert 0 8642 A
>> Inserting city A (0,8642)
 
insert 0 8643 A
>> Inserting city A (0,8643)
 
insert 0 8644 A
>> Inserting city A (0,8644)
 
insert 0 8645 A
>> Inserting city A (0,8645)
 
insert 0 8646 A
>> Inserting city A (0,8646)
 
insert 0 8647 A
>> Inserting city A (0,8647)
 
insert 0 8648 A
>> Inserting city A (0,8648)
 
insert 0 8649 A
>> Inserting city A (0,8649)
 
insert 0 8650 A
>> Inserting city A (0,8650)
 
insert 0 8651 A
>> Inserting city A (0,8651)
 
insert 0 8652 A
>> Inserting city A (0,8652)
 
insert 0 8653 A
>> Inserting city A (0,8653)
 
insert 0 8654 A
>> Inserting city A (0,8654)
 
insert 0 8655 A
>> Inserting city A (0,8655)
 
insert 0 8656 A
>> Inserting city A (0,8656)
 
insert 0 8657 A
>> Inserting city A (0,8657)
 
insert 0 8658 A
>> Inserting city A (0,8658)
 
insert 0 8659 A
>> Inserting city A (0,8659)
 
insert 0 8660 A
>> Inserting city A (0,8660)
 
insert 0 8661 A
>> Inserting city A (0,8661)
 
insert 0 8662 A
>> Inserting city A (0,8662)
 
insert 0 8663 A
>> Inserting city A (0,8663)
 
insert 0 8664 A
>> Inserting city A (0,8664)
 
insert 0 8665 A
>> Inserting city A (0,8665)
 
insert 0 8666 A
>> Inserting city A (0,8666)
 
insert 0 8667 A
>> Inserting city A (0,8667)
 
insert 0 8668 A
>> Inserting city A (0,8668)
 
insert 0 8669 A
>> Inserting city A (0,8669)
 
insert 0 8670 A
>> Inserting city A (0,8670)
 
insert 0 8671 A
>> Inserting city A (0,8671)
 
insert 0 8672 A
>> Inserting city A (0,8672)
 
insert 0 8673 A
>> Inserting city A (0,8673)
 
insert 0 8674 A
>> Inserting city A (0,8674)
 
insert 0 8675 A
>> Inserting city A (0,8675)
 
insert 0 8676 A
>> Inserting city A (0,8676)
 
insert 0 8677 A
>> Inserting city A (0,8677)
 
insert 0 8678 A
>> Inserting city A (0,8678)
 
insert 0 8679 A
>> Inserting city A (0,8679)
 
insert 0 8680 A
>> Inserting city A (0,8680)
 
insert 0 8681 A
>> Inserting city A (0,8681)
 
insert 0 8682 A
>> Inserting city A (0,8682)
 
insert 0 8683 A
>> Inserting city A (0,8683)
 
insert 0 8684 A
>> Inserting city A (0,8684)
 
insert 0 8685 A
>> Inserting city A (0,8685)
 
insert 0 8686 A
>> Inserting city A (0,8686)
 
insert 0 8687 A
>> Inserting city A (0,8687)
 
insert 0 8688 A
>> Inserting city A (0,8688)
 
insert 0 8689 A
>> Inserting city A (0,8689)
 
insert 0 8690 A
>> Inserting city A (0,8690)
 
insert 0 8691 A
>> Inserting city A (0,8691)
 
insert 0 8692 A
>> Inserting city A (0,8692)
 
insert 0 8693 A
>> Inserting city A (0,8693)
 
insert 0 8694 A
>> Inserting city A (0,8694)
 
insert 0 8695 A
>> Inserting city A (0,8695)
 
insert 0 8696 A
>> Inserting city A (0,8696)
 
insert 0 8697 A
>> Inserting city A (0,8697)
 
insert 0 8698 A
>> Inserting city A (0,8698)
 
insert 0 8699 A
>> Inserting city A (0,8699)
 
insert 0 8700 A
>> Inserting city A (0,8700)
 
insert 0 8701 A
>> Inserting city A (0,8701)
 
insert 0 8702 A
>> Inserting city A (0,8702)
 
insert 0 8703 A
>> Inserting city A (0,8703)
 
insert 0 8704 A
>> Inserting city A (0,8704)
 
insert 0 8705 A
>> Inserting city A (0,8705)
 
insert 0 8706 A
>> Inserting city A (0,8706)
 
insert 0 8707 A
>> Inserting city A (0,8707)
 
insert 0 8708 A
>> Inserting city A (0,8708)
 
insert 0 8709 A
>> Inserting city A (0,8709)
 
insert 0 8710 A
>> Inserting city A (0,8710)
 
insert 0 8711 A
>> Inserting city A (0,8711)
 
insert 0 8712 A
>> Inserting city A (0,8712)
 
insert 0 8713 A
>> Inserting city A (0,8713)
 
insert 0 8714 A
>> Inserting city A (0,8714)
 
insert 0 8715 A
>> Inserting city A (0,8715)
 
insert 0 8716 A
>> Inserting city A (0,8716)
 
insert 0 8717 A
>> Inserting city A (0,8717)
 
insert 0 8718 A
>> Inserting city A (0,8718)
 
insert 0 8719 A
>> Inserting city A (0,8719)
 
insert 0 8720 A
>> Inserting city A (0,8720)
 
insert 0 8721 A
>> Inserting city A (0,8721)
 
insert 0 8722 A
>> Inserting city A (0,8722)
 
insert 0 8723 A
>> Inserting city A (0,8723)
 
insert 0 8724 A
>> Inserting city A (0,8724)
 
insert 0 8725 A
>> Inserting city A (0,8725)
 
insert 0 8726 A
>> Inserting city A (0,8726)
 
insert 0 8727 A
>> Inserting city A (0,8727)
 
insert 0 8728 A
>> Inserting city A (0,8728)
 
insert 0 8729 A
>> Inserting city A (0,8729)
 
insert 0 8730 A
>> Inserting city A (0,8730)
 
insert 0 8731 A
>> Inserting city A (0,8731)
 
insert 0 8732 A
>> Inserting city A (0,8732)
 
insert 0 8733 A
>> Inserting city A (0,8733)
 
insert 0 8734 A
>> Inserting city A (0,8734)
 
insert 0 8735 A
>> Inserting city A (0,8735)
 
insert 0 8736 A
>> Inserting city A (0,8736)
 
insert 0 8737 A
>> Inserting city A (0,8737)
 
insert 0 8738 A
>> Inserting city A (0,8738)
 
insert 0 8739 A
>> Inserting city A (0,8739)
 
insert 0 8740 A
>> Inserting city A (0,8740)
 
insert 0 8741 A
>> Inserting city A (0,8741)
 
insert 0 8742 A
>> Inserting city A (0,8742)
 
insert 0 8743 A
>> Inserting city A (0,8743)
 
insert 0 8744 A
>> Inserting city A (0,8744)
 
insert 0 8745 A
>> Inserting city A (0,8745)
 
insert 0 8746 A
>> Inserting city A (0,8746)
 
insert 0 8747 A
>> Inserting city A (0,8747)
 
insert 0 8748 A
>> Inserting city A (0,8748)
 
insert 0 8749 A
>> Inserting city A (0,8749)
 
insert 0 8750 A
>> Inserting city A (0,8750)
 
insert 0 8751 A
>> Inserting city A (0,8751)
 
insert 0 8752 A
>> Inserting city A (0,8752)
 
insert 0 8753 A
>> Inserting city A (0,8753)
 
insert 0 8754 A
>> Inserting city A (0,8754)
 
insert 0 8755 A
>> Inserting city A (0,8755)
 
insert 0 8756 A
>> Inserting city A (0,8756)
 
insert 0 8757 A
>> Inserting city A (0,8757)
 
insert 0 8758 A
>> Inserting city A (0,8758)
 
insert 0 8759 A
>> Inserting city A (0,8759)
 
insert 0 8760 A
>> Inserting city A (0,8760)
 
insert 0 8761 A
>> Inserting city A (0,8761)
 
insert 0 8762 A
>> Inserting city A (0,8762)
 
insert 0 8763 A
>> Inserting city A (0,8763)
 
insert 0 8764 A
>> Inserting city A (0,8764)
 
insert 0 8765 A
>> Inserting city A (0,8765)
 
insert 0 8766 A
>> Inserting city A (0,8766)
 
insert 0 8767 A
>> Inserting city A (0,8767)
 
insert 0 8768 A
>> Inserting city A (0,8768)
 
insert 0 8769 A
>> Inserting city A (0,8769)
 
insert 0 8770 A
>> Inserting city A (0,8770)
 
insert 0 8771 A
>> Inserting city A (0,8771)
 
insert 0 8772 A
>> Inserting city A (0,8772)
 
insert 0 8773 A
>> Inserting city A (0,8773)
 
insert 0 8774 A
>> Inserting city A (0,8774)
 
insert 0 8775 A
>> Inserting city A (0,8775)
 
insert 0 8776 A
>> Inserting city A (0,8776)
 
insert 0 8777 A
>> Inserting city A (0,8777)
 
insert 0 8778 A
>> Inserting city A (0,8778)
 
insert 0 8779 A
>> Inserting city A (0,8779)
 
insert 0 8780 A
>> Inserting city A (0,8780)
 
insert 0 8781 A
>> Inserting city A (0,8781)
 
insert 0 8782 A
>> Inserting city A (0,8782)
 
insert 0 8783 A
>> Inserting city A (0,8783)
 
insert 0 8784 A
>> Inserting city A (0,8784)
 
insert 0 8785 A
>> Inserting city A (0,8785)
 
insert 0 8786 A
>> Inserting city A (0,8786)
 
insert 0 8787 A
>> Inserting city A (0,8787)
 
insert 0 8788 A
>> Inserting city A (0,8788)
 
insert 0 8789 A
>> Inserting city A (0,8789)
 
insert 0 8790 A
>> Inserting city A (0,8790)
 
insert 0 8791 A
>> Inserting city A (0,8791)
 
insert 0 8792 A
>> Inserting city A (0,8792)
 
insert 0 8793 A
>> Inserting city A (0,8793)
 
insert 0 8794 A
>> Inserting city A (0,8794)
 
insert 0 8795 A
>> Inserting city A (0,8795)
 
insert 0 8796 A
>> Inserting city A (0,8796)
 
insert 0 8797 A
>> Inserting city A (0,8797)
 
insert 0 8798 A
>> Inserting city A (0,8798)
 
insert 0 8799 A
>> Inserting city A (0,8799)
 
insert 0 8800 A
>> Inserting city A (0,8800)
 
insert 0 8801 A
>> Inserting city A (0,8801)
 
insert 0 8802 A
>> Inserting city A (0,8802)
 
insert 0 8803 A
>> Inserting city A (0,8803)
 
insert 0 8804 A
>> Inserting city A (0,8804)
 
insert 0 8805 A
>> Inserting city A (0,8805)
 
insert 0 8806 A
>> Inserting city A (0,8806)
 
insert 0 8807 A
>> Inserting city A (0,8807)
 
insert 0 8808 A
>> Inserting city A (0,8808)
 
insert 0 8809 A
>> Inserting city A (0,8809)
 
insert 0 8810 A
>> Inserting city A (0,8810)
 
insert 0 8811 A
>> Inserting city A (0,8811)
 
insert 0 8812 A
>> Inserting city A (0,8812)
 
insert 0 8813 A
>> Inserting city A (0,8813)
 
insert 0 8814 A
>> Inserting city A (0,8814)
 
insert 0 8815 A
>> Inserting city A (0,8815)
 
insert 0 8816 A
>> Inserting city A (0,8816)
 
insert 0 8817 A
>> Inserting city A (0,8817)
 
insert 0 8818 A
>> Inserting city A (0,8818)
 
insert 0 8819 A
>> Inserting city A (0,8819)
 
insert 0 8820 A
>> Inserting city A (0,8820)
 
insert 0 8821 A
>> Inserting city A (0,8821)
 
insert 0 8822 A
>> Inserting city A (0,8822)
 
insert 0 8823 A
>> Inserting city A (0,8823)
 
insert 0 8824 A
>> Inserting city A (0,8824)
 
insert 0 8825 A
>> Inserting city A (0,8825)
 
insert 0 8826 A
>> Inserting city A (0,8826)
 
insert 0 8827 A
>> Inserting city A (0,8827)
 
insert 0 8828 A
>> Inserting city A (0,8828)
 
insert 0 8829 A
>> Inserting city A (0,8829)
 
insert 0 8830 A
>> Inserting city A (0,8830)
 
insert 0 8831 A
>> Inserting city A (0,8831)
 
insert 0 8832 A
>> Inserting city A (0,8832)
 
insert 0 8833 A
>> Inserting city A (0,8833)
 
insert 0 8834 A
>> Inserting city A (0,8834)
 
insert 0 8835 A
>> Inserting city A (0,8835)
 
insert 0 8836 A
>> Inserting city A (0,8836)
 
insert 0 8837 A
>> Inserting city A (0,8837)
 
insert 0 8838 A
>> Inserting city A (0,8838)
 
insert 0 8839 A
>> Inserting city A (0,8839)
 
insert 0 8840 A
>> Inserting city A (0,8840)
 
insert 0 8841 A
>> Inserting city A (0,8841)
 
insert 0 8842 A
>> Inserting city A (0,8842)
 
insert 0 8843 A
>> Inserting city A (0,8843)
 
insert 0 8844 A
>> Inserting city A (0,8844)
 
insert 0 8845 A
>> Inserting city A (0,8845)
 
insert 0 8846 A
>> Inserting city A (0,8846)
 
insert 0 8847 A
>> Inserting city A (0,8847)
 
insert 0 8848 A
>> Inserting city A (0,8848)
 
insert 0 8849 A
>> Inserting city A (0,8849)
 
insert 0 8850 A
>> Inserting city A (0,8850)
 
insert 0 8851 A
>> Inserting city A (0,8851)
 
insert 0 8852 A
>> Inserting city A (0,8852)
 
insert 0 8853 A
>> Inserting city A (0,8853)
 
insert 0 8854 A
>> Inserting city A (0,8854)
 
insert 0 8855 A
>> Inserting city A (0,8855)
 
insert 0 8856 A
>> Inserting city A (0,8856)
 
insert 0 8857 A
>> Inserting city A (0,8857)
 
insert 0 8858 A
>> Inserting city A (0,8858)
 
insert 0 8859 A
>> Inserting city A (0,8859)
 
insert 0 8860 A
>> Inserting city A (0,8860)
 
insert 0 8861 A
>> Inserting city A (0,8861)
 
insert 0 8862 A
>> Inserting city A (0,8862)
 
insert 0 8863 A
>> Inserting city A (0,8863)
 
insert 0 8864 A
>> Inserting city A (0,8864)
 
insert 0 8865 A
>> Inserting city A (0,8865)
 
insert 0 8866 A
>> Inserting city A (0,8866)
 
insert 0 8867 A
>> Inserting city A (0,8867)
 
insert 0 8868 A
>> Inserting city A (0,8868)
 
insert 0 8869 A
>> Inserting city A (0,8869)
 
insert 0 8870 A
>> Inserting city A (0,8870)
 
insert 0 8871 A
>> Inserting city A (0,8871)
 
insert 0 8872 A
>> Inserting city A (0,8872)
 
insert 0 8873 A
>> Inserting city A (0,8873)
 
insert 0 8874 A
>> Inserting city A (0,8874)
 
insert 0 8875 A
>> Inserting city A (0,8875)
 
insert 0 8876 A
>> Inserting city A (0,8876)
 
insert 0 8877 A
>> Inserting city A (0,8877)
 
insert 0 8878 A
>> Inserting city A (0,8878)
 
insert 0 8879 A
>> Inserting city A (0,8879)
 
insert 0 8880 A
>> Inserting city A (0,8880)
 
insert 0 8881 A
>> Inserting city A (0,8881)
 
insert 0 8882 A
>> Inserting city A (0,8882)
 
insert 0 8883 A
>> Inserting city A (0,8883)
 
insert 0 8884 A
>> Inserting city A (0,8884)
 
insert 0 8885 A
>> Inserting city A (0,8885)
 
insert 0 8886 A
>> Inserting city A (0,8886)
 
insert 0 8887 A
>> Inserting city A (0,8887)
 
insert 0 8888 A
>> Inserting city A (0,8888)
 
insert 0 8889 A
>> Inserting city A (0,8889)
 
insert 0 8890 A
>> Inserting city A (0,8890)
 
insert 0 8891 A
>> Inserting city A (0,8891)
 
insert 0 8892 A
>> Inserting city A (0,8892)
 
insert 0 8893 A
>> Inserting city A (0,8893)
 
insert 0 8894 A
>> Inserting city A (0,8894)
 
insert 0 8895 A
>> Inserting city A (0,8895)
 
insert 0 8896 A
>> Inserting city A (0,8896)
 
insert 0 8897 A
>> Inserting city A (0,8897)
 
insert 0 8898 A
>> Inserting city A (0,8898)
 
insert 0 8899 A
>> Inserting city A (0,8899)
 
insert 0 8900 A
>> Inserting city A (0,8900)
 
insert 0 8901 A
>> Inserting city A (0,8901)
 
insert 0 8902 A
>> Inserting city A (0,8902)
 
insert 0 8903 A
>> Inserting city A (0,8903)
 
insert 0 8904 A
>> Inserting city A (0,8904)
 
insert 0 8905 A
>> Inserting city A (0,8905)
 
insert 0 8906 A
>> Inserting city A (0,8906)
 
insert 0 8907 A
>> Inserting city A (0,8907)
 
insert 0 8908 A
>> Inserting city A (0,8908)
 
insert 0 8909 A
>> Inserting city A (0,8909)
 
insert 0 8910 A
>> Inserting city A (0,8910)
 
insert 0 8911 A
>> Inserting city A (0,8911)
 
insert 0 8912 A
>> Inserting city A (0,8912)
 
insert 0 8913 A
>> Inserting city A (0,8913)
 
insert 0 8914 A
>> Inserting city A (0,8914)
 
insert 0 8915 A
>> Inserting city A (0,8915)
 
insert 0 8916 A
>> Inserting city A (0,8916)
 
insert 0 8917 A
>> Inserting city A (0,8917)
 
insert 0 8918 A
>> Inserting city A (0,8918)
 
insert 0 8919 A
>> Inserting city A (0,8919)
 
insert 0 8920 A
>> Inserting city A (0,8920)
 
insert 0 8921 A
>> Inserting city A (0,8921)
 
insert 0 8922 A
>> Inserting city A (0,8922)
 
insert 0 8923 A
>> Inserting city A (0,8923)
 
insert 0 8924 A
>> Inserting city A (0,8924)
 
insert 0 8925 A
>> Inserting city A (0,8925)
 
insert 0 8926 A
>> Inserting city A (0,8926)
 
insert 0 8927 A
>> Inserting city A (0,8927)
 
insert 0 8928 A
>> Inserting city A (0,8928)
 
insert 0 8929 A
>> Inserting city A (0,8929)
 
insert 0 8930 A
>> Inserting city A (0,8930)
 
insert 0 8931 A
>> Inserting city A (0,8931)
 
insert 0 8932 A
>> Inserting city A (0,8932)
 
insert 0 8933 A
>> Inserting city A (0,8933)
 
insert 0 8934 A
>> Inserting city A (0,8934)
 
insert 0 8935 A
>> Inserting city A (0,8935)
 
insert 0 8936 A
>> Inserting city A (0,8936)
 
insert 0 8937 A
>> Inserting city A (0,8937)
 
insert 0 8938 A
>> Inserting city A (0,8938)
 
insert 0 8939 A
>> Inserting city A (0,8939)
 
insert 0 8940 A
>> Inserting city A (0,8940)
 
insert 0 8941 A
>> Inserting city A (0,8941)
 
insert 0 8942 A
>> Inserting city A (0,8942)
 
insert 0 8943 A
>> Inserting city A (0,8943)
 
insert 0 8944 A
>> Inserting city A (0,8944)
 
insert 0 8945 A
>> Inserting city A (0,8945)
 
insert 0 8946 A
>> Inserting city A (0,8946)
 
insert 0 8947 A
>> Inserting city A (0,8947)
 
insert 0 8948 A
>> Inserting city A (0,8948)
 
insert 0 8949 A
>> Inserting city A (0,8949)
 
insert 0 8950 A
>> Inserting city A (0,8950)
 
insert 0 8951 A
>> Inserting city A (0,8951)
 
insert 0 8952 A
>> Inserting city A (0,8952)
 
insert 0 8953 A
>> Inserting city A (0,8953)
 
insert 0 8954 A
>> Inserting city A (0,8954)
 
insert 0 8955 A
>> Inserting city A (0,8955)
 
insert 0 8956 A
>> Inserting city A (0,8956)
 
insert 0 8957 A
>> Inserting city A (0,8957)
 
insert 0 8958 A
>> Inserting city A (0,8958)
 
insert 0 8959 A
>> Inserting city A (0,8959)
 
insert 0 8960 A
>> Inserting city A (0,8960)
 
insert 0 8961 A
>> Inserting city A (0,8961)
 
insert 0 8962 A
>> Inserting city A (0,8962)
 
insert 0 8963 A
>> Inserting city A (0,8963)
 
insert 0 8964 A
>> Inserting city A (0,8964)
 
insert 0 8965 A
>> Inserting city A (0,8965)
 
insert 0 8966 A
>> Inserting city A (0,8966)
 
insert 0 8967 A
>> Inserting city A (0,8967)
 
insert 0 8968 A
>> Inserting city A (0,8968)
 
insert 0 8969 A
>> Inserting city A (0,8969)
 
insert 0 8970 A
>> Inserting city A (0,8970)
 
insert 0 8971 A
>> Inserting city A (0,8971)
 
insert 0 8972 A
>> Inserting city A (0,8972)
 
insert 0 8973 A
>> Inserting city A (0,8973)
 
insert 0 8974 A
>> Inserting city A (0,8974)
 
insert 0 8975 A
>> Inserting city A (0,8975)
 
insert 0 8976 A
>> Inserting city A (0,8976)
 
insert 0 8977 A
>> Inserting city A (0,8977)
 
insert 0 8978 A
>> Inserting city A (0,8978)
 
insert 0 8979 A
>> Inserting city A (0,8979)
 
insert 0 8980 A
>> Inserting city A (0,8980)
 
insert 0 8981 A
>> Inserting city A (0,8981)
 
insert 0 8982 A
>> Inserting city A (0,8982)
 
insert 0 8983 A
>> Inserting city A (0,8983)
 
insert 0 8984 A
>> Inserting city A (0,8984)
 
insert 0 8985 A
>> Inserting city A (0,8985)
 
insert 0 8986 A
>> Inserting city A (0,8986)
 
insert 0 8987 A
>> Inserting city A (0,8987)
 
insert 0 8988 A
>> Inserting city A (0,8988)
 
insert 0 8989 A
>> Inserting city A (0,8989)
 
insert 0 8990 A
>> Inserting city A (0,8990)
 
insert 0 8991 A
>> Inserting city A (0,8991)
 
insert 0 8992 A
>> Inserting city A (0,8992)
 
insert 0 8993 A
>> Inserting city A (0,8993)
 
insert 0 8994 A
>> Inserting city A (0,8994)
 
insert 0 8995 A
>> Inserting city A (0,8995)
 
insert 0 8996 A
>> Inserting city A (0,8996)
 
insert 0 8997 A
>> Inserting city A (0,8997)
 
insert 0 8998 A
>> Inserting city A (0,8998)
 
insert 0 8999 A
>> Inserting city A (0,8999)
 
insert 0 9000 A
>> Inserting city A (0,9000)
 
insert 0 9001 A
>> Inserting city A (0,9001)
 
insert 0 9002 A
>> Inserting city A (0,9002)
 
insert 0 9003 A
>> Inserting city A (0,9003)
 
insert 0 9004 A
>> Inserting city A (0,9004)
 
insert 0 9005 A
>> Inserting city A (0,9005)
 
insert 0 9006 A
>> Inserting city A (0,9006)
 
insert 0 9007 A
>> Inserting city A (0,9007)
 
insert 0 9008 A
>> Inserting city A (0,9008)
 
insert 0 9009 A
>> Inserting city A (0,9009)
 
insert 0 9010 A
>> Inserting city A (0,9010)
 
insert 0 9011 A
>> Inserting city A (0,9011)
 
insert 0 9012 A
>> Inserting city A (0,9012)
 
insert 0 9013 A
>> Inserting city A (0,9013)
 
insert 0 9014 A
>> Inserting city A (0,9014)
 
insert 0 9015 A
>> Inserting city A (0,9015)
 
insert 0 9016 A
>> Inserting city A (0,9016)
 
insert 0 9017 A
>> Inserting city A (0,9017)
 
insert 0 9018 A
>> Inserting city A (0,9018)
 
insert 0 9019 A
>> Inserting city A (0,9019)
 
insert 0 9020 A
>> Inserting city A (0,9020)
 
insert 0 9021 A
>> Inserting city A (0,9021)
 
insert 0 9022 A
>> Inserting city A (0,9022)
 
insert 0 9023 A
>> Inserting city A (0,9023)
 
insert 0 9024 A
>> Inserting city A (0,9024)
 
insert 0 9025 A
>> Inserting city A (0,9025)
 
insert 0 9026 A
>> Inserting city A (0,9026)
 
insert 0 9027 A
>> Inserting city A (0,9027)
 
insert 0 9028 A
>> Inserting city A (0,9028)
 
insert 0 9029 A
>> Inserting city A (0,9029)
 
insert 0 9030 A
>> Inserting city A (0,9030)
 
insert 0 9031 A
>> Inserting city A (0,9031)
 
insert 0 9032 A
>> Inserting city A (0,9032)
 
insert 0 9033 A
>> Inserting city A (0,9033)
 
insert 0 9034 A
>> Inserting city A (0,9034)
 
insert 0 9035 A
>> Inserting city A (0,9035)
 
insert 0 9036 A
>> Inserting city A (0,9036)
 
insert 0 9037 A
>> Inserting city A (0,9037)
 
insert 0 9038 A
>> Inserting city A (0,9038)
 
insert 0 9039 A
>> Inserting city A (0,9039)
 
insert 0 9040 A
>> Inserting city A (0,9040)
 
insert 0 9041 A
>> Inserting city A (0,9041)
 
insert 0 9042 A
>> Inserting city A (0,9042)
 
insert 0 9043 A
>> Inserting city A (0,9043)
 
insert 0 9044 A
>> Inserting city A (0,9044)
 
insert 0 9045 A
>> Inserting city A (0,9045)
 
insert 0 9046 A
>> Inserting city A (0,9046)
 
insert 0 9047 A
>> Inserting city A (0,9047)
 
insert 0 9048 A
>> Inserting city A (0,9048)
 
insert 0 9049 A
>> Inserting city A (0,9049)
 
insert 0 9050 A
>> Inserting city A (0,9050)
 
insert 0 9051 A
>> Inserting city A (0,9051)
 
insert 0 9052 A
>> Inserting city A (0,9052)
 
insert 0 9053 A
>> Inserting city A (0,9053)
 
insert 0 9054 A
>> Inserting city A (0,9054)
 
insert 0 9055 A
>> Inserting city A (0,9055)
 
insert 0 9056 A
>> Inserting city A (0,9056)
 
insert 0 9057 A
>> Inserting city A (0,9057)
 
insert 0 9058 A
>> Inserting city A (0,9058)
 
insert 0 9059 A
>> Inserting city A (0,9059)
 
insert 0 9060 A
>> Inserting city A (0,9060)
 
insert 0 9061 A
>> Inserting city A (0,9061)
 
insert 0 9062 A
>> Inserting city A (0,9062)
 
insert 0 9063 A
>> Inserting city A (0,9063)
 
insert 0 9064 A
>> Inserting city A (0,9064)
 
insert 0 9065 A
>> Inserting city A (0,9065)
 
insert 0 9066 A
>> Inserting city A (0,9066)
 
insert 0 9067 A
>> Inserting city A (0,9067)
 
insert 0 9068 A
>> Inserting city A (0,9068)
 
insert 0 9069 A
>> Inserting city A (0,9069)
 
insert 0 9070 A
>> Inserting city A (0,9070)
 
insert 0 9071 A
>> Inserting city A (0,9071)
 
insert 0 9072 A
>> Inserting city A (0,9072)
 
insert 0 9073 A
>> Inserting city A (0,9073)
 
insert 0 9074 A
>> Inserting city A (0,9074)
 
insert 0 9075 A
>> Inserting city A (0,9075)
 
insert 0 9076 A
>> Inserting city A (0,9076)
 
insert 0 9077 A
>> Inserting city A (0,9077)
 
insert 0 9078 A
>> Inserting city A (0,9078)
 
insert 0 9079 A
>> Inserting city A (0,9079)
 
insert 0 9080 A
>> Inserting city A (0,9080)
 
insert 0 9081 A
>> Inserting city A (0,9081)
 
insert 0 9082 A
>> Inserting city A (0,9082)
 
insert 0 9083 A
>> Inserting city A (0,9083)
 
insert 0 9084 A
>> Inserting city A (0,9084)
 
insert 0 9085 A
>> Inserting city A (0,9085)
 
insert 0 9086 A
>> Inserting city A (0,9086)
 
insert 0 9087 A
>> Inserting city A (0,9087)
 
insert 0 9088 A
>> Inserting city A (0,9088)
 
insert 0 9089 A
>> Inserting city A (0,9089)
 
insert 0 9090 A
>> Inserting city A (0,9090)
 
insert 0 9091 A
>> Inserting city A (0,9091)
 
insert 0 9092 A
>> Inserting city A (0,9092)
 
insert 0 9093 A
>> Inserting city A (0,9093)
 
insert 0 9094 A
>> Inserting city A (0,9094)
 
insert 0 9095 A
>> Inserting city A (0,9095)
 
insert 0 9096 A
>> Inserting city A (0,9096)
 
insert 0 9097 A
>> Inserting city A (0,9097)
 
insert 0 9098 A
>> Inserting city A (0,9098)
 
insert 0 9099 A
>> Inserting city A (0,9099)
 
insert 0 9100 A
>> Inserting city A (0,9100)
 
insert 0 9101 A
>> Inserting city A (0,9101)
 
insert 0 9102 A
>> Inserting city A (0,9102)
 
insert 0 9103 A
>> Inserting city A (0,9103)
 
insert 0 9104 A
>> Inserting city A (0,9104)
 
insert 0 9105 A
>> Inserting city A (0,9105)
 
insert 0 9106 A
>> Inserting city A (0,9106)
 
insert 0 9107 A
>> Inserting city A (0,9107)
 
insert 0 9108 A
>> Inserting city A (0,9108)
 
insert 0 9109 A
>> Inserting city A (0,9109)
 
insert 0 9110 A
>> Inserting city A (0,9110)
 
insert 0 9111 A
>> Inserting city A (0,9111)
 
insert 0 9112 A
>> Inserting city A (0,9112)
 
insert 0 9113 A
>> Inserting city A (0,9113)
 
insert 0 9114 A
>> Inserting city A (0,9114)
 
insert 0 9115 A
>> Inserting city A (0,9115)
 
insert 0 9116 A
>> Inserting city A (0,9116)
 
insert 0 9117 A
>> Inserting city A (0,9117)
 
insert 0 9118 A
>> Inserting city A (0,9118)
 
insert 0 9119 A
>> Inserting city A (0,9119)
 
insert 0 9120 A
>> Inserting city A (0,9120)
 
insert 0 9121 A
>> Inserting city A (0,9121)
 
insert 0 9122 A
>> Inserting city A (0,9122)
 
insert 0 9123 A
>> Inserting city A (0,9123)
 
insert 0 9124 A
>> Inserting city A (0,9124)
 
insert 0 9125 A
>> Inserting city A (0,9125)
 
insert 0 9126 A
>> Inserting city A (0,9126)
 
insert 0 9127 A
>> Inserting city A (0,9127)
 
insert 0 9128 A
>> Inserting city A (0,9128)
 
insert 0 9129 A
>> Inserting city A (0,9129)
 
insert 0 9130 A
>> Inserting city A (0,9130)
 
insert 0 9131 A
>> Inserting city A (0,9131)
 
insert 0 9132 A
>> Inserting city A (0,9132)
 
insert 0 9133 A
>> Inserting city A (0,9133)
 
insert 0 9134 A
>> Inserting city A (0,9134)
 
insert 0 9135 A
>> Inserting city A (0,9135)
 
insert 0 9136 A
>> Inserting city A (0,9136)
 
insert 0 9137 A
>> Inserting city A (0,9137)
 
insert 0 9138 A
>> Inserting city A (0,9138)
 
insert 0 9139 A
>> Inserting city A (0,9139)
 
insert 0 9140 A
>> Inserting city A (0,9140)
 
insert 0 9141 A
>> Inserting city A (0,9141)
 
insert 0 9142 A
>> Inserting city A (0,9142)
 
insert 0 9143 A
>> Inserting city A (0,9143)
 
insert 0 9144 A
>> Inserting city A (0,9144)
 
insert 0 9145 A
>> Inserting city A (0,9145)
 
insert 0 9146 A
>> Inserting city A (0,9146)
 
insert 0 9147 A
>> Inserting city A (0,9147)
 
insert 0 9148 A
>> Inserting city A (0,9148)
 
insert 0 9149 A
>> Inserting city A (0,9149)
 
insert 0 9150 A
>> Inserting city A (0,9150)
 
insert 0 9151 A
>> Inserting city A (0,9151)
 
insert 0 9152 A
>> Inserting city A (0,9152)
 
insert 0 9153 A
>> Inserting city A (0,9153)
 
insert 0 9154 A
>> Inserting city A (0,9154)
 
insert 0 9155 A
>> Inserting city A (0,9155)
 
insert 0 9156 A
>> Inserting city A (0,9156)
 
insert 0 9157 A
>> Inserting city A (0,9157)
 
insert 0 9158 A
>> Inserting city A (0,9158)
 
insert 0 9159 A
>> Inserting city A (0,9159)
 
insert 0 9160 A
>> Inserting city A (0,9160)
 
insert 0 9161 A
>> Inserting city A (0,9161)
 
insert 0 9162 A
>> Inserting city A (0,9162)
 
insert 0 9163 A
>> Inserting city A (0,9163)
 
insert 0 9164 A
>> Inserting city A (0,9164)
 
insert 0 9165 A
>> Inserting city A (0,9165)
 
insert 0 9166 A
>> Inserting city A (0,9166)
 
insert 0 9167 A
>> Inserting city A (0,9167)
 
insert 0 9168 A
>> Inserting city A (0,9168)
 
insert 0 9169 A
>> Inserting city A (0,9169)
 
insert 0 9170 A
>> Inserting city A (0,9170)
 
insert 0 9171 A
>> Inserting city A (0,9171)
 
insert 0 9172 A
>> Inserting city A (0,9172)
 
insert 0 9173 A
>> Inserting city A (0,9173)
 
insert 0 9174 A
>> Inserting city A (0,9174)
 
insert 0 9175 A
>> Inserting city A (0,9175)
 
insert 0 9176 A
>> Inserting city A (0,9176)
 
insert 0 9177 A
>> Inserting city A (0,9177)
 
insert 0 9178 A
>> Inserting city A (0,9178)
 
insert 0 9179 A
>> Inserting city A (0,9179)
 
insert 0 9180 A
>> Inserting city A (0,9180)
 
insert 0 9181 A
>> Inserting city A (0,9181)
 
insert 0 9182 A
>> Inserting city A (0,9182)
 
insert 0 9183 A
>> Inserting city A (0,9183)
 
insert 0 9184 A
>> Inserting city A (0,9184)
 
insert 0 9185 A
>> Inserting city A (0,9185)
 
insert 0 9186 A
>> Inserting city A (0,9186)
 
insert 0 9187 A
>> Inserting city A (0,9187)
 
insert 0 9188 A
>> Inserting city A (0,9188)
 
insert 0 9189 A
>> Inserting city A (0,9189)
 
insert 0 9190 A
>> Inserting city A (0,9190)
 
insert 0 9191 A
>> Inserting city A (0,9191)
 
insert 0 9192 A
>> Inserting city A (0,9192)
 
insert 0 9193 A
>> Inserting city A (0,9193)
 
insert 0 9194 A
>> Inserting city A (0,9194)
 
insert 0 9195 A
>> Inserting city A (0,9195)
 
insert 0 9196 A
>> Inserting city A (0,9196)
 
insert 0 9197 A
>> Inserting city A (0,9197)
 
insert 0 9198 A
>> Inserting city A (0,9198)
 
insert 0 9199 A
>> Inserting city A (0,9199)
 
insert 0 9200 A
>> Inserting city A (0,9200)
 
insert 0 9201 A
>> Inserting city A (0,9201)
 
insert 0 9202 A
>> Inserting city A (0,9202)
 
insert 0 9203 A
>> Inserting city A (0,9203)
 
insert 0 9204 A
>> Inserting city A (0,9204)
 
insert 0 9205 A
>> Inserting city A (0,9205)
 
insert 0 9206 A
>> Inserting city A (0,9206)
 
insert 0 9207 A
>> Inserting city A (0,9207)
 
insert 0 9208 A
>> Inserting city A (0,9208)
 
insert 0 9209 A
>> Inserting city A (0,9209)
 
insert 0 9210 A
>> Inserting city A (0,9210)
 
insert 0 9211 A
>> Inserting city A (0,9211)
 
insert 0 9212 A
>> Inserting city A (0,9212)
 
insert 0 9213 A
>> Inserting city A (0,9213)
 
insert 0 9214 A
>> Inserting city A (0,9214)
 
insert 0 9215 A
>> Inserting city A (0,9215)
 
insert 0 9216 A
>> Inserting city A (0,9216)
 
insert 0 9217 A
>> Inserting city A (0,9217)
 
insert 0 9218 A
>> Inserting city A (0,9218)
 
insert 0 9219 A
>> Inserting city A (0,9219)
 
insert 0 9220 A
>> Inserting city A (0,9220)
 
insert 0 9221 A
>> Inserting city A (0,9221)
 
insert 0 9222 A
>> Inserting city A (0,9222)
 
insert 0 9223 A
>> Inserting city A (0,9223)
 
insert 0 9224 A
>> Inserting city A (0,9224)
 
insert 0 9225 A
>> Inserting city A (0,9225)
 
insert 0 9226 A
>> Inserting city A (0,9226)
 
insert 0 9227 A
>> Inserting city A (0,9227)
 
insert 0 9228 A
>> Inserting city A (0,9228)
 
insert 0 9229 A
>> Inserting city A (0,9229)
 
insert 0 9230 A
>> Inserting city A (0,9230)
 
insert 0 9231 A
>> Inserting city A (0,9231)
 
insert 0 9232 A
>> Inserting city A (0,9232)
 
insert 0 9233 A
>> Inserting city A (0,9233)
 
insert 0 9234 A
>> Inserting city A (0,9234)
 
insert 0 9235 A
>> Inserting city A (0,9235)
 
insert 0 9236 A
>> Inserting city A (0,9236)
 
insert 0 9237 A
>> Inserting city A (0,9237)
 
insert 0 9238 A
>> Inserting city A (0,9238)
 
insert 0 9239 A
>> Inserting city A (0,9239)
 
insert 0 9240 A
>> Inserting city A (0,9240)
 
insert 0 9241 A
>> Inserting city A (0,9241)
 
insert 0 9242 A
>> Inserting city A (0,9242)
 
insert 0 9243 A
>> Inserting city A (0,9243)
 
insert 0 9244 A
>> Inserting city A (0,9244)
 
insert 0 9245 A
>> Inserting city A (0,9245)
 
insert 0 9246 A
>> Inserting city A (0,9246)
 
insert 0 9247 A
>> Inserting city A (0,9247)
 
insert 0 9248 A
>> Inserting city A (0,9248)
 
insert 0 9249 A
>> Inserting city A (0,9249)
 
insert 0 9250 A
>> Inserting city A (0,9250)
 
insert 0 9251 A
>> Inserting city A (0,9251)
 
insert 0 9252 A
>> Inserting city A (0,9252)
 
insert 0 9253 A
>> Inserting city A (0,9253)
 
insert 0 9254 A
>> Inserting city A (0,9254)
 
insert 0 9255 A
>> Inserting city A (0,9255)
 
insert 0 9256 A
>> Inserting city A (0,9256)
 
insert 0 9257 A
>> Inserting city A (0,9257)
 
insert 0 9258 A
>> Inserting city A (0,9258)
 
insert 0 9259 A
>> Inserting city A (0,9259)
 
insert 0 9260 A
>> Inserting city A (0,9260)
 
insert 0 9261 A
>> Inserting city A (0,9261)
 
insert 0 9262 A
>> Inserting city A (0,9262)
 
insert 0 9263 A
>> Inserting city A (0,9263)
 
insert 0 9264 A
>> Inserting city A (0,9264)
 
insert 0 9265 A
>> Inserting city A (0,9265)
 
insert 0 9266 A
>> Inserting city A (0,9266)
 
insert 0 9267 A
>> Inserting city A (0,9267)
 
insert 0 9268 A
>> Inserting city A (0,9268)
 
insert 0 9269 A
>> Inserting city A (0,9269)
 
insert 0 9270 A
>> Inserting city A (0,9270)
 
insert 0 9271 A
>> Inserting city A (0,9271)
 
insert 0 9272 A
>> Inserting city A (0,9272)
 
insert 0 9273 A
>> Inserting city A (0,9273)
 
insert 0 9274 A
>> Inserting city A (0,9274)
 
insert 0 9275 A
>> Inserting city A (0,9275)
 
insert 0 9276 A
>> Inserting city A (0,9276)
 
insert 0 9277 A
>> Inserting city A (0,9277)
 
insert 0 9278 A
>> Inserting city A (0,9278)
 
insert 0 9279 A
>> Inserting city A (0,9279)
 
insert 0 9280 A
>> Inserting city A (0,9280)
 
insert 0 9281 A
>> Inserting city A (0,9281)
 
insert 0 9282 A
>> Inserting city A (0,9282)
 
insert 0 9283 A
>> Inserting city A (0,9283)
 
insert 0 9284 A
>> Inserting city A (0,9284)
 
insert 0 9285 A
>> Inserting city A (0,9285)
 
insert 0 9286 A
>> Inserting city A (0,9286)
 
insert 0 9287 A
>> Inserting city A (0,9287)
 
insert 0 9288 A
>> Inserting city A (0,9288)
 
insert 0 9289 A
>> Inserting city A (0,9289)
 
insert 0 9290 A
>> Inserting city A (0,9290)
 
insert 0 9291 A
>> Inserting city A (0,9291)
 
insert 0 9292 A
>> Inserting city A (0,9292)
 
insert 0 9293 A
>> Inserting city A (0,9293)
 
insert 0 9294 A
>> Inserting city A (0,9294)
 
insert 0 9295 A
>> Inserting city A (0,9295)
 
insert 0 9296 A
>> Inserting city A (0,9296)
 
insert 0 9297 A
>> Inserting city A (0,9297)
 
insert 0 9298 A
>> Inserting city A (0,9298)
 
insert 0 9299 A
>> Inserting city A (0,9299)
 
insert 0 9300 A
>> Inserting city A (0,9300)
 
insert 0 9301 A
>> Inserting city A (0,9301)
 
insert 0 9302 A
>> Inserting city A (0,9302)
 
insert 0 9303 A
>> Inserting city A (0,9303)
 
insert 0 9304 A
>> Inserting city A (0,9304)
 
insert 0 9305 A
>> Inserting city A (0,9305)
 
insert 0 9306 A
>> Inserting city A (0,9306)
 
insert 0 9307 A
>> Inserting city A (0,9307)
 
insert 0 9308 A
>> Inserting city A (0,9308)
 
insert 0 9309 A
>> Inserting city A (0,9309)
 
insert 0 9310 A
>> Inserting city A (0,9310)
 
insert 0 9311 A
>> Inserting city A (0,9311)
 
insert 0 9312 A
>> Inserting city A (0,9312)
 
insert 0 9313 A
>> Inserting city A (0,9313)
 
insert 0 9314 A
>> Inserting city A (0,9314)
 
insert 0 9315 A
>> Inserting city A (0,9315)
 
insert 0 9316 A
>> Inserting city A (0,9316)
 
insert 0 9317 A
>> Inserting city A (0,9317)
 
insert 0 9318 A
>> Inserting city A (0,9318)
 
insert 0 9319 A
>> Inserting city A (0,9319)
 
insert 0 9320 A
>> Inserting city A (0,9320)
 
insert 0 9321 A
>> Inserting city A (0,9321)
 
insert 0 9322 A
>> Inserting city A (0,9322)
 
insert 0 9323 A
>> Inserting city A (0,9323)
 
insert 0 9324 A
>> Inserting city A (0,9324)
 
insert 0 9325 A
>> Inserting city A (0,9325)
 
insert 0 9326 A
>> Inserting city A (0,9326)
 
insert 0 9327 A
>> Inserting city A (0,9327)
 
insert 0 9328 A
>> Inserting city A (0,9328)
 
insert 0 9329 A
>> Inserting city A (0,9329)
 
insert 0 9330 A
>> Inserting city A (0,9330)
 
insert 0 9331 A
>> Inserting city A (0,9331)
 
insert 0 9332 A
>> Inserting city A (0,9332)
 
insert 0 9333 A
>> Inserting city A (0,9333)
 
insert 0 9334 A
>> Inserting city A (0,9334)
 
insert 0 9335 A
>> Inserting city A (0,9335)
 
insert 0 9336 A
>> Inserting city A (0,9336)
 
insert 0 9337 A
>> Inserting city A (0,9337)
 
insert 0 9338 A
>> Inserting city A (0,9338)
 
insert 0 9339 A
>> Inserting city A (0,9339)
 
insert 0 9340 A
>> Inserting city A (0,9340)
 
insert 0 9341 A
>> Inserting city A (0,9341)
 
insert 0 9342 A
>> Inserting city A (0,9342)
 
insert 0 9343 A
>> Inserting city A (0,9343)
 
insert 0 9344 A
>> Inserting city A (0,9344)
 
insert 0 9345 A
>> Inserting city A (0,9345)
 
insert 0 9346 A
>> Inserting city A (0,9346)
 
insert 0 9347 A
>> Inserting city A (0,9347)
 
insert 0 9348 A
>> Inserting city A (0,9348)
 
insert 0 9349 A
>> Inserting city A (0,9349)
 
insert 0 9350 A
>> Inserting city A (0,9350)
 
insert 0 9351 A
>> Inserting city A (0,9351)
 
insert 0 9352 A
>> Inserting city A (0,9352)
 
insert 0 9353 A
>> Inserting city A (0,9353)
 
insert 0 9354 A
>> Inserting city A (0,9354)
 
insert 0 9355 A
>> Inserting city A (0,9355)
 
insert 0 9356 A
>> Inserting city A (0,9356)
 
insert 0 9357 A
>> Inserting city A (0,9357)
 
insert 0 9358 A
>> Inserting city A (0,9358)
 
insert 0 9359 A
>> Inserting city A (0,9359)
 
insert 0 9360 A
>> Inserting city A (0,9360)
 
insert 0 9361 A
>> Inserting city A (0,9361)
 
insert 0 9362 A
>> Inserting city A (0,9362)
 
insert 0 9363 A
>> Inserting city A (0,9363)
 
insert 0 9364 A
>> Inserting city A (0,9364)
 
insert 0 9365 A
>> Inserting city A (0,9365)
 
insert 0 9366 A
>> Inserting city A (0,9366)
 
insert 0 9367 A
>> Inserting city A (0,9367)
 
insert 0 9368 A
>> Inserting city A (0,9368)
 
insert 0 9369 A
>> Inserting city A (0,9369)
 
insert 0 9370 A
>> Inserting city A (0,9370)
 
insert 0 9371 A
>> Inserting city A (0,9371)
 
insert 0 9372 A
>> Inserting city A (0,9372)
 
insert 0 9373 A
>> Inserting city A (0,9373)
 
insert 0 9374 A
>> Inserting city A (0,9374)
 
insert 0 9375 A
>> Inserting city A (0,9375)
 
insert 0 9376 A
>> Inserting city A (0,9376)
 
insert 0 9377 A
>> Inserting city A (0,9377)
 
insert 0 9378 A
>> Inserting city A (0,9378)
 
insert 0 9379 A
>> Inserting city A (0,9379)
 
insert 0 9380 A
>> Inserting city A (0,9380)
 
insert 0 9381 A
>> Inserting city A (0,9381)
 
insert 0 9382 A
>> Inserting city A (0,9382)
 
insert 0 9383 A
>> Inserting city A (0,9383)
 
insert 0 9384 A
>> Inserting city A (0,9384)
 
insert 0 9385 A
>> Inserting city A (0,9385)
 
insert 0 9386 A
>> Inserting city A (0,9386)
 
insert 0 9387 A
>> Inserting city A (0,9387)
 
insert 0 9388 A
>> Inserting city A (0,9388)
 
insert 0 9389 A
>> Inserting city A (0,9389)
 
insert 0 9390 A
>> Inserting city A (0,9390)
 
insert 0 9391 A
>> Inserting city A (0,9391)
 
insert 0 9392 A
>> Inserting city A (0,9392)
 
insert 0 9393 A
>> Inserting city A (0,9393)
 
insert 0 9394 A
>> Inserting city A (0,9394)
 
insert 0 9395 A
>> Inserting city A (0,9395)
 
insert 0 9396 A
>> Inserting city A (0,9396)
 
insert 0 9397 A
>> Inserting city A (0,9397)
 
insert 0 9398 A
>> Inserting city A (0,9398)
 
insert 0 9399 A
>> Inserting city A (0,9399)
 
insert 0 9400 A
>> Inserting city A (0,9400)
 
insert 0 9401 A
>> Inserting city A (0,9401)
 
insert 0 9402 A
>> Inserting city A (0,9402)
 
insert 0 9403 A
>> Inserting city A (0,9403)
 
insert 0 9404 A
>> Inserting city A (0,9404)
 
insert 0 9405 A
>> Inserting city A (0,9405)
 
insert 0 9406 A
>> Inserting city A (0,9406)
 
insert 0 9407 A
>> Inserting city A (0,9407)
 
insert 0 9408 A
>> Inserting city A (0,9408)
 
insert 0 9409 A
>> Inserting city A (0,9409)
 
insert 0 9410 A
>> Inserting city A (0,9410)
 
insert 0 9411 A
>> Inserting city A (0,9411)
 
insert 0 9412 A
>> Inserting city A (0,9412)
 
insert 0 9413 A
>> Inserting city A (0,9413)
 
insert 0 9414 A
>> Inserting city A (0,9414)
 
insert 0 9415 A
>> Inserting city A (0,9415)
 
insert 0 9416 A
>> Inserting city A (0,9416)
 
insert 0 9417 A
>> Inserting city A (0,9417)
 
insert 0 9418 A
>> Inserting city A (0,9418)
 
insert 0 9419 A
>> Inserting city A (0,9419)
 
insert 0 9420 A
>> Inserting city A (0,9420)
 
insert 0 9421 A
>> Inserting city A (0,9421)
 
insert 0 9422 A
>> Inserting city A (0,9422)
 
insert 0 9423 A
>> Inserting city A (0,9423)
 
insert 0 9424 A
>> Inserting city A (0,9424)
 
insert 0 9425 A
>> Inserting city A (0,9425)
 
insert 0 9426 A
>> Inserting city A (0,9426)
 
insert 0 9427 A
>> Inserting city A (0,9427)
 
insert 0 9428 A
>> Inserting city A (0,9428)
 
insert 0 9429 A
>> Inserting city A (0,9429)
 
insert 0 9430 A
>> Inserting city A (0,9430)
 
insert 0 9431 A
>> Inserting city A (0,9431)
 
insert 0 9432 A
>> Inserting city A (0,9432)
 
insert 0 9433 A
>> Inserting city A (0,9433)
 
insert 0 9434 A
>> Inserting city A (0,9434)
 
insert 0 9435 A
>> Inserting city A (0,9435)
 
insert 0 9436 A
>> Inserting city A (0,9436)
 
insert 0 9437 A
>> Inserting city A (0,9437)
 
insert 0 9438 A
>> Inserting city A (0,9438)
 
insert 0 9439 A
>> Inserting city A (0,9439)
 
insert 0 9440 A
>> Inserting city A (0,9440)
 
insert 0 9441 A
>> Inserting city A (0,9441)
 
insert 0 9442 A
>> Inserting city A (0,9442)
 
insert 0 9443 A
>> Inserting city A (0,9443)
 
insert 0 9444 A
>> Inserting city A (0,9444)
 
insert 0 9445 A
>> Inserting city A (0,9445)
 
insert 0 9446 A
>> Inserting city A (0,9446)
 
insert 0 9447 A
>> Inserting city A (0,9447)
 
insert 0 9448 A
>> Inserting city A (0,9448)
 
insert 0 9449 A
>> Inserting city A (0,9449)
 
insert 0 9450 A
>> Inserting city A (0,9450)
 
insert 0 9451 A
>> Inserting city A (0,9451)
 
insert 0 9452 A
>> Inserting city A (0,9452)
 
insert 0 9453 A
>> Inserting city A (0,9453)
 
insert 0 9454 A
>> Inserting city A (0,9454)
 
insert 0 9455 A
>> Inserting city A (0,9455)
 
insert 0 9456 A
>> Inserting city A (0,9456)
 
insert 0 9457 A
>> Inserting city A (0,9457)
 
insert 0 9458 A
>> Inserting city A (0,9458)
 
insert 0 9459 A
>> Inserting city A (0,9459)
 
insert 0 9460 A
>> Inserting city A (0,9460)
 
insert 0 9461 A
>> Inserting city A (0,9461)
 
insert 0 9462 A
>> Inserting city A (0,9462)
 
insert 0 9463 A
>> Inserting city A (0,9463)
 
insert 0 9464 A
>> Inserting city A (0,9464)
 
insert 0 9465 A
>> Inserting city A (0,9465)
 
insert 0 9466 A
>> Inserting city A (0,9466)
 
insert 0 9467 A
>> Inserting city A (0,9467)
 
insert 0 9468 A
>> Inserting city A (0,9468)
 
insert 0 9469 A
>> Inserting city A (0,9469)
 
insert 0 9470 A
>> Inserting city A (0,9470)
 
insert 0 9471 A
>> Inserting city A (0,9471)
 
insert 0 9472 A
>> Inserting city A (0,9472)
 
insert 0 9473 A
>> Inserting city A (0,9473)
 
insert 0 9474 A
>> Inserting city A (0,9474)
 
insert 0 9475 A
>> Inserting city A (0,9475)
 
insert 0 9476 A
>> Inserting city A (0,9476)
 
insert 0 9477 A
>> Inserting city A (0,9477)
 
insert 0 9478 A
>> Inserting city A (0,9478)
 
insert 0 9479 A
>> Inserting city A (0,9479)
 
insert 0 9480 A
>> Inserting city A (0,9480)
 
insert 0 9481 A
>> Inserting city A (0,9481)
 
insert 0 9482 A
>> Inserting city A (0,9482)
 
insert 0 9483 A
>> Inserting city A (0,9483)
 
insert 0 9484 A
>> Inserting city A (0,9484)
 
insert 0 9485 A
>> Inserting city A (0,9485)
 
insert 0 9486 A
>> Inserting city A (0,9486)
 
insert 0 9487 A
>> Inserting city A (0,9487)
 
insert 0 9488 A
>> Inserting city A (0,9488)
 
insert 0 9489 A
>> Inserting city A (0,9489)
 
insert 0 9490 A
>> Inserting city A (0,9490)
 
insert 0 9491 A
>> Inserting city A (0,9491)
 
insert 0 9492 A
>> Inserting city A (0,9492)
 
insert 0 9493 A
>> Inserting city A (0,9493)
 
insert 0 9494 A
>> Inserting city A (0,9494)
 
insert 0 9495 A
>> Inserting city A (0,9495)
 
insert 0 9496 A
>> Inserting city A (0,9496)
 
insert 0 9497 A
>> Inserting city A (0,9497)
 
insert 0 9498 A
>> Inserting city A (0,9498)
 
insert 0 9499 A
>> Inserting city A (0,9499)
 
insert 0 9500 A
>> Inserting city A (0,9500)
 
insert 0 9501 A
>> Inserting city A (0,9501)
 
insert 0 9502 A
>> Inserting city A (0,9502)
 
insert 0 9503 A
>> Inserting city A (0,9503)
 
insert 0 9504 A
>> Inserting city A (0,9504)
 
insert 0 9505 A
>> Inserting city A (0,9505)
 
insert 0 9506 A
>> Inserting city A (0,9506)
 
insert 0 9507 A
>> Inserting city A (0,9507)
 
insert 0 9508 A
>> Inserting city A (0,9508)
 
insert 0 9509 A
>> Inserting city A (0,9509)
 
insert 0 9510 A
>> Inserting city A (0,9510)
 
insert 0 9511 A
>> Inserting city A (0,9511)
 
insert 0 9512 A
>> Inserting city A (0,9512)
 
insert 0 9513 A
>> Inserting city A (0,9513)
 
insert 0 9514 A
>> Inserting city A (0,9514)
 
insert 0 9515 A
>> Inserting city A (0,9515)
 
insert 0 9516 A
>> Inserting city A (0,9516)
 
insert 0 9517 A
>> Inserting city A (0,9517)
 
insert 0 9518 A
>> Inserting city A (0,9518)
 
insert 0 9519 A
>> Inserting city A (0,9519)
 
insert 0 9520 A
>> Inserting city A (0,9520)
 
insert 0 9521 A
>> Inserting city A (0,9521)
 
insert 0 9522 A
>> Inserting city A (0,9522)
 
insert 0 9523 A
>> Inserting city A (0,9523)
 
insert 0 9524 A
>> Inserting city A (0,9524)
 
insert 0 9525 A
>> Inserting city A (0,9525)
 
insert 0 9526 A
>> Inserting city A (0,9526)
 
insert 0 9527 A
>> Inserting city A (0,9527)
 
insert 0 9528 A
>> Inserting city A (0,9528)
 
insert 0 9529 A
>> Inserting city A (0,9529)
 
insert 0 9530 A
>> Inserting city A (0,9530)
 
insert 0 9531 A
>> Inserting city A (0,9531)
 
insert 0 9532 A
>> Inserting city A (0,9532)
 
insert 0 9533 A
>> Inserting city A (0,9533)
 
insert 0 9534 A
>> Inserting city A (0,9534)
 
insert 0 9535 A
>> Inserting city A (0,9535)
 
insert 0 9536 A
>> Inserting city A (0,9536)
 
insert 0 9537 A
>> Inserting city A (0,9537)
 
insert 0 9538 A
>> Inserting city A (0,9538)
 
insert 0 9539 A
>> Inserting city A (0,9539)
 
insert 0 9540 A
>> Inserting city A (0,9540)
 
insert 0 9541 A
>> Inserting city A (0,9541)
 
insert 0 9542 A
>> Inserting city A (0,9542)
 
insert 0 9543 A
>> Inserting city A (0,9543)
 
insert 0 9544 A
>> Inserting city A (0,9544)
 
insert 0 9545 A
>> Inserting city A (0,9545)
 
insert 0 9546 A
>> Inserting city A (0,9546)
 
insert 0 9547 A
>> Inserting city A (0,9547)
 
insert 0 9548 A
>> Inserting city A (0,9548)
 
insert 0 9549 A
>> Inserting city A (0,9549)
 
insert 0 9550 A
>> Inserting city A (0,9550)
 
insert 0 9551 A
>> Inserting city A (0,9551)
 
insert 0 9552 A
>> Inserting city A (0,9552)
 
insert 0 9553 A
>> Inserting city A (0,9553)
 
insert 0 9554 A
>> Inserting city A (0,9554)
 
insert 0 9555 A
>> Inserting city A (0,9555)
 
insert 0 9556 A
>> Inserting city A (0,9556)
 
insert 0 9557 A
>> Inserting city A (0,9557)
 
insert 0 9558 A
>> Inserting city A (0,9558)
 
insert 0 9559 A
>> Inserting city A (0,9559)
 
insert 0 9560 A
>> Inserting city A (0,9560)
 
insert 0 9561 A
>> Inserting city A (0,9561)
 
insert 0 9562 A
>> Inserting city A (0,9562)
 
insert 0 9563 A
>> Inserting city A (0,9563)
 
insert 0 9564 A
>> Inserting city A (0,9564)
 
insert 0 9565 A
>> Inserting city A (0,9565)
 
insert 0 9566 A
>> Inserting city A (0,9566)
 
insert 0 9567 A
>> Inserting city A (0,9567)
 
insert 0 9568 A
>> Inserting city A (0,9568)
 
insert 0 9569 A
>> Inserting city A (0,9569)
 
insert 0 9570 A
>> Inserting city A (0,9570)
 
insert 0 9571 A
>> Inserting city A (0,9571)
 
insert 0 9572 A
>> Inserting city A (0,9572)
 
insert 0 9573 A
>> Inserting city A (0,9573)
 
insert 0 9574 A
>> Inserting city A (0,9574)
 
insert 0 9575 A
>> Inserting city A (0,9575)
 
insert 0 9576 A
>> Inserting city A (0,9576)
 
insert 0 9577 A
>> Inserting city A (0,9577)
 
insert 0 9578 A
>> Inserting city A (0,9578)
 
insert 0 9579 A
>> Inserting city A (0,9579)
 
insert 0 9580 A
>> Inserting city A (0,9580)
 
insert 0 9581 A
>> Inserting city A (0,9581)
 
insert 0 9582 A
>> Inserting city A (0,9582)
 
insert 0 9583 A
>> Inserting city A (0,9583)
 
insert 0 9584 A
>> Inserting city A (0,9584)
 
insert 0 9585 A
>> Inserting city A (0,9585)
 
insert 0 9586 A
>> Inserting city A (0,9586)
 
insert 0 9587 A
>> Inserting city A (0,9587)
 
insert 0 9588 A
>> Inserting city A (0,9588)
 
insert 0 9589 A
>> Inserting city A (0,9589)
 
insert 0 9590 A
>> Inserting city A (0,9590)
 
insert 0 9591 A
>> Inserting city A (0,9591)
 
insert 0 9592 A
>> Inserting city A (0,9592)
 
insert 0 9593 A
>> Inserting city A (0,9593)
 
insert 0 9594 A
>> Inserting city A (0,9594)
 
insert 0 9595 A
>> Inserting city A (0,9595)
 
insert 0 9596 A
>> Inserting city A (0,9596)
 
insert 0 9597 A
>> Inserting city A (0,9597)
 
insert 0 9598 A
>> Inserting city A (0,9598)
 
insert 0 9599 A
>> Inserting city A (0,9599)
 
insert 0 9600 A
>> Inserting city A (0,9600)
 
insert 0 9601 A
>> Inserting city A (0,9601)
 
insert 0 9602 A
>> Inserting city A (0,9602)
 
insert 0 9603 A
>> Inserting city A (0,9603)
 
insert 0 9604 A
>> Inserting city A (0,9604)
 
insert 0 9605 A
>> Inserting city A (0,9605)
 
insert 0 9606 A
>> Inserting city A (0,9606)
 
insert 0 9607 A
>> Inserting city A (0,9607)
 
insert 0 9608 A
>> Inserting city A (0,9608)
 
insert 0 9609 A
>> Inserting city A (0,9609)
 
insert 0 9610 A
>> Inserting city A (0,9610)
 
insert 0 9611 A
>> Inserting city A (0,9611)
 
insert 0 9612 A
>> Inserting city A (0,9612)
 
insert 0 9613 A
>> Inserting city A (0,9613)
 
insert 0 9614 A
>> Inserting city A (0,9614)
 
insert 0 9615 A
>> Inserting city A (0,9615)
 
insert 0 9616 A
>> Inserting city A (0,9616)
 
insert 0 9617 A
>> Inserting city A (0,9617)
 
insert 0 9618 A
>> Inserting city A (0,9618)
 
insert 0 9619 A
>> Inserting city A (0,9619)
 
insert 0 9620 A
>> Inserting city A (0,9620)
 
insert 0 9621 A
>> Inserting city A (0,9621)
 
insert 0 9622 A
>> Inserting city A (0,9622)
 
insert 0 9623 A
>> Inserting city A (0,9623)
 
insert 0 9624 A
>> Inserting city A (0,9624)
 
insert 0 9625 A
>> Inserting city A (0,9625)
 
insert 0 9626 A
>> Inserting city A (0,9626)
 
insert 0 9627 A
>> Inserting city A (0,9627)
 
insert 0 9628 A
>> Inserting city A (0,9628)
 
insert 0 9629 A
>> Inserting city A (0,9629)
 
insert 0 9630 A
>> Inserting city A (0,9630)
 
insert 0 9631 A
>> Inserting city A (0,9631)
 
insert 0 9632 A
>> Inserting city A (0,9632)
 
insert 0 9633 A
>> Inserting city A (0,9633)
 
insert 0 9634 A
>> Inserting city A (0,9634)
 
insert 0 9635 A
>> Inserting city A (0,9635)
 
insert 0 9636 A
>> Inserting city A (0,9636)
 
insert 0 9637 A
>> Inserting city A (0,9637)
 
insert 0 9638 A
>> Inserting city A (0,9638)
 
insert 0 9639 A
>> Inserting city A (0,9639)
 
insert 0 9640 A
>> Inserting city A (0,9640)
 
insert 0 9641 A
>> Inserting city A (0,9641)
 
insert 0 9642 A
>> Inserting city A (0,9642)
 
insert 0 9643 A
>> Inserting city A (0,9643)
 
insert 0 9644 A
>> Inserting city A (0,9644)
 
insert 0 9645 A
>> Inserting city A (0,9645)
 
insert 0 9646 A
>> Inserting city A (0,9646)
 
insert 0 9647 A
>> Inserting city A (0,9647)
 
insert 0 9648 A
>> Inserting city A (0,9648)
 
insert 0 9649 A
>> Inserting city A (0,9649)
 
insert 0 9650 A
>> Inserting city A (0,9650)
 
insert 0 9651 A
>> Inserting city A (0,9651)
 
insert 0 9652 A
>> Inserting city A (0,9652)
 
insert 0 9653 A
>> Inserting city A (0,9653)
 
insert 0 9654 A
>> Inserting city A (0,9654)
 
insert 0 9655 A
>> Inserting city A (0,9655)
 
insert 0 9656 A
>> Inserting city A (0,9656)
 
insert 0 9657 A
>> Inserting city A (0,9657)
 
insert 0 9658 A
>> Inserting city A (0,9658)
 
insert 0 9659 A
>> Inserting city A (0,9659)
 
insert 0 9660 A
>> Inserting city A (0,9660)
 
insert 0 9661 A
>> Inserting city A (0,9661)
 
insert 0 9662 A
>> Inserting city A (0,9662)
 
insert 0 9663 A
>> Inserting city A (0,9663)
 
insert 0 9664 A
>> Inserting city A (0,9664)
 
insert 0 9665 A
>> Inserting city A (0,9665)
 
insert 0 9666 A
>> Inserting city A (0,9666)
 
insert 0 9667 A
>> Inserting city A (0,9667)
 
insert 0 9668 A
>> Inserting city A (0,9668)
 
insert 0 9669 A
>> Inserting city A (0,9669)
 
insert 0 9670 A
>> Inserting city A (0,9670)
 
insert 0 9671 A
>> Inserting city A (0,9671)
 
insert 0 9672 A
>> Inserting city A (0,9672)
 
insert 0 9673 A
>> Inserting city A (0,9673)
 
insert 0 9674 A
>> Inserting city A (0,9674)
 
insert 0 9675 A
>> Inserting city A (0,9675)
 
insert 0 9676 A
>> Inserting city A (0,9676)
 
insert 0 9677 A
>> Inserting city A (0,9677)
 
insert 0 9678 A
>> Inserting city A (0,9678)
 
insert 0 9679 A
>> Inserting city A (0,9679)
 
insert 0 9680 A
>> Inserting city A (0,9680)
 
insert 0 9681 A
>> Inserting city A (0,9681)
 
insert 0 9682 A
>> Inserting city A (0,9682)
 
insert 0 9683 A
>> Inserting city A (0,9683)
 
insert 0 9684 A
>> Inserting city A (0,9684)
 
insert 0 9685 A
>> Inserting city A (0,9685)
 
insert 0 9686 A
>> Inserting city A (0,9686)
 
insert 0 9687 A
>> Inserting city A (0,9687)
 
insert 0 9688 A
>> Inserting city A (0,9688)
 
insert 0 9689 A
>> Inserting city A (0,9689)
 
insert 0 9690 A
>> Inserting city A (0,9690)
 
insert 0 9691 A
>> Inserting city A (0,9691)
 
insert 0 9692 A
>> Inserting city A (0,9692)
 
insert 0 9693 A
>> Inserting city A (0,9693)
 
insert 0 9694 A
>> Inserting city A (0,9694)
 
insert 0 9695 A
>> Inserting city A (0,9695)
 
insert 0 9696 A
>> Inserting city A (0,9696)
 
insert 0 9697 A
>> Inserting city A (0,9697)
 
insert 0 9698 A
>> Inserting city A (0,9698)
 
insert 0 9699 A
>> Inserting city A (0,9699)
 
insert 0 9700 A
>> Inserting city A (0,9700)
 
insert 0 9701 A
>> Inserting city A (0,9701)
 
insert 0 9702 A
>> Inserting city A (0,9702)
 
insert 0 9703 A
>> Inserting city A (0,9703)
 
insert 0 9704 A
>> Inserting city A (0,9704)
 
insert 0 9705 A
>> Inserting city A (0,9705)
 
insert 0 9706 A
>> Inserting city A (0,9706)
 
insert 0 9707 A
>> Inserting city A (0,9707)
 
insert 0 9708 A
>> Inserting city A (0,9708)
 
insert 0 9709 A
>> Inserting city A (0,9709)
 
insert 0 9710 A
>> Inserting city A (0,9710)
 
insert 0 9711 A
>> Inserting city A (0,9711)
 
insert 0 9712 A
>> Inserting city A (0,9712)
 
insert 0 9713 A
>> Inserting city A (0,9713)
 
insert 0 9714 A
>> Inserting city A (0,9714)
 
insert 0 9715 A
>> Inserting city A (0,9715)
 
insert 0 9716 A
>> Inserting city A (0,9716)
 
insert 0 9717 A
>> Inserting city A (0,9717)
 
insert 0 9718 A
>> Inserting city A (0,9718)
 
insert 0 9719 A
>> Inserting city A (0,9719)
 
insert 0 9720 A
>> Inserting city A (0,9720)
 
insert 0 9721 A
>> Inserting city A (0,9721)
 
insert 0 9722 A
>> Inserting city A (0,9722)
 
insert 0 9723 A
>> Inserting city A (0,9723)
 
insert 0 9724 A
>> Inserting city A (0,9724)
 
insert 0 9725 A
>> Inserting city A (0,9725)
 
insert 0 9726 A
>> Inserting city A (0,9726)
 
insert 0 9727 A
>> Inserting city A (0,9727)
 
insert 0 9728 A
>> Inserting city A (0,9728)
 
insert 0 9729 A
>> Inserting city A (0,9729)
 
insert 0 9730 A
>> Inserting city A (0,9730)
 
insert 0 9731 A
>> Inserting city A (0,9731)
 
insert 0 9732 A
>> Inserting city A (0,9732)
 
insert 0 9733 A
>> Inserting city A (0,9733)
 
insert 0 9734 A
>> Inserting city A (0,9734)
 
insert 0 9735 A
>> Inserting city A (0,9735)
 
insert 0 9736 A
>> Inserting city A (0,9736)
 
insert 0 9737 A
>> Inserting city A (0,9737)
 
insert 0 9738 A
>> Inserting city A (0,9738)
 
insert 0 9739 A
>> Inserting city A (0,9739)
 
insert 0 9740 A
>> Inserting city A (0,9740)
 
insert 0 9741 A
>> Inserting city A (0,9741)
 
insert 0 9742 A
>> Inserting city A (0,9742)
 
insert 0 9743 A
>> Inserting city A (0,9743)
 
insert 0 9744 A
>> Inserting city A (0,9744)
 
insert 0 9745 A
>> Inserting city A (0,9745)
 
insert 0 9746 A
>> Inserting city A (0,9746)
 
insert 0 9747 A
>> Inserting city A (0,9747)
 
insert 0 9748 A
>> Inserting city A (0,9748)
 
insert 0 9749 A
>> Inserting city A (0,9749)
 
insert 0 9750 A
>> Inserting city A (0,9750)
 
insert 0 9751 A
>> Inserting city A (0,9751)
 
insert 0 9752 A
>> Inserting city A (0,9752)
 
insert 0 9753 A
>> Inserting city A (0,9753)
 
insert 0 9754 A
>> Inserting city A (0,9754)
 
insert 0 9755 A
>> Inserting city A (0,9755)
 
insert 0 9756 A
>> Inserting city A (0,9756)
 
insert 0 9757 A
>> Inserting city A (0,9757)
 
insert 0 9758 A
>> Inserting city A (0,9758)
 
insert 0 9759 A
>> Inserting city A (0,9759)
 
insert 0 9760 A
>> Inserting city A (0,9760)
 
insert 0 9761 A
>> Inserting city A (0,9761)
 
insert 0 9762 A
>> Inserting city A (0,9762)
 
insert 0 9763 A
>> Inserting city A (0,9763)
 
insert 0 9764 A
>> Inserting city A (0,9764)
 
insert 0 9765 A
>> Inserting city A (0,9765)
 
insert 0 9766 A
>> Inserting city A (0,9766)
 
insert 0 9767 A
>> Inserting city A (0,9767)
 
insert 0 9768 A
>> Inserting city A (0,9768)
 
insert 0 9769 A
>> Inserting city A (0,9769)
 
insert 0 9770 A
>> Inserting city A (0,9770)
 
insert 0 9771 A
>> Inserting city A (0,9771)
 
insert 0 9772 A
>> Inserting city A (0,9772)
 
insert 0 9773 A
>> Inserting city A (0,9773)
 
insert 0 9774 A
>> Inserting city A (0,9774)
 
insert 0 9775 A
>> Inserting city A (0,9775)
 
insert 0 9776 A
>> Inserting city A (0,9776)
 
insert 0 9777 A
>> Inserting city A (0,9777)
 
insert 0 9778 A
>> Inserting city A (0,9778)
 
insert 0 9779 A
>> Inserting city A (0,9779)
 
insert 0 9780 A
>> Inserting city A (0,9780)
 
insert 0 9781 A
>> Inserting city A (0,9781)
 
insert 0 9782 A
>> Inserting city A (0,9782)
 
insert 0 9783 A
>> Inserting city A (0,9783)
 
insert 0 9784 A
>> Inserting city A (0,9784)
 
insert 0 9785 A
>> Inserting city A (0,9785)
 
insert 0 9786 A
>> Inserting city A (0,9786)
 
insert 0 9787 A
>> Inserting city A (0,9787)
 
insert 0 9788 A
>> Inserting city A (0,9788)
 
insert 0 9789 A
>> Inserting city A (0,9789)
 
insert 0 9790 A
>> Inserting city A (0,9790)
 
insert 0 9791 A
>> Inserting city A (0,9791)
 
insert 0 9792 A
>> Inserting city A (0,9792)
 
insert 0 9793 A
>> Inserting city A (0,9793)
 
insert 0 9794 A
>> Inserting city A (0,9794)
 
insert 0 9795 A
>> Inserting city A (0,9795)
 
insert 0 9796 A
>> Inserting city A (0,9796)
 
insert 0 9797 A
>> Inserting city A (0,9797)
 
insert 0 9798 A
>> Inserting city A (0,9798)
 
insert 0 9799 A
>> Inserting city A (0,9799)
 
insert 0 9800 A
>> Inserting city A (0,9800)
 
insert 0 9801 A
>> Inserting city A (0,9801)
 
insert 0 9802 A
>> Inserting city A (0,9802)
 
insert 0 9803 A
>> Inserting city A (0,9803)
 
insert 0 9804 A
>> Inserting city A (0,9804)
 
insert 0 9805 A
>> Inserting city A (0,9805)
 
insert 0 9806 A
>> Inserting city A (0,9806)
 
insert 0 9807 A
>> Inserting city A (0,9807)
 
insert 0 9808 A
>> Inserting city A (0,9808)
 
insert 0 9809 A
>> Inserting city A (0,9809)
 
insert 0 9810 A
>> Inserting city A (0,9810)
 
insert 0 9811 A
>> Inserting city A (0,9811)
 
insert 0 9812 A
>> Inserting city A (0,9812)
 
insert 0 9813 A
>> Inserting city A (0,9813)
 
insert 0 9814 A
>> Inserting city A (0,9814)
 
insert 0 9815 A
>> Inserting city A (0,9815)
 
insert 0 9816 A
>> Inserting city A (0,9816)
 
insert 0 9817 A
>> Inserting city A (0,9817)
 
insert 0 9818 A
>> Inserting city A (0,9818)
 
insert 0 9819 A
>> Inserting city A (0,9819)
 
insert 0 9820 A
>> Inserting city A (0,9820)
 
insert 0 9821 A
>> Inserting city A (0,9821)
 
insert 0 9822 A
>> Inserting city A (0,9822)
 
insert 0 9823 A
>> Inserting city A (0,9823)
 
insert 0 9824 A
>> Inserting city A (0,9824)
 
insert 0 9825 A
>> Inserting city A (0,9825)
 
insert 0 9826 A
>> Inserting city A (0,9826)
 
insert 0 9827 A
>> Inserting city A (0,9827)
 
insert 0 9828 A
>> Inserting city A (0,9828)
 
insert 0 9829 A
>> Inserting city A (0,9829)
 
insert 0 9830 A
>> Inserting city A (0,9830)
 
insert 0 9831 A
>> Inserting city A (0,9831)
 
insert 0 9832 A
>> Inserting city A (0,9832)
 
insert 0 9833 A
>> Inserting city A (0,9833)
 
insert 0 9834 A
>> Inserting city A (0,9834)
 
insert 0 9835 A
>> Inserting city A (0,9835)
 
insert 0 9836 A
>> Inserting city A (0,9836)
 
insert 0 9837 A
>> Inserting city A (0,9837)
 
insert 0 9838 A
>> Inserting city A (0,9838)
 
insert 0 9839 A
>> Inserting city A (0,9839)
 
insert 0 9840 A
>> Inserting city A (0,9840)
 
insert 0 9841 A
>> Inserting city A (0,9841)
 
insert 0 9842 A
>> Inserting city A (0,9842)
 
insert 0 9843 A
>> Inserting city A (0,9843)
 
insert 0 9844 A
>> Inserting city A (0,9844)
 
insert 0 9845 A
>> Inserting city A (0,9845)
 
insert 0 9846 A
>> Inserting city A (0,9846)
 
insert 0 9847 A
>> Inserting city A (0,9847)
 
insert 0 9848 A
>> Inserting city A (0,9848)
 
insert 0 9849 A
>> Inserting city A (0,9849)
 
insert 0 9850 A
>> Inserting city A (0,9850)
 
insert 0 9851 A
>> Inserting city A (0,9851)
 
insert 0 9852 A
>> Inserting city A (0,9852)
 
insert 0 9853 A
>> Inserting city A (0,9853)
 
insert 0 9854 A
>> Inserting city A (0,9854)
 
insert 0 9855 A
>> Inserting city A (0,9855)
 
insert 0 9856 A
>> Inserting city A (0,9856)
 
insert 0 9857 A
>> Inserting city A (0,9857)
 
insert 0 9858 A
>> Inserting city A (0,9858)
 
insert 0 9859 A
>> Inserting city A (0,9859)
 
insert 0 9860 A
>> Inserting city A (0,9860)
 
insert 0 9861 A
>> Inserting city A (0,9861)
 
insert 0 9862 A
>> Inserting city A (0,9862)
 
insert 0 9863 A
>> Inserting city A (0,9863)
 
insert 0 9864 A
>> Inserting city A (0,9864)
 
insert 0 9865 A
>> Inserting city A (0,9865)
 
insert 0 9866 A
>> Inserting city A (0,9866)
 
insert 0 9867 A
>> Inserting city A (0,9867)
 
insert 0 9868 A
>> Inserting city A (0,9868)
 
insert 0 9869 A
>> Inserting city A (0,9869)
 
insert 0 9870 A
>> Inserting city A (0,9870)
 
insert 0 9871 A
>> Inserting city A (0,9871)
 
insert 0 9872 A
>> Inserting city A (0,9872)
 
insert 0 9873 A
>> Inserting city A (0,9873)
 
insert 0 9874 A
>> Inserting city A (0,9874)
 
insert 0 9875 A
>> Inserting city A (0,9875)
 
insert 0 9876 A
>> Inserting city A (0,9876)
 
insert 0 9877 A
>> Inserting city A (0,9877)
 
insert 0 9878 A
>> Inserting city A (0,9878)
 
insert 0 9879 A
>> Inserting city A (0,9879)
 
insert 0 9880 A
>> Inserting city A (0,9880)
 
insert 0 9881 A
>> Inserting city A (0,9881)
 
insert 0 9882 A
>> Inserting city A (0,9882)
 
insert 0 9883 A
>> Inserting city A (0,9883)
 
insert 0 9884 A
>> Inserting city A (0,9884)
 
insert 0 9885 A
>> Inserting city A (0,9885)
 
insert 0 9886 A
>> Inserting city A (0,9886)
 
insert 0 9887 A
>> Inserting city A (0,9887)
 
insert 0 9888 A
>> Inserting city A (0,9888)
 
insert 0 9889 A
>> Inserting city A (0,9889)
 
insert 0 9890 A
>> Inserting city A (0,9890)
 
insert 0 9891 A
>> Inserting city A (0,9891)
 
insert 0 9892 A
>> Inserting city A (0,9892)
 
insert 0 9893 A
>> Inserting city A (0,9893)
 
insert 0 9894 A
>> Inserting city A (0,9894)
 
insert 0 9895 A
>> Inserting city A (0,9895)
 
insert 0 9896 A
>> Inserting city A (0,9896)
 
insert 0 9897 A
>> Inserting city A (0,9897)
 
insert 0 9898 A
>> Inserting city A (0,9898)
 
insert 0 9899 A
>> Inserting city A (0,9899)
 
insert 0 9900 A
>> Inserting city A (0,9900)
 
insert 0 9901 A
>> Inserting city A (0,9901)
 
insert 0 9902 A
>> Inserting city A (0,9902)
 
insert 0 9903 A
>> Inserting city A (0,9903)
 
insert 0 9904 A
>> Inserting city A (0,9904)
 
insert 0 9905 A
>> Inserting city A (0,9905)
 
insert 0 9906 A
>> Inserting city A (0,9906)
 
insert 0 9907 A
>> Inserting city A (0,9907)
 
insert 0 9908 A
>> Inserting city A (0,9908)
 
insert 0 9909 A
>> Inserting city A (0,9909)
 
insert 0 9910 A
>> Inserting city A (0,9910)
 
insert 0 9911 A
>> Inserting city A (0,9911)
 
insert 0 9912 A
>> Inserting city A (0,9912)
 
insert 0 9913 A
>> Inserting city A (0,9913)
 
insert 0 9914 A
>> Inserting city A (0,9914)
 
insert 0 9915 A
>> Inserting city A (0,9915)
 
insert 0 9916 A
>> Inserting city A (0,9916)
 
insert 0 9917 A
>> Inserting city A (0,9917)
 
insert 0 9918 A
>> Inserting city A (0,9918)
 
insert 0 9919 A
>> Inserting city A (0,9919)
 
insert 0 9920 A
>> Inserting city A (0,9920)
 
insert 0 9921 A
>> Inserting city A (0,9921)
 
insert 0 9922 A
>> Inserting city A (0,9922)
 
insert 0 9923 A
>> Inserting city A (0,9923)
 
insert 0 9924 A
>> Inserting city A (0,9924)
 
insert 0 9925 A
>> Inserting city A (0,9925)
 
insert 0 9926 A
>> Inserting city A (0,9926)
 
insert 0 9927 A
>> Inserting city A (0,9927)
 
insert 0 9928 A
>> Inserting city A (0,9928)
 
insert 0 9929 A
>> Inserting city A (0,9929)
 
insert 0 9930 A
>> Inserting city A (0,9930)
 
insert 0 9931 A
>> Inserting city A (0,9931)
 
insert 0 9932 A
>> Inserting city A (0,9932)
 
insert 0 9933 A
>> Inserting city A (0,9933)
 
insert 0 9934 A
>> Inserting city A (0,9934)
 
insert 0 9935 A
>> Inserting city A (0,9935)
 
insert 0 9936 A
>> Inserting city A (0,9936)
 
insert 0 9937 A
>> Inserting city A (0,9937)
 
insert 0 9938 A
>> Inserting city A (0,9938)
 
insert 0 9939 A
>> Inserting city A (0,9939)
 
insert 0 9940 A
>> Inserting city A (0,9940)
 
insert 0 9941 A
>> Inserting city A (0,9941)
 
insert 0 9942 A
>> Inserting city A (0,9942)
 
insert 0 9943 A
>> Inserting city A (0,9943)
 
insert 0 9944 A
>> Inserting city A (0,9944)
 
insert 0 9945 A
>> Inserting city A (0,9945)
 
insert 0 9946 A
>> Inserting city A (0,9946)
 
insert 0 9947 A
>> Inserting city A (0,9947)
 
insert 0 9948 A
>> Inserting city A (0,9948)
 
insert 0 9949 A
>> Inserting city A (0,9949)
 
insert 0 9950 A
>> Inserting city A (0,9950)
 
insert 0 9951 A
>> Inserting city A (0,9951)
 
insert 0 9952 A
>> Inserting city A (0,9952)
 
insert 0 9953 A
>> Inserting city A (0,9953)
 
insert 0 9954 A
>> Inserting city A (0,9954)
 
insert 0 9955 A
>> Inserting city A (0,9955)
 
insert 0 9956 A
>> Inserting city A (0,9956)
 
insert 0 9957 A
>> Inserting city A (0,9957)
 
insert 0 9958 A
>> Inserting city A (0,9958)
 
insert 0 9959 A
>> Inserting city A (0,9959)
 
insert 0 9960 A
>> Inserting city A (0,9960)
 
insert 0 9961 A
>> Inserting city A (0,9961)
 
insert 0 9962 A
>> Inserting city A (0,9962)
 
insert 0 9963 A
>> Inserting city A (0,9963)
 
insert 0 9964 A
>> Inserting city A (0,9964)
 
insert 0 9965 A
>> Inserting city A (0,9965)
 
insert 0 9966 A
>> Inserting city A (0,9966)
 
insert 0 9967 A
>> Inserting city A (0,9967)
 
insert 0 9968 A
>> Inserting city A (0,9968)
 
insert 0 9969 A
>> Inserting city A (0,9969)
 
insert 0 9970 A
>> Inserting city A (0,9970)
 
insert 0 9971 A
>> Inserting city A (0,9971)
 
insert 0 9972 A
>> Inserting city A (0,9972)
 
insert 0 9973 A
>> Inserting city A (0,9973)
 
insert 0 9974 A
>> Inserting city A (0,9974)
 
insert 0 9975 A
>> Inserting city A (0,9975)
 
insert 0 9976 A
>> Inserting city A (0,9976)
 
insert 0 9977 A
>> Inserting city A (0,9977)
 
insert 0 9978 A
>> Inserting city A (0,9978)
 
insert 0 9979 A
>> Inserting city A (0,9979)
 
insert 0 9980 A
>> Inserting city A (0,9980)
 
insert 0 9981 A
>> Inserting city A (0,9981)
 
insert 0 9982 A
>> Inserting city A (0,9982)
 
insert 0 9983 A
>> Inserting city A (0,9983)
 
insert 0 9984 A
>> Inserting city A (0,9984)
 
insert 0 9985 A
>> Inserting city A (0,9985)
 
insert 0 9986 A
>> Inserting city A (0,9986)
 
insert 0 9987 A
>> Inserting city A (0,9987)
 
insert 0 9988 A
>> Inserting city A (0,9988)
 
insert 0 9989 A
>> Inserting city A (0,9989)
 
insert 0 9990 A
>> Inserting city A (0,9990)
 
insert 0 9991 A
>> Inserting city A (0,9991)
 
insert 0 9992 A
>> Inserting city A (0,9992)
 
insert 0 9993 A
>> Inserting city A (0,9993)
 
insert 0 9994 A
>> Inserting city A (0,9994)
 
insert 0 9995 A
>> Inserting city A (0,9995)
 
insert 0 9996 A
>> Inserting city A (0,9996)
 
insert 0 9997 A
>> Inserting city A (0,9997)
 
insert 0 9998 A
>> Inserting city A (0,9998)
 
insert 0 9999 A
>> Inserting city A (0,9999)
 
insert 0 10000 A
>> Inserting city A (0,10000)
 
insert 0 10001 A
>> Inserting city A (0,10001)
 
insert 0 10002 A
>> Inserting city A (0,10002)
 
insert 0 10003 A
>> Inserting city A (0,10003)
 
insert 0 10004 A
>> Inserting city A (0,10004)
 
insert 0 10005 A
>> Inserting city A (0,10005)
 
insert 0 10006 A
>> Inserting city A (0,10006)
 
insert 0 10007 A
>> Inserting city A (0,10007)
 
insert 0 10008 A
>> Inserting city A (0,10008)
 
insert 0 10009 A
>> Inserting city A (0,10009)
 
insert 0 10010 A
>> Inserting city A (0,10010)
 
insert 0 10011 A
>> Inserting city A (0,10011)
 
insert 0 10012 A
>> Inserting city A (0,10012)
 
insert 0 10013 A
>> Inserting city A (0,10013)
 
insert 0 10014 A
>> Inserting city A (0,10014)
 
insert 0 10015 A
>> Inserting city A (0,10015)
 
insert 0 10016 A
>> Inserting city A (0,10016)
 
insert 0 10017 A
>> Inserting city A (0,10017)
 
insert 0 10018 A
>> Inserting city A (0,10018)
 
insert 0 10019 A
>> Inserting city A (0,10019)
 
insert 0 10020 A
>> Inserting city A (0,10020)
 
insert 0 10021 A
>> Inserting city A (0,10021)
 
insert 0 10022 A
>> Inserting city A (0,10022)
 
insert 0 10023 A
>> Inserting city A (0,10023)
 
insert 0 10024 A
>> Inserting city A (0,10024)
 
insert 0 10025 A
>> Inserting city A (0,10025)
 
insert 0 10026 A
>> Inserting city A (0,10026)
 
insert 0 10027 A
>> Inserting city A (0,10027)
 
insert 0 10028 A
>> Inserting city A (0,10028)
 
insert 0 10029 A
>> Inserting city A (0,10029)
 
insert 0 10030 A
>> Inserting city A (0,10030)
 
insert 0 10031 A
>> Inserting city A (0,10031)
 
insert 0 10032 A
>> Inserting city A (0,10032)
 
insert 0 10033 A
>> Inserting city A (0,10033)
 
insert 0 10034 A
>> Inserting city A (0,10034)
 
insert 0 10035 A
>> Inserting city A (0,10035)
 
insert 0 10036 A
>> Inserting city A (0,10036)
 
insert 0 10037 A
>> Inserting city A (0,10037)
 
insert 0 10038 A
>> Inserting city A (0,10038)
 
insert 0 10039 A
>> Inserting city A (0,10039)
 
insert 0 10040 A
>> Inserting city A (0,10040)
 
insert 0 10041 A
>> Inserting city A (0,10041)
 
insert 0 10042 A
>> Inserting city A (0,10042)
 
insert 0 10043 A
>> Inserting city A (0,10043)
 
insert 0 10044 A
>> Inserting city A (0,10044)
 
insert 0 10045 A
>> Inserting city A (0,10045)
 
insert 0 10046 A
>> Inserting city A (0,10046)
 
insert 0 10047 A
>> Inserting city A (0,10047)
 
insert 0 10048 A
>> Inserting city A (0,10048)
 
insert 0 10049 A
>> Inserting city A (0,10049)
 
insert 0 10050 A
>> Inserting city A (0,10050)
 
insert 0 10051 A
>> Inserting city A (0,10051)
 
insert 0 10052 A
>> Inserting city A (0,10052)
 
insert 0 10053 A
>> Inserting city A (0,10053)
 
insert 0 10054 A
>> Inserting city A (0,10054)
 
insert 0 10055 A
>> Inserting city A (0,10055)
 
insert 0 10056 A
>> Inserting city A (0,10056)
 
insert 0 10057 A
>> Inserting city A (0,10057)
 
insert 0 10058 A
>> Inserting city A (0,10058)
 
insert 0 10059 A
>> Inserting city A (0,10059)
 
insert 0 10060 A
>> Inserting city A (0,10060)
 
insert 0 10061 A
>> Inserting city A (0,10061)
 
insert 0 10062 A
>> Inserting city A (0,10062)
 
insert 0 10063 A
>> Inserting city A (0,10063)
 
insert 0 10064 A
>> Inserting city A (0,10064)
 
insert 0 10065 A
>> Inserting city A (0,10065)
 
insert 0 10066 A
>> Inserting city A (0,10066)
 
insert 0 10067 A
>> Inserting city A (0,10067)
 
insert 0 10068 A
>> Inserting city A (0,10068)
 
insert 0 10069 A
>> Inserting city A (0,10069)
 
insert 0 10070 A
>> Inserting city A (0,10070)
 
insert 0 10071 A
>> Inserting city A (0,10071)
 
insert 0 10072 A
>> Inserting city A (0,10072)
 
insert 0 10073 A
>> Inserting city A (0,10073)
 
insert 0 10074 A
>> Inserting city A (0,10074)
 
insert 0 10075 A
>> Inserting city A (0,10075)
 
insert 0 10076 A
>> Inserting city A (0,10076)
 
insert 0 10077 A
>> Inserting city A (0,10077)
 
insert 0 10078 A
>> Inserting city A (0,10078)
 
insert 0 10079 A
>> Inserting city A (0,10079)
 
insert 0 10080 A
>> Inserting city A (0,10080)
 
insert 0 10081 A
>> Inserting city A (0,10081)
 
insert 0 10082 A
>> Inserting city A (0,10082)
 
insert 0 10083 A
>> Inserting city A (0,10083)
 
insert 0 10084 A
>> Inserting city A (0,10084)
 
insert 0 10085 A
>> Inserting city A (0,10085)
 
insert 0 10086 A
>> Inserting city A (0,10086)
 
insert 0 10087 A
>> Inserting city A (0,10087)
 
insert 0 10088 A
>> Inserting city A (0,10088)
 
insert 0 10089 A
>> Inserting city A (0,10089)
 
insert 0 10090 A
>> Inserting city A (0,10090)
 
insert 0 10091 A
>> Inserting city A (0,10091)
 
insert 0 10092 A
>> Inserting city A (0,10092)
 
insert 0 10093 A
>> Inserting city A (0,10093)
 
insert 0 10094 A
>> Inserting city A (0,10094)
 
insert 0 10095 A
>> Inserting city A (0,10095)
 
insert 0 10096 A
>> Inserting city A (0,10096)
 
insert 0 10097 A
>> Inserting city A (0,10097)
 
insert 0 10098 A
>> Inserting city A (0,10098)
 
insert 0 10099 A
>> Inserting city A (0,10099)
 
insert 0 10100 A
>> Inserting city A (0,10100)
 
insert 0 10101 A
>> Inserting city A (0,10101)
 
insert 0 10102 A
>> Inserting city A (0,10102)
 
insert 0 10103 A
>> Inserting city A (0,10103)
 
insert 0 10104 A
>> Inserting city A (0,10104)
 
insert 0 10105 A
>> Inserting city A (0,10105)
 
insert 0 10106 A
>> Inserting city A (0,10106)
 
insert 0 10107 A
>> Inserting city A (0,10107)
 
insert 0 10108 A
>> Inserting city A (0,10108)
 
insert 0 10109 A
>> Inserting city A (0,10109)
 
insert 0 10110 A
>> Inserting city A (0,10110)
 
insert 0 10111 A
>> Inserting city A (0,10111)
 
insert 0 10112 A
>> Inserting city A (0,10112)
 
insert 0 10113 A
>> Inserting city A (0,10113)
 
insert 0 10114 A
>> Inserting city A (0,10114)
 
insert 0 10115 A
>> Inserting city A (0,10115)
 
insert 0 10116 A
>> Inserting city A (0,10116)
 
insert 0 10117 A
>> Inserting city A (0,10117)
 
insert 0 10118 A
>> Inserting city A (0,10118)
 
insert 0 10119 A
>> Inserting city A (0,10119)
 
insert 0 10120 A
>> Inserting city A (0,10120)
 
insert 0 10121 A
>> Inserting city A (0,10121)
 
insert 0 10122 A
>> Inserting city A (0,10122)
 
insert 0 10123 A
>> Inserting city A (0,10123)
 
insert 0 10124 A
>> Inserting city A (0,10124)
 
insert 0 10125 A
>> Inserting city A (0,10125)
 
insert 0 10126 A
>> Inserting city A (0,10126)
 
insert 0 10127 A
>> Inserting city A (0,10127)
 
insert 0 10128 A
>> Inserting city A (0,10128)
 
insert 0 10129 A
>> Inserting city A (0,10129)
 
insert 0 10130 A
>> Inserting city A (0,10130)
 
insert 0 10131 A
>> Inserting city A (0,10131)
 
insert 0 10132 A
>> Inserting city A (0,10132)
 
insert 0 10133 A
>> Inserting city A (0,10133)
 
insert 0 10134 A
>> Inserting city A (0,10134)
 
insert 0 10135 A
>> Inserting city A (0,10135)
 
insert 0 10136 A
>> Inserting city A (0,10136)
 
insert 0 10137 A
>> Inserting city A (0,10137)
 
insert 0 10138 A
>> Inserting city A (0,10138)
 
insert 0 10139 A
>> Inserting city A (0,10139)
 
insert 0 10140 A
>> Inserting city A (0,10140)
 
insert 0 10141 A
>> Inserting city A (0,10141)
 
insert 0 10142 A
>> Inserting city A (0,10142)
 
insert 0 10143 A
>> Inserting city A (0,10143)
 
insert 0 10144 A
>> Inserting city A (0,10144)
 
insert 0 10145 A
>> Inserting city A (0,10145)
 
insert 0 10146 A
>> Inserting city A (0,10146)
 
insert 0 10147 A
>> Inserting city A (0,10147)
 
insert 0 10148 A
>> Inserting city A (0,10148)
 
insert 0 10149 A
>> Inserting city A (0,10149)
 
insert 0 10150 A
>> Inserting city A (0,10150)
 
insert 0 10151 A
>> Inserting city A (0,10151)
 
insert 0 10152 A
>> Inserting city A (0,10152)
 
insert 0 10153 A
>> Inserting city A (0,10153)
 
insert 0 10154 A
>> Inserting city A (0,10154)
 
insert 0 10155 A
>> Inserting city A (0,10155)
 
insert 0 10156 A
>> Inserting city A (0,10156)
 
insert 0 10157 A
>> Inserting city A (0,10157)
 
insert 0 10158 A
>> Inserting city A (0,10158)
 
insert 0 10159 A
>> Inserting city A (0,10159)
 
insert 0 10160 A
>> Inserting city A (0,10160)
 
insert 0 10161 A
>> Inserting city A (0,10161)
 
insert 0 10162 A
>> Inserting city A (0,10162)
 
insert 0 10163 A
>> Inserting city A (0,10163)
 
insert 0 10164 A
>> Inserting city A (0,10164)
 
insert 0 10165 A
>> Inserting city A (0,10165)
 
insert 0 10166 A
>> Inserting city A (0,10166)
 
insert 0 10167 A
>> Inserting city A (0,10167)
 
insert 0 10168 A
>> Inserting city A (0,10168)
 
insert 0 10169 A
>> Inserting city A (0,10169)
 
insert 0 10170 A
>> Inserting city A (0,10170)
 
insert 0 10171 A
>> Inserting city A (0,10171)
 
insert 0 10172 A
>> Inserting city A (0,10172)
 
insert 0 10173 A
>> Inserting city A (0,10173)
 
insert 0 10174 A
>> Inserting city A (0,10174)
 
insert 0 10175 A
>> Inserting city A (0,10175)
 
insert 0 10176 A
>> Inserting city A (0,10176)
 
insert 0 10177 A
>> Inserting city A (0,10177)
 
insert 0 10178 A
>> Inserting city A (0,10178)
 
insert 0 10179 A
>> Inserting city A (0,10179)
 
insert 0 10180 A
>> Inserting city A (0,10180)
 
insert 0 10181 A
>> Inserting city A (0,10181)
 
insert 0 10182 A
>> Inserting city A (0,10182)
 
insert 0 10183 A
>> Inserting city A (0,10183)
 
insert 0 10184 A
>> Inserting city A (0,10184)
 
insert 0 10185 A
>> Inserting city A (0,10185)
 
insert 0 10186 A
>> Inserting city A (0,10186)
 
insert 0 10187 A
>> Inserting city A (0,10187)
 
insert 0 10188 A
>> Inserting city A (0,10188)
 
insert 0 10189 A
>> Inserting city A (0,10189)
 
insert 0 10190 A
>> Inserting city A (0,10190)
 
insert 0 10191 A
>> Inserting city A (0,10191)
 
insert 0 10192 A
>> Inserting city A (0,10192)
 
insert 0 10193 A
>> Inserting city A (0,10193)
 
insert 0 10194 A
>> Inserting city A (0,10194)
 
insert 0 10195 A
>> Inserting city A (0,10195)
 
insert 0 10196 A
>> Inserting city A (0,10196)
 
insert 0 10197 A
>> Inserting city A (0,10197)
 
insert 0 10198 A
>> Inserting city A (0,10198)
 
insert 0 10199 A
>> Inserting city A (0,10199)
 
insert 0 10200 A
>> Inserting city A (0,10200)
 
insert 0 10201 A
>> Inserting city A (0,10201)
 
insert 0 10202 A
>> Inserting city A (0,10202)
 
insert 0 10203 A
>> Inserting city A (0,10203)
 
insert 0 10204 A
>> Inserting city A (0,10204)
 
insert 0 10205 A
>> Inserting city A (0,10205)
 
insert 0 10206 A
>> Inserting city A (0,10206)
 
insert 0 10207 A
>> Inserting city A (0,10207)
 
insert 0 10208 A
>> Inserting city A (0,10208)
 
insert 0 10209 A
>> Inserting city A (0,10209)
 
insert 0 10210 A
>> Inserting city A (0,10210)
 
insert 0 10211 A
>> Inserting city A (0,10211)
 
insert 0 10212 A
>> Inserting city A (0,10212)
 
insert 0 10213 A
>> Inserting city A (0,10213)
 
insert 0 10214 A
>> Inserting city A (0,10214)
 
insert 0 10215 A
>> Inserting city A (0,10215)
 
insert 0 10216 A
>> Inserting city A (0,10216)
 
insert 0 10217 A
>> Inserting city A (0,10217)
 
insert 0 10218 A
>> Inserting city A (0,10218)
 
insert 0 10219 A
>> Inserting city A (0,10219)
 
insert 0 10220 A
>> Inserting city A (0,10220)
 
insert 0 10221 A
>> Inserting city A (0,10221)
 
insert 0 10222 A
>> Inserting city A (0,10222)
 
insert 0 10223 A
>> Inserting city A (0,10223)
 
insert 0 10224 A
>> Inserting city A (0,10224)
 
insert 0 10225 A
>> Inserting city A (0,10225)
 
insert 0 10226 A
>> Inserting city A (0,10226)
 
insert 0 10227 A
>> Inserting city A (0,10227)
 
insert 0 10228 A
>> Inserting city A (0,10228)
 
insert 0 10229 A
>> Inserting city A (0,10229)
 
insert 0 10230 A
>> Inserting city A (0,10230)
 
insert 0 10231 A
>> Inserting city A (0,10231)
 
insert 0 10232 A
>> Inserting city A (0,10232)
 
insert 0 10233 A
>> Inserting city A (0,10233)
 
insert 0 10234 A
>> Inserting city A (0,10234)
 
insert 0 10235 A
>> Inserting city A (0,10235)
 
insert 0 10236 A
>> Inserting city A (0,10236)
 
insert 0 10237 A
>> Inserting city A (0,10237)
 
insert 0 10238 A
>> Inserting city A (0,10238)
 
insert 0 10239 A
>> Inserting city A (0,10239)
 
insert 0 10240 A
>> Inserting city A (0,10240)
 
insert 0 10241 A
>> Inserting city A (0,10241)
 
insert 0 10242 A
>> Inserting city A (0,10242)
 
insert 0 10243 A
>> Inserting city A (0,10243)
 
insert 0 10244 A
>> Inserting city A (0,10244)
 
insert 0 10245 A
>> Inserting city A (0,10245)
 
insert 0 10246 A
>> Inserting city A (0,10246)
 
insert 0 10247 A
>> Inserting city A (0,10247)
 
insert 0 10248 A
>> Inserting city A (0,10248)
 
insert 0 10249 A
>> Inserting city A (0,10249)
 
insert 0 10250 A
>> Inserting city A (0,10250)
 
insert 0 10251 A
>> Inserting city A (0,10251)
 
insert 0 10252 A
>> Inserting city A (0,10252)
 
insert 0 10253 A
>> Inserting city A (0,10253)
 
insert 0 10254 A
>> Inserting city A (0,10254)
 
insert 0 10255 A
>> Inserting city A (0,10255)
 
insert 0 10256 A
>> Inserting city A (0,10256)
 
insert 0 10257 A
>> Inserting city A (0,10257)
 
insert 0 10258 A
>> Inserting city A (0,10258)
 
insert 0 10259 A
>> Inserting city A (0,10259)
 
insert 0 10260 A
>> Inserting city A (0,10260)
 
insert 0 10261 A
>> Inserting city A (0,10261)
 
insert 0 10262 A
>> Inserting city A (0,10262)
 
insert 0 10263 A
>> Inserting city A (0,10263)
 
insert 0 10264 A
>> Inserting city A (0,10264)
 
insert 0 10265 A
>> Inserting city A (0,10265)
 
insert 0 10266 A
>> Inserting city A (0,10266)
 
insert 0 10267 A
>> Inserting city A (0,10267)
 
insert 0 10268 A
>> Inserting city A (0,10268)
 
insert 0 10269 A
>> Inserting city A (0,10269)
 
insert 0 10270 A
>> Inserting city A (0,10270)
 
insert 0 10271 A
>> Inserting city A (0,10271)
 
insert 0 10272 A
>> Inserting city A (0,10272)
 
insert 0 10273 A
>> Inserting city A (0,10273)
 
insert 0 10274 A
>> Inserting city A (0,10274)
 
insert 0 10275 A
>> Inserting city A (0,10275)
 
insert 0 10276 A
>> Inserting city A (0,10276)
 
insert 0 10277 A
>> Inserting city A (0,10277)
 
insert 0 10278 A
>> Inserting city A (0,10278)
 
insert 0 10279 A
>> Inserting city A (0,10279)
 
insert 0 10280 A
>> Inserting city A (0,10280)
 
insert 0 10281 A
>> Inserting city A (0,10281)
 
insert 0 10282 A
>> Inserting city A (0,10282)
 
insert 0 10283 A
>> Inserting city A (0,10283)
 
insert 0 10284 A
>> Inserting city A (0,10284)
 
insert 0 10285 A
>> Inserting city A (0,10285)
 
insert 0 10286 A
>> Inserting city A (0,10286)
 
insert 0 10287 A
>> Inserting city A (0,10287)
 
insert 0 10288 A
>> Inserting city A (0,10288)
 
insert 0 10289 A
>> Inserting city A (0,10289)
 
insert 0 10290 A
>> Inserting city A (0,10290)
 
insert 0 10291 A
>> Inserting city A (0,10291)
 
insert 0 10292 A
>> Inserting city A (0,10292)
 
insert 0 10293 A
>> Inserting city A (0,10293)
 
insert 0 10294 A
>> Inserting city A (0,10294)
 
insert 0 10295 A
>> Inserting city A (0,10295)
 
insert 0 10296 A
>> Inserting city A (0,10296)
 
insert 0 10297 A
>> Inserting city A (0,10297)
 
insert 0 10298 A
>> Inserting city A (0,10298)
 
insert 0 10299 A
>> Inserting city A (0,10299)
 
insert 0 10300 A
>> Inserting city A (0,10300)
 
insert 0 10301 A
>> Inserting city A (0,10301)
 
insert 0 10302 A
>> Inserting city A (0,10302)
 
insert 0 10303 A
>> Inserting city A (0,10303)
 
insert 0 10304 A
>> Inserting city A (0,10304)
 
insert 0 10305 A
>> Inserting city A (0,10305)
 
insert 0 10306 A
>> Inserting city A (0,10306)
 
insert 0 10307 A
>> Inserting city A (0,10307)
 
insert 0 10308 A
>> Inserting city A (0,10308)
 
insert 0 10309 A
>> Inserting city A (0,10309)
 
insert 0 10310 A
>> Inserting city A (0,10310)
 
insert 0 10311 A
>> Inserting city A (0,10311)
 
insert 0 10312 A
>> Inserting city A (0,10312)
 
insert 0 10313 A
>> Inserting city A (0,10313)
 
insert 0 10314 A
>> Inserting city A (0,10314)
 
insert 0 10315 A
>> Inserting city A (0,10315)
 
insert 0 10316 A
>> Inserting city A (0,10316)
 
insert 0 10317 A
>> Inserting city A (0,10317)
 
insert 0 10318 A
>> Inserting city A (0,10318)
 
insert 0 10319 A
>> Inserting city A (0,10319)
 
insert 0 10320 A
>> Inserting city A (0,10320)
 
insert 0 10321 A
>> Inserting city A (0,10321)
 
insert 0 10322 A
>> Inserting city A (0,10322)
 
insert 0 10323 A
>> Inserting city A (0,10323)
 
insert 0 10324 A
>> Inserting city A (0,10324)
 
insert 0 10325 A
>> Inserting city A (0,10325)
 
insert 0 10326 A
>> Inserting city A (0,10326)
 
insert 0 10327 A
>> Inserting city A (0,10327)
 
insert 0 10328 A
>> Inserting city A (0,10328)
 
insert 0 10329 A
>> Inserting city A (0,10329)
 
insert 0 10330 A
>> Inserting city A (0,10330)
 
insert 0 10331 A
>> Inserting city A (0,10331)
 
insert 0 10332 A
>> Inserting city A (0,10332)
 
insert 0 10333 A
>> Inserting city A (0,10333)
 
insert 0 10334 A
>> Inserting city A (0,10334)
 
insert 0 10335 A
>> Inserting city A (0,10335)
 
insert 0 10336 A
>> Inserting city A (0,10336)
 
insert 0 10337 A
>> Inserting city A (0,10337)
 
insert 0 10338 A
>> Inserting city A (0,10338)
 
insert 0 10339 A
>> Inserting city A (0,10339)
 
insert 0 10340 A
>> Inserting city A (0,10340)
 
insert 0 10341 A
>> Inserting city A (0,10341)
 
insert 0 10342 A
>> Inserting city A (0,10342)
 
insert 0 10343 A
>> Inserting city A (0,10343)
 
insert 0 10344 A
>> Inserting city A (0,10344)
 
insert 0 10345 A
>> Inserting city A (0,10345)
 
insert 0 10346 A
>> Inserting city A (0,10346)
 
insert 0 10347 A
>> Inserting city A (0,10347)
 
insert 0 10348 A
>> Inserting city A (0,10348)
 
insert 0 10349 A
>> Inserting city A (0,10349)
 
insert 0 10350 A
>> Inserting city A (0,10350)
 
insert 0 10351 A
>> Inserting city A (0,10351)
 
insert 0 10352 A
>> Inserting city A (0,10352)
 
insert 0 10353 A
>> Inserting city A (0,10353)
 
insert 0 10354 A
>> Inserting city A (0,10354)
 
insert 0 10355 A
>> Inserting city A (0,10355)
 
insert 0 10356 A
>> Inserting city A (0,10356)
 
insert 0 10357 A
>> Inserting city A (0,10357)
 
insert 0 10358 A
>> Inserting city A (0,10358)
 
insert 0 10359 A
>> Inserting city A (0,10359)
 
insert 0 10360 A
>> Inserting city A (0,10360)
 
insert 0 10361 A
>> Inserting city A (0,10361)
 
insert 0 10362 A
>> Inserting city A (0,10362)
 
insert 0 10363 A
>> Inserting city A (0,10363)
 
insert 0 10364 A
>> Inserting city A (0,10364)
 
insert 0 10365 A
>> Inserting city A (0,10365)
 
insert 0 10366 A
>> Inserting city A (0,10366)
 
insert 0 10367 A
>> Inserting city A (0,10367)
 
insert 0 10368 A
>> Inserting city A (0,10368)
 
insert 0 10369 A
>> Inserting city A (0,10369)
 
insert 0 10370 A
>> Inserting city A (0,10370)
 
insert 0 10371 A
>> Inserting city A (0,10371)
 
insert 0 10372 A
>> Inserting city A (0,10372)
 
insert 0 10373 A
>> Inserting city A (0,10373)
 
insert 0 10374 A
>> Inserting city A (0,10374)
 
insert 0 10375 A
>> Inserting city A (0,10375)
 
insert 0 10376 A
>> Inserting city A (0,10376)
 
insert 0 10377 A
>> Inserting city A (0,10377)
 
insert 0 10378 A
>> Inserting city A (0,10378)
 
insert 0 10379 A
>> Inserting city A (0,10379)
 
insert 0 10380 A
>> Inserting city A (0,10380)
 
insert 0 10381 A
>> Inserting city A (0,10381)
 
insert 0 10382 A
>> Inserting city A (0,10382)
 
insert 0 10383 A
>> Inserting city A (0,10383)
 
insert 0 10384 A
>> Inserting city A (0,10384)
 
insert 0 10385 A
>> Inserting city A (0,10385)
 
insert 0 10386 A
>> Inserting city A (0,10386)
 
insert 0 10387 A
>> Inserting city A (0,10387)
 
insert 0 10388 A
>> Inserting city A (0,10388)
 
insert 0 10389 A
>> Inserting city A (0,10389)
 
insert 0 10390 A
>> Inserting city A (0,10390)
 
insert 0 10391 A
>> Inserting city A (0,10391)
 
insert 0 10392 A
>> Inserting city A (0,10392)
 
insert 0 10393 A
>> Inserting city A (0,10393)
 
insert 0 10394 A
>> Inserting city A (0,10394)
 
insert 0 10395 A
>> Inserting city A (0,10395)
 
insert 0 10396 A
>> Inserting city A (0,10396)
 
insert 0 10397 A
>> Inserting city A (0,10397)
 
insert 0 10398 A
>> Inserting city A (0,10398)
 
insert 0 10399 A
>> Inserting city A (0,10399)
 
insert 0 10400 A
>> Inserting city A (0,10400)
 
insert 0 10401 A
>> Inserting city A (0,10401)
 
insert 0 10402 A
>> Inserting city A (0,10402)
 
insert 0 10403 A
>> Inserting city A (0,10403)
 
insert 0 10404 A
>> Inserting city A (0,10404)
 
insert 0 10405 A
>> Inserting city A (0,10405)
 
insert 0 10406 A
>> Inserting city A (0,10406)
 
insert 0 10407 A
>> Inserting city A (0,10407)
 
insert 0 10408 A
>> Inserting city A (0,10408)
 
insert 0 10409 A
>> Inserting city A (0,10409)
 
insert 0 10410 A
>> Inserting city A (0,10410)
 
insert 0 10411 A
>> Inserting city A (0,10411)
 
insert 0 10412 A
>> Inserting city A (0,10412)
 
insert 0 10413 A
>> Inserting city A (0,10413)
 
insert 0 10414 A
>> Inserting city A (0,10414)
 
insert 0 10415 A
>> Inserting city A (0,10415)
 
insert 0 10416 A
>> Inserting city A (0,10416)
 
insert 0 10417 A
>> Inserting city A (0,10417)
 
insert 0 10418 A
>> Inserting city A (0,10418)
 
insert 0 10419 A
>> Inserting city A (0,10419)
 
insert 0 10420 A
>> Inserting city A (0,10420)
 
insert 0 10421 A
>> Inserting city A (0,10421)
 
insert 0 10422 A
>> Inserting city A (0,10422)
 
insert 0 10423 A
>> Inserting city A (0,10423)
 
insert 0 10424 A
>> Inserting city A (0,10424)
 
insert 0 10425 A
>> Inserting city A (0,10425)
 
insert 0 10426 A
>> Inserting city A (0,10426)
 
insert 0 10427 A
>> Inserting city A (0,10427)
 
insert 0 10428 A
>> Inserting city A (0,10428)
 
insert 0 10429 A
>> Inserting city A (0,10429)
 
insert 0 10430 A
>> Inserting city A (0,10430)
 
insert 0 10431 A
>> Inserting city A (0,10431)
 
insert 0 10432 A
>> Inserting city A (0,10432)
 
insert 0 10433 A
>> Inserting city A (0,10433)
 
insert 0 10434 A
>> Inserting city A (0,10434)
 
insert 0 10435 A
>> Inserting city A (0,10435)
 
insert 0 10436 A
>> Inserting city A (0,10436)
 
insert 0 10437 A
>> Inserting city A (0,10437)
 
insert 0 10438 A
>> Inserting city A (0,10438)
 
insert 0 10439 A
>> Inserting city A (0,10439)
 
insert 0 10440 A
>> Inserting city A (0,10440)
 
insert 0 10441 A
>> Inserting city A (0,10441)
 
insert 0 10442 A
>> Inserting city A (0,10442)
 
insert 0 10443 A
>> Inserting city A (0,10443)
 
insert 0 10444 A
>> Inserting city A (0,10444)
 
insert 0 10445 A
>> Inserting city A (0,10445)
 
insert 0 10446 A
>> Inserting city A (0,10446)
 
insert 0 10447 A
>> Inserting city A (0,10447)
 
insert 0 10448 A
>> Inserting city A (0,10448)
 
insert 0 10449 A
>> Inserting city A (0,10449)
 
insert 0 10450 A
>> Inserting city A (0,10450)
 
insert 0 10451 A
>> Inserting city A (0,10451)
 
insert 0 10452 A
>> Inserting city A (0,10452)
 
insert 0 10453 A
>> Inserting city A (0,10453)
 
insert 0 10454 A
>> Inserting city A (0,10454)
 
insert 0 10455 A
>> Inserting city A (0,10455)
 
insert 0 10456 A
>> Inserting city A (0,10456)
 
insert 0 10457 A
>> Inserting city A (0,10457)
 
insert 0 10458 A
>> Inserting city A (0,10458)
 
insert 0 10459 A
>> Inserting city A (0,10459)
 
insert 0 10460 A
>> Inserting city A (0,10460)
 
insert 0 10461 A
>> Inserting city A (0,10461)
 
insert 0 10462 A
>> Inserting city A (0,10462)
 
insert 0 10463 A
>> Inserting city A (0,10463)
 
insert 0 10464 A
>> Inserting city A (0,10464)
 
insert 0 10465 A
>> Inserting city A (0,10465)
 
insert 0 10466 A
>> Inserting city A (0,10466)
 
insert 0 10467 A
>> Inserting city A (0,10467)
 
insert 0 10468 A
>> Inserting city A (0,10468)
 
insert 0 10469 A
>> Inserting city A (0,10469)
 
insert 0 10470 A
>> Inserting city A (0,10470)
 
insert 0 10471 A
>> Inserting city A (0,10471)
 
insert 0 10472 A
>> Inserting city A (0,10472)
 
insert 0 10473 A
>> Inserting city A (0,10473)
 
insert 0 10474 A
>> Inserting city A (0,10474)
 
insert 0 10475 A
>> Inserting city A (0,10475)
 
insert 0 10476 A
>> Inserting city A (0,10476)
 
insert 0 10477 A
>> Inserting city A (0,10477)
 
insert 0 10478 A
>> Inserting city A (0,10478)
 
insert 0 10479 A
>> Inserting city A (0,10479)
 
insert 0 10480 A
>> Inserting city A (0,10480)
 
insert 0 10481 A
>> Inserting city A (0,10481)
 
insert 0 10482 A
>> Inserting city A (0,10482)
 
insert 0 10483 A
>> Inserting city A (0,10483)
 
insert 0 10484 A
>> Inserting city A (0,10484)
 
insert 0 10485 A
>> Inserting city A (0,10485)
 
insert 0 10486 A
>> Inserting city A (0,10486)
 
insert 0 10487 A
>> Inserting city A (0,10487)
 
insert 0 10488 A
>> Inserting city A (0,10488)
 
insert 0 10489 A
>> Inserting city A (0,10489)
 
insert 0 10490 A
>> Inserting city A (0,10490)
 
insert 0 10491 A
>> Inserting city A (0,10491)
 
insert 0 10492 A
>> Inserting city A (0,10492)
 
insert 0 10493 A
>> Inserting city A (0,10493)
 
insert 0 10494 A
>> Inserting city A (0,10494)
 
insert 0 10495 A
>> Inserting city A (0,10495)
 
insert 0 10496 A
>> Inserting city A (0,10496)
 
insert 0 10497 A
>> Inserting city A (0,10497)
 
insert 0 10498 A
>> Inserting city A (0,10498)
 
insert 0 10499 A
>> Inserting city A (0,10499)
 
insert 0 10500 A
>> Inserting city A (0,10500)
 
insert 0 10501 A
>> Inserting city A (0,10501)
 
insert 0 10502 A
>> Inserting city A (0,10502)
 
insert 0 10503 A
>> Inserting city A (0,10503)
 
insert 0 10504 A
>> Inserting city A (0,10504)
 
insert 0 10505 A
>> Inserting city A (0,10505)
 
insert 0 10506 A
>> Inserting city A (0,10506)
 
insert 0 10507 A
>> Inserting city A (0,10507)
 
insert 0 10508 A
>> Inserting city A (0,10508)
 
insert 0 10509 A
>> Inserting city A (0,10509)
 
insert 0 10510 A
>> Inserting city A (0,10510)
 
insert 0 10511 A
>> Inserting city A (0,10511)
 
insert 0 10512 A
>> Inserting city A (0,10512)
 
insert 0 10513 A
>> Inserting city A (0,10513)
 
insert 0 10514 A
>> Inserting city A (0,10514)
 
insert 0 10515 A
>> Inserting city A (0,10515)
 
insert 0 10516 A
>> Inserting city A (0,10516)
 
insert 0 10517 A
>> Inserting city A (0,10517)
 
insert 0 10518 A
>> Inserting city A (0,10518)
 
insert 0 10519 A
>> Inserting city A (0,10519)
 
insert 0 10520 A
>> Inserting city A (0,10520)
 
insert 0 10521 A
>> Inserting city A (0,10521)
 
insert 0 10522 A
>> Inserting city A (0,10522)
 
insert 0 10523 A
>> Inserting city A (0,10523)
 
insert 0 10524 A
>> Inserting city A (0,10524)
 
insert 0 10525 A
>> Inserting city A (0,10525)
 
insert 0 10526 A
>> Inserting city A (0,10526)
 
insert 0 10527 A
>> Inserting city A (0,10527)
 
insert 0 10528 A
>> Inserting city A (0,10528)
 
insert 0 10529 A
>> Inserting city A (0,10529)
 
insert 0 10530 A
>> Inserting city A (0,10530)
 
insert 0 10531 A
>> Inserting city A (0,10531)
 
insert 0 10532 A
>> Inserting city A (0,10532)
 
insert 0 10533 A
>> Inserting city A (0,10533)
 
insert 0 10534 A
>> Inserting city A (0,10534)
 
insert 0 10535 A
>> Inserting city A (0,10535)
 
insert 0 10536 A
>> Inserting city A (0,10536)
 
insert 0 10537 A
>> Inserting city A (0,10537)
 
insert 0 10538 A
>> Inserting city A (0,10538)
 
insert 0 10539 A
>> Inserting city A (0,10539)
 
insert 0 10540 A
>> Inserting city A (0,10540)
 
insert 0 10541 A
>> Inserting city A (0,10541)
 
insert 0 10542 A
>> Inserting city A (0,10542)
 
insert 0 10543 A
>> Inserting city A (0,10543)
 
insert 0 10544 A
>> Inserting city A (0,10544)
 
insert 0 10545 A
>> Inserting city A (0,10545)
 
insert 0 10546 A
>> Inserting city A (0,10546)
 
insert 0 10547 A
>> Inserting city A (0,10547)
 
insert 0 10548 A
>> Inserting city A (0,10548)
 
insert 0 10549 A
>> Inserting city A (0,10549)
 
insert 0 10550 A
>> Inserting city A (0,10550)
 
insert 0 10551 A
>> Inserting city A (0,10551)
 
insert 0 10552 A
>> Inserting city A (0,10552)
 
insert 0 10553 A
>> Inserting city A (0,10553)
 
insert 0 10554 A
>> Inserting city A (0,10554)
 
insert 0 10555 A
>> Inserting city A (0,10555)
 
insert 0 10556 A
>> Inserting city A (0,10556)
 
insert 0 10557 A
>> Inserting city A (0,10557)
 
insert 0 10558 A
>> Inserting city A (0,10558)
 
insert 0 10559 A
>> Inserting city A (0,10559)
 
insert 0 10560 A
>> Inserting city A (0,10560)
 
insert 0 10561 A
>> Inserting city A (0,10561)
 
insert 0 10562 A
>> Inserting city A (0,10562)
 
insert 0 10563 A
>> Inserting city A (0,10563)
 
insert 0 10564 A
>> Inserting city A (0,10564)
 
insert 0 10565 A
>> Inserting city A (0,10565)
 
insert 0 10566 A
>> Inserting city A (0,10566)
 
insert 0 10567 A
>> Inserting city A (0,10567)
 
insert 0 10568 A
>> Inserting city A (0,10568)
 
insert 0 10569 A
>> Inserting city A (0,10569)
 
insert 0 10570 A
>> Inserting city A (0,10570)
 
insert 0 10571 A
>> Inserting city A (0,10571)
 
insert 0 10572 A
>> Inserting city A (0,10572)
 
insert 0 10573 A
>> Inserting city A (0,10573)
 
insert 0 10574 A
>> Inserting city A (0,10574)
 
insert 0 10575 A
>> Inserting city A (0,10575)
 
insert 0 10576 A
>> Inserting city A (0,10576)
 
insert 0 10577 A
>> Inserting city A (0,10577)
 
insert 0 10578 A
>> Inserting city A (0,10578)
 
insert 0 10579 A
>> Inserting city A (0,10579)
 
insert 0 10580 A
>> Inserting city A (0,10580)
 
insert 0 10581 A
>> Inserting city A (0,10581)
 
insert 0 10582 A
>> Inserting city A (0,10582)
 
insert 0 10583 A
>> Inserting city A (0,10583)
 
insert 0 10584 A
>> Inserting city A (0,10584)
 
insert 0 10585 A
>> Inserting city A (0,10585)
 
insert 0 10586 A
>> Inserting city A (0,10586)
 
insert 0 10587 A
>> Inserting city A (0,10587)
 
insert 0 10588 A
>> Inserting city A (0,10588)
 
insert 0 10589 A
>> Inserting city A (0,10589)
 
insert 0 10590 A
>> Inserting city A (0,10590)
 
insert 0 10591 A
>> Inserting city A (0,10591)
 
insert 0 10592 A
>> Inserting city A (0,10592)
 
insert 0 10593 A
>> Inserting city A (0,10593)
 
insert 0 10594 A
>> Inserting city A (0,10594)
 
insert 0 10595 A
>> Inserting city A (0,10595)
 
insert 0 10596 A
>> Inserting city A (0,10596)
 
insert 0 10597 A
>> Inserting city A (0,10597)
 
insert 0 10598 A
>> Inserting city A (0,10598)
 
insert 0 10599 A
>> Inserting city A (0,10599)
 
insert 0 10600 A
>> Inserting city A (0,10600)
 
insert 0 10601 A
>> Inserting city A (0,10601)
 
insert 0 10602 A
>> Inserting city A (0,10602)
 
insert 0 10603 A
>> Inserting city A (0,10603)
 
insert 0 10604 A
>> Inserting city A (0,10604)
 
insert 0 10605 A
>> Inserting city A (0,10605)
 
insert 0 10606 A
>> Inserting city A (0,10606)
 
insert 0 10607 A
>> Inserting city A (0,10607)
 
insert 0 10608 A
>> Inserting city A (0,10608)
 
insert 0 10609 A
>> Inserting city A (0,10609)
 
insert 0 10610 A
>> Inserting city A (0,10610)
 
insert 0 10611 A
>> Inserting city A (0,10611)
 
insert 0 10612 A
>> Inserting city A (0,10612)
 
insert 0 10613 A
>> Inserting city A (0,10613)
 
insert 0 10614 A
>> Inserting city A (0,10614)
 
insert 0 10615 A
>> Inserting city A (0,10615)
 
insert 0 10616 A
>> Inserting city A (0,10616)
 
insert 0 10617 A
>> Inserting city A (0,10617)
 
insert 0 10618 A
>> Inserting city A (0,10618)
 
insert 0 10619 A
>> Inserting city A (0,10619)
 
insert 0 10620 A
>> Inserting city A (0,10620)
 
insert 0 10621 A
>> Inserting city A (0,10621)
 
insert 0 10622 A
>> Inserting city A (0,10622)
 
insert 0 10623 A
>> Inserting city A (0,10623)
 
insert 0 10624 A
>> Inserting city A (0,10624)
 
insert 0 10625 A
>> Inserting city A (0,10625)
 
insert 0 10626 A
>> Inserting city A (0,10626)
 
insert 0 10627 A
>> Inserting city A (0,10627)
 
insert 0 10628 A
>> Inserting city A (0,10628)
 
insert 0 10629 A
>> Inserting city A (0,10629)
 
insert 0 10630 A
>> Inserting city A (0,10630)
 
insert 0 10631 A
>> Inserting city A (0,10631)
 
insert 0 10632 A
>> Inserting city A (0,10632)
 
insert 0 10633 A
>> Inserting city A (0,10633)
 
insert 0 10634 A
>> Inserting city A (0,10634)
 
insert 0 10635 A
>> Inserting city A (0,10635)
 
insert 0 10636 A
>> Inserting city A (0,10636)
 
insert 0 10637 A
>> Inserting city A (0,10637)
 
insert 0 10638 A
>> Inserting city A (0,10638)
 
insert 0 10639 A
>> Inserting city A (0,10639)
 
insert 0 10640 A
>> Inserting city A (0,10640)
 
insert 0 10641 A
>> Inserting city A (0,10641)
 
insert 0 10642 A
>> Inserting city A (0,10642)
 
insert 0 10643 A
>> Inserting city A (0,10643)
 
insert 0 10644 A
>> Inserting city A (0,10644)
 
insert 0 10645 A
>> Inserting city A (0,10645)
 
insert 0 10646 A
>> Inserting city A (0,10646)
 
insert 0 10647 A
>> Inserting city A (0,10647)
 
insert 0 10648 A
>> Inserting city A (0,10648)
 
insert 0 10649 A
>> Inserting city A (0,10649)
 
insert 0 10650 A
>> Inserting city A (0,10650)
 
insert 0 10651 A
>> Inserting city A (0,10651)
 
insert 0 10652 A
>> Inserting city A (0,10652)
 
insert 0 10653 A
>> Inserting city A (0,10653)
 
insert 0 10654 A
>> Inserting city A (0,10654)
 
insert 0 10655 A
>> Inserting city A (0,10655)
 
insert 0 10656 A
>> Inserting city A (0,10656)
 
insert 0 10657 A
>> Inserting city A (0,10657)
 
insert 0 10658 A
>> Inserting city A (0,10658)
 
insert 0 10659 A
>> Inserting city A (0,10659)
 
insert 0 10660 A
>> Inserting city A (0,10660)
 
insert 0 10661 A
>> Inserting city A (0,10661)
 
insert 0 10662 A
>> Inserting city A (0,10662)
 
insert 0 10663 A
>> Inserting city A (0,10663)
 
insert 0 10664 A
>> Inserting city A (0,10664)
 
insert 0 10665 A
>> Inserting city A (0,10665)
 
insert 0 10666 A
>> Inserting city A (0,10666)
 
insert 0 10667 A
>> Inserting city A (0,10667)
 
insert 0 10668 A
>> Inserting city A (0,10668)
 
insert 0 10669 A
>> Inserting city A (0,10669)
 
insert 0 10670 A
>> Inserting city A (0,10670)
 
insert 0 10671 A
>> Inserting city A (0,10671)
 
insert 0 10672 A
>> Inserting city A (0,10672)
 
insert 0 10673 A
>> Inserting city A (0,10673)
 
insert 0 10674 A
>> Inserting city A (0,10674)
 
insert 0 10675 A
>> Inserting city A (0,10675)
 
insert 0 10676 A
>> Inserting city A (0,10676)
 
insert 0 10677 A
>> Inserting city A (0,10677)
 
insert 0 10678 A
>> Inserting city A (0,10678)
 
insert 0 10679 A
>> Inserting city A (0,10679)
 
insert 0 10680 A
>> Inserting city A (0,10680)
 
insert 0 10681 A
>> Inserting city A (0,10681)
 
insert 0 10682 A
>> Inserting city A (0,10682)
 
insert 0 10683 A
>> Inserting city A (0,10683)
 
insert 0 10684 A
>> Inserting city A (0,10684)
 
insert 0 10685 A
>> Inserting city A (0,10685)
 
insert 0 10686 A
>> Inserting city A (0,10686)
 
insert 0 10687 A
>> Inserting city A (0,10687)
 
insert 0 10688 A
>> Inserting city A (0,10688)
 
insert 0 10689 A
>> Inserting city A (0,10689)
 
insert 0 10690 A
>> Inserting city A (0,10690)
 
insert 0 10691 A
>> Inserting city A (0,10691)
 
insert 0 10692 A
>> Inserting city A (0,10692)
 
insert 0 10693 A
>> Inserting city A (0,10693)
 
insert 0 10694 A
>> Inserting city A (0,10694)
 
insert 0 10695 A
>> Inserting city A (0,10695)
 
insert 0 10696 A
>> Inserting city A (0,10696)
 
insert 0 10697 A
>> Inserting city A (0,10697)
 
insert 0 10698 A
>> Inserting city A (0,10698)
 
insert 0 10699 A
>> Inserting city A (0,10699)
 
insert 0 10700 A
>> Inserting city A (0,10700)
 
insert 0 10701 A
>> Inserting city A (0,10701)
 
insert 0 10702 A
>> Inserting city A (0,10702)
 
insert 0 10703 A
>> Inserting city A (0,10703)
 
insert 0 10704 A
>> Inserting city A (0,10704)
 
insert 0 10705 A
>> Inserting city A (0,10705)
 
insert 0 10706 A
>> Inserting city A (0,10706)
 
insert 0 10707 A
>> Inserting city A (0,10707)
 
insert 0 10708 A
>> Inserting city A (0,10708)
 
insert 0 10709 A
>> Inserting city A (0,10709)
 
insert 0 10710 A
>> Inserting city A (0,10710)
 
insert 0 10711 A
>> Inserting city A (0,10711)
 
insert 0 10712 A
>> Inserting city A (0,10712)
 
insert 0 10713 A
>> Inserting city A (0,10713)
 
insert 0 10714 A
>> Inserting city A (0,10714)
 
insert 0 10715 A
>> Inserting city A (0,10715)
 
insert 0 10716 A
>> Inserting city A (0,10716)
 
insert 0 10717 A
>> Inserting city A (0,10717)
 
insert 0 10718 A
>> Inserting city A (0,10718)
 
insert 0 10719 A
>> Inserting city A (0,10719)
 
insert 0 10720 A
>> Inserting city A (0,10720)
 
insert 0 10721 A
>> Inserting city A (0,10721)
 
insert 0 10722 A
>> Inserting city A (0,10722)
 
insert 0 10723 A
>> Inserting city A (0,10723)
 
insert 0 10724 A
>> Inserting city A (0,10724)
 
insert 0 10725 A
>> Inserting city A (0,10725)
 
insert 0 10726 A
>> Inserting city A (0,10726)
 
insert 0 10727 A
>> Inserting city A (0,10727)
 
insert 0 10728 A
>> Inserting city A (0,10728)
 
insert 0 10729 A
>> Inserting city A (0,10729)
 
insert 0 10730 A
>> Inserting city A (0,10730)
 
insert 0 10731 A
>> Inserting city A (0,10731)
 
insert 0 10732 A
>> Inserting city A (0,10732)
 
insert 0 10733 A
>> Inserting city A (0,10733)
 
insert 0 10734 A
>> Inserting city A (0,10734)
 
insert 0 10735 A
>> Inserting city A (0,10735)
 
insert 0 10736 A
>> Inserting city A (0,10736)
 
insert 0 10737 A
>> Inserting city A (0,10737)
 
insert 0 10738 A
>> Inserting city A (0,10738)
 
insert 0 10739 A
>> Inserting city A (0,10739)
 
insert 0 10740 A
>> Inserting city A (0,10740)
 
insert 0 10741 A
>> Inserting city A (0,10741)
 
insert 0 10742 A
>> Inserting city A (0,10742)
 
insert 0 10743 A
>> Inserting city A (0,10743)
 
insert 0 10744 A
>> Inserting city A (0,10744)
 
insert 0 10745 A
>> Inserting city A (0,10745)
 
insert 0 10746 A
>> Inserting city A (0,10746)
 
insert 0 10747 A
>> Inserting city A (0,10747)
 
insert 0 10748 A
>> Inserting city A (0,10748)
 
insert 0 10749 A
>> Inserting city A (0,10749)
 
insert 0 10750 A
>> Inserting city A (0,10750)
 
insert 0 10751 A
>> Inserting city A (0,10751)
 
insert 0 10752 A
>> Inserting city A (0,10752)
 
insert 0 10753 A
>> Inserting city A (0,10753)
 
insert 0 10754 A
>> Inserting city A (0,10754)
 
insert 0 10755 A
>> Inserting city A (0,10755)
 
insert 0 10756 A
>> Inserting city A (0,10756)
 
insert 0 10757 A
>> Inserting city A (0,10757)
 
insert 0 10758 A
>> Inserting city A (0,10758)
 
insert 0 10759 A
>> Inserting city A (0,10759)
 
insert 0 10760 A
>> Inserting city A (0,10760)
 
insert 0 10761 A
>> Inserting city A (0,10761)
 
insert 0 10762 A
>> Inserting city A (0,10762)
 
insert 0 10763 A
>> Inserting city A (0,10763)
 
insert 0 10764 A
>> Inserting city A (0,10764)
 
insert 0 10765 A
>> Inserting city A (0,10765)
 
insert 0 10766 A
>> Inserting city A (0,10766)
 
insert 0 10767 A
>> Inserting city A (0,10767)
 
insert 0 10768 A
>> Inserting city A (0,10768)
 
insert 0 10769 A
>> Inserting city A (0,10769)
 
insert 0 10770 A
>> Inserting city A (0,10770)
 
insert 0 10771 A
>> Inserting city A (0,10771)
 
insert 0 10772 A
>> Inserting city A (0,10772)
 
insert 0 10773 A
>> Inserting city A (0,10773)
 
insert 0 10774 A
>> Inserting city A (0,10774)
 
insert 0 10775 A
>> Inserting city A (0,10775)
 
insert 0 10776 A
>> Inserting city A (0,10776)
 
insert 0 10777 A
>> Inserting city A (0,10777)
 
insert 0 10778 A
>> Inserting city A (0,10778)
 
insert 0 10779 A
>> Inserting city A (0,10779)
 
insert 0 10780 A
>> Inserting city A (0,10780)
 
insert 0 10781 A
>> Inserting city A (0,10781)
 
insert 0 10782 A
>> Inserting city A (0,10782)
 
insert 0 10783 A
>> Inserting city A (0,10783)
 
insert 0 10784 A
>> Inserting city A (0,10784)
 
insert 0 10785 A
>> Inserting city A (0,10785)
 
insert 0 10786 A
>> Inserting city A (0,10786)
 
insert 0 10787 A
>> Inserting city A (0,10787)
 
insert 0 10788 A
>> Inserting city A (0,10788)
 
insert 0 10789 A
>> Inserting city A (0,10789)
 
insert 0 10790 A
>> Inserting city A (0,10790)
 
insert 0 10791 A
>> Inserting city A (0,10791)
 
insert 0 10792 A
>> Inserting city A (0,10792)
 
insert 0 10793 A
>> Inserting city A (0,10793)
 
insert 0 10794 A
>> Inserting city A (0,10794)
 
insert 0 10795 A
>> Inserting city A (0,10795)
 
insert 0 10796 A
>> Inserting city A (0,10796)
 
insert 0 10797 A
>> Inserting city A (0,10797)
 
insert 0 10798 A
>> Inserting city A (0,10798)
 
insert 0 10799 A
>> Inserting city A (0,10799)
 
insert 0 10800 A
>> Inserting city A (0,10800)
 
insert 0 10801 A
>> Inserting city A (0,10801)
 
insert 0 10802 A
>> Inserting city A (0,10802)
 
insert 0 10803 A
>> Inserting city A (0,10803)
 
insert 0 10804 A
>> Inserting city A (0,10804)
 
insert 0 10805 A
>> Inserting city A (0,10805)
 
insert 0 10806 A
>> Inserting city A (0,10806)
 
insert 0 10807 A
>> Inserting city A (0,10807)
 
insert 0 10808 A
>> Inserting city A (0,10808)
 
insert 0 10809 A
>> Inserting city A (0,10809)
 
insert 0 10810 A
>> Inserting city A (0,10810)
 
insert 0 10811 A
>> Inserting city A (0,10811)
 
insert 0 10812 A
>> Inserting city A (0,10812)
 
insert 0 10813 A
>> Inserting city A (0,10813)
 
insert 0 10814 A
>> Inserting city A (0,10814)
 
insert 0 10815 A
>> Inserting city A (0,10815)
 
insert 0 10816 A
>> Inserting city A (0,10816)
 
insert 0 10817 A
>> Inserting city A (0,10817)
 
insert 0 10818 A
>> Inserting city A (0,10818)
 
insert 0 10819 A
>> Inserting city A (0,10819)
 
insert 0 10820 A
>> Inserting city A (0,10820)
 
insert 0 10821 A
>> Inserting city A (0,10821)
 
insert 0 10822 A
>> Inserting city A (0,10822)
 
insert 0 10823 A
>> Inserting city A (0,10823)
 
insert 0 10824 A
>> Inserting city A (0,10824)
 
insert 0 10825 A
>> Inserting city A (0,10825)
 
insert 0 10826 A
>> Inserting city A (0,10826)
 
insert 0 10827 A
>> Inserting city A (0,10827)
 
insert 0 10828 A
>> Inserting city A (0,10828)
 
insert 0 10829 A
>> Inserting city A (0,10829)
 
insert 0 10830 A
>> Inserting city A (0,10830)
 
insert 0 10831 A
>> Inserting city A (0,10831)
 
insert 0 10832 A
>> Inserting city A (0,10832)
 
insert 0 10833 A
>> Inserting city A (0,10833)
 
insert 0 10834 A
>> Inserting city A (0,10834)
 
insert 0 10835 A
>> Inserting city A (0,10835)
 
insert 0 10836 A
>> Inserting city A (0,10836)
 
insert 0 10837 A
>> Inserting city A (0,10837)
 
insert 0 10838 A
>> Inserting city A (0,10838)
 
insert 0 10839 A
>> Inserting city A (0,10839)
 
insert 0 10840 A
>> Inserting city A (0,10840)
 
insert 0 10841 A
>> Inserting city A (0,10841)
 
insert 0 10842 A
>> Inserting city A (0,10842)
 
insert 0 10843 A
>> Inserting city A (0,10843)
 
insert 0 10844 A
>> Inserting city A (0,10844)
 
insert 0 10845 A
>> Inserting city A (0,10845)
 
insert 0 10846 A
>> Inserting city A (0,10846)
 
insert 0 10847 A
>> Inserting city A (0,10847)
 
insert 0 10848 A
>> Inserting city A (0,10848)
 
insert 0 10849 A
>> Inserting city A (0,10849)
 
insert 0 10850 A
>> Inserting city A (0,10850)
 
insert 0 10851 A
>> Inserting city A (0,10851)
 
insert 0 10852 A
>> Inserting city A (0,10852)
 
insert 0 10853 A
>> Inserting city A (0,10853)
 
insert 0 10854 A
>> Inserting city A (0,10854)
 
insert 0 10855 A
>> Inserting city A (0,10855)
 
insert 0 10856 A
>> Inserting city A (0,10856)
 
insert 0 10857 A
>> Inserting city A (0,10857)
 
insert 0 10858 A
>> Inserting city A (0,10858)
 
insert 0 10859 A
>> Inserting city A (0,10859)
 
insert 0 10860 A
>> Inserting city A (0,10860)
 
insert 0 10861 A
>> Inserting city A (0,10861)
 
insert 0 10862 A
>> Inserting city A (0,10862)
 
insert 0 10863 A
>> Inserting city A (0,10863)
 
insert 0 10864 A
>> Inserting city A (0,10864)
 
insert 0 10865 A
>> Inserting city A (0,10865)
 
insert 0 10866 A
>> Inserting city A (0,10866)
 
insert 0 10867 A
>> Inserting city A (0,10867)
 
insert 0 10868 A
>> Inserting city A (0,10868)
 
insert 0 10869 A
>> Inserting city A (0,10869)
 
insert 0 10870 A
>> Inserting city A (0,10870)
 
insert 0 10871 A
>> Inserting city A (0,10871)
 
insert 0 10872 A
>> Inserting city A (0,10872)
 
insert 0 10873 A
>> Inserting city A (0,10873)
 
insert 0 10874 A
>> Inserting city A (0,10874)
 
insert 0 10875 A
>> Inserting city A (0,10875)
 
insert 0 10876 A
>> Inserting city A (0,10876)
 
insert 0 10877 A
>> Inserting city A (0,10877)
 
insert 0 10878 A
>> Inserting city A (0,10878)
 
insert 0 10879 A
>> Inserting city A (0,10879)
 
insert 0 10880 A
>> Inserting city A (0,10880)
 
insert 0 10881 A
>> Inserting city A (0,10881)
 
insert 0 10882 A
>> Inserting city A (0,10882)
 
insert 0 10883 A
>> Inserting city A (0,10883)
 
insert 0 10884 A
>> Inserting city A (0,10884)
 
insert 0 10885 A
>> Inserting city A (0,10885)
 
insert 0 10886 A
>> Inserting city A (0,10886)
 
insert 0 10887 A
>> Inserting city A (0,10887)
 
insert 0 10888 A
>> Inserting city A (0,10888)
 
insert 0 10889 A
>> Inserting city A (0,10889)
 
insert 0 10890 A
>> Inserting city A (0,10890)
 
insert 0 10891 A
>> Inserting city A (0,10891)
 
insert 0 10892 A
>> Inserting city A (0,10892)
 
insert 0 10893 A
>> Inserting city A (0,10893)
 
insert 0 10894 A
>> Inserting city A (0,10894)
 
insert 0 10895 A
>> Inserting city A (0,10895)
 
insert 0 10896 A
>> Inserting city A (0,10896)
 
insert 0 10897 A
>> Inserting city A (0,10897)
 
insert 0 10898 A
>> Inserting city A (0,10898)
 
insert 0 10899 A
>> Inserting city A (0,10899)
 
insert 0 10900 A
>> Inserting city A (0,10900)
 
insert 0 10901 A
>> Inserting city A (0,10901)
 
insert 0 10902 A
>> Inserting city A (0,10902)
 
insert 0 10903 A
>> Inserting city A (0,10903)
 
insert 0 10904 A
>> Inserting city A (0,10904)
 
insert 0 10905 A
>> Inserting city A (0,10905)
 
insert 0 10906 A
>> Inserting city A (0,10906)
 
insert 0 10907 A
>> Inserting city A (0,10907)
 
insert 0 10908 A
>> Inserting city A (0,10908)
 
insert 0 10909 A
>> Inserting city A (0,10909)
 
insert 0 10910 A
>> Inserting city A (0,10910)
 
insert 0 10911 A
>> Inserting city A (0,10911)
 
insert 0 10912 A
>> Inserting city A (0,10912)
 
insert 0 10913 A
>> Inserting city A (0,10913)
 
insert 0 10914 A
>> Inserting city A (0,10914)
 
insert 0 10915 A
>> Inserting city A (0,10915)
 
insert 0 10916 A
>> Inserting city A (0,10916)
 
insert 0 10917 A
>> Inserting city A (0,10917)
 
insert 0 10918 A
>> Inserting city A (0,10918)
 
insert 0 10919 A
>> Inserting city A (0,10919)
 
insert 0 10920 A
>> Inserting city A (0,10920)
 
insert 0 10921 A
>> Inserting city A (0,10921)
 
insert 0 10922 A
>> Inserting city A (0,10922)
 
insert 0 10923 A
>> Inserting city A (0,10923)
 
insert 0 10924 A
>> Inserting city A (0,10924)
 
insert 0 10925 A
>> Inserting city A (0,10925)
 
insert 0 10926 A
>> Inserting city A (0,10926)
 
insert 0 10927 A
>> Inserting city A (0,10927)
 
insert 0 10928 A
>> Inserting city A (0,10928)
 
insert 0 10929 A
>> Inserting city A (0,10929)
 
insert 0 10930 A
>> Inserting city A (0,10930)
 
insert 0 10931 A
>> Inserting city A (0,10931)
 
insert 0 10932 A
>> Inserting city A (0,10932)
 
insert 0 10933 A
>> Inserting city A (0,10933)
 
insert 0 10934 A
>> Inserting city A (0,10934)
 
insert 0 10935 A
>> Inserting city A (0,10935)
 
insert 0 10936 A
>> Inserting city A (0,10936)
 
insert 0 10937 A
>> Inserting city A (0,10937)
 
insert 0 10938 A
>> Inserting city A (0,10938)
 
insert 0 10939 A
>> Inserting city A (0,10939)
 
insert 0 10940 A
>> Inserting city A (0,10940)
 
insert 0 10941 A
>> Inserting city A (0,10941)
 
insert 0 10942 A
>> Inserting city A (0,10942)
 
insert 0 10943 A
>> Inserting city A (0,10943)
 
insert 0 10944 A
>> Inserting city A (0,10944)
 
insert 0 10945 A
>> Inserting city A (0,10945)
 
insert 0 10946 A
>> Inserting city A (0,10946)
 
insert 0 10947 A
>> Inserting city A (0,10947)
 
insert 0 10948 A
>> Inserting city A (0,10948)
 
insert 0 10949 A
>> Inserting city A (0,10949)
 
insert 0 10950 A
>> Inserting city A (0,10950)
 
insert 0 10951 A
>> Inserting city A (0,10951)
 
insert 0 10952 A
>> Inserting city A (0,10952)
 
insert 0 10953 A
>> Inserting city A (0,10953)
 
insert 0 10954 A
>> Inserting city A (0,10954)
 
insert 0 10955 A
>> Inserting city A (0,10955)
 
insert 0 10956 A
>> Inserting city A (0,10956)
 
insert 0 10957 A
>> Inserting city A (0,10957)
 
insert 0 10958 A
>> Inserting city A (0,10958)
 
insert 0 10959 A
>> Inserting city A (0,10959)
 
insert 0 10960 A
>> Inserting city A (0,10960)
 
insert 0 10961 A
>> Inserting city A (0,10961)
 
insert 0 10962 A
>> Inserting city A (0,10962)
 
insert 0 10963 A
>> Inserting city A (0,10963)
 
insert 0 10964 A
>> Inserting city A (0,10964)
 
insert 0 10965 A
>> Inserting city A (0,10965)
 
insert 0 10966 A
>> Inserting city A (0,10966)
 
insert 0 10967 A
>> Inserting city A (0,10967)
 
insert 0 10968 A
>> Inserting city A (0,10968)
 
insert 0 10969 A
>> Inserting city A (0,10969)
 
insert 0 10970 A
>> Inserting city A (0,10970)
 
insert 0 10971 A
>> Inserting city A (0,10971)
 
insert 0 10972 A
>> Inserting city A (0,10972)
 
insert 0 10973 A
>> Inserting city A (0,10973)
 
insert 0 10974 A
>> Inserting city A (0,10974)
 
insert 0 10975 A
>> Inserting city A (0,10975)
 
insert 0 10976 A
>> Inserting city A (0,10976)
 
insert 0 10977 A
>> Inserting city A (0,10977)
 
insert 0 10978 A
>> Inserting city A (0,10978)
 
insert 0 10979 A
>> Inserting city A (0,10979)
 
insert 0 10980 A
>> Inserting city A (0,10980)
 
insert 0 10981 A
>> Inserting city A (0,10981)
 
insert 0 10982 A
>> Inserting city A (0,10982)
 
insert 0 10983 A
>> Inserting city A (0,10983)
 
insert 0 10984 A
>> Inserting city A (0,10984)
 
insert 0 10985 A
>> Inserting city A (0,10985)
 
insert 0 10986 A
>> Inserting city A (0,10986)
 
insert 0 10987 A
>> Inserting city A (0,10987)
 
insert 0 10988 A
>> Inserting city A (0,10988)
 
insert 0 10989 A
>> Inserting city A (0,10989)
 
insert 0 10990 A
>> Inserting city A (0,10990)
 
insert 0 10991 A
>> Inserting city A (0,10991)
 
insert 0 10992 A
>> Inserting city A (0,10992)
 
insert 0 10993 A
>> Inserting city A (0,10993)
 
insert 0 10994 A
>> Inserting city A (0,10994)
 
insert 0 10995 A
>> Inserting city A (0,10995)
 
insert 0 10996 A
>> Inserting city A (0,10996)
 
insert 0 10997 A
>> Inserting city A (0,10997)
 
insert 0 10998 A
>> Inserting city A (0,10998)
 
insert 0 10999 A
>> Inserting city A (0,10999)
 
insert 0 11000 A
>> Inserting city A (0,11000)
 
insert 0 11001 A
>> Inserting city A (0,11001)
 
insert 0 11002 A
>> Inserting city A (0,11002)
 
insert 0 11003 A
>> Inserting city A (0,11003)
 
insert 0 11004 A
>> Inserting city A (0,11004)
 
insert 0 11005 A
>> Inserting city A (0,11005)
 
insert 0 11006 A
>> Inserting city A (0,11006)
 
insert 0 11007 A
>> Inserting city A (0,11007)
 
insert 0 11008 A
>> Inserting city A (0,11008)
 
insert 0 11009 A
>> Inserting city A (0,11009)
 
insert 0 11010 A
>> Inserting city A (0,11010)
 
insert 0 11011 A
>> Inserting city A (0,11011)
 
insert 0 11012 A
>> Inserting city A (0,11012)
 
insert 0 11013 A
>> Inserting city A (0,11013)
 
insert 0 11014 A
>> Inserting city A (0,11014)
 
insert 0 11015 A
>> Inserting city A (0,11015)
 
insert 0 11016 A
>> Inserting city A (0,11016)
 
insert 0 11017 A
>> Inserting city A (0,11017)
 
insert 0 11018 A
>> Inserting city A (0,11018)
 
insert 0 11019 A
>> Inserting city A (0,11019)
 
insert 0 11020 A
>> Inserting city A (0,11020)
 
insert 0 11021 A
>> Inserting city A (0,11021)
 
insert 0 11022 A
>> Inserting city A (0,11022)
 
insert 0 11023 A
>> Inserting city A (0,11023)
 
insert 0 11024 A
>> Inserting city A (0,11024)
 
insert 0 11025 A
>> Inserting city A (0,11025)
 
insert 0 11026 A
>> Inserting city A (0,11026)
 
insert 0 11027 A
>> Inserting city A (0,11027)
 
insert 0 11028 A
>> Inserting city A (0,11028)
 
insert 0 11029 A
>> Inserting city A (0,11029)
 
insert 0 11030 A
>> Inserting city A (0,11030)
 
insert 0 11031 A
>> Inserting city A (0,11031)
 
insert 0 11032 A
>> Inserting city A (0,11032)
 
insert 0 11033 A
>> Inserting city A (0,11033)
 
insert 0 11034 A
>> Inserting city A (0,11034)
 
insert 0 11035 A
>> Inserting city A (0,11035)
 
insert 0 11036 A
>> Inserting city A (0,11036)
 
insert 0 11037 A
>> Inserting city A (0,11037)
 
insert 0 11038 A
>> Inserting city A (0,11038)
 
insert 0 11039 A
>> Inserting city A (0,11039)
 
insert 0 11040 A
>> Inserting city A (0,11040)
 
insert 0 11041 A
>> Inserting city A (0,11041)
 
insert 0 11042 A
>> Inserting city A (0,11042)
 
insert 0 11043 A
>> Inserting city A (0,11043)
 
insert 0 11044 A
>> Inserting city A (0,11044)
 
insert 0 11045 A
>> Inserting city A (0,11045)
 
insert 0 11046 A
>> Inserting city A (0,11046)
 
insert 0 11047 A
>> Inserting city A (0,11047)
 
insert 0 11048 A
>> Inserting city A (0,11048)
 
insert 0 11049 A
>> Inserting city A (0,11049)
 
insert 0 11050 A
>> Inserting city A (0,11050)
 
insert 0 11051 A
>> Inserting city A (0,11051)
 
insert 0 11052 A
>> Inserting city A (0,11052)
 
insert 0 11053 A
>> Inserting city A (0,11053)
 
insert 0 11054 A
>> Inserting city A (0,11054)
 
insert 0 11055 A
>> Inserting city A (0,11055)
 
insert 0 11056 A
>> Inserting city A (0,11056)
 
insert 0 11057 A
>> Inserting city A (0,11057)
 
insert 0 11058 A
>> Inserting city A (0,11058)
 
insert 0 11059 A
>> Inserting city A (0,11059)
 
insert 0 11060 A
>> Inserting city A (0,11060)
 
insert 0 11061 A
>> Inserting city A (0,11061)
 
insert 0 11062 A
>> Inserting city A (0,11062)
 
insert 0 11063 A
>> Inserting city A (0,11063)
 
insert 0 11064 A
>> Inserting city A (0,11064)
 
insert 0 11065 A
>> Inserting city A (0,11065)
 
insert 0 11066 A
>> Inserting city A (0,11066)
 
insert 0 11067 A
>> Inserting city A (0,11067)
 
insert 0 11068 A
>> Inserting city A (0,11068)
 
insert 0 11069 A
>> Inserting city A (0,11069)
 
insert 0 11070 A
>> Inserting city A (0,11070)
 
insert 0 11071 A
>> Inserting city A (0,11071)
 
insert 0 11072 A
>> Inserting city A (0,11072)
 
insert 0 11073 A
>> Inserting city A (0,11073)
 
insert 0 11074 A
>> Inserting city A (0,11074)
 
insert 0 11075 A
>> Inserting city A (0,11075)
 
insert 0 11076 A
>> Inserting city A (0,11076)
 
insert 0 11077 A
>> Inserting city A (0,11077)
 
insert 0 11078 A
>> Inserting city A (0,11078)
 
insert 0 11079 A
>> Inserting city A (0,11079)
 
insert 0 11080 A
>> Inserting city A (0,11080)
 
insert 0 11081 A
>> Inserting city A (0,11081)
 
insert 0 11082 A
>> Inserting city A (0,11082)
 
insert 0 11083 A
>> Inserting city A (0,11083)
 
insert 0 11084 A
>> Inserting city A (0,11084)
 
insert 0 11085 A
>> Inserting city A (0,11085)
 
insert 0 11086 A
>> Inserting city A (0,11086)
 
insert 0 11087 A
>> Inserting city A (0,11087)
 
insert 0 11088 A
>> Inserting city A (0,11088)
 
insert 0 11089 A
>> Inserting city A (0,11089)
 
insert 0 11090 A
>> Inserting city A (0,11090)
 
insert 0 11091 A
>> Inserting city A (0,11091)
 
insert 0 11092 A
>> Inserting city A (0,11092)
 
insert 0 11093 A
>> Inserting city A (0,11093)
 
insert 0 11094 A
>> Inserting city A (0,11094)
 
insert 0 11095 A
>> Inserting city A (0,11095)
 
insert 0 11096 A
>> Inserting city A (0,11096)
 
insert 0 11097 A
>> Inserting city A (0,11097)
 
insert 0 11098 A
>> Inserting city A (0,11098)
 
insert 0 11099 A
>> Inserting city A (0,11099)
 
insert 0 11100 A
>> Inserting city A (0,11100)
 
insert 0 11101 A
>> Inserting city A (0,11101)
 
insert 0 11102 A
>> Inserting city A (0,11102)
 
insert 0 11103 A
>> Inserting city A (0,11103)
 
insert 0 11104 A
>> Inserting city A (0,11104)
 
insert 0 11105 A
>> Inserting city A (0,11105)
 
insert 0 11106 A
>> Inserting city A (0,11106)
 
insert 0 11107 A
>> Inserting city A (0,11107)
 
insert 0 11108 A
>> Inserting city A (0,11108)
 
insert 0 11109 A
>> Inserting city A (0,11109)
 
insert 0 11110 A
>> Inserting city A (0,11110)
 
insert 0 11111 A
>> Inserting city A (0,11111)
 
insert 0 11112 A
>> Inserting city A (0,11112)
 
insert 0 11113 A
>> Inserting city A (0,11113)
 
insert 0 11114 A
>> Inserting city A (0,11114)
 
insert 0 11115 A
>> Inserting city A (0,11115)
 
insert 0 11116 A
>> Inserting city A (0,11116)
 
insert 0 11117 A
>> Inserting city A (0,11117)
 
insert 0 11118 A
>> Inserting city A (0,11118)
 
insert 0 11119 A
>> Inserting city A (0,11119)
 
insert 0 11120 A
>> Inserting city A (0,11120)
 
insert 0 11121 A
>> Inserting city A (0,11121)
 
insert 0 11122 A
>> Inserting city A (0,11122)
 
insert 0 11123 A
>> Inserting city A (0,11123)
 
insert 0 11124 A
>> Inserting city A (0,11124)
 
insert 0 11125 A
>> Inserting city A (0,11125)
 
insert 0 11126 A
>> Inserting city A (0,11126)
 
insert 0 11127 A
>> Inserting city A (0,11127)
 
insert 0 11128 A
>> Inserting city A (0,11128)
 
insert 0 11129 A
>> Inserting city A (0,11129)
 
insert 0 11130 A
>> Inserting city A (0,11130)
 
insert 0 11131 A
>> Inserting city A (0,11131)
 
insert 0 11132 A
>> Inserting city A (0,11132)
 
insert 0 11133 A
>> Inserting city A (0,11133)
 
insert 0 11134 A
>> Inserting city A (0,11134)
 
insert 0 11135 A
>> Inserting city A (0,11135)
 
insert 0 11136 A
>> Inserting city A (0,11136)
 
insert 0 11137 A
>> Inserting city A (0,11137)
 
insert 0 11138 A
>> Inserting city A (0,11138)
 
insert 0 11139 A
>> Inserting city A (0,11139)
 
insert 0 11140 A
>> Inserting city A (0,11140)
 
insert 0 11141 A
>> Inserting city A (0,11141)
 
insert 0 11142 A
>> Inserting city A (0,11142)
 
insert 0 11143 A
>> Inserting city A (0,11143)
 
insert 0 11144 A
>> Inserting city A (0,11144)
 
insert 0 11145 A
>> Inserting city A (0,11145)
 
insert 0 11146 A
>> Inserting city A (0,11146)
 
insert 0 11147 A
>> Inserting city A (0,11147)
 
insert 0 11148 A
>> Inserting city A (0,11148)
 
insert 0 11149 A
>> Inserting city A (0,11149)
 
insert 0 11150 A
>> Inserting city A (0,11150)
 
insert 0 11151 A
>> Inserting city A (0,11151)
 
insert 0 11152 A
>> Inserting city A (0,11152)
 
insert 0 11153 A
>> Inserting city A (0,11153)
 
insert 0 11154 A
>> Inserting city A (0,11154)
 
insert 0 11155 A
>> Inserting city A (0,11155)
 
insert 0 11156 A
>> Inserting city A (0,11156)
 
insert 0 11157 A
>> Inserting city A (0,11157)
 
insert 0 11158 A
>> Inserting city A (0,11158)
 
insert 0 11159 A
>> Inserting city A (0,11159)
 
insert 0 11160 A
>> Inserting city A (0,11160)
 
insert 0 11161 A
>> Inserting city A (0,11161)
 
insert 0 11162 A
>> Inserting city A (0,11162)
 
insert 0 11163 A
>> Inserting city A (0,11163)
 
insert 0 11164 A
>> Inserting city A (0,11164)
 
insert 0 11165 A
>> Inserting city A (0,11165)
 
insert 0 11166 A
>> Inserting city A (0,11166)
 
insert 0 11167 A
>> Inserting city A (0,11167)
 
insert 0 11168 A
>> Inserting city A (0,11168)
 
insert 0 11169 A
>> Inserting city A (0,11169)
 
insert 0 11170 A
>> Inserting city A (0,11170)
 
insert 0 11171 A
>> Inserting city A (0,11171)
 
insert 0 11172 A
>> Inserting city A (0,11172)
 
insert 0 11173 A
>> Inserting city A (0,11173)
 
insert 0 11174 A
>> Inserting city A (0,11174)
 
insert 0 11175 A
>> Inserting city A (0,11175)
 
insert 0 11176 A
>> Inserting city A (0,11176)
 
insert 0 11177 A
>> Inserting city A (0,11177)
 
insert 0 11178 A
>> Inserting city A (0,11178)
 
insert 0 11179 A
>> Inserting city A (0,11179)
 
insert 0 11180 A
>> Inserting city A (0,11180)
 
insert 0 11181 A
>> Inserting city A (0,11181)
 
insert 0 11182 A
>> Inserting city A (0,11182)
 
insert 0 11183 A
>> Inserting city A (0,11183)
 
insert 0 11184 A
>> Inserting city A (0,11184)
 
insert 0 11185 A
>> Inserting city A (0,11185)
 
insert 0 11186 A
>> Inserting city A (0,11186)
 
insert 0 11187 A
>> Inserting city A (0,11187)
 
insert 0 11188 A
>> Inserting city A (0,11188)
 
insert 0 11189 A
>> Inserting city A (0,11189)
 
insert 0 11190 A
>> Inserting city A (0,11190)
 
insert 0 11191 A
>> Inserting city A (0,11191)
 
insert 0 11192 A
>> Inserting city A (0,11192)
 
insert 0 11193 A
>> Inserting city A (0,11193)
 
insert 0 11194 A
>> Inserting city A (0,11194)
 
insert 0 11195 A
>> Inserting city A (0,11195)
 
insert 0 11196 A
>> Inserting city A (0,11196)
 
insert 0 11197 A
>> Inserting city A (0,11197)
 
insert 0 11198 A
>> Inserting city A (0,11198)
 
insert 0 11199 A
>> Inserting city A (0,11199)
 
insert 0 11200 A
>> Inserting city A (0,11200)
 
insert 0 11201 A
>> Inserting city A (0,11201)
 
insert 0 11202 A
>> Inserting city A (0,11202)
 
insert 0 11203 A
>> Inserting city A (0,11203)
 
insert 0 11204 A
>> Inserting city A (0,11204)
 
insert 0 11205 A
>> Inserting city A (0,11205)
 
insert 0 11206 A
>> Inserting city A (0,11206)
 
insert 0 11207 A
>> Inserting city A (0,11207)
 
insert 0 11208 A
>> Inserting city A (0,11208)
 
insert 0 11209 A
>> Inserting city A (0,11209)
 
insert 0 11210 A
>> Inserting city A (0,11210)
 
insert 0 11211 A
>> Inserting city A (0,11211)
 
insert 0 11212 A
>> Inserting city A (0,11212)
 
insert 0 11213 A
>> Inserting city A (0,11213)
 
insert 0 11214 A
>> Inserting city A (0,11214)
 
insert 0 11215 A
>> Inserting city A (0,11215)
 
insert 0 11216 A
>> Inserting city A (0,11216)
 
insert 0 11217 A
>> Inserting city A (0,11217)
 
insert 0 11218 A
>> Inserting city A (0,11218)
 
insert 0 11219 A
>> Inserting city A (0,11219)
 
insert 0 11220 A
>> Inserting city A (0,11220)
 
insert 0 11221 A
>> Inserting city A (0,11221)
 
insert 0 11222 A
>> Inserting city A (0,11222)
 
insert 0 11223 A
>> Inserting city A (0,11223)
 
insert 0 11224 A
>> Inserting city A (0,11224)
 
insert 0 11225 A
>> Inserting city A (0,11225)
 
insert 0 11226 A
>> Inserting city A (0,11226)
 
insert 0 11227 A
>> Inserting city A (0,11227)
 
insert 0 11228 A
>> Inserting city A (0,11228)
 
insert 0 11229 A
>> Inserting city A (0,11229)
 
insert 0 11230 A
>> Inserting city A (0,11230)
 
insert 0 11231 A
>> Inserting city A (0,11231)
 
insert 0 11232 A
>> Inserting city A (0,11232)
 
insert 0 11233 A
>> Inserting city A (0,11233)
 
insert 0 11234 A
>> Inserting city A (0,11234)
 
insert 0 11235 A
>> Inserting city A (0,11235)
 
insert 0 11236 A
>> Inserting city A (0,11236)
 
insert 0 11237 A
>> Inserting city A (0,11237)
 
insert 0 11238 A
>> Inserting city A (0,11238)
 
insert 0 11239 A
>> Inserting city A (0,11239)
 
insert 0 11240 A
>> Inserting city A (0,11240)
 
insert 0 11241 A
>> Inserting city A (0,11241)
 
insert 0 11242 A
>> Inserting city A (0,11242)
 
insert 0 11243 A
>> Inserting city A (0,11243)
 
insert 0 11244 A
>> Inserting city A (0,11244)
 
insert 0 11245 A
>> Inserting city A (0,11245)
 
insert 0 11246 A
>> Inserting city A (0,11246)
 
insert 0 11247 A
>> Inserting city A (0,11247)
 
insert 0 11248 A
>> Inserting city A (0,11248)
 
insert 0 11249 A
>> Inserting city A (0,11249)
 
insert 0 11250 A
>> Inserting city A (0,11250)
 
insert 0 11251 A
>> Inserting city A (0,11251)
 
insert 0 11252 A
>> Inserting city A (0,11252)
 
insert 0 11253 A
>> Inserting city A (0,11253)
 
insert 0 11254 A
>> Inserting city A (0,11254)
 
insert 0 11255 A
>> Inserting city A (0,11255)
 
insert 0 11256 A
>> Inserting city A (0,11256)
 
insert 0 11257 A
>> Inserting city A (0,11257)
 
insert 0 11258 A
>> Inserting city A (0,11258)
 
insert 0 11259 A
>> Inserting city A (0,11259)
 
insert 0 11260 A
>> Inserting city A (0,11260)
 
insert 0 11261 A
>> Inserting city A (0,11261)
 
insert 0 11262 A
>> Inserting city A (0,11262)
 
insert 0 11263 A
>> Inserting city A (0,11263)
 
insert 0 11264 A
>> Inserting city A (0,11264)
 
insert 0 11265 A
>> Inserting city A (0,11265)
 
insert 0 11266 A
>> Inserting city A (0,11266)
 
insert 0 11267 A
>> Inserting city A (0,11267)
 
insert 0 11268 A
>> Inserting city A (0,11268)
 
insert 0 11269 A
>> Inserting city A (0,11269)
 
insert 0 11270 A
>> Inserting city A (0,11270)
 
insert 0 11271 A
>> Inserting city A (0,11271)
 
insert 0 11272 A
>> Inserting city A (0,11272)
 
insert 0 11273 A
>> Inserting city A (0,11273)
 
insert 0 11274 A
>> Inserting city A (0,11274)
 
insert 0 11275 A
>> Inserting city A (0,11275)
 
insert 0 11276 A
>> Inserting city A (0,11276)
 
insert 0 11277 A
>> Inserting city A (0,11277)
 
insert 0 11278 A
>> Inserting city A (0,11278)
 
insert 0 11279 A
>> Inserting city A (0,11279)
 
insert 0 11280 A
>> Inserting city A (0,11280)
 
insert 0 11281 A
>> Inserting city A (0,11281)
 
insert 0 11282 A
>> Inserting city A (0,11282)
 
insert 0 11283 A
>> Inserting city A (0,11283)
 
insert 0 11284 A
>> Inserting city A (0,11284)
 
insert 0 11285 A
>> Inserting city A (0,11285)
 
insert 0 11286 A
>> Inserting city A (0,11286)
 
insert 0 11287 A
>> Inserting city A (0,11287)
 
insert 0 11288 A
>> Inserting city A (0,11288)
 
insert 0 11289 A
>> Inserting city A (0,11289)
 
insert 0 11290 A
>> Inserting city A (0,11290)
 
insert 0 11291 A
>> Inserting city A (0,11291)
 
insert 0 11292 A
>> Inserting city A (0,11292)
 
insert 0 11293 A
>> Inserting city A (0,11293)
 
insert 0 11294 A
>> Inserting city A (0,11294)
 
insert 0 11295 A
>> Inserting city A (0,11295)
 
insert 0 11296 A
>> Inserting city A (0,11296)
 
insert 0 11297 A
>> Inserting city A (0,11297)
 
insert 0 11298 A
>> Inserting city A (0,11298)
 
insert 0 11299 A
>> Inserting city A (0,11299)
 
insert 0 11300 A
>> Inserting city A (0,11300)
 
insert 0 11301 A
>> Inserting city A (0,11301)
 
insert 0 11302 A
>> Inserting city A (0,11302)
 
insert 0 11303 A
>> Inserting city A (0,11303)
 
insert 0 11304 A
>> Inserting city A (0,11304)
 
insert 0 11305 A
>> Inserting city A (0,11305)
 
insert 0 11306 A
>> Inserting city A (0,11306)
 
insert 0 11307 A
>> Inserting city A (0,11307)
 
insert 0 11308 A
>> Inserting city A (0,11308)
 
insert 0 11309 A
>> Inserting city A (0,11309)
 
insert 0 11310 A
>> Inserting city A (0,11310)
 
insert 0 11311 A
>> Inserting city A (0,11311)
 
insert 0 11312 A
>> Inserting city A (0,11312)
 
insert 0 11313 A
>> Inserting city A (0,11313)
 
insert 0 11314 A
>> Inserting city A (0,11314)
 
insert 0 11315 A
>> Inserting city A (0,11315)
 
insert 0 11316 A
>> Inserting city A (0,11316)
 
insert 0 11317 A
>> Inserting city A (0,11317)
 
insert 0 11318 A
>> Inserting city A (0,11318)
 
insert 0 11319 A
>> Inserting city A (0,11319)
 
insert 0 11320 A
>> Inserting city A (0,11320)
 
insert 0 11321 A
>> Inserting city A (0,11321)
 
insert 0 11322 A
>> Inserting city A (0,11322)
 
insert 0 11323 A
>> Inserting city A (0,11323)
 
insert 0 11324 A
>> Inserting city A (0,11324)
 
insert 0 11325 A
>> Inserting city A (0,11325)
 
insert 0 11326 A
>> Inserting city A (0,11326)
 
insert 0 11327 A
>> Inserting city A (0,11327)
 
insert 0 11328 A
>> Inserting city A (0,11328)
 
insert 0 11329 A
>> Inserting city A (0,11329)
 
insert 0 11330 A
>> Inserting city A (0,11330)
 
insert 0 11331 A
>> Inserting city A (0,11331)
 
insert 0 11332 A
>> Inserting city A (0,11332)
 
insert 0 11333 A
>> Inserting city A (0,11333)
 
insert 0 11334 A
>> Inserting city A (0,11334)
 
insert 0 11335 A
>> Inserting city A (0,11335)
 
insert 0 11336 A
>> Inserting city A (0,11336)
 
insert 0 11337 A
>> Inserting city A (0,11337)
 
insert 0 11338 A
>> Inserting city A (0,11338)
 
insert 0 11339 A
>> Inserting city A (0,11339)
 
insert 0 11340 A
>> Inserting city A (0,11340)
 
insert 0 11341 A
>> Inserting city A (0,11341)
 
insert 0 11342 A
>> Inserting city A (0,11342)
 
insert 0 11343 A
>> Inserting city A (0,11343)
 
insert 0 11344 A
>> Inserting city A (0,11344)
 
insert 0 11345 A
>> Inserting city A (0,11345)
 
insert 0 11346 A
>> Inserting city A (0,11346)
 
insert 0 11347 A
>> Inserting city A (0,11347)
 
insert 0 11348 A
>> Inserting city A (0,11348)
 
insert 0 11349 A
>> Inserting city A (0,11349)
 
insert 0 11350 A
>> Inserting city A (0,11350)
 
insert 0 11351 A
>> Inserting city A (0,11351)
 
insert 0 11352 A
>> Inserting city A (0,11352)
 
insert 0 11353 A
>> Inserting city A (0,11353)
 
insert 0 11354 A
>> Inserting city A (0,11354)
 
insert 0 11355 A
>> Inserting city A (0,11355)
 
insert 0 11356 A
>> Inserting city A (0,11356)
 
insert 0 11357 A
>> Inserting city A (0,11357)
 
insert 0 11358 A
>> Inserting city A (0,11358)
 
insert 0 11359 A
>> Inserting city A (0,11359)
 
insert 0 11360 A
>> Inserting city A (0,11360)
 
insert 0 11361 A
>> Inserting city A (0,11361)
 
insert 0 11362 A
>> Inserting city A (0,11362)
 
insert 0 11363 A
>> Inserting city A (0,11363)
 
insert 0 11364 A
>> Inserting city A (0,11364)
 
insert 0 11365 A
>> Inserting city A (0,11365)
 
insert 0 11366 A
>> Inserting city A (0,11366)
 
insert 0 11367 A
>> Inserting city A (0,11367)
 
insert 0 11368 A
>> Inserting city A (0,11368)
 
insert 0 11369 A
>> Inserting city A (0,11369)
 
insert 0 11370 A
>> Inserting city A (0,11370)
 
insert 0 11371 A
>> Inserting city A (0,11371)
 
insert 0 11372 A
>> Inserting city A (0,11372)
 
insert 0 11373 A
>> Inserting city A (0,11373)
 
insert 0 11374 A
>> Inserting city A (0,11374)
 
insert 0 11375 A
>> Inserting city A (0,11375)
 
insert 0 11376 A
>> Inserting city A (0,11376)
 
insert 0 11377 A
>> Inserting city A (0,11377)
 
insert 0 11378 A
>> Inserting city A (0,11378)
 
insert 0 11379 A
>> Inserting city A (0,11379)
 
insert 0 11380 A
>> Inserting city A (0,11380)
 
insert 0 11381 A
>> Inserting city A (0,11381)
 
insert 0 11382 A
>> Inserting city A (0,11382)
 
insert 0 11383 A
>> Inserting city A (0,11383)
 
insert 0 11384 A
>> Inserting city A (0,11384)
 
insert 0 11385 A
>> Inserting city A (0,11385)
 
insert 0 11386 A
>> Inserting city A (0,11386)
 
insert 0 11387 A
>> Inserting city A (0,11387)
 
insert 0 11388 A
>> Inserting city A (0,11388)
 
insert 0 11389 A
>> Inserting city A (0,11389)
 
insert 0 11390 A
>> Inserting city A (0,11390)
 
insert 0 11391 A
>> Inserting city A (0,11391)
 
insert 0 11392 A
>> Inserting city A (0,11392)
 
insert 0 11393 A
>> Inserting city A (0,11393)
 
insert 0 11394 A
>> Inserting city A (0,11394)
 
insert 0 11395 A
>> Inserting city A (0,11395)
 
insert 0 11396 A
>> Inserting city A (0,11396)
 
insert 0 11397 A
>> Inserting city A (0,11397)
 
insert 0 11398 A
>> Inserting city A (0,11398)
 
insert 0 11399 A
>> Inserting city A (0,11399)
 
insert 0 11400 A
>> Inserting city A (0,11400)
 
insert 0 11401 A
>> Inserting city A (0,11401)
 
insert 0 11402 A
>> Inserting city A (0,11402)
 
insert 0 11403 A
>> Inserting city A (0,11403)
 
insert 0 11404 A
>> Inserting city A (0,11404)
 
insert 0 11405 A
>> Inserting city A (0,11405)
 
insert 0 11406 A
>> Inserting city A (0,11406)
 
insert 0 11407 A
>> Inserting city A (0,11407)
 
insert 0 11408 A
>> Inserting city A (0,11408)
 
insert 0 11409 A
>> Inserting city A (0,11409)
 
insert 0 11410 A
>> Inserting city A (0,11410)
 
insert 0 11411 A
>> Inserting city A (0,11411)
 
insert 0 11412 A
>> Inserting city A (0,11412)
 
insert 0 11413 A
>> Inserting city A (0,11413)
 
insert 0 11414 A
>> Inserting city A (0,11414)
 
insert 0 11415 A
>> Inserting city A (0,11415)
 
insert 0 11416 A
>> Inserting city A (0,11416)
 
insert 0 11417 A
>> Inserting city A (0,11417)
 
insert 0 11418 A
>> Inserting city A (0,11418)
 
insert 0 11419 A
>> Inserting city A (0,11419)
 
insert 0 11420 A
>> Inserting city A (0,11420)
 
insert 0 11421 A
>> Inserting city A (0,11421)
 
insert 0 11422 A
>> Inserting city A (0,11422)
 
insert 0 11423 A
>> Inserting city A (0,11423)
 
insert 0 11424 A
>> Inserting city A (0,11424)
 
insert 0 11425 A
>> Inserting city A (0,11425)
 
insert 0 11426 A
>> Inserting city A (0,11426)
 
insert 0 11427 A
>> Inserting city A (0,11427)
 
insert 0 11428 A
>> Inserting city A (0,11428)
 
insert 0 11429 A
>> Inserting city A (0,11429)
 
insert 0 11430 A
>> Inserting city A (0,11430)
 
insert 0 11431 A
>> Inserting city A (0,11431)
 
insert 0 11432 A
>> Inserting city A (0,11432)
 
insert 0 11433 A
>> Inserting city A (0,11433)
 
insert 0 11434 A
>> Inserting city A (0,11434)
 
insert 0 11435 A
>> Inserting city A (0,11435)
 
insert 0 11436 A
>> Inserting city A (0,11436)
 
insert 0 11437 A
>> Inserting city A (0,11437)
 
insert 0 11438 A
>> Inserting city A (0,11438)
 
insert 0 11439 A
>> Inserting city A (0,11439)
 
insert 0 11440 A
>> Inserting city A (0,11440)
 
insert 0 11441 A
>> Inserting city A (0,11441)
 
insert 0 11442 A
>> Inserting city A (0,11442)
 
insert 0 11443 A
>> Inserting city A (0,11443)
 
insert 0 11444 A
>> Inserting city A (0,11444)
 
insert 0 11445 A
>> Inserting city A (0,11445)
 
insert 0 11446 A
>> Inserting city A (0,11446)
 
insert 0 11447 A
>> Inserting city A (0,11447)
 
insert 0 11448 A
>> Inserting city A (0,11448)
 
insert 0 11449 A
>> Inserting city A (0,11449)
 
insert 0 11450 A
>> Inserting city A (0,11450)
 
insert 0 11451 A
>> Inserting city A (0,11451)
 
insert 0 11452 A
>> Inserting city A (0,11452)
 
insert 0 11453 A
>> Inserting city A (0,11453)
 
insert 0 11454 A
>> Inserting city A (0,11454)
 
insert 0 11455 A
>> Inserting city A (0,11455)
 
insert 0 11456 A
>> Inserting city A (0,11456)
 
insert 0 11457 A
>> Inserting city A (0,11457)
 
insert 0 11458 A
>> Inserting city A (0,11458)
 
insert 0 11459 A
>> Inserting city A (0,11459)
 
insert 0 11460 A
>> Inserting city A (0,11460)
 
insert 0 11461 A
>> Inserting city A (0,11461)
 
insert 0 11462 A
>> Inserting city A (0,11462)
 
insert 0 11463 A
>> Inserting city A (0,11463)
 
insert 0 11464 A
>> Inserting city A (0,11464)
 
insert 0 11465 A
>> Inserting city A (0,11465)
 
insert 0 11466 A
>> Inserting city A (0,11466)
 
insert 0 11467 A
>> Inserting city A (0,11467)
 
insert 0 11468 A
>> Inserting city A (0,11468)
 
insert 0 11469 A
>> Inserting city A (0,11469)
 
insert 0 11470 A
>> Inserting city A (0,11470)
 
insert 0 11471 A
>> Inserting city A (0,11471)
 
insert 0 11472 A
>> Inserting city A (0,11472)
 
insert 0 11473 A
>> Inserting city A (0,11473)
 
insert 0 11474 A
>> Inserting city A (0,11474)
 
insert 0 11475 A
>> Inserting city A (0,11475)
 
insert 0 11476 A
>> Inserting city A (0,11476)
 
insert 0 11477 A
>> Inserting city A (0,11477)
 
insert 0 11478 A
>> Inserting city A (0,11478)
 
insert 0 11479 A
>> Inserting city A (0,11479)
 
insert 0 11480 A
>> Inserting city A (0,11480)
 
insert 0 11481 A
>> Inserting city A (0,11481)
 
insert 0 11482 A
>> Inserting city A (0,11482)
 
insert 0 11483 A
>> Inserting city A (0,11483)
 
insert 0 11484 A
>> Inserting city A (0,11484)
 
insert 0 11485 A
>> Inserting city A (0,11485)
 
insert 0 11486 A
>> Inserting city A (0,11486)
 
insert 0 11487 A
>> Inserting city A (0,11487)
 
insert 0 11488 A
>> Inserting city A (0,11488)
 
insert 0 11489 A
>> Inserting city A (0,11489)
 
insert 0 11490 A
>> Inserting city A (0,11490)
 
insert 0 11491 A
>> Inserting city A (0,11491)
 
insert 0 11492 A
>> Inserting city A (0,11492)
 
insert 0 11493 A
>> Inserting city A (0,11493)
 
insert 0 11494 A
>> Inserting city A (0,11494)
 
insert 0 11495 A
>> Inserting city A (0,11495)
 
insert 0 11496 A
>> Inserting city A (0,11496)
 
insert 0 11497 A
>> Inserting city A (0,11497)
 
insert 0 11498 A
>> Inserting city A (0,11498)
 
insert 0 11499 A
>> Inserting city A (0,11499)
 
insert 0 11500 A
>> Inserting city A (0,11500)
 
insert 0 11501 A
>> Inserting city A (0,11501)
 
insert 0 11502 A
>> Inserting city A (0,11502)
 
insert 0 11503 A
>> Inserting city A (0,11503)
 
insert 0 11504 A
>> Inserting city A (0,11504)
 
insert 0 11505 A
>> Inserting city A (0,11505)
 
insert 0 11506 A
>> Inserting city A (0,11506)
 
insert 0 11507 A
>> Inserting city A (0,11507)
 
insert 0 11508 A
>> Inserting city A (0,11508)
 
insert 0 11509 A
>> Inserting city A (0,11509)
 
insert 0 11510 A
>> Inserting city A (0,11510)
 
insert 0 11511 A
>> Inserting city A (0,11511)
 
insert 0 11512 A
>> Inserting city A (0,11512)
 
insert 0 11513 A
>> Inserting city A (0,11513)
 
insert 0 11514 A
>> Inserting city A (0,11514)
 
insert 0 11515 A
>> Inserting city A (0,11515)
 
insert 0 11516 A
>> Inserting city A (0,11516)
 
insert 0 11517 A
>> Inserting city A (0,11517)
 
insert 0 11518 A
>> Inserting city A (0,11518)
 
insert 0 11519 A
>> Inserting city A (0,11519)
 
insert 0 11520 A
>> Inserting city A (0,11520)
 
insert 0 11521 A
>> Inserting city A (0,11521)
 
insert 0 11522 A
>> Inserting city A (0,11522)
 
insert 0 11523 A
>> Inserting city A (0,11523)
 
insert 0 11524 A
>> Inserting city A (0,11524)
 
insert 0 11525 A
>> Inserting city A (0,11525)
 
insert 0 11526 A
>> Inserting city A (0,11526)
 
insert 0 11527 A
>> Inserting city A (0,11527)
 
insert 0 11528 A
>> Inserting city A (0,11528)
 
insert 0 11529 A
>> Inserting city A (0,11529)
 
insert 0 11530 A
>> Inserting city A (0,11530)
 
insert 0 11531 A
>> Inserting city A (0,11531)
 
insert 0 11532 A
>> Inserting city A (0,11532)
 
insert 0 11533 A
>> Inserting city A (0,11533)
 
insert 0 11534 A
>> Inserting city A (0,11534)
 
insert 0 11535 A
>> Inserting city A (0,11535)
 
insert 0 11536 A
>> Inserting city A (0,11536)
 
insert 0 11537 A
>> Inserting city A (0,11537)
 
insert 0 11538 A
>> Inserting city A (0,11538)
 
insert 0 11539 A
>> Inserting city A (0,11539)
 
insert 0 11540 A
>> Inserting city A (0,11540)
 
insert 0 11541 A
>> Inserting city A (0,11541)
 
insert 0 11542 A
>> Inserting city A (0,11542)
 
insert 0 11543 A
>> Inserting city A (0,11543)
 
insert 0 11544 A
>> Inserting city A (0,11544)
 
insert 0 11545 A
>> Inserting city A (0,11545)
 
insert 0 11546 A
>> Inserting city A (0,11546)
 
insert 0 11547 A
>> Inserting city A (0,11547)
 
insert 0 11548 A
>> Inserting city A (0,11548)
 
insert 0 11549 A
>> Inserting city A (0,11549)
 
insert 0 11550 A
>> Inserting city A (0,11550)
 
insert 0 11551 A
>> Inserting city A (0,11551)
 
insert 0 11552 A
>> Inserting city A (0,11552)
 
insert 0 11553 A
>> Inserting city A (0,11553)
 
insert 0 11554 A
>> Inserting city A (0,11554)
 
insert 0 11555 A
>> Inserting city A (0,11555)
 
insert 0 11556 A
>> Inserting city A (0,11556)
 
insert 0 11557 A
>> Inserting city A (0,11557)
 
insert 0 11558 A
>> Inserting city A (0,11558)
 
insert 0 11559 A
>> Inserting city A (0,11559)
 
insert 0 11560 A
>> Inserting city A (0,11560)
 
insert 0 11561 A
>> Inserting city A (0,11561)
 
insert 0 11562 A
>> Inserting city A (0,11562)
 
insert 0 11563 A
>> Inserting city A (0,11563)
 
insert 0 11564 A
>> Inserting city A (0,11564)
 
insert 0 11565 A
>> Inserting city A (0,11565)
 
insert 0 11566 A
>> Inserting city A (0,11566)
 
insert 0 11567 A
>> Inserting city A (0,11567)
 
insert 0 11568 A
>> Inserting city A (0,11568)
 
insert 0 11569 A
>> Inserting city A (0,11569)
 
insert 0 11570 A
>> Inserting city A (0,11570)
 
insert 0 11571 A
>> Inserting city A (0,11571)
 
insert 0 11572 A
>> Inserting city A (0,11572)
 
insert 0 11573 A
>> Inserting city A (0,11573)
 
insert 0 11574 A
>> Inserting city A (0,11574)
 
insert 0 11575 A
>> Inserting city A (0,11575)
 
insert 0 11576 A
>> Inserting city A (0,11576)
 
insert 0 11577 A
>> Inserting city A (0,11577)
 
insert 0 11578 A
>> Inserting city A (0,11578)
 
insert 0 11579 A
>> Inserting city A (0,11579)
 
insert 0 11580 A
>> Inserting city A (0,11580)
 
insert 0 11581 A
>> Inserting city A (0,11581)
 
insert 0 11582 A
>> Inserting city A (0,11582)
 
insert 0 11583 A
>> Inserting city A (0,11583)
 
insert 0 11584 A
>> Inserting city A (0,11584)
 
insert 0 11585 A
>> Inserting city A (0,11585)
 
insert 0 11586 A
>> Inserting city A (0,11586)
 
insert 0 11587 A
>> Inserting city A (0,11587)
 
insert 0 11588 A
>> Inserting city A (0,11588)
 
insert 0 11589 A
>> Inserting city A (0,11589)
 
insert 0 11590 A
>> Inserting city A (0,11590)
 
insert 0 11591 A
>> Inserting city A (0,11591)
 
insert 0 11592 A
>> Inserting city A (0,11592)
 
insert 0 11593 A
>> Inserting city A (0,11593)
 
insert 0 11594 A
>> Inserting city A (0,11594)
 
insert 0 11595 A
>> Inserting city A (0,11595)
 
insert 0 11596 A
>> Inserting city A (0,11596)
 
insert 0 11597 A
>> Inserting city A (0,11597)
 
insert 0 11598 A
>> Inserting city A (0,11598)
 
insert 0 11599 A
>> Inserting city A (0,11599)
 
insert 0 11600 A
>> Inserting city A (0,11600)
 
insert 0 11601 A
>> Inserting city A (0,11601)
 
insert 0 11602 A
>> Inserting city A (0,11602)
 
insert 0 11603 A
>> Inserting city A (0,11603)
 
insert 0 11604 A
>> Inserting city A (0,11604)
 
insert 0 11605 A
>> Inserting city A (0,11605)
 
insert 0 11606 A
>> Inserting city A (0,11606)
 
insert 0 11607 A
>> Inserting city A (0,11607)
 
insert 0 11608 A
>> Inserting city A (0,11608)
 
insert 0 11609 A
>> Inserting city A (0,11609)
 
insert 0 11610 A
>> Inserting city A (0,11610)
 
insert 0 11611 A
>> Inserting city A (0,11611)
 
insert 0 11612 A
>> Inserting city A (0,11612)
 
insert 0 11613 A
>> Inserting city A (0,11613)
 
insert 0 11614 A
>> Inserting city A (0,11614)
 
insert 0 11615 A
>> Inserting city A (0,11615)
 
insert 0 11616 A
>> Inserting city A (0,11616)
 
insert 0 11617 A
>> Inserting city A (0,11617)
 
insert 0 11618 A
>> Inserting city A (0,11618)
 
insert 0 11619 A
>> Inserting city A (0,11619)
 
insert 0 11620 A
>> Inserting city A (0,11620)
 
insert 0 11621 A
>> Inserting city A (0,11621)
 
insert 0 11622 A
>> Inserting city A (0,11622)
 
insert 0 11623 A
>> Inserting city A (0,11623)
 
insert 0 11624 A
>> Inserting city A (0,11624)
 
insert 0 11625 A
>> Inserting city A (0,11625)
 
insert 0 11626 A
>> Inserting city A (0,11626)
 
insert 0 11627 A
>> Inserting city A (0,11627)
 
insert 0 11628 A
>> Inserting city A (0,11628)
 
insert 0 11629 A
>> Inserting city A (0,11629)
 
insert 0 11630 A
>> Inserting city A (0,11630)
 
insert 0 11631 A
>> Inserting city A (0,11631)
 
insert 0 11632 A
>> Inserting city A (0,11632)
 
insert 0 11633 A
>> Inserting city A (0,11633)
 
insert 0 11634 A
>> Inserting city A (0,11634)
 
insert 0 11635 A
>> Inserting city A (0,11635)
 
insert 0 11636 A
>> Inserting city A (0,11636)
 
insert 0 11637 A
>> Inserting city A (0,11637)
 
insert 0 11638 A
>> Inserting city A (0,11638)
 
insert 0 11639 A
>> Inserting city A (0,11639)
 
insert 0 11640 A
>> Inserting city A (0,11640)
 
insert 0 11641 A
>> Inserting city A (0,11641)
 
insert 0 11642 A
>> Inserting city A (0,11642)
 
insert 0 11643 A
>> Inserting city A (0,11643)
 
insert 0 11644 A
>> Inserting city A (0,11644)
 
insert 0 11645 A
>> Inserting city A (0,11645)
 
insert 0 11646 A
>> Inserting city A (0,11646)
 
insert 0 11647 A
>> Inserting city A (0,11647)
 
insert 0 11648 A
>> Inserting city A (0,11648)
 
insert 0 11649 A
>> Inserting city A (0,11649)
 
insert 0 11650 A
>> Inserting city A (0,11650)
 
insert 0 11651 A
>> Inserting city A (0,11651)
 
insert 0 11652 A
>> Inserting city A (0,11652)
 
insert 0 11653 A
>> Inserting city A (0,11653)
 
insert 0 11654 A
>> Inserting city A (0,11654)
 
insert 0 11655 A
>> Inserting city A (0,11655)
 
insert 0 11656 A
>> Inserting city A (0,11656)
 
insert 0 11657 A
>> Inserting city A (0,11657)
 
insert 0 11658 A
>> Inserting city A (0,11658)
 
insert 0 11659 A
>> Inserting city A (0,11659)
 
insert 0 11660 A
>> Inserting city A (0,11660)
 
insert 0 11661 A
>> Inserting city A (0,11661)
 
insert 0 11662 A
>> Inserting city A (0,11662)
 
insert 0 11663 A
>> Inserting city A (0,11663)
 
insert 0 11664 A
>> Inserting city A (0,11664)
 
insert 0 11665 A
>> Inserting city A (0,11665)
 
insert 0 11666 A
>> Inserting city A (0,11666)
 
insert 0 11667 A
>> Inserting city A (0,11667)
 
insert 0 11668 A
>> Inserting city A (0,11668)
 
insert 0 11669 A
>> Inserting city A (0,11669)
 
insert 0 11670 A
>> Inserting city A (0,11670)
 
insert 0 11671 A
>> Inserting city A (0,11671)
 
insert 0 11672 A
>> Inserting city A (0,11672)
 
insert 0 11673 A
>> Inserting city A (0,11673)
 
insert 0 11674 A
>> Inserting city A (0,11674)
 
insert 0 11675 A
>> Inserting city A (0,11675)
 
insert 0 11676 A
>> Inserting city A (0,11676)
 
insert 0 11677 A
>> Inserting city A (0,11677)
 
insert 0 11678 A
>> Inserting city A (0,11678)
 
insert 0 11679 A
>> Inserting city A (0,11679)
 
insert 0 11680 A
>> Inserting city A (0,11680)
 
insert 0 11681 A
>> Inserting city A (0,11681)
 
insert 0 11682 A
>> Inserting city A (0,11682)
 
insert 0 11683 A
>> Inserting city A (0,11683)
 
insert 0 11684 A
>> Inserting city A (0,11684)
 
insert 0 11685 A
>> Inserting city A (0,11685)
 
insert 0 11686 A
>> Inserting city A (0,11686)
 
insert 0 11687 A
>> Inserting city A (0,11687)
 
insert 0 11688 A
>> Inserting city A (0,11688)
 
insert 0 11689 A
>> Inserting city A (0,11689)
 
insert 0 11690 A
>> Inserting city A (0,11690)
 
insert 0 11691 A
>> Inserting city A (0,11691)
 
insert 0 11692 A
>> Inserting city A (0,11692)
 
insert 0 11693 A
>> Inserting city A (0,11693)
 
insert 0 11694 A
>> Inserting city A (0,11694)
 
insert 0 11695 A
>> Inserting city A (0,11695)
 
insert 0 11696 A
>> Inserting city A (0,11696)
 
insert 0 11697 A
>> Inserting city A (0,11697)
 
insert 0 11698 A
>> Inserting city A (0,11698)
 
insert 0 11699 A
>> Inserting city A (0,11699)
 
insert 0 11700 A
>> Inserting city A (0,11700)
 
insert 0 11701 A
>> Inserting city A (0,11701)
 
insert 0 11702 A
>> Inserting city A (0,11702)
 
insert 0 11703 A
>> Inserting city A (0,11703)
 
insert 0 11704 A
>> Inserting city A (0,11704)
 
insert 0 11705 A
>> Inserting city A (0,11705)
 
insert 0 11706 A
>> Inserting city A (0,11706)
 
insert 0 11707 A
>> Inserting city A (0,11707)
 
insert 0 11708 A
>> Inserting city A (0,11708)
 
insert 0 11709 A
>> Inserting city A (0,11709)
 
insert 0 11710 A
>> Inserting city A (0,11710)
 
insert 0 11711 A
>> Inserting city A (0,11711)
 
insert 0 11712 A
>> Inserting city A (0,11712)
 
insert 0 11713 A
>> Inserting city A (0,11713)
 
insert 0 11714 A
>> Inserting city A (0,11714)
 
insert 0 11715 A
>> Inserting city A (0,11715)
 
insert 0 11716 A
>> Inserting city A (0,11716)
 
insert 0 11717 A
>> Inserting city A (0,11717)
 
insert 0 11718 A
>> Inserting city A (0,11718)
 
insert 0 11719 A
>> Inserting city A (0,11719)
 
insert 0 11720 A
>> Inserting city A (0,11720)
 
insert 0 11721 A
>> Inserting city A (0,11721)
 
insert 0 11722 A
>> Inserting city A (0,11722)
 
insert 0 11723 A
>> Inserting city A (0,11723)
 
insert 0 11724 A
>> Inserting city A (0,11724)
 
insert 0 11725 A
>> Inserting city A (0,11725)
 
insert 0 11726 A
>> Inserting city A (0,11726)
 
insert 0 11727 A
>> Inserting city A (0,11727)
 
insert 0 11728 A
>> Inserting city A (0,11728)
 
insert 0 11729 A
>> Inserting city A (0,11729)
 
insert 0 11730 A
>> Inserting city A (0,11730)
 
insert 0 11731 A
>> Inserting city A (0,11731)
 
insert 0 11732 A
>> Inserting city A (0,11732)
 
insert 0 11733 A
>> Inserting city A (0,11733)
 
insert 0 11734 A
>> Inserting city A (0,11734)
 
insert 0 11735 A
>> Inserting city A (0,11735)
 
insert 0 11736 A
>> Inserting city A (0,11736)
 
insert 0 11737 A
>> Inserting city A (0,11737)
 
insert 0 11738 A
>> Inserting city A (0,11738)
 
insert 0 11739 A
>> Inserting city A (0,11739)
 
insert 0 11740 A
>> Inserting city A (0,11740)
 
insert 0 11741 A
>> Inserting city A (0,11741)
 
insert 0 11742 A
>> Inserting city A (0,11742)
 
insert 0 11743 A
>> Inserting city A (0,11743)
 
insert 0 11744 A
>> Inserting city A (0,11744)
 
insert 0 11745 A
>> Inserting city A (0,11745)
 
insert 0 11746 A
>> Inserting city A (0,11746)
 
insert 0 11747 A
>> Inserting city A (0,11747)
 
insert 0 11748 A
>> Inserting city A (0,11748)
 
insert 0 11749 A
>> Inserting city A (0,11749)
 
insert 0 11750 A
>> Inserting city A (0,11750)
 
insert 0 11751 A
>> Inserting city A (0,11751)
 
insert 0 11752 A
>> Inserting city A (0,11752)
 
insert 0 11753 A
>> Inserting city A (0,11753)
 
insert 0 11754 A
>> Inserting city A (0,11754)
 
insert 0 11755 A
>> Inserting city A (0,11755)
 
insert 0 11756 A
>> Inserting city A (0,11756)
 
insert 0 11757 A
>> Inserting city A (0,11757)
 
insert 0 11758 A
>> Inserting city A (0,11758)
 
insert 0 11759 A
>> Inserting city A (0,11759)
 
insert 0 11760 A
>> Inserting city A (0,11760)
 
insert 0 11761 A
>> Inserting city A (0,11761)
 
insert 0 11762 A
>> Inserting city A (0,11762)
 
insert 0 11763 A
>> Inserting city A (0,11763)
 
insert 0 11764 A
>> Inserting city A (0,11764)
 
insert 0 11765 A
>> Inserting city A (0,11765)
 
insert 0 11766 A
>> Inserting city A (0,11766)
 
insert 0 11767 A
>> Inserting city A (0,11767)
 
insert 0 11768 A
>> Inserting city A (0,11768)
 
insert 0 11769 A
>> Inserting city A (0,11769)
 
insert 0 11770 A
>> Inserting city A (0,11770)
 
insert 0 11771 A
>> Inserting city A (0,11771)
 
insert 0 11772 A
>> Inserting city A (0,11772)
 
insert 0 11773 A
>> Inserting city A (0,11773)
 
insert 0 11774 A
>> Inserting city A (0,11774)
 
insert 0 11775 A
>> Inserting city A (0,11775)
 
insert 0 11776 A
>> Inserting city A (0,11776)
 
insert 0 11777 A
>> Inserting city A (0,11777)
 
insert 0 11778 A
>> Inserting city A (0,11778)
 
insert 0 11779 A
>> Inserting city A (0,11779)
 
insert 0 11780 A
>> Inserting city A (0,11780)
 
insert 0 11781 A
>> Inserting city A (0,11781)
 
insert 0 11782 A
>> Inserting city A (0,11782)
 
insert 0 11783 A
>> Inserting city A (0,11783)
 
insert 0 11784 A
>> Inserting city A (0,11784)
 
insert 0 11785 A
>> Inserting city A (0,11785)
 
insert 0 11786 A
>> Inserting city A (0,11786)
 
insert 0 11787 A
>> Inserting city A (0,11787)
 
insert 0 11788 A
>> Inserting city A (0,11788)
 
insert 0 11789 A
>> Inserting city A (0,11789)
 
insert 0 11790 A
>> Inserting city A (0,11790)
 
insert 0 11791 A
>> Inserting city A (0,11791)
 
insert 0 11792 A
>> Inserting city A (0,11792)
 
insert 0 11793 A
>> Inserting city A (0,11793)
 
insert 0 11794 A
>> Inserting city A (0,11794)
 
insert 0 11795 A
>> Inserting city A (0,11795)
 
insert 0 11796 A
>> Inserting city A (0,11796)
 
insert 0 11797 A
>> Inserting city A (0,11797)
 
insert 0 11798 A
>> Inserting city A (0,11798)
 
insert 0 11799 A
>> Inserting city A (0,11799)
 
insert 0 11800 A
>> Inserting city A (0,11800)
 
insert 0 11801 A
>> Inserting city A (0,11801)
 
insert 0 11802 A
>> Inserting city A (0,11802)
 
insert 0 11803 A
>> Inserting city A (0,11803)
 
insert 0 11804 A
>> Inserting city A (0,11804)
 
insert 0 11805 A
>> Inserting city A (0,11805)
 
insert 0 11806 A
>> Inserting city A (0,11806)
 
insert 0 11807 A
>> Inserting city A (0,11807)
 
insert 0 11808 A
>> Inserting city A (0,11808)
 
insert 0 11809 A
>> Inserting city A (0,11809)
 
insert 0 11810 A
>> Inserting city A (0,11810)
 
insert 0 11811 A
>> Inserting city A (0,11811)
 
insert 0 11812 A
>> Inserting city A (0,11812)
 
insert 0 11813 A
>> Inserting city A (0,11813)
 
insert 0 11814 A
>> Inserting city A (0,11814)
 
insert 0 11815 A
>> Inserting city A (0,11815)
 
insert 0 11816 A
>> Inserting city A (0,11816)
 
insert 0 11817 A
>> Inserting city A (0,11817)
 
insert 0 11818 A
>> Inserting city A (0,11818)
 
insert 0 11819 A
>> Inserting city A (0,11819)
 
insert 0 11820 A
>> Inserting city A (0,11820)
 
insert 0 11821 A
>> Inserting city A (0,11821)
 
insert 0 11822 A
>> Inserting city A (0,11822)
 
insert 0 11823 A
>> Inserting city A (0,11823)
 
insert 0 11824 A
>> Inserting city A (0,11824)
 
insert 0 11825 A
>> Inserting city A (0,11825)
 
insert 0 11826 A
>> Inserting city A (0,11826)
 
insert 0 11827 A
>> Inserting city A (0,11827)
 
insert 0 11828 A
>> Inserting city A (0,11828)
 
insert 0 11829 A
>> Inserting city A (0,11829)
 
insert 0 11830 A
>> Inserting city A (0,11830)
 
insert 0 11831 A
>> Inserting city A (0,11831)
 
insert 0 11832 A
>> Inserting city A (0,11832)
 
insert 0 11833 A
>> Inserting city A (0,11833)
 
insert 0 11834 A
>> Inserting city A (0,11834)
 
insert 0 11835 A
>> Inserting city A (0,11835)
 
insert 0 11836 A
>> Inserting city A (0,11836)
 
insert 0 11837 A
>> Inserting city A (0,11837)
 
insert 0 11838 A
>> Inserting city A (0,11838)
 
insert 0 11839 A
>> Inserting city A (0,11839)
 
insert 0 11840 A
>> Inserting city A (0,11840)
 
insert 0 11841 A
>> Inserting city A (0,11841)
 
insert 0 11842 A
>> Inserting city A (0,11842)
 
insert 0 11843 A
>> Inserting city A (0,11843)
 
insert 0 11844 A
>> Inserting city A (0,11844)
 
insert 0 11845 A
>> Inserting city A (0,11845)
 
insert 0 11846 A
>> Inserting city A (0,11846)
 
insert 0 11847 A
>> Inserting city A (0,11847)
 
insert 0 11848 A
>> Inserting city A (0,11848)
 
insert 0 11849 A
>> Inserting city A (0,11849)
 
insert 0 11850 A
>> Inserting city A (0,11850)
 
insert 0 11851 A
>> Inserting city A (0,11851)
 
insert 0 11852 A
>> Inserting city A (0,11852)
 
insert 0 11853 A
>> Inserting city A (0,11853)
 
insert 0 11854 A
>> Inserting city A (0,11854)
 
insert 0 11855 A
>> Inserting city A (0,11855)
 
insert 0 11856 A
>> Inserting city A (0,11856)
 
insert 0 11857 A
>> Inserting city A (0,11857)
 
insert 0 11858 A
>> Inserting city A (0,11858)
 
insert 0 11859 A
>> Inserting city A (0,11859)
 
insert 0 11860 A
>> Inserting city A (0,11860)
 
insert 0 11861 A
>> Inserting city A (0,11861)
 
insert 0 11862 A
>> Inserting city A (0,11862)
 
insert 0 11863 A
>> Inserting city A (0,11863)
 
insert 0 11864 A
>> Inserting city A (0,11864)
 
insert 0 11865 A
>> Inserting city A (0,11865)
 
insert 0 11866 A
>> Inserting city A (0,11866)
 
insert 0 11867 A
>> Inserting city A (0,11867)
 
insert 0 11868 A
>> Inserting city A (0,11868)
 
insert 0 11869 A
>> Inserting city A (0,11869)
 
insert 0 11870 A
>> Inserting city A (0,11870)
 
insert 0 11871 A
>> Inserting city A (0,11871)
 
insert 0 11872 A
>> Inserting city A (0,11872)
 
insert 0 11873 A
>> Inserting city A (0,11873)
 
insert 0 11874 A
>> Inserting city A (0,11874)
 
insert 0 11875 A
>> Inserting city A (0,11875)
 
insert 0 11876 A
>> Inserting city A (0,11876)
 
insert 0 11877 A
>> Inserting city A (0,11877)
 
insert 0 11878 A
>> Inserting city A (0,11878)
 
insert 0 11879 A
>> Inserting city A (0,11879)
 
insert 0 11880 A
>> Inserting city A (0,11880)
 
insert 0 11881 A
>> Inserting city A (0,11881)
 
insert 0 11882 A
>> Inserting city A (0,11882)
 
insert 0 11883 A
>> Inserting city A (0,11883)
 
insert 0 11884 A
>> Inserting city A (0,11884)
 
insert 0 11885 A
>> Inserting city A (0,11885)
 
insert 0 11886 A
>> Inserting city A (0,11886)
 
insert 0 11887 A
>> Inserting city A (0,11887)
 
insert 0 11888 A
>> Inserting city A (0,11888)
 
insert 0 11889 A
>> Inserting city A (0,11889)
 
insert 0 11890 A
>> Inserting city A (0,11890)
 
insert 0 11891 A
>> Inserting city A (0,11891)
 
insert 0 11892 A
>> Inserting city A (0,11892)
 
insert 0 11893 A
>> Inserting city A (0,11893)
 
insert 0 11894 A
>> Inserting city A (0,11894)
 
insert 0 11895 A
>> Inserting city A (0,11895)
 
insert 0 11896 A
>> Inserting city A (0,11896)
 
insert 0 11897 A
>> Inserting city A (0,11897)
 
insert 0 11898 A
>> Inserting city A (0,11898)
 
insert 0 11899 A
>> Inserting city A (0,11899)
 
insert 0 11900 A
>> Inserting city A (0,11900)
 
insert 0 11901 A
>> Inserting city A (0,11901)
 
insert 0 11902 A
>> Inserting city A (0,11902)
 
insert 0 11903 A
>> Inserting city A (0,11903)
 
insert 0 11904 A
>> Inserting city A (0,11904)
 
insert 0 11905 A
>> Inserting city A (0,11905)
 
insert 0 11906 A
>> Inserting city A (0,11906)
 
insert 0 11907 A
>> Inserting city A (0,11907)
 
insert 0 11908 A
>> Inserting city A (0,11908)
 
insert 0 11909 A
>> Inserting city A (0,11909)
 
insert 0 11910 A
>> Inserting city A (0,11910)
 
insert 0 11911 A
>> Inserting city A (0,11911)
 
insert 0 11912 A
>> Inserting city A (0,11912)
 
insert 0 11913 A
>> Inserting city A (0,11913)
 
insert 0 11914 A
>> Inserting city A (0,11914)
 
insert 0 11915 A
>> Inserting city A (0,11915)
 
insert 0 11916 A
>> Inserting city A (0,11916)
 
insert 0 11917 A
>> Inserting city A (0,11917)
 
insert 0 11918 A
>> Inserting city A (0,11918)
 
insert 0 11919 A
>> Inserting city A (0,11919)
 
insert 0 11920 A
>> Inserting city A (0,11920)
 
insert 0 11921 A
>> Inserting city A (0,11921)
 
insert 0 11922 A
>> Inserting city A (0,11922)
 
insert 0 11923 A
>> Inserting city A (0,11923)
 
insert 0 11924 A
>> Inserting city A (0,11924)
 
insert 0 11925 A
>> Inserting city A (0,11925)
 
insert 0 11926 A
>> Inserting city A (0,11926)
 
insert 0 11927 A
>> Inserting city A (0,11927)
 
insert 0 11928 A
>> Inserting city A (0,11928)
 
insert 0 11929 A
>> Inserting city A (0,11929)
 
insert 0 11930 A
>> Inserting city A (0,11930)
 
insert 0 11931 A
>> Inserting city A (0,11931)
 
insert 0 11932 A
>> Inserting city A (0,11932)
 
insert 0 11933 A
>> Inserting city A (0,11933)
 
insert 0 11934 A
>> Inserting city A (0,11934)
 
insert 0 11935 A
>> Inserting city A (0,11935)
 
insert 0 11936 A
>> Inserting city A (0,11936)
 
insert 0 11937 A
>> Inserting city A (0,11937)
 
insert 0 11938 A
>> Inserting city A (0,11938)
 
insert 0 11939 A
>> Inserting city A (0,11939)
 
insert 0 11940 A
>> Inserting city A (0,11940)
 
insert 0 11941 A
>> Inserting city A (0,11941)
 
insert 0 11942 A
>> Inserting city A (0,11942)
 
insert 0 11943 A
>> Inserting city A (0,11943)
 
insert 0 11944 A
>> Inserting city A (0,11944)
 
insert 0 11945 A
>> Inserting city A (0,11945)
 
insert 0 11946 A
>> Inserting city A (0,11946)
 
insert 0 11947 A
>> Inserting city A (0,11947)
 
insert 0 11948 A
>> Inserting city A (0,11948)
 
insert 0 11949 A
>> Inserting city A (0,11949)
 
insert 0 11950 A
>> Inserting city A (0,11950)
 
insert 0 11951 A
>> Inserting city A (0,11951)
 
insert 0 11952 A
>> Inserting city A (0,11952)
 
insert 0 11953 A
>> Inserting city A (0,11953)
 
insert 0 11954 A
>> Inserting city A (0,11954)
 
insert 0 11955 A
>> Inserting city A (0,11955)
 
insert 0 11956 A
>> Inserting city A (0,11956)
 
insert 0 11957 A
>> Inserting city A (0,11957)
 
insert 0 11958 A
>> Inserting city A (0,11958)
 
insert 0 11959 A
>> Inserting city A (0,11959)
 
insert 0 11960 A
>> Inserting city A (0,11960)
 
insert 0 11961 A
>> Inserting city A (0,11961)
 
insert 0 11962 A
>> Inserting city A (0,11962)
 
insert 0 11963 A
>> Inserting city A (0,11963)
 
insert 0 11964 A
>> Inserting city A (0,11964)
 
insert 0 11965 A
>> Inserting city A (0,11965)
 
insert 0 11966 A
>> Inserting city A (0,11966)
 
insert 0 11967 A
>> Inserting city A (0,11967)
 
insert 0 11968 A
>> Inserting city A (0,11968)
 
insert 0 11969 A
>> Inserting city A (0,11969)
 
insert 0 11970 A
>> Inserting city A (0,11970)
 
insert 0 11971 A
>> Inserting city A (0,11971)
 
insert 0 11972 A
>> Inserting city A (0,11972)
 
insert 0 11973 A
>> Inserting city A (0,11973)
 
insert 0 11974 A
>> Inserting city A (0,11974)
 
insert 0 11975 A
>> Inserting city A (0,11975)
 
insert 0 11976 A
>> Inserting city A (0,11976)
 
insert 0 11977 A
>> Inserting city A (0,11977)
 
insert 0 11978 A
>> Inserting city A (0,11978)
 
insert 0 11979 A
>> Inserting city A (0,11979)
 
insert 0 11980 A
>> Inserting city A (0,11980)
 
insert 0 11981 A
>> Inserting city A (0,11981)
 
insert 0 11982 A
>> Inserting city A (0,11982)
 
insert 0 11983 A
>> Inserting city A (0,11983)
 
insert 0 11984 A
>> Inserting city A (0,11984)
 
insert 0 11985 A
>> Inserting city A (0,11985)
 
insert 0 11986 A
>> Inserting city A (0,11986)
 
insert 0 11987 A
>> Inserting city A (0,11987)
 
insert 0 11988 A
>> Inserting city A (0,11988)
 
insert 0 11989 A
>> Inserting city A (0,11989)
 
insert 0 11990 A
>> Inserting city A (0,11990)
 
insert 0 11991 A
>> Inserting city A (0,11991)
 
insert 0 11992 A
>> Inserting city A (0,11992)
 
insert 0 11993 A
>> Inserting city A (0,11993)
 
insert 0 11994 A
>> Inserting city A (0,11994)
 
insert 0 11995 A
>> Inserting city A (0,11995)
 
insert 0 11996 A
>> Inserting city A (0,11996)
 
insert 0 11997 A
>> Inserting city A (0,11997)
 
insert 0 11998 A
>> Inserting city A (0,11998)
 
insert 0 11999 A
>> Inserting city A (0,11999)
 
insert 0 12000 A
>> Inserting city A (0,12000)
 
insert 0 12001 A
>> Inserting city A (0,12001)
 
insert 0 12002 A
>> Inserting city A (0,12002)
 
insert 0 12003 A
>> Inserting city A (0,12003)
 
insert 0 12004 A
>> Inserting city A (0,12004)
 
insert 0 12005 A
>> Inserting city A (0,12005)
 
insert 0 12006 A
>> Inserting city A (0,12006)
 
insert 0 12007 A
>> Inserting city A (0,12007)
 
insert 0 12008 A
>> Inserting city A (0,12008)
 
insert 0 12009 A
>> Inserting city A (0,12009)
 
insert 0 12010 A
>> Inserting city A (0,12010)
 
insert 0 12011 A
>> Inserting city A (0,12011)
 
insert 0 12012 A
>> Inserting city A (0,12012)
 
insert 0 12013 A
>> Inserting city A (0,12013)
 
insert 0 12014 A
>> Inserting city A (0,12014)
 
insert 0 12015 A
>> Inserting city A (0,12015)
 
insert 0 12016 A
>> Inserting city A (0,12016)
 
insert 0 12017 A
>> Inserting city A (0,12017)
 
insert 0 12018 A
>> Inserting city A (0,12018)
 
insert 0 12019 A
>> Inserting city A (0,12019)
 
insert 0 12020 A
>> Inserting city A (0,12020)
 
insert 0 12021 A
>> Inserting city A (0,12021)
 
insert 0 12022 A
>> Inserting city A (0,12022)
 
insert 0 12023 A
>> Inserting city A (0,12023)
 
insert 0 12024 A
>> Inserting city A (0,12024)
 
insert 0 12025 A
>> Inserting city A (0,12025)
 
insert 0 12026 A
>> Inserting city A (0,12026)
 
insert 0 12027 A
>> Inserting city A (0,12027)
 
insert 0 12028 A
>> Inserting city A (0,12028)
 
insert 0 12029 A
>> Inserting city A (0,12029)
 
insert 0 12030 A
>> Inserting city A (0,12030)
 
insert 0 12031 A
>> Inserting city A (0,12031)
 
insert 0 12032 A
>> Inserting city A (0,12032)
 
insert 0 12033 A
>> Inserting city A (0,12033)
 
insert 0 12034 A
>> Inserting city A (0,12034)
 
insert 0 12035 A
>> Inserting city A (0,12035)
 
insert 0 12036 A
>> Inserting city A (0,12036)
 
insert 0 12037 A
>> Inserting city A (0,12037)
 
insert 0 12038 A
>> Inserting city A (0,12038)
 
insert 0 12039 A
>> Inserting city A (0,12039)
 
insert 0 12040 A
>> Inserting city A (0,12040)
 
insert 0 12041 A
>> Inserting city A (0,12041)
 
insert 0 12042 A
>> Inserting city A (0,12042)
 
insert 0 12043 A
>> Inserting city A (0,12043)
 
insert 0 12044 A
>> Inserting city A (0,12044)
 
insert 0 12045 A
>> Inserting city A (0,12045)
 
insert 0 12046 A
>> Inserting city A (0,12046)
 
insert 0 12047 A
>> Inserting city A (0,12047)
 
insert 0 12048 A
>> Inserting city A (0,12048)
 
insert 0 12049 A
>> Inserting city A (0,12049)
 
insert 0 12050 A
>> Inserting city A (0,12050)
 
insert 0 12051 A
>> Inserting city A (0,12051)
 
insert 0 12052 A
>> Inserting city A (0,12052)
 
insert 0 12053 A
>> Inserting city A (0,12053)
 
insert 0 12054 A
>> Inserting city A (0,12054)
 
insert 0 12055 A
>> Inserting city A (0,12055)
 
insert 0 12056 A
>> Inserting city A (0,12056)
 
insert 0 12057 A
>> Inserting city A (0,12057)
 
insert 0 12058 A
>> Inserting city A (0,12058)
 
insert 0 12059 A
>> Inserting city A (0,12059)
 
insert 0 12060 A
>> Inserting city A (0,12060)
 
insert 0 12061 A
>> Inserting city A (0,12061)
 
insert 0 12062 A
>> Inserting city A (0,12062)
 
insert 0 12063 A
>> Inserting city A (0,12063)
 
insert 0 12064 A
>> Inserting city A (0,12064)
 
insert 0 12065 A
>> Inserting city A (0,12065)
 
insert 0 12066 A
>> Inserting city A (0,12066)
 
insert 0 12067 A
>> Inserting city A (0,12067)
 
insert 0 12068 A
>> Inserting city A (0,12068)
 
insert 0 12069 A
>> Inserting city A (0,12069)
 
insert 0 12070 A
>> Inserting city A (0,12070)
 
insert 0 12071 A
>> Inserting city A (0,12071)
 
insert 0 12072 A
>> Inserting city A (0,12072)
 
insert 0 12073 A
>> Inserting city A (0,12073)
 
insert 0 12074 A
>> Inserting city A (0,12074)
 
insert 0 12075 A
>> Inserting city A (0,12075)
 
insert 0 12076 A
>> Inserting city A (0,12076)
 
insert 0 12077 A
>> Inserting city A (0,12077)
 
insert 0 12078 A
>> Inserting city A (0,12078)
 
insert 0 12079 A
>> Inserting city A (0,12079)
 
insert 0 12080 A
>> Inserting city A (0,12080)
 
insert 0 12081 A
>> Inserting city A (0,12081)
 
insert 0 12082 A
>> Inserting city A (0,12082)
 
insert 0 12083 A
>> Inserting city A (0,12083)
 
insert 0 12084 A
>> Inserting city A (0,12084)
 
insert 0 12085 A
>> Inserting city A (0,12085)
 
insert 0 12086 A
>> Inserting city A (0,12086)
 
insert 0 12087 A
>> Inserting city A (0,12087)
 
insert 0 12088 A
>> Inserting city A (0,12088)
 
insert 0 12089 A
>> Inserting city A (0,12089)
 
insert 0 12090 A
>> Inserting city A (0,12090)
 
insert 0 12091 A
>> Inserting city A (0,12091)
 
insert 0 12092 A
>> Inserting city A (0,12092)
 
insert 0 12093 A
>> Inserting city A (0,12093)
 
insert 0 12094 A
>> Inserting city A (0,12094)
 
insert 0 12095 A
>> Inserting city A (0,12095)
 
insert 0 12096 A
>> Inserting city A (0,12096)
 
insert 0 12097 A
>> Inserting city A (0,12097)
 
insert 0 12098 A
>> Inserting city A (0,12098)
 
insert 0 12099 A
>> Inserting city A (0,12099)
 
insert 0 12100 A
>> Inserting city A (0,12100)
 
insert 0 12101 A
>> Inserting city A (0,12101)
 
insert 0 12102 A
>> Inserting city A (0,12102)
 
insert 0 12103 A
>> Inserting city A (0,12103)
 
insert 0 12104 A
>> Inserting city A (0,12104)
 
insert 0 12105 A
>> Inserting city A (0,12105)
 
insert 0 12106 A
>> Inserting city A (0,12106)
 
insert 0 12107 A
>> Inserting city A (0,12107)
 
insert 0 12108 A
>> Inserting city A (0,12108)
 
insert 0 12109 A
>> Inserting city A (0,12109)
 
insert 0 12110 A
>> Inserting city A (0,12110)
 
insert 0 12111 A
>> Inserting city A (0,12111)
 
insert 0 12112 A
>> Inserting city A (0,12112)
 
insert 0 12113 A
>> Inserting city A (0,12113)
 
insert 0 12114 A
>> Inserting city A (0,12114)
 
insert 0 12115 A
>> Inserting city A (0,12115)
 
insert 0 12116 A
>> Inserting city A (0,12116)
 
insert 0 12117 A
>> Inserting city A (0,12117)
 
insert 0 12118 A
>> Inserting city A (0,12118)
 
insert 0 12119 A
>> Inserting city A (0,12119)
 
insert 0 12120 A
>> Inserting city A (0,12120)
 
insert 0 12121 A
>> Inserting city A (0,12121)
 
insert 0 12122 A
>> Inserting city A (0,12122)
 
insert 0 12123 A
>> Inserting city A (0,12123)
 
insert 0 12124 A
>> Inserting city A (0,12124)
 
insert 0 12125 A
>> Inserting city A (0,12125)
 
insert 0 12126 A
>> Inserting city A (0,12126)
 
insert 0 12127 A
>> Inserting city A (0,12127)
 
insert 0 12128 A
>> Inserting city A (0,12128)
 
insert 0 12129 A
>> Inserting city A (0,12129)
 
insert 0 12130 A
>> Inserting city A (0,12130)
 
insert 0 12131 A
>> Inserting city A (0,12131)
 
insert 0 12132 A
>> Inserting city A (0,12132)
 
insert 0 12133 A
>> Inserting city A (0,12133)
 
insert 0 12134 A
>> Inserting city A (0,12134)
 
insert 0 12135 A
>> Inserting city A (0,12135)
 
insert 0 12136 A
>> Inserting city A (0,12136)
 
insert 0 12137 A
>> Inserting city A (0,12137)
 
insert 0 12138 A
>> Inserting city A (0,12138)
 
insert 0 12139 A
>> Inserting city A (0,12139)
 
insert 0 12140 A
>> Inserting city A (0,12140)
 
insert 0 12141 A
>> Inserting city A (0,12141)
 
insert 0 12142 A
>> Inserting city A (0,12142)
 
insert 0 12143 A
>> Inserting city A (0,12143)
 
insert 0 12144 A
>> Inserting city A (0,12144)
 
insert 0 12145 A
>> Inserting city A (0,12145)
 
insert 0 12146 A
>> Inserting city A (0,12146)
 
insert 0 12147 A
>> Inserting city A (0,12147)
 
insert 0 12148 A
>> Inserting city A (0,12148)
 
insert 0 12149 A
>> Inserting city A (0,12149)
 
insert 0 12150 A
>> Inserting city A (0,12150)
 
insert 0 12151 A
>> Inserting city A (0,12151)
 
insert 0 12152 A
>> Inserting city A (0,12152)
 
insert 0 12153 A
>> Inserting city A (0,12153)
 
insert 0 12154 A
>> Inserting city A (0,12154)
 
insert 0 12155 A
>> Inserting city A (0,12155)
 
insert 0 12156 A
>> Inserting city A (0,12156)
 
insert 0 12157 A
>> Inserting city A (0,12157)
 
insert 0 12158 A
>> Inserting city A (0,12158)
 
insert 0 12159 A
>> Inserting city A (0,12159)
 
insert 0 12160 A
>> Inserting city A (0,12160)
 
insert 0 12161 A
>> Inserting city A (0,12161)
 
insert 0 12162 A
>> Inserting city A (0,12162)
 
insert 0 12163 A
>> Inserting city A (0,12163)
 
insert 0 12164 A
>> Inserting city A (0,12164)
 
insert 0 12165 A
>> Inserting city A (0,12165)
 
insert 0 12166 A
>> Inserting city A (0,12166)
 
insert 0 12167 A
>> Inserting city A (0,12167)
 
insert 0 12168 A
>> Inserting city A (0,12168)
 
insert 0 12169 A
>> Inserting city A (0,12169)
 
insert 0 12170 A
>> Inserting city A (0,12170)
 
insert 0 12171 A
>> Inserting city A (0,12171)
 
insert 0 12172 A
>> Inserting city A (0,12172)
 
insert 0 12173 A
>> Inserting city A (0,12173)
 
insert 0 12174 A
>> Inserting city A (0,12174)
 
insert 0 12175 A
>> Inserting city A (0,12175)
 
insert 0 12176 A
>> Inserting city A (0,12176)
 
insert 0 12177 A
>> Inserting city A (0,12177)
 
insert 0 12178 A
>> Inserting city A (0,12178)
 
insert 0 12179 A
>> Inserting city A (0,12179)
 
insert 0 12180 A
>> Inserting city A (0,12180)
 
insert 0 12181 A
>> Inserting city A (0,12181)
 
insert 0 12182 A
>> Inserting city A (0,12182)
 
insert 0 12183 A
>> Inserting city A (0,12183)
 
insert 0 12184 A
>> Inserting city A (0,12184)
 
insert 0 12185 A
>> Inserting city A (0,12185)
 
insert 0 12186 A
>> Inserting city A (0,12186)
 
insert 0 12187 A
>> Inserting city A (0,12187)
 
insert 0 12188 A
>> Inserting city A (0,12188)
 
insert 0 12189 A
>> Inserting city A (0,12189)
 
insert 0 12190 A
>> Inserting city A (0,12190)
 
insert 0 12191 A
>> Inserting city A (0,12191)
 
insert 0 12192 A
>> Inserting city A (0,12192)
 
insert 0 12193 A
>> Inserting city A (0,12193)
 
insert 0 12194 A
>> Inserting city A (0,12194)
 
insert 0 12195 A
>> Inserting city A (0,12195)
 
insert 0 12196 A
>> Inserting city A (0,12196)
 
insert 0 12197 A
>> Inserting city A (0,12197)
 
insert 0 12198 A
>> Inserting city A (0,12198)
 
insert 0 12199 A
>> Inserting city A (0,12199)
 
insert 0 12200 A
>> Inserting city A (0,12200)
 
insert 0 12201 A
>> Inserting city A (0,12201)
 
insert 0 12202 A
>> Inserting city A (0,12202)
 
insert 0 12203 A
>> Inserting city A (0,12203)
 
insert 0 12204 A
>> Inserting city A (0,12204)
 
insert 0 12205 A
>> Inserting city A (0,12205)
 
insert 0 12206 A
>> Inserting city A (0,12206)
 
insert 0 12207 A
>> Inserting city A (0,12207)
 
insert 0 12208 A
>> Inserting city A (0,12208)
 
insert 0 12209 A
>> Inserting city A (0,12209)
 
insert 0 12210 A
>> Inserting city A (0,12210)
 
insert 0 12211 A
>> Inserting city A (0,12211)
 
insert 0 12212 A
>> Inserting city A (0,12212)
 
insert 0 12213 A
>> Inserting city A (0,12213)
 
insert 0 12214 A
>> Inserting city A (0,12214)
 
insert 0 12215 A
>> Inserting city A (0,12215)
 
insert 0 12216 A
>> Inserting city A (0,12216)
 
insert 0 12217 A
>> Inserting city A (0,12217)
 
insert 0 12218 A
>> Inserting city A (0,12218)
 
insert 0 12219 A
>> Inserting city A (0,12219)
 
insert 0 12220 A
>> Inserting city A (0,12220)
 
insert 0 12221 A
>> Inserting city A (0,12221)
 
insert 0 12222 A
>> Inserting city A (0,12222)
 
insert 0 12223 A
>> Inserting city A (0,12223)
 
insert 0 12224 A
>> Inserting city A (0,12224)
 
insert 0 12225 A
>> Inserting city A (0,12225)
 
insert 0 12226 A
>> Inserting city A (0,12226)
 
insert 0 12227 A
>> Inserting city A (0,12227)
 
insert 0 12228 A
>> Inserting city A (0,12228)
 
insert 0 12229 A
>> Inserting city A (0,12229)
 
insert 0 12230 A
>> Inserting city A (0,12230)
 
insert 0 12231 A
>> Inserting city A (0,12231)
 
insert 0 12232 A
>> Inserting city A (0,12232)
 
insert 0 12233 A
>> Inserting city A (0,12233)
 
insert 0 12234 A
>> Inserting city A (0,12234)
 
insert 0 12235 A
>> Inserting city A (0,12235)
 
insert 0 12236 A
>> Inserting city A (0,12236)
 
insert 0 12237 A
>> Inserting city A (0,12237)
 
insert 0 12238 A
>> Inserting city A (0,12238)
 
insert 0 12239 A
>> Inserting city A (0,12239)
 
insert 0 12240 A
>> Inserting city A (0,12240)
 
insert 0 12241 A
>> Inserting city A (0,12241)
 
insert 0 12242 A
>> Inserting city A (0,12242)
 
insert 0 12243 A
>> Inserting city A (0,12243)
 
insert 0 12244 A
>> Inserting city A (0,12244)
 
insert 0 12245 A
>> Inserting city A (0,12245)
 
insert 0 12246 A
>> Inserting city A (0,12246)
 
insert 0 12247 A
>> Inserting city A (0,12247)
 
insert 0 12248 A
>> Inserting city A (0,12248)
 
insert 0 12249 A
>> Inserting city A (0,12249)
 
insert 0 12250 A
>> Inserting city A (0,12250)
 
insert 0 12251 A
>> Inserting city A (0,12251)
 
insert 0 12252 A
>> Inserting city A (0,12252)
 
insert 0 12253 A
>> Inserting city A (0,12253)
 
insert 0 12254 A
>> Inserting city A (0,12254)
 
insert 0 12255 A
>> Inserting city A (0,12255)
 
insert 0 12256 A
>> Inserting city A (0,12256)
 
insert 0 12257 A
>> Inserting city A (0,12257)
 
insert 0 12258 A
>> Inserting city A (0,12258)
 
insert 0 12259 A
>> Inserting city A (0,12259)
 
insert 0 12260 A
>> Inserting city A (0,12260)
 
insert 0 12261 A
>> Inserting city A (0,12261)
 
insert 0 12262 A
>> Inserting city A (0,12262)
 
insert 0 12263 A
>> Inserting city A (0,12263)
 
insert 0 12264 A
>> Inserting city A (0,12264)
 
insert 0 12265 A
>> Inserting city A (0,12265)
 
insert 0 12266 A
>> Inserting city A (0,12266)
 
insert 0 12267 A
>> Inserting city A (0,12267)
 
insert 0 12268 A
>> Inserting city A (0,12268)
 
insert 0 12269 A
>> Inserting city A (0,12269)
 
insert 0 12270 A
>> Inserting city A (0,12270)
 
insert 0 12271 A
>> Inserting city A (0,12271)
 
insert 0 12272 A
>> Inserting city A (0,12272)
 
insert 0 12273 A
>> Inserting city A (0,12273)
 
insert 0 12274 A
>> Inserting city A (0,12274)
 
insert 0 12275 A
>> Inserting city A (0,12275)
 
insert 0 12276 A
>> Inserting city A (0,12276)
 
insert 0 12277 A
>> Inserting city A (0,12277)
 
insert 0 12278 A
>> Inserting city A (0,12278)
 
insert 0 12279 A
>> Inserting city A (0,12279)
 
insert 0 12280 A
>> Inserting city A (0,12280)
 
insert 0 12281 A
>> Inserting city A (0,12281)
 
insert 0 12282 A
>> Inserting city A (0,12282)
 
insert 0 12283 A
>> Inserting city A (0,12283)
 
insert 0 12284 A
>> Inserting city A (0,12284)
 
insert 0 12285 A
>> Inserting city A (0,12285)
 
insert 0 12286 A
>> Inserting city A (0,12286)
 
insert 0 12287 A
>> Inserting city A (0,12287)
 
insert 0 12288 A
>> Inserting city A (0,12288)
 
insert 0 12289 A
>> Inserting city A (0,12289)
 
insert 0 12290 A
>> Inserting city A (0,12290)
 
insert 0 12291 A
>> Inserting city A (0,12291)
 
insert 0 12292 A
>> Inserting city A (0,12292)
 
insert 0 12293 A
>> Inserting city A (0,12293)
 
insert 0 12294 A
>> Inserting city A (0,12294)
 
insert 0 12295 A
>> Inserting city A (0,12295)
 
insert 0 12296 A
>> Inserting city A (0,12296)
 
insert 0 12297 A
>> Inserting city A (0,12297)
 
insert 0 12298 A
>> Inserting city A (0,12298)
 
insert 0 12299 A
>> Inserting city A (0,12299)
 
insert 0 12300 A
>> Inserting city A (0,12300)
 
insert 0 12301 A
>> Inserting city A (0,12301)
 
insert 0 12302 A
>> Inserting city A (0,12302)
 
insert 0 12303 A
>> Inserting city A (0,12303)
 
insert 0 12304 A
>> Inserting city A (0,12304)
 
insert 0 12305 A
>> Inserting city A (0,12305)
 
insert 0 12306 A
>> Inserting city A (0,12306)
 
insert 0 12307 A
>> Inserting city A (0,12307)
 
insert 0 12308 A
>> Inserting city A (0,12308)
 
insert 0 12309 A
>> Inserting city A (0,12309)
 
insert 0 12310 A
>> Inserting city A (0,12310)
 
insert 0 12311 A
>> Inserting city A (0,12311)
 
insert 0 12312 A
>> Inserting city A (0,12312)
 
insert 0 12313 A
>> Inserting city A (0,12313)
 
insert 0 12314 A
>> Inserting city A (0,12314)
 
insert 0 12315 A
>> Inserting city A (0,12315)
 
insert 0 12316 A
>> Inserting city A (0,12316)
 
insert 0 12317 A
>> Inserting city A (0,12317)
 
insert 0 12318 A
>> Inserting city A (0,12318)
 
insert 0 12319 A
>> Inserting city A (0,12319)
 
insert 0 12320 A
>> Inserting city A (0,12320)
 
insert 0 12321 A
>> Inserting city A (0,12321)
 
insert 0 12322 A
>> Inserting city A (0,12322)
 
insert 0 12323 A
>> Inserting city A (0,12323)
 
insert 0 12324 A
>> Inserting city A (0,12324)
 
insert 0 12325 A
>> Inserting city A (0,12325)
 
insert 0 12326 A
>> Inserting city A (0,12326)
 
insert 0 12327 A
>> Inserting city A (0,12327)
 
insert 0 12328 A
>> Inserting city A (0,12328)
 
insert 0 12329 A
>> Inserting city A (0,12329)
 
insert 0 12330 A
>> Inserting city A (0,12330)
 
insert 0 12331 A
>> Inserting city A (0,12331)
 
insert 0 12332 A
>> Inserting city A (0,12332)
 
insert 0 12333 A
>> Inserting city A (0,12333)
 
insert 0 12334 A
>> Inserting city A (0,12334)
 
insert 0 12335 A
>> Inserting city A (0,12335)
 
insert 0 12336 A
>> Inserting city A (0,12336)
 
insert 0 12337 A
>> Inserting city A (0,12337)
 
insert 0 12338 A
>> Inserting city A (0,12338)
 
insert 0 12339 A
>> Inserting city A (0,12339)
 
insert 0 12340 A
>> Inserting city A (0,12340)
 
insert 0 12341 A
>> Inserting city A (0,12341)
 
insert 0 12342 A
>> Inserting city A (0,12342)
 
insert 0 12343 A
>> Inserting city A (0,12343)
 
insert 0 12344 A
>> Inserting city A (0,12344)
 
insert 0 12345 A
>> Inserting city A (0,12345)
 
insert 0 12346 A
>> Inserting city A (0,12346)
 
insert 0 12347 A
>> Inserting city A (0,12347)
 
insert 0 12348 A
>> Inserting city A (0,12348)
 
insert 0 12349 A
>> Inserting city A (0,12349)
 
insert 0 12350 A
>> Inserting city A (0,12350)
 
insert 0 12351 A
>> Inserting city A (0,12351)
 
insert 0 12352 A
>> Inserting city A (0,12352)
 
insert 0 12353 A
>> Inserting city A (0,12353)
 
insert 0 12354 A
>> Inserting city A (0,12354)
 
insert 0 12355 A
>> Inserting city A (0,12355)
 
insert 0 12356 A
>> Inserting city A (0,12356)
 
insert 0 12357 A
>> Inserting city A (0,12357)
 
insert 0 12358 A
>> Inserting city A (0,12358)
 
insert 0 12359 A
>> Inserting city A (0,12359)
 
insert 0 12360 A
>> Inserting city A (0,12360)
 
insert 0 12361 A
>> Inserting city A (0,12361)
 
insert 0 12362 A
>> Inserting city A (0,12362)
 
insert 0 12363 A
>> Inserting city A (0,12363)
 
insert 0 12364 A
>> Inserting city A (0,12364)
 
insert 0 12365 A
>> Inserting city A (0,12365)
 
insert 0 12366 A
>> Inserting city A (0,12366)
 
insert 0 12367 A
>> Inserting city A (0,12367)
 
insert 0 12368 A
>> Inserting city A (0,12368)
 
insert 0 12369 A
>> Inserting city A (0,12369)
 
insert 0 12370 A
>> Inserting city A (0,12370)
 
insert 0 12371 A
>> Inserting city A (0,12371)
 
insert 0 12372 A
>> Inserting city A (0,12372)
 
insert 0 12373 A
>> Inserting city A (0,12373)
 
insert 0 12374 A
>> Inserting city A (0,12374)
 
insert 0 12375 A
>> Inserting city A (0,12375)
 
insert 0 12376 A
>> Inserting city A (0,12376)
 
insert 0 12377 A
>> Inserting city A (0,12377)
 
insert 0 12378 A
>> Inserting city A (0,12378)
 
insert 0 12379 A
>> Inserting city A (0,12379)
 
insert 0 12380 A
>> Inserting city A (0,12380)
 
insert 0 12381 A
>> Inserting city A (0,12381)
 
insert 0 12382 A
>> Inserting city A (0,12382)
 
insert 0 12383 A
>> Inserting city A (0,12383)
 
insert 0 12384 A
>> Inserting city A (0,12384)
 
insert 0 12385 A
>> Inserting city A (0,12385)
 
insert 0 12386 A
>> Inserting city A (0,12386)
 
insert 0 12387 A
>> Inserting city A (0,12387)
 
insert 0 12388 A
>> Inserting city A (0,12388)
 
insert 0 12389 A
>> Inserting city A (0,12389)
 
insert 0 12390 A
>> Inserting city A (0,12390)
 
insert 0 12391 A
>> Inserting city A (0,12391)
 
insert 0 12392 A
>> Inserting city A (0,12392)
 
insert 0 12393 A
>> Inserting city A (0,12393)
 
insert 0 12394 A
>> Inserting city A (0,12394)
 
insert 0 12395 A
>> Inserting city A (0,12395)
 
insert 0 12396 A
>> Inserting city A (0,12396)
 
insert 0 12397 A
>> Inserting city A (0,12397)
 
insert 0 12398 A
>> Inserting city A (0,12398)
 
insert 0 12399 A
>> Inserting city A (0,12399)
 
insert 0 12400 A
>> Inserting city A (0,12400)
 
insert 0 12401 A
>> Inserting city A (0,12401)
 
insert 0 12402 A
>> Inserting city A (0,12402)
 
insert 0 12403 A
>> Inserting city A (0,12403)
 
insert 0 12404 A
>> Inserting city A (0,12404)
 
insert 0 12405 A
>> Inserting city A (0,12405)
 
insert 0 12406 A
>> Inserting city A (0,12406)
 
insert 0 12407 A
>> Inserting city A (0,12407)
 
insert 0 12408 A
>> Inserting city A (0,12408)
 
insert 0 12409 A
>> Inserting city A (0,12409)
 
insert 0 12410 A
>> Inserting city A (0,12410)
 
insert 0 12411 A
>> Inserting city A (0,12411)
 
insert 0 12412 A
>> Inserting city A (0,12412)
 
insert 0 12413 A
>> Inserting city A (0,12413)
 
insert 0 12414 A
>> Inserting city A (0,12414)
 
insert 0 12415 A
>> Inserting city A (0,12415)
 
insert 0 12416 A
>> Inserting city A (0,12416)
 
insert 0 12417 A
>> Inserting city A (0,12417)
 
insert 0 12418 A
>> Inserting city A (0,12418)
 
insert 0 12419 A
>> Inserting city A (0,12419)
 
insert 0 12420 A
>> Inserting city A (0,12420)
 
insert 0 12421 A
>> Inserting city A (0,12421)
 
insert 0 12422 A
>> Inserting city A (0,12422)
 
insert 0 12423 A
>> Inserting city A (0,12423)
 
insert 0 12424 A
>> Inserting city A (0,12424)
 
insert 0 12425 A
>> Inserting city A (0,12425)
 
insert 0 12426 A
>> Inserting city A (0,12426)
 
insert 0 12427 A
>> Inserting city A (0,12427)
 
insert 0 12428 A
>> Inserting city A (0,12428)
 
insert 0 12429 A
>> Inserting city A (0,12429)
 
insert 0 12430 A
>> Inserting city A (0,12430)
 
insert 0 12431 A
>> Inserting city A (0,12431)
 
insert 0 12432 A
>> Inserting city A (0,12432)
 
insert 0 12433 A
>> Inserting city A (0,12433)
 
insert 0 12434 A
>> Inserting city A (0,12434)
 
insert 0 12435 A
>> Inserting city A (0,12435)
 
insert 0 12436 A
>> Inserting city A (0,12436)
 
insert 0 12437 A
>> Inserting city A (0,12437)
 
insert 0 12438 A
>> Inserting city A (0,12438)
 
insert 0 12439 A
>> Inserting city A (0,12439)
 
insert 0 12440 A
>> Inserting city A (0,12440)
 
insert 0 12441 A
>> Inserting city A (0,12441)
 
insert 0 12442 A
>> Inserting city A (0,12442)
 
insert 0 12443 A
>> Inserting city A (0,12443)
 
insert 0 12444 A
>> Inserting city A (0,12444)
 
insert 0 12445 A
>> Inserting city A (0,12445)
 
insert 0 12446 A
>> Inserting city A (0,12446)
 
insert 0 12447 A
>> Inserting city A (0,12447)
 
insert 0 12448 A
>> Inserting city A (0,12448)
 
insert 0 12449 A
>> Inserting city A (0,12449)
 
insert 0 12450 A
>> Inserting city A (0,12450)
 
insert 0 12451 A
>> Inserting city A (0,12451)
 
insert 0 12452 A
>> Inserting city A (0,12452)
 
insert 0 12453 A
>> Inserting city A (0,12453)
 
insert 0 12454 A
>> Inserting city A (0,12454)
 
insert 0 12455 A
>> Inserting city A (0,12455)
 
insert 0 12456 A
>> Inserting city A (0,12456)
 
insert 0 12457 A
>> Inserting city A (0,12457)
 
insert 0 12458 A
>> Inserting city A (0,12458)
 
insert 0 12459 A
>> Inserting city A (0,12459)
 
insert 0 12460 A
>> Inserting city A (0,12460)
 
insert 0 12461 A
>> Inserting city A (0,12461)
 
insert 0 12462 A
>> Inserting city A (0,12462)
 
insert 0 12463 A
>> Inserting city A (0,12463)
 
insert 0 12464 A
>> Inserting city A (0,12464)
 
insert 0 12465 A
>> Inserting city A (0,12465)
 
insert 0 12466 A
>> Inserting city A (0,12466)
 
insert 0 12467 A
>> Inserting city A (0,12467)
 
insert 0 12468 A
>> Inserting city A (0,12468)
 
insert 0 12469 A
>> Inserting city A (0,12469)
 
insert 0 12470 A
>> Inserting city A (0,12470)
 
insert 0 12471 A
>> Inserting city A (0,12471)
 
insert 0 12472 A
>> Inserting city A (0,12472)
 
insert 0 12473 A
>> Inserting city A (0,12473)
 
insert 0 12474 A
>> Inserting city A (0,12474)
 
insert 0 12475 A
>> Inserting city A (0,12475)
 
insert 0 12476 A
>> Inserting city A (0,12476)
 
insert 0 12477 A
>> Inserting city A (0,12477)
 
insert 0 12478 A
>> Inserting city A (0,12478)
 
insert 0 12479 A
>> Inserting city A (0,12479)
 
insert 0 12480 A
>> Inserting city A (0,12480)
 
insert 0 12481 A
>> Inserting city A (0,12481)
 
insert 0 12482 A
>> Inserting city A (0,12482)
 
insert 0 12483 A
>> Inserting city A (0,12483)
 
insert 0 12484 A
>> Inserting city A (0,12484)
 
insert 0 12485 A
>> Inserting city A (0,12485)
 
insert 0 12486 A
>> Inserting city A (0,12486)
 
insert 0 12487 A
>> Inserting city A (0,12487)
 
insert 0 12488 A
>> Inserting city A (0,12488)
 
insert 0 12489 A
>> Inserting city A (0,12489)
 
insert 0 12490 A
>> Inserting city A (0,12490)
 
insert 0 12491 A
>> Inserting city A (0,12491)
 
insert 0 12492 A
>> Inserting city A (0,12492)
 
insert 0 12493 A
>> Inserting city A (0,12493)
 
insert 0 12494 A
>> Inserting city A (0,12494)
 
insert 0 12495 A
>> Inserting city A (0,12495)
 
insert 0 12496 A
>> Inserting city A (0,12496)
 
insert 0 12497 A
>> Inserting city A (0,12497)
 
insert 0 12498 A
>> Inserting city A (0,12498)
 
insert 0 12499 A
>> Inserting city A (0,12499)
 
insert 0 12500 A
>> Inserting city A (0,12500)
 
insert 0 12501 A
>> Inserting city A (0,12501)
 
insert 0 12502 A
>> Inserting city A (0,12502)
 
insert 0 12503 A
>> Inserting city A (0,12503)
 
insert 0 12504 A
>> Inserting city A (0,12504)
 
insert 0 12505 A
>> Inserting city A (0,12505)
 
insert 0 12506 A
>> Inserting city A (0,12506)
 
insert 0 12507 A
>> Inserting city A (0,12507)
 
insert 0 12508 A
>> Inserting city A (0,12508)
 
insert 0 12509 A
>> Inserting city A (0,12509)
 
insert 0 12510 A
>> Inserting city A (0,12510)
 
insert 0 12511 A
>> Inserting city A (0,12511)
 
insert 0 12512 A
>> Inserting city A (0,12512)
 
insert 0 12513 A
>> Inserting city A (0,12513)
 
insert 0 12514 A
>> Inserting city A (0,12514)
 
insert 0 12515 A
>> Inserting city A (0,12515)
 
insert 0 12516 A
>> Inserting city A (0,12516)
 
insert 0 12517 A
>> Inserting city A (0,12517)
 
insert 0 12518 A
>> Inserting city A (0,12518)
 
insert 0 12519 A
>> Inserting city A (0,12519)
 
insert 0 12520 A
>> Inserting city A (0,12520)
 
insert 0 12521 A
>> Inserting city A (0,12521)
 
insert 0 12522 A
>> Inserting city A (0,12522)
 
insert 0 12523 A
>> Inserting city A (0,12523)
 
insert 0 12524 A
>> Inserting city A (0,12524)
 
insert 0 12525 A
>> Inserting city A (0,12525)
 
insert 0 12526 A
>> Inserting city A (0,12526)
 
insert 0 12527 A
>> Inserting city A (0,12527)
 
insert 0 12528 A
>> Inserting city A (0,12528)
 
insert 0 12529 A
>> Inserting city A (0,12529)
 
insert 0 12530 A
>> Inserting city A (0,12530)
 
insert 0 12531 A
>> Inserting city A (0,12531)
 
insert 0 12532 A
>> Inserting city A (0,12532)
 
insert 0 12533 A
>> Inserting city A (0,12533)
 
insert 0 12534 A
>> Inserting city A (0,12534)
 
insert 0 12535 A
>> Inserting city A (0,12535)
 
insert 0 12536 A
>> Inserting city A (0,12536)
 
insert 0 12537 A
>> Inserting city A (0,12537)
 
insert 0 12538 A
>> Inserting city A (0,12538)
 
insert 0 12539 A
>> Inserting city A (0,12539)
 
insert 0 12540 A
>> Inserting city A (0,12540)
 
insert 0 12541 A
>> Inserting city A (0,12541)
 
insert 0 12542 A
>> Inserting city A (0,12542)
 
insert 0 12543 A
>> Inserting city A (0,12543)
 
insert 0 12544 A
>> Inserting city A (0,12544)
 
insert 0 12545 A
>> Inserting city A (0,12545)
 
insert 0 12546 A
>> Inserting city A (0,12546)
 
insert 0 12547 A
>> Inserting city A (0,12547)
 
insert 0 12548 A
>> Inserting city A (0,12548)
 
insert 0 12549 A
>> Inserting city A (0,12549)
 
insert 0 12550 A
>> Inserting city A (0,12550)
 
insert 0 12551 A
>> Inserting city A (0,12551)
 
insert 0 12552 A
>> Inserting city A (0,12552)
 
insert 0 12553 A
>> Inserting city A (0,12553)
 
insert 0 12554 A
>> Inserting city A (0,12554)
 
insert 0 12555 A
>> Inserting city A (0,12555)
 
insert 0 12556 A
>> Inserting city A (0,12556)
 
insert 0 12557 A
>> Inserting city A (0,12557)
 
insert 0 12558 A
>> Inserting city A (0,12558)
 
insert 0 12559 A
>> Inserting city A (0,12559)
 
insert 0 12560 A
>> Inserting city A (0,12560)
 
insert 0 12561 A
>> Inserting city A (0,12561)
 
insert 0 12562 A
>> Inserting city A (0,12562)
 
insert 0 12563 A
>> Inserting city A (0,12563)
 
insert 0 12564 A
>> Inserting city A (0,12564)
 
insert 0 12565 A
>> Inserting city A (0,12565)
 
insert 0 12566 A
>> Inserting city A (0,12566)
 
insert 0 12567 A
>> Inserting city A (0,12567)
 
insert 0 12568 A
>> Inserting city A (0,12568)
 
insert 0 12569 A
>> Inserting city A (0,12569)
 
insert 0 12570 A
>> Inserting city A (0,12570)
 
insert 0 12571 A
>> Inserting city A (0,12571)
 
insert 0 12572 A
>> Inserting city A (0,12572)
 
insert 0 12573 A
>> Inserting city A (0,12573)
 
insert 0 12574 A
>> Inserting city A (0,12574)
 
insert 0 12575 A
>> Inserting city A (0,12575)
 
insert 0 12576 A
>> Inserting city A (0,12576)
 
insert 0 12577 A
>> Inserting city A (0,12577)
 
insert 0 12578 A
>> Inserting city A (0,12578)
 
insert 0 12579 A
>> Inserting city A (0,12579)
 
insert 0 12580 A
>> Inserting city A (0,12580)
 
insert 0 12581 A
>> Inserting city A (0,12581)
 
insert 0 12582 A
>> Inserting city A (0,12582)
 
insert 0 12583 A
>> Inserting city A (0,12583)
 
insert 0 12584 A
>> Inserting city A (0,12584)
 
insert 0 12585 A
>> Inserting city A (0,12585)
 
insert 0 12586 A
>> Inserting city A (0,12586)
 
insert 0 12587 A
>> Inserting city A (0,12587)
 
insert 0 12588 A
>> Inserting city A (0,12588)
 
insert 0 12589 A
>> Inserting city A (0,12589)
 
insert 0 12590 A
>> Inserting city A (0,12590)
 
insert 0 12591 A
>> Inserting city A (0,12591)
 
insert 0 12592 A
>> Inserting city A (0,12592)
 
insert 0 12593 A
>> Inserting city A (0,12593)
 
insert 0 12594 A
>> Inserting city A (0,12594)
 
insert 0 12595 A
>> Inserting city A (0,12595)
 
insert 0 12596 A
>> Inserting city A (0,12596)
 
insert 0 12597 A
>> Inserting city A (0,12597)
 
insert 0 12598 A
>> Inserting city A (0,12598)
 
insert 0 12599 A
>> Inserting city A (0,12599)
 
insert 0 12600 A
>> Inserting city A (0,12600)
 
insert 0 12601 A
>> Inserting city A (0,12601)
 
insert 0 12602 A
>> Inserting city A (0,12602)
 
insert 0 12603 A
>> Inserting city A (0,12603)
 
insert 0 12604 A
>> Inserting city A (0,12604)
 
insert 0 12605 A
>> Inserting city A (0,12605)
 
insert 0 12606 A
>> Inserting city A (0,12606)
 
insert 0 12607 A
>> Inserting city A (0,12607)
 
insert 0 12608 A
>> Inserting city A (0,12608)
 
insert 0 12609 A
>> Inserting city A (0,12609)
 
insert 0 12610 A
>> Inserting city A (0,12610)
 
insert 0 12611 A
>> Inserting city A (0,12611)
 
insert 0 12612 A
>> Inserting city A (0,12612)
 
insert 0 12613 A
>> Inserting city A (0,12613)
 
insert 0 12614 A
>> Inserting city A (0,12614)
 
insert 0 12615 A
>> Inserting city A (0,12615)
 
insert 0 12616 A
>> Inserting city A (0,12616)
 
insert 0 12617 A
>> Inserting city A (0,12617)
 
insert 0 12618 A
>> Inserting city A (0,12618)
 
insert 0 12619 A
>> Inserting city A (0,12619)
 
insert 0 12620 A
>> Inserting city A (0,12620)
 
insert 0 12621 A
>> Inserting city A (0,12621)
 
insert 0 12622 A
>> Inserting city A (0,12622)
 
insert 0 12623 A
>> Inserting city A (0,12623)
 
insert 0 12624 A
>> Inserting city A (0,12624)
 
insert 0 12625 A
>> Inserting city A (0,12625)
 
insert 0 12626 A
>> Inserting city A (0,12626)
 
insert 0 12627 A
>> Inserting city A (0,12627)
 
insert 0 12628 A
>> Inserting city A (0,12628)
 
insert 0 12629 A
>> Inserting city A (0,12629)
 
insert 0 12630 A
>> Inserting city A (0,12630)
 
insert 0 12631 A
>> Inserting city A (0,12631)
 
insert 0 12632 A
>> Inserting city A (0,12632)
 
insert 0 12633 A
>> Inserting city A (0,12633)
 
insert 0 12634 A
>> Inserting city A (0,12634)
 
insert 0 12635 A
>> Inserting city A (0,12635)
 
insert 0 12636 A
>> Inserting city A (0,12636)
 
insert 0 12637 A
>> Inserting city A (0,12637)
 
insert 0 12638 A
>> Inserting city A (0,12638)
 
insert 0 12639 A
>> Inserting city A (0,12639)
 
insert 0 12640 A
>> Inserting city A (0,12640)
 
insert 0 12641 A
>> Inserting city A (0,12641)
 
insert 0 12642 A
>> Inserting city A (0,12642)
 
insert 0 12643 A
>> Inserting city A (0,12643)
 
insert 0 12644 A
>> Inserting city A (0,12644)
 
insert 0 12645 A
>> Inserting city A (0,12645)
 
insert 0 12646 A
>> Inserting city A (0,12646)
 
insert 0 12647 A
>> Inserting city A (0,12647)
 
insert 0 12648 A
>> Inserting city A (0,12648)
 
insert 0 12649 A
>> Inserting city A (0,12649)
 
insert 0 12650 A
>> Inserting city A (0,12650)
 
insert 0 12651 A
>> Inserting city A (0,12651)
 
insert 0 12652 A
>> Inserting city A (0,12652)
 
insert 0 12653 A
>> Inserting city A (0,12653)
 
insert 0 12654 A
>> Inserting city A (0,12654)
 
insert 0 12655 A
>> Inserting city A (0,12655)
 
insert 0 12656 A
>> Inserting city A (0,12656)
 
insert 0 12657 A
>> Inserting city A (0,12657)
 
insert 0 12658 A
>> Inserting city A (0,12658)
 
insert 0 12659 A
>> Inserting city A (0,12659)
 
insert 0 12660 A
>> Inserting city A (0,12660)
 
insert 0 12661 A
>> Inserting city A (0,12661)
 
insert 0 12662 A
>> Inserting city A (0,12662)
 
insert 0 12663 A
>> Inserting city A (0,12663)
 
insert 0 12664 A
>> Inserting city A (0,12664)
 
insert 0 12665 A
>> Inserting city A (0,12665)
 
insert 0 12666 A
>> Inserting city A (0,12666)
 
insert 0 12667 A
>> Inserting city A (0,12667)
 
insert 0 12668 A
>> Inserting city A (0,12668)
 
insert 0 12669 A
>> Inserting city A (0,12669)
 
insert 0 12670 A
>> Inserting city A (0,12670)
 
insert 0 12671 A
>> Inserting city A (0,12671)
 
insert 0 12672 A
>> Inserting city A (0,12672)
 
insert 0 12673 A
>> Inserting city A (0,12673)
 
insert 0 12674 A
>> Inserting city A (0,12674)
 
insert 0 12675 A
>> Inserting city A (0,12675)
 
insert 0 12676 A
>> Inserting city A (0,12676)
 
insert 0 12677 A
>> Inserting city A (0,12677)
 
insert 0 12678 A
>> Inserting city A (0,12678)
 
insert 0 12679 A
>> Inserting city A (0,12679)
 
insert 0 12680 A
>> Inserting city A (0,12680)
 
insert 0 12681 A
>> Inserting city A (0,12681)
 
insert 0 12682 A
>> Inserting city A (0,12682)
 
insert 0 12683 A
>> Inserting city A (0,12683)
 
insert 0 12684 A
>> Inserting city A (0,12684)
 
insert 0 12685 A
>> Inserting city A (0,12685)
 
insert 0 12686 A
>> Inserting city A (0,12686)
 
insert 0 12687 A
>> Inserting city A (0,12687)
 
insert 0 12688 A
>> Inserting city A (0,12688)
 
insert 0 12689 A
>> Inserting city A (0,12689)
 
insert 0 12690 A
>> Inserting city A (0,12690)
 
insert 0 12691 A
>> Inserting city A (0,12691)
 
insert 0 12692 A
>> Inserting city A (0,12692)
 
insert 0 12693 A
>> Inserting city A (0,12693)
 
insert 0 12694 A
>> Inserting city A (0,12694)
 
insert 0 12695 A
>> Inserting city A (0,12695)
 
insert 0 12696 A
>> Inserting city A (0,12696)
 
insert 0 12697 A
>> Inserting city A (0,12697)
 
insert 0 12698 A
>> Inserting city A (0,12698)
 
insert 0 12699 A
>> Inserting city A (0,12699)
 
insert 0 12700 A
>> Inserting city A (0,12700)
 
insert 0 12701 A
>> Inserting city A (0,12701)
 
insert 0 12702 A
>> Inserting city A (0,12702)
 
insert 0 12703 A
>> Inserting city A (0,12703)
 
insert 0 12704 A
>> Inserting city A (0,12704)
 
insert 0 12705 A
>> Inserting city A (0,12705)
 
insert 0 12706 A
>> Inserting city A (0,12706)
 
insert 0 12707 A
>> Inserting city A (0,12707)
 
insert 0 12708 A
>> Inserting city A (0,12708)
 
insert 0 12709 A
>> Inserting city A (0,12709)
 
insert 0 12710 A
>> Inserting city A (0,12710)
 
insert 0 12711 A
>> Inserting city A (0,12711)
 
insert 0 12712 A
>> Inserting city A (0,12712)
 
insert 0 12713 A
>> Inserting city A (0,12713)
 
insert 0 12714 A
>> Inserting city A (0,12714)
 
insert 0 12715 A
>> Inserting city A (0,12715)
 
insert 0 12716 A
>> Inserting city A (0,12716)
 
insert 0 12717 A
>> Inserting city A (0,12717)
 
insert 0 12718 A
>> Inserting city A (0,12718)
 
insert 0 12719 A
>> Inserting city A (0,12719)
 
insert 0 12720 A
>> Inserting city A (0,12720)
 
insert 0 12721 A
>> Inserting city A (0,12721)
 
insert 0 12722 A
>> Inserting city A (0,12722)
 
insert 0 12723 A
>> Inserting city A (0,12723)
 
insert 0 12724 A
>> Inserting city A (0,12724)
 
insert 0 12725 A
>> Inserting city A (0,12725)
 
insert 0 12726 A
>> Inserting city A (0,12726)
 
insert 0 12727 A
>> Inserting city A (0,12727)
 
insert 0 12728 A
>> Inserting city A (0,12728)
 
insert 0 12729 A
>> Inserting city A (0,12729)
 
insert 0 12730 A
>> Inserting city A (0,12730)
 
insert 0 12731 A
>> Inserting city A (0,12731)
 
insert 0 12732 A
>> Inserting city A (0,12732)
 
insert 0 12733 A
>> Inserting city A (0,12733)
 
insert 0 12734 A
>> Inserting city A (0,12734)
 
insert 0 12735 A
>> Inserting city A (0,12735)
 
insert 0 12736 A
>> Inserting city A (0,12736)
 
insert 0 12737 A
>> Inserting city A (0,12737)
 
insert 0 12738 A
>> Inserting city A (0,12738)
 
insert 0 12739 A
>> Inserting city A (0,12739)
 
insert 0 12740 A
>> Inserting city A (0,12740)
 
insert 0 12741 A
>> Inserting city A (0,12741)
 
insert 0 12742 A
>> Inserting city A (0,12742)
 
insert 0 12743 A
>> Inserting city A (0,12743)
 
insert 0 12744 A
>> Inserting city A (0,12744)
 
insert 0 12745 A
>> Inserting city A (0,12745)
 
insert 0 12746 A
>> Inserting city A (0,12746)
 
insert 0 12747 A
>> Inserting city A (0,12747)
 
insert 0 12748 A
>> Inserting city A (0,12748)
 
insert 0 12749 A
>> Inserting city A (0,12749)
 
insert 0 12750 A
>> Inserting city A (0,12750)
 
insert 0 12751 A
>> Inserting city A (0,12751)
 
insert 0 12752 A
>> Inserting city A (0,12752)
 
insert 0 12753 A
>> Inserting city A (0,12753)
 
insert 0 12754 A
>> Inserting city A (0,12754)
 
insert 0 12755 A
>> Inserting city A (0,12755)
 
insert 0 12756 A
>> Inserting city A (0,12756)
 
insert 0 12757 A
>> Inserting city A (0,12757)
 
insert 0 12758 A
>> Inserting city A (0,12758)
 
insert 0 12759 A
>> Inserting city A (0,12759)
 
insert 0 12760 A
>> Inserting city A (0,12760)
 
insert 0 12761 A
>> Inserting city A (0,12761)
 
insert 0 12762 A
>> Inserting city A (0,12762)
 
insert 0 12763 A
>> Inserting city A (0,12763)
 
insert 0 12764 A
>> Inserting city A (0,12764)
 
insert 0 12765 A
>> Inserting city A (0,12765)
 
insert 0 12766 A
>> Inserting city A (0,12766)
 
insert 0 12767 A
>> Inserting city A (0,12767)
 
insert 0 12768 A
>> Inserting city A (0,12768)
 
insert 0 12769 A
>> Inserting city A (0,12769)
 
insert 0 12770 A
>> Inserting city A (0,12770)
 
insert 0 12771 A
>> Inserting city A (0,12771)
 
insert 0 12772 A
>> Inserting city A (0,12772)
 
insert 0 12773 A
>> Inserting city A (0,12773)
 
insert 0 12774 A
>> Inserting city A (0,12774)
 
insert 0 12775 A
>> Inserting city A (0,12775)
 
insert 0 12776 A
>> Inserting city A (0,12776)
 
insert 0 12777 A
>> Inserting city A (0,12777)
 
insert 0 12778 A
>> Inserting city A (0,12778)
 
insert 0 12779 A
>> Inserting city A (0,12779)
 
insert 0 12780 A
>> Inserting city A (0,12780)
 
insert 0 12781 A
>> Inserting city A (0,12781)
 
insert 0 12782 A
>> Inserting city A (0,12782)
 
insert 0 12783 A
>> Inserting city A (0,12783)
 
insert 0 12784 A
>> Inserting city A (0,12784)
 
insert 0 12785 A
>> Inserting city A (0,12785)
 
insert 0 12786 A
>> Inserting city A (0,12786)
 
insert 0 12787 A
>> Inserting city A (0,12787)
 
insert 0 12788 A
>> Inserting city A (0,12788)
 
insert 0 12789 A
>> Inserting city A (0,12789)
 
insert 0 12790 A
>> Inserting city A (0,12790)
 
insert 0 12791 A
>> Inserting city A (0,12791)
 
insert 0 12792 A
>> Inserting city A (0,12792)
 
insert 0 12793 A
>> Inserting city A (0,12793)
 
insert 0 12794 A
>> Inserting city A (0,12794)
 
insert 0 12795 A
>> Inserting city A (0,12795)
 
insert 0 12796 A
>> Inserting city A (0,12796)
 
insert 0 12797 A
>> Inserting city A (0,12797)
 
insert 0 12798 A
>> Inserting city A (0,12798)
 
insert 0 12799 A
>> Inserting city A (0,12799)
 
insert 0 12800 A
>> Inserting city A (0,12800)
 
insert 0 12801 A
>> Inserting city A (0,12801)
 
insert 0 12802 A
>> Inserting city A (0,12802)
 
insert 0 12803 A
>> Inserting city A (0,12803)
 
insert 0 12804 A
>> Inserting city A (0,12804)
 
insert 0 12805 A
>> Inserting city A (0,12805)
 
insert 0 12806 A
>> Inserting city A (0,12806)
 
insert 0 12807 A
>> Inserting city A (0,12807)
 
insert 0 12808 A
>> Inserting city A (0,12808)
 
insert 0 12809 A
>> Inserting city A (0,12809)
 
insert 0 12810 A
>> Inserting city A (0,12810)
 
insert 0 12811 A
>> Inserting city A (0,12811)
 
insert 0 12812 A
>> Inserting city A (0,12812)
 
insert 0 12813 A
>> Inserting city A (0,12813)
 
insert 0 12814 A
>> Inserting city A (0,12814)
 
insert 0 12815 A
>> Inserting city A (0,12815)
 
insert 0 12816 A
>> Inserting city A (0,12816)
 
insert 0 12817 A
>> Inserting city A (0,12817)
 
insert 0 12818 A
>> Inserting city A (0,12818)
 
insert 0 12819 A
>> Inserting city A (0,12819)
 
insert 0 12820 A
>> Inserting city A (0,12820)
 
insert 0 12821 A
>> Inserting city A (0,12821)
 
insert 0 12822 A
>> Inserting city A (0,12822)
 
insert 0 12823 A
>> Inserting city A (0,12823)
 
insert 0 12824 A
>> Inserting city A (0,12824)
 
insert 0 12825 A
>> Inserting city A (0,12825)
 
insert 0 12826 A
>> Inserting city A (0,12826)
 
insert 0 12827 A
>> Inserting city A (0,12827)
 
insert 0 12828 A
>> Inserting city A (0,12828)
 
insert 0 12829 A
>> Inserting city A (0,12829)
 
insert 0 12830 A
>> Inserting city A (0,12830)
 
insert 0 12831 A
>> Inserting city A (0,12831)
 
insert 0 12832 A
>> Inserting city A (0,12832)
 
insert 0 12833 A
>> Inserting city A (0,12833)
 
insert 0 12834 A
>> Inserting city A (0,12834)
 
insert 0 12835 A
>> Inserting city A (0,12835)
 
insert 0 12836 A
>> Inserting city A (0,12836)
 
insert 0 12837 A
>> Inserting city A (0,12837)
 
insert 0 12838 A
>> Inserting city A (0,12838)
 
insert 0 12839 A
>> Inserting city A (0,12839)
 
insert 0 12840 A
>> Inserting city A (0,12840)
 
insert 0 12841 A
>> Inserting city A (0,12841)
 
insert 0 12842 A
>> Inserting city A (0,12842)
 
insert 0 12843 A
>> Inserting city A (0,12843)
 
insert 0 12844 A
>> Inserting city A (0,12844)
 
insert 0 12845 A
>> Inserting city A (0,12845)
 
insert 0 12846 A
>> Inserting city A (0,12846)
 
insert 0 12847 A
>> Inserting city A (0,12847)
 
insert 0 12848 A
>> Inserting city A (0,12848)
 
insert 0 12849 A
>> Inserting city A (0,12849)
 
insert 0 12850 A
>> Inserting city A (0,12850)
 
insert 0 12851 A
>> Inserting city A (0,12851)
 
insert 0 12852 A
>> Inserting city A (0,12852)
 
insert 0 12853 A
>> Inserting city A (0,12853)
 
insert 0 12854 A
>> Inserting city A (0,12854)
 
insert 0 12855 A
>> Inserting city A (0,12855)
 
insert 0 12856 A
>> Inserting city A (0,12856)
 
insert 0 12857 A
>> Inserting city A (0,12857)
 
insert 0 12858 A
>> Inserting city A (0,12858)
 
insert 0 12859 A
>> Inserting city A (0,12859)
 
insert 0 12860 A
>> Inserting city A (0,12860)
 
insert 0 12861 A
>> Inserting city A (0,12861)
 
insert 0 12862 A
>> Inserting city A (0,12862)
 
insert 0 12863 A
>> Inserting city A (0,12863)
 
insert 0 12864 A
>> Inserting city A (0,12864)
 
insert 0 12865 A
>> Inserting city A (0,12865)
 
insert 0 12866 A
>> Inserting city A (0,12866)
 
insert 0 12867 A
>> Inserting city A (0,12867)
 
insert 0 12868 A
>> Inserting city A (0,12868)
 
insert 0 12869 A
>> Inserting city A (0,12869)
 
insert 0 12870 A
>> Inserting city A (0,12870)
 
insert 0 12871 A
>> Inserting city A (0,12871)
 
insert 0 12872 A
>> Inserting city A (0,12872)
 
insert 0 12873 A
>> Inserting city A (0,12873)
 
insert 0 12874 A
>> Inserting city A (0,12874)
 
insert 0 12875 A
>> Inserting city A (0,12875)
 
insert 0 12876 A
>> Inserting city A (0,12876)
 
insert 0 12877 A
>> Inserting city A (0,12877)
 
insert 0 12878 A
>> Inserting city A (0,12878)
 
insert 0 12879 A
>> Inserting city A (0,12879)
 
insert 0 12880 A
>> Inserting city A (0,12880)
 
insert 0 12881 A
>> Inserting city A (0,12881)
 
insert 0 12882 A
>> Inserting city A (0,12882)
 
insert 0 12883 A
>> Inserting city A (0,12883)
 
insert 0 12884 A
>> Inserting city A (0,12884)
 
insert 0 12885 A
>> Inserting city A (0,12885)
 
insert 0 12886 A
>> Inserting city A (0,12886)
 
insert 0 12887 A
>> Inserting city A (0,12887)
 
insert 0 12888 A
>> Inserting city A (0,12888)
 
insert 0 12889 A
>> Inserting city A (0,12889)
 
insert 0 12890 A
>> Inserting city A (0,12890)
 
insert 0 12891 A
>> Inserting city A (0,12891)
 
insert 0 12892 A
>> Inserting city A (0,12892)
 
insert 0 12893 A
>> Inserting city A (0,12893)
 
insert 0 12894 A
>> Inserting city A (0,12894)
 
insert 0 12895 A
>> Inserting city A (0,12895)
 
insert 0 12896 A
>> Inserting city A (0,12896)
 
insert 0 12897 A
>> Inserting city A (0,12897)
 
insert 0 12898 A
>> Inserting city A (0,12898)
 
insert 0 12899 A
>> Inserting city A (0,12899)
 
insert 0 12900 A
>> Inserting city A (0,12900)
 
insert 0 12901 A
>> Inserting city A (0,12901)
 
insert 0 12902 A
>> Inserting city A (0,12902)
 
insert 0 12903 A
>> Inserting city A (0,12903)
 
insert 0 12904 A
>> Inserting city A (0,12904)
 
insert 0 12905 A
>> Inserting city A (0,12905)
 
insert 0 12906 A
>> Inserting city A (0,12906)
 
insert 0 12907 A
>> Inserting city A (0,12907)
 
insert 0 12908 A
>> Inserting city A (0,12908)
 
insert 0 12909 A
>> Inserting city A (0,12909)
 
insert 0 12910 A
>> Inserting city A (0,12910)
 
insert 0 12911 A
>> Inserting city A (0,12911)
 
insert 0 12912 A
>> Inserting city A (0,12912)
 
insert 0 12913 A
>> Inserting city A (0,12913)
 
insert 0 12914 A
>> Inserting city A (0,12914)
 
insert 0 12915 A
>> Inserting city A (0,12915)
 
insert 0 12916 A
>> Inserting city A (0,12916)
 
insert 0 12917 A
>> Inserting city A (0,12917)
 
insert 0 12918 A
>> Inserting city A (0,12918)
 
insert 0 12919 A
>> Inserting city A (0,12919)
 
insert 0 12920 A
>> Inserting city A (0,12920)
 
insert 0 12921 A
>> Inserting city A (0,12921)
 
insert 0 12922 A
>> Inserting city A (0,12922)
 
insert 0 12923 A
>> Inserting city A (0,12923)
 
insert 0 12924 A
>> Inserting city A (0,12924)
 
insert 0 12925 A
>> Inserting city A (0,12925)
 
insert 0 12926 A
>> Inserting city A (0,12926)
 
insert 0 12927 A
>> Inserting city A (0,12927)
 
insert 0 12928 A
>> Inserting city A (0,12928)
 
insert 0 12929 A
>> Inserting city A (0,12929)
 
insert 0 12930 A
>> Inserting city A (0,12930)
 
insert 0 12931 A
>> Inserting city A (0,12931)
 
insert 0 12932 A
>> Inserting city A (0,12932)
 
insert 0 12933 A
>> Inserting city A (0,12933)
 
insert 0 12934 A
>> Inserting city A (0,12934)
 
insert 0 12935 A
>> Inserting city A (0,12935)
 
insert 0 12936 A
>> Inserting city A (0,12936)
 
insert 0 12937 A
>> Inserting city A (0,12937)
 
insert 0 12938 A
>> Inserting city A (0,12938)
 
insert 0 12939 A
>> Inserting city A (0,12939)
 
insert 0 12940 A
>> Inserting city A (0,12940)
 
insert 0 12941 A
>> Inserting city A (0,12941)
 
insert 0 12942 A
>> Inserting city A (0,12942)
 
insert 0 12943 A
>> Inserting city A (0,12943)
 
insert 0 12944 A
>> Inserting city A (0,12944)
 
insert 0 12945 A
>> Inserting city A (0,12945)
 
insert 0 12946 A
>> Inserting city A (0,12946)
 
insert 0 12947 A
>> Inserting city A (0,12947)
 
insert 0 12948 A
>> Inserting city A (0,12948)
 
insert 0 12949 A
>> Inserting city A (0,12949)
 
insert 0 12950 A
>> Inserting city A (0,12950)
 
insert 0 12951 A
>> Inserting city A (0,12951)
 
insert 0 12952 A
>> Inserting city A (0,12952)
 
insert 0 12953 A
>> Inserting city A (0,12953)
 
insert 0 12954 A
>> Inserting city A (0,12954)
 
insert 0 12955 A
>> Inserting city A (0,12955)
 
insert 0 12956 A
>> Inserting city A (0,12956)
 
insert 0 12957 A
>> Inserting city A (0,12957)
 
insert 0 12958 A
>> Inserting city A (0,12958)
 
insert 0 12959 A
>> Inserting city A (0,12959)
 
insert 0 12960 A
>> Inserting city A (0,12960)
 
insert 0 12961 A
>> Inserting city A (0,12961)
 
insert 0 12962 A
>> Inserting city A (0,12962)
 
insert 0 12963 A
>> Inserting city A (0,12963)
 
insert 0 12964 A
>> Inserting city A (0,12964)
 
insert 0 12965 A
>> Inserting city A (0,12965)
 
insert 0 12966 A
>> Inserting city A (0,12966)
 
insert 0 12967 A
>> Inserting city A (0,12967)
 
insert 0 12968 A
>> Inserting city A (0,12968)
 
insert 0 12969 A
>> Inserting city A (0,12969)
 
insert 0 12970 A
>> Inserting city A (0,12970)
 
insert 0 12971 A
>> Inserting city A (0,12971)
 
insert 0 12972 A
>> Inserting city A (0,12972)
 
insert 0 12973 A
>> Inserting city A (0,12973)
 
insert 0 12974 A
>> Inserting city A (0,12974)
 
insert 0 12975 A
>> Inserting city A (0,12975)
 
insert 0 12976 A
>> Inserting city A (0,12976)
 
insert 0 12977 A
>> Inserting city A (0,12977)
 
insert 0 12978 A
>> Inserting city A (0,12978)
 
insert 0 12979 A
>> Inserting city A (0,12979)
 
insert 0 12980 A
>> Inserting city A (0,12980)
 
insert 0 12981 A
>> Inserting city A (0,12981)
 
insert 0 12982 A
>> Inserting city A (0,12982)
 
insert 0 12983 A
>> Inserting city A (0,12983)
 
insert 0 12984 A
>> Inserting city A (0,12984)
 
insert 0 12985 A
>> Inserting city A (0,12985)
 
insert 0 12986 A
>> Inserting city A (0,12986)
 
insert 0 12987 A
>> Inserting city A (0,12987)
 
insert 0 12988 A
>> Inserting city A (0,12988)
 
insert 0 12989 A
>> Inserting city A (0,12989)
 
insert 0 12990 A
>> Inserting city A (0,12990)
 
insert 0 12991 A
>> Inserting city A (0,12991)
 
insert 0 12992 A
>> Inserting city A (0,12992)
 
insert 0 12993 A
>> Inserting city A (0,12993)
 
insert 0 12994 A
>> Inserting city A (0,12994)
 
insert 0 12995 A
>> Inserting city A (0,12995)
 
insert 0 12996 A
>> Inserting city A (0,12996)
 
insert 0 12997 A
>> Inserting city A (0,12997)
 
insert 0 12998 A
>> Inserting city A (0,12998)
 
insert 0 12999 A
>> Inserting city A (0,12999)
 
insert 0 13000 A
>> Inserting city A (0,13000)
 
insert 0 13001 A
>> Inserting city A (0,13001)
 
insert 0 13002 A
>> Inserting city A (0,13002)
 
insert 0 13003 A
>> Inserting city A (0,13003)
 
insert 0 13004 A
>> Inserting city A (0,13004)
 
insert 0 13005 A
>> Inserting city A (0,13005)
 
insert 0 13006 A
>> Inserting city A (0,13006)
 
insert 0 13007 A
>> Inserting city A (0,13007)
 
insert 0 13008 A
>> Inserting city A (0,13008)
 
insert 0 13009 A
>> Inserting city A (0,13009)
 
insert 0 13010 A
>> Inserting city A (0,13010)
 
insert 0 13011 A
>> Inserting city A (0,13011)
 
insert 0 13012 A
>> Inserting city A (0,13012)
 
insert 0 13013 A
>> Inserting city A (0,13013)
 
insert 0 13014 A
>> Inserting city A (0,13014)
 
insert 0 13015 A
>> Inserting city A (0,13015)
 
insert 0 13016 A
>> Inserting city A (0,13016)
 
insert 0 13017 A
>> Inserting city A (0,13017)
 
insert 0 13018 A
>> Inserting city A (0,13018)
 
insert 0 13019 A
>> Inserting city A (0,13019)
 
insert 0 13020 A
>> Inserting city A (0,13020)
 
insert 0 13021 A
>> Inserting city A (0,13021)
 
insert 0 13022 A
>> Inserting city A (0,13022)
 
insert 0 13023 A
>> Inserting city A (0,13023)
 
insert 0 13024 A
>> Inserting city A (0,13024)
 
insert 0 13025 A
>> Inserting city A (0,13025)
 
insert 0 13026 A
>> Inserting city A (0,13026)
 
insert 0 13027 A
>> Inserting city A (0,13027)
 
insert 0 13028 A
>> Inserting city A (0,13028)
 
insert 0 13029 A
>> Inserting city A (0,13029)
 
insert 0 13030 A
>> Inserting city A (0,13030)
 
insert 0 13031 A
>> Inserting city A (0,13031)
 
insert 0 13032 A
>> Inserting city A (0,13032)
 
insert 0 13033 A
>> Inserting city A (0,13033)
 
insert 0 13034 A
>> Inserting city A (0,13034)
 
insert 0 13035 A
>> Inserting city A (0,13035)
 
insert 0 13036 A
>> Inserting city A (0,13036)
 
insert 0 13037 A
>> Inserting city A (0,13037)
 
insert 0 13038 A
>> Inserting city A (0,13038)
 
insert 0 13039 A
>> Inserting city A (0,13039)
 
insert 0 13040 A
>> Inserting city A (0,13040)
 
insert 0 13041 A
>> Inserting city A (0,13041)
 
insert 0 13042 A
>> Inserting city A (0,13042)
 
insert 0 13043 A
>> Inserting city A (0,13043)
 
insert 0 13044 A
>> Inserting city A (0,13044)
 
insert 0 13045 A
>> Inserting city A (0,13045)
 
insert 0 13046 A
>> Inserting city A (0,13046)
 
insert 0 13047 A
>> Inserting city A (0,13047)
 
insert 0 13048 A
>> Inserting city A (0,13048)
 
insert 0 13049 A
>> Inserting city A (0,13049)
 
insert 0 13050 A
>> Inserting city A (0,13050)
 
insert 0 13051 A
>> Inserting city A (0,13051)
 
insert 0 13052 A
>> Inserting city A (0,13052)
 
insert 0 13053 A
>> Inserting city A (0,13053)
 
insert 0 13054 A
>> Inserting city A (0,13054)
 
insert 0 13055 A
>> Inserting city A (0,13055)
 
insert 0 13056 A
>> Inserting city A (0,13056)
 
insert 0 13057 A
>> Inserting city A (0,13057)
 
insert 0 13058 A
>> Inserting city A (0,13058)
 
insert 0 13059 A
>> Inserting city A (0,13059)
 
insert 0 13060 A
>> Inserting city A (0,13060)
 
insert 0 13061 A
>> Inserting city A (0,13061)
 
insert 0 13062 A
>> Inserting city A (0,13062)
 
insert 0 13063 A
>> Inserting city A (0,13063)
 
insert 0 13064 A
>> Inserting city A (0,13064)
 
insert 0 13065 A
>> Inserting city A (0,13065)
 
insert 0 13066 A
>> Inserting city A (0,13066)
 
insert 0 13067 A
>> Inserting city A (0,13067)
 
insert 0 13068 A
>> Inserting city A (0,13068)
 
insert 0 13069 A
>> Inserting city A (0,13069)
 
insert 0 13070 A
>> Inserting city A (0,13070)
 
insert 0 13071 A
>> Inserting city A (0,13071)
 
insert 0 13072 A
>> Inserting city A (0,13072)
 
insert 0 13073 A
>> Inserting city A (0,13073)
 
insert 0 13074 A
>> Inserting city A (0,13074)
 
insert 0 13075 A
>> Inserting city A (0,13075)
 
insert 0 13076 A
>> Inserting city A (0,13076)
 
insert 0 13077 A
>> Inserting city A (0,13077)
 
insert 0 13078 A
>> Inserting city A (0,13078)
 
insert 0 13079 A
>> Inserting city A (0,13079)
 
insert 0 13080 A
>> Inserting city A (0,13080)
 
insert 0 13081 A
>> Inserting city A (0,13081)
 
insert 0 13082 A
>> Inserting city A (0,13082)
 
insert 0 13083 A
>> Inserting city A (0,13083)
 
insert 0 13084 A
>> Inserting city A (0,13084)
 
insert 0 13085 A
>> Inserting city A (0,13085)
 
insert 0 13086 A
>> Inserting city A (0,13086)
 
insert 0 13087 A
>> Inserting city A (0,13087)
 
insert 0 13088 A
>> Inserting city A (0,13088)
 
insert 0 13089 A
>> Inserting city A (0,13089)
 
insert 0 13090 A
>> Inserting city A (0,13090)
 
insert 0 13091 A
>> Inserting city A (0,13091)
 
insert 0 13092 A
>> Inserting city A (0,13092)
 
insert 0 13093 A
>> Inserting city A (0,13093)
 
insert 0 13094 A
>> Inserting city A (0,13094)
 
insert 0 13095 A
>> Inserting city A (0,13095)
 
insert 0 13096 A
>> Inserting city A (0,13096)
 
insert 0 13097 A
>> Inserting city A (0,13097)
 
insert 0 13098 A
>> Inserting city A (0,13098)
 
insert 0 13099 A
>> Inserting city A (0,13099)
 
insert 0 13100 A
>> Inserting city A (0,13100)
 
insert 0 13101 A
>> Inserting city A (0,13101)
 
insert 0 13102 A
>> Inserting city A (0,13102)
 
insert 0 13103 A
>> Inserting city A (0,13103)
 
insert 0 13104 A
>> Inserting city A (0,13104)
 
insert 0 13105 A
>> Inserting city A (0,13105)
 
insert 0 13106 A
>> Inserting city A (0,13106)
 
insert 0 13107 A
>> Inserting city A (0,13107)
 
insert 0 13108 A
>> Inserting city A (0,13108)
 
insert 0 13109 A
>> Inserting city A (0,13109)
 
insert 0 13110 A
>> Inserting city A (0,13110)
 
insert 0 13111 A
>> Inserting city A (0,13111)
 
insert 0 13112 A
>> Inserting city A (0,13112)
 
insert 0 13113 A
>> Inserting city A (0,13113)
 
insert 0 13114 A
>> Inserting city A (0,13114)
 
insert 0 13115 A
>> Inserting city A (0,13115)
 
insert 0 13116 A
>> Inserting city A (0,13116)
 
insert 0 13117 A
>> Inserting city A (0,13117)
 
insert 0 13118 A
>> Inserting city A (0,13118)
 
insert 0 13119 A
>> Inserting city A (0,13119)
 
insert 0 13120 A
>> Inserting city A (0,13120)
 
insert 0 13121 A
>> Inserting city A (0,13121)
 
insert 0 13122 A
>> Inserting city A (0,13122)
 
insert 0 13123 A
>> Inserting city A (0,13123)
 
insert 0 13124 A
>> Inserting city A (0,13124)
 
insert 0 13125 A
>> Inserting city A (0,13125)
 
insert 0 13126 A
>> Inserting city A (0,13126)
 
insert 0 13127 A
>> Inserting city A (0,13127)
 
insert 0 13128 A
>> Inserting city A (0,13128)
 
insert 0 13129 A
>> Inserting city A (0,13129)
 
insert 0 13130 A
>> Inserting city A (0,13130)
 
insert 0 13131 A
>> Inserting city A (0,13131)
 
insert 0 13132 A
>> Inserting city A (0,13132)
 
insert 0 13133 A
>> Inserting city A (0,13133)
 
insert 0 13134 A
>> Inserting city A (0,13134)
 
insert 0 13135 A
>> Inserting city A (0,13135)
 
insert 0 13136 A
>> Inserting city A (0,13136)
 
insert 0 13137 A
>> Inserting city A (0,13137)
 
insert 0 13138 A
>> Inserting city A (0,13138)
 
insert 0 13139 A
>> Inserting city A (0,13139)
 
insert 0 13140 A
>> Inserting city A (0,13140)
 
insert 0 13141 A
>> Inserting city A (0,13141)
 
insert 0 13142 A
>> Inserting city A (0,13142)
 
insert 0 13143 A
>> Inserting city A (0,13143)
 
insert 0 13144 A
>> Inserting city A (0,13144)
 
insert 0 13145 A
>> Inserting city A (0,13145)
 
insert 0 13146 A
>> Inserting city A (0,13146)
 
insert 0 13147 A
>> Inserting city A (0,13147)
 
insert 0 13148 A
>> Inserting city A (0,13148)
 
insert 0 13149 A
>> Inserting city A (0,13149)
 
insert 0 13150 A
>> Inserting city A (0,13150)
 
insert 0 13151 A
>> Inserting city A (0,13151)
 
insert 0 13152 A
>> Inserting city A (0,13152)
 
insert 0 13153 A
>> Inserting city A (0,13153)
 
insert 0 13154 A
>> Inserting city A (0,13154)
 
insert 0 13155 A
>> Inserting city A (0,13155)
 
insert 0 13156 A
>> Inserting city A (0,13156)
 
insert 0 13157 A
>> Inserting city A (0,13157)
 
insert 0 13158 A
>> Inserting city A (0,13158)
 
insert 0 13159 A
>> Inserting city A (0,13159)
 
insert 0 13160 A
>> Inserting city A (0,13160)
 
insert 0 13161 A
>> Inserting city A (0,13161)
 
insert 0 13162 A
>> Inserting city A (0,13162)
 
insert 0 13163 A
>> Inserting city A (0,13163)
 
insert 0 13164 A
>> Inserting city A (0,13164)
 
insert 0 13165 A
>> Inserting city A (0,13165)
 
insert 0 13166 A
>> Inserting city A (0,13166)
 
insert 0 13167 A
>> Inserting city A (0,13167)
 
insert 0 13168 A
>> Inserting city A (0,13168)
 
insert 0 13169 A
>> Inserting city A (0,13169)
 
insert 0 13170 A
>> Inserting city A (0,13170)
 
insert 0 13171 A
>> Inserting city A (0,13171)
 
insert 0 13172 A
>> Inserting city A (0,13172)
 
insert 0 13173 A
>> Inserting city A (0,13173)
 
insert 0 13174 A
>> Inserting city A (0,13174)
 
insert 0 13175 A
>> Inserting city A (0,13175)
 
insert 0 13176 A
>> Inserting city A (0,13176)
 
insert 0 13177 A
>> Inserting city A (0,13177)
 
insert 0 13178 A
>> Inserting city A (0,13178)
 
insert 0 13179 A
>> Inserting city A (0,13179)
 
insert 0 13180 A
>> Inserting city A (0,13180)
 
insert 0 13181 A
>> Inserting city A (0,13181)
 
insert 0 13182 A
>> Inserting city A (0,13182)
 
insert 0 13183 A
>> Inserting city A (0,13183)
 
insert 0 13184 A
>> Inserting city A (0,13184)
 
insert 0 13185 A
>> Inserting city A (0,13185)
 
insert 0 13186 A
>> Inserting city A (0,13186)
 
insert 0 13187 A
>> Inserting city A (0,13187)
 
insert 0 13188 A
>> Inserting city A (0,13188)
 
insert 0 13189 A
>> Inserting city A (0,13189)
 
insert 0 13190 A
>> Inserting city A (0,13190)
 
insert 0 13191 A
>> Inserting city A (0,13191)
 
insert 0 13192 A
>> Inserting city A (0,13192)
 
insert 0 13193 A
>> Inserting city A (0,13193)
 
insert 0 13194 A
>> Inserting city A (0,13194)
 
insert 0 13195 A
>> Inserting city A (0,13195)
 
insert 0 13196 A
>> Inserting city A (0,13196)
 
insert 0 13197 A
>> Inserting city A (0,13197)
 
insert 0 13198 A
>> Inserting city A (0,13198)
 
insert 0 13199 A
>> Inserting city A (0,13199)
 
insert 0 13200 A
>> Inserting city A (0,13200)
 
insert 0 13201 A
>> Inserting city A (0,13201)
 
insert 0 13202 A
>> Inserting city A (0,13202)
 
insert 0 13203 A
>> Inserting city A (0,13203)
 
insert 0 13204 A
>> Inserting city A (0,13204)
 
insert 0 13205 A
>> Inserting city A (0,13205)
 
insert 0 13206 A
>> Inserting city A (0,13206)
 
insert 0 13207 A
>> Inserting city A (0,13207)
 
insert 0 13208 A
>> Inserting city A (0,13208)
 
insert 0 13209 A
>> Inserting city A (0,13209)
 
insert 0 13210 A
>> Inserting city A (0,13210)
 
insert 0 13211 A
>> Inserting city A (0,13211)
 
insert 0 13212 A
>> Inserting city A (0,13212)
 
insert 0 13213 A
>> Inserting city A (0,13213)
 
insert 0 13214 A
>> Inserting city A (0,13214)
 
insert 0 13215 A
>> Inserting city A (0,13215)
 
insert 0 13216 A
>> Inserting city A (0,13216)
 
insert 0 13217 A
>> Inserting city A (0,13217)
 
insert 0 13218 A
>> Inserting city A (0,13218)
 
insert 0 13219 A
>> Inserting city A (0,13219)
 
insert 0 13220 A
>> Inserting city A (0,13220)
 
insert 0 13221 A
>> Inserting city A (0,13221)
 
insert 0 13222 A
>> Inserting city A (0,13222)
 
insert 0 13223 A
>> Inserting city A (0,13223)
 
insert 0 13224 A
>> Inserting city A (0,13224)
 
insert 0 13225 A
>> Inserting city A (0,13225)
 
insert 0 13226 A
>> Inserting city A (0,13226)
 
insert 0 13227 A
>> Inserting city A (0,13227)
 
insert 0 13228 A
>> Inserting city A (0,13228)
 
insert 0 13229 A
>> Inserting city A (0,13229)
 
insert 0 13230 A
>> Inserting city A (0,13230)
 
insert 0 13231 A
>> Inserting city A (0,13231)
 
insert 0 13232 A
>> Inserting city A (0,13232)
 
insert 0 13233 A
>> Inserting city A (0,13233)
 
insert 0 13234 A
>> Inserting city A (0,13234)
 
insert 0 13235 A
>> Inserting city A (0,13235)
 
insert 0 13236 A
>> Inserting city A (0,13236)
 
insert 0 13237 A
>> Inserting city A (0,13237)
 
insert 0 13238 A
>> Inserting city A (0,13238)
 
insert 0 13239 A
>> Inserting city A (0,13239)
 
insert 0 13240 A
>> Inserting city A (0,13240)
 
insert 0 13241 A
>> Inserting city A (0,13241)
 
insert 0 13242 A
>> Inserting city A (0,13242)
 
insert 0 13243 A
>> Inserting city A (0,13243)
 
insert 0 13244 A
>> Inserting city A (0,13244)
 
insert 0 13245 A
>> Inserting city A (0,13245)
 
insert 0 13246 A
>> Inserting city A (0,13246)
 
insert 0 13247 A
>> Inserting city A (0,13247)
 
insert 0 13248 A
>> Inserting city A (0,13248)
 
insert 0 13249 A
>> Inserting city A (0,13249)
 
insert 0 13250 A
>> Inserting city A (0,13250)
 
insert 0 13251 A
>> Inserting city A (0,13251)
 
insert 0 13252 A
>> Inserting city A (0,13252)
 
insert 0 13253 A
>> Inserting city A (0,13253)
 
insert 0 13254 A
>> Inserting city A (0,13254)
 
insert 0 13255 A
>> Inserting city A (0,13255)
 
insert 0 13256 A
>> Inserting city A (0,13256)
 
insert 0 13257 A
>> Inserting city A (0,13257)
 
insert 0 13258 A
>> Inserting city A (0,13258)
 
insert 0 13259 A
>> Inserting city A (0,13259)
 
insert 0 13260 A
>> Inserting city A (0,13260)
 
insert 0 13261 A
>> Inserting city A (0,13261)
 
insert 0 13262 A
>> Inserting city A (0,13262)
 
insert 0 13263 A
>> Inserting city A (0,13263)
 
insert 0 13264 A
>> Inserting city A (0,13264)
 
insert 0 13265 A
>> Inserting city A (0,13265)
 
insert 0 13266 A
>> Inserting city A (0,13266)
 
insert 0 13267 A
>> Inserting city A (0,13267)
 
insert 0 13268 A
>> Inserting city A (0,13268)
 
insert 0 13269 A
>> Inserting city A (0,13269)
 
insert 0 13270 A
>> Inserting city A (0,13270)
 
insert 0 13271 A
>> Inserting city A (0,13271)
 
insert 0 13272 A
>> Inserting city A (0,13272)
 
insert 0 13273 A
>> Inserting city A (0,13273)
 
insert 0 13274 A
>> Inserting city A (0,13274)
 
insert 0 13275 A
>> Inserting city A (0,13275)
 
insert 0 13276 A
>> Inserting city A (0,13276)
 
insert 0 13277 A
>> Inserting city A (0,13277)
 
insert 0 13278 A
>> Inserting city A (0,13278)
 
insert 0 13279 A
>> Inserting city A (0,13279)
 
insert 0 13280 A
>> Inserting city A (0,13280)
 
insert 0 13281 A
>> Inserting city A (0,13281)
 
insert 0 13282 A
>> Inserting city A (0,13282)
 
insert 0 13283 A
>> Inserting city A (0,13283)
 
insert 0 13284 A
>> Inserting city A (0,13284)
 
insert 0 13285 A
>> Inserting city A (0,13285)
 
insert 0 13286 A
>> Inserting city A (0,13286)
 
insert 0 13287 A
>> Inserting city A (0,13287)
 
insert 0 13288 A
>> Inserting city A (0,13288)
 
insert 0 13289 A
>> Inserting city A (0,13289)
 
insert 0 13290 A
>> Inserting city A (0,13290)
 
insert 0 13291 A
>> Inserting city A (0,13291)
 
insert 0 13292 A
>> Inserting city A (0,13292)
 
insert 0 13293 A
>> Inserting city A (0,13293)
 
insert 0 13294 A
>> Inserting city A (0,13294)
 
insert 0 13295 A
>> Inserting city A (0,13295)
 
insert 0 13296 A
>> Inserting city A (0,13296)
 
insert 0 13297 A
>> Inserting city A (0,13297)
 
insert 0 13298 A
>> Inserting city A (0,13298)
 
insert 0 13299 A
>> Inserting city A (0,13299)
 
insert 0 13300 A
>> Inserting city A (0,13300)
 
insert 0 13301 A
>> Inserting city A (0,13301)
 
insert 0 13302 A
>> Inserting city A (0,13302)
 
insert 0 13303 A
>> Inserting city A (0,13303)
 
insert 0 13304 A
>> Inserting city A (0,13304)
 
insert 0 13305 A
>> Inserting city A (0,13305)
 
insert 0 13306 A
>> Inserting city A (0,13306)
 
insert 0 13307 A
>> Inserting city A (0,13307)
 
insert 0 13308 A
>> Inserting city A (0,13308)
 
insert 0 13309 A
>> Inserting city A (0,13309)
 
insert 0 13310 A
>> Inserting city A (0,13310)
 
insert 0 13311 A
>> Inserting city A (0,13311)
 
insert 0 13312 A
>> Inserting city A (0,13312)
 
insert 0 13313 A
>> Inserting city A (0,13313)
 
insert 0 13314 A
>> Inserting city A (0,13314)
 
insert 0 13315 A
>> Inserting city A (0,13315)
 
insert 0 13316 A
>> Inserting city A (0,13316)
 
insert 0 13317 A
>> Inserting city A (0,13317)
 
insert 0 13318 A
>> Inserting city A (0,13318)
 
insert 0 13319 A
>> Inserting city A (0,13319)
 
insert 0 13320 A
>> Inserting city A (0,13320)
 
insert 0 13321 A
>> Inserting city A (0,13321)
 
insert 0 13322 A
>> Inserting city A (0,13322)
 
insert 0 13323 A
>> Inserting city A (0,13323)
 
insert 0 13324 A
>> Inserting city A (0,13324)
 
insert 0 13325 A
>> Inserting city A (0,13325)
 
insert 0 13326 A
>> Inserting city A (0,13326)
 
insert 0 13327 A
>> Inserting city A (0,13327)
 
insert 0 13328 A
>> Inserting city A (0,13328)
 
insert 0 13329 A
>> Inserting city A (0,13329)
 
insert 0 13330 A
>> Inserting city A (0,13330)
 
insert 0 13331 A
>> Inserting city A (0,13331)
 
insert 0 13332 A
>> Inserting city A (0,13332)
 
insert 0 13333 A
>> Inserting city A (0,13333)
 
insert 0 13334 A
>> Inserting city A (0,13334)
 
insert 0 13335 A
>> Inserting city A (0,13335)
 
insert 0 13336 A
>> Inserting city A (0,13336)
 
insert 0 13337 A
>> Inserting city A (0,13337)
 
insert 0 13338 A
>> Inserting city A (0,13338)
 
insert 0 13339 A
>> Inserting city A (0,13339)
 
insert 0 13340 A
>> Inserting city A (0,13340)
 
insert 0 13341 A
>> Inserting city A (0,13341)
 
insert 0 13342 A
>> Inserting city A (0,13342)
 
insert 0 13343 A
>> Inserting city A (0,13343)
 
insert 0 13344 A
>> Inserting city A (0,13344)
 
insert 0 13345 A
>> Inserting city A (0,13345)
 
insert 0 13346 A
>> Inserting city A (0,13346)
 
insert 0 13347 A
>> Inserting city A (0,13347)
 
insert 0 13348 A
>> Inserting city A (0,13348)
 
insert 0 13349 A
>> Inserting city A (0,13349)
 
insert 0 13350 A
>> Inserting city A (0,13350)
 
insert 0 13351 A
>> Inserting city A (0,13351)
 
insert 0 13352 A
>> Inserting city A (0,13352)
 
insert 0 13353 A
>> Inserting city A (0,13353)
 
insert 0 13354 A
>> Inserting city A (0,13354)
 
insert 0 13355 A
>> Inserting city A (0,13355)
 
insert 0 13356 A
>> Inserting city A (0,13356)
 
insert 0 13357 A
>> Inserting city A (0,13357)
 
insert 0 13358 A
>> Inserting city A (0,13358)
 
insert 0 13359 A
>> Inserting city A (0,13359)
 
insert 0 13360 A
>> Inserting city A (0,13360)
 
insert 0 13361 A
>> Inserting city A (0,13361)
 
insert 0 13362 A
>> Inserting city A (0,13362)
 
insert 0 13363 A
>> Inserting city A (0,13363)
 
insert 0 13364 A
>> Inserting city A (0,13364)
 
insert 0 13365 A
>> Inserting city A (0,13365)
 
insert 0 13366 A
>> Inserting city A (0,13366)
 
insert 0 13367 A
>> Inserting city A (0,13367)
 
insert 0 13368 A
>> Inserting city A (0,13368)
 
insert 0 13369 A
>> Inserting city A (0,13369)
 
insert 0 13370 A
>> Inserting city A (0,13370)
 
insert 0 13371 A
>> Inserting city A (0,13371)
 
insert 0 13372 A
>> Inserting city A (0,13372)
 
insert 0 13373 A
>> Inserting city A (0,13373)
 
insert 0 13374 A
>> Inserting city A (0,13374)
 
insert 0 13375 A
>> Inserting city A (0,13375)
 
insert 0 13376 A
>> Inserting city A (0,13376)
 
insert 0 13377 A
>> Inserting city A (0,13377)
 
insert 0 13378 A
>> Inserting city A (0,13378)
 
insert 0 13379 A
>> Inserting city A (0,13379)
 
insert 0 13380 A
>> Inserting city A (0,13380)
 
insert 0 13381 A
>> Inserting city A (0,13381)
 
insert 0 13382 A
>> Inserting city A (0,13382)
 
insert 0 13383 A
>> Inserting city A (0,13383)
 
insert 0 13384 A
>> Inserting city A (0,13384)
 
insert 0 13385 A
>> Inserting city A (0,13385)
 
insert 0 13386 A
>> Inserting city A (0,13386)
 
insert 0 13387 A
>> Inserting city A (0,13387)
 
insert 0 13388 A
>> Inserting city A (0,13388)
 
insert 0 13389 A
>> Inserting city A (0,13389)
 
insert 0 13390 A
>> Inserting city A (0,13390)
 
insert 0 13391 A
>> Inserting city A (0,13391)
 
insert 0 13392 A
>> Inserting city A (0,13392)
 
insert 0 13393 A
>> Inserting city A (0,13393)
 
insert 0 13394 A
>> Inserting city A (0,13394)
 
insert 0 13395 A
>> Inserting city A (0,13395)
 
insert 0 13396 A
>> Inserting city A (0,13396)
 
insert 0 13397 A
>> Inserting city A (0,13397)
 
insert 0 13398 A
>> Inserting city A (0,13398)
 
insert 0 13399 A
>> Inserting city A (0,13399)
 
insert 0 13400 A
>> Inserting city A (0,13400)
 
insert 0 13401 A
>> Inserting city A (0,13401)
 
insert 0 13402 A
>> Inserting city A (0,13402)
 
insert 0 13403 A
>> Inserting city A (0,13403)
 
insert 0 13404 A
>> Inserting city A (0,13404)
 
insert 0 13405 A
>> Inserting city A (0,13405)
 
insert 0 13406 A
>> Inserting city A (0,13406)
 
insert 0 13407 A
>> Inserting city A (0,13407)
 
insert 0 13408 A
>> Inserting city A (0,13408)
 
insert 0 13409 A
>> Inserting city A (0,13409)
 
insert 0 13410 A
>> Inserting city A (0,13410)
 
insert 0 13411 A
>> Inserting city A (0,13411)
 
insert 0 13412 A
>> Inserting city A (0,13412)
 
insert 0 13413 A
>> Inserting city A (0,13413)
 
insert 0 13414 A
>> Inserting city A (0,13414)
 
insert 0 13415 A
>> Inserting city A (0,13415)
 
insert 0 13416 A
>> Inserting city A (0,13416)
 
insert 0 13417 A
>> Inserting city A (0,13417)
 
insert 0 13418 A
>> Inserting city A (0,13418)
 
insert 0 13419 A
>> Inserting city A (0,13419)
 
insert 0 13420 A
>> Inserting city A (0,13420)
 
insert 0 13421 A
>> Inserting city A (0,13421)
 
insert 0 13422 A
>> Inserting city A (0,13422)
 
insert 0 13423 A
>> Inserting city A (0,13423)
 
insert 0 13424 A
>> Inserting city A (0,13424)
 
insert 0 13425 A
>> Inserting city A (0,13425)
 
insert 0 13426 A
>> Inserting city A (0,13426)
 
insert 0 13427 A
>> Inserting city A (0,13427)
 
insert 0 13428 A
>> Inserting city A (0,13428)
 
insert 0 13429 A
>> Inserting city A (0,13429)
 
insert 0 13430 A
>> Inserting city A (0,13430)
 
insert 0 13431 A
>> Inserting city A (0,13431)
 
insert 0 13432 A
>> Inserting city A (0,13432)
 
insert 0 13433 A
>> Inserting city A (0,13433)
 
insert 0 13434 A
>> Inserting city A (0,13434)
 
insert 0 13435 A
>> Inserting city A (0,13435)
 
insert 0 13436 A
>> Inserting city A (0,13436)
 
insert 0 13437 A
>> Inserting city A (0,13437)
 
insert 0 13438 A
>> Inserting city A (0,13438)
 
insert 0 13439 A
>> Inserting city A (0,13439)
 
insert 0 13440 A
>> Inserting city A (0,13440)
 
insert 0 13441 A
>> Inserting city A (0,13441)
 
insert 0 13442 A
>> Inserting city A (0,13442)
 
insert 0 13443 A
>> Inserting city A (0,13443)
 
insert 0 13444 A
>> Inserting city A (0,13444)
 
insert 0 13445 A
>> Inserting city A (0,13445)
 
insert 0 13446 A
>> Inserting city A (0,13446)
 
insert 0 13447 A
>> Inserting city A (0,13447)
 
insert 0 13448 A
>> Inserting city A (0,13448)
 
insert 0 13449 A
>> Inserting city A (0,13449)
 
insert 0 13450 A
>> Inserting city A (0,13450)
 
insert 0 13451 A
>> Inserting city A (0,13451)
 
insert 0 13452 A
>> Inserting city A (0,13452)
 
insert 0 13453 A
>> Inserting city A (0,13453)
 
insert 0 13454 A
>> Inserting city A (0,13454)
 
insert 0 13455 A
>> Inserting city A (0,13455)
 
insert 0 13456 A
>> Inserting city A (0,13456)
 
insert 0 13457 A
>> Inserting city A (0,13457)
 
insert 0 13458 A
>> Inserting city A (0,13458)
 
insert 0 13459 A
>> Inserting city A (0,13459)
 
insert 0 13460 A
>> Inserting city A (0,13460)
 
insert 0 13461 A
>> Inserting city A (0,13461)
 
insert 0 13462 A
>> Inserting city A (0,13462)
 
insert 0 13463 A
>> Inserting city A (0,13463)
 
insert 0 13464 A
>> Inserting city A (0,13464)
 
insert 0 13465 A
>> Inserting city A (0,13465)
 
insert 0 13466 A
>> Inserting city A (0,13466)
 
insert 0 13467 A
>> Inserting city A (0,13467)
 
insert 0 13468 A
>> Inserting city A (0,13468)
 
insert 0 13469 A
>> Inserting city A (0,13469)
 
insert 0 13470 A
>> Inserting city A (0,13470)
 
insert 0 13471 A
>> Inserting city A (0,13471)
 
insert 0 13472 A
>> Inserting city A (0,13472)
 
insert 0 13473 A
>> Inserting city A (0,13473)
 
insert 0 13474 A
>> Inserting city A (0,13474)
 
insert 0 13475 A
>> Inserting city A (0,13475)
 
insert 0 13476 A
>> Inserting city A (0,13476)
 
insert 0 13477 A
>> Inserting city A (0,13477)
 
insert 0 13478 A
>> Inserting city A (0,13478)
 
insert 0 13479 A
>> Inserting city A (0,13479)
 
insert 0 13480 A
>> Inserting city A (0,13480)
 
insert 0 13481 A
>> Inserting city A (0,13481)
 
insert 0 13482 A
>> Inserting city A (0,13482)
 
insert 0 13483 A
>> Inserting city A (0,13483)
 
insert 0 13484 A
>> Inserting city A (0,13484)
 
insert 0 13485 A
>> Inserting city A (0,13485)
 
insert 0 13486 A
>> Inserting city A (0,13486)
 
insert 0 13487 A
>> Inserting city A (0,13487)
 
insert 0 13488 A
>> Inserting city A (0,13488)
 
insert 0 13489 A
>> Inserting city A (0,13489)
 
insert 0 13490 A
>> Inserting city A (0,13490)
 
insert 0 13491 A
>> Inserting city A (0,13491)
 
insert 0 13492 A
>> Inserting city A (0,13492)
 
insert 0 13493 A
>> Inserting city A (0,13493)
 
insert 0 13494 A
>> Inserting city A (0,13494)
 
insert 0 13495 A
>> Inserting city A (0,13495)
 
insert 0 13496 A
>> Inserting city A (0,13496)
 
insert 0 13497 A
>> Inserting city A (0,13497)
 
insert 0 13498 A
>> Inserting city A (0,13498)
 
insert 0 13499 A
>> Inserting city A (0,13499)
 
insert 0 13500 A
>> Inserting city A (0,13500)
 
insert 0 13501 A
>> Inserting city A (0,13501)
 
insert 0 13502 A
>> Inserting city A (0,13502)
 
insert 0 13503 A
>> Inserting city A (0,13503)
 
insert 0 13504 A
>> Inserting city A (0,13504)
 
insert 0 13505 A
>> Inserting city A (0,13505)
 
insert 0 13506 A
>> Inserting city A (0,13506)
 
insert 0 13507 A
>> Inserting city A (0,13507)
 
insert 0 13508 A
>> Inserting city A (0,13508)
 
insert 0 13509 A
>> Inserting city A (0,13509)
 
insert 0 13510 A
>> Inserting city A (0,13510)
 
insert 0 13511 A
>> Inserting city A (0,13511)
 
insert 0 13512 A
>> Inserting city A (0,13512)
 
insert 0 13513 A
>> Inserting city A (0,13513)
 
insert 0 13514 A
>> Inserting city A (0,13514)
 
insert 0 13515 A
>> Inserting city A (0,13515)
 
insert 0 13516 A
>> Inserting city A (0,13516)
 
insert 0 13517 A
>> Inserting city A (0,13517)
 
insert 0 13518 A
>> Inserting city A (0,13518)
 
insert 0 13519 A
>> Inserting city A (0,13519)
 
insert 0 13520 A
>> Inserting city A (0,13520)
 
insert 0 13521 A
>> Inserting city A (0,13521)
 
insert 0 13522 A
>> Inserting city A (0,13522)
 
insert 0 13523 A
>> Inserting city A (0,13523)
 
insert 0 13524 A
>> Inserting city A (0,13524)
 
insert 0 13525 A
>> Inserting city A (0,13525)
 
insert 0 13526 A
>> Inserting city A (0,13526)
 
insert 0 13527 A
>> Inserting city A (0,13527)
 
insert 0 13528 A
>> Inserting city A (0,13528)
 
insert 0 13529 A
>> Inserting city A (0,13529)
 
insert 0 13530 A
>> Inserting city A (0,13530)
 
insert 0 13531 A
>> Inserting city A (0,13531)
 
insert 0 13532 A
>> Inserting city A (0,13532)
 
insert 0 13533 A
>> Inserting city A (0,13533)
 
insert 0 13534 A
>> Inserting city A (0,13534)
 
insert 0 13535 A
>> Inserting city A (0,13535)
 
insert 0 13536 A
>> Inserting city A (0,13536)
 
insert 0 13537 A
>> Inserting city A (0,13537)
 
insert 0 13538 A
>> Inserting city A (0,13538)
 
insert 0 13539 A
>> Inserting city A (0,13539)
 
insert 0 13540 A
>> Inserting city A (0,13540)
 
insert 0 13541 A
>> Inserting city A (0,13541)
 
insert 0 13542 A
>> Inserting city A (0,13542)
 
insert 0 13543 A
>> Inserting city A (0,13543)
 
insert 0 13544 A
>> Inserting city A (0,13544)
 
insert 0 13545 A
>> Inserting city A (0,13545)
 
insert 0 13546 A
>> Inserting city A (0,13546)
 
insert 0 13547 A
>> Inserting city A (0,13547)
 
insert 0 13548 A
>> Inserting city A (0,13548)
 
insert 0 13549 A
>> Inserting city A (0,13549)
 
insert 0 13550 A
>> Inserting city A (0,13550)
 
insert 0 13551 A
>> Inserting city A (0,13551)
 
insert 0 13552 A
>> Inserting city A (0,13552)
 
insert 0 13553 A
>> Inserting city A (0,13553)
 
insert 0 13554 A
>> Inserting city A (0,13554)
 
insert 0 13555 A
>> Inserting city A (0,13555)
 
insert 0 13556 A
>> Inserting city A (0,13556)
 
insert 0 13557 A
>> Inserting city A (0,13557)
 
insert 0 13558 A
>> Inserting city A (0,13558)
 
insert 0 13559 A
>> Inserting city A (0,13559)
 
insert 0 13560 A
>> Inserting city A (0,13560)
 
insert 0 13561 A
>> Inserting city A (0,13561)
 
insert 0 13562 A
>> Inserting city A (0,13562)
 
insert 0 13563 A
>> Inserting city A (0,13563)
 
insert 0 13564 A
>> Inserting city A (0,13564)
 
insert 0 13565 A
>> Inserting city A (0,13565)
 
insert 0 13566 A
>> Inserting city A (0,13566)
 
insert 0 13567 A
>> Inserting city A (0,13567)
 
insert 0 13568 A
>> Inserting city A (0,13568)
 
insert 0 13569 A
>> Inserting city A (0,13569)
 
insert 0 13570 A
>> Inserting city A (0,13570)
 
insert 0 13571 A
>> Inserting city A (0,13571)
 
insert 0 13572 A
>> Inserting city A (0,13572)
 
insert 0 13573 A
>> Inserting city A (0,13573)
 
insert 0 13574 A
>> Inserting city A (0,13574)
 
insert 0 13575 A
>> Inserting city A (0,13575)
 
insert 0 13576 A
>> Inserting city A (0,13576)
 
insert 0 13577 A
>> Inserting city A (0,13577)
 
insert 0 13578 A
>> Inserting city A (0,13578)
 
insert 0 13579 A
>> Inserting city A (0,13579)
 
insert 0 13580 A
>> Inserting city A (0,13580)
 
insert 0 13581 A
>> Inserting city A (0,13581)
 
insert 0 13582 A
>> Inserting city A (0,13582)
 
insert 0 13583 A
>> Inserting city A (0,13583)
 
insert 0 13584 A
>> Inserting city A (0,13584)
 
insert 0 13585 A
>> Inserting city A (0,13585)
 
insert 0 13586 A
>> Inserting city A (0,13586)
 
insert 0 13587 A
>> Inserting city A (0,13587)
 
insert 0 13588 A
>> Inserting city A (0,13588)
 
insert 0 13589 A
>> Inserting city A (0,13589)
 
insert 0 13590 A
>> Inserting city A (0,13590)
 
insert 0 13591 A
>> Inserting city A (0,13591)
 
insert 0 13592 A
>> Inserting city A (0,13592)
 
insert 0 13593 A
>> Inserting city A (0,13593)
 
insert 0 13594 A
>> Inserting city A (0,13594)
 
insert 0 13595 A
>> Inserting city A (0,13595)
 
insert 0 13596 A
>> Inserting city A (0,13596)
 
insert 0 13597 A
>> Inserting city A (0,13597)
 
insert 0 13598 A
>> Inserting city A (0,13598)
 
insert 0 13599 A
>> Inserting city A (0,13599)
 
insert 0 13600 A
>> Inserting city A (0,13600)
 
insert 0 13601 A
>> Inserting city A (0,13601)
 
insert 0 13602 A
>> Inserting city A (0,13602)
 
insert 0 13603 A
>> Inserting city A (0,13603)
 
insert 0 13604 A
>> Inserting city A (0,13604)
 
insert 0 13605 A
>> Inserting city A (0,13605)
 
insert 0 13606 A
>> Inserting city A (0,13606)
 
insert 0 13607 A
>> Inserting city A (0,13607)
 
insert 0 13608 A
>> Inserting city A (0,13608)
 
insert 0 13609 A
>> Inserting city A (0,13609)
 
insert 0 13610 A
>> Inserting city A (0,13610)
 
insert 0 13611 A
>> Inserting city A (0,13611)
 
insert 0 13612 A
>> Inserting city A (0,13612)
 
insert 0 13613 A
>> Inserting city A (0,13613)
 
insert 0 13614 A
>> Inserting city A (0,13614)
 
insert 0 13615 A
>> Inserting city A (0,13615)
 
insert 0 13616 A
>> Inserting city A (0,13616)
 
insert 0 13617 A
>> Inserting city A (0,13617)
 
insert 0 13618 A
>> Inserting city A (0,13618)
 
insert 0 13619 A
>> Inserting city A (0,13619)
 
insert 0 13620 A
>> Inserting city A (0,13620)
 
insert 0 13621 A
>> Inserting city A (0,13621)
 
insert 0 13622 A
>> Inserting city A (0,13622)
 
insert 0 13623 A
>> Inserting city A (0,13623)
 
insert 0 13624 A
>> Inserting city A (0,13624)
 
insert 0 13625 A
>> Inserting city A (0,13625)
 
insert 0 13626 A
>> Inserting city A (0,13626)
 
insert 0 13627 A
>> Inserting city A (0,13627)
 
insert 0 13628 A
>> Inserting city A (0,13628)
 
insert 0 13629 A
>> Inserting city A (0,13629)
 
insert 0 13630 A
>> Inserting city A (0,13630)
 
insert 0 13631 A
>> Inserting city A (0,13631)
 
insert 0 13632 A
>> Inserting city A (0,13632)
 
insert 0 13633 A
>> Inserting city A (0,13633)
 
insert 0 13634 A
>> Inserting city A (0,13634)
 
insert 0 13635 A
>> Inserting city A (0,13635)
 
insert 0 13636 A
>> Inserting city A (0,13636)
 
insert 0 13637 A
>> Inserting city A (0,13637)
 
insert 0 13638 A
>> Inserting city A (0,13638)
 
insert 0 13639 A
>> Inserting city A (0,13639)
 
insert 0 13640 A
>> Inserting city A (0,13640)
 
insert 0 13641 A
>> Inserting city A (0,13641)
 
insert 0 13642 A
>> Inserting city A (0,13642)
 
insert 0 13643 A
>> Inserting city A (0,13643)
 
insert 0 13644 A
>> Inserting city A (0,13644)
 
insert 0 13645 A
>> Inserting city A (0,13645)
 
insert 0 13646 A
>> Inserting city A (0,13646)
 
insert 0 13647 A
>> Inserting city A (0,13647)
 
insert 0 13648 A
>> Inserting city A (0,13648)
 
insert 0 13649 A
>> Inserting city A (0,13649)
 
insert 0 13650 A
>> Inserting city A (0,13650)
 
insert 0 13651 A
>> Inserting city A (0,13651)
 
insert 0 13652 A
>> Inserting city A (0,13652)
 
insert 0 13653 A
>> Inserting city A (0,13653)
 
insert 0 13654 A
>> Inserting city A (0,13654)
 
insert 0 13655 A
>> Inserting city A (0,13655)
 
insert 0 13656 A
>> Inserting city A (0,13656)
 
insert 0 13657 A
>> Inserting city A (0,13657)
 
insert 0 13658 A
>> Inserting city A (0,13658)
 
insert 0 13659 A
>> Inserting city A (0,13659)
 
insert 0 13660 A
>> Inserting city A (0,13660)
 
insert 0 13661 A
>> Inserting city A (0,13661)
 
insert 0 13662 A
>> Inserting city A (0,13662)
 
insert 0 13663 A
>> Inserting city A (0,13663)
 
insert 0 13664 A
>> Inserting city A (0,13664)
 
insert 0 13665 A
>> Inserting city A (0,13665)
 
insert 0 13666 A
>> Inserting city A (0,13666)
 
insert 0 13667 A
>> Inserting city A (0,13667)
 
insert 0 13668 A
>> Inserting city A (0,13668)
 
insert 0 13669 A
>> Inserting city A (0,13669)
 
insert 0 13670 A
>> Inserting city A (0,13670)
 
insert 0 13671 A
>> Inserting city A (0,13671)
 
insert 0 13672 A
>> Inserting city A (0,13672)
 
insert 0 13673 A
>> Inserting city A (0,13673)
 
insert 0 13674 A
>> Inserting city A (0,13674)
 
insert 0 13675 A
>> Inserting city A (0,13675)
 
insert 0 13676 A
>> Inserting city A (0,13676)
 
insert 0 13677 A
>> Inserting city A (0,13677)
 
insert 0 13678 A
>> Inserting city A (0,13678)
 
insert 0 13679 A
>> Inserting city A (0,13679)
 
insert 0 13680 A
>> Inserting city A (0,13680)
 
insert 0 13681 A
>> Inserting city A (0,13681)
 
insert 0 13682 A
>> Inserting city A (0,13682)
 
insert 0 13683 A
>> Inserting city A (0,13683)
 
insert 0 13684 A
>> Inserting city A (0,13684)
 
insert 0 13685 A
>> Inserting city A (0,13685)
 
insert 0 13686 A
>> Inserting city A (0,13686)
 
insert 0 13687 A
>> Inserting city A (0,13687)
 
insert 0 13688 A
>> Inserting city A (0,13688)
 
insert 0 13689 A
>> Inserting city A (0,13689)
 
insert 0 13690 A
>> Inserting city A (0,13690)
 
insert 0 13691 A
>> Inserting city A (0,13691)
 
insert 0 13692 A
>> Inserting city A (0,13692)
 
insert 0 13693 A
>> Inserting city A (0,13693)
 
insert 0 13694 A
>> Inserting city A (0,13694)
 
insert 0 13695 A
>> Inserting city A (0,13695)
 
insert 0 13696 A
>> Inserting city A (0,13696)
 
insert 0 13697 A
>> Inserting city A (0,13697)
 
insert 0 13698 A
>> Inserting city A (0,13698)
 
insert 0 13699 A
>> Inserting city A (0,13699)
 
insert 0 13700 A
>> Inserting city A (0,13700)
 
insert 0 13701 A
>> Inserting city A (0,13701)
 
insert 0 13702 A
>> Inserting city A (0,13702)
 
insert 0 13703 A
>> Inserting city A (0,13703)
 
insert 0 13704 A
>> Inserting city A (0,13704)
 
insert 0 13705 A
>> Inserting city A (0,13705)
 
insert 0 13706 A
>> Inserting city A (0,13706)
 
insert 0 13707 A
>> Inserting city A (0,13707)
 
insert 0 13708 A
>> Inserting city A (0,13708)
 
insert 0 13709 A
>> Inserting city A (0,13709)
 
insert 0 13710 A
>> Inserting city A (0,13710)
 
insert 0 13711 A
>> Inserting city A (0,13711)
 
insert 0 13712 A
>> Inserting city A (0,13712)
 
insert 0 13713 A
>> Inserting city A (0,13713)
 
insert 0 13714 A
>> Inserting city A (0,13714)
 
insert 0 13715 A
>> Inserting city A (0,13715)
 
insert 0 13716 A
>> Inserting city A (0,13716)
 
insert 0 13717 A
>> Inserting city A (0,13717)
 
insert 0 13718 A
>> Inserting city A (0,13718)
 
insert 0 13719 A
>> Inserting city A (0,13719)
 
insert 0 13720 A
>> Inserting city A (0,13720)
 
insert 0 13721 A
>> Inserting city A (0,13721)
 
insert 0 13722 A
>> Inserting city A (0,13722)
 
insert 0 13723 A
>> Inserting city A (0,13723)
 
insert 0 13724 A
>> Inserting city A (0,13724)
 
insert 0 13725 A
>> Inserting city A (0,13725)
 
insert 0 13726 A
>> Inserting city A (0,13726)
 
insert 0 13727 A
>> Inserting city A (0,13727)
 
insert 0 13728 A
>> Inserting city A (0,13728)
 
insert 0 13729 A
>> Inserting city A (0,13729)
 
insert 0 13730 A
>> Inserting city A (0,13730)
 
insert 0 13731 A
>> Inserting city A (0,13731)
 
insert 0 13732 A
>> Inserting city A (0,13732)
 
insert 0 13733 A
>> Inserting city A (0,13733)
 
insert 0 13734 A
>> Inserting city A (0,13734)
 
insert 0 13735 A
>> Inserting city A (0,13735)
 
insert 0 13736 A
>> Inserting city A (0,13736)
 
insert 0 13737 A
>> Inserting city A (0,13737)
 
insert 0 13738 A
>> Inserting city A (0,13738)
 
insert 0 13739 A
>> Inserting city A (0,13739)
 
insert 0 13740 A
>> Inserting city A (0,13740)
 
insert 0 13741 A
>> Inserting city A (0,13741)
 
insert 0 13742 A
>> Inserting city A (0,13742)
 
insert 0 13743 A
>> Inserting city A (0,13743)
 
insert 0 13744 A
>> Inserting city A (0,13744)
 
insert 0 13745 A
>> Inserting city A (0,13745)
 
insert 0 13746 A
>> Inserting city A (0,13746)
 
insert 0 13747 A
>> Inserting city A (0,13747)
 
insert 0 13748 A
>> Inserting city A (0,13748)
 
insert 0 13749 A
>> Inserting city A (0,13749)
 
insert 0 13750 A
>> Inserting city A (0,13750)
 
insert 0 13751 A
>> Inserting city A (0,13751)
 
insert 0 13752 A
>> Inserting city A (0,13752)
 
insert 0 13753 A
>> Inserting city A (0,13753)
 
insert 0 13754 A
>> Inserting city A (0,13754)
 
insert 0 13755 A
>> Inserting city A (0,13755)
 
insert 0 13756 A
>> Inserting city A (0,13756)
 
insert 0 13757 A
>> Inserting city A (0,13757)
 
insert 0 13758 A
>> Inserting city A (0,13758)
 
insert 0 13759 A
>> Inserting city A (0,13759)
 
insert 0 13760 A
>> Inserting city A (0,13760)
 
insert 0 13761 A
>> Inserting city A (0,13761)
 
insert 0 13762 A
>> Inserting city A (0,13762)
 
insert 0 13763 A
>> Inserting city A (0,13763)
 
insert 0 13764 A
>> Inserting city A (0,13764)
 
insert 0 13765 A
>> Inserting city A (0,13765)
 
insert 0 13766 A
>> Inserting city A (0,13766)
 
insert 0 13767 A
>> Inserting city A (0,13767)
 
insert 0 13768 A
>> Inserting city A (0,13768)
 
insert 0 13769 A
>> Inserting city A (0,13769)
 
insert 0 13770 A
>> Inserting city A (0,13770)
 
insert 0 13771 A
>> Inserting city A (0,13771)
 
insert 0 13772 A
>> Inserting city A (0,13772)
 
insert 0 13773 A
>> Inserting city A (0,13773)
 
insert 0 13774 A
>> Inserting city A (0,13774)
 
insert 0 13775 A
>> Inserting city A (0,13775)
 
insert 0 13776 A
>> Inserting city A (0,13776)
 
insert 0 13777 A
>> Inserting city A (0,13777)
 
insert 0 13778 A
>> Inserting city A (0,13778)
 
insert 0 13779 A
>> Inserting city A (0,13779)
 
insert 0 13780 A
>> Inserting city A (0,13780)
 
insert 0 13781 A
>> Inserting city A (0,13781)
 
insert 0 13782 A
>> Inserting city A (0,13782)
 
insert 0 13783 A
>> Inserting city A (0,13783)
 
insert 0 13784 A
>> Inserting city A (0,13784)
 
insert 0 13785 A
>> Inserting city A (0,13785)
 
insert 0 13786 A
>> Inserting city A (0,13786)
 
insert 0 13787 A
>> Inserting city A (0,13787)
 
insert 0 13788 A
>> Inserting city A (0,13788)
 
insert 0 13789 A
>> Inserting city A (0,13789)
 
insert 0 13790 A
>> Inserting city A (0,13790)
 
insert 0 13791 A
>> Inserting city A (0,13791)
 
insert 0 13792 A
>> Inserting city A (0,13792)
 
insert 0 13793 A
>> Inserting city A (0,13793)
 
insert 0 13794 A
>> Inserting city A (0,13794)
 
insert 0 13795 A
>> Inserting city A (0,13795)
 
insert 0 13796 A
>> Inserting city A (0,13796)
 
insert 0 13797 A
>> Inserting city A (0,13797)
 
insert 0 13798 A
>> Inserting city A (0,13798)
 
insert 0 13799 A
>> Inserting city A (0,13799)
 
insert 0 13800 A
>> Inserting city A (0,13800)
 
insert 0 13801 A
>> Inserting city A (0,13801)
 
insert 0 13802 A
>> Inserting city A (0,13802)
 
insert 0 13803 A
>> Inserting city A (0,13803)
 
insert 0 13804 A
>> Inserting city A (0,13804)
 
insert 0 13805 A
>> Inserting city A (0,13805)
 
insert 0 13806 A
>> Inserting city A (0,13806)
 
insert 0 13807 A
>> Inserting city A (0,13807)
 
insert 0 13808 A
>> Inserting city A (0,13808)
 
insert 0 13809 A
>> Inserting city A (0,13809)
 
insert 0 13810 A
>> Inserting city A (0,13810)
 
insert 0 13811 A
>> Inserting city A (0,13811)
 
insert 0 13812 A
>> Inserting city A (0,13812)
 
insert 0 13813 A
>> Inserting city A (0,13813)
 
insert 0 13814 A
>> Inserting city A (0,13814)
 
insert 0 13815 A
>> Inserting city A (0,13815)
 
insert 0 13816 A
>> Inserting city A (0,13816)
 
insert 0 13817 A
>> Inserting city A (0,13817)
 
insert 0 13818 A
>> Inserting city A (0,13818)
 
insert 0 13819 A
>> Inserting city A (0,13819)
 
insert 0 13820 A
>> Inserting city A (0,13820)
 
insert 0 13821 A
>> Inserting city A (0,13821)
 
insert 0 13822 A
>> Inserting city A (0,13822)
 
insert 0 13823 A
>> Inserting city A (0,13823)
 
insert 0 13824 A
>> Inserting city A (0,13824)
 
insert 0 13825 A
>> Inserting city A (0,13825)
 
insert 0 13826 A
>> Inserting city A (0,13826)
 
insert 0 13827 A
>> Inserting city A (0,13827)
 
insert 0 13828 A
>> Inserting city A (0,13828)
 
insert 0 13829 A
>> Inserting city A (0,13829)
 
insert 0 13830 A
>> Inserting city A (0,13830)
 
insert 0 13831 A
>> Inserting city A (0,13831)
 
insert 0 13832 A
>> Inserting city A (0,13832)
 
insert 0 13833 A
>> Inserting city A (0,13833)
 
insert 0 13834 A
>> Inserting city A (0,13834)
 
insert 0 13835 A
>> Inserting city A (0,13835)
 
insert 0 13836 A
>> Inserting city A (0,13836)
 
insert 0 13837 A
>> Inserting city A (0,13837)
 
insert 0 13838 A
>> Inserting city A (0,13838)
 
insert 0 13839 A
>> Inserting city A (0,13839)
 
insert 0 13840 A
>> Inserting city A (0,13840)
 
insert 0 13841 A
>> Inserting city A (0,13841)
 
insert 0 13842 A
>> Inserting city A (0,13842)
 
insert 0 13843 A
>> Inserting city A (0,13843)
 
insert 0 13844 A
>> Inserting city A (0,13844)
 
insert 0 13845 A
>> Inserting city A (0,13845)
 
insert 0 13846 A
>> Inserting city A (0,13846)
 
insert 0 13847 A
>> Inserting city A (0,13847)
 
insert 0 13848 A
>> Inserting city A (0,13848)
 
insert 0 13849 A
>> Inserting city A (0,13849)
 
insert 0 13850 A
>> Inserting city A (0,13850)
 
insert 0 13851 A
>> Inserting city A (0,13851)
 
insert 0 13852 A
>> Inserting city A (0,13852)
 
insert 0 13853 A
>> Inserting city A (0,13853)
 
insert 0 13854 A
>> Inserting city A (0,13854)
 
insert 0 13855 A
>> Inserting city A (0,13855)
 
insert 0 13856 A
>> Inserting city A (0,13856)
 
insert 0 13857 A
>> Inserting city A (0,13857)
 
insert 0 13858 A
>> Inserting city A (0,13858)
 
insert 0 13859 A
>> Inserting city A (0,13859)
 
insert 0 13860 A
>> Inserting city A (0,13860)
 
insert 0 13861 A
>> Inserting city A (0,13861)
 
insert 0 13862 A
>> Inserting city A (0,13862)
 
insert 0 13863 A
>> Inserting city A (0,13863)
 
insert 0 13864 A
>> Inserting city A (0,13864)
 
insert 0 13865 A
>> Inserting city A (0,13865)
 
insert 0 13866 A
>> Inserting city A (0,13866)
 
insert 0 13867 A
>> Inserting city A (0,13867)
 
insert 0 13868 A
>> Inserting city A (0,13868)
 
insert 0 13869 A
>> Inserting city A (0,13869)
 
insert 0 13870 A
>> Inserting city A (0,13870)
 
insert 0 13871 A
>> Inserting city A (0,13871)
 
insert 0 13872 A
>> Inserting city A (0,13872)
 
insert 0 13873 A
>> Inserting city A (0,13873)
 
insert 0 13874 A
>> Inserting city A (0,13874)
 
insert 0 13875 A
>> Inserting city A (0,13875)
 
insert 0 13876 A
>> Inserting city A (0,13876)
 
insert 0 13877 A
>> Inserting city A (0,13877)
 
insert 0 13878 A
>> Inserting city A (0,13878)
 
insert 0 13879 A
>> Inserting city A (0,13879)
 
insert 0 13880 A
>> Inserting city A (0,13880)
 
insert 0 13881 A
>> Inserting city A (0,13881)
 
insert 0 13882 A
>> Inserting city A (0,13882)
 
insert 0 13883 A
>> Inserting city A (0,13883)
 
insert 0 13884 A
>> Inserting city A (0,13884)
 
insert 0 13885 A
>> Inserting city A (0,13885)
 
insert 0 13886 A
>> Inserting city A (0,13886)
 
insert 0 13887 A
>> Inserting city A (0,13887)
 
insert 0 13888 A
>> Inserting city A (0,13888)
 
insert 0 13889 A
>> Inserting city A (0,13889)
 
insert 0 13890 A
>> Inserting city A (0,13890)
 
insert 0 13891 A
>> Inserting city A (0,13891)
 
insert 0 13892 A
>> Inserting city A (0,13892)
 
insert 0 13893 A
>> Inserting city A (0,13893)
 
insert 0 13894 A
>> Inserting city A (0,13894)
 
insert 0 13895 A
>> Inserting city A (0,13895)
 
insert 0 13896 A
>> Inserting city A (0,13896)
 
insert 0 13897 A
>> Inserting city A (0,13897)
 
insert 0 13898 A
>> Inserting city A (0,13898)
 
insert 0 13899 A
>> Inserting city A (0,13899)
 
insert 0 13900 A
>> Inserting city A (0,13900)
 
insert 0 13901 A
>> Inserting city A (0,13901)
 
insert 0 13902 A
>> Inserting city A (0,13902)
 
insert 0 13903 A
>> Inserting city A (0,13903)
 
insert 0 13904 A
>> Inserting city A (0,13904)
 
insert 0 13905 A
>> Inserting city A (0,13905)
 
insert 0 13906 A
>> Inserting city A (0,13906)
 
insert 0 13907 A
>> Inserting city A (0,13907)
 
insert 0 13908 A
>> Inserting city A (0,13908)
 
insert 0 13909 A
>> Inserting city A (0,13909)
 
insert 0 13910 A
>> Inserting city A (0,13910)
 
insert 0 13911 A
>> Inserting city A (0,13911)
 
insert 0 13912 A
>> Inserting city A (0,13912)
 
insert 0 13913 A
>> Inserting city A (0,13913)
 
insert 0 13914 A
>> Inserting city A (0,13914)
 
insert 0 13915 A
>> Inserting city A (0,13915)
 
insert 0 13916 A
>> Inserting city A (0,13916)
 
insert 0 13917 A
>> Inserting city A (0,13917)
 
insert 0 13918 A
>> Inserting city A (0,13918)
 
insert 0 13919 A
>> Inserting city A (0,13919)
 
insert 0 13920 A
>> Inserting city A (0,13920)
 
insert 0 13921 A
>> Inserting city A (0,13921)
 
insert 0 13922 A
>> Inserting city A (0,13922)
 
insert 0 13923 A
>> Inserting city A (0,13923)
 
insert 0 13924 A
>> Inserting city A (0,13924)
 
insert 0 13925 A
>> Inserting city A (0,13925)
 
insert 0 13926 A
>> Inserting city A (0,13926)
 
insert 0 13927 A
>> Inserting city A (0,13927)
 
insert 0 13928 A
>> Inserting city A (0,13928)
 
insert 0 13929 A
>> Inserting city A (0,13929)
 
insert 0 13930 A
>> Inserting city A (0,13930)
 
insert 0 13931 A
>> Inserting city A (0,13931)
 
insert 0 13932 A
>> Inserting city A (0,13932)
 
insert 0 13933 A
>> Inserting city A (0,13933)
 
insert 0 13934 A
>> Inserting city A (0,13934)
 
insert 0 13935 A
>> Inserting city A (0,13935)
 
insert 0 13936 A
>> Inserting city A (0,13936)
 
insert 0 13937 A
>> Inserting city A (0,13937)
 
insert 0 13938 A
>> Inserting city A (0,13938)
 
insert 0 13939 A
>> Inserting city A (0,13939)
 
insert 0 13940 A
>> Inserting city A (0,13940)
 
insert 0 13941 A
>> Inserting city A (0,13941)
 
insert 0 13942 A
>> Inserting city A (0,13942)
 
insert 0 13943 A
>> Inserting city A (0,13943)
 
insert 0 13944 A
>> Inserting city A (0,13944)
 
insert 0 13945 A
>> Inserting city A (0,13945)
 
insert 0 13946 A
>> Inserting city A (0,13946)
 
insert 0 13947 A
>> Inserting city A (0,13947)
 
insert 0 13948 A
>> Inserting city A (0,13948)
 
insert 0 13949 A
>> Inserting city A (0,13949)
 
insert 0 13950 A
>> Inserting city A (0,13950)
 
insert 0 13951 A
>> Inserting city A (0,13951)
 
insert 0 13952 A
>> Inserting city A (0,13952)
 
insert 0 13953 A
>> Inserting city A (0,13953)
 
insert 0 13954 A
>> Inserting city A (0,13954)
 
insert 0 13955 A
>> Inserting city A (0,13955)
 
insert 0 13956 A
>> Inserting city A (0,13956)
 
insert 0 13957 A
>> Inserting city A (0,13957)
 
insert 0 13958 A
>> Inserting city A (0,13958)
 
insert 0 13959 A
>> Inserting city A (0,13959)
 
insert 0 13960 A
>> Inserting city A (0,13960)
 
insert 0 13961 A
>> Inserting city A (0,13961)
 
insert 0 13962 A
>> Inserting city A (0,13962)
 
insert 0 13963 A
>> Inserting city A (0,13963)
 
insert 0 13964 A
>> Inserting city A (0,13964)
 
insert 0 13965 A
>> Inserting city A (0,13965)
 
insert 0 13966 A
>> Inserting city A (0,13966)
 
insert 0 13967 A
>> Inserting city A (0,13967)
 
insert 0 13968 A
>> Inserting city A (0,13968)
 
insert 0 13969 A
>> Inserting city A (0,13969)
 
insert 0 13970 A
>> Inserting city A (0,13970)
 
insert 0 13971 A
>> Inserting city A (0,13971)
 
insert 0 13972 A
>> Inserting city A (0,13972)
 
insert 0 13973 A
>> Inserting city A (0,13973)
 
insert 0 13974 A
>> Inserting city A (0,13974)
 
insert 0 13975 A
>> Inserting city A (0,13975)
 
insert 0 13976 A
>> Inserting city A (0,13976)
 
insert 0 13977 A
>> Inserting city A (0,13977)
 
insert 0 13978 A
>> Inserting city A (0,13978)
 
insert 0 13979 A
>> Inserting city A (0,13979)
 
insert 0 13980 A
>> Inserting city A (0,13980)
 
insert 0 13981 A
>> Inserting city A (0,13981)
 
insert 0 13982 A
>> Inserting city A (0,13982)
 
insert 0 13983 A
>> Inserting city A (0,13983)
 
insert 0 13984 A
>> Inserting city A (0,13984)
 
insert 0 13985 A
>> Inserting city A (0,13985)
 
insert 0 13986 A
>> Inserting city A (0,13986)
 
insert 0 13987 A
>> Inserting city A (0,13987)
 
insert 0 13988 A
>> Inserting city A (0,13988)
 
insert 0 13989 A
>> Inserting city A (0,13989)
 
insert 0 13990 A
>> Inserting city A (0,13990)
 
insert 0 13991 A
>> Inserting city A (0,13991)
 
insert 0 13992 A
>> Inserting city A (0,13992)
 
insert 0 13993 A
>> Inserting city A (0,13993)
 
insert 0 13994 A
>> Inserting city A (0,13994)
 
insert 0 13995 A
>> Inserting city A (0,13995)
 
insert 0 13996 A
>> Inserting city A (0,13996)
 
insert 0 13997 A
>> Inserting city A (0,13997)
 
insert 0 13998 A
>> Inserting city A (0,13998)
 
insert 0 13999 A
>> Inserting city A (0,13999)
 
insert 0 14000 A
>> Inserting city A (0,14000)
 
insert 0 14001 A
>> Inserting city A (0,14001)
 
insert 0 14002 A
>> Inserting city A (0,14002)
 
insert 0 14003 A
>> Inserting city A (0,14003)
 
insert 0 14004 A
>> Inserting city A (0,14004)
 
insert 0 14005 A
>> Inserting city A (0,14005)
 
insert 0 14006 A
>> Inserting city A (0,14006)
 
insert 0 14007 A
>> Inserting city A (0,14007)
 
insert 0 14008 A
>> Inserting city A (0,14008)
 
insert 0 14009 A
>> Inserting city A (0,14009)
 
insert 0 14010 A
>> Inserting city A (0,14010)
 
insert 0 14011 A
>> Inserting city A (0,14011)
 
insert 0 14012 A
>> Inserting city A (0,14012)
 
insert 0 14013 A
>> Inserting city A (0,14013)
 
insert 0 14014 A
>> Inserting city A (0,14014)
 
insert 0 14015 A
>> Inserting city A (0,14015)
 
insert 0 14016 A
>> Inserting city A (0,14016)
 
insert 0 14017 A
>> Inserting city A (0,14017)
 
insert 0 14018 A
>> Inserting city A (0,14018)
 
insert 0 14019 A
>> Inserting city A (0,14019)
 
insert 0 14020 A
>> Inserting city A (0,14020)
 
insert 0 14021 A
>> Inserting city A (0,14021)
 
insert 0 14022 A
>> Inserting city A (0,14022)
 
insert 0 14023 A
>> Inserting city A (0,14023)
 
insert 0 14024 A
>> Inserting city A (0,14024)
 
insert 0 14025 A
>> Inserting city A (0,14025)
 
insert 0 14026 A
>> Inserting city A (0,14026)
 
insert 0 14027 A
>> Inserting city A (0,14027)
 
insert 0 14028 A
>> Inserting city A (0,14028)
 
insert 0 14029 A
>> Inserting city A (0,14029)
 
insert 0 14030 A
>> Inserting city A (0,14030)
 
insert 0 14031 A
>> Inserting city A (0,14031)
 
insert 0 14032 A
>> Inserting city A (0,14032)
 
insert 0 14033 A
>> Inserting city A (0,14033)
 
insert 0 14034 A
>> Inserting city A (0,14034)
 
insert 0 14035 A
>> Inserting city A (0,14035)
 
insert 0 14036 A
>> Inserting city A (0,14036)
 
insert 0 14037 A
>> Inserting city A (0,14037)
 
insert 0 14038 A
>> Inserting city A (0,14038)
 
insert 0 14039 A
>> Inserting city A (0,14039)
 
insert 0 14040 A
>> Inserting city A (0,14040)
 
insert 0 14041 A
>> Inserting city A (0,14041)
 
insert 0 14042 A
>> Inserting city A (0,14042)
 
insert 0 14043 A
>> Inserting city A (0,14043)
 
insert 0 14044 A
>> Inserting city A (0,14044)
 
insert 0 14045 A
>> Inserting city A (0,14045)
 
insert 0 14046 A
>> Inserting city A (0,14046)
 
insert 0 14047 A
>> Inserting city A (0,14047)
 
insert 0 14048 A
>> Inserting city A (0,14048)
 
insert 0 14049 A
>> Inserting city A (0,14049)
 
insert 0 14050 A
>> Inserting city A (0,14050)
 
insert 0 14051 A
>> Inserting city A (0,14051)
 
insert 0 14052 A
>> Inserting city A (0,14052)
 
insert 0 14053 A
>> Inserting city A (0,14053)
 
insert 0 14054 A
>> Inserting city A (0,14054)
 
insert 0 14055 A
>> Inserting city A (0,14055)
 
insert 0 14056 A
>> Inserting city A (0,14056)
 
insert 0 14057 A
>> Inserting city A (0,14057)
 
insert 0 14058 A
>> Inserting city A (0,14058)
 
insert 0 14059 A
>> Inserting city A (0,14059)
 
insert 0 14060 A
>> Inserting city A (0,14060)
 
insert 0 14061 A
>> Inserting city A (0,14061)
 
insert 0 14062 A
>> Inserting city A (0,14062)
 
insert 0 14063 A
>> Inserting city A (0,14063)
 
insert 0 14064 A
>> Inserting city A (0,14064)
 
insert 0 14065 A
>> Inserting city A (0,14065)
 
insert 0 14066 A
>> Inserting city A (0,14066)
 
insert 0 14067 A
>> Inserting city A (0,14067)
 
insert 0 14068 A
>> Inserting city A (0,14068)
 
insert 0 14069 A
>> Inserting city A (0,14069)
 
insert 0 14070 A
>> Inserting city A (0,14070)
 
insert 0 14071 A
>> Inserting city A (0,14071)
 
insert 0 14072 A
>> Inserting city A (0,14072)
 
insert 0 14073 A
>> Inserting city A (0,14073)
 
insert 0 14074 A
>> Inserting city A (0,14074)
 
insert 0 14075 A
>> Inserting city A (0,14075)
 
insert 0 14076 A
>> Inserting city A (0,14076)
 
insert 0 14077 A
>> Inserting city A (0,14077)
 
insert 0 14078 A
>> Inserting city A (0,14078)
 
insert 0 14079 A
>> Inserting city A (0,14079)
 
insert 0 14080 A
>> Inserting city A (0,14080)
 
insert 0 14081 A
>> Inserting city A (0,14081)
 
insert 0 14082 A
>> Inserting city A (0,14082)
 
insert 0 14083 A
>> Inserting city A (0,14083)
 
insert 0 14084 A
>> Inserting city A (0,14084)
 
insert 0 14085 A
>> Inserting city A (0,14085)
 
insert 0 14086 A
>> Inserting city A (0,14086)
 
insert 0 14087 A
>> Inserting city A (0,14087)
 
insert 0 14088 A
>> Inserting city A (0,14088)
 
insert 0 14089 A
>> Inserting city A (0,14089)
 
insert 0 14090 A
>> Inserting city A (0,14090)
 
insert 0 14091 A
>> Inserting city A (0,14091)
 
insert 0 14092 A
>> Inserting city A (0,14092)
 
insert 0 14093 A
>> Inserting city A (0,14093)
 
insert 0 14094 A
>> Inserting city A (0,14094)
 
insert 0 14095 A
>> Inserting city A (0,14095)
 
insert 0 14096 A
>> Inserting city A (0,14096)
 
insert 0 14097 A
>> Inserting city A (0,14097)
 
insert 0 14098 A
>> Inserting city A (0,14098)
 
insert 0 14099 A
>> Inserting city A (0,14099)
 
insert 0 14100 A
>> Inserting city A (0,14100)
 
insert 0 14101 A
>> Inserting city A (0,14101)
 
insert 0 14102 A
>> Inserting city A (0,14102)
 
insert 0 14103 A
>> Inserting city A (0,14103)
 
insert 0 14104 A
>> Inserting city A (0,14104)
 
insert 0 14105 A
>> Inserting city A (0,14105)
 
insert 0 14106 A
>> Inserting city A (0,14106)
 
insert 0 14107 A
>> Inserting city A (0,14107)
 
insert 0 14108 A
>> Inserting city A (0,14108)
 
insert 0 14109 A
>> Inserting city A (0,14109)
 
insert 0 14110 A
>> Inserting city A (0,14110)
 
insert 0 14111 A
>> Inserting city A (0,14111)
 
insert 0 14112 A
>> Inserting city A (0,14112)
 
insert 0 14113 A
>> Inserting city A (0,14113)
 
insert 0 14114 A
>> Inserting city A (0,14114)
 
insert 0 14115 A
>> Inserting city A (0,14115)
 
insert 0 14116 A
>> Inserting city A (0,14116)
 
insert 0 14117 A
>> Inserting city A (0,14117)
 
insert 0 14118 A
>> Inserting city A (0,14118)
 
insert 0 14119 A
>> Inserting city A (0,14119)
 
insert 0 14120 A
>> Inserting city A (0,14120)
 
insert 0 14121 A
>> Inserting city A (0,14121)
 
insert 0 14122 A
>> Inserting city A (0,14122)
 
insert 0 14123 A
>> Inserting city A (0,14123)
 
insert 0 14124 A
>> Inserting city A (0,14124)
 
insert 0 14125 A
>> Inserting city A (0,14125)
 
insert 0 14126 A
>> Inserting city A (0,14126)
 
insert 0 14127 A
>> Inserting city A (0,14127)
 
insert 0 14128 A
>> Inserting city A (0,14128)
 
insert 0 14129 A
>> Inserting city A (0,14129)
 
insert 0 14130 A
>> Inserting city A (0,14130)
 
insert 0 14131 A
>> Inserting city A (0,14131)
 
insert 0 14132 A
>> Inserting city A (0,14132)
 
insert 0 14133 A
>> Inserting city A (0,14133)
 
insert 0 14134 A
>> Inserting city A (0,14134)
 
insert 0 14135 A
>> Inserting city A (0,14135)
 
insert 0 14136 A
>> Inserting city A (0,14136)
 
insert 0 14137 A
>> Inserting city A (0,14137)
 
insert 0 14138 A
>> Inserting city A (0,14138)
 
insert 0 14139 A
>> Inserting city A (0,14139)
 
insert 0 14140 A
>> Inserting city A (0,14140)
 
insert 0 14141 A
>> Inserting city A (0,14141)
 
insert 0 14142 A
>> Inserting city A (0,14142)
 
insert 0 14143 A
>> Inserting city A (0,14143)
 
insert 0 14144 A
>> Inserting city A (0,14144)
 
insert 0 14145 A
>> Inserting city A (0,14145)
 
insert 0 14146 A
>> Inserting city A (0,14146)
 
insert 0 14147 A
>> Inserting city A (0,14147)
 
insert 0 14148 A
>> Inserting city A (0,14148)
 
insert 0 14149 A
>> Inserting city A (0,14149)
 
insert 0 14150 A
>> Inserting city A (0,14150)
 
insert 0 14151 A
>> Inserting city A (0,14151)
 
insert 0 14152 A
>> Inserting city A (0,14152)
 
insert 0 14153 A
>> Inserting city A (0,14153)
 
insert 0 14154 A
>> Inserting city A (0,14154)
 
insert 0 14155 A
>> Inserting city A (0,14155)
 
insert 0 14156 A
>> Inserting city A (0,14156)
 
insert 0 14157 A
>> Inserting city A (0,14157)
 
insert 0 14158 A
>> Inserting city A (0,14158)
 
insert 0 14159 A
>> Inserting city A (0,14159)
 
insert 0 14160 A
>> Inserting city A (0,14160)
 
insert 0 14161 A
>> Inserting city A (0,14161)
 
insert 0 14162 A
>> Inserting city A (0,14162)
 
insert 0 14163 A
>> Inserting city A (0,14163)
 
insert 0 14164 A
>> Inserting city A (0,14164)
 
insert 0 14165 A
>> Inserting city A (0,14165)
 
insert 0 14166 A
>> Inserting city A (0,14166)
 
insert 0 14167 A
>> Inserting city A (0,14167)
 
insert 0 14168 A
>> Inserting city A (0,14168)
 
insert 0 14169 A
>> Inserting city A (0,14169)
 
insert 0 14170 A
>> Inserting city A (0,14170)
 
insert 0 14171 A
>> Inserting city A (0,14171)
 
insert 0 14172 A
>> Inserting city A (0,14172)
 
insert 0 14173 A
>> Inserting city A (0,14173)
 
insert 0 14174 A
>> Inserting city A (0,14174)
 
insert 0 14175 A
>> Inserting city A (0,14175)
 
insert 0 14176 A
>> Inserting city A (0,14176)
 
insert 0 14177 A
>> Inserting city A (0,14177)
 
insert 0 14178 A
>> Inserting city A (0,14178)
 
insert 0 14179 A
>> Inserting city A (0,14179)
 
insert 0 14180 A
>> Inserting city A (0,14180)
 
insert 0 14181 A
>> Inserting city A (0,14181)
 
insert 0 14182 A
>> Inserting city A (0,14182)
 
insert 0 14183 A
>> Inserting city A (0,14183)
 
insert 0 14184 A
>> Inserting city A (0,14184)
 
insert 0 14185 A
>> Inserting city A (0,14185)
 
insert 0 14186 A
>> Inserting city A (0,14186)
 
insert 0 14187 A
>> Inserting city A (0,14187)
 
insert 0 14188 A
>> Inserting city A (0,14188)
 
insert 0 14189 A
>> Inserting city A (0,14189)
 
insert 0 14190 A
>> Inserting city A (0,14190)
 
insert 0 14191 A
>> Inserting city A (0,14191)
 
insert 0 14192 A
>> Inserting city A (0,14192)
 
insert 0 14193 A
>> Inserting city A (0,14193)
 
insert 0 14194 A
>> Inserting city A (0,14194)
 
insert 0 14195 A
>> Inserting city A (0,14195)
 
insert 0 14196 A
>> Inserting city A (0,14196)
 
insert 0 14197 A
>> Inserting city A (0,14197)
 
insert 0 14198 A
>> Inserting city A (0,14198)
 
insert 0 14199 A
>> Inserting city A (0,14199)
 
insert 0 14200 A
>> Inserting city A (0,14200)
 
insert 0 14201 A
>> Inserting city A (0,14201)
 
insert 0 14202 A
>> Inserting city A (0,14202)
 
insert 0 14203 A
>> Inserting city A (0,14203)
 
insert 0 14204 A
>> Inserting city A (0,14204)
 
insert 0 14205 A
>> Inserting city A (0,14205)
 
insert 0 14206 A
>> Inserting city A (0,14206)
 
insert 0 14207 A
>> Inserting city A (0,14207)
 
insert 0 14208 A
>> Inserting city A (0,14208)
 
insert 0 14209 A
>> Inserting city A (0,14209)
 
insert 0 14210 A
>> Inserting city A (0,14210)
 
insert 0 14211 A
>> Inserting city A (0,14211)
 
insert 0 14212 A
>> Inserting city A (0,14212)
 
insert 0 14213 A
>> Inserting city A (0,14213)
 
insert 0 14214 A
>> Inserting city A (0,14214)
 
insert 0 14215 A
>> Inserting city A (0,14215)
 
insert 0 14216 A
>> Inserting city A (0,14216)
 
insert 0 14217 A
>> Inserting city A (0,14217)
 
insert 0 14218 A
>> Inserting city A (0,14218)
 
insert 0 14219 A
>> Inserting city A (0,14219)
 
insert 0 14220 A
>> Inserting city A (0,14220)
 
insert 0 14221 A
>> Inserting city A (0,14221)
 
insert 0 14222 A
>> Inserting city A (0,14222)
 
insert 0 14223 A
>> Inserting city A (0,14223)
 
insert 0 14224 A
>> Inserting city A (0,14224)
 
insert 0 14225 A
>> Inserting city A (0,14225)
 
insert 0 14226 A
>> Inserting city A (0,14226)
 
insert 0 14227 A
>> Inserting city A (0,14227)
 
insert 0 14228 A
>> Inserting city A (0,14228)
 
insert 0 14229 A
>> Inserting city A (0,14229)
 
insert 0 14230 A
>> Inserting city A (0,14230)
 
insert 0 14231 A
>> Inserting city A (0,14231)
 
insert 0 14232 A
>> Inserting city A (0,14232)
 
insert 0 14233 A
>> Inserting city A (0,14233)
 
insert 0 14234 A
>> Inserting city A (0,14234)
 
insert 0 14235 A
>> Inserting city A (0,14235)
 
insert 0 14236 A
>> Inserting city A (0,14236)
 
insert 0 14237 A
>> Inserting city A (0,14237)
 
insert 0 14238 A
>> Inserting city A (0,14238)
 
insert 0 14239 A
>> Inserting city A (0,14239)
 
insert 0 14240 A
>> Inserting city A (0,14240)
 
insert 0 14241 A
>> Inserting city A (0,14241)
 
insert 0 14242 A
>> Inserting city A (0,14242)
 
insert 0 14243 A
>> Inserting city A (0,14243)
 
insert 0 14244 A
>> Inserting city A (0,14244)
 
insert 0 14245 A
>> Inserting city A (0,14245)
 
insert 0 14246 A
>> Inserting city A (0,14246)
 
insert 0 14247 A
>> Inserting city A (0,14247)
 
insert 0 14248 A
>> Inserting city A (0,14248)
 
insert 0 14249 A
>> Inserting city A (0,14249)
 
insert 0 14250 A
>> Inserting city A (0,14250)
 
insert 0 14251 A
>> Inserting city A (0,14251)
 
insert 0 14252 A
>> Inserting city A (0,14252)
 
insert 0 14253 A
>> Inserting city A (0,14253)
 
insert 0 14254 A
>> Inserting city A (0,14254)
 
insert 0 14255 A
>> Inserting city A (0,14255)
 
insert 0 14256 A
>> Inserting city A (0,14256)
 
insert 0 14257 A
>> Inserting city A (0,14257)
 
insert 0 14258 A
>> Inserting city A (0,14258)
 
insert 0 14259 A
>> Inserting city A (0,14259)
 
insert 0 14260 A
>> Inserting city A (0,14260)
 
insert 0 14261 A
>> Inserting city A (0,14261)
 
insert 0 14262 A
>> Inserting city A (0,14262)
 
insert 0 14263 A
>> Inserting city A (0,14263)
 
insert 0 14264 A
>> Inserting city A (0,14264)
 
insert 0 14265 A
>> Inserting city A (0,14265)
 
insert 0 14266 A
>> Inserting city A (0,14266)
 
insert 0 14267 A
>> Inserting city A (0,14267)
 
insert 0 14268 A
>> Inserting city A (0,14268)
 
insert 0 14269 A
>> Inserting city A (0,14269)
 
insert 0 14270 A
>> Inserting city A (0,14270)
 
insert 0 14271 A
>> Inserting city A (0,14271)
 
insert 0 14272 A
>> Inserting city A (0,14272)
 
insert 0 14273 A
>> Inserting city A (0,14273)
 
insert 0 14274 A
>> Inserting city A (0,14274)
 
insert 0 14275 A
>> Inserting city A (0,14275)
 
insert 0 14276 A
>> Inserting city A (0,14276)
 
insert 0 14277 A
>> Inserting city A (0,14277)
 
insert 0 14278 A
>> Inserting city A (0,14278)
 
insert 0 14279 A
>> Inserting city A (0,14279)
 
insert 0 14280 A
>> Inserting city A (0,14280)
 
insert 0 14281 A
>> Inserting city A (0,14281)
 
insert 0 14282 A
>> Inserting city A (0,14282)
 
insert 0 14283 A
>> Inserting city A (0,14283)
 
insert 0 14284 A
>> Inserting city A (0,14284)
 
insert 0 14285 A
>> Inserting city A (0,14285)
 
insert 0 14286 A
>> Inserting city A (0,14286)
 
insert 0 14287 A
>> Inserting city A (0,14287)
 
insert 0 14288 A
>> Inserting city A (0,14288)
 
insert 0 14289 A
>> Inserting city A (0,14289)
 
insert 0 14290 A
>> Inserting city A (0,14290)
 
insert 0 14291 A
>> Inserting city A (0,14291)
 
insert 0 14292 A
>> Inserting city A (0,14292)
 
insert 0 14293 A
>> Inserting city A (0,14293)
 
insert 0 14294 A
>> Inserting city A (0,14294)
 
insert 0 14295 A
>> Inserting city A (0,14295)
 
insert 0 14296 A
>> Inserting city A (0,14296)
 
insert 0 14297 A
>> Inserting city A (0,14297)
 
insert 0 14298 A
>> Inserting city A (0,14298)
 
insert 0 14299 A
>> Inserting city A (0,14299)
 
insert 0 14300 A
>> Inserting city A (0,14300)
 
insert 0 14301 A
>> Inserting city A (0,14301)
 
insert 0 14302 A
>> Inserting city A (0,14302)
 
insert 0 14303 A
>> Inserting city A (0,14303)
 
insert 0 14304 A
>> Inserting city A (0,14304)
 
insert 0 14305 A
>> Inserting city A (0,14305)
 
insert 0 14306 A
>> Inserting city A (0,14306)
 
insert 0 14307 A
>> Inserting city A (0,14307)
 
insert 0 14308 A
>> Inserting city A (0,14308)
 
insert 0 14309 A
>> Inserting city A (0,14309)
 
insert 0 14310 A
>> Inserting city A (0,14310)
 
insert 0 14311 A
>> Inserting city A (0,14311)
 
insert 0 14312 A
>> Inserting city A (0,14312)
 
insert 0 14313 A
>> Inserting city A (0,14313)
 
insert 0 14314 A
>> Inserting city A (0,14314)
 
insert 0 14315 A
>> Inserting city A (0,14315)
 
insert 0 14316 A
>> Inserting city A (0,14316)
 
insert 0 14317 A
>> Inserting city A (0,14317)
 
insert 0 14318 A
>> Inserting city A (0,14318)
 
insert 0 14319 A
>> Inserting city A (0,14319)
 
insert 0 14320 A
>> Inserting city A (0,14320)
 
insert 0 14321 A
>> Inserting city A (0,14321)
 
insert 0 14322 A
>> Inserting city A (0,14322)
 
insert 0 14323 A
>> Inserting city A (0,14323)
 
insert 0 14324 A
>> Inserting city A (0,14324)
 
insert 0 14325 A
>> Inserting city A (0,14325)
 
insert 0 14326 A
>> Inserting city A (0,14326)
 
insert 0 14327 A
>> Inserting city A (0,14327)
 
insert 0 14328 A
>> Inserting city A (0,14328)
 
insert 0 14329 A
>> Inserting city A (0,14329)
 
insert 0 14330 A
>> Inserting city A (0,14330)
 
insert 0 14331 A
>> Inserting city A (0,14331)
 
insert 0 14332 A
>> Inserting city A (0,14332)
 
insert 0 14333 A
>> Inserting city A (0,14333)
 
insert 0 14334 A
>> Inserting city A (0,14334)
 
insert 0 14335 A
>> Inserting city A (0,14335)
 
insert 0 14336 A
>> Inserting city A (0,14336)
 
insert 0 14337 A
>> Inserting city A (0,14337)
 
insert 0 14338 A
>> Inserting city A (0,14338)
 
insert 0 14339 A
>> Inserting city A (0,14339)
 
insert 0 14340 A
>> Inserting city A (0,14340)
 
insert 0 14341 A
>> Inserting city A (0,14341)
 
insert 0 14342 A
>> Inserting city A (0,14342)
 
insert 0 14343 A
>> Inserting city A (0,14343)
 
insert 0 14344 A
>> Inserting city A (0,14344)
 
insert 0 14345 A
>> Inserting city A (0,14345)
 
insert 0 14346 A
>> Inserting city A (0,14346)
 
insert 0 14347 A
>> Inserting city A (0,14347)
 
insert 0 14348 A
>> Inserting city A (0,14348)
 
insert 0 14349 A
>> Inserting city A (0,14349)
 
insert 0 14350 A
>> Inserting city A (0,14350)
 
insert 0 14351 A
>> Inserting city A (0,14351)
 
insert 0 14352 A
>> Inserting city A (0,14352)
 
insert 0 14353 A
>> Inserting city A (0,14353)
 
insert 0 14354 A
>> Inserting city A (0,14354)
 
insert 0 14355 A
>> Inserting city A (0,14355)
 
insert 0 14356 A
>> Inserting city A (0,14356)
 
insert 0 14357 A
>> Inserting city A (0,14357)
 
insert 0 14358 A
>> Inserting city A (0,14358)
 
insert 0 14359 A
>> Inserting city A (0,14359)
 
insert 0 14360 A
>> Inserting city A (0,14360)
 
insert 0 14361 A
>> Inserting city A (0,14361)
 
insert 0 14362 A
>> Inserting city A (0,14362)
 
insert 0 14363 A
>> Inserting city A (0,14363)
 
insert 0 14364 A
>> Inserting city A (0,14364)
 
insert 0 14365 A
>> Inserting city A (0,14365)
 
insert 0 14366 A
>> Inserting city A (0,14366)
 
insert 0 14367 A
>> Inserting city A (0,14367)
 
insert 0 14368 A
>> Inserting city A (0,14368)
 
insert 0 14369 A
>> Inserting city A (0,14369)
 
insert 0 14370 A
>> Inserting city A (0,14370)
 
insert 0 14371 A
>> Inserting city A (0,14371)
 
insert 0 14372 A
>> Inserting city A (0,14372)
 
insert 0 14373 A
>> Inserting city A (0,14373)
 
insert 0 14374 A
>> Inserting city A (0,14374)
 
insert 0 14375 A
>> Inserting city A (0,14375)
 
insert 0 14376 A
>> Inserting city A (0,14376)
 
insert 0 14377 A
>> Inserting city A (0,14377)
 
insert 0 14378 A
>> Inserting city A (0,14378)
 
insert 0 14379 A
>> Inserting city A (0,14379)
 
insert 0 14380 A
>> Inserting city A (0,14380)
 
insert 0 14381 A
>> Inserting city A (0,14381)
 
insert 0 14382 A
>> Inserting city A (0,14382)
 
insert 0 14383 A
>> Inserting city A (0,14383)
 
insert 0 14384 A
>> Inserting city A (0,14384)
 
insert 0 14385 A
>> Inserting city A (0,14385)
 
insert 0 14386 A
>> Inserting city A (0,14386)
 
insert 0 14387 A
>> Inserting city A (0,14387)
 
insert 0 14388 A
>> Inserting city A (0,14388)
 
insert 0 14389 A
>> Inserting city A (0,14389)
 
insert 0 14390 A
>> Inserting city A (0,14390)
 
insert 0 14391 A
>> Inserting city A (0,14391)
 
insert 0 14392 A
>> Inserting city A (0,14392)
 
insert 0 14393 A
>> Inserting city A (0,14393)
 
insert 0 14394 A
>> Inserting city A (0,14394)
 
insert 0 14395 A
>> Inserting city A (0,14395)
 
insert 0 14396 A
>> Inserting city A (0,14396)
 
insert 0 14397 A
>> Inserting city A (0,14397)
 
insert 0 14398 A
>> Inserting city A (0,14398)
 
insert 0 14399 A
>> Inserting city A (0,14399)
 
insert 0 14400 A
>> Inserting city A (0,14400)
 
insert 0 14401 A
>> Inserting city A (0,14401)
 
insert 0 14402 A
>> Inserting city A (0,14402)
 
insert 0 14403 A
>> Inserting city A (0,14403)
 
insert 0 14404 A
>> Inserting city A (0,14404)
 
insert 0 14405 A
>> Inserting city A (0,14405)
 
insert 0 14406 A
>> Inserting city A (0,14406)
 
insert 0 14407 A
>> Inserting city A (0,14407)
 
insert 0 14408 A
>> Inserting city A (0,14408)
 
insert 0 14409 A
>> Inserting city A (0,14409)
 
insert 0 14410 A
>> Inserting city A (0,14410)
 
insert 0 14411 A
>> Inserting city A (0,14411)
 
insert 0 14412 A
>> Inserting city A (0,14412)
 
insert 0 14413 A
>> Inserting city A (0,14413)
 
insert 0 14414 A
>> Inserting city A (0,14414)
 
insert 0 14415 A
>> Inserting city A (0,14415)
 
insert 0 14416 A
>> Inserting city A (0,14416)
 
insert 0 14417 A
>> Inserting city A (0,14417)
 
insert 0 14418 A
>> Inserting city A (0,14418)
 
insert 0 14419 A
>> Inserting city A (0,14419)
 
insert 0 14420 A
>> Inserting city A (0,14420)
 
insert 0 14421 A
>> Inserting city A (0,14421)
 
insert 0 14422 A
>> Inserting city A (0,14422)
 
insert 0 14423 A
>> Inserting city A (0,14423)
 
insert 0 14424 A
>> Inserting city A (0,14424)
 
insert 0 14425 A
>> Inserting city A (0,14425)
 
insert 0 14426 A
>> Inserting city A (0,14426)
 
insert 0 14427 A
>> Inserting city A (0,14427)
 
insert 0 14428 A
>> Inserting city A (0,14428)
 
insert 0 14429 A
>> Inserting city A (0,14429)
 
insert 0 14430 A
>> Inserting city A (0,14430)
 
insert 0 14431 A
>> Inserting city A (0,14431)
 
insert 0 14432 A
>> Inserting city A (0,14432)
 
insert 0 14433 A
>> Inserting city A (0,14433)
 
insert 0 14434 A
>> Inserting city A (0,14434)
 
insert 0 14435 A
>> Inserting city A (0,14435)
 
insert 0 14436 A
>> Inserting city A (0,14436)
 
insert 0 14437 A
>> Inserting city A (0,14437)
 
insert 0 14438 A
>> Inserting city A (0,14438)
 
insert 0 14439 A
>> Inserting city A (0,14439)
 
insert 0 14440 A
>> Inserting city A (0,14440)
 
insert 0 14441 A
>> Inserting city A (0,14441)
 
insert 0 14442 A
>> Inserting city A (0,14442)
 
insert 0 14443 A
>> Inserting city A (0,14443)
 
insert 0 14444 A
>> Inserting city A (0,14444)
 
insert 0 14445 A
>> Inserting city A (0,14445)
 
insert 0 14446 A
>> Inserting city A (0,14446)
 
insert 0 14447 A
>> Inserting city A (0,14447)
 
insert 0 14448 A
>> Inserting city A (0,14448)
 
insert 0 14449 A
>> Inserting city A (0,14449)
 
insert 0 14450 A
>> Inserting city A (0,14450)
 
insert 0 14451 A
>> Inserting city A (0,14451)
 
insert 0 14452 A
>> Inserting city A (0,14452)
 
insert 0 14453 A
>> Inserting city A (0,14453)
 
insert 0 14454 A
>> Inserting city A (0,14454)
 
insert 0 14455 A
>> Inserting city A (0,14455)
 
insert 0 14456 A
>> Inserting city A (0,14456)
 
insert 0 14457 A
>> Inserting city A (0,14457)
 
insert 0 14458 A
>> Inserting city A (0,14458)
 
insert 0 14459 A
>> Inserting city A (0,14459)
 
insert 0 14460 A
>> Inserting city A (0,14460)
 
insert 0 14461 A
>> Inserting city A (0,14461)
 
insert 0 14462 A
>> Inserting city A (0,14462)
 
insert 0 14463 A
>> Inserting city A (0,14463)
 
insert 0 14464 A
>> Inserting city A (0,14464)
 
insert 0 14465 A
>> Inserting city A (0,14465)
 
insert 0 14466 A
>> Inserting city A (0,14466)
 
insert 0 14467 A
>> Inserting city A (0,14467)
 
insert 0 14468 A
>> Inserting city A (0,14468)
 
insert 0 14469 A
>> Inserting city A (0,14469)
 
insert 0 14470 A
>> Inserting city A (0,14470)
 
insert 0 14471 A
>> Inserting city A (0,14471)
 
insert 0 14472 A
>> Inserting city A (0,14472)
 
insert 0 14473 A
>> Inserting city A (0,14473)
 
insert 0 14474 A
>> Inserting city A (0,14474)
 
insert 0 14475 A
>> Inserting city A (0,14475)
 
insert 0 14476 A
>> Inserting city A (0,14476)
 
insert 0 14477 A
>> Inserting city A (0,14477)
 
insert 0 14478 A
>> Inserting city A (0,14478)
 
insert 0 14479 A
>> Inserting city A (0,14479)
 
insert 0 14480 A
>> Inserting city A (0,14480)
 
insert 0 14481 A
>> Inserting city A (0,14481)
 
insert 0 14482 A
>> Inserting city A (0,14482)
 
insert 0 14483 A
>> Inserting city A (0,14483)
 
insert 0 14484 A
>> Inserting city A (0,14484)
 
insert 0 14485 A
>> Inserting city A (0,14485)
 
insert 0 14486 A
>> Inserting city A (0,14486)
 
insert 0 14487 A
>> Inserting city A (0,14487)
 
insert 0 14488 A
>> Inserting city A (0,14488)
 
insert 0 14489 A
>> Inserting city A (0,14489)
 
insert 0 14490 A
>> Inserting city A (0,14490)
 
insert 0 14491 A
>> Inserting city A (0,14491)
 
insert 0 14492 A
>> Inserting city A (0,14492)
 
insert 0 14493 A
>> Inserting city A (0,14493)
 
insert 0 14494 A
>> Inserting city A (0,14494)
 
insert 0 14495 A
>> Inserting city A (0,14495)
 
insert 0 14496 A
>> Inserting city A (0,14496)
 
insert 0 14497 A
>> Inserting city A (0,14497)
 
insert 0 14498 A
>> Inserting city A (0,14498)
 
insert 0 14499 A
>> Inserting city A (0,14499)
 
insert 0 14500 A
>> Inserting city A (0,14500)
 
insert 0 14501 A
>> Inserting city A (0,14501)
 
insert 0 14502 A
>> Inserting city A (0,14502)
 
insert 0 14503 A
>> Inserting city A (0,14503)
 
insert 0 14504 A
>> Inserting city A (0,14504)
 
insert 0 14505 A
>> Inserting city A (0,14505)
 
insert 0 14506 A
>> Inserting city A (0,14506)
 
insert 0 14507 A
>> Inserting city A (0,14507)
 
insert 0 14508 A
>> Inserting city A (0,14508)
 
insert 0 14509 A
>> Inserting city A (0,14509)
 
insert 0 14510 A
>> Inserting city A (0,14510)
 
insert 0 14511 A
>> Inserting city A (0,14511)
 
insert 0 14512 A
>> Inserting city A (0,14512)
 
insert 0 14513 A
>> Inserting city A (0,14513)
 
insert 0 14514 A
>> Inserting city A (0,14514)
 
insert 0 14515 A
>> Inserting city A (0,14515)
 
insert 0 14516 A
>> Inserting city A (0,14516)
 
insert 0 14517 A
>> Inserting city A (0,14517)
 
insert 0 14518 A
>> Inserting city A (0,14518)
 
insert 0 14519 A
>> Inserting city A (0,14519)
 
insert 0 14520 A
>> Inserting city A (0,14520)
 
insert 0 14521 A
>> Inserting city A (0,14521)
 
insert 0 14522 A
>> Inserting city A (0,14522)
 
insert 0 14523 A
>> Inserting city A (0,14523)
 
insert 0 14524 A
>> Inserting city A (0,14524)
 
insert 0 14525 A
>> Inserting city A (0,14525)
 
insert 0 14526 A
>> Inserting city A (0,14526)
 
insert 0 14527 A
>> Inserting city A (0,14527)
 
insert 0 14528 A
>> Inserting city A (0,14528)
 
insert 0 14529 A
>> Inserting city A (0,14529)
 
insert 0 14530 A
>> Inserting city A (0,14530)
 
insert 0 14531 A
>> Inserting city A (0,14531)
 
insert 0 14532 A
>> Inserting city A (0,14532)
 
insert 0 14533 A
>> Inserting city A (0,14533)
 
insert 0 14534 A
>> Inserting city A (0,14534)
 
insert 0 14535 A
>> Inserting city A (0,14535)
 
insert 0 14536 A
>> Inserting city A (0,14536)
 
insert 0 14537 A
>> Inserting city A (0,14537)
 
insert 0 14538 A
>> Inserting city A (0,14538)
 
insert 0 14539 A
>> Inserting city A (0,14539)
 
insert 0 14540 A
>> Inserting city A (0,14540)
 
insert 0 14541 A
>> Inserting city A (0,14541)
 
insert 0 14542 A
>> Inserting city A (0,14542)
 
insert 0 14543 A
>> Inserting city A (0,14543)
 
insert 0 14544 A
>> Inserting city A (0,14544)
 
insert 0 14545 A
>> Inserting city A (0,14545)
 
insert 0 14546 A
>> Inserting city A (0,14546)
 
insert 0 14547 A
>> Inserting city A (0,14547)
 
insert 0 14548 A
>> Inserting city A (0,14548)
 
insert 0 14549 A
>> Inserting city A (0,14549)
 
insert 0 14550 A
>> Inserting city A (0,14550)
 
insert 0 14551 A
>> Inserting city A (0,14551)
 
insert 0 14552 A
>> Inserting city A (0,14552)
 
insert 0 14553 A
>> Inserting city A (0,14553)
 
insert 0 14554 A
>> Inserting city A (0,14554)
 
insert 0 14555 A
>> Inserting city A (0,14555)
 
insert 0 14556 A
>> Inserting city A (0,14556)
 
insert 0 14557 A
>> Inserting city A (0,14557)
 
insert 0 14558 A
>> Inserting city A (0,14558)
 
insert 0 14559 A
>> Inserting city A (0,14559)
 
insert 0 14560 A
>> Inserting city A (0,14560)
 
insert 0 14561 A
>> Inserting city A (0,14561)
 
insert 0 14562 A
>> Inserting city A (0,14562)
 
insert 0 14563 A
>> Inserting city A (0,14563)
 
insert 0 14564 A
>> Inserting city A (0,14564)
 
insert 0 14565 A
>> Inserting city A (0,14565)
 
insert 0 14566 A
>> Inserting city A (0,14566)
 
insert 0 14567 A
>> Inserting city A (0,14567)
 
insert 0 14568 A
>> Inserting city A (0,14568)
 
insert 0 14569 A
>> Inserting city A (0,14569)
 
insert 0 14570 A
>> Inserting city A (0,14570)
 
insert 0 14571 A
>> Inserting city A (0,14571)
 
insert 0 14572 A
>> Inserting city A (0,14572)
 
insert 0 14573 A
>> Inserting city A (0,14573)
 
insert 0 14574 A
>> Inserting city A (0,14574)
 
insert 0 14575 A
>> Inserting city A (0,14575)
 
insert 0 14576 A
>> Inserting city A (0,14576)
 
insert 0 14577 A
>> Inserting city A (0,14577)
 
insert 0 14578 A
>> Inserting city A (0,14578)
 
insert 0 14579 A
>> Inserting city A (0,14579)
 
insert 0 14580 A
>> Inserting city A (0,14580)
 
insert 0 14581 A
>> Inserting city A (0,14581)
 
insert 0 14582 A
>> Inserting city A (0,14582)
 
insert 0 14583 A
>> Inserting city A (0,14583)
 
insert 0 14584 A
>> Inserting city A (0,14584)
 
insert 0 14585 A
>> Inserting city A (0,14585)
 
insert 0 14586 A
>> Inserting city A (0,14586)
 
insert 0 14587 A
>> Inserting city A (0,14587)
 
insert 0 14588 A
>> Inserting city A (0,14588)
 
insert 0 14589 A
>> Inserting city A (0,14589)
 
insert 0 14590 A
>> Inserting city A (0,14590)
 
insert 0 14591 A
>> Inserting city A (0,14591)
 
insert 0 14592 A
>> Inserting city A (0,14592)
 
insert 0 14593 A
>> Inserting city A (0,14593)
 
insert 0 14594 A
>> Inserting city A (0,14594)
 
insert 0 14595 A
>> Inserting city A (0,14595)
 
insert 0 14596 A
>> Inserting city A (0,14596)
 
insert 0 14597 A
>> Inserting city A (0,14597)
 
insert 0 14598 A
>> Inserting city A (0,14598)
 
insert 0 14599 A
>> Inserting city A (0,14599)
 
insert 0 14600 A
>> Inserting city A (0,14600)
 
insert 0 14601 A
>> Inserting city A (0,14601)
 
insert 0 14602 A
>> Inserting city A (0,14602)
 
insert 0 14603 A
>> Inserting city A (0,14603)
 
insert 0 14604 A
>> Inserting city A (0,14604)
 
insert 0 14605 A
>> Inserting city A (0,14605)
 
insert 0 14606 A
>> Inserting city A (0,14606)
 
insert 0 14607 A
>> Inserting city A (0,14607)
 
insert 0 14608 A
>> Inserting city A (0,14608)
 
insert 0 14609 A
>> Inserting city A (0,14609)
 
insert 0 14610 A
>> Inserting city A (0,14610)
 
insert 0 14611 A
>> Inserting city A (0,14611)
 
insert 0 14612 A
>> Inserting city A (0,14612)
 
insert 0 14613 A
>> Inserting city A (0,14613)
 
insert 0 14614 A
>> Inserting city A (0,14614)
 
insert 0 14615 A
>> Inserting city A (0,14615)
 
insert 0 14616 A
>> Inserting city A (0,14616)
 
insert 0 14617 A
>> Inserting city A (0,14617)
 
insert 0 14618 A
>> Inserting city A (0,14618)
 
insert 0 14619 A
>> Inserting city A (0,14619)
 
insert 0 14620 A
>> Inserting city A (0,14620)
 
insert 0 14621 A
>> Inserting city A (0,14621)
 
insert 0 14622 A
>> Inserting city A (0,14622)
 
insert 0 14623 A
>> Inserting city A (0,14623)
 
insert 0 14624 A
>> Inserting city A (0,14624)
 
insert 0 14625 A
>> Inserting city A (0,14625)
 
insert 0 14626 A
>> Inserting city A (0,14626)
 
insert 0 14627 A
>> Inserting city A (0,14627)
 
insert 0 14628 A
>> Inserting city A (0,14628)
 
insert 0 14629 A
>> Inserting city A (0,14629)
 
insert 0 14630 A
>> Inserting city A (0,14630)
 
insert 0 14631 A
>> Inserting city A (0,14631)
 
insert 0 14632 A
>> Inserting city A (0,14632)
 
insert 0 14633 A
>> Inserting city A (0,14633)
 
insert 0 14634 A
>> Inserting city A (0,14634)
 
insert 0 14635 A
>> Inserting city A (0,14635)
 
insert 0 14636 A
>> Inserting city A (0,14636)
 
insert 0 14637 A
>> Inserting city A (0,14637)
 
insert 0 14638 A
>> Inserting city A (0,14638)
 
insert 0 14639 A
>> Inserting city A (0,14639)
 
insert 0 14640 A
>> Inserting city A (0,14640)
 
insert 0 14641 A
>> Inserting city A (0,14641)
 
insert 0 14642 A
>> Inserting city A (0,14642)
 
insert 0 14643 A
>> Inserting city A (0,14643)
 
insert 0 14644 A
>> Inserting city A (0,14644)
 
insert 0 14645 A
>> Inserting city A (0,14645)
 
insert 0 14646 A
>> Inserting city A (0,14646)
 
insert 0 14647 A
>> Inserting city A (0,14647)
 
insert 0 14648 A
>> Inserting city A (0,14648)
 
insert 0 14649 A
>> Inserting city A (0,14649)
 
insert 0 14650 A
>> Inserting city A (0,14650)
 
insert 0 14651 A
>> Inserting city A (0,14651)
 
insert 0 14652 A
>> Inserting city A (0,14652)
 
insert 0 14653 A
>> Inserting city A (0,14653)
 
insert 0 14654 A
>> Inserting city A (0,14654)
 
insert 0 14655 A
>> Inserting city A (0,14655)
 
insert 0 14656 A
>> Inserting city A (0,14656)
 
insert 0 14657 A
>> Inserting city A (0,14657)
 
insert 0 14658 A
>> Inserting city A (0,14658)
 
insert 0 14659 A
>> Inserting city A (0,14659)
 
insert 0 14660 A
>> Inserting city A (0,14660)
 
insert 0 14661 A
>> Inserting city A (0,14661)
 
insert 0 14662 A
>> Inserting city A (0,14662)
 
insert 0 14663 A
>> Inserting city A (0,14663)
 
insert 0 14664 A
>> Inserting city A (0,14664)
 
insert 0 14665 A
>> Inserting city A (0,14665)
 
insert 0 14666 A
>> Inserting city A (0,14666)
 
insert 0 14667 A
>> Inserting city A (0,14667)
 
insert 0 14668 A
>> Inserting city A (0,14668)
 
insert 0 14669 A
>> Inserting city A (0,14669)
 
insert 0 14670 A
>> Inserting city A (0,14670)
 
insert 0 14671 A
>> Inserting city A (0,14671)
 
insert 0 14672 A
>> Inserting city A (0,14672)
 
insert 0 14673 A
>> Inserting city A (0,14673)
 
insert 0 14674 A
>> Inserting city A (0,14674)
 
insert 0 14675 A
>> Inserting city A (0,14675)
 
insert 0 14676 A
>> Inserting city A (0,14676)
 
insert 0 14677 A
>> Inserting city A (0,14677)
 
insert 0 14678 A
>> Inserting city A (0,14678)
 
insert 0 14679 A
>> Inserting city A (0,14679)
 
insert 0 14680 A
>> Inserting city A (0,14680)
 
insert 0 14681 A
>> Inserting city A (0,14681)
 
insert 0 14682 A
>> Inserting city A (0,14682)
 
insert 0 14683 A
>> Inserting city A (0,14683)
 
insert 0 14684 A
>> Inserting city A (0,14684)
 
insert 0 14685 A
>> Inserting city A (0,14685)
 
insert 0 14686 A
>> Inserting city A (0,14686)
 
insert 0 14687 A
>> Inserting city A (0,14687)
 
insert 0 14688 A
>> Inserting city A (0,14688)
 
insert 0 14689 A
>> Inserting city A (0,14689)
 
insert 0 14690 A
>> Inserting city A (0,14690)
 
insert 0 14691 A
>> Inserting city A (0,14691)
 
insert 0 14692 A
>> Inserting city A (0,14692)
 
insert 0 14693 A
>> Inserting city A (0,14693)
 
insert 0 14694 A
>> Inserting city A (0,14694)
 
insert 0 14695 A
>> Inserting city A (0,14695)
 
insert 0 14696 A
>> Inserting city A (0,14696)
 
insert 0 14697 A
>> Inserting city A (0,14697)
 
insert 0 14698 A
>> Inserting city A (0,14698)
 
insert 0 14699 A
>> Inserting city A (0,14699)
 
insert 0 14700 A
>> Inserting city A (0,14700)
 
insert 0 14701 A
>> Inserting city A (0,14701)
 
insert 0 14702 A
>> Inserting city A (0,14702)
 
insert 0 14703 A
>> Inserting city A (0,14703)
 
insert 0 14704 A
>> Inserting city A (0,14704)
 
insert 0 14705 A
>> Inserting city A (0,14705)
 
insert 0 14706 A
>> Inserting city A (0,14706)
 
insert 0 14707 A
>> Inserting city A (0,14707)
 
insert 0 14708 A
>> Inserting city A (0,14708)
 
insert 0 14709 A
>> Inserting city A (0,14709)
 
insert 0 14710 A
>> Inserting city A (0,14710)
 
insert 0 14711 A
>> Inserting city A (0,14711)
 
insert 0 14712 A
>> Inserting city A (0,14712)
 
insert 0 14713 A
>> Inserting city A (0,14713)
 
insert 0 14714 A
>> Inserting city A (0,14714)
 
insert 0 14715 A
>> Inserting city A (0,14715)
 
insert 0 14716 A
>> Inserting city A (0,14716)
 
insert 0 14717 A
>> Inserting city A (0,14717)
 
insert 0 14718 A
>> Inserting city A (0,14718)
 
insert 0 14719 A
>> Inserting city A (0,14719)
 
insert 0 14720 A
>> Inserting city A (0,14720)
 
insert 0 14721 A
>> Inserting city A (0,14721)
 
insert 0 14722 A
>> Inserting city A (0,14722)
 
insert 0 14723 A
>> Inserting city A (0,14723)
 
insert 0 14724 A
>> Inserting city A (0,14724)
 
insert 0 14725 A
>> Inserting city A (0,14725)
 
insert 0 14726 A
>> Inserting city A (0,14726)
 
insert 0 14727 A
>> Inserting city A (0,14727)
 
insert 0 14728 A
>> Inserting city A (0,14728)
 
insert 0 14729 A
>> Inserting city A (0,14729)
 
insert 0 14730 A
>> Inserting city A (0,14730)
 
insert 0 14731 A
>> Inserting city A (0,14731)
 
insert 0 14732 A
>> Inserting city A (0,14732)
 
insert 0 14733 A
>> Inserting city A (0,14733)
 
insert 0 14734 A
>> Inserting city A (0,14734)
 
insert 0 14735 A
>> Inserting city A (0,14735)
 
insert 0 14736 A
>> Inserting city A (0,14736)
 
insert 0 14737 A
>> Inserting city A (0,14737)
 
insert 0 14738 A
>> Inserting city A (0,14738)
 
insert 0 14739 A
>> Inserting city A (0,14739)
 
insert 0 14740 A
>> Inserting city A (0,14740)
 
insert 0 14741 A
>> Inserting city A (0,14741)
 
insert 0 14742 A
>> Inserting city A (0,14742)
 
insert 0 14743 A
>> Inserting city A (0,14743)
 
insert 0 14744 A
>> Inserting city A (0,14744)
 
insert 0 14745 A
>> Inserting city A (0,14745)
 
insert 0 14746 A
>> Inserting city A (0,14746)
 
insert 0 14747 A
>> Inserting city A (0,14747)
 
insert 0 14748 A
>> Inserting city A (0,14748)
 
insert 0 14749 A
>> Inserting city A (0,14749)
 
insert 0 14750 A
>> Inserting city A (0,14750)
 
insert 0 14751 A
>> Inserting city A (0,14751)
 
insert 0 14752 A
>> Inserting city A (0,14752)
 
insert 0 14753 A
>> Inserting city A (0,14753)
 
insert 0 14754 A
>> Inserting city A (0,14754)
 
insert 0 14755 A
>> Inserting city A (0,14755)
 
insert 0 14756 A
>> Inserting city A (0,14756)
 
insert 0 14757 A
>> Inserting city A (0,14757)
 
insert 0 14758 A
>> Inserting city A (0,14758)
 
insert 0 14759 A
>> Inserting city A (0,14759)
 
insert 0 14760 A
>> Inserting city A (0,14760)
 
insert 0 14761 A
>> Inserting city A (0,14761)
 
insert 0 14762 A
>> Inserting city A (0,14762)
 
insert 0 14763 A
>> Inserting city A (0,14763)
 
insert 0 14764 A
>> Inserting city A (0,14764)
 
insert 0 14765 A
>> Inserting city A (0,14765)
 
insert 0 14766 A
>> Inserting city A (0,14766)
 
insert 0 14767 A
>> Inserting city A (0,14767)
 
insert 0 14768 A
>> Inserting city A (0,14768)
 
insert 0 14769 A
>> Inserting city A (0,14769)
 
insert 0 14770 A
>> Inserting city A (0,14770)
 
insert 0 14771 A
>> Inserting city A (0,14771)
 
insert 0 14772 A
>> Inserting city A (0,14772)
 
insert 0 14773 A
>> Inserting city A (0,14773)
 
insert 0 14774 A
>> Inserting city A (0,14774)
 
insert 0 14775 A
>> Inserting city A (0,14775)
 
insert 0 14776 A
>> Inserting city A (0,14776)
 
insert 0 14777 A
>> Inserting city A (0,14777)
 
insert 0 14778 A
>> Inserting city A (0,14778)
 
insert 0 14779 A
>> Inserting city A (0,14779)
 
insert 0 14780 A
>> Inserting city A (0,14780)
 
insert 0 14781 A
>> Inserting city A (0,14781)
 
insert 0 14782 A
>> Inserting city A (0,14782)
 
insert 0 14783 A
>> Inserting city A (0,14783)
 
insert 0 14784 A
>> Inserting city A (0,14784)
 
insert 0 14785 A
>> Inserting city A (0,14785)
 
insert 0 14786 A
>> Inserting city A (0,14786)
 
insert 0 14787 A
>> Inserting city A (0,14787)
 
insert 0 14788 A
>> Inserting city A (0,14788)
 
insert 0 14789 A
>> Inserting city A (0,14789)
 
insert 0 14790 A
>> Inserting city A (0,14790)
 
insert 0 14791 A
>> Inserting city A (0,14791)
 
insert 0 14792 A
>> Inserting city A (0,14792)
 
insert 0 14793 A
>> Inserting city A (0,14793)
 
insert 0 14794 A
>> Inserting city A (0,14794)
 
insert 0 14795 A
>> Inserting city A (0,14795)
 
insert 0 14796 A
>> Inserting city A (0,14796)
 
insert 0 14797 A
>> Inserting city A (0,14797)
 
insert 0 14798 A
>> Inserting city A (0,14798)
 
insert 0 14799 A
>> Inserting city A (0,14799)
 
insert 0 14800 A
>> Inserting city A (0,14800)
 
insert 0 14801 A
>> Inserting city A (0,14801)
 
insert 0 14802 A
>> Inserting city A (0,14802)
 
insert 0 14803 A
>> Inserting city A (0,14803)
 
insert 0 14804 A
>> Inserting city A (0,14804)
 
insert 0 14805 A
>> Inserting city A (0,14805)
 
insert 0 14806 A
>> Inserting city A (0,14806)
 
insert 0 14807 A
>> Inserting city A (0,14807)
 
insert 0 14808 A
>> Inserting city A (0,14808)
 
insert 0 14809 A
>> Inserting city A (0,14809)
 
insert 0 14810 A
>> Inserting city A (0,14810)
 
insert 0 14811 A
>> Inserting city A (0,14811)
 
insert 0 14812 A
>> Inserting city A (0,14812)
 
insert 0 14813 A
>> Inserting city A (0,14813)
 
insert 0 14814 A
>> Inserting city A (0,14814)
 
insert 0 14815 A
>> Inserting city A (0,14815)
 
insert 0 14816 A
>> Inserting city A (0,14816)
 
insert 0 14817 A
>> Inserting city A (0,14817)
 
insert 0 14818 A
>> Inserting city A (0,14818)
 
insert 0 14819 A
>> Inserting city A (0,14819)
 
insert 0 14820 A
>> Inserting city A (0,14820)
 
insert 0 14821 A
>> Inserting city A (0,14821)
 
insert 0 14822 A
>> Inserting city A (0,14822)
 
insert 0 14823 A
>> Inserting city A (0,14823)
 
insert 0 14824 A
>> Inserting city A (0,14824)
 
insert 0 14825 A
>> Inserting city A (0,14825)
 
insert 0 14826 A
>> Inserting city A (0,14826)
 
insert 0 14827 A
>> Inserting city A (0,14827)
 
insert 0 14828 A
>> Inserting city A (0,14828)
 
insert 0 14829 A
>> Inserting city A (0,14829)
 
insert 0 14830 A
>> Inserting city A (0,14830)
 
insert 0 14831 A
>> Inserting city A (0,14831)
 
insert 0 14832 A
>> Inserting city A (0,14832)
 
insert 0 14833 A
>> Inserting city A (0,14833)
 
insert 0 14834 A
>> Inserting city A (0,14834)
 
insert 0 14835 A
>> Inserting city A (0,14835)
 
insert 0 14836 A
>> Inserting city A (0,14836)
 
insert 0 14837 A
>> Inserting city A (0,14837)
 
insert 0 14838 A
>> Inserting city A (0,14838)
 
insert 0 14839 A
>> Inserting city A (0,14839)
 
insert 0 14840 A
>> Inserting city A (0,14840)
 
insert 0 14841 A
>> Inserting city A (0,14841)
 
insert 0 14842 A
>> Inserting city A (0,14842)
 
insert 0 14843 A
>> Inserting city A (0,14843)
 
insert 0 14844 A
>> Inserting city A (0,14844)
 
insert 0 14845 A
>> Inserting city A (0,14845)
 
insert 0 14846 A
>> Inserting city A (0,14846)
 
insert 0 14847 A
>> Inserting city A (0,14847)
 
insert 0 14848 A
>> Inserting city A (0,14848)
 
insert 0 14849 A
>> Inserting city A (0,14849)
 
insert 0 14850 A
>> Inserting city A (0,14850)
 
insert 0 14851 A
>> Inserting city A (0,14851)
 
insert 0 14852 A
>> Inserting city A (0,14852)
 
insert 0 14853 A
>> Inserting city A (0,14853)
 
insert 0 14854 A
>> Inserting city A (0,14854)
 
insert 0 14855 A
>> Inserting city A (0,14855)
 
insert 0 14856 A
>> Inserting city A (0,14856)
 
insert 0 14857 A
>> Inserting city A (0,14857)
 
insert 0 14858 A
>> Inserting city A (0,14858)
 
insert 0 14859 A
>> Inserting city A (0,14859)
 
insert 0 14860 A
>> Inserting city A (0,14860)
 
insert 0 14861 A
>> Inserting city A (0,14861)
 
insert 0 14862 A
>> Inserting city A (0,14862)
 
insert 0 14863 A
>> Inserting city A (0,14863)
 
insert 0 14864 A
>> Inserting city A (0,14864)
 
insert 0 14865 A
>> Inserting city A (0,14865)
 
insert 0 14866 A
>> Inserting city A (0,14866)
 
insert 0 14867 A
>> Inserting city A (0,14867)
 
insert 0 14868 A
>> Inserting city A (0,14868)
 
insert 0 14869 A
>> Inserting city A (0,14869)
 
insert 0 14870 A
>> Inserting city A (0,14870)
 
insert 0 14871 A
>> Inserting city A (0,14871)
 
insert 0 14872 A
>> Inserting city A (0,14872)
 
insert 0 14873 A
>> Inserting city A (0,14873)
 
insert 0 14874 A
>> Inserting city A (0,14874)
 
insert 0 14875 A
>> Inserting city A (0,14875)
 
insert 0 14876 A
>> Inserting city A (0,14876)
 
insert 0 14877 A
>> Inserting city A (0,14877)
 
insert 0 14878 A
>> Inserting city A (0,14878)
 
insert 0 14879 A
>> Inserting city A (0,14879)
 
insert 0 14880 A
>> Inserting city A (0,14880)
 
insert 0 14881 A
>> Inserting city A (0,14881)
 
insert 0 14882 A
>> Inserting city A (0,14882)
 
insert 0 14883 A
>> Inserting city A (0,14883)
 
insert 0 14884 A
>> Inserting city A (0,14884)
 
insert 0 14885 A
>> Inserting city A (0,14885)
 
insert 0 14886 A
>> Inserting city A (0,14886)
 
insert 0 14887 A
>> Inserting city A (0,14887)
 
insert 0 14888 A
>> Inserting city A (0,14888)
 
insert 0 14889 A
>> Inserting city A (0,14889)
 
insert 0 14890 A
>> Inserting city A (0,14890)
 
insert 0 14891 A
>> Inserting city A (0,14891)
 
insert 0 14892 A
>> Inserting city A (0,14892)
 
insert 0 14893 A
>> Inserting city A (0,14893)
 
insert 0 14894 A
>> Inserting city A (0,14894)
 
insert 0 14895 A
>> Inserting city A (0,14895)
 
insert 0 14896 A
>> Inserting city A (0,14896)
 
insert 0 14897 A
>> Inserting city A (0,14897)
 
insert 0 14898 A
>> Inserting city A (0,14898)
 
insert 0 14899 A
>> Inserting city A (0,14899)
 
insert 0 14900 A
>> Inserting city A (0,14900)
 
insert 0 14901 A
>> Inserting city A (0,14901)
 
insert 0 14902 A
>> Inserting city A (0,14902)
 
insert 0 14903 A
>> Inserting city A (0,14903)
 
insert 0 14904 A
>> Inserting city A (0,14904)
 
insert 0 14905 A
>> Inserting city A (0,14905)
 
insert 0 14906 A
>> Inserting city A (0,14906)
 
insert 0 14907 A
>> Inserting city A (0,14907)
 
insert 0 14908 A
>> Inserting city A (0,14908)
 
insert 0 14909 A
>> Inserting city A (0,14909)
 
insert 0 14910 A
>> Inserting city A (0,14910)
 
insert 0 14911 A
>> Inserting city A (0,14911)
 
insert 0 14912 A
>> Inserting city A (0,14912)
 
insert 0 14913 A
>> Inserting city A (0,14913)
 
insert 0 14914 A
>> Inserting city A (0,14914)
 
insert 0 14915 A
>> Inserting city A (0,14915)
 
insert 0 14916 A
>> Inserting city A (0,14916)
 
insert 0 14917 A
>> Inserting city A (0,14917)
 
insert 0 14918 A
>> Inserting city A (0,14918)
 
insert 0 14919 A
>> Inserting city A (0,14919)
 
insert 0 14920 A
>> Inserting city A (0,14920)
 
insert 0 14921 A
>> Inserting city A (0,14921)
 
insert 0 14922 A
>> Inserting city A (0,14922)
 
insert 0 14923 A
>> Inserting city A (0,14923)
 
insert 0 14924 A
>> Inserting city A (0,14924)
 
insert 0 14925 A
>> Inserting city A (0,14925)
 
insert 0 14926 A
>> Inserting city A (0,14926)
 
insert 0 14927 A
>> Inserting city A (0,14927)
 
insert 0 14928 A
>> Inserting city A (0,14928)
 
insert 0 14929 A
>> Inserting city A (0,14929)
 
insert 0 14930 A
>> Inserting city A (0,14930)
 
insert 0 14931 A
>> Inserting city A (0,14931)
 
insert 0 14932 A
>> Inserting city A (0,14932)
 
insert 0 14933 A
>> Inserting city A (0,14933)
 
insert 0 14934 A
>> Inserting city A (0,14934)
 
insert 0 14935 A
>> Inserting city A (0,14935)
 
insert 0 14936 A
>> Inserting city A (0,14936)
 
insert 0 14937 A
>> Inserting city A (0,14937)
 
insert 0 14938 A
>> Inserting city A (0,14938)
 
insert 0 14939 A
>> Inserting city A (0,14939)
 
insert 0 14940 A
>> Inserting city A (0,14940)
 
insert 0 14941 A
>> Inserting city A (0,14941)
 
insert 0 14942 A
>> Inserting city A (0,14942)
 
insert 0 14943 A
>> Inserting city A (0,14943)
 
insert 0 14944 A
>> Inserting city A (0,14944)
 
insert 0 14945 A
>> Inserting city A (0,14945)
 
insert 0 14946 A
>> Inserting city A (0,14946)
 
insert 0 14947 A
>> Inserting city A (0,14947)
 
insert 0 14948 A
>> Inserting city A (0,14948)
 
insert 0 14949 A
>> Inserting city A (0,14949)
 
insert 0 14950 A
>> Inserting city A (0,14950)
 
insert 0 14951 A
>> Inserting city A (0,14951)
 
insert 0 14952 A
>> Inserting city A (0,14952)
 
insert 0 14953 A
>> Inserting city A (0,14953)
 
insert 0 14954 A
>> Inserting city A (0,14954)
 
insert 0 14955 A
>> Inserting city A (0,14955)
 
insert 0 14956 A
>> Inserting city A (0,14956)
 
insert 0 14957 A
>> Inserting city A (0,14957)
 
insert 0 14958 A
>> Inserting city A (0,14958)
 
insert 0 14959 A
>> Inserting city A (0,14959)
 
insert 0 14960 A
>> Inserting city A (0,14960)
 
insert 0 14961 A
>> Inserting city A (0,14961)
 
insert 0 14962 A
>> Inserting city A (0,14962)
 
insert 0 14963 A
>> Inserting city A (0,14963)
 
insert 0 14964 A
>> Inserting city A (0,14964)
 
insert 0 14965 A
>> Inserting city A (0,14965)
 
insert 0 14966 A
>> Inserting city A (0,14966)
 
insert 0 14967 A
>> Inserting city A (0,14967)
 
insert 0 14968 A
>> Inserting city A (0,14968)
 
insert 0 14969 A
>> Inserting city A (0,14969)
 
insert 0 14970 A
>> Inserting city A (0,14970)
 
insert 0 14971 A
>> Inserting city A (0,14971)
 
insert 0 14972 A
>> Inserting city A (0,14972)
 
insert 0 14973 A
>> Inserting city A (0,14973)
 
insert 0 14974 A
>> Inserting city A (0,14974)
 
insert 0 14975 A
>> Inserting city A (0,14975)
 
insert 0 14976 A
>> Inserting city A (0,14976)
 
insert 0 14977 A
>> Inserting city A (0,14977)
 
insert 0 14978 A
>> Inserting city A (0,14978)
 
insert 0 14979 A
>> Inserting city A (0,14979)
 
insert 0 14980 A
>> Inserting city A (0,14980)
 
insert 0 14981 A
>> Inserting city A (0,14981)
 
insert 0 14982 A
>> Inserting city A (0,14982)
 
insert 0 14983 A
>> Inserting city A (0,14983)
 
insert 0 14984 A
>> Inserting city A (0,14984)
 
insert 0 14985 A
>> Inserting city A (0,14985)
 
insert 0 14986 A
>> Inserting city A (0,14986)
 
insert 0 14987 A
>> Inserting city A (0,14987)
 
insert 0 14988 A
>> Inserting city A (0,14988)
 
insert 0 14989 A
>> Inserting city A (0,14989)
 
insert 0 14990 A
>> Inserting city A (0,14990)
 
insert 0 14991 A
>> Inserting city A (0,14991)
 
insert 0 14992 A
>> Inserting city A (0,14992)
 
insert 0 14993 A
>> Inserting city A (0,14993)
 
insert 0 14994 A
>> Inserting city A (0,14994)
 
insert 0 14995 A
>> Inserting city A (0,14995)
 
insert 0 14996 A
>> Inserting city A (0,14996)
 
insert 0 14997 A
>> Inserting city A (0,14997)
 
insert 0 14998 A
>> Inserting city A (0,14998)
 
insert 0 14999 A
>> Inserting city A (0,14999)
 
insert 0 15000 A
>> Inserting city A (0,15000)
 
insert 0 15001 A
>> Inserting city A (0,15001)
 
insert 0 15002 A
>> Inserting city A (0,15002)
 
insert 0 15003 A
>> Inserting city A (0,15003)
 
insert 0 15004 A
>> Inserting city A (0,15004)
 
insert 0 15005 A
>> Inserting city A (0,15005)
 
insert 0 15006 A
>> Inserting city A (0,15006)
 
insert 0 15007 A
>> Inserting city A (0,15007)
 
insert 0 15008 A
>> Inserting city A (0,15008)
 
insert 0 15009 A
>> Inserting city A (0,15009)
 
insert 0 15010 A
>> Inserting city A (0,15010)
 
insert 0 15011 A
>> Inserting city A (0,15011)
 
insert 0 15012 A
>> Inserting city A (0,15012)
 
insert 0 15013 A
>> Inserting city A (0,15013)
 
insert 0 15014 A
>> Inserting city A (0,15014)
 
insert 0 15015 A
>> Inserting city A (0,15015)
 
insert 0 15016 A
>> Inserting city A (0,15016)
 
insert 0 15017 A
>> Inserting city A (0,15017)
 
insert 0 15018 A
>> Inserting city A (0,15018)
 
insert 0 15019 A
>> Inserting city A (0,15019)
 
insert 0 15020 A
>> Inserting city A (0,15020)
 
insert 0 15021 A
>> Inserting city A (0,15021)
 
insert 0 15022 A
>> Inserting city A (0,15022)
 
insert 0 15023 A
>> Inserting city A (0,15023)
 
insert 0 15024 A
>> Inserting city A (0,15024)
 
insert 0 15025 A
>> Inserting city A (0,15025)
 
insert 0 15026 A
>> Inserting city A (0,15026)
 
insert 0 15027 A
>> Inserting city A (0,15027)
 
insert 0 15028 A
>> Inserting city A (0,15028)
 
insert 0 15029 A
>> Inserting city A (0,15029)
 
insert 0 15030 A
>> Inserting city A (0,15030)
 
insert 0 15031 A
>> Inserting city A (0,15031)
 
insert 0 15032 A
>> Inserting city A (0,15032)
 
insert 0 15033 A
>> Inserting city A (0,15033)
 
insert 0 15034 A
>> Inserting city A (0,15034)
 
insert 0 15035 A
>> Inserting city A (0,15035)
 
insert 0 15036 A
>> Inserting city A (0,15036)
 
insert 0 15037 A
>> Inserting city A (0,15037)
 
insert 0 15038 A
>> Inserting city A (0,15038)
 
insert 0 15039 A
>> Inserting city A (0,15039)
 
insert 0 15040 A
>> Inserting city A (0,15040)
 
insert 0 15041 A
>> Inserting city A (0,15041)
 
insert 0 15042 A
>> Inserting city A (0,15042)
 
insert 0 15043 A
>> Inserting city A (0,15043)
 
insert 0 15044 A
>> Inserting city A (0,15044)
 
insert 0 15045 A
>> Inserting city A (0,15045)
 
insert 0 15046 A
>> Inserting city A (0,15046)
 
insert 0 15047 A
>> Inserting city A (0,15047)
 
insert 0 15048 A
>> Inserting city A (0,15048)
 
insert 0 15049 A
>> Inserting city A (0,15049)
 
insert 0 15050 A
>> Inserting city A (0,15050)
 
insert 0 15051 A
>> Inserting city A (0,15051)
 
insert 0 15052 A
>> Inserting city A (0,15052)
 
insert 0 15053 A
>> Inserting city A (0,15053)
 
insert 0 15054 A
>> Inserting city A (0,15054)
 
insert 0 15055 A
>> Inserting city A (0,15055)
 
insert 0 15056 A
>> Inserting city A (0,15056)
 
insert 0 15057 A
>> Inserting city A (0,15057)
 
insert 0 15058 A
>> Inserting city A (0,15058)
 
insert 0 15059 A
>> Inserting city A (0,15059)
 
insert 0 15060 A
>> Inserting city A (0,15060)
 
insert 0 15061 A
>> Inserting city A (0,15061)
 
insert 0 15062 A
>> Inserting city A (0,15062)
 
insert 0 15063 A
>> Inserting city A (0,15063)
 
insert 0 15064 A
>> Inserting city A (0,15064)
 
insert 0 15065 A
>> Inserting city A (0,15065)
 
insert 0 15066 A
>> Inserting city A (0,15066)
 
insert 0 15067 A
>> Inserting city A (0,15067)
 
insert 0 15068 A
>> Inserting city A (0,15068)
 
insert 0 15069 A
>> Inserting city A (0,15069)
 
insert 0 15070 A
>> Inserting city A (0,15070)
 
insert 0 15071 A
>> Inserting city A (0,15071)
 
insert 0 15072 A
>> Inserting city A (0,15072)
 
insert 0 15073 A
>> Inserting city A (0,15073)
 
insert 0 15074 A
>> Inserting city A (0,15074)
 
insert 0 15075 A
>> Inserting city A (0,15075)
 
insert 0 15076 A
>> Inserting city A (0,15076)
 
insert 0 15077 A
>> Inserting city A (0,15077)
 
insert 0 15078 A
>> Inserting city A (0,15078)
 
insert 0 15079 A
>> Inserting city A (0,15079)
 
insert 0 15080 A
>> Inserting city A (0,15080)
 
insert 0 15081 A
>> Inserting city A (0,15081)
 
insert 0 15082 A
>> Inserting city A (0,15082)
 
insert 0 15083 A
>> Inserting city A (0,15083)
 
insert 0 15084 A
>> Inserting city A (0,15084)
 
insert 0 15085 A
>> Inserting city A (0,15085)
 
insert 0 15086 A
>> Inserting city A (0,15086)
 
insert 0 15087 A
>> Inserting city A (0,15087)
 
insert 0 15088 A
>> Inserting city A (0,15088)
 
insert 0 15089 A
>> Inserting city A (0,15089)
 
insert 0 15090 A
>> Inserting city A (0,15090)
 
insert 0 15091 A
>> Inserting city A (0,15091)
 
insert 0 15092 A
>> Inserting city A (0,15092)
 
insert 0 15093 A
>> Inserting city A (0,15093)
 
insert 0 15094 A
>> Inserting city A (0,15094)
 
insert 0 15095 A
>> Inserting city A (0,15095)
 
insert 0 15096 A
>> Inserting city A (0,15096)
 
insert 0 15097 A
>> Inserting city A (0,15097)
 
insert 0 15098 A
>> Inserting city A (0,15098)
 
insert 0 15099 A
>> Inserting city A (0,15099)
 
insert 0 15100 A
>> Inserting city A (0,15100)
 
insert 0 15101 A
>> Inserting city A (0,15101)
 
insert 0 15102 A
>> Inserting city A (0,15102)
 
insert 0 15103 A
>> Inserting city A (0,15103)
 
insert 0 15104 A
>> Inserting city A (0,15104)
 
insert 0 15105 A
>> Inserting city A (0,15105)
 
insert 0 15106 A
>> Inserting city A (0,15106)
 
insert 0 15107 A
>> Inserting city A (0,15107)
 
insert 0 15108 A
>> Inserting city A (0,15108)
 
insert 0 15109 A
>> Inserting city A (0,15109)
 
insert 0 15110 A
>> Inserting city A (0,15110)
 
insert 0 15111 A
>> Inserting city A (0,15111)
 
insert 0 15112 A
>> Inserting city A (0,15112)
 
insert 0 15113 A
>> Inserting city A (0,15113)
 
insert 0 15114 A
>> Inserting city A (0,15114)
 
insert 0 15115 A
>> Inserting city A (0,15115)
 
insert 0 15116 A
>> Inserting city A (0,15116)
 
insert 0 15117 A
>> Inserting city A (0,15117)
 
insert 0 15118 A
>> Inserting city A (0,15118)
 
insert 0 15119 A
>> Inserting city A (0,15119)
 
insert 0 15120 A
>> Inserting city A (0,15120)
 
insert 0 15121 A
>> Inserting city A (0,15121)
 
insert 0 15122 A
>> Inserting city A (0,15122)
 
insert 0 15123 A
>> Inserting city A (0,15123)
 
insert 0 15124 A
>> Inserting city A (0,15124)
 
insert 0 15125 A
>> Inserting city A (0,15125)
 
insert 0 15126 A
>> Inserting city A (0,15126)
 
insert 0 15127 A
>> Inserting city A (0,15127)
 
insert 0 15128 A
>> Inserting city A (0,15128)
 
insert 0 15129 A
>> Inserting city A (0,15129)
 
insert 0 15130 A
>> Inserting city A (0,15130)
 
insert 0 15131 A
>> Inserting city A (0,15131)
 
insert 0 15132 A
>> Inserting city A (0,15132)
 
insert 0 15133 A
>> Inserting city A (0,15133)
 
insert 0 15134 A
>> Inserting city A (0,15134)
 
insert 0 15135 A
>> Inserting city A (0,15135)
 
insert 0 15136 A
>> Inserting city A (0,15136)
 
insert 0 15137 A
>> Inserting city A (0,15137)
 
insert 0 15138 A
>> Inserting city A (0,15138)
 
insert 0 15139 A
>> Inserting city A (0,15139)
 
insert 0 15140 A
>> Inserting city A (0,15140)
 
insert 0 15141 A
>> Inserting city A (0,15141)
 
insert 0 15142 A
>> Inserting city A (0,15142)
 
insert 0 15143 A
>> Inserting city A (0,15143)
 
insert 0 15144 A
>> Inserting city A (0,15144)
 
insert 0 15145 A
>> Inserting city A (0,15145)
 
insert 0 15146 A
>> Inserting city A (0,15146)
 
insert 0 15147 A
>> Inserting city A (0,15147)
 
insert 0 15148 A
>> Inserting city A (0,15148)
 
insert 0 15149 A
>> Inserting city A (0,15149)
 
insert 0 15150 A
>> Inserting city A (0,15150)
 
insert 0 15151 A
>> Inserting city A (0,15151)
 
insert 0 15152 A
>> Inserting city A (0,15152)
 
insert 0 15153 A
>> Inserting city A (0,15153)
 
insert 0 15154 A
>> Inserting city A (0,15154)
 
insert 0 15155 A
>> Inserting city A (0,15155)
 
insert 0 15156 A
>> Inserting city A (0,15156)
 
insert 0 15157 A
>> Inserting city A (0,15157)
 
insert 0 15158 A
>> Inserting city A (0,15158)
 
insert 0 15159 A
>> Inserting city A (0,15159)
 
insert 0 15160 A
>> Inserting city A (0,15160)
 
insert 0 15161 A
>> Inserting city A (0,15161)
 
insert 0 15162 A
>> Inserting city A (0,15162)
 
insert 0 15163 A
>> Inserting city A (0,15163)
 
insert 0 15164 A
>> Inserting city A (0,15164)
 
insert 0 15165 A
>> Inserting city A (0,15165)
 
insert 0 15166 A
>> Inserting city A (0,15166)
 
insert 0 15167 A
>> Inserting city A (0,15167)
 
insert 0 15168 A
>> Inserting city A (0,15168)
 
insert 0 15169 A
>> Inserting city A (0,15169)
 
insert 0 15170 A
>> Inserting city A (0,15170)
 
insert 0 15171 A
>> Inserting city A (0,15171)
 
insert 0 15172 A
>> Inserting city A (0,15172)
 
insert 0 15173 A
>> Inserting city A (0,15173)
 
insert 0 15174 A
>> Inserting city A (0,15174)
 
insert 0 15175 A
>> Inserting city A (0,15175)
 
insert 0 15176 A
>> Inserting city A (0,15176)
 
insert 0 15177 A
>> Inserting city A (0,15177)
 
insert 0 15178 A
>> Inserting city A (0,15178)
 
insert 0 15179 A
>> Inserting city A (0,15179)
 
insert 0 15180 A
>> Inserting city A (0,15180)
 
insert 0 15181 A
>> Inserting city A (0,15181)
 
insert 0 15182 A
>> Inserting city A (0,15182)
 
insert 0 15183 A
>> Inserting city A (0,15183)
 
insert 0 15184 A
>> Inserting city A (0,15184)
 
insert 0 15185 A
>> Inserting city A (0,15185)
 
insert 0 15186 A
>> Inserting city A (0,15186)
 
insert 0 15187 A
>> Inserting city A (0,15187)
 
insert 0 15188 A
>> Inserting city A (0,15188)
 
insert 0 15189 A
>> Inserting city A (0,15189)
 
insert 0 15190 A
>> Inserting city A (0,15190)
 
insert 0 15191 A
>> Inserting city A (0,15191)
 
insert 0 15192 A
>> Inserting city A (0,15192)
 
insert 0 15193 A
>> Inserting city A (0,15193)
 
insert 0 15194 A
>> Inserting city A (0,15194)
 
insert 0 15195 A
>> Inserting city A (0,15195)
 
insert 0 15196 A
>> Inserting city A (0,15196)
 
insert 0 15197 A
>> Inserting city A (0,15197)
 
insert 0 15198 A
>> Inserting city A (0,15198)
 
insert 0 15199 A
>> Inserting city A (0,15199)
 
insert 0 15200 A
>> Inserting city A (0,15200)
 
insert 0 15201 A
>> Inserting city A (0,15201)
 
insert 0 15202 A
>> Inserting city A (0,15202)
 
insert 0 15203 A
>> Inserting city A (0,15203)
 
insert 0 15204 A
>> Inserting city A (0,15204)
 
insert 0 15205 A
>> Inserting city A (0,15205)
 
insert 0 15206 A
>> Inserting city A (0,15206)
 
insert 0 15207 A
>> Inserting city A (0,15207)
 
insert 0 15208 A
>> Inserting city A (0,15208)
 
insert 0 15209 A
>> Inserting city A (0,15209)
 
insert 0 15210 A
>> Inserting city A (0,15210)
 
insert 0 15211 A
>> Inserting city A (0,15211)
 
insert 0 15212 A
>> Inserting city A (0,15212)
 
insert 0 15213 A
>> Inserting city A (0,15213)
 
insert 0 15214 A
>> Inserting city A (0,15214)
 
insert 0 15215 A
>> Inserting city A (0,15215)
 
insert 0 15216 A
>> Inserting city A (0,15216)
 
insert 0 15217 A
>> Inserting city A (0,15217)
 
insert 0 15218 A
>> Inserting city A (0,15218)
 
insert 0 15219 A
>> Inserting city A (0,15219)
 
insert 0 15220 A
>> Inserting city A (0,15220)
 
insert 0 15221 A
>> Inserting city A (0,15221)
 
insert 0 15222 A
>> Inserting city A (0,15222)
 
insert 0 15223 A
>> Inserting city A (0,15223)
 
insert 0 15224 A
>> Inserting city A (0,15224)
 
insert 0 15225 A
>> Inserting city A (0,15225)
 
insert 0 15226 A
>> Inserting city A (0,15226)
 
insert 0 15227 A
>> Inserting city A (0,15227)
 
insert 0 15228 A
>> Inserting city A (0,15228)
 
insert 0 15229 A
>> Inserting city A (0,15229)
 
insert 0 15230 A
>> Inserting city A (0,15230)
 
insert 0 15231 A
>> Inserting city A (0,15231)
 
insert 0 15232 A
>> Inserting city A (0,15232)
 
insert 0 15233 A
>> Inserting city A (0,15233)
 
insert 0 15234 A
>> Inserting city A (0,15234)
 
insert 0 15235 A
>> Inserting city A (0,15235)
 
insert 0 15236 A
>> Inserting city A (0,15236)
 
insert 0 15237 A
>> Inserting city A (0,15237)
 
insert 0 15238 A
>> Inserting city A (0,15238)
 
insert 0 15239 A
>> Inserting city A (0,15239)
 
insert 0 15240 A
>> Inserting city A (0,15240)
 
insert 0 15241 A
>> Inserting city A (0,15241)
 
insert 0 15242 A
>> Inserting city A (0,15242)
 
insert 0 15243 A
>> Inserting city A (0,15243)
 
insert 0 15244 A
>> Inserting city A (0,15244)
 
insert 0 15245 A
>> Inserting city A (0,15245)
 
insert 0 15246 A
>> Inserting city A (0,15246)
 
insert 0 15247 A
>> Inserting city A (0,15247)
 
insert 0 15248 A
>> Inserting city A (0,15248)
 
insert 0 15249 A
>> Inserting city A (0,15249)
 
insert 0 15250 A
>> Inserting city A (0,15250)
 
insert 0 15251 A
>> Inserting city A (0,15251)
 
insert 0 15252 A
>> Inserting city A (0,15252)
 
insert 0 15253 A
>> Inserting city A (0,15253)
 
insert 0 15254 A
>> Inserting city A (0,15254)
 
insert 0 15255 A
>> Inserting city A (0,15255)
 
insert 0 15256 A
>> Inserting city A (0,15256)
 
insert 0 15257 A
>> Inserting city A (0,15257)
 
insert 0 15258 A
>> Inserting city A (0,15258)
 
insert 0 15259 A
>> Inserting city A (0,15259)
 
insert 0 15260 A
>> Inserting city A (0,15260)
 
insert 0 15261 A
>> Inserting city A (0,15261)
 
insert 0 15262 A
>> Inserting city A (0,15262)
 
insert 0 15263 A
>> Inserting city A (0,15263)
 
insert 0 15264 A
>> Inserting city A (0,15264)
 
insert 0 15265 A
>> Inserting city A (0,15265)
 
insert 0 15266 A
>> Inserting city A (0,15266)
 
insert 0 15267 A
>> Inserting city A (0,15267)
 
insert 0 15268 A
>> Inserting city A (0,15268)
 
insert 0 15269 A
>> Inserting city A (0,15269)
 
insert 0 15270 A
>> Inserting city A (0,15270)
 
insert 0 15271 A
>> Inserting city A (0,15271)
 
insert 0 15272 A
>> Inserting city A (0,15272)
 
insert 0 15273 A
>> Inserting city A (0,15273)
 
insert 0 15274 A
>> Inserting city A (0,15274)
 
insert 0 15275 A
>> Inserting city A (0,15275)
 
insert 0 15276 A
>> Inserting city A (0,15276)
 
insert 0 15277 A
>> Inserting city A (0,15277)
 
insert 0 15278 A
>> Inserting city A (0,15278)
 
insert 0 15279 A
>> Inserting city A (0,15279)
 
insert 0 15280 A
>> Inserting city A (0,15280)
 
insert 0 15281 A
>> Inserting city A (0,15281)
 
insert 0 15282 A
>> Inserting city A (0,15282)
 
insert 0 15283 A
>> Inserting city A (0,15283)
 
insert 0 15284 A
>> Inserting city A (0,15284)
 
insert 0 15285 A
>> Inserting city A (0,15285)
 
insert 0 15286 A
>> Inserting city A (0,15286)
 
insert 0 15287 A
>> Inserting city A (0,15287)
 
insert 0 15288 A
>> Inserting city A (0,15288)
 
insert 0 15289 A
>> Inserting city A (0,15289)
 
insert 0 15290 A
>> Inserting city A (0,15290)
 
insert 0 15291 A
>> Inserting city A (0,15291)
 
insert 0 15292 A
>> Inserting city A (0,15292)
 
insert 0 15293 A
>> Inserting city A (0,15293)
 
insert 0 15294 A
>> Inserting city A (0,15294)
 
insert 0 15295 A
>> Inserting city A (0,15295)
 
insert 0 15296 A
>> Inserting city A (0,15296)
 
insert 0 15297 A
>> Inserting city A (0,15297)
 
insert 0 15298 A
>> Inserting city A (0,15298)
 
insert 0 15299 A
>> Inserting city A (0,15299)
 
insert 0 15300 A
>> Inserting city A (0,15300)
 
insert 0 15301 A
>> Inserting city A (0,15301)
 
insert 0 15302 A
>> Inserting city A (0,15302)
 
insert 0 15303 A
>> Inserting city A (0,15303)
 
insert 0 15304 A
>> Inserting city A (0,15304)
 
insert 0 15305 A
>> Inserting city A (0,15305)
 
insert 0 15306 A
>> Inserting city A (0,15306)
 
insert 0 15307 A
>> Inserting city A (0,15307)
 
insert 0 15308 A
>> Inserting city A (0,15308)
 
insert 0 15309 A
>> Inserting city A (0,15309)
 
insert 0 15310 A
>> Inserting city A (0,15310)
 
insert 0 15311 A
>> Inserting city A (0,15311)
 
insert 0 15312 A
>> Inserting city A (0,15312)
 
insert 0 15313 A
>> Inserting city A (0,15313)
 
insert 0 15314 A
>> Inserting city A (0,15314)
 
insert 0 15315 A
>> Inserting city A (0,15315)
 
insert 0 15316 A
>> Inserting city A (0,15316)
 
insert 0 15317 A
>> Inserting city A (0,15317)
 
insert 0 15318 A
>> Inserting city A (0,15318)
 
insert 0 15319 A
>> Inserting city A (0,15319)
 
insert 0 15320 A
>> Inserting city A (0,15320)
 
insert 0 15321 A
>> Inserting city A (0,15321)
 
insert 0 15322 A
>> Inserting city A (0,15322)
 
insert 0 15323 A
>> Inserting city A (0,15323)
 
insert 0 15324 A
>> Inserting city A (0,15324)
 
insert 0 15325 A
>> Inserting city A (0,15325)
 
insert 0 15326 A
>> Inserting city A (0,15326)
 
insert 0 15327 A
>> Inserting city A (0,15327)
 
insert 0 15328 A
>> Inserting city A (0,15328)
 
insert 0 15329 A
>> Inserting city A (0,15329)
 
insert 0 15330 A
>> Inserting city A (0,15330)
 
insert 0 15331 A
>> Inserting city A (0,15331)
 
insert 0 15332 A
>> Inserting city A (0,15332)
 
insert 0 15333 A
>> Inserting city A (0,15333)
 
insert 0 15334 A
>> Inserting city A (0,15334)
 
insert 0 15335 A
>> Inserting city A (0,15335)
 
insert 0 15336 A
>> Inserting city A (0,15336)
 
insert 0 15337 A
>> Inserting city A (0,15337)
 
insert 0 15338 A
>> Inserting city A (0,15338)
 
insert 0 15339 A
>> Inserting city A (0,15339)
 
insert 0 15340 A
>> Inserting city A (0,15340)
 
insert 0 15341 A
>> Inserting city A (0,15341)
 
insert 0 15342 A
>> Inserting city A (0,15342)
 
insert 0 15343 A
>> Inserting city A (0,15343)
 
insert 0 15344 A
>> Inserting city A (0,15344)
 
insert 0 15345 A
>> Inserting city A (0,15345)
 
insert 0 15346 A
>> Inserting city A (0,15346)
 
insert 0 15347 A
>> Inserting city A (0,15347)
 
insert 0 15348 A
>> Inserting city A (0,15348)
 
insert 0 15349 A
>> Inserting city A (0,15349)
 
insert 0 15350 A
>> Inserting city A (0,15350)
 
insert 0 15351 A
>> Inserting city A (0,15351)
 
insert 0 15352 A
>> Inserting city A (0,15352)
 
insert 0 15353 A
>> Inserting city A (0,15353)
 
insert 0 15354 A
>> Inserting city A (0,15354)
 
insert 0 15355 A
>> Inserting city A (0,15355)
 
insert 0 15356 A
>> Inserting city A (0,15356)
 
insert 0 15357 A
>> Inserting city A (0,15357)
 
insert 0 15358 A
>> Inserting city A (0,15358)
 
insert 0 15359 A
>> Inserting city A (0,15359)
 
insert 0 15360 A
>> Inserting city A (0,15360)
 
insert 0 15361 A
>> Inserting city A (0,15361)
 
insert 0 15362 A
>> Inserting city A (0,15362)
 
insert 0 15363 A
>> Inserting city A (0,15363)
 
insert 0 15364 A
>> Inserting city A (0,15364)
 
insert 0 15365 A
>> Inserting city A (0,15365)
 
insert 0 15366 A
>> Inserting city A (0,15366)
 
insert 0 15367 A
>> Inserting city A (0,15367)
 
insert 0 15368 A
>> Inserting city A (0,15368)
 
insert 0 15369 A
>> Inserting city A (0,15369)
 
insert 0 15370 A
>> Inserting city A (0,15370)
 
insert 0 15371 A
>> Inserting city A (0,15371)
 
insert 0 15372 A
>> Inserting city A (0,15372)
 
insert 0 15373 A
>> Inserting city A (0,15373)
 
insert 0 15374 A
>> Inserting city A (0,15374)
 
insert 0 15375 A
>> Inserting city A (0,15375)
 
insert 0 15376 A
>> Inserting city A (0,15376)
 
insert 0 15377 A
>> Inserting city A (0,15377)
 
insert 0 15378 A
>> Inserting city A (0,15378)
 
insert 0 15379 A
>> Inserting city A (0,15379)
 
insert 0 15380 A
>> Inserting city A (0,15380)
 
insert 0 15381 A
>> Inserting city A (0,15381)
 
insert 0 15382 A
>> Inserting city A (0,15382)
 
insert 0 15383 A
>> Inserting city A (0,15383)
 
insert 0 15384 A
>> Inserting city A (0,15384)
 
insert 0 15385 A
>> Inserting city A (0,15385)
 
insert 0 15386 A
>> Inserting city A (0,15386)
 
insert 0 15387 A
>> Inserting city A (0,15387)
 
insert 0 15388 A
>> Inserting city A (0,15388)
 
insert 0 15389 A
>> Inserting city A (0,15389)
 
insert 0 15390 A
>> Inserting city A (0,15390)
 
insert 0 15391 A
>> Inserting city A (0,15391)
 
insert 0 15392 A
>> Inserting city A (0,15392)
 
insert 0 15393 A
>> Inserting city A (0,15393)
 
insert 0 15394 A
>> Inserting city A (0,15394)
 
insert 0 15395 A
>> Inserting city A (0,15395)
 
insert 0 15396 A
>> Inserting city A (0,15396)
 
insert 0 15397 A
>> Inserting city A (0,15397)
 
insert 0 15398 A
>> Inserting city A (0,15398)
 
insert 0 15399 A
>> Inserting city A (0,15399)
 
insert 0 15400 A
>> Inserting city A (0,15400)
 
insert 0 15401 A
>> Inserting city A (0,15401)
 
insert 0 15402 A
>> Inserting city A (0,15402)
 
insert 0 15403 A
>> Inserting city A (0,15403)
 
insert 0 15404 A
>> Inserting city A (0,15404)
 
insert 0 15405 A
>> Inserting city A (0,15405)
 
insert 0 15406 A
>> Inserting city A (0,15406)
 
insert 0 15407 A
>> Inserting city A (0,15407)
 
insert 0 15408 A
>> Inserting city A (0,15408)
 
insert 0 15409 A
>> Inserting city A (0,15409)
 
insert 0 15410 A
>> Inserting city A (0,15410)
 
insert 0 15411 A
>> Inserting city A (0,15411)
 
insert 0 15412 A
>> Inserting city A (0,15412)
 
insert 0 15413 A
>> Inserting city A (0,15413)
 
insert 0 15414 A
>> Inserting city A (0,15414)
 
insert 0 15415 A
>> Inserting city A (0,15415)
 
insert 0 15416 A
>> Inserting city A (0,15416)
 
insert 0 15417 A
>> Inserting city A (0,15417)
 
insert 0 15418 A
>> Inserting city A (0,15418)
 
insert 0 15419 A
>> Inserting city A (0,15419)
 
insert 0 15420 A
>> Inserting city A (0,15420)
 
insert 0 15421 A
>> Inserting city A (0,15421)
 
insert 0 15422 A
>> Inserting city A (0,15422)
 
insert 0 15423 A
>> Inserting city A (0,15423)
 
insert 0 15424 A
>> Inserting city A (0,15424)
 
insert 0 15425 A
>> Inserting city A (0,15425)
 
insert 0 15426 A
>> Inserting city A (0,15426)
 
insert 0 15427 A
>> Inserting city A (0,15427)
 
insert 0 15428 A
>> Inserting city A (0,15428)
 
insert 0 15429 A
>> Inserting city A (0,15429)
 
insert 0 15430 A
>> Inserting city A (0,15430)
 
insert 0 15431 A
>> Inserting city A (0,15431)
 
insert 0 15432 A
>> Inserting city A (0,15432)
 
insert 0 15433 A
>> Inserting city A (0,15433)
 
insert 0 15434 A
>> Inserting city A (0,15434)
 
insert 0 15435 A
>> Inserting city A (0,15435)
 
insert 0 15436 A
>> Inserting city A (0,15436)
 
insert 0 15437 A
>> Inserting city A (0,15437)
 
insert 0 15438 A
>> Inserting city A (0,15438)
 
insert 0 15439 A
>> Inserting city A (0,15439)
 
insert 0 15440 A
>> Inserting city A (0,15440)
 
insert 0 15441 A
>> Inserting city A (0,15441)
 
insert 0 15442 A
>> Inserting city A (0,15442)
 
insert 0 15443 A
>> Inserting city A (0,15443)
 
insert 0 15444 A
>> Inserting city A (0,15444)
 
insert 0 15445 A
>> Inserting city A (0,15445)
 
insert 0 15446 A
>> Inserting city A (0,15446)
 
insert 0 15447 A
>> Inserting city A (0,15447)
 
insert 0 15448 A
>> Inserting city A (0,15448)
 
insert 0 15449 A
>> Inserting city A (0,15449)
 
insert 0 15450 A
>> Inserting city A (0,15450)
 
insert 0 15451 A
>> Inserting city A (0,15451)
 
insert 0 15452 A
>> Inserting city A (0,15452)
 
insert 0 15453 A
>> Inserting city A (0,15453)
 
insert 0 15454 A
>> Inserting city A (0,15454)
 
insert 0 15455 A
>> Inserting city A (0,15455)
 
insert 0 15456 A
>> Inserting city A (0,15456)
 
insert 0 15457 A
>> Inserting city A (0,15457)
 
insert 0 15458 A
>> Inserting city A (0,15458)
 
insert 0 15459 A
>> Inserting city A (0,15459)
 
insert 0 15460 A
>> Inserting city A (0,15460)
 
insert 0 15461 A
>> Inserting city A (0,15461)
 
insert 0 15462 A
>> Inserting city A (0,15462)
 
insert 0 15463 A
>> Inserting city A (0,15463)
 
insert 0 15464 A
>> Inserting city A (0,15464)
 
insert 0 15465 A
>> Inserting city A (0,15465)
 
insert 0 15466 A
>> Inserting city A (0,15466)
 
insert 0 15467 A
>> Inserting city A (0,15467)
 
insert 0 15468 A
>> Inserting city A (0,15468)
 
insert 0 15469 A
>> Inserting city A (0,15469)
 
insert 0 15470 A
>> Inserting city A (0,15470)
 
insert 0 15471 A
>> Inserting city A (0,15471)
 
insert 0 15472 A
>> Inserting city A (0,15472)
 
insert 0 15473 A
>> Inserting city A (0,15473)
 
insert 0 15474 A
>> Inserting city A (0,15474)
 
insert 0 15475 A
>> Inserting city A (0,15475)
 
insert 0 15476 A
>> Inserting city A (0,15476)
 
insert 0 15477 A
>> Inserting city A (0,15477)
 
insert 0 15478 A
>> Inserting city A (0,15478)
 
insert 0 15479 A
>> Inserting city A (0,15479)
 
insert 0 15480 A
>> Inserting city A (0,15480)
 
insert 0 15481 A
>> Inserting city A (0,15481)
 
insert 0 15482 A
>> Inserting city A (0,15482)
 
insert 0 15483 A
>> Inserting city A (0,15483)
 
insert 0 15484 A
>> Inserting city A (0,15484)
 
insert 0 15485 A
>> Inserting city A (0,15485)
 
insert 0 15486 A
>> Inserting city A (0,15486)
 
insert 0 15487 A
>> Inserting city A (0,15487)
 
insert 0 15488 A
>> Inserting city A (0,15488)
 
insert 0 15489 A
>> Inserting city A (0,15489)
 
insert 0 15490 A
>> Inserting city A (0,15490)
 
insert 0 15491 A
>> Inserting city A (0,15491)
 
insert 0 15492 A
>> Inserting city A (0,15492)
 
insert 0 15493 A
>> Inserting city A (0,15493)
 
insert 0 15494 A
>> Inserting city A (0,15494)
 
insert 0 15495 A
>> Inserting city A (0,15495)
 
insert 0 15496 A
>> Inserting city A (0,15496)
 
insert 0 15497 A
>> Inserting city A (0,15497)
 
insert 0 15498 A
>> Inserting city A (0,15498)
 
insert 0 15499 A
>> Inserting city A (0,15499)
 
insert 0 15500 A
>> Inserting city A (0,15500)
 
insert 0 15501 A
>> Inserting city A (0,15501)
 
insert 0 15502 A
>> Inserting city A (0,15502)
 
insert 0 15503 A
>> Inserting city A (0,15503)
 
insert 0 15504 A
>> Inserting city A (0,15504)
 
insert 0 15505 A
>> Inserting city A (0,15505)
 
insert 0 15506 A
>> Inserting city A (0,15506)
 
insert 0 15507 A
>> Inserting city A (0,15507)
 
insert 0 15508 A
>> Inserting city A (0,15508)
 
insert 0 15509 A
>> Inserting city A (0,15509)
 
insert 0 15510 A
>> Inserting city A (0,15510)
 
insert 0 15511 A
>> Inserting city A (0,15511)
 
insert 0 15512 A
>> Inserting city A (0,15512)
 
insert 0 15513 A
>> Inserting city A (0,15513)
 
insert 0 15514 A
>> Inserting city A (0,15514)
 
insert 0 15515 A
>> Inserting city A (0,15515)
 
insert 0 15516 A
>> Inserting city A (0,15516)
 
insert 0 15517 A
>> Inserting city A (0,15517)
 
insert 0 15518 A
>> Inserting city A (0,15518)
 
insert 0 15519 A
>> Inserting city A (0,15519)
 
insert 0 15520 A
>> Inserting city A (0,15520)
 
insert 0 15521 A
>> Inserting city A (0,15521)
 
insert 0 15522 A
>> Inserting city A (0,15522)
 
insert 0 15523 A
>> Inserting city A (0,15523)
 
insert 0 15524 A
>> Inserting city A (0,15524)
 
insert 0 15525 A
>> Inserting city A (0,15525)
 
insert 0 15526 A
>> Inserting city A (0,15526)
 
insert 0 15527 A
>> Inserting city A (0,15527)
 
insert 0 15528 A
>> Inserting city A (0,15528)
 
insert 0 15529 A
>> Inserting city A (0,15529)
 
insert 0 15530 A
>> Inserting city A (0,15530)
 
insert 0 15531 A
>> Inserting city A (0,15531)
 
insert 0 15532 A
>> Inserting city A (0,15532)
 
insert 0 15533 A
>> Inserting city A (0,15533)
 
insert 0 15534 A
>> Inserting city A (0,15534)
 
insert 0 15535 A
>> Inserting city A (0,15535)
 
insert 0 15536 A
>> Inserting city A (0,15536)
 
insert 0 15537 A
>> Inserting city A (0,15537)
 
insert 0 15538 A
>> Inserting city A (0,15538)
 
insert 0 15539 A
>> Inserting city A (0,15539)
 
insert 0 15540 A
>> Inserting city A (0,15540)
 
insert 0 15541 A
>> Inserting city A (0,15541)
 
insert 0 15542 A
>> Inserting city A (0,15542)
 
insert 0 15543 A
>> Inserting city A (0,15543)
 
insert 0 15544 A
>> Inserting city A (0,15544)
 
insert 0 15545 A
>> Inserting city A (0,15545)
 
insert 0 15546 A
>> Inserting city A (0,15546)
 
insert 0 15547 A
>> Inserting city A (0,15547)
 
insert 0 15548 A
>> Inserting city A (0,15548)
 
insert 0 15549 A
>> Inserting city A (0,15549)
 
insert 0 15550 A
>> Inserting city A (0,15550)
 
insert 0 15551 A
>> Inserting city A (0,15551)
 
insert 0 15552 A
>> Inserting city A (0,15552)
 
insert 0 15553 A
>> Inserting city A (0,15553)
 
insert 0 15554 A
>> Inserting city A (0,15554)
 
insert 0 15555 A
>> Inserting city A (0,15555)
 
insert 0 15556 A
>> Inserting city A (0,15556)
 
insert 0 15557 A
>> Inserting city A (0,15557)
 
insert 0 15558 A
>> Inserting city A (0,15558)
 
insert 0 15559 A
>> Inserting city A (0,15559)
 
insert 0 15560 A
>> Inserting city A (0,15560)
 
insert 0 15561 A
>> Inserting city A (0,15561)
 
insert 0 15562 A
>> Inserting city A (0,15562)
 
insert 0 15563 A
>> Inserting city A (0,15563)
 
insert 0 15564 A
>> Inserting city A (0,15564)
 
insert 0 15565 A
>> Inserting city A (0,15565)
 
insert 0 15566 A
>> Inserting city A (0,15566)
 
insert 0 15567 A
>> Inserting city A (0,15567)
 
insert 0 15568 A
>> Inserting city A (0,15568)
 
insert 0 15569 A
>> Inserting city A (0,15569)
 
insert 0 15570 A
>> Inserting city A (0,15570)
 
insert 0 15571 A
>> Inserting city A (0,15571)
 
insert 0 15572 A
>> Inserting city A (0,15572)
 
insert 0 15573 A
>> Inserting city A (0,15573)
 
insert 0 15574 A
>> Inserting city A (0,15574)
 
insert 0 15575 A
>> Inserting city A (0,15575)
 
insert 0 15576 A
>> Inserting city A (0,15576)
 
insert 0 15577 A
>> Inserting city A (0,15577)
 
insert 0 15578 A
>> Inserting city A (0,15578)
 
insert 0 15579 A
>> Inserting city A (0,15579)
 
insert 0 15580 A
>> Inserting city A (0,15580)
 
insert 0 15581 A
>> Inserting city A (0,15581)
 
insert 0 15582 A
>> Inserting city A (0,15582)
 
insert 0 15583 A
>> Inserting city A (0,15583)
 
insert 0 15584 A
>> Inserting city A (0,15584)
 
insert 0 15585 A
>> Inserting city A (0,15585)
 
insert 0 15586 A
>> Inserting city A (0,15586)
 
insert 0 15587 A
>> Inserting city A (0,15587)
 
insert 0 15588 A
>> Inserting city A (0,15588)
 
insert 0 15589 A
>> Inserting city A (0,15589)
 
insert 0 15590 A
>> Inserting city A (0,15590)
 
insert 0 15591 A
>> Inserting city A (0,15591)
 
insert 0 15592 A
>> Inserting city A (0,15592)
 
insert 0 15593 A
>> Inserting city A (0,15593)
 
insert 0 15594 A
>> Inserting city A (0,15594)
 
insert 0 15595 A
>> Inserting city A (0,15595)
 
insert 0 15596 A
>> Inserting city A (0,15596)
 
insert 0 15597 A
>> Inserting city A (0,15597)
 
insert 0 15598 A
>> Inserting city A (0,15598)
 
insert 0 15599 A
>> Inserting city A (0,15599)
 
insert 0 15600 A
>> Inserting city A (0,15600)
 
insert 0 15601 A
>> Inserting city A (0,15601)
 
insert 0 15602 A
>> Inserting city A (0,15602)
 
insert 0 15603 A
>> Inserting city A (0,15603)
 
insert 0 15604 A
>> Inserting city A (0,15604)
 
insert 0 15605 A
>> Inserting city A (0,15605)
 
insert 0 15606 A
>> Inserting city A (0,15606)
 
insert 0 15607 A
>> Inserting city A (0,15607)
 
insert 0 15608 A
>> Inserting city A (0,15608)
 
insert 0 15609 A
>> Inserting city A (0,15609)
 
insert 0 15610 A
>> Inserting city A (0,15610)
 
insert 0 15611 A
>> Inserting city A (0,15611)
 
insert 0 15612 A
>> Inserting city A (0,15612)
 
insert 0 15613 A
>> Inserting city A (0,15613)
 
insert 0 15614 A
>> Inserting city A (0,15614)
 
insert 0 15615 A
>> Inserting city A (0,15615)
 
insert 0 15616 A
>> Inserting city A (0,15616)
 
insert 0 15617 A
>> Inserting city A (0,15617)
 
insert 0 15618 A
>> Inserting city A (0,15618)
 
insert 0 15619 A
>> Inserting city A (0,15619)
 
insert 0 15620 A
>> Inserting city A (0,15620)
 
insert 0 15621 A
>> Inserting city A (0,15621)
 
insert 0 15622 A
>> Inserting city A (0,15622)
 
insert 0 15623 A
>> Inserting city A (0,15623)
 
insert 0 15624 A
>> Inserting city A (0,15624)
 
insert 0 15625 A
>> Inserting city A (0,15625)
 
insert 0 15626 A
>> Inserting city A (0,15626)
 
insert 0 15627 A
>> Inserting city A (0,15627)
 
insert 0 15628 A
>> Inserting city A (0,15628)
 
insert 0 15629 A
>> Inserting city A (0,15629)
 
insert 0 15630 A
>> Inserting city A (0,15630)
 
insert 0 15631 A
>> Inserting city A (0,15631)
 
insert 0 15632 A
>> Inserting city A (0,15632)
 
insert 0 15633 A
>> Inserting city A (0,15633)
 
insert 0 15634 A
>> Inserting city A (0,15634)
 
insert 0 15635 A
>> Inserting city A (0,15635)
 
insert 0 15636 A
>> Inserting city A (0,15636)
 
insert 0 15637 A
>> Inserting city A (0,15637)
 
insert 0 15638 A
>> Inserting city A (0,15638)
 
insert 0 15639 A
>> Inserting city A (0,15639)
 
insert 0 15640 A
>> Inserting city A (0,15640)
 
insert 0 15641 A
>> Inserting city A (0,15641)
 
insert 0 15642 A
>> Inserting city A (0,15642)
 
insert 0 15643 A
>> Inserting city A (0,15643)
 
insert 0 15644 A
>> Inserting city A (0,15644)
 
insert 0 15645 A
>> Inserting city A (0,15645)
 
insert 0 15646 A
>> Inserting city A (0,15646)
 
insert 0 15647 A
>> Inserting city A (0,15647)
 
insert 0 15648 A
>> Inserting city A (0,15648)
 
insert 0 15649 A
>> Inserting city A (0,15649)
 
insert 0 15650 A
>> Inserting city A (0,15650)
 
insert 0 15651 A
>> Inserting city A (0,15651)
 
insert 0 15652 A
>> Inserting city A (0,15652)
 
insert 0 15653 A
>> Inserting city A (0,15653)
 
insert 0 15654 A
>> Inserting city A (0,15654)
 
insert 0 15655 A
>> Inserting city A (0,15655)
 
insert 0 15656 A
>> Inserting city A (0,15656)
 
insert 0 15657 A
>> Inserting city A (0,15657)
 
insert 0 15658 A
>> Inserting city A (0,15658)
 
insert 0 15659 A
>> Inserting city A (0,15659)
 
insert 0 15660 A
>> Inserting city A (0,15660)
 
insert 0 15661 A
>> Inserting city A (0,15661)
 
insert 0 15662 A
>> Inserting city A (0,15662)
 
insert 0 15663 A
>> Inserting city A (0,15663)
 
insert 0 15664 A
>> Inserting city A (0,15664)
 
insert 0 15665 A
>> Inserting city A (0,15665)
 
insert 0 15666 A
>> Inserting city A (0,15666)
 
insert 0 15667 A
>> Inserting city A (0,15667)
 
insert 0 15668 A
>> Inserting city A (0,15668)
 
insert 0 15669 A
>> Inserting city A (0,15669)
 
insert 0 15670 A
>> Inserting city A (0,15670)
 
insert 0 15671 A
>> Inserting city A (0,15671)
 
insert 0 15672 A
>> Inserting city A (0,15672)
 
insert 0 15673 A
>> Inserting city A (0,15673)
 
insert 0 15674 A
>> Inserting city A (0,15674)
 
insert 0 15675 A
>> Inserting city A (0,15675)
 
insert 0 15676 A
>> Inserting city A (0,15676)
 
insert 0 15677 A
>> Inserting city A (0,15677)
 
insert 0 15678 A
>> Inserting city A (0,15678)
 
insert 0 15679 A
>> Inserting city A (0,15679)
 
insert 0 15680 A
>> Inserting city A (0,15680)
 
insert 0 15681 A
>> Inserting city A (0,15681)
 
insert 0 15682 A
>> Inserting city A (0,15682)
 
insert 0 15683 A
>> Inserting city A (0,15683)
 
insert 0 15684 A
>> Inserting city A (0,15684)
 
insert 0 15685 A
>> Inserting city A (0,15685)
 
insert 0 15686 A
>> Inserting city A (0,15686)
 
insert 0 15687 A
>> Inserting city A (0,15687)
 
insert 0 15688 A
>> Inserting city A (0,15688)
 
insert 0 15689 A
>> Inserting city A (0,15689)
 
insert 0 15690 A
>> Inserting city A (0,15690)
 
insert 0 15691 A
>> Inserting city A (0,15691)
 
insert 0 15692 A
>> Inserting city A (0,15692)
 
insert 0 15693 A
>> Inserting city A (0,15693)
 
insert 0 15694 A
>> Inserting city A (0,15694)
 
insert 0 15695 A
>> Inserting city A (0,15695)
 
insert 0 15696 A
>> Inserting city A (0,15696)
 
insert 0 15697 A
>> Inserting city A (0,15697)
 
insert 0 15698 A
>> Inserting city A (0,15698)
 
insert 0 15699 A
>> Inserting city A (0,15699)
 
insert 0 15700 A
>> Inserting city A (0,15700)
 
insert 0 15701 A
>> Inserting city A (0,15701)
 
insert 0 15702 A
>> Inserting city A (0,15702)
 
insert 0 15703 A
>> Inserting city A (0,15703)
 
insert 0 15704 A
>> Inserting city A (0,15704)
 
insert 0 15705 A
>> Inserting city A (0,15705)
 
insert 0 15706 A
>> Inserting city A (0,15706)
 
insert 0 15707 A
>> Inserting city A (0,15707)
 
insert 0 15708 A
>> Inserting city A (0,15708)
 
insert 0 15709 A
>> Inserting city A (0,15709)
 
insert 0 15710 A
>> Inserting city A (0,15710)
 
insert 0 15711 A
>> Inserting city A (0,15711)
 
insert 0 15712 A
>> Inserting city A (0,15712)
 
insert 0 15713 A
>> Inserting city A (0,15713)
 
insert 0 15714 A
>> Inserting city A (0,15714)
 
insert 0 15715 A
>> Inserting city A (0,15715)
 
insert 0 15716 A
>> Inserting city A (0,15716)
 
insert 0 15717 A
>> Inserting city A (0,15717)
 
insert 0 15718 A
>> Inserting city A (0,15718)
 
insert 0 15719 A
>> Inserting city A (0,15719)
 
insert 0 15720 A
>> Inserting city A (0,15720)
 
insert 0 15721 A
>> Inserting city A (0,15721)
 
insert 0 15722 A
>> Inserting city A (0,15722)
 
insert 0 15723 A
>> Inserting city A (0,15723)
 
insert 0 15724 A
>> Inserting city A (0,15724)
 
insert 0 15725 A
>> Inserting city A (0,15725)
 
insert 0 15726 A
>> Inserting city A (0,15726)
 
insert 0 15727 A
>> Inserting city A (0,15727)
 
insert 0 15728 A
>> Inserting city A (0,15728)
 
insert 0 15729 A
>> Inserting city A (0,15729)
 
insert 0 15730 A
>> Inserting city A (0,15730)
 
insert 0 15731 A
>> Inserting city A (0,15731)
 
insert 0 15732 A
>> Inserting city A (0,15732)
 
insert 0 15733 A
>> Inserting city A (0,15733)
 
insert 0 15734 A
>> Inserting city A (0,15734)
 
insert 0 15735 A
>> Inserting city A (0,15735)
 
insert 0 15736 A
>> Inserting city A (0,15736)
 
insert 0 15737 A
>> Inserting city A (0,15737)
 
insert 0 15738 A
>> Inserting city A (0,15738)
 
insert 0 15739 A
>> Inserting city A (0,15739)
 
insert 0 15740 A
>> Inserting city A (0,15740)
 
insert 0 15741 A
>> Inserting city A (0,15741)
 
insert 0 15742 A
>> Inserting city A (0,15742)
 
insert 0 15743 A
>> Inserting city A (0,15743)
 
insert 0 15744 A
>> Inserting city A (0,15744)
 
insert 0 15745 A
>> Inserting city A (0,15745)
 
insert 0 15746 A
>> Inserting city A (0,15746)
 
insert 0 15747 A
>> Inserting city A (0,15747)
 
insert 0 15748 A
>> Inserting city A (0,15748)
 
insert 0 15749 A
>> Inserting city A (0,15749)
 
insert 0 15750 A
>> Inserting city A (0,15750)
 
insert 0 15751 A
>> Inserting city A (0,15751)
 
insert 0 15752 A
>> Inserting city A (0,15752)
 
insert 0 15753 A
>> Inserting city A (0,15753)
 
insert 0 15754 A
>> Inserting city A (0,15754)
 
insert 0 15755 A
>> Inserting city A (0,15755)
 
insert 0 15756 A
>> Inserting city A (0,15756)
 
insert 0 15757 A
>> Inserting city A (0,15757)
 
insert 0 15758 A
>> Inserting city A (0,15758)
 
insert 0 15759 A
>> Inserting city A (0,15759)
 
insert 0 15760 A
>> Inserting city A (0,15760)
 
insert 0 15761 A
>> Inserting city A (0,15761)
 
insert 0 15762 A
>> Inserting city A (0,15762)
 
insert 0 15763 A
>> Inserting city A (0,15763)
 
insert 0 15764 A
>> Inserting city A (0,15764)
 
insert 0 15765 A
>> Inserting city A (0,15765)
 
insert 0 15766 A
>> Inserting city A (0,15766)
 
insert 0 15767 A
>> Inserting city A (0,15767)
 
insert 0 15768 A
>> Inserting city A (0,15768)
 
insert 0 15769 A
>> Inserting city A (0,15769)
 
insert 0 15770 A
>> Inserting city A (0,15770)
 
insert 0 15771 A
>> Inserting city A (0,15771)
 
insert 0 15772 A
>> Inserting city A (0,15772)
 
insert 0 15773 A
>> Inserting city A (0,15773)
 
insert 0 15774 A
>> Inserting city A (0,15774)
 
insert 0 15775 A
>> Inserting city A (0,15775)
 
insert 0 15776 A
>> Inserting city A (0,15776)
 
insert 0 15777 A
>> Inserting city A (0,15777)
 
insert 0 15778 A
>> Inserting city A (0,15778)
 
insert 0 15779 A
>> Inserting city A (0,15779)
 
insert 0 15780 A
>> Inserting city A (0,15780)
 
insert 0 15781 A
>> Inserting city A (0,15781)
 
insert 0 15782 A
>> Inserting city A (0,15782)
 
insert 0 15783 A
>> Inserting city A (0,15783)
 
insert 0 15784 A
>> Inserting city A (0,15784)
 
insert 0 15785 A
>> Inserting city A (0,15785)
 
insert 0 15786 A
>> Inserting city A (0,15786)
 
insert 0 15787 A
>> Inserting city A (0,15787)
 
insert 0 15788 A
>> Inserting city A (0,15788)
 
insert 0 15789 A
>> Inserting city A (0,15789)
 
insert 0 15790 A
>> Inserting city A (0,15790)
 
insert 0 15791 A
>> Inserting city A (0,15791)
 
insert 0 15792 A
>> Inserting city A (0,15792)
 
insert 0 15793 A
>> Inserting city A (0,15793)
 
insert 0 15794 A
>> Inserting city A (0,15794)
 
insert 0 15795 A
>> Inserting city A (0,15795)
 
insert 0 15796 A
>> Inserting city A (0,15796)
 
insert 0 15797 A
>> Inserting city A (0,15797)
 
insert 0 15798 A
>> Inserting city A (0,15798)
 
insert 0 15799 A
>> Inserting city A (0,15799)
 
insert 0 15800 A
>> Inserting city A (0,15800)
 
insert 0 15801 A
>> Inserting city A (0,15801)
 
insert 0 15802 A
>> Inserting city A (0,15802)
 
insert 0 15803 A
>> Inserting city A (0,15803)
 
insert 0 15804 A
>> Inserting city A (0,15804)
 
insert 0 15805 A
>> Inserting city A (0,15805)
 
insert 0 15806 A
>> Inserting city A (0,15806)
 
insert 0 15807 A
>> Inserting city A (0,15807)
 
insert 0 15808 A
>> Inserting city A (0,15808)
 
insert 0 15809 A
>> Inserting city A (0,15809)
 
insert 0 15810 A
>> Inserting city A (0,15810)
 
insert 0 15811 A
>> Inserting city A (0,15811)
 
insert 0 15812 A
>> Inserting city A (0,15812)
 
insert 0 15813 A
>> Inserting city A (0,15813)
 
insert 0 15814 A
>> Inserting city A (0,15814)
 
insert 0 15815 A
>> Inserting city A (0,15815)
 
insert 0 15816 A
>> Inserting city A (0,15816)
 
insert 0 15817 A
>> Inserting city A (0,15817)
 
insert 0 15818 A
>> Inserting city A (0,15818)
 
insert 0 15819 A
>> Inserting city A (0,15819)
 
insert 0 15820 A
>> Inserting city A (0,15820)
 
insert 0 15821 A
>> Inserting city A (0,15821)
 
insert 0 15822 A
>> Inserting city A (0,15822)
 
insert 0 15823 A
>> Inserting city A (0,15823)
 
insert 0 15824 A
>> Inserting city A (0,15824)
 
insert 0 15825 A
>> Inserting city A (0,15825)
 
insert 0 15826 A
>> Inserting city A (0,15826)
 
insert 0 15827 A
>> Inserting city A (0,15827)
 
insert 0 15828 A
>> Inserting city A (0,15828)
 
insert 0 15829 A
>> Inserting city A (0,15829)
 
insert 0 15830 A
>> Inserting city A (0,15830)
 
insert 0 15831 A
>> Inserting city A (0,15831)
 
insert 0 15832 A
>> Inserting city A (0,15832)
 
insert 0 15833 A
>> Inserting city A (0,15833)
 
insert 0 15834 A
>> Inserting city A (0,15834)
 
insert 0 15835 A
>> Inserting city A (0,15835)
 
insert 0 15836 A
>> Inserting city A (0,15836)
 
insert 0 15837 A
>> Inserting city A (0,15837)
 
insert 0 15838 A
>> Inserting city A (0,15838)
 
insert 0 15839 A
>> Inserting city A (0,15839)
 
insert 0 15840 A
>> Inserting city A (0,15840)
 
insert 0 15841 A
>> Inserting city A (0,15841)
 
insert 0 15842 A
>> Inserting city A (0,15842)
 
insert 0 15843 A
>> Inserting city A (0,15843)
 
insert 0 15844 A
>> Inserting city A (0,15844)
 
insert 0 15845 A
>> Inserting city A (0,15845)
 
insert 0 15846 A
>> Inserting city A (0,15846)
 
insert 0 15847 A
>> Inserting city A (0,15847)
 
insert 0 15848 A
>> Inserting city A (0,15848)
 
insert 0 15849 A
>> Inserting city A (0,15849)
 
insert 0 15850 A
>> Inserting city A (0,15850)
 
insert 0 15851 A
>> Inserting city A (0,15851)
 
insert 0 15852 A
>> Inserting city A (0,15852)
 
insert 0 15853 A
>> Inserting city A (0,15853)
 
insert 0 15854 A
>> Inserting city A (0,15854)
 
insert 0 15855 A
>> Inserting city A (0,15855)
 
insert 0 15856 A
>> Inserting city A (0,15856)
 
insert 0 15857 A
>> Inserting city A (0,15857)
 
insert 0 15858 A
>> Inserting city A (0,15858)
 
insert 0 15859 A
>> Inserting city A (0,15859)
 
insert 0 15860 A
>> Inserting city A (0,15860)
 
insert 0 15861 A
>> Inserting city A (0,15861)
 
insert 0 15862 A
>> Inserting city A (0,15862)
 
insert 0 15863 A
>> Inserting city A (0,15863)
 
insert 0 15864 A
>> Inserting city A (0,15864)
 
insert 0 15865 A
>> Inserting city A (0,15865)
 
insert 0 15866 A
>> Inserting city A (0,15866)
 
insert 0 15867 A
>> Inserting city A (0,15867)
 
insert 0 15868 A
>> Inserting city A (0,15868)
 
insert 0 15869 A
>> Inserting city A (0,15869)
 
insert 0 15870 A
>> Inserting city A (0,15870)
 
insert 0 15871 A
>> Inserting city A (0,15871)
 
insert 0 15872 A
>> Inserting city A (0,15872)
 
insert 0 15873 A
>> Inserting city A (0,15873)
 
insert 0 15874 A
>> Inserting city A (0,15874)
 
insert 0 15875 A
>> Inserting city A (0,15875)
 
insert 0 15876 A
>> Inserting city A (0,15876)
 
insert 0 15877 A
>> Inserting city A (0,15877)
 
insert 0 15878 A
>> Inserting city A (0,15878)
 
insert 0 15879 A
>> Inserting city A (0,15879)
 
insert 0 15880 A
>> Inserting city A (0,15880)
 
insert 0 15881 A
>> Inserting city A (0,15881)
 
insert 0 15882 A
>> Inserting city A (0,15882)
 
insert 0 15883 A
>> Inserting city A (0,15883)
 
insert 0 15884 A
>> Inserting city A (0,15884)
 
insert 0 15885 A
>> Inserting city A (0,15885)
 
insert 0 15886 A
>> Inserting city A (0,15886)
 
insert 0 15887 A
>> Inserting city A (0,15887)
 
insert 0 15888 A
>> Inserting city A (0,15888)
 
insert 0 15889 A
>> Inserting city A (0,15889)
 
insert 0 15890 A
>> Inserting city A (0,15890)
 
insert 0 15891 A
>> Inserting city A (0,15891)
 
insert 0 15892 A
>> Inserting city A (0,15892)
 
insert 0 15893 A
>> Inserting city A (0,15893)
 
insert 0 15894 A
>> Inserting city A (0,15894)
 
insert 0 15895 A
>> Inserting city A (0,15895)
 
insert 0 15896 A
>> Inserting city A (0,15896)
 
insert 0 15897 A
>> Inserting city A (0,15897)
 
insert 0 15898 A
>> Inserting city A (0,15898)
 
insert 0 15899 A
>> Inserting city A (0,15899)
 
insert 0 15900 A
>> Inserting city A (0,15900)
 
insert 0 15901 A
>> Inserting city A (0,15901)
 
insert 0 15902 A
>> Inserting city A (0,15902)
 
insert 0 15903 A
>> Inserting city A (0,15903)
 
insert 0 15904 A
>> Inserting city A (0,15904)
 
insert 0 15905 A
>> Inserting city A (0,15905)
 
insert 0 15906 A
>> Inserting city A (0,15906)
 
insert 0 15907 A
>> Inserting city A (0,15907)
 
insert 0 15908 A
>> Inserting city A (0,15908)
 
insert 0 15909 A
>> Inserting city A (0,15909)
 
insert 0 15910 A
>> Inserting city A (0,15910)
 
insert 0 15911 A
>> Inserting city A (0,15911)
 
insert 0 15912 A
>> Inserting city A (0,15912)
 
insert 0 15913 A
>> Inserting city A (0,15913)
 
insert 0 15914 A
>> Inserting city A (0,15914)
 
insert 0 15915 A
>> Inserting city A (0,15915)
 
insert 0 15916 A
>> Inserting city A (0,15916)
 
insert 0 15917 A
>> Inserting city A (0,15917)
 
insert 0 15918 A
>> Inserting city A (0,15918)
 
insert 0 15919 A
>> Inserting city A (0,15919)
 
insert 0 15920 A
>> Inserting city A (0,15920)
 
insert 0 15921 A
>> Inserting city A (0,15921)
 
insert 0 15922 A
>> Inserting city A (0,15922)
 
insert 0 15923 A
>> Inserting city A (0,15923)
 
insert 0 15924 A
>> Inserting city A (0,15924)
 
insert 0 15925 A
>> Inserting city A (0,15925)
 
insert 0 15926 A
>> Inserting city A (0,15926)
 
insert 0 15927 A
>> Inserting city A (0,15927)
 
insert 0 15928 A
>> Inserting city A (0,15928)
 
insert 0 15929 A
>> Inserting city A (0,15929)
 
insert 0 15930 A
>> Inserting city A (0,15930)
 
insert 0 15931 A
>> Inserting city A (0,15931)
 
insert 0 15932 A
>> Inserting city A (0,15932)
 
insert 0 15933 A
>> Inserting city A (0,15933)
 
insert 0 15934 A
>> Inserting city A (0,15934)
 
insert 0 15935 A
>> Inserting city A (0,15935)
 
insert 0 15936 A
>> Inserting city A (0,15936)
 
insert 0 15937 A
>> Inserting city A (0,15937)
 
insert 0 15938 A
>> Inserting city A (0,15938)
 
insert 0 15939 A
>> Inserting city A (0,15939)
 
insert 0 15940 A
>> Inserting city A (0,15940)
 
insert 0 15941 A
>> Inserting city A (0,15941)
 
insert 0 15942 A
>> Inserting city A (0,15942)
 
insert 0 15943 A
>> Inserting city A (0,15943)
 
insert 0 15944 A
>> Inserting city A (0,15944)
 
insert 0 15945 A
>> Inserting city A (0,15945)
 
insert 0 15946 A
>> Inserting city A (0,15946)
 
insert 0 15947 A
>> Inserting city A (0,15947)
 
insert 0 15948 A
>> Inserting city A (0,15948)
 
insert 0 15949 A
>> Inserting city A (0,15949)
 
insert 0 15950 A
>> Inserting city A (0,15950)
 
insert 0 15951 A
>> Inserting city A (0,15951)
 
insert 0 15952 A
>> Inserting city A (0,15952)
 
insert 0 15953 A
>> Inserting city A (0,15953)
 
insert 0 15954 A
>> Inserting city A (0,15954)
 
insert 0 15955 A
>> Inserting city A (0,15955)
 
insert 0 15956 A
>> Inserting city A (0,15956)
 
insert 0 15957 A
>> Inserting city A (0,15957)
 
insert 0 15958 A
>> Inserting city A (0,15958)
 
insert 0 15959 A
>> Inserting city A (0,15959)
 
insert 0 15960 A
>> Inserting city A (0,15960)
 
insert 0 15961 A
>> Inserting city A (0,15961)
 
insert 0 15962 A
>> Inserting city A (0,15962)
 
insert 0 15963 A
>> Inserting city A (0,15963)
 
insert 0 15964 A
>> Inserting city A (0,15964)
 
insert 0 15965 A
>> Inserting city A (0,15965)
 
insert 0 15966 A
>> Inserting city A (0,15966)
 
insert 0 15967 A
>> Inserting city A (0,15967)
 
insert 0 15968 A
>> Inserting city A (0,15968)
 
insert 0 15969 A
>> Inserting city A (0,15969)
 
insert 0 15970 A
>> Inserting city A (0,15970)
 
insert 0 15971 A
>> Inserting city A (0,15971)
 
insert 0 15972 A
>> Inserting city A (0,15972)
 
insert 0 15973 A
>> Inserting city A (0,15973)
 
insert 0 15974 A
>> Inserting city A (0,15974)
 
insert 0 15975 A
>> Inserting city A (0,15975)
 
insert 0 15976 A
>> Inserting city A (0,15976)
 
insert 0 15977 A
>> Inserting city A (0,15977)
 
insert 0 15978 A
>> Inserting city A (0,15978)
 
insert 0 15979 A
>> Inserting city A (0,15979)
 
insert 0 15980 A
>> Inserting city A (0,15980)
 
insert 0 15981 A
>> Inserting city A (0,15981)
 
insert 0 15982 A
>> Inserting city A (0,15982)
 
insert 0 15983 A
>> Inserting city A (0,15983)
 
insert 0 15984 A
>> Inserting city A (0,15984)
 
insert 0 15985 A
>> Inserting city A (0,15985)
 
insert 0 15986 A
>> Inserting city A (0,15986)
 
insert 0 15987 A
>> Inserting city A (0,15987)
 
insert 0 15988 A
>> Inserting city A (0,15988)
 
insert 0 15989 A
>> Inserting city A (0,15989)
 
insert 0 15990 A
>> Inserting city A (0,15990)
 
insert 0 15991 A
>> Inserting city A (0,15991)
 
insert 0 15992 A
>> Inserting city A (0,15992)
 
insert 0 15993 A
>> Inserting city A (0,15993)
 
insert 0 15994 A
>> Inserting city A (0,15994)
 
insert 0 15995 A
>> Inserting city A (0,15995)
 
insert 0 15996 A
>> Inserting city A (0,15996)
 
insert 0 15997 A
>> Inserting city A (0,15997)
 
insert 0 15998 A
>> Inserting city A (0,15998)
 
insert 0 15999 A
>> Inserting city A (0,15999)
 
insert 0 16000 A
>> Inserting city A (0,16000)
 
insert 0 16001 A
>> Inserting city A (0,16001)
 
insert 0 16002 A
>> Inserting city A (0,16002)
 
insert 0 16003 A
>> Inserting city A (0,16003)
 
insert 0 16004 A
>> Inserting city A (0,16004)
 
insert 0 16005 A
>> Inserting city A (0,16005)
 
insert 0 16006 A
>> Inserting city A (0,16006)
 
insert 0 16007 A
>> Inserting city A (0,16007)
 
insert 0 16008 A
>> Inserting city A (0,16008)
 
insert 0 16009 A
>> Inserting city A (0,16009)
 
insert 0 16010 A
>> Inserting city A (0,16010)
 
insert 0 16011 A
>> Inserting city A (0,16011)
 
insert 0 16012 A
>> Inserting city A (0,16012)
 
insert 0 16013 A
>> Inserting city A (0,16013)
 
insert 0 16014 A
>> Inserting city A (0,16014)
 
insert 0 16015 A
>> Inserting city A (0,16015)
 
insert 0 16016 A
>> Inserting city A (0,16016)
 
insert 0 16017 A
>> Inserting city A (0,16017)
 
insert 0 16018 A
>> Inserting city A (0,16018)
 
insert 0 16019 A
>> Inserting city A (0,16019)
 
insert 0 16020 A
>> Inserting city A (0,16020)
 
insert 0 16021 A
>> Inserting city A (0,16021)
 
insert 0 16022 A
>> Inserting city A (0,16022)
 
insert 0 16023 A
>> Inserting city A (0,16023)
 
insert 0 16024 A
>> Inserting city A (0,16024)
 
insert 0 16025 A
>> Inserting city A (0,16025)
 
insert 0 16026 A
>> Inserting city A (0,16026)
 
insert 0 16027 A
>> Inserting city A (0,16027)
 
insert 0 16028 A
>> Inserting city A (0,16028)
 
insert 0 16029 A
>> Inserting city A (0,16029)
 
insert 0 16030 A
>> Inserting city A (0,16030)
 
insert 0 16031 A
>> Inserting city A (0,16031)
 
insert 0 16032 A
>> Inserting city A (0,16032)
 
insert 0 16033 A
>> Inserting city A (0,16033)
 
insert 0 16034 A
>> Inserting city A (0,16034)
 
insert 0 16035 A
>> Inserting city A (0,16035)
 
insert 0 16036 A
>> Inserting city A (0,16036)
 
insert 0 16037 A
>> Inserting city A (0,16037)
 
insert 0 16038 A
>> Inserting city A (0,16038)
 
insert 0 16039 A
>> Inserting city A (0,16039)
 
insert 0 16040 A
>> Inserting city A (0,16040)
 
insert 0 16041 A
>> Inserting city A (0,16041)
 
insert 0 16042 A
>> Inserting city A (0,16042)
 
insert 0 16043 A
>> Inserting city A (0,16043)
 
insert 0 16044 A
>> Inserting city A (0,16044)
 
insert 0 16045 A
>> Inserting city A (0,16045)
 
insert 0 16046 A
>> Inserting city A (0,16046)
 
insert 0 16047 A
>> Inserting city A (0,16047)
 
insert 0 16048 A
>> Inserting city A (0,16048)
 
insert 0 16049 A
>> Inserting city A (0,16049)
 
insert 0 16050 A
>> Inserting city A (0,16050)
 
insert 0 16051 A
>> Inserting city A (0,16051)
 
insert 0 16052 A
>> Inserting city A (0,16052)
 
insert 0 16053 A
>> Inserting city A (0,16053)
 
insert 0 16054 A
>> Inserting city A (0,16054)
 
insert 0 16055 A
>> Inserting city A (0,16055)
 
insert 0 16056 A
>> Inserting city A (0,16056)
 
insert 0 16057 A
>> Inserting city A (0,16057)
 
insert 0 16058 A
>> Inserting city A (0,16058)
 
insert 0 16059 A
>> Inserting city A (0,16059)
 
insert 0 16060 A
>> Inserting city A (0,16060)
 
insert 0 16061 A
>> Inserting city A (0,16061)
 
insert 0 16062 A
>> Inserting city A (0,16062)
 
insert 0 16063 A
>> Inserting city A (0,16063)
 
insert 0 16064 A
>> Inserting city A (0,16064)
 
insert 0 16065 A
>> Inserting city A (0,16065)
 
insert 0 16066 A
>> Inserting city A (0,16066)
 
insert 0 16067 A
>> Inserting city A (0,16067)
 
insert 0 16068 A
>> Inserting city A (0,16068)
 
insert 0 16069 A
>> Inserting city A (0,16069)
 
insert 0 16070 A
>> Inserting city A (0,16070)
 
insert 0 16071 A
>> Inserting city A (0,16071)
 
insert 0 16072 A
>> Inserting city A (0,16072)
 
insert 0 16073 A
>> Inserting city A (0,16073)
 
insert 0 16074 A
>> Inserting city A (0,16074)
 
insert 0 16075 A
>> Inserting city A (0,16075)
 
insert 0 16076 A
>> Inserting city A (0,16076)
 
insert 0 16077 A
>> Inserting city A (0,16077)
 
insert 0 16078 A
>> Inserting city A (0,16078)
 
insert 0 16079 A
>> Inserting city A (0,16079)
 
insert 0 16080 A
>> Inserting city A (0,16080)
 
insert 0 16081 A
>> Inserting city A (0,16081)
 
insert 0 16082 A
>> Inserting city A (0,16082)
 
insert 0 16083 A
>> Inserting city A (0,16083)
 
insert 0 16084 A
>> Inserting city A (0,16084)
 
insert 0 16085 A
>> Inserting city A (0,16085)
 
insert 0 16086 A
>> Inserting city A (0,16086)
 
insert 0 16087 A
>> Inserting city A (0,16087)
 
insert 0 16088 A
>> Inserting city A (0,16088)
 
insert 0 16089 A
>> Inserting city A (0,16089)
 
insert 0 16090 A
>> Inserting city A (0,16090)
 
insert 0 16091 A
>> Inserting city A (0,16091)
 
insert 0 16092 A
>> Inserting city A (0,16092)
 
insert 0 16093 A
>> Inserting city A (0,16093)
 
insert 0 16094 A
>> Inserting city A (0,16094)
 
insert 0 16095 A
>> Inserting city A (0,16095)
 
insert 0 16096 A
>> Inserting city A (0,16096)
 
insert 0 16097 A
>> Inserting city A (0,16097)
 
insert 0 16098 A
>> Inserting city A (0,16098)
 
insert 0 16099 A
>> Inserting city A (0,16099)
 
insert 0 16100 A
>> Inserting city A (0,16100)
 
insert 0 16101 A
>> Inserting city A (0,16101)
 
insert 0 16102 A
>> Inserting city A (0,16102)
 
insert 0 16103 A
>> Inserting city A (0,16103)
 
insert 0 16104 A
>> Inserting city A (0,16104)
 
insert 0 16105 A
>> Inserting city A (0,16105)
 
insert 0 16106 A
>> Inserting city A (0,16106)
 
insert 0 16107 A
>> Inserting city A (0,16107)
 
insert 0 16108 A
>> Inserting city A (0,16108)
 
insert 0 16109 A
>> Inserting city A (0,16109)
 
insert 0 16110 A
>> Inserting city A (0,16110)
 
insert 0 16111 A
>> Inserting city A (0,16111)
 
insert 0 16112 A
>> Inserting city A (0,16112)
 
insert 0 16113 A
>> Inserting city A (0,16113)
 
insert 0 16114 A
>> Inserting city A (0,16114)
 
insert 0 16115 A
>> Inserting city A (0,16115)
 
insert 0 16116 A
>> Inserting city A (0,16116)
 
insert 0 16117 A
>> Inserting city A (0,16117)
 
insert 0 16118 A
>> Inserting city A (0,16118)
 
insert 0 16119 A
>> Inserting city A (0,16119)
 
insert 0 16120 A
>> Inserting city A (0,16120)
 
insert 0 16121 A
>> Inserting city A (0,16121)
 
insert 0 16122 A
>> Inserting city A (0,16122)
 
insert 0 16123 A
>> Inserting city A (0,16123)
 
insert 0 16124 A
>> Inserting city A (0,16124)
 
insert 0 16125 A
>> Inserting city A (0,16125)
 
insert 0 16126 A
>> Inserting city A (0,16126)
 
insert 0 16127 A
>> Inserting city A (0,16127)
 
insert 0 16128 A
>> Inserting city A (0,16128)
 
insert 0 16129 A
>> Inserting city A (0,16129)
 
insert 0 16130 A
>> Inserting city A (0,16130)
 
insert 0 16131 A
>> Inserting city A (0,16131)
 
insert 0 16132 A
>> Inserting city A (0,16132)
 
insert 0 16133 A
>> Inserting city A (0,16133)
 
insert 0 16134 A
>> Inserting city A (0,16134)
 
insert 0 16135 A
>> Inserting city A (0,16135)
 
insert 0 16136 A
>> Inserting city A (0,16136)
 
insert 0 16137 A
>> Inserting city A (0,16137)
 
insert 0 16138 A
>> Inserting city A (0,16138)
 
insert 0 16139 A
>> Inserting city A (0,16139)
 
insert 0 16140 A
>> Inserting city A (0,16140)
 
insert 0 16141 A
>> Inserting city A (0,16141)
 
insert 0 16142 A
>> Inserting city A (0,16142)
 
insert 0 16143 A
>> Inserting city A (0,16143)
 
insert 0 16144 A
>> Inserting city A (0,16144)
 
insert 0 16145 A
>> Inserting city A (0,16145)
 
insert 0 16146 A
>> Inserting city A (0,16146)
 
insert 0 16147 A
>> Inserting city A (0,16147)
 
insert 0 16148 A
>> Inserting city A (0,16148)
 
insert 0 16149 A
>> Inserting city A (0,16149)
 
insert 0 16150 A
>> Inserting city A (0,16150)
 
insert 0 16151 A
>> Inserting city A (0,16151)
 
insert 0 16152 A
>> Inserting city A (0,16152)
 
insert 0 16153 A
>> Inserting city A (0,16153)
 
insert 0 16154 A
>> Inserting city A (0,16154)
 
insert 0 16155 A
>> Inserting city A (0,16155)
 
insert 0 16156 A
>> Inserting city A (0,16156)
 
insert 0 16157 A
>> Inserting city A (0,16157)
 
insert 0 16158 A
>> Inserting city A (0,16158)
 
insert 0 16159 A
>> Inserting city A (0,16159)
 
insert 0 16160 A
>> Inserting city A (0,16160)
 
insert 0 16161 A
>> Inserting city A (0,16161)
 
insert 0 16162 A
>> Inserting city A (0,16162)
 
insert 0 16163 A
>> Inserting city A (0,16163)
 
insert 0 16164 A
>> Inserting city A (0,16164)
 
insert 0 16165 A
>> Inserting city A (0,16165)
 
insert 0 16166 A
>> Inserting city A (0,16166)
 
insert 0 16167 A
>> Inserting city A (0,16167)
 
insert 0 16168 A
>> Inserting city A (0,16168)
 
insert 0 16169 A
>> Inserting city A (0,16169)
 
insert 0 16170 A
>> Inserting city A (0,16170)
 
insert 0 16171 A
>> Inserting city A (0,16171)
 
insert 0 16172 A
>> Inserting city A (0,16172)
 
insert 0 16173 A
>> Inserting city A (0,16173)
 
insert 0 16174 A
>> Inserting city A (0,16174)
 
insert 0 16175 A
>> Inserting city A (0,16175)
 
insert 0 16176 A
>> Inserting city A (0,16176)
 
insert 0 16177 A
>> Inserting city A (0,16177)
 
insert 0 16178 A
>> Inserting city A (0,16178)
 
insert 0 16179 A
>> Inserting city A (0,16179)
 
insert 0 16180 A
>> Inserting city A (0,16180)
 
insert 0 16181 A
>> Inserting city A (0,16181)
 
insert 0 16182 A
>> Inserting city A (0,16182)
 
insert 0 16183 A
>> Inserting city A (0,16183)
 
insert 0 16184 A
>> Inserting city A (0,16184)
 
insert 0 16185 A
>> Inserting city A (0,16185)
 
insert 0 16186 A
>> Inserting city A (0,16186)
 
insert 0 16187 A
>> Inserting city A (0,16187)
 
insert 0 16188 A
>> Inserting city A (0,16188)
 
insert 0 16189 A
>> Inserting city A (0,16189)
 
insert 0 16190 A
>> Inserting city A (0,16190)
 
insert 0 16191 A
>> Inserting city A (0,16191)
 
insert 0 16192 A
>> Inserting city A (0,16192)
 
insert 0 16193 A
>> Inserting city A (0,16193)
 
insert 0 16194 A
>> Inserting city A (0,16194)
 
insert 0 16195 A
>> Inserting city A (0,16195)
 
insert 0 16196 A
>> Inserting city A (0,16196)
 
insert 0 16197 A
>> Inserting city A (0,16197)
 
insert 0 16198 A
>> Inserting city A (0,16198)
 
insert 0 16199 A
>> Inserting city A (0,16199)
 
insert 0 16200 A
>> Inserting city A (0,16200)
 
insert 0 16201 A
>> Inserting city A (0,16201)
 
insert 0 16202 A
>> Inserting city A (0,16202)
 
insert 0 16203 A
>> Inserting city A (0,16203)
 
insert 0 16204 A
>> Inserting city A (0,16204)
 
insert 0 16205 A
>> Inserting city A (0,16205)
 
insert 0 16206 A
>> Inserting city A (0,16206)
 
insert 0 16207 A
>> Inserting city A (0,16207)
 
insert 0 16208 A
>> Inserting city A (0,16208)
 
insert 0 16209 A
>> Inserting city A (0,16209)
 
insert 0 16210 A
>> Inserting city A (0,16210)
 
insert 0 16211 A
>> Inserting city A (0,16211)
 
insert 0 16212 A
>> Inserting city A (0,16212)
 
insert 0 16213 A
>> Inserting city A (0,16213)
 
insert 0 16214 A
>> Inserting city A (0,16214)
 
insert 0 16215 A
>> Inserting city A (0,16215)
 
insert 0 16216 A
>> Inserting city A (0,16216)
 
insert 0 16217 A
>> Inserting city A (0,16217)
 
insert 0 16218 A
>> Inserting city A (0,16218)
 
insert 0 16219 A
>> Inserting city A (0,16219)
 
insert 0 16220 A
>> Inserting city A (0,16220)
 
insert 0 16221 A
>> Inserting city A (0,16221)
 
insert 0 16222 A
>> Inserting city A (0,16222)
 
insert 0 16223 A
>> Inserting city A (0,16223)
 
insert 0 16224 A
>> Inserting city A (0,16224)
 
insert 0 16225 A
>> Inserting city A (0,16225)
 
insert 0 16226 A
>> Inserting city A (0,16226)
 
insert 0 16227 A
>> Inserting city A (0,16227)
 
insert 0 16228 A
>> Inserting city A (0,16228)
 
insert 0 16229 A
>> Inserting city A (0,16229)
 
insert 0 16230 A
>> Inserting city A (0,16230)
 
insert 0 16231 A
>> Inserting city A (0,16231)
 
insert 0 16232 A
>> Inserting city A (0,16232)
 
insert 0 16233 A
>> Inserting city A (0,16233)
 
insert 0 16234 A
>> Inserting city A (0,16234)
 
insert 0 16235 A
>> Inserting city A (0,16235)
 
insert 0 16236 A
>> Inserting city A (0,16236)
 
insert 0 16237 A
>> Inserting city A (0,16237)
 
insert 0 16238 A
>> Inserting city A (0,16238)
 
insert 0 16239 A
>> Inserting city A (0,16239)
 
insert 0 16240 A
>> Inserting city A (0,16240)
 
insert 0 16241 A
>> Inserting city A (0,16241)
 
insert 0 16242 A
>> Inserting city A (0,16242)
 
insert 0 16243 A
>> Inserting city A (0,16243)
 
insert 0 16244 A
>> Inserting city A (0,16244)
 
insert 0 16245 A
>> Inserting city A (0,16245)
 
insert 0 16246 A
>> Inserting city A (0,16246)
 
insert 0 16247 A
>> Inserting city A (0,16247)
 
insert 0 16248 A
>> Inserting city A (0,16248)
 
insert 0 16249 A
>> Inserting city A (0,16249)
 
insert 0 16250 A
>> Inserting city A (0,16250)
 
insert 0 16251 A
>> Inserting city A (0,16251)
 
insert 0 16252 A
>> Inserting city A (0,16252)
 
insert 0 16253 A
>> Inserting city A (0,16253)
 
insert 0 16254 A
>> Inserting city A (0,16254)
 
insert 0 16255 A
>> Inserting city A (0,16255)
 
insert 0 16256 A
>> Inserting city A (0,16256)
 
insert 0 16257 A
>> Inserting city A (0,16257)
 
insert 0 16258 A
>> Inserting city A (0,16258)
 
insert 0 16259 A
>> Inserting city A (0,16259)
 
insert 0 16260 A
>> Inserting city A (0,16260)
 
insert 0 16261 A
>> Inserting city A (0,16261)
 
insert 0 16262 A
>> Inserting city A (0,16262)
 
insert 0 16263 A
>> Inserting city A (0,16263)
 
insert 0 16264 A
>> Inserting city A (0,16264)
 
insert 0 16265 A
>> Inserting city A (0,16265)
 
insert 0 16266 A
>> Inserting city A (0,16266)
 
insert 0 16267 A
>> Inserting city A (0,16267)
 
insert 0 16268 A
>> Inserting city A (0,16268)
 
insert 0 16269 A
>> Inserting city A (0,16269)
 
insert 0 16270 A
>> Inserting city A (0,16270)
 
insert 0 16271 A
>> Inserting city A (0,16271)
 
insert 0 16272 A
>> Inserting city A (0,16272)
 
insert 0 16273 A
>> Inserting city A (0,16273)
 
insert 0 16274 A
>> Inserting city A (0,16274)
 
insert 0 16275 A
>> Inserting city A (0,16275)
 
insert 0 16276 A
>> Inserting city A (0,16276)
 
insert 0 16277 A
>> Inserting city A (0,16277)
 
insert 0 16278 A
>> Inserting city A (0,16278)
 
insert 0 16279 A
>> Inserting city A (0,16279)
 
insert 0 16280 A
>> Inserting city A (0,16280)
 
insert 0 16281 A
>> Inserting city A (0,16281)
 
insert 0 16282 A
>> Inserting city A (0,16282)
 
insert 0 16283 A
>> Inserting city A (0,16283)
 
insert 0 16284 A
>> Inserting city A (0,16284)
 
insert 0 16285 A
>> Inserting city A (0,16285)
 
insert 0 16286 A
>> Inserting city A (0,16286)
 
insert 0 16287 A
>> Inserting city A (0,16287)
 
insert 0 16288 A
>> Inserting city A (0,16288)
 
insert 0 16289 A
>> Inserting city A (0,16289)
 
insert 0 16290 A
>> Inserting city A (0,16290)
 
insert 0 16291 A
>> Inserting city A (0,16291)
 
insert 0 16292 A
>> Inserting city A (0,16292)
 
insert 0 16293 A
>> Inserting city A (0,16293)
 
insert 0 16294 A
>> Inserting city A (0,16294)
 
insert 0 16295 A
>> Inserting city A (0,16295)
 
insert 0 16296 A
>> Inserting city A (0,16296)
 
insert 0 16297 A
>> Inserting city A (0,16297)
 
insert 0 16298 A
>> Inserting city A (0,16298)
 
insert 0 16299 A
>> Inserting city A (0,16299)
 
insert 0 16300 A
>> Inserting city A (0,16300)
 
insert 0 16301 A
>> Inserting city A (0,16301)
 
insert 0 16302 A
>> Inserting city A (0,16302)
 
insert 0 16303 A
>> Inserting city A (0,16303)
 
insert 0 16304 A
>> Inserting city A (0,16304)
 
insert 0 16305 A
>> Inserting city A (0,16305)
 
insert 0 16306 A
>> Inserting city A (0,16306)
 
insert 0 16307 A
>> Inserting city A (0,16307)
 
insert 0 16308 A
>> Inserting city A (0,16308)
 
insert 0 16309 A
>> Inserting city A (0,16309)
 
insert 0 16310 A
>> Inserting city A (0,16310)
 
insert 0 16311 A
>> Inserting city A (0,16311)
 
insert 0 16312 A
>> Inserting city A (0,16312)
 
insert 0 16313 A
>> Inserting city A (0,16313)
 
insert 0 16314 A
>> Inserting city A (0,16314)
 
insert 0 16315 A
>> Inserting city A (0,16315)
 
insert 0 16316 A
>> Inserting city A (0,16316)
 
insert 0 16317 A
>> Inserting city A (0,16317)
 
insert 0 16318 A
>> Inserting city A (0,16318)
 
insert 0 16319 A
>> Inserting city A (0,16319)
 
insert 0 16320 A
>> Inserting city A (0,16320)
 
insert 0 16321 A
>> Inserting city A (0,16321)
 
insert 0 16322 A
>> Inserting city A (0,16322)
 
insert 0 16323 A
>> Inserting city A (0,16323)
 
insert 0 16324 A
>> Inserting city A (0,16324)
 
insert 0 16325 A
>> Inserting city A (0,16325)
 
insert 0 16326 A
>> Inserting city A (0,16326)
 
insert 0 16327 A
>> Inserting city A (0,16327)
 
insert 0 16328 A
>> Inserting city A (0,16328)
 
insert 0 16329 A
>> Inserting city A (0,16329)
 
insert 0 16330 A
>> Inserting city A (0,16330)
 
insert 0 16331 A
>> Inserting city A (0,16331)
 
insert 0 16332 A
>> Inserting city A (0,16332)
 
insert 0 16333 A
>> Inserting city A (0,16333)
 
insert 0 16334 A
>> Inserting city A (0,16334)
 
insert 0 16335 A
>> Inserting city A (0,16335)
 
insert 0 16336 A
>> Inserting city A (0,16336)
 
insert 0 16337 A
>> Inserting city A (0,16337)
 
insert 0 16338 A
>> Inserting city A (0,16338)
 
insert 0 16339 A
>> Inserting city A (0,16339)
 
insert 0 16340 A
>> Inserting city A (0,16340)
 
insert 0 16341 A
>> Inserting city A (0,16341)
 
insert 0 16342 A
>> Inserting city A (0,16342)
 
insert 0 16343 A
>> Inserting city A (0,16343)
 
insert 0 16344 A
>> Inserting city A (0,16344)
 
insert 0 16345 A
>> Inserting city A (0,16345)
 
insert 0 16346 A
>> Inserting city A (0,16346)
 
insert 0 16347 A
>> Inserting city A (0,16347)
 
insert 0 16348 A
>> Inserting city A (0,16348)
 
insert 0 16349 A
>> Inserting city A (0,16349)
 
insert 0 16350 A
>> Inserting city A (0,16350)
 
insert 0 16351 A
>> Inserting city A (0,16351)
 
insert 0 16352 A
>> Inserting city A (0,16352)
 
insert 0 16353 A
>> Inserting city A (0,16353)
 
insert 0 16354 A
>> Inserting city A (0,16354)
 
insert 0 16355 A
>> Inserting city A (0,16355)
 
insert 0 16356 A
>> Inserting city A (0,16356)
 
insert 0 16357 A
>> Inserting city A (0,16357)
 
insert 0 16358 A
>> Inserting city A (0,16358)
 
insert 0 16359 A
>> Inserting city A (0,16359)
 
insert 0 16360 A
>> Inserting city A (0,16360)
 
insert 0 16361 A
>> Inserting city A (0,16361)
 
insert 0 16362 A
>> Inserting city A (0,16362)
 
insert 0 16363 A
>> Inserting city A (0,16363)
 
insert 0 16364 A
>> Inserting city A (0,16364)
 
insert 0 16365 A
>> Inserting city A (0,16365)
 
insert 0 16366 A
>> Inserting city A (0,16366)
 
insert 0 16367 A
>> Inserting city A (0,16367)
 
insert 0 16368 A
>> Inserting city A (0,16368)
 
insert 0 16369 A
>> Inserting city A (0,16369)
 
insert 0 16370 A
>> Inserting city A (0,16370)
 
insert 0 16371 A
>> Inserting city A (0,16371)
 
insert 0 16372 A
>> Inserting city A (0,16372)
 
insert 0 16373 A
>> Inserting city A (0,16373)
 
insert 0 16374 A
>> Inserting city A (0,16374)
 
insert 0 16375 A
>> Inserting city A (0,16375)
 
insert 0 16376 A
>> Inserting city A (0,16376)
 
insert 0 16377 A
>> Inserting city A (0,16377)
 
insert 0 16378 A
>> Inserting city A (0,16378)
 
insert 0 16379 A
>> Inserting city A (0,16379)
 
insert 0 16380 A
>> Inserting city A (0,16380)
 
insert 0 16381 A
>> Inserting city A (0,16381)
 
insert 0 16382 A
>> Inserting city A (0,16382)
 
insert 0 16383 A
>> Inserting city A (0,16383)
 
remove 0 0
>> Removing city A (0,0)
 
remove 0 1
>> Removing city A (0,1)
 
remove 0 2
>> Removing city A (0,2)
 
remove 0 3
>> Removing city A (0,3)
 
remove 0 4
>> Removing city A (0,4)
 
remove 0 5
>> Removing city A (0,5)
 
remove 0 6
>> Removing city A (0,6)
 
remove 0 7
>> Removing city A (0,7)
 
remove 0 8
>> Removing city A (0,8)
 
remove 0 9
>> Removing city A (0,9)
 
remove 0 10
>> Removing city A (0,10)
 
remove 0 11
>> Removing city A (0,11)
 
remove 0 12
>> Removing city A (0,12)
 
remove 0 13
>> Removing city A (0,13)
 
remove 0 14
>> Removing city A (0,14)
 
remove 0 15
>> Removing city A (0,15)
 
remove 0 16
>> Removing city A (0,16)
 
remove 0 17
>> Removing city A (0,17)
 
remove 0 18
>> Removing city A (0,18)
 
remove 0 19
>> Removing city A (0,19)
 
remove 0 20
>> Removing city A (0,20)
 
remove 0 21
>> Removing city A (0,21)
 
remove 0 22
>> Removing city A (0,22)
 
remove 0 23
>> Removing city A (0,23)
 
remove 0 24
>> Removing city A (0,24)
 
remove 0 25
>> Removing city A (0,25)
 
remove 0 26
>> Removing city A (0,26)
 
remove 0 27
>> Removing city A (0,27)
 
remove 0 28
>> Removing city A (0,28)
 
remove 0 29
>> Removing city A (0,29)
 
remove 0 30
>> Removing city A (0,30)
 
remove 0 31
>> Removing city A (0,31)
 
remove 0 32
>> Removing city A (0,32)
 
remove 0 33
>> Removing city A (0,33)
 
remove 0 34
>> Removing city A (0,34)
 
remove 0 35
>> Removing city A (0,35)
 
remove 0 36
>> Removing city A (0,36)
 
remove 0 37
>> Removing city A (0,37)
 
remove 0 38
>> Removing city A (0,38)
 
remove 0 39
>> Removing city A (0,39)
 
remove 0 40
>> Removing city A (0,40)
 
remove 0 41
>> Removing city A (0,41)
 
remove 0 42
>> Removing city A (0,42)
 
remove 0 43
>> Removing city A (0,43)
 
remove 0 44
>> Removing city A (0,44)
 
remove 0 45
>> Removing city A (0,45)
 
remove 0 46
>> Removing city A (0,46)
 
remove 0 47
>> Removing city A (0,47)
 
remove 0 48
>> Removing city A (0,48)
 
remove 0 49
>> Removing city A (0,49)
 
remove 0 50
>> Removing city A (0,50)
 
remove 0 51
>> Removing city A (0,51)
 
remove 0 52
>> Removing city A (0,52)
 
remove 0 53
>> Removing city A (0,53)
 
remove 0 54
>> Removing city A (0,54)
 
remove 0 55
>> Removing city A (0,55)
 
remove 0 56
>> Removing city A (0,56)
 
remove 0 57
>> Removing city A (0,57)
 
remove 0 58
>> Removing city A (0,58)
 
remove 0 59
>> Removing city A (0,59)
 
remove 0 60
>> Removing city A (0,60)
 
remove 0 61
>> Removing city A (0,61)
 
remove 0 62
>> Removing city A (0,62)
 
remove 0 63
>> Removing city A (0,63)
 
remove 0 64
>> Removing city A (0,64)
 
remove 0 65
>> Removing city A (0,65)
 
remove 0 66
>> Removing city A (0,66)
 
remove 0 67
>> Removing city A (0,67)
 
remove 0 68
>> Removing city A (0,68)
 
remove 0 69
>> Removing city A (0,69)
 
remove 0 70
>> Removing city A (0,70)
 
remove 0 71
>> Removing city A (0,71)
 
remove 0 72
>> Removing city A (0,72)
 
remove 0 73
>> Removing city A (0,73)
 
remove 0 74
>> Removing city A (0,74)
 
remove 0 75
>> Removing city A (0,75)
 
remove 0 76
>> Removing city A (0,76)
 
remove 0 77
>> Removing city A (0,77)
 
remove 0 78
>> Removing city A (0,78)
 
remove 0 79
>> Removing city A (0,79)
 
remove 0 80
>> Removing city A (0,80)
 
remove 0 81
>> Removing city A (0,81)
 
remove 0 82
>> Removing city A (0,82)
 
remove 0 83
>> Removing city A (0,83)
 
remove 0 84
>> Removing city A (0,84)
 
remove 0 85
>> Removing city A (0,85)
 
remove 0 86
>> Removing city A (0,86)
 
remove 0 87
>> Removing city A (0,87)
 
remove 0 88
>> Removing city A (0,88)
 
remove 0 89
>> Removing city A (0,89)
 
remove 0 90
>> Removing city A (0,90)
 
remove 0 91
>> Removing city A (0,91)
 
remove 0 92
>> Removing city A (0,92)
 
remove 0 93
>> Removing city A (0,93)
 
remove 0 94
>> Removing city A (0,94)
 
remove 0 95
>> Removing city A (0,95)
 
remove 0 96
>> Removing city A (0,96)
 
remove 0 97
>> Removing city A (0,97)
 
remove 0 98
>> Removing city A (0,98)
 
remove 0 99
>> Removing city A (0,99)
 
remove 0 100
>> Removing city A (0,100)
 
remove 0 101
>> Removing city A (0,101)
 
remove 0 102
>> Removing city A (0,102)
 
remove 0 103
>> Removing city A (0,103)
 
remove 0 104
>> Removing city A (0,104)
 
remove 0 105
>> Removing city A (0,105)
 
remove 0 106
>> Removing city A (0,106)
 
remove 0 107
>> Removing city A (0,107)
 
remove 0 108
>> Removing city A (0,108)
 
remove 0 109
>> Removing city A (0,109)
 
remove 0 110
>> Removing city A (0,110)
 
remove 0 111
>> Removing city A (0,111)
 
remove 0 112
>> Removing city A (0,112)
 
remove 0 113
>> Removing city A (0,113)
 
remove 0 114
>> Removing city A (0,114)
 
remove 0 115
>> Removing city A (0,115)
 
remove 0 116
>> Removing city A (0,116)
 
remove 0 117
>> Removing city A (0,117)
 
remove 0 118
>> Removing city A (0,118)
 
remove 0 119
>> Removing city A (0,119)
 
remove 0 120
>> Removing city A (0,120)
 
remove 0 121
>> Removing city A (0,121)
 
remove 0 122
>> Removing city A (0,122)
 
remove 0 123
>> Removing city A (0,123)
 
remove 0 124
>> Removing city A (0,124)
 
remove 0 125
>> Removing city A (0,125)
 
remove 0 126
>> Removing city A (0,126)
 
remove 0 127
>> Removing city A (0,127)
 
remove 0 128
>> Removing city A (0,128)
 
remove 0 129
>> Removing city A (0,129)
 
remove 0 130
>> Removing city A (0,130)
 
remove 0 131
>> Removing city A (0,131)
 
remove 0 132
>> Removing city A (0,132)
 
remove 0 133
>> Removing city A (0,133)
 
remove 0 134
>> Removing city A (0,134)
 
remove 0 135
>> Removing city A (0,135)
 
remove 0 136
>> Removing city A (0,136)
 
remove 0 137
>> Removing city A (0,137)
 
remove 0 138
>> Removing city A (0,138)
 
remove 0 139
>> Removing city A (0,139)
 
remove 0 140
>> Removing city A (0,140)
 
remove 0 141
>> Removing city A (0,141)
 
remove 0 142
>> Removing city A (0,142)
 
remove 0 143
>> Removing city A (0,143)
 
remove 0 144
>> Removing city A (0,144)
 
remove 0 145
>> Removing city A (0,145)
 
remove 0 146
>> Removing city A (0,146)
 
remove 0 147
>> Removing city A (0,147)
 
remove 0 148
>> Removing city A (0,148)
 
remove 0 149
>> Removing city A (0,149)
 
remove 0 150
>> Removing city A (0,150)
 
remove 0 151
>> Removing city A (0,151)
 
remove 0 152
>> Removing city A (0,152)
 
remove 0 153
>> Removing city A (0,153)
 
remove 0 154
>> Removing city A (0,154)
 
remove 0 155
>> Removing city A (0,155)
 
remove 0 156
>> Removing city A (0,156)
 
remove 0 157
>> Removing city A (0,157)
 
remove 0 158
>> Removing city A (0,158)
 
remove 0 159
>> Removing city A (0,159)
 
remove 0 160
>> Removing city A (0,160)
 
remove 0 161
>> Removing city A (0,161)
 
remove 0 162
>> Removing city A (0,162)
 
remove 0 163
>> Removing city A (0,163)
 
remove 0 164
>> Removing city A (0,164)
 
remove 0 165
>> Removing city A (0,165)
 
remove 0 166
>> Removing city A (0,166)
 
remove 0 167
>> Removing city A (0,167)
 
remove 0 168
>> Removing city A (0,168)
 
remove 0 169
>> Removing city A (0,169)
 
remove 0 170
>> Removing city A (0,170)
 
remove 0 171
>> Removing city A (0,171)
 
remove 0 172
>> Removing city A (0,172)
 
remove 0 173
>> Removing city A (0,173)
 
remove 0 174
>> Removing city A (0,174)
 
remove 0 175
>> Removing city A (0,175)
 
remove 0 176
>> Removing city A (0,176)
 
remove 0 177
>> Removing city A (0,177)
 
remove 0 178
>> Removing city A (0,178)
 
remove 0 179
>> Removing city A (0,179)
 
remove 0 180
>> Removing city A (0,180)
 
remove 0 181
>> Removing city A (0,181)
 
remove 0 182
>> Removing city A (0,182)
 
remove 0 183
>> Removing city A (0,183)
 
remove 0 184
>> Removing city A (0,184)
 
remove 0 185
>> Removing city A (0,185)
 
remove 0 186
>> Removing city A (0,186)
 
remove 0 187
>> Removing city A (0,187)
 
remove 0 188
>> Removing city A (0,188)
 
remove 0 189
>> Removing city A (0,189)
 
remove 0 190
>> Removing city A (0,190)
 
remove 0 191
>> Removing city A (0,191)
 
remove 0 192
>> Removing city A (0,192)
 
remove 0 193
>> Removing city A (0,193)
 
remove 0 194
>> Removing city A (0,194)
 
remove 0 195
>> Removing city A (0,195)
 
remove 0 196
>> Removing city A (0,196)
 
remove 0 197
>> Removing city A (0,197)
 
remove 0 198
>> Removing city A (0,198)
 
remove 0 199
>> Removing city A (0,199)
 
remove 0 200
>> Removing city A (0,200)
 
remove 0 201
>> Removing city A (0,201)
 
remove 0 202
>> Removing city A (0,202)
 
remove 0 203
>> Removing city A (0,203)
 
remove 0 204
>> Removing city A (0,204)
 
remove 0 205
>> Removing city A (0,205)
 
remove 0 206
>> Removing city A (0,206)
 
remove 0 207
>> Removing city A (0,207)
 
remove 0 208
>> Removing city A (0,208)
 
remove 0 209
>> Removing city A (0,209)
 
remove 0 210
>> Removing city A (0,210)
 
remove 0 211
>> Removing city A (0,211)
 
remove 0 212
>> Removing city A (0,212)
 
remove 0 213
>> Removing city A (0,213)
 
remove 0 214
>> Removing city A (0,214)
 
remove 0 215
>> Removing city A (0,215)
 
remove 0 216
>> Removing city A (0,216)
 
remove 0 217
>> Removing city A (0,217)
 
remove 0 218
>> Removing city A (0,218)
 
remove 0 219
>> Removing city A (0,219)
 
remove 0 220
>> Removing city A (0,220)
 
remove 0 221
>> Removing city A (0,221)
 
remove 0 222
>> Removing city A (0,222)
 
remove 0 223
>> Removing city A (0,223)
 
remove 0 224
>> Removing city A (0,224)
 
remove 0 225
>> Removing city A (0,225)
 
remove 0 226
>> Removing city A (0,226)
 
remove 0 227
>> Removing city A (0,227)
 
remove 0 228
>> Removing city A (0,228)
 
remove 0 229
>> Removing city A (0,229)
 
remove 0 230
>> Removing city A (0,230)
 
remove 0 231
>> Removing city A (0,231)
 
remove 0 232
>> Removing city A (0,232)
 
remove 0 233
>> Removing city A (0,233)
 
remove 0 234
>> Removing city A (0,234)
 
remove 0 235
>> Removing city A (0,235)
 
remove 0 236
>> Removing city A (0,236)
 
remove 0 237
>> Removing city A (0,237)
 
remove 0 238
>> Removing city A (0,238)
 
remove 0 239
>> Removing city A (0,239)
 
remove 0 240
>> Removing city A (0,240)
 
remove 0 241
>> Removing city A (0,241)
 
remove 0 242
>> Removing city A (0,242)
 
remove 0 243
>> Removing city A (0,243)
 
remove 0 244
>> Removing city A (0,244)
 
remove 0 245
>> Removing city A (0,245)
 
remove 0 246
>> Removing city A (0,246)
 
remove 0 247
>> Removing city A (0,247)
 
remove 0 248
>> Removing city A (0,248)
 
remove 0 249
>> Removing city A (0,249)
 
remove 0 250
>> Removing city A (0,250)
 
remove 0 251
>> Removing city A (0,251)
 
remove 0 252
>> Removing city A (0,252)
 
remove 0 253
>> Removing city A (0,253)
 
remove 0 254
>> Removing city A (0,254)
 
remove 0 255
>> Removing city A (0,255)
 
remove 0 256
>> Removing city A (0,256)
 
remove 0 257
>> Removing city A (0,257)
 
remove 0 258
>> Removing city A (0,258)
 
remove 0 259
>> Removing city A (0,259)
 
remove 0 260
>> Removing city A (0,260)
 
remove 0 261
>> Removing city A (0,261)
 
remove 0 262
>> Removing city A (0,262)
 
remove 0 263
>> Removing city A (0,263)
 
remove 0 264
>> Removing city A (0,264)
 
remove 0 265
>> Removing city A (0,265)
 
remove 0 266
>> Removing city A (0,266)
 
remove 0 267
>> Removing city A (0,267)
 
remove 0 268
>> Removing city A (0,268)
 
remove 0 269
>> Removing city A (0,269)
 
remove 0 270
>> Removing city A (0,270)
 
remove 0 271
>> Removing city A (0,271)
 
remove 0 272
>> Removing city A (0,272)
 
remove 0 273
>> Removing city A (0,273)
 
remove 0 274
>> Removing city A (0,274)
 
remove 0 275
>> Removing city A (0,275)
 
remove 0 276
>> Removing city A (0,276)
 
remove 0 277
>> Removing city A (0,277)
 
remove 0 278
>> Removing city A (0,278)
 
remove 0 279
>> Removing city A (0,279)
 
remove 0 280
>> Removing city A (0,280)
 
remove 0 281
>> Removing city A (0,281)
 
remove 0 282
>> Removing city A (0,282)
 
remove 0 283
>> Removing city A (0,283)
 
remove 0 284
>> Removing city A (0,284)
 
remove 0 285
>> Removing city A (0,285)
 
remove 0 286
>> Removing city A (0,286)
 
remove 0 287
>> Removing city A (0,287)
 
remove 0 288
>> Removing city A (0,288)
 
remove 0 289
>> Removing city A (0,289)
 
remove 0 290
>> Removing city A (0,290)
 
remove 0 291
>> Removing city A (0,291)
 
remove 0 292
>> Removing city A (0,292)
 
remove 0 293
>> Removing city A (0,293)
 
remove 0 294
>> Removing city A (0,294)
 
remove 0 295
>> Removing city A (0,295)
 
remove 0 296
>> Removing city A (0,296)
 
remove 0 297
>> Removing city A (0,297)
 
remove 0 298
>> Removing city A (0,298)
 
remove 0 299
>> Removing city A (0,299)
 
remove 0 300
>> Removing city A (0,300)
 
remove 0 301
>> Removing city A (0,301)
 
remove 0 302
>> Removing city A (0,302)
 
remove 0 303
>> Removing city A (0,303)
 
remove 0 304
>> Removing city A (0,304)
 
remove 0 305
>> Removing city A (0,305)
 
remove 0 306
>> Removing city A (0,306)
 
remove 0 307
>> Removing city A (0,307)
 
remove 0 308
>> Removing city A (0,308)
 
remove 0 309
>> Removing city A (0,309)
 
remove 0 310
>> Removing city A (0,310)
 
remove 0 311
>> Removing city A (0,311)
 
remove 0 312
>> Removing city A (0,312)
 
remove 0 313
>> Removing city A (0,313)
 
remove 0 314
>> Removing city A (0,314)
 
remove 0 315
>> Removing city A (0,315)
 
remove 0 316
>> Removing city A (0,316)
 
remove 0 317
>> Removing city A (0,317)
 
remove 0 318
>> Removing city A (0,318)
 
remove 0 319
>> Removing city A (0,319)
 
remove 0 320
>> Removing city A (0,320)
 
remove 0 321
>> Removing city A (0,321)
 
remove 0 322
>> Removing city A (0,322)
 
remove 0 323
>> Removing city A (0,323)
 
remove 0 324
>> Removing city A (0,324)
 
remove 0 325
>> Removing city A (0,325)
 
remove 0 326
>> Removing city A (0,326)
 
remove 0 327
>> Removing city A (0,327)
 
remove 0 328
>> Removing city A (0,328)
 
remove 0 329
>> Removing city A (0,329)
 
remove 0 330
>> Removing city A (0,330)
 
remove 0 331
>> Removing city A (0,331)
 
remove 0 332
>> Removing city A (0,332)
 
remove 0 333
>> Removing city A (0,333)
 
remove 0 334
>> Removing city A (0,334)
 
remove 0 335
>> Removing city A (0,335)
 
remove 0 336
>> Removing city A (0,336)
 
remove 0 337
>> Removing city A (0,337)
 
remove 0 338
>> Removing city A (0,338)
 
remove 0 339
>> Removing city A (0,339)
 
remove 0 340
>> Removing city A (0,340)
 
remove 0 341
>> Removing city A (0,341)
 
remove 0 342
>> Removing city A (0,342)
 
remove 0 343
>> Removing city A (0,343)
 
remove 0 344
>> Removing city A (0,344)
 
remove 0 345
>> Removing city A (0,345)
 
remove 0 346
>> Removing city A (0,346)
 
remove 0 347
>> Removing city A (0,347)
 
remove 0 348
>> Removing city A (0,348)
 
remove 0 349
>> Removing city A (0,349)
 
remove 0 350
>> Removing city A (0,350)
 
remove 0 351
>> Removing city A (0,351)
 
remove 0 352
>> Removing city A (0,352)
 
remove 0 353
>> Removing city A (0,353)
 
remove 0 354
>> Removing city A (0,354)
 
remove 0 355
>> Removing city A (0,355)
 
remove 0 356
>> Removing city A (0,356)
 
remove 0 357
>> Removing city A (0,357)
 
remove 0 358
>> Removing city A (0,358)
 
remove 0 359
>> Removing city A (0,359)
 
remove 0 360
>> Removing city A (0,360)
 
remove 0 361
>> Removing city A (0,361)
 
remove 0 362
>> Removing city A (0,362)
 
remove 0 363
>> Removing city A (0,363)
 
remove 0 364
>> Removing city A (0,364)
 
remove 0 365
>> Removing city A (0,365)
 
remove 0 366
>> Removing city A (0,366)
 
remove 0 367
>> Removing city A (0,367)
 
remove 0 368
>> Removing city A (0,368)
 
remove 0 369
>> Removing city A (0,369)
 
remove 0 370
>> Removing city A (0,370)
 
remove 0 371
>> Removing city A (0,371)
 
remove 0 372
>> Removing city A (0,372)
 
remove 0 373
>> Removing city A (0,373)
 
remove 0 374
>> Removing city A (0,374)
 
remove 0 375
>> Removing city A (0,375)
 
remove 0 376
>> Removing city A (0,376)
 
remove 0 377
>> Removing city A (0,377)
 
remove 0 378
>> Removing city A (0,378)
 
remove 0 379
>> Removing city A (0,379)
 
remove 0 380
>> Removing city A (0,380)
 
remove 0 381
>> Removing city A (0,381)
 
remove 0 382
>> Removing city A (0,382)
 
remove 0 383
>> Removing city A (0,383)
 
remove 0 384
>> Removing city A (0,384)
 
remove 0 385
>> Removing city A (0,385)
 
remove 0 386
>> Removing city A (0,386)
 
remove 0 387
>> Removing city A (0,387)
 
remove 0 388
>> Removing city A (0,388)
 
remove 0 389
>> Removing city A (0,389)
 
remove 0 390
>> Removing city A (0,390)
 
remove 0 391
>> Removing city A (0,391)
 
remove 0 392
>> Removing city A (0,392)
 
remove 0 393
>> Removing city A (0,393)
 
remove 0 394
>> Removing city A (0,394)
 
remove 0 395
>> Removing city A (0,395)
 
remove 0 396
>> Removing city A (0,396)
 
remove 0 397
>> Removing city A (0,397)
 
remove 0 398
>> Removing city A (0,398)
 
remove 0 399
>> Removing city A (0,399)
 
remove 0 400
>> Removing city A (0,400)
 
remove 0 401
>> Removing city A (0,401)
 
remove 0 402
>> Removing city A (0,402)
 
remove 0 403
>> Removing city A (0,403)
 
remove 0 404
>> Removing city A (0,404)
 
remove 0 405
>> Removing city A (0,405)
 
remove 0 406
>> Removing city A (0,406)
 
remove 0 407
>> Removing city A (0,407)
 
remove 0 408
>> Removing city A (0,408)
 
remove 0 409
>> Removing city A (0,409)
 
remove 0 410
>> Removing city A (0,410)
 
remove 0 411
>> Removing city A (0,411)
 
remove 0 412
>> Removing city A (0,412)
 
remove 0 413
>> Removing city A (0,413)
 
remove 0 414
>> Removing city A (0,414)
 
remove 0 415
>> Removing city A (0,415)
 
remove 0 416
>> Removing city A (0,416)
 
remove 0 417
>> Removing city A (0,417)
 
remove 0 418
>> Removing city A (0,418)
 
remove 0 419
>> Removing city A (0,419)
 
remove 0 420
>> Removing city A (0,420)
 
remove 0 421
>> Removing city A (0,421)
 
remove 0 422
>> Removing city A (0,422)
 
remove 0 423
>> Removing city A (0,423)
 
remove 0 424
>> Removing city A (0,424)
 
remove 0 425
>> Removing city A (0,425)
 
remove 0 426
>> Removing city A (0,426)
 
remove 0 427
>> Removing city A (0,427)
 
remove 0 428
>> Removing city A (0,428)
 
remove 0 429
>> Removing city A (0,429)
 
remove 0 430
>> Removing city A (0,430)
 
remove 0 431
>> Removing city A (0,431)
 
remove 0 432
>> Removing city A (0,432)
 
remove 0 433
>> Removing city A (0,433)
 
remove 0 434
>> Removing city A (0,434)
 
remove 0 435
>> Removing city A (0,435)
 
remove 0 436
>> Removing city A (0,436)
 
remove 0 437
>> Removing city A (0,437)
 
remove 0 438
>> Removing city A (0,438)
 
remove 0 439
>> Removing city A (0,439)
 
remove 0 440
>> Removing city A (0,440)
 
remove 0 441
>> Removing city A (0,441)
 
remove 0 442
>> Removing city A (0,442)
 
remove 0 443
>> Removing city A (0,443)
 
remove 0 444
>> Removing city A (0,444)
 
remove 0 445
>> Removing city A (0,445)
 
remove 0 446
>> Removing city A (0,446)
 
remove 0 447
>> Removing city A (0,447)
 
remove 0 448
>> Removing city A (0,448)
 
remove 0 449
>> Removing city A (0,449)
 
remove 0 450
>> Removing city A (0,450)
 
remove 0 451
>> Removing city A (0,451)
 
remove 0 452
>> Removing city A (0,452)
 
remove 0 453
>> Removing city A (0,453)
 
remove 0 454
>> Removing city A (0,454)
 
remove 0 455
>> Removing city A (0,455)
 
remove 0 456
>> Removing city A (0,456)
 
remove 0 457
>> Removing city A (0,457)
 
remove 0 458
>> Removing city A (0,458)
 
remove 0 459
>> Removing city A (0,459)
 
remove 0 460
>> Removing city A (0,460)
 
remove 0 461
>> Removing city A (0,461)
 
remove 0 462
>> Removing city A (0,462)
 
remove 0 463
>> Removing city A (0,463)
 
remove 0 464
>> Removing city A (0,464)
 
remove 0 465
>> Removing city A (0,465)
 
remove 0 466
>> Removing city A (0,466)
 
remove 0 467
>> Removing city A (0,467)
 
remove 0 468
>> Removing city A (0,468)
 
remove 0 469
>> Removing city A (0,469)
 
remove 0 470
>> Removing city A (0,470)
 
remove 0 471
>> Removing city A (0,471)
 
remove 0 472
>> Removing city A (0,472)
 
remove 0 473
>> Removing city A (0,473)
 
remove 0 474
>> Removing city A (0,474)
 
remove 0 475
>> Removing city A (0,475)
 
remove 0 476
>> Removing city A (0,476)
 
remove 0 477
>> Removing city A (0,477)
 
remove 0 478
>> Removing city A (0,478)
 
remove 0 479
>> Removing city A (0,479)
 
remove 0 480
>> Removing city A (0,480)
 
remove 0 481
>> Removing city A (0,481)
 
remove 0 482
>> Removing city A (0,482)
 
remove 0 483
>> Removing city A (0,483)
 
remove 0 484
>> Removing city A (0,484)
 
remove 0 485
>> Removing city A (0,485)
 
remove 0 486
>> Removing city A (0,486)
 
remove 0 487
>> Removing city A (0,487)
 
remove 0 488
>> Removing city A (0,488)
 
remove 0 489
>> Removing city A (0,489)
 
remove 0 490
>> Removing city A (0,490)
 
remove 0 491
>> Removing city A (0,491)
 
remove 0 492
>> Removing city A (0,492)
 
remove 0 493
>> Removing city A (0,493)
 
remove 0 494
>> Removing city A (0,494)
 
remove 0 495
>> Removing city A (0,495)
 
remove 0 496
>> Removing city A (0,496)
 
remove 0 497
>> Removing city A (0,497)
 
remove 0 498
>> Removing city A (0,498)
 
remove 0 499
>> Removing city A (0,499)
 
remove 0 500
>> Removing city A (0,500)
 
remove 0 501
>> Removing city A (0,501)
 
remove 0 502
>> Removing city A (0,502)
 
remove 0 503
>> Removing city A (0,503)
 
remove 0 504
>> Removing city A (0,504)
 
remove 0 505
>> Removing city A (0,505)
 
remove 0 506
>> Removing city A (0,506)
 
remove 0 507
>> Removing city A (0,507)
 
remove 0 508
>> Removing city A (0,508)
 
remove 0 509
>> Removing city A (0,509)
 
remove 0 510
>> Removing city A (0,510)
 
remove 0 511
>> Removing city A (0,511)
 
remove 0 512
>> Removing city A (0,512)
 
remove 0 513
>> Removing city A (0,513)
 
remove 0 514
>> Removing city A (0,514)
 
remove 0 515
>> Removing city A (0,515)
 
remove 0 516
>> Removing city A (0,516)
 
remove 0 517
>> Removing city A (0,517)
 
remove 0 518
>> Removing city A (0,518)
 
remove 0 519
>> Removing city A (0,519)
 
remove 0 520
>> Removing city A (0,520)
 
remove 0 521
>> Removing city A (0,521)
 
remove 0 522
>> Removing city A (0,522)
 
remove 0 523
>> Removing city A (0,523)
 
remove 0 524
>> Removing city A (0,524)
 
remove 0 525
>> Removing city A (0,525)
 
remove 0 526
>> Removing city A (0,526)
 
remove 0 527
>> Removing city A (0,527)
 
remove 0 528
>> Removing city A (0,528)
 
remove 0 529
>> Removing city A (0,529)
 
remove 0 530
>> Removing city A (0,530)
 
remove 0 531
>> Removing city A (0,531)
 
remove 0 532
>> Removing city A (0,532)
 
remove 0 533
>> Removing city A (0,533)
 
remove 0 534
>> Removing city A (0,534)
 
remove 0 535
>> Removing city A (0,535)
 
remove 0 536
>> Removing city A (0,536)
 
remove 0 537
>> Removing city A (0,537)
 
remove 0 538
>> Removing city A (0,538)
 
remove 0 539
>> Removing city A (0,539)
 
remove 0 540
>> Removing city A (0,540)
 
remove 0 541
>> Removing city A (0,541)
 
remove 0 542
>> Removing city A (0,542)
 
remove 0 543
>> Removing city A (0,543)
 
remove 0 544
>> Removing city A (0,544)
 
remove 0 545
>> Removing city A (0,545)
 
remove 0 546
>> Removing city A (0,546)
 
remove 0 547
>> Removing city A (0,547)
 
remove 0 548
>> Removing city A (0,548)
 
remove 0 549
>> Removing city A (0,549)
 
remove 0 550
>> Removing city A (0,550)
 
remove 0 551
>> Removing city A (0,551)
 
remove 0 552
>> Removing city A (0,552)
 
remove 0 553
>> Removing city A (0,553)
 
remove 0 554
>> Removing city A (0,554)
 
remove 0 555
>> Removing city A (0,555)
 
remove 0 556
>> Removing city A (0,556)
 
remove 0 557
>> Removing city A (0,557)
 
remove 0 558
>> Removing city A (0,558)
 
remove 0 559
>> Removing city A (0,559)
 
remove 0 560
>> Removing city A (0,560)
 
remove 0 561
>> Removing city A (0,561)
 
remove 0 562
>> Removing city A (0,562)
 
remove 0 563
>> Removing city A (0,563)
 
remove 0 564
>> Removing city A (0,564)
 
remove 0 565
>> Removing city A (0,565)
 
remove 0 566
>> Removing city A (0,566)
 
remove 0 567
>> Removing city A (0,567)
 
remove 0 568
>> Removing city A (0,568)
 
remove 0 569
>> Removing city A (0,569)
 
remove 0 570
>> Removing city A (0,570)
 
remove 0 571
>> Removing city A (0,571)
 
remove 0 572
>> Removing city A (0,572)
 
remove 0 573
>> Removing city A (0,573)
 
remove 0 574
>> Removing city A (0,574)
 
remove 0 575
>> Removing city A (0,575)
 
remove 0 576
>> Removing city A (0,576)
 
remove 0 577
>> Removing city A (0,577)
 
remove 0 578
>> Removing city A (0,578)
 
remove 0 579
>> Removing city A (0,579)
 
remove 0 580
>> Removing city A (0,580)
 
remove 0 581
>> Removing city A (0,581)
 
remove 0 582
>> Removing city A (0,582)
 
remove 0 583
>> Removing city A (0,583)
 
remove 0 584
>> Removing city A (0,584)
 
remove 0 585
>> Removing city A (0,585)
 
remove 0 586
>> Removing city A (0,586)
 
remove 0 587
>> Removing city A (0,587)
 
remove 0 588
>> Removing city A (0,588)
 
remove 0 589
>> Removing city A (0,589)
 
remove 0 590
>> Removing city A (0,590)
 
remove 0 591
>> Removing city A (0,591)
 
remove 0 592
>> Removing city A (0,592)
 
remove 0 593
>> Removing city A (0,593)
 
remove 0 594
>> Removing city A (0,594)
 
remove 0 595
>> Removing city A (0,595)
 
remove 0 596
>> Removing city A (0,596)
 
remove 0 597
>> Removing city A (0,597)
 
remove 0 598
>> Removing city A (0,598)
 
remove 0 599
>> Removing city A (0,599)
 
remove 0 600
>> Removing city A (0,600)
 
remove 0 601
>> Removing city A (0,601)
 
remove 0 602
>> Removing city A (0,602)
 
remove 0 603
>> Removing city A (0,603)
 
remove 0 604
>> Removing city A (0,604)
 
remove 0 605
>> Removing city A (0,605)
 
remove 0 606
>> Removing city A (0,606)
 
remove 0 607
>> Removing city A (0,607)
 
remove 0 608
>> Removing city A (0,608)
 
remove 0 609
>> Removing city A (0,609)
 
remove 0 610
>> Removing city A (0,610)
 
remove 0 611
>> Removing city A (0,611)
 
remove 0 612
>> Removing city A (0,612)
 
remove 0 613
>> Removing city A (0,613)
 
remove 0 614
>> Removing city A (0,614)
 
remove 0 615
>> Removing city A (0,615)
 
remove 0 616
>> Removing city A (0,616)
 
remove 0 617
>> Removing city A (0,617)
 
remove 0 618
>> Removing city A (0,618)
 
remove 0 619
>> Removing city A (0,619)
 
remove 0 620
>> Removing city A (0,620)
 
remove 0 621
>> Removing city A (0,621)
 
remove 0 622
>> Removing city A (0,622)
 
remove 0 623
>> Removing city A (0,623)
 
remove 0 624
>> Removing city A (0,624)
 
remove 0 625
>> Removing city A (0,625)
 
remove 0 626
>> Removing city A (0,626)
 
remove 0 627
>> Removing city A (0,627)
 
remove 0 628
>> Removing city A (0,628)
 
remove 0 629
>> Removing city A (0,629)
 
remove 0 630
>> Removing city A (0,630)
 
remove 0 631
>> Removing city A (0,631)
 
remove 0 632
>> Removing city A (0,632)
 
remove 0 633
>> Removing city A (0,633)
 
remove 0 634
>> Removing city A (0,634)
 
remove 0 635
>> Removing city A (0,635)
 
remove 0 636
>> Removing city A (0,636)
 
remove 0 637
>> Removing city A (0,637)
 
remove 0 638
>> Removing city A (0,638)
 
remove 0 639
>> Removing city A (0,639)
 
remove 0 640
>> Removing city A (0,640)
 
remove 0 641
>> Removing city A (0,641)
 
remove 0 642
>> Removing city A (0,642)
 
remove 0 643
>> Removing city A (0,643)
 
remove 0 644
>> Removing city A (0,644)
 
remove 0 645
>> Removing city A (0,645)
 
remove 0 646
>> Removing city A (0,646)
 
remove 0 647
>> Removing city A (0,647)
 
remove 0 648
>> Removing city A (0,648)
 
remove 0 649
>> Removing city A (0,649)
 
remove 0 650
>> Removing city A (0,650)
 
remove 0 651
>> Removing city A (0,651)
 
remove 0 652
>> Removing city A (0,652)
 
remove 0 653
>> Removing city A (0,653)
 
remove 0 654
>> Removing city A (0,654)
 
remove 0 655
>> Removing city A (0,655)
 
remove 0 656
>> Removing city A (0,656)
 
remove 0 657
>> Removing city A (0,657)
 
remove 0 658
>> Removing city A (0,658)
 
remove 0 659
>> Removing city A (0,659)
 
remove 0 660
>> Removing city A (0,660)
 
remove 0 661
>> Removing city A (0,661)
 
remove 0 662
>> Removing city A (0,662)
 
remove 0 663
>> Removing city A (0,663)
 
remove 0 664
>> Removing city A (0,664)
 
remove 0 665
>> Removing city A (0,665)
 
remove 0 666
>> Removing city A (0,666)
 
remove 0 667
>> Removing city A (0,667)
 
remove 0 668
>> Removing city A (0,668)
 
remove 0 669
>> Removing city A (0,669)
 
remove 0 670
>> Removing city A (0,670)
 
remove 0 671
>> Removing city A (0,671)
 
remove 0 672
>> Removing city A (0,672)
 
remove 0 673
>> Removing city A (0,673)
 
remove 0 674
>> Removing city A (0,674)
 
remove 0 675
>> Removing city A (0,675)
 
remove 0 676
>> Removing city A (0,676)
 
remove 0 677
>> Removing city A (0,677)
 
remove 0 678
>> Removing city A (0,678)
 
remove 0 679
>> Removing city A (0,679)
 
remove 0 680
>> Removing city A (0,680)
 
remove 0 681
>> Removing city A (0,681)
 
remove 0 682
>> Removing city A (0,682)
 
remove 0 683
>> Removing city A (0,683)
 
remove 0 684
>> Removing city A (0,684)
 
remove 0 685
>> Removing city A (0,685)
 
remove 0 686
>> Removing city A (0,686)
 
remove 0 687
>> Removing city A (0,687)
 
remove 0 688
>> Removing city A (0,688)
 
remove 0 689
>> Removing city A (0,689)
 
remove 0 690
>> Removing city A (0,690)
 
remove 0 691
>> Removing city A (0,691)
 
remove 0 692
>> Removing city A (0,692)
 
remove 0 693
>> Removing city A (0,693)
 
remove 0 694
>> Removing city A (0,694)
 
remove 0 695
>> Removing city A (0,695)
 
remove 0 696
>> Removing city A (0,696)
 
remove 0 697
>> Removing city A (0,697)
 
remove 0 698
>> Removing city A (0,698)
 
remove 0 699
>> Removing city A (0,699)
 
remove 0 700
>> Removing city A (0,700)
 
remove 0 701
>> Removing city A (0,701)
 
remove 0 702
>> Removing city A (0,702)
 
remove 0 703
>> Removing city A (0,703)
 
remove 0 704
>> Removing city A (0,704)
 
remove 0 705
>> Removing city A (0,705)
 
remove 0 706
>> Removing city A (0,706)
 
remove 0 707
>> Removing city A (0,707)
 
remove 0 708
>> Removing city A (0,708)
 
remove 0 709
>> Removing city A (0,709)
 
remove 0 710
>> Removing city A (0,710)
 
remove 0 711
>> Removing city A (0,711)
 
remove 0 712
>> Removing city A (0,712)
 
remove 0 713
>> Removing city A (0,713)
 
remove 0 714
>> Removing city A (0,714)
 
remove 0 715
>> Removing city A (0,715)
 
remove 0 716
>> Removing city A (0,716)
 
remove 0 717
>> Removing city A (0,717)
 
remove 0 718
>> Removing city A (0,718)
 
remove 0 719
>> Removing city A (0,719)
 
remove 0 720
>> Removing city A (0,720)
 
remove 0 721
>> Removing city A (0,721)
 
remove 0 722
>> Removing city A (0,722)
 
remove 0 723
>> Removing city A (0,723)
 
remove 0 724
>> Removing city A (0,724)
 
remove 0 725
>> Removing city A (0,725)
 
remove 0 726
>> Removing city A (0,726)
 
remove 0 727
>> Removing city A (0,727)
 
remove 0 728
>> Removing city A (0,728)
 
remove 0 729
>> Removing city A (0,729)
 
remove 0 730
>> Removing city A (0,730)
 
remove 0 731
>> Removing city A (0,731)
 
remove 0 732
>> Removing city A (0,732)
 
remove 0 733
>> Removing city A (0,733)
 
remove 0 734
>> Removing city A (0,734)
 
remove 0 735
>> Removing city A (0,735)
 
remove 0 736
>> Removing city A (0,736)
 
remove 0 737
>> Removing city A (0,737)
 
remove 0 738
>> Removing city A (0,738)
 
remove 0 739
>> Removing city A (0,739)
 
remove 0 740
>> Removing city A (0,740)
 
remove 0 741
>> Removing city A (0,741)
 
remove 0 742
>> Removing city A (0,742)
 
remove 0 743
>> Removing city A (0,743)
 
remove 0 744
>> Removing city A (0,744)
 
remove 0 745
>> Removing city A (0,745)
 
remove 0 746
>> Removing city A (0,746)
 
remove 0 747
>> Removing city A (0,747)
 
remove 0 748
>> Removing city A (0,748)
 
remove 0 749
>> Removing city A (0,749)
 
remove 0 750
>> Removing city A (0,750)
 
remove 0 751
>> Removing city A (0,751)
 
remove 0 752
>> Removing city A (0,752)
 
remove 0 753
>> Removing city A (0,753)
 
remove 0 754
>> Removing city A (0,754)
 
remove 0 755
>> Removing city A (0,755)
 
remove 0 756
>> Removing city A (0,756)
 
remove 0 757
>> Removing city A (0,757)
 
remove 0 758
>> Removing city A (0,758)
 
remove 0 759
>> Removing city A (0,759)
 
remove 0 760
>> Removing city A (0,760)
 
remove 0 761
>> Removing city A (0,761)
 
remove 0 762
>> Removing city A (0,762)
 
remove 0 763
>> Removing city A (0,763)
 
remove 0 764
>> Removing city A (0,764)
 
remove 0 765
>> Removing city A (0,765)
 
remove 0 766
>> Removing city A (0,766)
 
remove 0 767
>> Removing city A (0,767)
 
remove 0 768
>> Removing city A (0,768)
 
remove 0 769
>> Removing city A (0,769)
 
remove 0 770
>> Removing city A (0,770)
 
remove 0 771
>> Removing city A (0,771)
 
remove 0 772
>> Removing city A (0,772)
 
remove 0 773
>> Removing city A (0,773)
 
remove 0 774
>> Removing city A (0,774)
 
remove 0 775
>> Removing city A (0,775)
 
remove 0 776
>> Removing city A (0,776)
 
remove 0 777
>> Removing city A (0,777)
 
remove 0 778
>> Removing city A (0,778)
 
remove 0 779
>> Removing city A (0,779)
 
remove 0 780
>> Removing city A (0,780)
 
remove 0 781
>> Removing city A (0,781)
 
remove 0 782
>> Removing city A (0,782)
 
remove 0 783
>> Removing city A (0,783)
 
remove 0 784
>> Removing city A (0,784)
 
remove 0 785
>> Removing city A (0,785)
 
remove 0 786
>> Removing city A (0,786)
 
remove 0 787
>> Removing city A (0,787)
 
remove 0 788
>> Removing city A (0,788)
 
remove 0 789
>> Removing city A (0,789)
 
remove 0 790
>> Removing city A (0,790)
 
remove 0 791
>> Removing city A (0,791)
 
remove 0 792
>> Removing city A (0,792)
 
remove 0 793
>> Removing city A (0,793)
 
remove 0 794
>> Removing city A (0,794)
 
remove 0 795
>> Removing city A (0,795)
 
remove 0 796
>> Removing city A (0,796)
 
remove 0 797
>> Removing city A (0,797)
 
remove 0 798
>> Removing city A (0,798)
 
remove 0 799
>> Removing city A (0,799)
 
remove 0 800
>> Removing city A (0,800)
 
remove 0 801
>> Removing city A (0,801)
 
remove 0 802
>> Removing city A (0,802)
 
remove 0 803
>> Removing city A (0,803)
 
remove 0 804
>> Removing city A (0,804)
 
remove 0 805
>> Removing city A (0,805)
 
remove 0 806
>> Removing city A (0,806)
 
remove 0 807
>> Removing city A (0,807)
 
remove 0 808
>> Removing city A (0,808)
 
remove 0 809
>> Removing city A (0,809)
 
remove 0 810
>> Removing city A (0,810)
 
remove 0 811
>> Removing city A (0,811)
 
remove 0 812
>> Removing city A (0,812)
 
remove 0 813
>> Removing city A (0,813)
 
remove 0 814
>> Removing city A (0,814)
 
remove 0 815
>> Removing city A (0,815)
 
remove 0 816
>> Removing city A (0,816)
 
remove 0 817
>> Removing city A (0,817)
 
remove 0 818
>> Removing city A (0,818)
 
remove 0 819
>> Removing city A (0,819)
 
remove 0 820
>> Removing city A (0,820)
 
remove 0 821
>> Removing city A (0,821)
 
remove 0 822
>> Removing city A (0,822)
 
remove 0 823
>> Removing city A (0,823)
 
remove 0 824
>> Removing city A (0,824)
 
remove 0 825
>> Removing city A (0,825)
 
remove 0 826
>> Removing city A (0,826)
 
remove 0 827
>> Removing city A (0,827)
 
remove 0 828
>> Removing city A (0,828)
 
remove 0 829
>> Removing city A (0,829)
 
remove 0 830
>> Removing city A (0,830)
 
remove 0 831
>> Removing city A (0,831)
 
remove 0 832
>> Removing city A (0,832)
 
remove 0 833
>> Removing city A (0,833)
 
remove 0 834
>> Removing city A (0,834)
 
remove 0 835
>> Removing city A (0,835)
 
remove 0 836
>> Removing city A (0,836)
 
remove 0 837
>> Removing city A (0,837)
 
remove 0 838
>> Removing city A (0,838)
 
remove 0 839
>> Removing city A (0,839)
 
remove 0 840
>> Removing city A (0,840)
 
remove 0 841
>> Removing city A (0,841)
 
remove 0 842
>> Removing city A (0,842)
 
remove 0 843
>> Removing city A (0,843)
 
remove 0 844
>> Removing city A (0,844)
 
remove 0 845
>> Removing city A (0,845)
 
remove 0 846
>> Removing city A (0,846)
 
remove 0 847
>> Removing city A (0,847)
 
remove 0 848
>> Removing city A (0,848)
 
remove 0 849
>> Removing city A (0,849)
 
remove 0 850
>> Removing city A (0,850)
 
remove 0 851
>> Removing city A (0,851)
 
remove 0 852
>> Removing city A (0,852)
 
remove 0 853
>> Removing city A (0,853)
 
remove 0 854
>> Removing city A (0,854)
 
remove 0 855
>> Removing city A (0,855)
 
remove 0 856
>> Removing city A (0,856)
 
remove 0 857
>> Removing city A (0,857)
 
remove 0 858
>> Removing city A (0,858)
 
remove 0 859
>> Removing city A (0,859)
 
remove 0 860
>> Removing city A (0,860)
 
remove 0 861
>> Removing city A (0,861)
 
remove 0 862
>> Removing city A (0,862)
 
remove 0 863
>> Removing city A (0,863)
 
remove 0 864
>> Removing city A (0,864)
 
remove 0 865
>> Removing city A (0,865)
 
remove 0 866
>> Removing city A (0,866)
 
remove 0 867
>> Removing city A (0,867)
 
remove 0 868
>> Removing city A (0,868)
 
remove 0 869
>> Removing city A (0,869)
 
remove 0 870
>> Removing city A (0,870)
 
remove 0 871
>> Removing city A (0,871)
 
remove 0 872
>> Removing city A (0,872)
 
remove 0 873
>> Removing city A (0,873)
 
remove 0 874
>> Removing city A (0,874)
 
remove 0 875
>> Removing city A (0,875)
 
remove 0 876
>> Removing city A (0,876)
 
remove 0 877
>> Removing city A (0,877)
 
remove 0 878
>> Removing city A (0,878)
 
remove 0 879
>> Removing city A (0,879)
 
remove 0 880
>> Removing city A (0,880)
 
remove 0 881
>> Removing city A (0,881)
 
remove 0 882
>> Removing city A (0,882)
 
remove 0 883
>> Removing city A (0,883)
 
remove 0 884
>> Removing city A (0,884)
 
remove 0 885
>> Removing city A (0,885)
 
remove 0 886
>> Removing city A (0,886)
 
remove 0 887
>> Removing city A (0,887)
 
remove 0 888
>> Removing city A (0,888)
 
remove 0 889
>> Removing city A (0,889)
 
remove 0 890
>> Removing city A (0,890)
 
remove 0 891
>> Removing city A (0,891)
 
remove 0 892
>> Removing city A (0,892)
 
remove 0 893
>> Removing city A (0,893)
 
remove 0 894
>> Removing city A (0,894)
 
remove 0 895
>> Removing city A (0,895)
 
remove 0 896
>> Removing city A (0,896)
 
remove 0 897
>> Removing city A (0,897)
 
remove 0 898
>> Removing city A (0,898)
 
remove 0 899
>> Removing city A (0,899)
 
remove 0 900
>> Removing city A (0,900)
 
remove 0 901
>> Removing city A (0,901)
 
remove 0 902
>> Removing city A (0,902)
 
remove 0 903
>> Removing city A (0,903)
 
remove 0 904
>> Removing city A (0,904)
 
remove 0 905
>> Removing city A (0,905)
 
remove 0 906
>> Removing city A (0,906)
 
remove 0 907
>> Removing city A (0,907)
 
remove 0 908
>> Removing city A (0,908)
 
remove 0 909
>> Removing city A (0,909)
 
remove 0 910
>> Removing city A (0,910)
 
remove 0 911
>> Removing city A (0,911)
 
remove 0 912
>> Removing city A (0,912)
 
remove 0 913
>> Removing city A (0,913)
 
remove 0 914
>> Removing city A (0,914)
 
remove 0 915
>> Removing city A (0,915)
 
remove 0 916
>> Removing city A (0,916)
 
remove 0 917
>> Removing city A (0,917)
 
remove 0 918
>> Removing city A (0,918)
 
remove 0 919
>> Removing city A (0,919)
 
remove 0 920
>> Removing city A (0,920)
 
remove 0 921
>> Removing city A (0,921)
 
remove 0 922
>> Removing city A (0,922)
 
remove 0 923
>> Removing city A (0,923)
 
remove 0 924
>> Removing city A (0,924)
 
remove 0 925
>> Removing city A (0,925)
 
remove 0 926
>> Removing city A (0,926)
 
remove 0 927
>> Removing city A (0,927)
 
remove 0 928
>> Removing city A (0,928)
 
remove 0 929
>> Removing city A (0,929)
 
remove 0 930
>> Removing city A (0,930)
 
remove 0 931
>> Removing city A (0,931)
 
remove 0 932
>> Removing city A (0,932)
 
remove 0 933
>> Removing city A (0,933)
 
remove 0 934
>> Removing city A (0,934)
 
remove 0 935
>> Removing city A (0,935)
 
remove 0 936
>> Removing city A (0,936)
 
remove 0 937
>> Removing city A (0,937)
 
remove 0 938
>> Removing city A (0,938)
 
remove 0 939
>> Removing city A (0,939)
 
remove 0 940
>> Removing city A (0,940)
 
remove 0 941
>> Removing city A (0,941)
 
remove 0 942
>> Removing city A (0,942)
 
remove 0 943
>> Removing city A (0,943)
 
remove 0 944
>> Removing city A (0,944)
 
remove 0 945
>> Removing city A (0,945)
 
remove 0 946
>> Removing city A (0,946)
 
remove 0 947
>> Removing city A (0,947)
 
remove 0 948
>> Removing city A (0,948)
 
remove 0 949
>> Removing city A (0,949)
 
remove 0 950
>> Removing city A (0,950)
 
remove 0 951
>> Removing city A (0,951)
 
remove 0 952
>> Removing city A (0,952)
 
remove 0 953
>> Removing city A (0,953)
 
remove 0 954
>> Removing city A (0,954)
 
remove 0 955
>> Removing city A (0,955)
 
remove 0 956
>> Removing city A (0,956)
 
remove 0 957
>> Removing city A (0,957)
 
remove 0 958
>> Removing city A (0,958)
 
remove 0 959
>> Removing city A (0,959)
 
remove 0 960
>> Removing city A (0,960)
 
remove 0 961
>> Removing city A (0,961)
 
remove 0 962
>> Removing city A (0,962)
 
remove 0 963
>> Removing city A (0,963)
 
remove 0 964
>> Removing city A (0,964)
 
remove 0 965
>> Removing city A (0,965)
 
remove 0 966
>> Removing city A (0,966)
 
remove 0 967
>> Removing city A (0,967)
 
remove 0 968
>> Removing city A (0,968)
 
remove 0 969
>> Removing city A (0,969)
 
remove 0 970
>> Removing city A (0,970)
 
remove 0 971
>> Removing city A (0,971)
 
remove 0 972
>> Removing city A (0,972)
 
remove 0 973
>> Removing city A (0,973)
 
remove 0 974
>> Removing city A (0,974)
 
remove 0 975
>> Removing city A (0,975)
 
remove 0 976
>> Removing city A (0,976)
 
remove 0 977
>> Removing city A (0,977)
 
remove 0 978
>> Removing city A (0,978)
 
remove 0 979
>> Removing city A (0,979)
 
remove 0 980
>> Removing city A (0,980)
 
remove 0 981
>> Removing city A (0,981)
 
remove 0 982
>> Removing city A (0,982)
 
remove 0 983
>> Removing city A (0,983)
 
remove 0 984
>> Removing city A (0,984)
 
remove 0 985
>> Removing city A (0,985)
 
remove 0 986
>> Removing city A (0,986)
 
remove 0 987
>> Removing city A (0,987)
 
remove 0 988
>> Removing city A (0,988)
 
remove 0 989
>> Removing city A (0,989)
 
remove 0 990
>> Removing city A (0,990)
 
remove 0 991
>> Removing city A (0,991)
 
remove 0 992
>> Removing city A (0,992)
 
remove 0 993
>> Removing city A (0,993)
 
remove 0 994
>> Removing city A (0,994)
 
remove 0 995
>> Removing city A (0,995)
 
remove 0 996
>> Removing city A (0,996)
 
remove 0 997
>> Removing city A (0,997)
 
remove 0 998
>> Removing city A (0,998)
 
remove 0 999
>> Removing city A (0,999)
 
remove 0 1000
>> Removing city A (0,1000)
 
remove 0 1001
>> Removing city A (0,1001)
 
remove 0 1002
>> Removing city A (0,1002)
 
remove 0 1003
>> Removing city A (0,1003)
 
remove 0 1004
>> Removing city A (0,1004)
 
remove 0 1005
>> Removing city A (0,1005)
 
remove 0 1006
>> Removing city A (0,1006)
 
remove 0 1007
>> Removing city A (0,1007)
 
remove 0 1008
>> Removing city A (0,1008)
 
remove 0 1009
>> Removing city A (0,1009)
 
remove 0 1010
>> Removing city A (0,1010)
 
remove 0 1011
>> Removing city A (0,1011)
 
remove 0 1012
>> Removing city A (0,1012)
 
remove 0 1013
>> Removing city A (0,1013)
 
remove 0 1014
>> Removing city A (0,1014)
 
remove 0 1015
>> Removing city A (0,1015)
 
remove 0 1016
>> Removing city A (0,1016)
 
remove 0 1017
>> Removing city A (0,1017)
 
remove 0 1018
>> Removing city A (0,1018)
 
remove 0 1019
>> Removing city A (0,1019)
 
remove 0 1020
>> Removing city A (0,1020)
 
remove 0 1021
>> Removing city A (0,1021)
 
remove 0 1022
>> Removing city A (0,1022)
 
remove 0 1023
>> Removing city A (0,1023)
 
remove 0 1024
>> Removing city A (0,1024)
 
remove 0 1025
>> Removing city A (0,1025)
 
remove 0 1026
>> Removing city A (0,1026)
 
remove 0 1027
>> Removing city A (0,1027)
 
remove 0 1028
>> Removing city A (0,1028)
 
remove 0 1029
>> Removing city A (0,1029)
 
remove 0 1030
>> Removing city A (0,1030)
 
remove 0 1031
>> Removing city A (0,1031)
 
remove 0 1032
>> Removing city A (0,1032)
 
remove 0 1033
>> Removing city A (0,1033)
 
remove 0 1034
>> Removing city A (0,1034)
 
remove 0 1035
>> Removing city A (0,1035)
 
remove 0 1036
>> Removing city A (0,1036)
 
remove 0 1037
>> Removing city A (0,1037)
 
remove 0 1038
>> Removing city A (0,1038)
 
remove 0 1039
>> Removing city A (0,1039)
 
remove 0 1040
>> Removing city A (0,1040)
 
remove 0 1041
>> Removing city A (0,1041)
 
remove 0 1042
>> Removing city A (0,1042)
 
remove 0 1043
>> Removing city A (0,1043)
 
remove 0 1044
>> Removing city A (0,1044)
 
remove 0 1045
>> Removing city A (0,1045)
 
remove 0 1046
>> Removing city A (0,1046)
 
remove 0 1047
>> Removing city A (0,1047)
 
remove 0 1048
>> Removing city A (0,1048)
 
remove 0 1049
>> Removing city A (0,1049)
 
remove 0 1050
>> Removing city A (0,1050)
 
remove 0 1051
>> Removing city A (0,1051)
 
remove 0 1052
>> Removing city A (0,1052)
 
remove 0 1053
>> Removing city A (0,1053)
 
remove 0 1054
>> Removing city A (0,1054)
 
remove 0 1055
>> Removing city A (0,1055)
 
remove 0 1056
>> Removing city A (0,1056)
 
remove 0 1057
>> Removing city A (0,1057)
 
remove 0 1058
>> Removing city A (0,1058)
 
remove 0 1059
>> Removing city A (0,1059)
 
remove 0 1060
>> Removing city A (0,1060)
 
remove 0 1061
>> Removing city A (0,1061)
 
remove 0 1062
>> Removing city A (0,1062)
 
remove 0 1063
>> Removing city A (0,1063)
 
remove 0 1064
>> Removing city A (0,1064)
 
remove 0 1065
>> Removing city A (0,1065)
 
remove 0 1066
>> Removing city A (0,1066)
 
remove 0 1067
>> Removing city A (0,1067)
 
remove 0 1068
>> Removing city A (0,1068)
 
remove 0 1069
>> Removing city A (0,1069)
 
remove 0 1070
>> Removing city A (0,1070)
 
remove 0 1071
>> Removing city A (0,1071)
 
remove 0 1072
>> Removing city A (0,1072)
 
remove 0 1073
>> Removing city A (0,1073)
 
remove 0 1074
>> Removing city A (0,1074)
 
remove 0 1075
>> Removing city A (0,1075)
 
remove 0 1076
>> Removing city A (0,1076)
 
remove 0 1077
>> Removing city A (0,1077)
 
remove 0 1078
>> Removing city A (0,1078)
 
remove 0 1079
>> Removing city A (0,1079)
 
remove 0 1080
>> Removing city A (0,1080)
 
remove 0 1081
>> Removing city A (0,1081)
 
remove 0 1082
>> Removing city A (0,1082)
 
remove 0 1083
>> Removing city A (0,1083)
 
remove 0 1084
>> Removing city A (0,1084)
 
remove 0 1085
>> Removing city A (0,1085)
 
remove 0 1086
>> Removing city A (0,1086)
 
remove 0 1087
>> Removing city A (0,1087)
 
remove 0 1088
>> Removing city A (0,1088)
 
remove 0 1089
>> Removing city A (0,1089)
 
remove 0 1090
>> Removing city A (0,1090)
 
remove 0 1091
>> Removing city A (0,1091)
 
remove 0 1092
>> Removing city A (0,1092)
 
remove 0 1093
>> Removing city A (0,1093)
 
remove 0 1094
>> Removing city A (0,1094)
 
remove 0 1095
>> Removing city A (0,1095)
 
remove 0 1096
>> Removing city A (0,1096)
 
remove 0 1097
>> Removing city A (0,1097)
 
remove 0 1098
>> Removing city A (0,1098)
 
remove 0 1099
>> Removing city A (0,1099)
 
remove 0 1100
>> Removing city A (0,1100)
 
remove 0 1101
>> Removing city A (0,1101)
 
remove 0 1102
>> Removing city A (0,1102)
 
remove 0 1103
>> Removing city A (0,1103)
 
remove 0 1104
>> Removing city A (0,1104)
 
remove 0 1105
>> Removing city A (0,1105)
 
remove 0 1106
>> Removing city A (0,1106)
 
remove 0 1107
>> Removing city A (0,1107)
 
remove 0 1108
>> Removing city A (0,1108)
 
remove 0 1109
>> Removing city A (0,1109)
 
remove 0 1110
>> Removing city A (0,1110)
 
remove 0 1111
>> Removing city A (0,1111)
 
remove 0 1112
>> Removing city A (0,1112)
 
remove 0 1113
>> Removing city A (0,1113)
 
remove 0 1114
>> Removing city A (0,1114)
 
remove 0 1115
>> Removing city A (0,1115)
 
remove 0 1116
>> Removing city A (0,1116)
 
remove 0 1117
>> Removing city A (0,1117)
 
remove 0 1118
>> Removing city A (0,1118)
 
remove 0 1119
>> Removing city A (0,1119)
 
remove 0 1120
>> Removing city A (0,1120)
 
remove 0 1121
>> Removing city A (0,1121)
 
remove 0 1122
>> Removing city A (0,1122)
 
remove 0 1123
>> Removing city A (0,1123)
 
remove 0 1124
>> Removing city A (0,1124)
 
remove 0 1125
>> Removing city A (0,1125)
 
remove 0 1126
>> Removing city A (0,1126)
 
remove 0 1127
>> Removing city A (0,1127)
 
remove 0 1128
>> Removing city A (0,1128)
 
remove 0 1129
>> Removing city A (0,1129)
 
remove 0 1130
>> Removing city A (0,1130)
 
remove 0 1131
>> Removing city A (0,1131)
 
remove 0 1132
>> Removing city A (0,1132)
 
remove 0 1133
>> Removing city A (0,1133)
 
remove 0 1134
>> Removing city A (0,1134)
 
remove 0 1135
>> Removing city A (0,1135)
 
remove 0 1136
>> Removing city A (0,1136)
 
remove 0 1137
>> Removing city A (0,1137)
 
remove 0 1138
>> Removing city A (0,1138)
 
remove 0 1139
>> Removing city A (0,1139)
 
remove 0 1140
>> Removing city A (0,1140)
 
remove 0 1141
>> Removing city A (0,1141)
 
remove 0 1142
>> Removing city A (0,1142)
 
remove 0 1143
>> Removing city A (0,1143)
 
remove 0 1144
>> Removing city A (0,1144)
 
remove 0 1145
>> Removing city A (0,1145)
 
remove 0 1146
>> Removing city A (0,1146)
 
remove 0 1147
>> Removing city A (0,1147)
 
remove 0 1148
>> Removing city A (0,1148)
 
remove 0 1149
>> Removing city A (0,1149)
 
remove 0 1150
>> Removing city A (0,1150)
 
remove 0 1151
>> Removing city A (0,1151)
 
remove 0 1152
>> Removing city A (0,1152)
 
remove 0 1153
>> Removing city A (0,1153)
 
remove 0 1154
>> Removing city A (0,1154)
 
remove 0 1155
>> Removing city A (0,1155)
 
remove 0 1156
>> Removing city A (0,1156)
 
remove 0 1157
>> Removing city A (0,1157)
 
remove 0 1158
>> Removing city A (0,1158)
 
remove 0 1159
>> Removing city A (0,1159)
 
remove 0 1160
>> Removing city A (0,1160)
 
remove 0 1161
>> Removing city A (0,1161)
 
remove 0 1162
>> Removing city A (0,1162)
 
remove 0 1163
>> Removing city A (0,1163)
 
remove 0 1164
>> Removing city A (0,1164)
 
remove 0 1165
>> Removing city A (0,1165)
 
remove 0 1166
>> Removing city A (0,1166)
 
remove 0 1167
>> Removing city A (0,1167)
 
remove 0 1168
>> Removing city A (0,1168)
 
remove 0 1169
>> Removing city A (0,1169)
 
remove 0 1170
>> Removing city A (0,1170)
 
remove 0 1171
>> Removing city A (0,1171)
 
remove 0 1172
>> Removing city A (0,1172)
 
remove 0 1173
>> Removing city A (0,1173)
 
remove 0 1174
>> Removing city A (0,1174)
 
remove 0 1175
>> Removing city A (0,1175)
 
remove 0 1176
>> Removing city A (0,1176)
 
remove 0 1177
>> Removing city A (0,1177)
 
remove 0 1178
>> Removing city A (0,1178)
 
remove 0 1179
>> Removing city A (0,1179)
 
remove 0 1180
>> Removing city A (0,1180)
 
remove 0 1181
>> Removing city A (0,1181)
 
remove 0 1182
>> Removing city A (0,1182)
 
remove 0 1183
>> Removing city A (0,1183)
 
remove 0 1184
>> Removing city A (0,1184)
 
remove 0 1185
>> Removing city A (0,1185)
 
remove 0 1186
>> Removing city A (0,1186)
 
remove 0 1187
>> Removing city A (0,1187)
 
remove 0 1188
>> Removing city A (0,1188)
 
remove 0 1189
>> Removing city A (0,1189)
 
remove 0 1190
>> Removing city A (0,1190)
 
remove 0 1191
>> Removing city A (0,1191)
 
remove 0 1192
>> Removing city A (0,1192)
 
remove 0 1193
>> Removing city A (0,1193)
 
remove 0 1194
>> Removing city A (0,1194)
 
remove 0 1195
>> Removing city A (0,1195)
 
remove 0 1196
>> Removing city A (0,1196)
 
remove 0 1197
>> Removing city A (0,1197)
 
remove 0 1198
>> Removing city A (0,1198)
 
remove 0 1199
>> Removing city A (0,1199)
 
remove 0 1200
>> Removing city A (0,1200)
 
remove 0 1201
>> Removing city A (0,1201)
 
remove 0 1202
>> Removing city A (0,1202)
 
remove 0 1203
>> Removing city A (0,1203)
 
remove 0 1204
>> Removing city A (0,1204)
 
remove 0 1205
>> Removing city A (0,1205)
 
remove 0 1206
>> Removing city A (0,1206)
 
remove 0 1207
>> Removing city A (0,1207)
 
remove 0 1208
>> Removing city A (0,1208)
 
remove 0 1209
>> Removing city A (0,1209)
 
remove 0 1210
>> Removing city A (0,1210)
 
remove 0 1211
>> Removing city A (0,1211)
 
remove 0 1212
>> Removing city A (0,1212)
 
remove 0 1213
>> Removing city A (0,1213)
 
remove 0 1214
>> Removing city A (0,1214)
 
remove 0 1215
>> Removing city A (0,1215)
 
remove 0 1216
>> Removing city A (0,1216)
 
remove 0 1217
>> Removing city A (0,1217)
 
remove 0 1218
>> Removing city A (0,1218)
 
remove 0 1219
>> Removing city A (0,1219)
 
remove 0 1220
>> Removing city A (0,1220)
 
remove 0 1221
>> Removing city A (0,1221)
 
remove 0 1222
>> Removing city A (0,1222)
 
remove 0 1223
>> Removing city A (0,1223)
 
remove 0 1224
>> Removing city A (0,1224)
 
remove 0 1225
>> Removing city A (0,1225)
 
remove 0 1226
>> Removing city A (0,1226)
 
remove 0 1227
>> Removing city A (0,1227)
 
remove 0 1228
>> Removing city A (0,1228)
 
remove 0 1229
>> Removing city A (0,1229)
 
remove 0 1230
>> Removing city A (0,1230)
 
remove 0 1231
>> Removing city A (0,1231)
 
remove 0 1232
>> Removing city A (0,1232)
 
remove 0 1233
>> Removing city A (0,1233)
 
remove 0 1234
>> Removing city A (0,1234)
 
remove 0 1235
>> Removing city A (0,1235)
 
remove 0 1236
>> Removing city A (0,1236)
 
remove 0 1237
>> Removing city A (0,1237)
 
remove 0 1238
>> Removing city A (0,1238)
 
remove 0 1239
>> Removing city A (0,1239)
 
remove 0 1240
>> Removing city A (0,1240)
 
remove 0 1241
>> Removing city A (0,1241)
 
remove 0 1242
>> Removing city A (0,1242)
 
remove 0 1243
>> Removing city A (0,1243)
 
remove 0 1244
>> Removing city A (0,1244)
 
remove 0 1245
>> Removing city A (0,1245)
 
remove 0 1246
>> Removing city A (0,1246)
 
remove 0 1247
>> Removing city A (0,1247)
 
remove 0 1248
>> Removing city A (0,1248)
 
remove 0 1249
>> Removing city A (0,1249)
 
remove 0 1250
>> Removing city A (0,1250)
 
remove 0 1251
>> Removing city A (0,1251)
 
remove 0 1252
>> Removing city A (0,1252)
 
remove 0 1253
>> Removing city A (0,1253)
 
remove 0 1254
>> Removing city A (0,1254)
 
remove 0 1255
>> Removing city A (0,1255)
 
remove 0 1256
>> Removing city A (0,1256)
 
remove 0 1257
>> Removing city A (0,1257)
 
remove 0 1258
>> Removing city A (0,1258)
 
remove 0 1259
>> Removing city A (0,1259)
 
remove 0 1260
>> Removing city A (0,1260)
 
remove 0 1261
>> Removing city A (0,1261)
 
remove 0 1262
>> Removing city A (0,1262)
 
remove 0 1263
>> Removing city A (0,1263)
 
remove 0 1264
>> Removing city A (0,1264)
 
remove 0 1265
>> Removing city A (0,1265)
 
remove 0 1266
>> Removing city A (0,1266)
 
remove 0 1267
>> Removing city A (0,1267)
 
remove 0 1268
>> Removing city A (0,1268)
 
remove 0 1269
>> Removing city A (0,1269)
 
remove 0 1270
>> Removing city A (0,1270)
 
remove 0 1271
>> Removing city A (0,1271)
 
remove 0 1272
>> Removing city A (0,1272)
 
remove 0 1273
>> Removing city A (0,1273)
 
remove 0 1274
>> Removing city A (0,1274)
 
remove 0 1275
>> Removing city A (0,1275)
 
remove 0 1276
>> Removing city A (0,1276)
 
remove 0 1277
>> Removing city A (0,1277)
 
remove 0 1278
>> Removing city A (0,1278)
 
remove 0 1279
>> Removing city A (0,1279)
 
remove 0 1280
>> Removing city A (0,1280)
 
remove 0 1281
>> Removing city A (0,1281)
 
remove 0 1282
>> Removing city A (0,1282)
 
remove 0 1283
>> Removing city A (0,1283)
 
remove 0 1284
>> Removing city A (0,1284)
 
remove 0 1285
>> Removing city A (0,1285)
 
remove 0 1286
>> Removing city A (0,1286)
 
remove 0 1287
>> Removing city A (0,1287)
 
remove 0 1288
>> Removing city A (0,1288)
 
remove 0 1289
>> Removing city A (0,1289)
 
remove 0 1290
>> Removing city A (0,1290)
 
remove 0 1291
>> Removing city A (0,1291)
 
remove 0 1292
>> Removing city A (0,1292)
 
remove 0 1293
>> Removing city A (0,1293)
 
remove 0 1294
>> Removing city A (0,1294)
 
remove 0 1295
>> Removing city A (0,1295)
 
remove 0 1296
>> Removing city A (0,1296)
 
remove 0 1297
>> Removing city A (0,1297)
 
remove 0 1298
>> Removing city A (0,1298)
 
remove 0 1299
>> Removing city A (0,1299)
 
remove 0 1300
>> Removing city A (0,1300)
 
remove 0 1301
>> Removing city A (0,1301)
 
remove 0 1302
>> Removing city A (0,1302)
 
remove 0 1303
>> Removing city A (0,1303)
 
remove 0 1304
>> Removing city A (0,1304)
 
remove 0 1305
>> Removing city A (0,1305)
 
remove 0 1306
>> Removing city A (0,1306)
 
remove 0 1307
>> Removing city A (0,1307)
 
remove 0 1308
>> Removing city A (0,1308)
 
remove 0 1309
>> Removing city A (0,1309)
 
remove 0 1310
>> Removing city A (0,1310)
 
remove 0 1311
>> Removing city A (0,1311)
 
remove 0 1312
>> Removing city A (0,1312)
 
remove 0 1313
>> Removing city A (0,1313)
 
remove 0 1314
>> Removing city A (0,1314)
 
remove 0 1315
>> Removing city A (0,1315)
 
remove 0 1316
>> Removing city A (0,1316)
 
remove 0 1317
>> Removing city A (0,1317)
 
remove 0 1318
>> Removing city A (0,1318)
 
remove 0 1319
>> Removing city A (0,1319)
 
remove 0 1320
>> Removing city A (0,1320)
 
remove 0 1321
>> Removing city A (0,1321)
 
remove 0 1322
>> Removing city A (0,1322)
 
remove 0 1323
>> Removing city A (0,1323)
 
remove 0 1324
>> Removing city A (0,1324)
 
remove 0 1325
>> Removing city A (0,1325)
 
remove 0 1326
>> Removing city A (0,1326)
 
remove 0 1327
>> Removing city A (0,1327)
 
remove 0 1328
>> Removing city A (0,1328)
 
remove 0 1329
>> Removing city A (0,1329)
 
remove 0 1330
>> Removing city A (0,1330)
 
remove 0 1331
>> Removing city A (0,1331)
 
remove 0 1332
>> Removing city A (0,1332)
 
remove 0 1333
>> Removing city A (0,1333)
 
remove 0 1334
>> Removing city A (0,1334)
 
remove 0 1335
>> Removing city A (0,1335)
 
remove 0 1336
>> Removing city A (0,1336)
 
remove 0 1337
>> Removing city A (0,1337)
 
remove 0 1338
>> Removing city A (0,1338)
 
remove 0 1339
>> Removing city A (0,1339)
 
remove 0 1340
>> Removing city A (0,1340)
 
remove 0 1341
>> Removing city A (0,1341)
 
remove 0 1342
>> Removing city A (0,1342)
 
remove 0 1343
>> Removing city A (0,1343)
 
remove 0 1344
>> Removing city A (0,1344)
 
remove 0 1345
>> Removing city A (0,1345)
 
remove 0 1346
>> Removing city A (0,1346)
 
remove 0 1347
>> Removing city A (0,1347)
 
remove 0 1348
>> Removing city A (0,1348)
 
remove 0 1349
>> Removing city A (0,1349)
 
remove 0 1350
>> Removing city A (0,1350)
 
remove 0 1351
>> Removing city A (0,1351)
 
remove 0 1352
>> Removing city A (0,1352)
 
remove 0 1353
>> Removing city A (0,1353)
 
remove 0 1354
>> Removing city A (0,1354)
 
remove 0 1355
>> Removing city A (0,1355)
 
remove 0 1356
>> Removing city A (0,1356)
 
remove 0 1357
>> Removing city A (0,1357)
 
remove 0 1358
>> Removing city A (0,1358)
 
remove 0 1359
>> Removing city A (0,1359)
 
remove 0 1360
>> Removing city A (0,1360)
 
remove 0 1361
>> Removing city A (0,1361)
 
remove 0 1362
>> Removing city A (0,1362)
 
remove 0 1363
>> Removing city A (0,1363)
 
remove 0 1364
>> Removing city A (0,1364)
 
remove 0 1365
>> Removing city A (0,1365)
 
remove 0 1366
>> Removing city A (0,1366)
 
remove 0 1367
>> Removing city A (0,1367)
 
remove 0 1368
>> Removing city A (0,1368)
 
remove 0 1369
>> Removing city A (0,1369)
 
remove 0 1370
>> Removing city A (0,1370)
 
remove 0 1371
>> Removing city A (0,1371)
 
remove 0 1372
>> Removing city A (0,1372)
 
remove 0 1373
>> Removing city A (0,1373)
 
remove 0 1374
>> Removing city A (0,1374)
 
remove 0 1375
>> Removing city A (0,1375)
 
remove 0 1376
>> Removing city A (0,1376)
 
remove 0 1377
>> Removing city A (0,1377)
 
remove 0 1378
>> Removing city A (0,1378)
 
remove 0 1379
>> Removing city A (0,1379)
 
remove 0 1380
>> Removing city A (0,1380)
 
remove 0 1381
>> Removing city A (0,1381)
 
remove 0 1382
>> Removing city A (0,1382)
 
remove 0 1383
>> Removing city A (0,1383)
 
remove 0 1384
>> Removing city A (0,1384)
 
remove 0 1385
>> Removing city A (0,1385)
 
remove 0 1386
>> Removing city A (0,1386)
 
remove 0 1387
>> Removing city A (0,1387)
 
remove 0 1388
>> Removing city A (0,1388)
 
remove 0 1389
>> Removing city A (0,1389)
 
remove 0 1390
>> Removing city A (0,1390)
 
remove 0 1391
>> Removing city A (0,1391)
 
remove 0 1392
>> Removing city A (0,1392)
 
remove 0 1393
>> Removing city A (0,1393)
 
remove 0 1394
>> Removing city A (0,1394)
 
remove 0 1395
>> Removing city A (0,1395)
 
remove 0 1396
>> Removing city A (0,1396)
 
remove 0 1397
>> Removing city A (0,1397)
 
remove 0 1398
>> Removing city A (0,1398)
 
remove 0 1399
>> Removing city A (0,1399)
 
remove 0 1400
>> Removing city A (0,1400)
 
remove 0 1401
>> Removing city A (0,1401)
 
remove 0 1402
>> Removing city A (0,1402)
 
remove 0 1403
>> Removing city A (0,1403)
 
remove 0 1404
>> Removing city A (0,1404)
 
remove 0 1405
>> Removing city A (0,1405)
 
remove 0 1406
>> Removing city A (0,1406)
 
remove 0 1407
>> Removing city A (0,1407)
 
remove 0 1408
>> Removing city A (0,1408)
 
remove 0 1409
>> Removing city A (0,1409)
 
remove 0 1410
>> Removing city A (0,1410)
 
remove 0 1411
>> Removing city A (0,1411)
 
remove 0 1412
>> Removing city A (0,1412)
 
remove 0 1413
>> Removing city A (0,1413)
 
remove 0 1414
>> Removing city A (0,1414)
 
remove 0 1415
>> Removing city A (0,1415)
 
remove 0 1416
>> Removing city A (0,1416)
 
remove 0 1417
>> Removing city A (0,1417)
 
remove 0 1418
>> Removing city A (0,1418)
 
remove 0 1419
>> Removing city A (0,1419)
 
remove 0 1420
>> Removing city A (0,1420)
 
remove 0 1421
>> Removing city A (0,1421)
 
remove 0 1422
>> Removing city A (0,1422)
 
remove 0 1423
>> Removing city A (0,1423)
 
remove 0 1424
>> Removing city A (0,1424)
 
remove 0 1425
>> Removing city A (0,1425)
 
remove 0 1426
>> Removing city A (0,1426)
 
remove 0 1427
>> Removing city A (0,1427)
 
remove 0 1428
>> Removing city A (0,1428)
 
remove 0 1429
>> Removing city A (0,1429)
 
remove 0 1430
>> Removing city A (0,1430)
 
remove 0 1431
>> Removing city A (0,1431)
 
remove 0 1432
>> Removing city A (0,1432)
 
remove 0 1433
>> Removing city A (0,1433)
 
remove 0 1434
>> Removing city A (0,1434)
 
remove 0 1435
>> Removing city A (0,1435)
 
remove 0 1436
>> Removing city A (0,1436)
 
remove 0 1437
>> Removing city A (0,1437)
 
remove 0 1438
>> Removing city A (0,1438)
 
remove 0 1439
>> Removing city A (0,1439)
 
remove 0 1440
>> Removing city A (0,1440)
 
remove 0 1441
>> Removing city A (0,1441)
 
remove 0 1442
>> Removing city A (0,1442)
 
remove 0 1443
>> Removing city A (0,1443)
 
remove 0 1444
>> Removing city A (0,1444)
 
remove 0 1445
>> Removing city A (0,1445)
 
remove 0 1446
>> Removing city A (0,1446)
 
remove 0 1447
>> Removing city A (0,1447)
 
remove 0 1448
>> Removing city A (0,1448)
 
remove 0 1449
>> Removing city A (0,1449)
 
remove 0 1450
>> Removing city A (0,1450)
 
remove 0 1451
>> Removing city A (0,1451)
 
remove 0 1452
>> Removing city A (0,1452)
 
remove 0 1453
>> Removing city A (0,1453)
 
remove 0 1454
>> Removing city A (0,1454)
 
remove 0 1455
>> Removing city A (0,1455)
 
remove 0 1456
>> Removing city A (0,1456)
 
remove 0 1457
>> Removing city A (0,1457)
 
remove 0 1458
>> Removing city A (0,1458)
 
remove 0 1459
>> Removing city A (0,1459)
 
remove 0 1460
>> Removing city A (0,1460)
 
remove 0 1461
>> Removing city A (0,1461)
 
remove 0 1462
>> Removing city A (0,1462)
 
remove 0 1463
>> Removing city A (0,1463)
 
remove 0 1464
>> Removing city A (0,1464)
 
remove 0 1465
>> Removing city A (0,1465)
 
remove 0 1466
>> Removing city A (0,1466)
 
remove 0 1467
>> Removing city A (0,1467)
 
remove 0 1468
>> Removing city A (0,1468)
 
remove 0 1469
>> Removing city A (0,1469)
 
remove 0 1470
>> Removing city A (0,1470)
 
remove 0 1471
>> Removing city A (0,1471)
 
remove 0 1472
>> Removing city A (0,1472)
 
remove 0 1473
>> Removing city A (0,1473)
 
remove 0 1474
>> Removing city A (0,1474)
 
remove 0 1475
>> Removing city A (0,1475)
 
remove 0 1476
>> Removing city A (0,1476)
 
remove 0 1477
>> Removing city A (0,1477)
 
remove 0 1478
>> Removing city A (0,1478)
 
remove 0 1479
>> Removing city A (0,1479)
 
remove 0 1480
>> Removing city A (0,1480)
 
remove 0 1481
>> Removing city A (0,1481)
 
remove 0 1482
>> Removing city A (0,1482)
 
remove 0 1483
>> Removing city A (0,1483)
 
remove 0 1484
>> Removing city A (0,1484)
 
remove 0 1485
>> Removing city A (0,1485)
 
remove 0 1486
>> Removing city A (0,1486)
 
remove 0 1487
>> Removing city A (0,1487)
 
remove 0 1488
>> Removing city A (0,1488)
 
remove 0 1489
>> Removing city A (0,1489)
 
remove 0 1490
>> Removing city A (0,1490)
 
remove 0 1491
>> Removing city A (0,1491)
 
remove 0 1492
>> Removing city A (0,1492)
 
remove 0 1493
>> Removing city A (0,1493)
 
remove 0 1494
>> Removing city A (0,1494)
 
remove 0 1495
>> Removing city A (0,1495)
 
remove 0 1496
>> Removing city A (0,1496)
 
remove 0 1497
>> Removing city A (0,1497)
 
remove 0 1498
>> Removing city A (0,1498)
 
remove 0 1499
>> Removing city A (0,1499)
 
remove 0 1500
>> Removing city A (0,1500)
 
remove 0 1501
>> Removing city A (0,1501)
 
remove 0 1502
>> Removing city A (0,1502)
 
remove 0 1503
>> Removing city A (0,1503)
 
remove 0 1504
>> Removing city A (0,1504)
 
remove 0 1505
>> Removing city A (0,1505)
 
remove 0 1506
>> Removing city A (0,1506)
 
remove 0 1507
>> Removing city A (0,1507)
 
remove 0 1508
>> Removing city A (0,1508)
 
remove 0 1509
>> Removing city A (0,1509)
 
remove 0 1510
>> Removing city A (0,1510)
 
remove 0 1511
>> Removing city A (0,1511)
 
remove 0 1512
>> Removing city A (0,1512)
 
remove 0 1513
>> Removing city A (0,1513)
 
remove 0 1514
>> Removing city A (0,1514)
 
remove 0 1515
>> Removing city A (0,1515)
 
remove 0 1516
>> Removing city A (0,1516)
 
remove 0 1517
>> Removing city A (0,1517)
 
remove 0 1518
>> Removing city A (0,1518)
 
remove 0 1519
>> Removing city A (0,1519)
 
remove 0 1520
>> Removing city A (0,1520)
 
remove 0 1521
>> Removing city A (0,1521)
 
remove 0 1522
>> Removing city A (0,1522)
 
remove 0 1523
>> Removing city A (0,1523)
 
remove 0 1524
>> Removing city A (0,1524)
 
remove 0 1525
>> Removing city A (0,1525)
 
remove 0 1526
>> Removing city A (0,1526)
 
remove 0 1527
>> Removing city A (0,1527)
 
remove 0 1528
>> Removing city A (0,1528)
 
remove 0 1529
>> Removing city A (0,1529)
 
remove 0 1530
>> Removing city A (0,1530)
 
remove 0 1531
>> Removing city A (0,1531)
 
remove 0 1532
>> Removing city A (0,1532)
 
remove 0 1533
>> Removing city A (0,1533)
 
remove 0 1534
>> Removing city A (0,1534)
 
remove 0 1535
>> Removing city A (0,1535)
 
remove 0 1536
>> Removing city A (0,1536)
 
remove 0 1537
>> Removing city A (0,1537)
 
remove 0 1538
>> Removing city A (0,1538)
 
remove 0 1539
>> Removing city A (0,1539)
 
remove 0 1540
>> Removing city A (0,1540)
 
remove 0 1541
>> Removing city A (0,1541)
 
remove 0 1542
>> Removing city A (0,1542)
 
remove 0 1543
>> Removing city A (0,1543)
 
remove 0 1544
>> Removing city A (0,1544)
 
remove 0 1545
>> Removing city A (0,1545)
 
remove 0 1546
>> Removing city A (0,1546)
 
remove 0 1547
>> Removing city A (0,1547)
 
remove 0 1548
>> Removing city A (0,1548)
 
remove 0 1549
>> Removing city A (0,1549)
 
remove 0 1550
>> Removing city A (0,1550)
 
remove 0 1551
>> Removing city A (0,1551)
 
remove 0 1552
>> Removing city A (0,1552)
 
remove 0 1553
>> Removing city A (0,1553)
 
remove 0 1554
>> Removing city A (0,1554)
 
remove 0 1555
>> Removing city A (0,1555)
 
remove 0 1556
>> Removing city A (0,1556)
 
remove 0 1557
>> Removing city A (0,1557)
 
remove 0 1558
>> Removing city A (0,1558)
 
remove 0 1559
>> Removing city A (0,1559)
 
remove 0 1560
>> Removing city A (0,1560)
 
remove 0 1561
>> Removing city A (0,1561)
 
remove 0 1562
>> Removing city A (0,1562)
 
remove 0 1563
>> Removing city A (0,1563)
 
remove 0 1564
>> Removing city A (0,1564)
 
remove 0 1565
>> Removing city A (0,1565)
 
remove 0 1566
>> Removing city A (0,1566)
 
remove 0 1567
>> Removing city A (0,1567)
 
remove 0 1568
>> Removing city A (0,1568)
 
remove 0 1569
>> Removing city A (0,1569)
 
remove 0 1570
>> Removing city A (0,1570)
 
remove 0 1571
>> Removing city A (0,1571)
 
remove 0 1572
>> Removing city A (0,1572)
 
remove 0 1573
>> Removing city A (0,1573)
 
remove 0 1574
>> Removing city A (0,1574)
 
remove 0 1575
>> Removing city A (0,1575)
 
remove 0 1576
>> Removing city A (0,1576)
 
remove 0 1577
>> Removing city A (0,1577)
 
remove 0 1578
>> Removing city A (0,1578)
 
remove 0 1579
>> Removing city A (0,1579)
 
remove 0 1580
>> Removing city A (0,1580)
 
remove 0 1581
>> Removing city A (0,1581)
 
remove 0 1582
>> Removing city A (0,1582)
 
remove 0 1583
>> Removing city A (0,1583)
 
remove 0 1584
>> Removing city A (0,1584)
 
remove 0 1585
>> Removing city A (0,1585)
 
remove 0 1586
>> Removing city A (0,1586)
 
remove 0 1587
>> Removing city A (0,1587)
 
remove 0 1588
>> Removing city A (0,1588)
 
remove 0 1589
>> Removing city A (0,1589)
 
remove 0 1590
>> Removing city A (0,1590)
 
remove 0 1591
>> Removing city A (0,1591)
 
remove 0 1592
>> Removing city A (0,1592)
 
remove 0 1593
>> Removing city A (0,1593)
 
remove 0 1594
>> Removing city A (0,1594)
 
remove 0 1595
>> Removing city A (0,1595)
 
remove 0 1596
>> Removing city A (0,1596)
 
remove 0 1597
>> Removing city A (0,1597)
 
remove 0 1598
>> Removing city A (0,1598)
 
remove 0 1599
>> Removing city A (0,1599)
 
remove 0 1600
>> Removing city A (0,1600)
 
remove 0 1601
>> Removing city A (0,1601)
 
remove 0 1602
>> Removing city A (0,1602)
 
remove 0 1603
>> Removing city A (0,1603)
 
remove 0 1604
>> Removing city A (0,1604)
 
remove 0 1605
>> Removing city A (0,1605)
 
remove 0 1606
>> Removing city A (0,1606)
 
remove 0 1607
>> Removing city A (0,1607)
 
remove 0 1608
>> Removing city A (0,1608)
 
remove 0 1609
>> Removing city A (0,1609)
 
remove 0 1610
>> Removing city A (0,1610)
 
remove 0 1611
>> Removing city A (0,1611)
 
remove 0 1612
>> Removing city A (0,1612)
 
remove 0 1613
>> Removing city A (0,1613)
 
remove 0 1614
>> Removing city A (0,1614)
 
remove 0 1615
>> Removing city A (0,1615)
 
remove 0 1616
>> Removing city A (0,1616)
 
remove 0 1617
>> Removing city A (0,1617)
 
remove 0 1618
>> Removing city A (0,1618)
 
remove 0 1619
>> Removing city A (0,1619)
 
remove 0 1620
>> Removing city A (0,1620)
 
remove 0 1621
>> Removing city A (0,1621)
 
remove 0 1622
>> Removing city A (0,1622)
 
remove 0 1623
>> Removing city A (0,1623)
 
remove 0 1624
>> Removing city A (0,1624)
 
remove 0 1625
>> Removing city A (0,1625)
 
remove 0 1626
>> Removing city A (0,1626)
 
remove 0 1627
>> Removing city A (0,1627)
 
remove 0 1628
>> Removing city A (0,1628)
 
remove 0 1629
>> Removing city A (0,1629)
 
remove 0 1630
>> Removing city A (0,1630)
 
remove 0 1631
>> Removing city A (0,1631)
 
remove 0 1632
>> Removing city A (0,1632)
 
remove 0 1633
>> Removing city A (0,1633)
 
remove 0 1634
>> Removing city A (0,1634)
 
remove 0 1635
>> Removing city A (0,1635)
 
remove 0 1636
>> Removing city A (0,1636)
 
remove 0 1637
>> Removing city A (0,1637)
 
remove 0 1638
>> Removing city A (0,1638)
 
remove 0 1639
>> Removing city A (0,1639)
 
remove 0 1640
>> Removing city A (0,1640)
 
remove 0 1641
>> Removing city A (0,1641)
 
remove 0 1642
>> Removing city A (0,1642)
 
remove 0 1643
>> Removing city A (0,1643)
 
remove 0 1644
>> Removing city A (0,1644)
 
remove 0 1645
>> Removing city A (0,1645)
 
remove 0 1646
>> Removing city A (0,1646)
 
remove 0 1647
>> Removing city A (0,1647)
 
remove 0 1648
>> Removing city A (0,1648)
 
remove 0 1649
>> Removing city A (0,1649)
 
remove 0 1650
>> Removing city A (0,1650)
 
remove 0 1651
>> Removing city A (0,1651)
 
remove 0 1652
>> Removing city A (0,1652)
 
remove 0 1653
>> Removing city A (0,1653)
 
remove 0 1654
>> Removing city A (0,1654)
 
remove 0 1655
>> Removing city A (0,1655)
 
remove 0 1656
>> Removing city A (0,1656)
 
remove 0 1657
>> Removing city A (0,1657)
 
remove 0 1658
>> Removing city A (0,1658)
 
remove 0 1659
>> Removing city A (0,1659)
 
remove 0 1660
>> Removing city A (0,1660)
 
remove 0 1661
>> Removing city A (0,1661)
 
remove 0 1662
>> Removing city A (0,1662)
 
remove 0 1663
>> Removing city A (0,1663)
 
remove 0 1664
>> Removing city A (0,1664)
 
remove 0 1665
>> Removing city A (0,1665)
 
remove 0 1666
>> Removing city A (0,1666)
 
remove 0 1667
>> Removing city A (0,1667)
 
remove 0 1668
>> Removing city A (0,1668)
 
remove 0 1669
>> Removing city A (0,1669)
 
remove 0 1670
>> Removing city A (0,1670)
 
remove 0 1671
>> Removing city A (0,1671)
 
remove 0 1672
>> Removing city A (0,1672)
 
remove 0 1673
>> Removing city A (0,1673)
 
remove 0 1674
>> Removing city A (0,1674)
 
remove 0 1675
>> Removing city A (0,1675)
 
remove 0 1676
>> Removing city A (0,1676)
 
remove 0 1677
>> Removing city A (0,1677)
 
remove 0 1678
>> Removing city A (0,1678)
 
remove 0 1679
>> Removing city A (0,1679)
 
remove 0 1680
>> Removing city A (0,1680)
 
remove 0 1681
>> Removing city A (0,1681)
 
remove 0 1682
>> Removing city A (0,1682)
 
remove 0 1683
>> Removing city A (0,1683)
 
remove 0 1684
>> Removing city A (0,1684)
 
remove 0 1685
>> Removing city A (0,1685)
 
remove 0 1686
>> Removing city A (0,1686)
 
remove 0 1687
>> Removing city A (0,1687)
 
remove 0 1688
>> Removing city A (0,1688)
 
remove 0 1689
>> Removing city A (0,1689)
 
remove 0 1690
>> Removing city A (0,1690)
 
remove 0 1691
>> Removing city A (0,1691)
 
remove 0 1692
>> Removing city A (0,1692)
 
remove 0 1693
>> Removing city A (0,1693)
 
remove 0 1694
>> Removing city A (0,1694)
 
remove 0 1695
>> Removing city A (0,1695)
 
remove 0 1696
>> Removing city A (0,1696)
 
remove 0 1697
>> Removing city A (0,1697)
 
remove 0 1698
>> Removing city A (0,1698)
 
remove 0 1699
>> Removing city A (0,1699)
 
remove 0 1700
>> Removing city A (0,1700)
 
remove 0 1701
>> Removing city A (0,1701)
 
remove 0 1702
>> Removing city A (0,1702)
 
remove 0 1703
>> Removing city A (0,1703)
 
remove 0 1704
>> Removing city A (0,1704)
 
remove 0 1705
>> Removing city A (0,1705)
 
remove 0 1706
>> Removing city A (0,1706)
 
remove 0 1707
>> Removing city A (0,1707)
 
remove 0 1708
>> Removing city A (0,1708)
 
remove 0 1709
>> Removing city A (0,1709)
 
remove 0 1710
>> Removing city A (0,1710)
 
remove 0 1711
>> Removing city A (0,1711)
 
remove 0 1712
>> Removing city A (0,1712)
 
remove 0 1713
>> Removing city A (0,1713)
 
remove 0 1714
>> Removing city A (0,1714)
 
remove 0 1715
>> Removing city A (0,1715)
 
remove 0 1716
>> Removing city A (0,1716)
 
remove 0 1717
>> Removing city A (0,1717)
 
remove 0 1718
>> Removing city A (0,1718)
 
remove 0 1719
>> Removing city A (0,1719)
 
remove 0 1720
>> Removing city A (0,1720)
 
remove 0 1721
>> Removing city A (0,1721)
 
remove 0 1722
>> Removing city A (0,1722)
 
remove 0 1723
>> Removing city A (0,1723)
 
remove 0 1724
>> Removing city A (0,1724)
 
remove 0 1725
>> Removing city A (0,1725)
 
remove 0 1726
>> Removing city A (0,1726)
 
remove 0 1727
>> Removing city A (0,1727)
 
remove 0 1728
>> Removing city A (0,1728)
 
remove 0 1729
>> Removing city A (0,1729)
 
remove 0 1730
>> Removing city A (0,1730)
 
remove 0 1731
>> Removing city A (0,1731)
 
remove 0 1732
>> Removing city A (0,1732)
 
remove 0 1733
>> Removing city A (0,1733)
 
remove 0 1734
>> Removing city A (0,1734)
 
remove 0 1735
>> Removing city A (0,1735)
 
remove 0 1736
>> Removing city A (0,1736)
 
remove 0 1737
>> Removing city A (0,1737)
 
remove 0 1738
>> Removing city A (0,1738)
 
remove 0 1739
>> Removing city A (0,1739)
 
remove 0 1740
>> Removing city A (0,1740)
 
remove 0 1741
>> Removing city A (0,1741)
 
remove 0 1742
>> Removing city A (0,1742)
 
remove 0 1743
>> Removing city A (0,1743)
 
remove 0 1744
>> Removing city A (0,1744)
 
remove 0 1745
>> Removing city A (0,1745)
 
remove 0 1746
>> Removing city A (0,1746)
 
remove 0 1747
>> Removing city A (0,1747)
 
remove 0 1748
>> Removing city A (0,1748)
 
remove 0 1749
>> Removing city A (0,1749)
 
remove 0 1750
>> Removing city A (0,1750)
 
remove 0 1751
>> Removing city A (0,1751)
 
remove 0 1752
>> Removing city A (0,1752)
 
remove 0 1753
>> Removing city A (0,1753)
 
remove 0 1754
>> Removing city A (0,1754)
 
remove 0 1755
>> Removing city A (0,1755)
 
remove 0 1756
>> Removing city A (0,1756)
 
remove 0 1757
>> Removing city A (0,1757)
 
remove 0 1758
>> Removing city A (0,1758)
 
remove 0 1759
>> Removing city A (0,1759)
 
remove 0 1760
>> Removing city A (0,1760)
 
remove 0 1761
>> Removing city A (0,1761)
 
remove 0 1762
>> Removing city A (0,1762)
 
remove 0 1763
>> Removing city A (0,1763)
 
remove 0 1764
>> Removing city A (0,1764)
 
remove 0 1765
>> Removing city A (0,1765)
 
remove 0 1766
>> Removing city A (0,1766)
 
remove 0 1767
>> Removing city A (0,1767)
 
remove 0 1768
>> Removing city A (0,1768)
 
remove 0 1769
>> Removing city A (0,1769)
 
remove 0 1770
>> Removing city A (0,1770)
 
remove 0 1771
>> Removing city A (0,1771)
 
remove 0 1772
>> Removing city A (0,1772)
 
remove 0 1773
>> Removing city A (0,1773)
 
remove 0 1774
>> Removing city A (0,1774)
 
remove 0 1775
>> Removing city A (0,1775)
 
remove 0 1776
>> Removing city A (0,1776)
 
remove 0 1777
>> Removing city A (0,1777)
 
remove 0 1778
>> Removing city A (0,1778)
 
remove 0 1779
>> Removing city A (0,1779)
 
remove 0 1780
>> Removing city A (0,1780)
 
remove 0 1781
>> Removing city A (0,1781)
 
remove 0 1782
>> Removing city A (0,1782)
 
remove 0 1783
>> Removing city A (0,1783)
 
remove 0 1784
>> Removing city A (0,1784)
 
remove 0 1785
>> Removing city A (0,1785)
 
remove 0 1786
>> Removing city A (0,1786)
 
remove 0 1787
>> Removing city A (0,1787)
 
remove 0 1788
>> Removing city A (0,1788)
 
remove 0 1789
>> Removing city A (0,1789)
 
remove 0 1790
>> Removing city A (0,1790)
 
remove 0 1791
>> Removing city A (0,1791)
 
remove 0 1792
>> Removing city A (0,1792)
 
remove 0 1793
>> Removing city A (0,1793)
 
remove 0 1794
>> Removing city A (0,1794)
 
remove 0 1795
>> Removing city A (0,1795)
 
remove 0 1796
>> Removing city A (0,1796)
 
remove 0 1797
>> Removing city A (0,1797)
 
remove 0 1798
>> Removing city A (0,1798)
 
remove 0 1799
>> Removing city A (0,1799)
 
remove 0 1800
>> Removing city A (0,1800)
 
remove 0 1801
>> Removing city A (0,1801)
 
remove 0 1802
>> Removing city A (0,1802)
 
remove 0 1803
>> Removing city A (0,1803)
 
remove 0 1804
>> Removing city A (0,1804)
 
remove 0 1805
>> Removing city A (0,1805)
 
remove 0 1806
>> Removing city A (0,1806)
 
remove 0 1807
>> Removing city A (0,1807)
 
remove 0 1808
>> Removing city A (0,1808)
 
remove 0 1809
>> Removing city A (0,1809)
 
remove 0 1810
>> Removing city A (0,1810)
 
remove 0 1811
>> Removing city A (0,1811)
 
remove 0 1812
>> Removing city A (0,1812)
 
remove 0 1813
>> Removing city A (0,1813)
 
remove 0 1814
>> Removing city A (0,1814)
 
remove 0 1815
>> Removing city A (0,1815)
 
remove 0 1816
>> Removing city A (0,1816)
 
remove 0 1817
>> Removing city A (0,1817)
 
remove 0 1818
>> Removing city A (0,1818)
 
remove 0 1819
>> Removing city A (0,1819)
 
remove 0 1820
>> Removing city A (0,1820)
 
remove 0 1821
>> Removing city A (0,1821)
 
remove 0 1822
>> Removing city A (0,1822)
 
remove 0 1823
>> Removing city A (0,1823)
 
remove 0 1824
>> Removing city A (0,1824)
 
remove 0 1825
>> Removing city A (0,1825)
 
remove 0 1826
>> Removing city A (0,1826)
 
remove 0 1827
>> Removing city A (0,1827)
 
remove 0 1828
>> Removing city A (0,1828)
 
remove 0 1829
>> Removing city A (0,1829)
 
remove 0 1830
>> Removing city A (0,1830)
 
remove 0 1831
>> Removing city A (0,1831)
 
remove 0 1832
>> Removing city A (0,1832)
 
remove 0 1833
>> Removing city A (0,1833)
 
remove 0 1834
>> Removing city A (0,1834)
 
remove 0 1835
>> Removing city A (0,1835)
 
remove 0 1836
>> Removing city A (0,1836)
 
remove 0 1837
>> Removing city A (0,1837)
 
remove 0 1838
>> Removing city A (0,1838)
 
remove 0 1839
>> Removing city A (0,1839)
 
remove 0 1840
>> Removing city A (0,1840)
 
remove 0 1841
>> Removing city A (0,1841)
 
remove 0 1842
>> Removing city A (0,1842)
 
remove 0 1843
>> Removing city A (0,1843)
 
remove 0 1844
>> Removing city A (0,1844)
 
remove 0 1845
>> Removing city A (0,1845)
 
remove 0 1846
>> Removing city A (0,1846)
 
remove 0 1847
>> Removing city A (0,1847)
 
remove 0 1848
>> Removing city A (0,1848)
 
remove 0 1849
>> Removing city A (0,1849)
 
remove 0 1850
>> Removing city A (0,1850)
 
remove 0 1851
>> Removing city A (0,1851)
 
remove 0 1852
>> Removing city A (0,1852)
 
remove 0 1853
>> Removing city A (0,1853)
 
remove 0 1854
>> Removing city A (0,1854)
 
remove 0 1855
>> Removing city A (0,1855)
 
remove 0 1856
>> Removing city A (0,1856)
 
remove 0 1857
>> Removing city A (0,1857)
 
remove 0 1858
>> Removing city A (0,1858)
 
remove 0 1859
>> Removing city A (0,1859)
 
remove 0 1860
>> Removing city A (0,1860)
 
remove 0 1861
>> Removing city A (0,1861)
 
remove 0 1862
>> Removing city A (0,1862)
 
remove 0 1863
>> Removing city A (0,1863)
 
remove 0 1864
>> Removing city A (0,1864)
 
remove 0 1865
>> Removing city A (0,1865)
 
remove 0 1866
>> Removing city A (0,1866)
 
remove 0 1867
>> Removing city A (0,1867)
 
remove 0 1868
>> Removing city A (0,1868)
 
remove 0 1869
>> Removing city A (0,1869)
 
remove 0 1870
>> Removing city A (0,1870)
 
remove 0 1871
>> Removing city A (0,1871)
 
remove 0 1872
>> Removing city A (0,1872)
 
remove 0 1873
>> Removing city A (0,1873)
 
remove 0 1874
>> Removing city A (0,1874)
 
remove 0 1875
>> Removing city A (0,1875)
 
remove 0 1876
>> Removing city A (0,1876)
 
remove 0 1877
>> Removing city A (0,1877)
 
remove 0 1878
>> Removing city A (0,1878)
 
remove 0 1879
>> Removing city A (0,1879)
 
remove 0 1880
>> Removing city A (0,1880)
 
remove 0 1881
>> Removing city A (0,1881)
 
remove 0 1882
>> Removing city A (0,1882)
 
remove 0 1883
>> Removing city A (0,1883)
 
remove 0 1884
>> Removing city A (0,1884)
 
remove 0 1885
>> Removing city A (0,1885)
 
remove 0 1886
>> Removing city A (0,1886)
 
remove 0 1887
>> Removing city A (0,1887)
 
remove 0 1888
>> Removing city A (0,1888)
 
remove 0 1889
>> Removing city A (0,1889)
 
remove 0 1890
>> Removing city A (0,1890)
 
remove 0 1891
>> Removing city A (0,1891)
 
remove 0 1892
>> Removing city A (0,1892)
 
remove 0 1893
>> Removing city A (0,1893)
 
remove 0 1894
>> Removing city A (0,1894)
 
remove 0 1895
>> Removing city A (0,1895)
 
remove 0 1896
>> Removing city A (0,1896)
 
remove 0 1897
>> Removing city A (0,1897)
 
remove 0 1898
>> Removing city A (0,1898)
 
remove 0 1899
>> Removing city A (0,1899)
 
remove 0 1900
>> Removing city A (0,1900)
 
remove 0 1901
>> Removing city A (0,1901)
 
remove 0 1902
>> Removing city A (0,1902)
 
remove 0 1903
>> Removing city A (0,1903)
 
remove 0 1904
>> Removing city A (0,1904)
 
remove 0 1905
>> Removing city A (0,1905)
 
remove 0 1906
>> Removing city A (0,1906)
 
remove 0 1907
>> Removing city A (0,1907)
 
remove 0 1908
>> Removing city A (0,1908)
 
remove 0 1909
>> Removing city A (0,1909)
 
remove 0 1910
>> Removing city A (0,1910)
 
remove 0 1911
>> Removing city A (0,1911)
 
remove 0 1912
>> Removing city A (0,1912)
 
remove 0 1913
>> Removing city A (0,1913)
 
remove 0 1914
>> Removing city A (0,1914)
 
remove 0 1915
>> Removing city A (0,1915)
 
remove 0 1916
>> Removing city A (0,1916)
 
remove 0 1917
>> Removing city A (0,1917)
 
remove 0 1918
>> Removing city A (0,1918)
 
remove 0 1919
>> Removing city A (0,1919)
 
remove 0 1920
>> Removing city A (0,1920)
 
remove 0 1921
>> Removing city A (0,1921)
 
remove 0 1922
>> Removing city A (0,1922)
 
remove 0 1923
>> Removing city A (0,1923)
 
remove 0 1924
>> Removing city A (0,1924)
 
remove 0 1925
>> Removing city A (0,1925)
 
remove 0 1926
>> Removing city A (0,1926)
 
remove 0 1927
>> Removing city A (0,1927)
 
remove 0 1928
>> Removing city A (0,1928)
 
remove 0 1929
>> Removing city A (0,1929)
 
remove 0 1930
>> Removing city A (0,1930)
 
remove 0 1931
>> Removing city A (0,1931)
 
remove 0 1932
>> Removing city A (0,1932)
 
remove 0 1933
>> Removing city A (0,1933)
 
remove 0 1934
>> Removing city A (0,1934)
 
remove 0 1935
>> Removing city A (0,1935)
 
remove 0 1936
>> Removing city A (0,1936)
 
remove 0 1937
>> Removing city A (0,1937)
 
remove 0 1938
>> Removing city A (0,1938)
 
remove 0 1939
>> Removing city A (0,1939)
 
remove 0 1940
>> Removing city A (0,1940)
 
remove 0 1941
>> Removing city A (0,1941)
 
remove 0 1942
>> Removing city A (0,1942)
 
remove 0 1943
>> Removing city A (0,1943)
 
remove 0 1944
>> Removing city A (0,1944)
 
remove 0 1945
>> Removing city A (0,1945)
 
remove 0 1946
>> Removing city A (0,1946)
 
remove 0 1947
>> Removing city A (0,1947)
 
remove 0 1948
>> Removing city A (0,1948)
 
remove 0 1949
>> Removing city A (0,1949)
 
remove 0 1950
>> Removing city A (0,1950)
 
remove 0 1951
>> Removing city A (0,1951)
 
remove 0 1952
>> Removing city A (0,1952)
 
remove 0 1953
>> Removing city A (0,1953)
 
remove 0 1954
>> Removing city A (0,1954)
 
remove 0 1955
>> Removing city A (0,1955)
 
remove 0 1956
>> Removing city A (0,1956)
 
remove 0 1957
>> Removing city A (0,1957)
 
remove 0 1958
>> Removing city A (0,1958)
 
remove 0 1959
>> Removing city A (0,1959)
 
remove 0 1960
>> Removing city A (0,1960)
 
remove 0 1961
>> Removing city A (0,1961)
 
remove 0 1962
>> Removing city A (0,1962)
 
remove 0 1963
>> Removing city A (0,1963)
 
remove 0 1964
>> Removing city A (0,1964)
 
remove 0 1965
>> Removing city A (0,1965)
 
remove 0 1966
>> Removing city A (0,1966)
 
remove 0 1967
>> Removing city A (0,1967)
 
remove 0 1968
>> Removing city A (0,1968)
 
remove 0 1969
>> Removing city A (0,1969)
 
remove 0 1970
>> Removing city A (0,1970)
 
remove 0 1971
>> Removing city A (0,1971)
 
remove 0 1972
>> Removing city A (0,1972)
 
remove 0 1973
>> Removing city A (0,1973)
 
remove 0 1974
>> Removing city A (0,1974)
 
remove 0 1975
>> Removing city A (0,1975)
 
remove 0 1976
>> Removing city A (0,1976)
 
remove 0 1977
>> Removing city A (0,1977)
 
remove 0 1978
>> Removing city A (0,1978)
 
remove 0 1979
>> Removing city A (0,1979)
 
remove 0 1980
>> Removing city A (0,1980)
 
remove 0 1981
>> Removing city A (0,1981)
 
remove 0 1982
>> Removing city A (0,1982)
 
remove 0 1983
>> Removing city A (0,1983)
 
remove 0 1984
>> Removing city A (0,1984)
 
remove 0 1985
>> Removing city A (0,1985)
 
remove 0 1986
>> Removing city A (0,1986)
 
remove 0 1987
>> Removing city A (0,1987)
 
remove 0 1988
>> Removing city A (0,1988)
 
remove 0 1989
>> Removing city A (0,1989)
 
remove 0 1990
>> Removing city A (0,1990)
 
remove 0 1991
>> Removing city A (0,1991)
 
remove 0 1992
>> Removing city A (0,1992)
 
remove 0 1993
>> Removing city A (0,1993)
 
remove 0 1994
>> Removing city A (0,1994)
 
remove 0 1995
>> Removing city A (0,1995)
 
remove 0 1996
>> Removing city A (0,1996)
 
remove 0 1997
>> Removing city A (0,1997)
 
remove 0 1998
>> Removing city A (0,1998)
 
remove 0 1999
>> Removing city A (0,1999)
 
remove 0 2000
>> Removing city A (0,2000)
 
remove 0 2001
>> Removing city A (0,2001)
 
remove 0 2002
>> Removing city A (0,2002)
 
remove 0 2003
>> Removing city A (0,2003)
 
remove 0 2004
>> Removing city A (0,2004)
 
remove 0 2005
>> Removing city A (0,2005)
 
remove 0 2006
>> Removing city A (0,2006)
 
remove 0 2007
>> Removing city A (0,2007)
 
remove 0 2008
>> Removing city A (0,2008)
 
remove 0 2009
>> Removing city A (0,2009)
 
remove 0 2010
>> Removing city A (0,2010)
 
remove 0 2011
>> Removing city A (0,2011)
 
remove 0 2012
>> Removing city A (0,2012)
 
remove 0 2013
>> Removing city A (0,2013)
 
remove 0 2014
>> Removing city A (0,2014)
 
remove 0 2015
>> Removing city A (0,2015)
 
remove 0 2016
>> Removing city A (0,2016)
 
remove 0 2017
>> Removing city A (0,2017)
 
remove 0 2018
>> Removing city A (0,2018)
 
remove 0 2019
>> Removing city A (0,2019)
 
remove 0 2020
>> Removing city A (0,2020)
 
remove 0 2021
>> Removing city A (0,2021)
 
remove 0 2022
>> Removing city A (0,2022)
 
remove 0 2023
>> Removing city A (0,2023)
 
remove 0 2024
>> Removing city A (0,2024)
 
remove 0 2025
>> Removing city A (0,2025)
 
remove 0 2026
>> Removing city A (0,2026)
 
remove 0 2027
>> Removing city A (0,2027)
 
remove 0 2028
>> Removing city A (0,2028)
 
remove 0 2029
>> Removing city A (0,2029)
 
remove 0 2030
>> Removing city A (0,2030)
 
remove 0 2031
>> Removing city A (0,2031)
 
remove 0 2032
>> Removing city A (0,2032)
 
remove 0 2033
>> Removing city A (0,2033)
 
remove 0 2034
>> Removing city A (0,2034)
 
remove 0 2035
>> Removing city A (0,2035)
 
remove 0 2036
>> Removing city A (0,2036)
 
remove 0 2037
>> Removing city A (0,2037)
 
remove 0 2038
>> Removing city A (0,2038)
 
remove 0 2039
>> Removing city A (0,2039)
 
remove 0 2040
>> Removing city A (0,2040)
 
remove 0 2041
>> Removing city A (0,2041)
 
remove 0 2042
>> Removing city A (0,2042)
 
remove 0 2043
>> Removing city A (0,2043)
 
remove 0 2044
>> Removing city A (0,2044)
 
remove 0 2045
>> Removing city A (0,2045)
 
remove 0 2046
>> Removing city A (0,2046)
 
remove 0 2047
>> Removing city A (0,2047)
 
remove 0 2048
>> Removing city A (0,2048)
 
remove 0 2049
>> Removing city A (0,2049)
 
remove 0 2050
>> Removing city A (0,2050)
 
remove 0 2051
>> Removing city A (0,2051)
 
remove 0 2052
>> Removing city A (0,2052)
 
remove 0 2053
>> Removing city A (0,2053)
 
remove 0 2054
>> Removing city A (0,2054)
 
remove 0 2055
>> Removing city A (0,2055)
 
remove 0 2056
>> Removing city A (0,2056)
 
remove 0 2057
>> Removing city A (0,2057)
 
remove 0 2058
>> Removing city A (0,2058)
 
remove 0 2059
>> Removing city A (0,2059)
 
remove 0 2060
>> Removing city A (0,2060)
 
remove 0 2061
>> Removing city A (0,2061)
 
remove 0 2062
>> Removing city A (0,2062)
 
remove 0 2063
>> Removing city A (0,2063)
 
remove 0 2064
>> Removing city A (0,2064)
 
remove 0 2065
>> Removing city A (0,2065)
 
remove 0 2066
>> Removing city A (0,2066)
 
remove 0 2067
>> Removing city A (0,2067)
 
remove 0 2068
>> Removing city A (0,2068)
 
remove 0 2069
>> Removing city A (0,2069)
 
remove 0 2070
>> Removing city A (0,2070)
 
remove 0 2071
>> Removing city A (0,2071)
 
remove 0 2072
>> Removing city A (0,2072)
 
remove 0 2073
>> Removing city A (0,2073)
 
remove 0 2074
>> Removing city A (0,2074)
 
remove 0 2075
>> Removing city A (0,2075)
 
remove 0 2076
>> Removing city A (0,2076)
 
remove 0 2077
>> Removing city A (0,2077)
 
remove 0 2078
>> Removing city A (0,2078)
 
remove 0 2079
>> Removing city A (0,2079)
 
remove 0 2080
>> Removing city A (0,2080)
 
remove 0 2081
>> Removing city A (0,2081)
 
remove 0 2082
>> Removing city A (0,2082)
 
remove 0 2083
>> Removing city A (0,2083)
 
remove 0 2084
>> Removing city A (0,2084)
 
remove 0 2085
>> Removing city A (0,2085)
 
remove 0 2086
>> Removing city A (0,2086)
 
remove 0 2087
>> Removing city A (0,2087)
 
remove 0 2088
>> Removing city A (0,2088)
 
remove 0 2089
>> Removing city A (0,2089)
 
remove 0 2090
>> Removing city A (0,2090)
 
remove 0 2091
>> Removing city A (0,2091)
 
remove 0 2092
>> Removing city A (0,2092)
 
remove 0 2093
>> Removing city A (0,2093)
 
remove 0 2094
>> Removing city A (0,2094)
 
remove 0 2095
>> Removing city A (0,2095)
 
remove 0 2096
>> Removing city A (0,2096)
 
remove 0 2097
>> Removing city A (0,2097)
 
remove 0 2098
>> Removing city A (0,2098)
 
remove 0 2099
>> Removing city A (0,2099)
 
remove 0 2100
>> Removing city A (0,2100)
 
remove 0 2101
>> Removing city A (0,2101)
 
remove 0 2102
>> Removing city A (0,2102)
 
remove 0 2103
>> Removing city A (0,2103)
 
remove 0 2104
>> Removing city A (0,2104)
 
remove 0 2105
>> Removing city A (0,2105)
 
remove 0 2106
>> Removing city A (0,2106)
 
remove 0 2107
>> Removing city A (0,2107)
 
remove 0 2108
>> Removing city A (0,2108)
 
remove 0 2109
>> Removing city A (0,2109)
 
remove 0 2110
>> Removing city A (0,2110)
 
remove 0 2111
>> Removing city A (0,2111)
 
remove 0 2112
>> Removing city A (0,2112)
 
remove 0 2113
>> Removing city A (0,2113)
 
remove 0 2114
>> Removing city A (0,2114)
 
remove 0 2115
>> Removing city A (0,2115)
 
remove 0 2116
>> Removing city A (0,2116)
 
remove 0 2117
>> Removing city A (0,2117)
 
remove 0 2118
>> Removing city A (0,2118)
 
remove 0 2119
>> Removing city A (0,2119)
 
remove 0 2120
>> Removing city A (0,2120)
 
remove 0 2121
>> Removing city A (0,2121)
 
remove 0 2122
>> Removing city A (0,2122)
 
remove 0 2123
>> Removing city A (0,2123)
 
remove 0 2124
>> Removing city A (0,2124)
 
remove 0 2125
>> Removing city A (0,2125)
 
remove 0 2126
>> Removing city A (0,2126)
 
remove 0 2127
>> Removing city A (0,2127)
 
remove 0 2128
>> Removing city A (0,2128)
 
remove 0 2129
>> Removing city A (0,2129)
 
remove 0 2130
>> Removing city A (0,2130)
 
remove 0 2131
>> Removing city A (0,2131)
 
remove 0 2132
>> Removing city A (0,2132)
 
remove 0 2133
>> Removing city A (0,2133)
 
remove 0 2134
>> Removing city A (0,2134)
 
remove 0 2135
>> Removing city A (0,2135)
 
remove 0 2136
>> Removing city A (0,2136)
 
remove 0 2137
>> Removing city A (0,2137)
 
remove 0 2138
>> Removing city A (0,2138)
 
remove 0 2139
>> Removing city A (0,2139)
 
remove 0 2140
>> Removing city A (0,2140)
 
remove 0 2141
>> Removing city A (0,2141)
 
remove 0 2142
>> Removing city A (0,2142)
 
remove 0 2143
>> Removing city A (0,2143)
 
remove 0 2144
>> Removing city A (0,2144)
 
remove 0 2145
>> Removing city A (0,2145)
 
remove 0 2146
>> Removing city A (0,2146)
 
remove 0 2147
>> Removing city A (0,2147)
 
remove 0 2148
>> Removing city A (0,2148)
 
remove 0 2149
>> Removing city A (0,2149)
 
remove 0 2150
>> Removing city A (0,2150)
 
remove 0 2151
>> Removing city A (0,2151)
 
remove 0 2152
>> Removing city A (0,2152)
 
remove 0 2153
>> Removing city A (0,2153)
 
remove 0 2154
>> Removing city A (0,2154)
 
remove 0 2155
>> Removing city A (0,2155)
 
remove 0 2156
>> Removing city A (0,2156)
 
remove 0 2157
>> Removing city A (0,2157)
 
remove 0 2158
>> Removing city A (0,2158)
 
remove 0 2159
>> Removing city A (0,2159)
 
remove 0 2160
>> Removing city A (0,2160)
 
remove 0 2161
>> Removing city A (0,2161)
 
remove 0 2162
>> Removing city A (0,2162)
 
remove 0 2163
>> Removing city A (0,2163)
 
remove 0 2164
>> Removing city A (0,2164)
 
remove 0 2165
>> Removing city A (0,2165)
 
remove 0 2166
>> Removing city A (0,2166)
 
remove 0 2167
>> Removing city A (0,2167)
 
remove 0 2168
>> Removing city A (0,2168)
 
remove 0 2169
>> Removing city A (0,2169)
 
remove 0 2170
>> Removing city A (0,2170)
 
remove 0 2171
>> Removing city A (0,2171)
 
remove 0 2172
>> Removing city A (0,2172)
 
remove 0 2173
>> Removing city A (0,2173)
 
remove 0 2174
>> Removing city A (0,2174)
 
remove 0 2175
>> Removing city A (0,2175)
 
remove 0 2176
>> Removing city A (0,2176)
 
remove 0 2177
>> Removing city A (0,2177)
 
remove 0 2178
>> Removing city A (0,2178)
 
remove 0 2179
>> Removing city A (0,2179)
 
remove 0 2180
>> Removing city A (0,2180)
 
remove 0 2181
>> Removing city A (0,2181)
 
remove 0 2182
>> Removing city A (0,2182)
 
remove 0 2183
>> Removing city A (0,2183)
 
remove 0 2184
>> Removing city A (0,2184)
 
remove 0 2185
>> Removing city A (0,2185)
 
remove 0 2186
>> Removing city A (0,2186)
 
remove 0 2187
>> Removing city A (0,2187)
 
remove 0 2188
>> Removing city A (0,2188)
 
remove 0 2189
>> Removing city A (0,2189)
 
remove 0 2190
>> Removing city A (0,2190)
 
remove 0 2191
>> Removing city A (0,2191)
 
remove 0 2192
>> Removing city A (0,2192)
 
remove 0 2193
>> Removing city A (0,2193)
 
remove 0 2194
>> Removing city A (0,2194)
 
remove 0 2195
>> Removing city A (0,2195)
 
remove 0 2196
>> Removing city A (0,2196)
 
remove 0 2197
>> Removing city A (0,2197)
 
remove 0 2198
>> Removing city A (0,2198)
 
remove 0 2199
>> Removing city A (0,2199)
 
remove 0 2200
>> Removing city A (0,2200)
 
remove 0 2201
>> Removing city A (0,2201)
 
remove 0 2202
>> Removing city A (0,2202)
 
remove 0 2203
>> Removing city A (0,2203)
 
remove 0 2204
>> Removing city A (0,2204)
 
remove 0 2205
>> Removing city A (0,2205)
 
remove 0 2206
>> Removing city A (0,2206)
 
remove 0 2207
>> Removing city A (0,2207)
 
remove 0 2208
>> Removing city A (0,2208)
 
remove 0 2209
>> Removing city A (0,2209)
 
remove 0 2210
>> Removing city A (0,2210)
 
remove 0 2211
>> Removing city A (0,2211)
 
remove 0 2212
>> Removing city A (0,2212)
 
remove 0 2213
>> Removing city A (0,2213)
 
remove 0 2214
>> Removing city A (0,2214)
 
remove 0 2215
>> Removing city A (0,2215)
 
remove 0 2216
>> Removing city A (0,2216)
 
remove 0 2217
>> Removing city A (0,2217)
 
remove 0 2218
>> Removing city A (0,2218)
 
remove 0 2219
>> Removing city A (0,2219)
 
remove 0 2220
>> Removing city A (0,2220)
 
remove 0 2221
>> Removing city A (0,2221)
 
remove 0 2222
>> Removing city A (0,2222)
 
remove 0 2223
>> Removing city A (0,2223)
 
remove 0 2224
>> Removing city A (0,2224)
 
remove 0 2225
>> Removing city A (0,2225)
 
remove 0 2226
>> Removing city A (0,2226)
 
remove 0 2227
>> Removing city A (0,2227)
 
remove 0 2228
>> Removing city A (0,2228)
 
remove 0 2229
>> Removing city A (0,2229)
 
remove 0 2230
>> Removing city A (0,2230)
 
remove 0 2231
>> Removing city A (0,2231)
 
remove 0 2232
>> Removing city A (0,2232)
 
remove 0 2233
>> Removing city A (0,2233)
 
remove 0 2234
>> Removing city A (0,2234)
 
remove 0 2235
>> Removing city A (0,2235)
 
remove 0 2236
>> Removing city A (0,2236)
 
remove 0 2237
>> Removing city A (0,2237)
 
remove 0 2238
>> Removing city A (0,2238)
 
remove 0 2239
>> Removing city A (0,2239)
 
remove 0 2240
>> Removing city A (0,2240)
 
remove 0 2241
>> Removing city A (0,2241)
 
remove 0 2242
>> Removing city A (0,2242)
 
remove 0 2243
>> Removing city A (0,2243)
 
remove 0 2244
>> Removing city A (0,2244)
 
remove 0 2245
>> Removing city A (0,2245)
 
remove 0 2246
>> Removing city A (0,2246)
 
remove 0 2247
>> Removing city A (0,2247)
 
remove 0 2248
>> Removing city A (0,2248)
 
remove 0 2249
>> Removing city A (0,2249)
 
remove 0 2250
>> Removing city A (0,2250)
 
remove 0 2251
>> Removing city A (0,2251)
 
remove 0 2252
>> Removing city A (0,2252)
 
remove 0 2253
>> Removing city A (0,2253)
 
remove 0 2254
>> Removing city A (0,2254)
 
remove 0 2255
>> Removing city A (0,2255)
 
remove 0 2256
>> Removing city A (0,2256)
 
remove 0 2257
>> Removing city A (0,2257)
 
remove 0 2258
>> Removing city A (0,2258)
 
remove 0 2259
>> Removing city A (0,2259)
 
remove 0 2260
>> Removing city A (0,2260)
 
remove 0 2261
>> Removing city A (0,2261)
 
remove 0 2262
>> Removing city A (0,2262)
 
remove 0 2263
>> Removing city A (0,2263)
 
remove 0 2264
>> Removing city A (0,2264)
 
remove 0 2265
>> Removing city A (0,2265)
 
remove 0 2266
>> Removing city A (0,2266)
 
remove 0 2267
>> Removing city A (0,2267)
 
remove 0 2268
>> Removing city A (0,2268)
 
remove 0 2269
>> Removing city A (0,2269)
 
remove 0 2270
>> Removing city A (0,2270)
 
remove 0 2271
>> Removing city A (0,2271)
 
remove 0 2272
>> Removing city A (0,2272)
 
remove 0 2273
>> Removing city A (0,2273)
 
remove 0 2274
>> Removing city A (0,2274)
 
remove 0 2275
>> Removing city A (0,2275)
 
remove 0 2276
>> Removing city A (0,2276)
 
remove 0 2277
>> Removing city A (0,2277)
 
remove 0 2278
>> Removing city A (0,2278)
 
remove 0 2279
>> Removing city A (0,2279)
 
remove 0 2280
>> Removing city A (0,2280)
 
remove 0 2281
>> Removing city A (0,2281)
 
remove 0 2282
>> Removing city A (0,2282)
 
remove 0 2283
>> Removing city A (0,2283)
 
remove 0 2284
>> Removing city A (0,2284)
 
remove 0 2285
>> Removing city A (0,2285)
 
remove 0 2286
>> Removing city A (0,2286)
 
remove 0 2287
>> Removing city A (0,2287)
 
remove 0 2288
>> Removing city A (0,2288)
 
remove 0 2289
>> Removing city A (0,2289)
 
remove 0 2290
>> Removing city A (0,2290)
 
remove 0 2291
>> Removing city A (0,2291)
 
remove 0 2292
>> Removing city A (0,2292)
 
remove 0 2293
>> Removing city A (0,2293)
 
remove 0 2294
>> Removing city A (0,2294)
 
remove 0 2295
>> Removing city A (0,2295)
 
remove 0 2296
>> Removing city A (0,2296)
 
remove 0 2297
>> Removing city A (0,2297)
 
remove 0 2298
>> Removing city A (0,2298)
 
remove 0 2299
>> Removing city A (0,2299)
 
remove 0 2300
>> Removing city A (0,2300)
 
remove 0 2301
>> Removing city A (0,2301)
 
remove 0 2302
>> Removing city A (0,2302)
 
remove 0 2303
>> Removing city A (0,2303)
 
remove 0 2304
>> Removing city A (0,2304)
 
remove 0 2305
>> Removing city A (0,2305)
 
remove 0 2306
>> Removing city A (0,2306)
 
remove 0 2307
>> Removing city A (0,2307)
 
remove 0 2308
>> Removing city A (0,2308)
 
remove 0 2309
>> Removing city A (0,2309)
 
remove 0 2310
>> Removing city A (0,2310)
 
remove 0 2311
>> Removing city A (0,2311)
 
remove 0 2312
>> Removing city A (0,2312)
 
remove 0 2313
>> Removing city A (0,2313)
 
remove 0 2314
>> Removing city A (0,2314)
 
remove 0 2315
>> Removing city A (0,2315)
 
remove 0 2316
>> Removing city A (0,2316)
 
remove 0 2317
>> Removing city A (0,2317)
 
remove 0 2318
>> Removing city A (0,2318)
 
remove 0 2319
>> Removing city A (0,2319)
 
remove 0 2320
>> Removing city A (0,2320)
 
remove 0 2321
>> Removing city A (0,2321)
 
remove 0 2322
>> Removing city A (0,2322)
 
remove 0 2323
>> Removing city A (0,2323)
 
remove 0 2324
>> Removing city A (0,2324)
 
remove 0 2325
>> Removing city A (0,2325)
 
remove 0 2326
>> Removing city A (0,2326)
 
remove 0 2327
>> Removing city A (0,2327)
 
remove 0 2328
>> Removing city A (0,2328)
 
remove 0 2329
>> Removing city A (0,2329)
 
remove 0 2330
>> Removing city A (0,2330)
 
remove 0 2331
>> Removing city A (0,2331)
 
remove 0 2332
>> Removing city A (0,2332)
 
remove 0 2333
>> Removing city A (0,2333)
 
remove 0 2334
>> Removing city A (0,2334)
 
remove 0 2335
>> Removing city A (0,2335)
 
remove 0 2336
>> Removing city A (0,2336)
 
remove 0 2337
>> Removing city A (0,2337)
 
remove 0 2338
>> Removing city A (0,2338)
 
remove 0 2339
>> Removing city A (0,2339)
 
remove 0 2340
>> Removing city A (0,2340)
 
remove 0 2341
>> Removing city A (0,2341)
 
remove 0 2342
>> Removing city A (0,2342)
 
remove 0 2343
>> Removing city A (0,2343)
 
remove 0 2344
>> Removing city A (0,2344)
 
remove 0 2345
>> Removing city A (0,2345)
 
remove 0 2346
>> Removing city A (0,2346)
 
remove 0 2347
>> Removing city A (0,2347)
 
remove 0 2348
>> Removing city A (0,2348)
 
remove 0 2349
>> Removing city A (0,2349)
 
remove 0 2350
>> Removing city A (0,2350)
 
remove 0 2351
>> Removing city A (0,2351)
 
remove 0 2352
>> Removing city A (0,2352)
 
remove 0 2353
>> Removing city A (0,2353)
 
remove 0 2354
>> Removing city A (0,2354)
 
remove 0 2355
>> Removing city A (0,2355)
 
remove 0 2356
>> Removing city A (0,2356)
 
remove 0 2357
>> Removing city A (0,2357)
 
remove 0 2358
>> Removing city A (0,2358)
 
remove 0 2359
>> Removing city A (0,2359)
 
remove 0 2360
>> Removing city A (0,2360)
 
remove 0 2361
>> Removing city A (0,2361)
 
remove 0 2362
>> Removing city A (0,2362)
 
remove 0 2363
>> Removing city A (0,2363)
 
remove 0 2364
>> Removing city A (0,2364)
 
remove 0 2365
>> Removing city A (0,2365)
 
remove 0 2366
>> Removing city A (0,2366)
 
remove 0 2367
>> Removing city A (0,2367)
 
remove 0 2368
>> Removing city A (0,2368)
 
remove 0 2369
>> Removing city A (0,2369)
 
remove 0 2370
>> Removing city A (0,2370)
 
remove 0 2371
>> Removing city A (0,2371)
 
remove 0 2372
>> Removing city A (0,2372)
 
remove 0 2373
>> Removing city A (0,2373)
 
remove 0 2374
>> Removing city A (0,2374)
 
remove 0 2375
>> Removing city A (0,2375)
 
remove 0 2376
>> Removing city A (0,2376)
 
remove 0 2377
>> Removing city A (0,2377)
 
remove 0 2378
>> Removing city A (0,2378)
 
remove 0 2379
>> Removing city A (0,2379)
 
remove 0 2380
>> Removing city A (0,2380)
 
remove 0 2381
>> Removing city A (0,2381)
 
remove 0 2382
>> Removing city A (0,2382)
 
remove 0 2383
>> Removing city A (0,2383)
 
remove 0 2384
>> Removing city A (0,2384)
 
remove 0 2385
>> Removing city A (0,2385)
 
remove 0 2386
>> Removing city A (0,2386)
 
remove 0 2387
>> Removing city A (0,2387)
 
remove 0 2388
>> Removing city A (0,2388)
 
remove 0 2389
>> Removing city A (0,2389)
 
remove 0 2390
>> Removing city A (0,2390)
 
remove 0 2391
>> Removing city A (0,2391)
 
remove 0 2392
>> Removing city A (0,2392)
 
remove 0 2393
>> Removing city A (0,2393)
 
remove 0 2394
>> Removing city A (0,2394)
 
remove 0 2395
>> Removing city A (0,2395)
 
remove 0 2396
>> Removing city A (0,2396)
 
remove 0 2397
>> Removing city A (0,2397)
 
remove 0 2398
>> Removing city A (0,2398)
 
remove 0 2399
>> Removing city A (0,2399)
 
remove 0 2400
>> Removing city A (0,2400)
 
remove 0 2401
>> Removing city A (0,2401)
 
remove 0 2402
>> Removing city A (0,2402)
 
remove 0 2403
>> Removing city A (0,2403)
 
remove 0 2404
>> Removing city A (0,2404)
 
remove 0 2405
>> Removing city A (0,2405)
 
remove 0 2406
>> Removing city A (0,2406)
 
remove 0 2407
>> Removing city A (0,2407)
 
remove 0 2408
>> Removing city A (0,2408)
 
remove 0 2409
>> Removing city A (0,2409)
 
remove 0 2410
>> Removing city A (0,2410)
 
remove 0 2411
>> Removing city A (0,2411)
 
remove 0 2412
>> Removing city A (0,2412)
 
remove 0 2413
>> Removing city A (0,2413)
 
remove 0 2414
>> Removing city A (0,2414)
 
remove 0 2415
>> Removing city A (0,2415)
 
remove 0 2416
>> Removing city A (0,2416)
 
remove 0 2417
>> Removing city A (0,2417)
 
remove 0 2418
>> Removing city A (0,2418)
 
remove 0 2419
>> Removing city A (0,2419)
 
remove 0 2420
>> Removing city A (0,2420)
 
remove 0 2421
>> Removing city A (0,2421)
 
remove 0 2422
>> Removing city A (0,2422)
 
remove 0 2423
>> Removing city A (0,2423)
 
remove 0 2424
>> Removing city A (0,2424)
 
remove 0 2425
>> Removing city A (0,2425)
 
remove 0 2426
>> Removing city A (0,2426)
 
remove 0 2427
>> Removing city A (0,2427)
 
remove 0 2428
>> Removing city A (0,2428)
 
remove 0 2429
>> Removing city A (0,2429)
 
remove 0 2430
>> Removing city A (0,2430)
 
remove 0 2431
>> Removing city A (0,2431)
 
remove 0 2432
>> Removing city A (0,2432)
 
remove 0 2433
>> Removing city A (0,2433)
 
remove 0 2434
>> Removing city A (0,2434)
 
remove 0 2435
>> Removing city A (0,2435)
 
remove 0 2436
>> Removing city A (0,2436)
 
remove 0 2437
>> Removing city A (0,2437)
 
remove 0 2438
>> Removing city A (0,2438)
 
remove 0 2439
>> Removing city A (0,2439)
 
remove 0 2440
>> Removing city A (0,2440)
 
remove 0 2441
>> Removing city A (0,2441)
 
remove 0 2442
>> Removing city A (0,2442)
 
remove 0 2443
>> Removing city A (0,2443)
 
remove 0 2444
>> Removing city A (0,2444)
 
remove 0 2445
>> Removing city A (0,2445)
 
remove 0 2446
>> Removing city A (0,2446)
 
remove 0 2447
>> Removing city A (0,2447)
 
remove 0 2448
>> Removing city A (0,2448)
 
remove 0 2449
>> Removing city A (0,2449)
 
remove 0 2450
>> Removing city A (0,2450)
 
remove 0 2451
>> Removing city A (0,2451)
 
remove 0 2452
>> Removing city A (0,2452)
 
remove 0 2453
>> Removing city A (0,2453)
 
remove 0 2454
>> Removing city A (0,2454)
 
remove 0 2455
>> Removing city A (0,2455)
 
remove 0 2456
>> Removing city A (0,2456)
 
remove 0 2457
>> Removing city A (0,2457)
 
remove 0 2458
>> Removing city A (0,2458)
 
remove 0 2459
>> Removing city A (0,2459)
 
remove 0 2460
>> Removing city A (0,2460)
 
remove 0 2461
>> Removing city A (0,2461)
 
remove 0 2462
>> Removing city A (0,2462)
 
remove 0 2463
>> Removing city A (0,2463)
 
remove 0 2464
>> Removing city A (0,2464)
 
remove 0 2465
>> Removing city A (0,2465)
 
remove 0 2466
>> Removing city A (0,2466)
 
remove 0 2467
>> Removing city A (0,2467)
 
remove 0 2468
>> Removing city A (0,2468)
 
remove 0 2469
>> Removing city A (0,2469)
 
remove 0 2470
>> Removing city A (0,2470)
 
remove 0 2471
>> Removing city A (0,2471)
 
remove 0 2472
>> Removing city A (0,2472)
 
remove 0 2473
>> Removing city A (0,2473)
 
remove 0 2474
>> Removing city A (0,2474)
 
remove 0 2475
>> Removing city A (0,2475)
 
remove 0 2476
>> Removing city A (0,2476)
 
remove 0 2477
>> Removing city A (0,2477)
 
remove 0 2478
>> Removing city A (0,2478)
 
remove 0 2479
>> Removing city A (0,2479)
 
remove 0 2480
>> Removing city A (0,2480)
 
remove 0 2481
>> Removing city A (0,2481)
 
remove 0 2482
>> Removing city A (0,2482)
 
remove 0 2483
>> Removing city A (0,2483)
 
remove 0 2484
>> Removing city A (0,2484)
 
remove 0 2485
>> Removing city A (0,2485)
 
remove 0 2486
>> Removing city A (0,2486)
 
remove 0 2487
>> Removing city A (0,2487)
 
remove 0 2488
>> Removing city A (0,2488)
 
remove 0 2489
>> Removing city A (0,2489)
 
remove 0 2490
>> Removing city A (0,2490)
 
remove 0 2491
>> Removing city A (0,2491)
 
remove 0 2492
>> Removing city A (0,2492)
 
remove 0 2493
>> Removing city A (0,2493)
 
remove 0 2494
>> Removing city A (0,2494)
 
remove 0 2495
>> Removing city A (0,2495)
 
remove 0 2496
>> Removing city A (0,2496)
 
remove 0 2497
>> Removing city A (0,2497)
 
remove 0 2498
>> Removing city A (0,2498)
 
remove 0 2499
>> Removing city A (0,2499)
 
remove 0 2500
>> Removing city A (0,2500)
 
remove 0 2501
>> Removing city A (0,2501)
 
remove 0 2502
>> Removing city A (0,2502)
 
remove 0 2503
>> Removing city A (0,2503)
 
remove 0 2504
>> Removing city A (0,2504)
 
remove 0 2505
>> Removing city A (0,2505)
 
remove 0 2506
>> Removing city A (0,2506)
 
remove 0 2507
>> Removing city A (0,2507)
 
remove 0 2508
>> Removing city A (0,2508)
 
remove 0 2509
>> Removing city A (0,2509)
 
remove 0 2510
>> Removing city A (0,2510)
 
remove 0 2511
>> Removing city A (0,2511)
 
remove 0 2512
>> Removing city A (0,2512)
 
remove 0 2513
>> Removing city A (0,2513)
 
remove 0 2514
>> Removing city A (0,2514)
 
remove 0 2515
>> Removing city A (0,2515)
 
remove 0 2516
>> Removing city A (0,2516)
 
remove 0 2517
>> Removing city A (0,2517)
 
remove 0 2518
>> Removing city A (0,2518)
 
remove 0 2519
>> Removing city A (0,2519)
 
remove 0 2520
>> Removing city A (0,2520)
 
remove 0 2521
>> Removing city A (0,2521)
 
remove 0 2522
>> Removing city A (0,2522)
 
remove 0 2523
>> Removing city A (0,2523)
 
remove 0 2524
>> Removing city A (0,2524)
 
remove 0 2525
>> Removing city A (0,2525)
 
remove 0 2526
>> Removing city A (0,2526)
 
remove 0 2527
>> Removing city A (0,2527)
 
remove 0 2528
>> Removing city A (0,2528)
 
remove 0 2529
>> Removing city A (0,2529)
 
remove 0 2530
>> Removing city A (0,2530)
 
remove 0 2531
>> Removing city A (0,2531)
 
remove 0 2532
>> Removing city A (0,2532)
 
remove 0 2533
>> Removing city A (0,2533)
 
remove 0 2534
>> Removing city A (0,2534)
 
remove 0 2535
>> Removing city A (0,2535)
 
remove 0 2536
>> Removing city A (0,2536)
 
remove 0 2537
>> Removing city A (0,2537)
 
remove 0 2538
>> Removing city A (0,2538)
 
remove 0 2539
>> Removing city A (0,2539)
 
remove 0 2540
>> Removing city A (0,2540)
 
remove 0 2541
>> Removing city A (0,2541)
 
remove 0 2542
>> Removing city A (0,2542)
 
remove 0 2543
>> Removing city A (0,2543)
 
remove 0 2544
>> Removing city A (0,2544)
 
remove 0 2545
>> Removing city A (0,2545)
 
remove 0 2546
>> Removing city A (0,2546)
 
remove 0 2547
>> Removing city A (0,2547)
 
remove 0 2548
>> Removing city A (0,2548)
 
remove 0 2549
>> Removing city A (0,2549)
 
remove 0 2550
>> Removing city A (0,2550)
 
remove 0 2551
>> Removing city A (0,2551)
 
remove 0 2552
>> Removing city A (0,2552)
 
remove 0 2553
>> Removing city A (0,2553)
 
remove 0 2554
>> Removing city A (0,2554)
 
remove 0 2555
>> Removing city A (0,2555)
 
remove 0 2556
>> Removing city A (0,2556)
 
remove 0 2557
>> Removing city A (0,2557)
 
remove 0 2558
>> Removing city A (0,2558)
 
remove 0 2559
>> Removing city A (0,2559)
 
remove 0 2560
>> Removing city A (0,2560)
 
remove 0 2561
>> Removing city A (0,2561)
 
remove 0 2562
>> Removing city A (0,2562)
 
remove 0 2563
>> Removing city A (0,2563)
 
remove 0 2564
>> Removing city A (0,2564)
 
remove 0 2565
>> Removing city A (0,2565)
 
remove 0 2566
>> Removing city A (0,2566)
 
remove 0 2567
>> Removing city A (0,2567)
 
remove 0 2568
>> Removing city A (0,2568)
 
remove 0 2569
>> Removing city A (0,2569)
 
remove 0 2570
>> Removing city A (0,2570)
 
remove 0 2571
>> Removing city A (0,2571)
 
remove 0 2572
>> Removing city A (0,2572)
 
remove 0 2573
>> Removing city A (0,2573)
 
remove 0 2574
>> Removing city A (0,2574)
 
remove 0 2575
>> Removing city A (0,2575)
 
remove 0 2576
>> Removing city A (0,2576)
 
remove 0 2577
>> Removing city A (0,2577)
 
remove 0 2578
>> Removing city A (0,2578)
 
remove 0 2579
>> Removing city A (0,2579)
 
remove 0 2580
>> Removing city A (0,2580)
 
remove 0 2581
>> Removing city A (0,2581)
 
remove 0 2582
>> Removing city A (0,2582)
 
remove 0 2583
>> Removing city A (0,2583)
 
remove 0 2584
>> Removing city A (0,2584)
 
remove 0 2585
>> Removing city A (0,2585)
 
remove 0 2586
>> Removing city A (0,2586)
 
remove 0 2587
>> Removing city A (0,2587)
 
remove 0 2588
>> Removing city A (0,2588)
 
remove 0 2589
>> Removing city A (0,2589)
 
remove 0 2590
>> Removing city A (0,2590)
 
remove 0 2591
>> Removing city A (0,2591)
 
remove 0 2592
>> Removing city A (0,2592)
 
remove 0 2593
>> Removing city A (0,2593)
 
remove 0 2594
>> Removing city A (0,2594)
 
remove 0 2595
>> Removing city A (0,2595)
 
remove 0 2596
>> Removing city A (0,2596)
 
remove 0 2597
>> Removing city A (0,2597)
 
remove 0 2598
>> Removing city A (0,2598)
 
remove 0 2599
>> Removing city A (0,2599)
 
remove 0 2600
>> Removing city A (0,2600)
 
remove 0 2601
>> Removing city A (0,2601)
 
remove 0 2602
>> Removing city A (0,2602)
 
remove 0 2603
>> Removing city A (0,2603)
 
remove 0 2604
>> Removing city A (0,2604)
 
remove 0 2605
>> Removing city A (0,2605)
 
remove 0 2606
>> Removing city A (0,2606)
 
remove 0 2607
>> Removing city A (0,2607)
 
remove 0 2608
>> Removing city A (0,2608)
 
remove 0 2609
>> Removing city A (0,2609)
 
remove 0 2610
>> Removing city A (0,2610)
 
remove 0 2611
>> Removing city A (0,2611)
 
remove 0 2612
>> Removing city A (0,2612)
 
remove 0 2613
>> Removing city A (0,2613)
 
remove 0 2614
>> Removing city A (0,2614)
 
remove 0 2615
>> Removing city A (0,2615)
 
remove 0 2616
>> Removing city A (0,2616)
 
remove 0 2617
>> Removing city A (0,2617)
 
remove 0 2618
>> Removing city A (0,2618)
 
remove 0 2619
>> Removing city A (0,2619)
 
remove 0 2620
>> Removing city A (0,2620)
 
remove 0 2621
>> Removing city A (0,2621)
 
remove 0 2622
>> Removing city A (0,2622)
 
remove 0 2623
>> Removing city A (0,2623)
 
remove 0 2624
>> Removing city A (0,2624)
 
remove 0 2625
>> Removing city A (0,2625)
 
remove 0 2626
>> Removing city A (0,2626)
 
remove 0 2627
>> Removing city A (0,2627)
 
remove 0 2628
>> Removing city A (0,2628)
 
remove 0 2629
>> Removing city A (0,2629)
 
remove 0 2630
>> Removing city A (0,2630)
 
remove 0 2631
>> Removing city A (0,2631)
 
remove 0 2632
>> Removing city A (0,2632)
 
remove 0 2633
>> Removing city A (0,2633)
 
remove 0 2634
>> Removing city A (0,2634)
 
remove 0 2635
>> Removing city A (0,2635)
 
remove 0 2636
>> Removing city A (0,2636)
 
remove 0 2637
>> Removing city A (0,2637)
 
remove 0 2638
>> Removing city A (0,2638)
 
remove 0 2639
>> Removing city A (0,2639)
 
remove 0 2640
>> Removing city A (0,2640)
 
remove 0 2641
>> Removing city A (0,2641)
 
remove 0 2642
>> Removing city A (0,2642)
 
remove 0 2643
>> Removing city A (0,2643)
 
remove 0 2644
>> Removing city A (0,2644)
 
remove 0 2645
>> Removing city A (0,2645)
 
remove 0 2646
>> Removing city A (0,2646)
 
remove 0 2647
>> Removing city A (0,2647)
 
remove 0 2648
>> Removing city A (0,2648)
 
remove 0 2649
>> Removing city A (0,2649)
 
remove 0 2650
>> Removing city A (0,2650)
 
remove 0 2651
>> Removing city A (0,2651)
 
remove 0 2652
>> Removing city A (0,2652)
 
remove 0 2653
>> Removing city A (0,2653)
 
remove 0 2654
>> Removing city A (0,2654)
 
remove 0 2655
>> Removing city A (0,2655)
 
remove 0 2656
>> Removing city A (0,2656)
 
remove 0 2657
>> Removing city A (0,2657)
 
remove 0 2658
>> Removing city A (0,2658)
 
remove 0 2659
>> Removing city A (0,2659)
 
remove 0 2660
>> Removing city A (0,2660)
 
remove 0 2661
>> Removing city A (0,2661)
 
remove 0 2662
>> Removing city A (0,2662)
 
remove 0 2663
>> Removing city A (0,2663)
 
remove 0 2664
>> Removing city A (0,2664)
 
remove 0 2665
>> Removing city A (0,2665)
 
remove 0 2666
>> Removing city A (0,2666)
 
remove 0 2667
>> Removing city A (0,2667)
 
remove 0 2668
>> Removing city A (0,2668)
 
remove 0 2669
>> Removing city A (0,2669)
 
remove 0 2670
>> Removing city A (0,2670)
 
remove 0 2671
>> Removing city A (0,2671)
 
remove 0 2672
>> Removing city A (0,2672)
 
remove 0 2673
>> Removing city A (0,2673)
 
remove 0 2674
>> Removing city A (0,2674)
 
remove 0 2675
>> Removing city A (0,2675)
 
remove 0 2676
>> Removing city A (0,2676)
 
remove 0 2677
>> Removing city A (0,2677)
 
remove 0 2678
>> Removing city A (0,2678)
 
remove 0 2679
>> Removing city A (0,2679)
 
remove 0 2680
>> Removing city A (0,2680)
 
remove 0 2681
>> Removing city A (0,2681)
 
remove 0 2682
>> Removing city A (0,2682)
 
remove 0 2683
>> Removing city A (0,2683)
 
remove 0 2684
>> Removing city A (0,2684)
 
remove 0 2685
>> Removing city A (0,2685)
 
remove 0 2686
>> Removing city A (0,2686)
 
remove 0 2687
>> Removing city A (0,2687)
 
remove 0 2688
>> Removing city A (0,2688)
 
remove 0 2689
>> Removing city A (0,2689)
 
remove 0 2690
>> Removing city A (0,2690)
 
remove 0 2691
>> Removing city A (0,2691)
 
remove 0 2692
>> Removing city A (0,2692)
 
remove 0 2693
>> Removing city A (0,2693)
 
remove 0 2694
>> Removing city A (0,2694)
 
remove 0 2695
>> Removing city A (0,2695)
 
remove 0 2696
>> Removing city A (0,2696)
 
remove 0 2697
>> Removing city A (0,2697)
 
remove 0 2698
>> Removing city A (0,2698)
 
remove 0 2699
>> Removing city A (0,2699)
 
remove 0 2700
>> Removing city A (0,2700)
 
remove 0 2701
>> Removing city A (0,2701)
 
remove 0 2702
>> Removing city A (0,2702)
 
remove 0 2703
>> Removing city A (0,2703)
 
remove 0 2704
>> Removing city A (0,2704)
 
remove 0 2705
>> Removing city A (0,2705)
 
remove 0 2706
>> Removing city A (0,2706)
 
remove 0 2707
>> Removing city A (0,2707)
 
remove 0 2708
>> Removing city A (0,2708)
 
remove 0 2709
>> Removing city A (0,2709)
 
remove 0 2710
>> Removing city A (0,2710)
 
remove 0 2711
>> Removing city A (0,2711)
 
remove 0 2712
>> Removing city A (0,2712)
 
remove 0 2713
>> Removing city A (0,2713)
 
remove 0 2714
>> Removing city A (0,2714)
 
remove 0 2715
>> Removing city A (0,2715)
 
remove 0 2716
>> Removing city A (0,2716)
 
remove 0 2717
>> Removing city A (0,2717)
 
remove 0 2718
>> Removing city A (0,2718)
 
remove 0 2719
>> Removing city A (0,2719)
 
remove 0 2720
>> Removing city A (0,2720)
 
remove 0 2721
>> Removing city A (0,2721)
 
remove 0 2722
>> Removing city A (0,2722)
 
remove 0 2723
>> Removing city A (0,2723)
 
remove 0 2724
>> Removing city A (0,2724)
 
remove 0 2725
>> Removing city A (0,2725)
 
remove 0 2726
>> Removing city A (0,2726)
 
remove 0 2727
>> Removing city A (0,2727)
 
remove 0 2728
>> Removing city A (0,2728)
 
remove 0 2729
>> Removing city A (0,2729)
 
remove 0 2730
>> Removing city A (0,2730)
 
remove 0 2731
>> Removing city A (0,2731)
 
remove 0 2732
>> Removing city A (0,2732)
 
remove 0 2733
>> Removing city A (0,2733)
 
remove 0 2734
>> Removing city A (0,2734)
 
remove 0 2735
>> Removing city A (0,2735)
 
remove 0 2736
>> Removing city A (0,2736)
 
remove 0 2737
>> Removing city A (0,2737)
 
remove 0 2738
>> Removing city A (0,2738)
 
remove 0 2739
>> Removing city A (0,2739)
 
remove 0 2740
>> Removing city A (0,2740)
 
remove 0 2741
>> Removing city A (0,2741)
 
remove 0 2742
>> Removing city A (0,2742)
 
remove 0 2743
>> Removing city A (0,2743)
 
remove 0 2744
>> Removing city A (0,2744)
 
remove 0 2745
>> Removing city A (0,2745)
 
remove 0 2746
>> Removing city A (0,2746)
 
remove 0 2747
>> Removing city A (0,2747)
 
remove 0 2748
>> Removing city A (0,2748)
 
remove 0 2749
>> Removing city A (0,2749)
 
remove 0 2750
>> Removing city A (0,2750)
 
remove 0 2751
>> Removing city A (0,2751)
 
remove 0 2752
>> Removing city A (0,2752)
 
remove 0 2753
>> Removing city A (0,2753)
 
remove 0 2754
>> Removing city A (0,2754)
 
remove 0 2755
>> Removing city A (0,2755)
 
remove 0 2756
>> Removing city A (0,2756)
 
remove 0 2757
>> Removing city A (0,2757)
 
remove 0 2758
>> Removing city A (0,2758)
 
remove 0 2759
>> Removing city A (0,2759)
 
remove 0 2760
>> Removing city A (0,2760)
 
remove 0 2761
>> Removing city A (0,2761)
 
remove 0 2762
>> Removing city A (0,2762)
 
remove 0 2763
>> Removing city A (0,2763)
 
remove 0 2764
>> Removing city A (0,2764)
 
remove 0 2765
>> Removing city A (0,2765)
 
remove 0 2766
>> Removing city A (0,2766)
 
remove 0 2767
>> Removing city A (0,2767)
 
remove 0 2768
>> Removing city A (0,2768)
 
remove 0 2769
>> Removing city A (0,2769)
 
remove 0 2770
>> Removing city A (0,2770)
 
remove 0 2771
>> Removing city A (0,2771)
 
remove 0 2772
>> Removing city A (0,2772)
 
remove 0 2773
>> Removing city A (0,2773)
 
remove 0 2774
>> Removing city A (0,2774)
 
remove 0 2775
>> Removing city A (0,2775)
 
remove 0 2776
>> Removing city A (0,2776)
 
remove 0 2777
>> Removing city A (0,2777)
 
remove 0 2778
>> Removing city A (0,2778)
 
remove 0 2779
>> Removing city A (0,2779)
 
remove 0 2780
>> Removing city A (0,2780)
 
remove 0 2781
>> Removing city A (0,2781)
 
remove 0 2782
>> Removing city A (0,2782)
 
remove 0 2783
>> Removing city A (0,2783)
 
remove 0 2784
>> Removing city A (0,2784)
 
remove 0 2785
>> Removing city A (0,2785)
 
remove 0 2786
>> Removing city A (0,2786)
 
remove 0 2787
>> Removing city A (0,2787)
 
remove 0 2788
>> Removing city A (0,2788)
 
remove 0 2789
>> Removing city A (0,2789)
 
remove 0 2790
>> Removing city A (0,2790)
 
remove 0 2791
>> Removing city A (0,2791)
 
remove 0 2792
>> Removing city A (0,2792)
 
remove 0 2793
>> Removing city A (0,2793)
 
remove 0 2794
>> Removing city A (0,2794)
 
remove 0 2795
>> Removing city A (0,2795)
 
remove 0 2796
>> Removing city A (0,2796)
 
remove 0 2797
>> Removing city A (0,2797)
 
remove 0 2798
>> Removing city A (0,2798)
 
remove 0 2799
>> Removing city A (0,2799)
 
remove 0 2800
>> Removing city A (0,2800)
 
remove 0 2801
>> Removing city A (0,2801)
 
remove 0 2802
>> Removing city A (0,2802)
 
remove 0 2803
>> Removing city A (0,2803)
 
remove 0 2804
>> Removing city A (0,2804)
 
remove 0 2805
>> Removing city A (0,2805)
 
remove 0 2806
>> Removing city A (0,2806)
 
remove 0 2807
>> Removing city A (0,2807)
 
remove 0 2808
>> Removing city A (0,2808)
 
remove 0 2809
>> Removing city A (0,2809)
 
remove 0 2810
>> Removing city A (0,2810)
 
remove 0 2811
>> Removing city A (0,2811)
 
remove 0 2812
>> Removing city A (0,2812)
 
remove 0 2813
>> Removing city A (0,2813)
 
remove 0 2814
>> Removing city A (0,2814)
 
remove 0 2815
>> Removing city A (0,2815)
 
remove 0 2816
>> Removing city A (0,2816)
 
remove 0 2817
>> Removing city A (0,2817)
 
remove 0 2818
>> Removing city A (0,2818)
 
remove 0 2819
>> Removing city A (0,2819)
 
remove 0 2820
>> Removing city A (0,2820)
 
remove 0 2821
>> Removing city A (0,2821)
 
remove 0 2822
>> Removing city A (0,2822)
 
remove 0 2823
>> Removing city A (0,2823)
 
remove 0 2824
>> Removing city A (0,2824)
 
remove 0 2825
>> Removing city A (0,2825)
 
remove 0 2826
>> Removing city A (0,2826)
 
remove 0 2827
>> Removing city A (0,2827)
 
remove 0 2828
>> Removing city A (0,2828)
 
remove 0 2829
>> Removing city A (0,2829)
 
remove 0 2830
>> Removing city A (0,2830)
 
remove 0 2831
>> Removing city A (0,2831)
 
remove 0 2832
>> Removing city A (0,2832)
 
remove 0 2833
>> Removing city A (0,2833)
 
remove 0 2834
>> Removing city A (0,2834)
 
remove 0 2835
>> Removing city A (0,2835)
 
remove 0 2836
>> Removing city A (0,2836)
 
remove 0 2837
>> Removing city A (0,2837)
 
remove 0 2838
>> Removing city A (0,2838)
 
remove 0 2839
>> Removing city A (0,2839)
 
remove 0 2840
>> Removing city A (0,2840)
 
remove 0 2841
>> Removing city A (0,2841)
 
remove 0 2842
>> Removing city A (0,2842)
 
remove 0 2843
>> Removing city A (0,2843)
 
remove 0 2844
>> Removing city A (0,2844)
 
remove 0 2845
>> Removing city A (0,2845)
 
remove 0 2846
>> Removing city A (0,2846)
 
remove 0 2847
>> Removing city A (0,2847)
 
remove 0 2848
>> Removing city A (0,2848)
 
remove 0 2849
>> Removing city A (0,2849)
 
remove 0 2850
>> Removing city A (0,2850)
 
remove 0 2851
>> Removing city A (0,2851)
 
remove 0 2852
>> Removing city A (0,2852)
 
remove 0 2853
>> Removing city A (0,2853)
 
remove 0 2854
>> Removing city A (0,2854)
 
remove 0 2855
>> Removing city A (0,2855)
 
remove 0 2856
>> Removing city A (0,2856)
 
remove 0 2857
>> Removing city A (0,2857)
 
remove 0 2858
>> Removing city A (0,2858)
 
remove 0 2859
>> Removing city A (0,2859)
 
remove 0 2860
>> Removing city A (0,2860)
 
remove 0 2861
>> Removing city A (0,2861)
 
remove 0 2862
>> Removing city A (0,2862)
 
remove 0 2863
>> Removing city A (0,2863)
 
remove 0 2864
>> Removing city A (0,2864)
 
remove 0 2865
>> Removing city A (0,2865)
 
remove 0 2866
>> Removing city A (0,2866)
 
remove 0 2867
>> Removing city A (0,2867)
 
remove 0 2868
>> Removing city A (0,2868)
 
remove 0 2869
>> Removing city A (0,2869)
 
remove 0 2870
>> Removing city A (0,2870)
 
remove 0 2871
>> Removing city A (0,2871)
 
remove 0 2872
>> Removing city A (0,2872)
 
remove 0 2873
>> Removing city A (0,2873)
 
remove 0 2874
>> Removing city A (0,2874)
 
remove 0 2875
>> Removing city A (0,2875)
 
remove 0 2876
>> Removing city A (0,2876)
 
remove 0 2877
>> Removing city A (0,2877)
 
remove 0 2878
>> Removing city A (0,2878)
 
remove 0 2879
>> Removing city A (0,2879)
 
remove 0 2880
>> Removing city A (0,2880)
 
remove 0 2881
>> Removing city A (0,2881)
 
remove 0 2882
>> Removing city A (0,2882)
 
remove 0 2883
>> Removing city A (0,2883)
 
remove 0 2884
>> Removing city A (0,2884)
 
remove 0 2885
>> Removing city A (0,2885)
 
remove 0 2886
>> Removing city A (0,2886)
 
remove 0 2887
>> Removing city A (0,2887)
 
remove 0 2888
>> Removing city A (0,2888)
 
remove 0 2889
>> Removing city A (0,2889)
 
remove 0 2890
>> Removing city A (0,2890)
 
remove 0 2891
>> Removing city A (0,2891)
 
remove 0 2892
>> Removing city A (0,2892)
 
remove 0 2893
>> Removing city A (0,2893)
 
remove 0 2894
>> Removing city A (0,2894)
 
remove 0 2895
>> Removing city A (0,2895)
 
remove 0 2896
>> Removing city A (0,2896)
 
remove 0 2897
>> Removing city A (0,2897)
 
remove 0 2898
>> Removing city A (0,2898)
 
remove 0 2899
>> Removing city A (0,2899)
 
remove 0 2900
>> Removing city A (0,2900)
 
remove 0 2901
>> Removing city A (0,2901)
 
remove 0 2902
>> Removing city A (0,2902)
 
remove 0 2903
>> Removing city A (0,2903)
 
remove 0 2904
>> Removing city A (0,2904)
 
remove 0 2905
>> Removing city A (0,2905)
 
remove 0 2906
>> Removing city A (0,2906)
 
remove 0 2907
>> Removing city A (0,2907)
 
remove 0 2908
>> Removing city A (0,2908)
 
remove 0 2909
>> Removing city A (0,2909)
 
remove 0 2910
>> Removing city A (0,2910)
 
remove 0 2911
>> Removing city A (0,2911)
 
remove 0 2912
>> Removing city A (0,2912)
 
remove 0 2913
>> Removing city A (0,2913)
 
remove 0 2914
>> Removing city A (0,2914)
 
remove 0 2915
>> Removing city A (0,2915)
 
remove 0 2916
>> Removing city A (0,2916)
 
remove 0 2917
>> Removing city A (0,2917)
 
remove 0 2918
>> Removing city A (0,2918)
 
remove 0 2919
>> Removing city A (0,2919)
 
remove 0 2920
>> Removing city A (0,2920)
 
remove 0 2921
>> Removing city A (0,2921)
 
remove 0 2922
>> Removing city A (0,2922)
 
remove 0 2923
>> Removing city A (0,2923)
 
remove 0 2924
>> Removing city A (0,2924)
 
remove 0 2925
>> Removing city A (0,2925)
 
remove 0 2926
>> Removing city A (0,2926)
 
remove 0 2927
>> Removing city A (0,2927)
 
remove 0 2928
>> Removing city A (0,2928)
 
remove 0 2929
>> Removing city A (0,2929)
 
remove 0 2930
>> Removing city A (0,2930)
 
remove 0 2931
>> Removing city A (0,2931)
 
remove 0 2932
>> Removing city A (0,2932)
 
remove 0 2933
>> Removing city A (0,2933)
 
remove 0 2934
>> Removing city A (0,2934)
 
remove 0 2935
>> Removing city A (0,2935)
 
remove 0 2936
>> Removing city A (0,2936)
 
remove 0 2937
>> Removing city A (0,2937)
 
remove 0 2938
>> Removing city A (0,2938)
 
remove 0 2939
>> Removing city A (0,2939)
 
remove 0 2940
>> Removing city A (0,2940)
 
remove 0 2941
>> Removing city A (0,2941)
 
remove 0 2942
>> Removing city A (0,2942)
 
remove 0 2943
>> Removing city A (0,2943)
 
remove 0 2944
>> Removing city A (0,2944)
 
remove 0 2945
>> Removing city A (0,2945)
 
remove 0 2946
>> Removing city A (0,2946)
 
remove 0 2947
>> Removing city A (0,2947)
 
remove 0 2948
>> Removing city A (0,2948)
 
remove 0 2949
>> Removing city A (0,2949)
 
remove 0 2950
>> Removing city A (0,2950)
 
remove 0 2951
>> Removing city A (0,2951)
 
remove 0 2952
>> Removing city A (0,2952)
 
remove 0 2953
>> Removing city A (0,2953)
 
remove 0 2954
>> Removing city A (0,2954)
 
remove 0 2955
>> Removing city A (0,2955)
 
remove 0 2956
>> Removing city A (0,2956)
 
remove 0 2957
>> Removing city A (0,2957)
 
remove 0 2958
>> Removing city A (0,2958)
 
remove 0 2959
>> Removing city A (0,2959)
 
remove 0 2960
>> Removing city A (0,2960)
 
remove 0 2961
>> Removing city A (0,2961)
 
remove 0 2962
>> Removing city A (0,2962)
 
remove 0 2963
>> Removing city A (0,2963)
 
remove 0 2964
>> Removing city A (0,2964)
 
remove 0 2965
>> Removing city A (0,2965)
 
remove 0 2966
>> Removing city A (0,2966)
 
remove 0 2967
>> Removing city A (0,2967)
 
remove 0 2968
>> Removing city A (0,2968)
 
remove 0 2969
>> Removing city A (0,2969)
 
remove 0 2970
>> Removing city A (0,2970)
 
remove 0 2971
>> Removing city A (0,2971)
 
remove 0 2972
>> Removing city A (0,2972)
 
remove 0 2973
>> Removing city A (0,2973)
 
remove 0 2974
>> Removing city A (0,2974)
 
remove 0 2975
>> Removing city A (0,2975)
 
remove 0 2976
>> Removing city A (0,2976)
 
remove 0 2977
>> Removing city A (0,2977)
 
remove 0 2978
>> Removing city A (0,2978)
 
remove 0 2979
>> Removing city A (0,2979)
 
remove 0 2980
>> Removing city A (0,2980)
 
remove 0 2981
>> Removing city A (0,2981)
 
remove 0 2982
>> Removing city A (0,2982)
 
remove 0 2983
>> Removing city A (0,2983)
 
remove 0 2984
>> Removing city A (0,2984)
 
remove 0 2985
>> Removing city A (0,2985)
 
remove 0 2986
>> Removing city A (0,2986)
 
remove 0 2987
>> Removing city A (0,2987)
 
remove 0 2988
>> Removing city A (0,2988)
 
remove 0 2989
>> Removing city A (0,2989)
 
remove 0 2990
>> Removing city A (0,2990)
 
remove 0 2991
>> Removing city A (0,2991)
 
remove 0 2992
>> Removing city A (0,2992)
 
remove 0 2993
>> Removing city A (0,2993)
 
remove 0 2994
>> Removing city A (0,2994)
 
remove 0 2995
>> Removing city A (0,2995)
 
remove 0 2996
>> Removing city A (0,2996)
 
remove 0 2997
>> Removing city A (0,2997)
 
remove 0 2998
>> Removing city A (0,2998)
 
remove 0 2999
>> Removing city A (0,2999)
 
remove 0 3000
>> Removing city A (0,3000)
 
remove 0 3001
>> Removing city A (0,3001)
 
remove 0 3002
>> Removing city A (0,3002)
 
remove 0 3003
>> Removing city A (0,3003)
 
remove 0 3004
>> Removing city A (0,3004)
 
remove 0 3005
>> Removing city A (0,3005)
 
remove 0 3006
>> Removing city A (0,3006)
 
remove 0 3007
>> Removing city A (0,3007)
 
remove 0 3008
>> Removing city A (0,3008)
 
remove 0 3009
>> Removing city A (0,3009)
 
remove 0 3010
>> Removing city A (0,3010)
 
remove 0 3011
>> Removing city A (0,3011)
 
remove 0 3012
>> Removing city A (0,3012)
 
remove 0 3013
>> Removing city A (0,3013)
 
remove 0 3014
>> Removing city A (0,3014)
 
remove 0 3015
>> Removing city A (0,3015)
 
remove 0 3016
>> Removing city A (0,3016)
 
remove 0 3017
>> Removing city A (0,3017)
 
remove 0 3018
>> Removing city A (0,3018)
 
remove 0 3019
>> Removing city A (0,3019)
 
remove 0 3020
>> Removing city A (0,3020)
 
remove 0 3021
>> Removing city A (0,3021)
 
remove 0 3022
>> Removing city A (0,3022)
 
remove 0 3023
>> Removing city A (0,3023)
 
remove 0 3024
>> Removing city A (0,3024)
 
remove 0 3025
>> Removing city A (0,3025)
 
remove 0 3026
>> Removing city A (0,3026)
 
remove 0 3027
>> Removing city A (0,3027)
 
remove 0 3028
>> Removing city A (0,3028)
 
remove 0 3029
>> Removing city A (0,3029)
 
remove 0 3030
>> Removing city A (0,3030)
 
remove 0 3031
>> Removing city A (0,3031)
 
remove 0 3032
>> Removing city A (0,3032)
 
remove 0 3033
>> Removing city A (0,3033)
 
remove 0 3034
>> Removing city A (0,3034)
 
remove 0 3035
>> Removing city A (0,3035)
 
remove 0 3036
>> Removing city A (0,3036)
 
remove 0 3037
>> Removing city A (0,3037)
 
remove 0 3038
>> Removing city A (0,3038)
 
remove 0 3039
>> Removing city A (0,3039)
 
remove 0 3040
>> Removing city A (0,3040)
 
remove 0 3041
>> Removing city A (0,3041)
 
remove 0 3042
>> Removing city A (0,3042)
 
remove 0 3043
>> Removing city A (0,3043)
 
remove 0 3044
>> Removing city A (0,3044)
 
remove 0 3045
>> Removing city A (0,3045)
 
remove 0 3046
>> Removing city A (0,3046)
 
remove 0 3047
>> Removing city A (0,3047)
 
remove 0 3048
>> Removing city A (0,3048)
 
remove 0 3049
>> Removing city A (0,3049)
 
remove 0 3050
>> Removing city A (0,3050)
 
remove 0 3051
>> Removing city A (0,3051)
 
remove 0 3052
>> Removing city A (0,3052)
 
remove 0 3053
>> Removing city A (0,3053)
 
remove 0 3054
>> Removing city A (0,3054)
 
remove 0 3055
>> Removing city A (0,3055)
 
remove 0 3056
>> Removing city A (0,3056)
 
remove 0 3057
>> Removing city A (0,3057)
 
remove 0 3058
>> Removing city A (0,3058)
 
remove 0 3059
>> Removing city A (0,3059)
 
remove 0 3060
>> Removing city A (0,3060)
 
remove 0 3061
>> Removing city A (0,3061)
 
remove 0 3062
>> Removing city A (0,3062)
 
remove 0 3063
>> Removing city A (0,3063)
 
remove 0 3064
>> Removing city A (0,3064)
 
remove 0 3065
>> Removing city A (0,3065)
 
remove 0 3066
>> Removing city A (0,3066)
 
remove 0 3067
>> Removing city A (0,3067)
 
remove 0 3068
>> Removing city A (0,3068)
 
remove 0 3069
>> Removing city A (0,3069)
 
remove 0 3070
>> Removing city A (0,3070)
 
remove 0 3071
>> Removing city A (0,3071)
 
remove 0 3072
>> Removing city A (0,3072)
 
remove 0 3073
>> Removing city A (0,3073)
 
remove 0 3074
>> Removing city A (0,3074)
 
remove 0 3075
>> Removing city A (0,3075)
 
remove 0 3076
>> Removing city A (0,3076)
 
remove 0 3077
>> Removing city A (0,3077)
 
remove 0 3078
>> Removing city A (0,3078)
 
remove 0 3079
>> Removing city A (0,3079)
 
remove 0 3080
>> Removing city A (0,3080)
 
remove 0 3081
>> Removing city A (0,3081)
 
remove 0 3082
>> Removing city A (0,3082)
 
remove 0 3083
>> Removing city A (0,3083)
 
remove 0 3084
>> Removing city A (0,3084)
 
remove 0 3085
>> Removing city A (0,3085)
 
remove 0 3086
>> Removing city A (0,3086)
 
remove 0 3087
>> Removing city A (0,3087)
 
remove 0 3088
>> Removing city A (0,3088)
 
remove 0 3089
>> Removing city A (0,3089)
 
remove 0 3090
>> Removing city A (0,3090)
 
remove 0 3091
>> Removing city A (0,3091)
 
remove 0 3092
>> Removing city A (0,3092)
 
remove 0 3093
>> Removing city A (0,3093)
 
remove 0 3094
>> Removing city A (0,3094)
 
remove 0 3095
>> Removing city A (0,3095)
 
remove 0 3096
>> Removing city A (0,3096)
 
remove 0 3097
>> Removing city A (0,3097)
 
remove 0 3098
>> Removing city A (0,3098)
 
remove 0 3099
>> Removing city A (0,3099)
 
remove 0 3100
>> Removing city A (0,3100)
 
remove 0 3101
>> Removing city A (0,3101)
 
remove 0 3102
>> Removing city A (0,3102)
 
remove 0 3103
>> Removing city A (0,3103)
 
remove 0 3104
>> Removing city A (0,3104)
 
remove 0 3105
>> Removing city A (0,3105)
 
remove 0 3106
>> Removing city A (0,3106)
 
remove 0 3107
>> Removing city A (0,3107)
 
remove 0 3108
>> Removing city A (0,3108)
 
remove 0 3109
>> Removing city A (0,3109)
 
remove 0 3110
>> Removing city A (0,3110)
 
remove 0 3111
>> Removing city A (0,3111)
 
remove 0 3112
>> Removing city A (0,3112)
 
remove 0 3113
>> Removing city A (0,3113)
 
remove 0 3114
>> Removing city A (0,3114)
 
remove 0 3115
>> Removing city A (0,3115)
 
remove 0 3116
>> Removing city A (0,3116)
 
remove 0 3117
>> Removing city A (0,3117)
 
remove 0 3118
>> Removing city A (0,3118)
 
remove 0 3119
>> Removing city A (0,3119)
 
remove 0 3120
>> Removing city A (0,3120)
 
remove 0 3121
>> Removing city A (0,3121)
 
remove 0 3122
>> Removing city A (0,3122)
 
remove 0 3123
>> Removing city A (0,3123)
 
remove 0 3124
>> Removing city A (0,3124)
 
remove 0 3125
>> Removing city A (0,3125)
 
remove 0 3126
>> Removing city A (0,3126)
 
remove 0 3127
>> Removing city A (0,3127)
 
remove 0 3128
>> Removing city A (0,3128)
 
remove 0 3129
>> Removing city A (0,3129)
 
remove 0 3130
>> Removing city A (0,3130)
 
remove 0 3131
>> Removing city A (0,3131)
 
remove 0 3132
>> Removing city A (0,3132)
 
remove 0 3133
>> Removing city A (0,3133)
 
remove 0 3134
>> Removing city A (0,3134)
 
remove 0 3135
>> Removing city A (0,3135)
 
remove 0 3136
>> Removing city A (0,3136)
 
remove 0 3137
>> Removing city A (0,3137)
 
remove 0 3138
>> Removing city A (0,3138)
 
remove 0 3139
>> Removing city A (0,3139)
 
remove 0 3140
>> Removing city A (0,3140)
 
remove 0 3141
>> Removing city A (0,3141)
 
remove 0 3142
>> Removing city A (0,3142)
 
remove 0 3143
>> Removing city A (0,3143)
 
remove 0 3144
>> Removing city A (0,3144)
 
remove 0 3145
>> Removing city A (0,3145)
 
remove 0 3146
>> Removing city A (0,3146)
 
remove 0 3147
>> Removing city A (0,3147)
 
remove 0 3148
>> Removing city A (0,3148)
 
remove 0 3149
>> Removing city A (0,3149)
 
remove 0 3150
>> Removing city A (0,3150)
 
remove 0 3151
>> Removing city A (0,3151)
 
remove 0 3152
>> Removing city A (0,3152)
 
remove 0 3153
>> Removing city A (0,3153)
 
remove 0 3154
>> Removing city A (0,3154)
 
remove 0 3155
>> Removing city A (0,3155)
 
remove 0 3156
>> Removing city A (0,3156)
 
remove 0 3157
>> Removing city A (0,3157)
 
remove 0 3158
>> Removing city A (0,3158)
 
remove 0 3159
>> Removing city A (0,3159)
 
remove 0 3160
>> Removing city A (0,3160)
 
remove 0 3161
>> Removing city A (0,3161)
 
remove 0 3162
>> Removing city A (0,3162)
 
remove 0 3163
>> Removing city A (0,3163)
 
remove 0 3164
>> Removing city A (0,3164)
 
remove 0 3165
>> Removing city A (0,3165)
 
remove 0 3166
>> Removing city A (0,3166)
 
remove 0 3167
>> Removing city A (0,3167)
 
remove 0 3168
>> Removing city A (0,3168)
 
remove 0 3169
>> Removing city A (0,3169)
 
remove 0 3170
>> Removing city A (0,3170)
 
remove 0 3171
>> Removing city A (0,3171)
 
remove 0 3172
>> Removing city A (0,3172)
 
remove 0 3173
>> Removing city A (0,3173)
 
remove 0 3174
>> Removing city A (0,3174)
 
remove 0 3175
>> Removing city A (0,3175)
 
remove 0 3176
>> Removing city A (0,3176)
 
remove 0 3177
>> Removing city A (0,3177)
 
remove 0 3178
>> Removing city A (0,3178)
 
remove 0 3179
>> Removing city A (0,3179)
 
remove 0 3180
>> Removing city A (0,3180)
 
remove 0 3181
>> Removing city A (0,3181)
 
remove 0 3182
>> Removing city A (0,3182)
 
remove 0 3183
>> Removing city A (0,3183)
 
remove 0 3184
>> Removing city A (0,3184)
 
remove 0 3185
>> Removing city A (0,3185)
 
remove 0 3186
>> Removing city A (0,3186)
 
remove 0 3187
>> Removing city A (0,3187)
 
remove 0 3188
>> Removing city A (0,3188)
 
remove 0 3189
>> Removing city A (0,3189)
 
remove 0 3190
>> Removing city A (0,3190)
 
remove 0 3191
>> Removing city A (0,3191)
 
remove 0 3192
>> Removing city A (0,3192)
 
remove 0 3193
>> Removing city A (0,3193)
 
remove 0 3194
>> Removing city A (0,3194)
 
remove 0 3195
>> Removing city A (0,3195)
 
remove 0 3196
>> Removing city A (0,3196)
 
remove 0 3197
>> Removing city A (0,3197)
 
remove 0 3198
>> Removing city A (0,3198)
 
remove 0 3199
>> Removing city A (0,3199)
 
remove 0 3200
>> Removing city A (0,3200)
 
remove 0 3201
>> Removing city A (0,3201)
 
remove 0 3202
>> Removing city A (0,3202)
 
remove 0 3203
>> Removing city A (0,3203)
 
remove 0 3204
>> Removing city A (0,3204)
 
remove 0 3205
>> Removing city A (0,3205)
 
remove 0 3206
>> Removing city A (0,3206)
 
remove 0 3207
>> Removing city A (0,3207)
 
remove 0 3208
>> Removing city A (0,3208)
 
remove 0 3209
>> Removing city A (0,3209)
 
remove 0 3210
>> Removing city A (0,3210)
 
remove 0 3211
>> Removing city A (0,3211)
 
remove 0 3212
>> Removing city A (0,3212)
 
remove 0 3213
>> Removing city A (0,3213)
 
remove 0 3214
>> Removing city A (0,3214)
 
remove 0 3215
>> Removing city A (0,3215)
 
remove 0 3216
>> Removing city A (0,3216)
 
remove 0 3217
>> Removing city A (0,3217)
 
remove 0 3218
>> Removing city A (0,3218)
 
remove 0 3219
>> Removing city A (0,3219)
 
remove 0 3220
>> Removing city A (0,3220)
 
remove 0 3221
>> Removing city A (0,3221)
 
remove 0 3222
>> Removing city A (0,3222)
 
remove 0 3223
>> Removing city A (0,3223)
 
remove 0 3224
>> Removing city A (0,3224)
 
remove 0 3225
>> Removing city A (0,3225)
 
remove 0 3226
>> Removing city A (0,3226)
 
remove 0 3227
>> Removing city A (0,3227)
 
remove 0 3228
>> Removing city A (0,3228)
 
remove 0 3229
>> Removing city A (0,3229)
 
remove 0 3230
>> Removing city A (0,3230)
 
remove 0 3231
>> Removing city A (0,3231)
 
remove 0 3232
>> Removing city A (0,3232)
 
remove 0 3233
>> Removing city A (0,3233)
 
remove 0 3234
>> Removing city A (0,3234)
 
remove 0 3235
>> Removing city A (0,3235)
 
remove 0 3236
>> Removing city A (0,3236)
 
remove 0 3237
>> Removing city A (0,3237)
 
remove 0 3238
>> Removing city A (0,3238)
 
remove 0 3239
>> Removing city A (0,3239)
 
remove 0 3240
>> Removing city A (0,3240)
 
remove 0 3241
>> Removing city A (0,3241)
 
remove 0 3242
>> Removing city A (0,3242)
 
remove 0 3243
>> Removing city A (0,3243)
 
remove 0 3244
>> Removing city A (0,3244)
 
remove 0 3245
>> Removing city A (0,3245)
 
remove 0 3246
>> Removing city A (0,3246)
 
remove 0 3247
>> Removing city A (0,3247)
 
remove 0 3248
>> Removing city A (0,3248)
 
remove 0 3249
>> Removing city A (0,3249)
 
remove 0 3250
>> Removing city A (0,3250)
 
remove 0 3251
>> Removing city A (0,3251)
 
remove 0 3252
>> Removing city A (0,3252)
 
remove 0 3253
>> Removing city A (0,3253)
 
remove 0 3254
>> Removing city A (0,3254)
 
remove 0 3255
>> Removing city A (0,3255)
 
remove 0 3256
>> Removing city A (0,3256)
 
remove 0 3257
>> Removing city A (0,3257)
 
remove 0 3258
>> Removing city A (0,3258)
 
remove 0 3259
>> Removing city A (0,3259)
 
remove 0 3260
>> Removing city A (0,3260)
 
remove 0 3261
>> Removing city A (0,3261)
 
remove 0 3262
>> Removing city A (0,3262)
 
remove 0 3263
>> Removing city A (0,3263)
 
remove 0 3264
>> Removing city A (0,3264)
 
remove 0 3265
>> Removing city A (0,3265)
 
remove 0 3266
>> Removing city A (0,3266)
 
remove 0 3267
>> Removing city A (0,3267)
 
remove 0 3268
>> Removing city A (0,3268)
 
remove 0 3269
>> Removing city A (0,3269)
 
remove 0 3270
>> Removing city A (0,3270)
 
remove 0 3271
>> Removing city A (0,3271)
 
remove 0 3272
>> Removing city A (0,3272)
 
remove 0 3273
>> Removing city A (0,3273)
 
remove 0 3274
>> Removing city A (0,3274)
 
remove 0 3275
>> Removing city A (0,3275)
 
remove 0 3276
>> Removing city A (0,3276)
 
remove 0 3277
>> Removing city A (0,3277)
 
remove 0 3278
>> Removing city A (0,3278)
 
remove 0 3279
>> Removing city A (0,3279)
 
remove 0 3280
>> Removing city A (0,3280)
 
remove 0 3281
>> Removing city A (0,3281)
 
remove 0 3282
>> Removing city A (0,3282)
 
remove 0 3283
>> Removing city A (0,3283)
 
remove 0 3284
>> Removing city A (0,3284)
 
remove 0 3285
>> Removing city A (0,3285)
 
remove 0 3286
>> Removing city A (0,3286)
 
remove 0 3287
>> Removing city A (0,3287)
 
remove 0 3288
>> Removing city A (0,3288)
 
remove 0 3289
>> Removing city A (0,3289)
 
remove 0 3290
>> Removing city A (0,3290)
 
remove 0 3291
>> Removing city A (0,3291)
 
remove 0 3292
>> Removing city A (0,3292)
 
remove 0 3293
>> Removing city A (0,3293)
 
remove 0 3294
>> Removing city A (0,3294)
 
remove 0 3295
>> Removing city A (0,3295)
 
remove 0 3296
>> Removing city A (0,3296)
 
remove 0 3297
>> Removing city A (0,3297)
 
remove 0 3298
>> Removing city A (0,3298)
 
remove 0 3299
>> Removing city A (0,3299)
 
remove 0 3300
>> Removing city A (0,3300)
 
remove 0 3301
>> Removing city A (0,3301)
 
remove 0 3302
>> Removing city A (0,3302)
 
remove 0 3303
>> Removing city A (0,3303)
 
remove 0 3304
>> Removing city A (0,3304)
 
remove 0 3305
>> Removing city A (0,3305)
 
remove 0 3306
>> Removing city A (0,3306)
 
remove 0 3307
>> Removing city A (0,3307)
 
remove 0 3308
>> Removing city A (0,3308)
 
remove 0 3309
>> Removing city A (0,3309)
 
remove 0 3310
>> Removing city A (0,3310)
 
remove 0 3311
>> Removing city A (0,3311)
 
remove 0 3312
>> Removing city A (0,3312)
 
remove 0 3313
>> Removing city A (0,3313)
 
remove 0 3314
>> Removing city A (0,3314)
 
remove 0 3315
>> Removing city A (0,3315)
 
remove 0 3316
>> Removing city A (0,3316)
 
remove 0 3317
>> Removing city A (0,3317)
 
remove 0 3318
>> Removing city A (0,3318)
 
remove 0 3319
>> Removing city A (0,3319)
 
remove 0 3320
>> Removing city A (0,3320)
 
remove 0 3321
>> Removing city A (0,3321)
 
remove 0 3322
>> Removing city A (0,3322)
 
remove 0 3323
>> Removing city A (0,3323)
 
remove 0 3324
>> Removing city A (0,3324)
 
remove 0 3325
>> Removing city A (0,3325)
 
remove 0 3326
>> Removing city A (0,3326)
 
remove 0 3327
>> Removing city A (0,3327)
 
remove 0 3328
>> Removing city A (0,3328)
 
remove 0 3329
>> Removing city A (0,3329)
 
remove 0 3330
>> Removing city A (0,3330)
 
remove 0 3331
>> Removing city A (0,3331)
 
remove 0 3332
>> Removing city A (0,3332)
 
remove 0 3333
>> Removing city A (0,3333)
 
remove 0 3334
>> Removing city A (0,3334)
 
remove 0 3335
>> Removing city A (0,3335)
 
remove 0 3336
>> Removing city A (0,3336)
 
remove 0 3337
>> Removing city A (0,3337)
 
remove 0 3338
>> Removing city A (0,3338)
 
remove 0 3339
>> Removing city A (0,3339)
 
remove 0 3340
>> Removing city A (0,3340)
 
remove 0 3341
>> Removing city A (0,3341)
 
remove 0 3342
>> Removing city A (0,3342)
 
remove 0 3343
>> Removing city A (0,3343)
 
remove 0 3344
>> Removing city A (0,3344)
 
remove 0 3345
>> Removing city A (0,3345)
 
remove 0 3346
>> Removing city A (0,3346)
 
remove 0 3347
>> Removing city A (0,3347)
 
remove 0 3348
>> Removing city A (0,3348)
 
remove 0 3349
>> Removing city A (0,3349)
 
remove 0 3350
>> Removing city A (0,3350)
 
remove 0 3351
>> Removing city A (0,3351)
 
remove 0 3352
>> Removing city A (0,3352)
 
remove 0 3353
>> Removing city A (0,3353)
 
remove 0 3354
>> Removing city A (0,3354)
 
remove 0 3355
>> Removing city A (0,3355)
 
remove 0 3356
>> Removing city A (0,3356)
 
remove 0 3357
>> Removing city A (0,3357)
 
remove 0 3358
>> Removing city A (0,3358)
 
remove 0 3359
>> Removing city A (0,3359)
 
remove 0 3360
>> Removing city A (0,3360)
 
remove 0 3361
>> Removing city A (0,3361)
 
remove 0 3362
>> Removing city A (0,3362)
 
remove 0 3363
>> Removing city A (0,3363)
 
remove 0 3364
>> Removing city A (0,3364)
 
remove 0 3365
>> Removing city A (0,3365)
 
remove 0 3366
>> Removing city A (0,3366)
 
remove 0 3367
>> Removing city A (0,3367)
 
remove 0 3368
>> Removing city A (0,3368)
 
remove 0 3369
>> Removing city A (0,3369)
 
remove 0 3370
>> Removing city A (0,3370)
 
remove 0 3371
>> Removing city A (0,3371)
 
remove 0 3372
>> Removing city A (0,3372)
 
remove 0 3373
>> Removing city A (0,3373)
 
remove 0 3374
>> Removing city A (0,3374)
 
remove 0 3375
>> Removing city A (0,3375)
 
remove 0 3376
>> Removing city A (0,3376)
 
remove 0 3377
>> Removing city A (0,3377)
 
remove 0 3378
>> Removing city A (0,3378)
 
remove 0 3379
>> Removing city A (0,3379)
 
remove 0 3380
>> Removing city A (0,3380)
 
remove 0 3381
>> Removing city A (0,3381)
 
remove 0 3382
>> Removing city A (0,3382)
 
remove 0 3383
>> Removing city A (0,3383)
 
remove 0 3384
>> Removing city A (0,3384)
 
remove 0 3385
>> Removing city A (0,3385)
 
remove 0 3386
>> Removing city A (0,3386)
 
remove 0 3387
>> Removing city A (0,3387)
 
remove 0 3388
>> Removing city A (0,3388)
 
remove 0 3389
>> Removing city A (0,3389)
 
remove 0 3390
>> Removing city A (0,3390)
 
remove 0 3391
>> Removing city A (0,3391)
 
remove 0 3392
>> Removing city A (0,3392)
 
remove 0 3393
>> Removing city A (0,3393)
 
remove 0 3394
>> Removing city A (0,3394)
 
remove 0 3395
>> Removing city A (0,3395)
 
remove 0 3396
>> Removing city A (0,3396)
 
remove 0 3397
>> Removing city A (0,3397)
 
remove 0 3398
>> Removing city A (0,3398)
 
remove 0 3399
>> Removing city A (0,3399)
 
remove 0 3400
>> Removing city A (0,3400)
 
remove 0 3401
>> Removing city A (0,3401)
 
remove 0 3402
>> Removing city A (0,3402)
 
remove 0 3403
>> Removing city A (0,3403)
 
remove 0 3404
>> Removing city A (0,3404)
 
remove 0 3405
>> Removing city A (0,3405)
 
remove 0 3406
>> Removing city A (0,3406)
 
remove 0 3407
>> Removing city A (0,3407)
 
remove 0 3408
>> Removing city A (0,3408)
 
remove 0 3409
>> Removing city A (0,3409)
 
remove 0 3410
>> Removing city A (0,3410)
 
remove 0 3411
>> Removing city A (0,3411)
 
remove 0 3412
>> Removing city A (0,3412)
 
remove 0 3413
>> Removing city A (0,3413)
 
remove 0 3414
>> Removing city A (0,3414)
 
remove 0 3415
>> Removing city A (0,3415)
 
remove 0 3416
>> Removing city A (0,3416)
 
remove 0 3417
>> Removing city A (0,3417)
 
remove 0 3418
>> Removing city A (0,3418)
 
remove 0 3419
>> Removing city A (0,3419)
 
remove 0 3420
>> Removing city A (0,3420)
 
remove 0 3421
>> Removing city A (0,3421)
 
remove 0 3422
>> Removing city A (0,3422)
 
remove 0 3423
>> Removing city A (0,3423)
 
remove 0 3424
>> Removing city A (0,3424)
 
remove 0 3425
>> Removing city A (0,3425)
 
remove 0 3426
>> Removing city A (0,3426)
 
remove 0 3427
>> Removing city A (0,3427)
 
remove 0 3428
>> Removing city A (0,3428)
 
remove 0 3429
>> Removing city A (0,3429)
 
remove 0 3430
>> Removing city A (0,3430)
 
remove 0 3431
>> Removing city A (0,3431)
 
remove 0 3432
>> Removing city A (0,3432)
 
remove 0 3433
>> Removing city A (0,3433)
 
remove 0 3434
>> Removing city A (0,3434)
 
remove 0 3435
>> Removing city A (0,3435)
 
remove 0 3436
>> Removing city A (0,3436)
 
remove 0 3437
>> Removing city A (0,3437)
 
remove 0 3438
>> Removing city A (0,3438)
 
remove 0 3439
>> Removing city A (0,3439)
 
remove 0 3440
>> Removing city A (0,3440)
 
remove 0 3441
>> Removing city A (0,3441)
 
remove 0 3442
>> Removing city A (0,3442)
 
remove 0 3443
>> Removing city A (0,3443)
 
remove 0 3444
>> Removing city A (0,3444)
 
remove 0 3445
>> Removing city A (0,3445)
 
remove 0 3446
>> Removing city A (0,3446)
 
remove 0 3447
>> Removing city A (0,3447)
 
remove 0 3448
>> Removing city A (0,3448)
 
remove 0 3449
>> Removing city A (0,3449)
 
remove 0 3450
>> Removing city A (0,3450)
 
remove 0 3451
>> Removing city A (0,3451)
 
remove 0 3452
>> Removing city A (0,3452)
 
remove 0 3453
>> Removing city A (0,3453)
 
remove 0 3454
>> Removing city A (0,3454)
 
remove 0 3455
>> Removing city A (0,3455)
 
remove 0 3456
>> Removing city A (0,3456)
 
remove 0 3457
>> Removing city A (0,3457)
 
remove 0 3458
>> Removing city A (0,3458)
 
remove 0 3459
>> Removing city A (0,3459)
 
remove 0 3460
>> Removing city A (0,3460)
 
remove 0 3461
>> Removing city A (0,3461)
 
remove 0 3462
>> Removing city A (0,3462)
 
remove 0 3463
>> Removing city A (0,3463)
 
remove 0 3464
>> Removing city A (0,3464)
 
remove 0 3465
>> Removing city A (0,3465)
 
remove 0 3466
>> Removing city A (0,3466)
 
remove 0 3467
>> Removing city A (0,3467)
 
remove 0 3468
>> Removing city A (0,3468)
 
remove 0 3469
>> Removing city A (0,3469)
 
remove 0 3470
>> Removing city A (0,3470)
 
remove 0 3471
>> Removing city A (0,3471)
 
remove 0 3472
>> Removing city A (0,3472)
 
remove 0 3473
>> Removing city A (0,3473)
 
remove 0 3474
>> Removing city A (0,3474)
 
remove 0 3475
>> Removing city A (0,3475)
 
remove 0 3476
>> Removing city A (0,3476)
 
remove 0 3477
>> Removing city A (0,3477)
 
remove 0 3478
>> Removing city A (0,3478)
 
remove 0 3479
>> Removing city A (0,3479)
 
remove 0 3480
>> Removing city A (0,3480)
 
remove 0 3481
>> Removing city A (0,3481)
 
remove 0 3482
>> Removing city A (0,3482)
 
remove 0 3483
>> Removing city A (0,3483)
 
remove 0 3484
>> Removing city A (0,3484)
 
remove 0 3485
>> Removing city A (0,3485)
 
remove 0 3486
>> Removing city A (0,3486)
 
remove 0 3487
>> Removing city A (0,3487)
 
remove 0 3488
>> Removing city A (0,3488)
 
remove 0 3489
>> Removing city A (0,3489)
 
remove 0 3490
>> Removing city A (0,3490)
 
remove 0 3491
>> Removing city A (0,3491)
 
remove 0 3492
>> Removing city A (0,3492)
 
remove 0 3493
>> Removing city A (0,3493)
 
remove 0 3494
>> Removing city A (0,3494)
 
remove 0 3495
>> Removing city A (0,3495)
 
remove 0 3496
>> Removing city A (0,3496)
 
remove 0 3497
>> Removing city A (0,3497)
 
remove 0 3498
>> Removing city A (0,3498)
 
remove 0 3499
>> Removing city A (0,3499)
 
remove 0 3500
>> Removing city A (0,3500)
 
remove 0 3501
>> Removing city A (0,3501)
 
remove 0 3502
>> Removing city A (0,3502)
 
remove 0 3503
>> Removing city A (0,3503)
 
remove 0 3504
>> Removing city A (0,3504)
 
remove 0 3505
>> Removing city A (0,3505)
 
remove 0 3506
>> Removing city A (0,3506)
 
remove 0 3507
>> Removing city A (0,3507)
 
remove 0 3508
>> Removing city A (0,3508)
 
remove 0 3509
>> Removing city A (0,3509)
 
remove 0 3510
>> Removing city A (0,3510)
 
remove 0 3511
>> Removing city A (0,3511)
 
remove 0 3512
>> Removing city A (0,3512)
 
remove 0 3513
>> Removing city A (0,3513)
 
remove 0 3514
>> Removing city A (0,3514)
 
remove 0 3515
>> Removing city A (0,3515)
 
remove 0 3516
>> Removing city A (0,3516)
 
remove 0 3517
>> Removing city A (0,3517)
 
remove 0 3518
>> Removing city A (0,3518)
 
remove 0 3519
>> Removing city A (0,3519)
 
remove 0 3520
>> Removing city A (0,3520)
 
remove 0 3521
>> Removing city A (0,3521)
 
remove 0 3522
>> Removing city A (0,3522)
 
remove 0 3523
>> Removing city A (0,3523)
 
remove 0 3524
>> Removing city A (0,3524)
 
remove 0 3525
>> Removing city A (0,3525)
 
remove 0 3526
>> Removing city A (0,3526)
 
remove 0 3527
>> Removing city A (0,3527)
 
remove 0 3528
>> Removing city A (0,3528)
 
remove 0 3529
>> Removing city A (0,3529)
 
remove 0 3530
>> Removing city A (0,3530)
 
remove 0 3531
>> Removing city A (0,3531)
 
remove 0 3532
>> Removing city A (0,3532)
 
remove 0 3533
>> Removing city A (0,3533)
 
remove 0 3534
>> Removing city A (0,3534)
 
remove 0 3535
>> Removing city A (0,3535)
 
remove 0 3536
>> Removing city A (0,3536)
 
remove 0 3537
>> Removing city A (0,3537)
 
remove 0 3538
>> Removing city A (0,3538)
 
remove 0 3539
>> Removing city A (0,3539)
 
remove 0 3540
>> Removing city A (0,3540)
 
remove 0 3541
>> Removing city A (0,3541)
 
remove 0 3542
>> Removing city A (0,3542)
 
remove 0 3543
>> Removing city A (0,3543)
 
remove 0 3544
>> Removing city A (0,3544)
 
remove 0 3545
>> Removing city A (0,3545)
 
remove 0 3546
>> Removing city A (0,3546)
 
remove 0 3547
>> Removing city A (0,3547)
 
remove 0 3548
>> Removing city A (0,3548)
 
remove 0 3549
>> Removing city A (0,3549)
 
remove 0 3550
>> Removing city A (0,3550)
 
remove 0 3551
>> Removing city A (0,3551)
 
remove 0 3552
>> Removing city A (0,3552)
 
remove 0 3553
>> Removing city A (0,3553)
 
remove 0 3554
>> Removing city A (0,3554)
 
remove 0 3555
>> Removing city A (0,3555)
 
remove 0 3556
>> Removing city A (0,3556)
 
remove 0 3557
>> Removing city A (0,3557)
 
remove 0 3558
>> Removing city A (0,3558)
 
remove 0 3559
>> Removing city A (0,3559)
 
remove 0 3560
>> Removing city A (0,3560)
 
remove 0 3561
>> Removing city A (0,3561)
 
remove 0 3562
>> Removing city A (0,3562)
 
remove 0 3563
>> Removing city A (0,3563)
 
remove 0 3564
>> Removing city A (0,3564)
 
remove 0 3565
>> Removing city A (0,3565)
 
remove 0 3566
>> Removing city A (0,3566)
 
remove 0 3567
>> Removing city A (0,3567)
 
remove 0 3568
>> Removing city A (0,3568)
 
remove 0 3569
>> Removing city A (0,3569)
 
remove 0 3570
>> Removing city A (0,3570)
 
remove 0 3571
>> Removing city A (0,3571)
 
remove 0 3572
>> Removing city A (0,3572)
 
remove 0 3573
>> Removing city A (0,3573)
 
remove 0 3574
>> Removing city A (0,3574)
 
remove 0 3575
>> Removing city A (0,3575)
 
remove 0 3576
>> Removing city A (0,3576)
 
remove 0 3577
>> Removing city A (0,3577)
 
remove 0 3578
>> Removing city A (0,3578)
 
remove 0 3579
>> Removing city A (0,3579)
 
remove 0 3580
>> Removing city A (0,3580)
 
remove 0 3581
>> Removing city A (0,3581)
 
remove 0 3582
>> Removing city A (0,3582)
 
remove 0 3583
>> Removing city A (0,3583)
 
remove 0 3584
>> Removing city A (0,3584)
 
remove 0 3585
>> Removing city A (0,3585)
 
remove 0 3586
>> Removing city A (0,3586)
 
remove 0 3587
>> Removing city A (0,3587)
 
remove 0 3588
>> Removing city A (0,3588)
 
remove 0 3589
>> Removing city A (0,3589)
 
remove 0 3590
>> Removing city A (0,3590)
 
remove 0 3591
>> Removing city A (0,3591)
 
remove 0 3592
>> Removing city A (0,3592)
 
remove 0 3593
>> Removing city A (0,3593)
 
remove 0 3594
>> Removing city A (0,3594)
 
remove 0 3595
>> Removing city A (0,3595)
 
remove 0 3596
>> Removing city A (0,3596)
 
remove 0 3597
>> Removing city A (0,3597)
 
remove 0 3598
>> Removing city A (0,3598)
 
remove 0 3599
>> Removing city A (0,3599)
 
remove 0 3600
>> Removing city A (0,3600)
 
remove 0 3601
>> Removing city A (0,3601)
 
remove 0 3602
>> Removing city A (0,3602)
 
remove 0 3603
>> Removing city A (0,3603)
 
remove 0 3604
>> Removing city A (0,3604)
 
remove 0 3605
>> Removing city A (0,3605)
 
remove 0 3606
>> Removing city A (0,3606)
 
remove 0 3607
>> Removing city A (0,3607)
 
remove 0 3608
>> Removing city A (0,3608)
 
remove 0 3609
>> Removing city A (0,3609)
 
remove 0 3610
>> Removing city A (0,3610)
 
remove 0 3611
>> Removing city A (0,3611)
 
remove 0 3612
>> Removing city A (0,3612)
 
remove 0 3613
>> Removing city A (0,3613)
 
remove 0 3614
>> Removing city A (0,3614)
 
remove 0 3615
>> Removing city A (0,3615)
 
remove 0 3616
>> Removing city A (0,3616)
 
remove 0 3617
>> Removing city A (0,3617)
 
remove 0 3618
>> Removing city A (0,3618)
 
remove 0 3619
>> Removing city A (0,3619)
 
remove 0 3620
>> Removing city A (0,3620)
 
remove 0 3621
>> Removing city A (0,3621)
 
remove 0 3622
>> Removing city A (0,3622)
 
remove 0 3623
>> Removing city A (0,3623)
 
remove 0 3624
>> Removing city A (0,3624)
 
remove 0 3625
>> Removing city A (0,3625)
 
remove 0 3626
>> Removing city A (0,3626)
 
remove 0 3627
>> Removing city A (0,3627)
 
remove 0 3628
>> Removing city A (0,3628)
 
remove 0 3629
>> Removing city A (0,3629)
 
remove 0 3630
>> Removing city A (0,3630)
 
remove 0 3631
>> Removing city A (0,3631)
 
remove 0 3632
>> Removing city A (0,3632)
 
remove 0 3633
>> Removing city A (0,3633)
 
remove 0 3634
>> Removing city A (0,3634)
 
remove 0 3635
>> Removing city A (0,3635)
 
remove 0 3636
>> Removing city A (0,3636)
 
remove 0 3637
>> Removing city A (0,3637)
 
remove 0 3638
>> Removing city A (0,3638)
 
remove 0 3639
>> Removing city A (0,3639)
 
remove 0 3640
>> Removing city A (0,3640)
 
remove 0 3641
>> Removing city A (0,3641)
 
remove 0 3642
>> Removing city A (0,3642)
 
remove 0 3643
>> Removing city A (0,3643)
 
remove 0 3644
>> Removing city A (0,3644)
 
remove 0 3645
>> Removing city A (0,3645)
 
remove 0 3646
>> Removing city A (0,3646)
 
remove 0 3647
>> Removing city A (0,3647)
 
remove 0 3648
>> Removing city A (0,3648)
 
remove 0 3649
>> Removing city A (0,3649)
 
remove 0 3650
>> Removing city A (0,3650)
 
remove 0 3651
>> Removing city A (0,3651)
 
remove 0 3652
>> Removing city A (0,3652)
 
remove 0 3653
>> Removing city A (0,3653)
 
remove 0 3654
>> Removing city A (0,3654)
 
remove 0 3655
>> Removing city A (0,3655)
 
remove 0 3656
>> Removing city A (0,3656)
 
remove 0 3657
>> Removing city A (0,3657)
 
remove 0 3658
>> Removing city A (0,3658)
 
remove 0 3659
>> Removing city A (0,3659)
 
remove 0 3660
>> Removing city A (0,3660)
 
remove 0 3661
>> Removing city A (0,3661)
 
remove 0 3662
>> Removing city A (0,3662)
 
remove 0 3663
>> Removing city A (0,3663)
 
remove 0 3664
>> Removing city A (0,3664)
 
remove 0 3665
>> Removing city A (0,3665)
 
remove 0 3666
>> Removing city A (0,3666)
 
remove 0 3667
>> Removing city A (0,3667)
 
remove 0 3668
>> Removing city A (0,3668)
 
remove 0 3669
>> Removing city A (0,3669)
 
remove 0 3670
>> Removing city A (0,3670)
 
remove 0 3671
>> Removing city A (0,3671)
 
remove 0 3672
>> Removing city A (0,3672)
 
remove 0 3673
>> Removing city A (0,3673)
 
remove 0 3674
>> Removing city A (0,3674)
 
remove 0 3675
>> Removing city A (0,3675)
 
remove 0 3676
>> Removing city A (0,3676)
 
remove 0 3677
>> Removing city A (0,3677)
 
remove 0 3678
>> Removing city A (0,3678)
 
remove 0 3679
>> Removing city A (0,3679)
 
remove 0 3680
>> Removing city A (0,3680)
 
remove 0 3681
>> Removing city A (0,3681)
 
remove 0 3682
>> Removing city A (0,3682)
 
remove 0 3683
>> Removing city A (0,3683)
 
remove 0 3684
>> Removing city A (0,3684)
 
remove 0 3685
>> Removing city A (0,3685)
 
remove 0 3686
>> Removing city A (0,3686)
 
remove 0 3687
>> Removing city A (0,3687)
 
remove 0 3688
>> Removing city A (0,3688)
 
remove 0 3689
>> Removing city A (0,3689)
 
remove 0 3690
>> Removing city A (0,3690)
 
remove 0 3691
>> Removing city A (0,3691)
 
remove 0 3692
>> Removing city A (0,3692)
 
remove 0 3693
>> Removing city A (0,3693)
 
remove 0 3694
>> Removing city A (0,3694)
 
remove 0 3695
>> Removing city A (0,3695)
 
remove 0 3696
>> Removing city A (0,3696)
 
remove 0 3697
>> Removing city A (0,3697)
 
remove 0 3698
>> Removing city A (0,3698)
 
remove 0 3699
>> Removing city A (0,3699)
 
remove 0 3700
>> Removing city A (0,3700)
 
remove 0 3701
>> Removing city A (0,3701)
 
remove 0 3702
>> Removing city A (0,3702)
 
remove 0 3703
>> Removing city A (0,3703)
 
remove 0 3704
>> Removing city A (0,3704)
 
remove 0 3705
>> Removing city A (0,3705)
 
remove 0 3706
>> Removing city A (0,3706)
 
remove 0 3707
>> Removing city A (0,3707)
 
remove 0 3708
>> Removing city A (0,3708)
 
remove 0 3709
>> Removing city A (0,3709)
 
remove 0 3710
>> Removing city A (0,3710)
 
remove 0 3711
>> Removing city A (0,3711)
 
remove 0 3712
>> Removing city A (0,3712)
 
remove 0 3713
>> Removing city A (0,3713)
 
remove 0 3714
>> Removing city A (0,3714)
 
remove 0 3715
>> Removing city A (0,3715)
 
remove 0 3716
>> Removing city A (0,3716)
 
remove 0 3717
>> Removing city A (0,3717)
 
remove 0 3718
>> Removing city A (0,3718)
 
remove 0 3719
>> Removing city A (0,3719)
 
remove 0 3720
>> Removing city A (0,3720)
 
remove 0 3721
>> Removing city A (0,3721)
 
remove 0 3722
>> Removing city A (0,3722)
 
remove 0 3723
>> Removing city A (0,3723)
 
remove 0 3724
>> Removing city A (0,3724)
 
remove 0 3725
>> Removing city A (0,3725)
 
remove 0 3726
>> Removing city A (0,3726)
 
remove 0 3727
>> Removing city A (0,3727)
 
remove 0 3728
>> Removing city A (0,3728)
 
remove 0 3729
>> Removing city A (0,3729)
 
remove 0 3730
>> Removing city A (0,3730)
 
remove 0 3731
>> Removing city A (0,3731)
 
remove 0 3732
>> Removing city A (0,3732)
 
remove 0 3733
>> Removing city A (0,3733)
 
remove 0 3734
>> Removing city A (0,3734)
 
remove 0 3735
>> Removing city A (0,3735)
 
remove 0 3736
>> Removing city A (0,3736)
 
remove 0 3737
>> Removing city A (0,3737)
 
remove 0 3738
>> Removing city A (0,3738)
 
remove 0 3739
>> Removing city A (0,3739)
 
remove 0 3740
>> Removing city A (0,3740)
 
remove 0 3741
>> Removing city A (0,3741)
 
remove 0 3742
>> Removing city A (0,3742)
 
remove 0 3743
>> Removing city A (0,3743)
 
remove 0 3744
>> Removing city A (0,3744)
 
remove 0 3745
>> Removing city A (0,3745)
 
remove 0 3746
>> Removing city A (0,3746)
 
remove 0 3747
>> Removing city A (0,3747)
 
remove 0 3748
>> Removing city A (0,3748)
 
remove 0 3749
>> Removing city A (0,3749)
 
remove 0 3750
>> Removing city A (0,3750)
 
remove 0 3751
>> Removing city A (0,3751)
 
remove 0 3752
>> Removing city A (0,3752)
 
remove 0 3753
>> Removing city A (0,3753)
 
remove 0 3754
>> Removing city A (0,3754)
 
remove 0 3755
>> Removing city A (0,3755)
 
remove 0 3756
>> Removing city A (0,3756)
 
remove 0 3757
>> Removing city A (0,3757)
 
remove 0 3758
>> Removing city A (0,3758)
 
remove 0 3759
>> Removing city A (0,3759)
 
remove 0 3760
>> Removing city A (0,3760)
 
remove 0 3761
>> Removing city A (0,3761)
 
remove 0 3762
>> Removing city A (0,3762)
 
remove 0 3763
>> Removing city A (0,3763)
 
remove 0 3764
>> Removing city A (0,3764)
 
remove 0 3765
>> Removing city A (0,3765)
 
remove 0 3766
>> Removing city A (0,3766)
 
remove 0 3767
>> Removing city A (0,3767)
 
remove 0 3768
>> Removing city A (0,3768)
 
remove 0 3769
>> Removing city A (0,3769)
 
remove 0 3770
>> Removing city A (0,3770)
 
remove 0 3771
>> Removing city A (0,3771)
 
remove 0 3772
>> Removing city A (0,3772)
 
remove 0 3773
>> Removing city A (0,3773)
 
remove 0 3774
>> Removing city A (0,3774)
 
remove 0 3775
>> Removing city A (0,3775)
 
remove 0 3776
>> Removing city A (0,3776)
 
remove 0 3777
>> Removing city A (0,3777)
 
remove 0 3778
>> Removing city A (0,3778)
 
remove 0 3779
>> Removing city A (0,3779)
 
remove 0 3780
>> Removing city A (0,3780)
 
remove 0 3781
>> Removing city A (0,3781)
 
remove 0 3782
>> Removing city A (0,3782)
 
remove 0 3783
>> Removing city A (0,3783)
 
remove 0 3784
>> Removing city A (0,3784)
 
remove 0 3785
>> Removing city A (0,3785)
 
remove 0 3786
>> Removing city A (0,3786)
 
remove 0 3787
>> Removing city A (0,3787)
 
remove 0 3788
>> Removing city A (0,3788)
 
remove 0 3789
>> Removing city A (0,3789)
 
remove 0 3790
>> Removing city A (0,3790)
 
remove 0 3791
>> Removing city A (0,3791)
 
remove 0 3792
>> Removing city A (0,3792)
 
remove 0 3793
>> Removing city A (0,3793)
 
remove 0 3794
>> Removing city A (0,3794)
 
remove 0 3795
>> Removing city A (0,3795)
 
remove 0 3796
>> Removing city A (0,3796)
 
remove 0 3797
>> Removing city A (0,3797)
 
remove 0 3798
>> Removing city A (0,3798)
 
remove 0 3799
>> Removing city A (0,3799)
 
remove 0 3800
>> Removing city A (0,3800)
 
remove 0 3801
>> Removing city A (0,3801)
 
remove 0 3802
>> Removing city A (0,3802)
 
remove 0 3803
>> Removing city A (0,3803)
 
remove 0 3804
>> Removing city A (0,3804)
 
remove 0 3805
>> Removing city A (0,3805)
 
remove 0 3806
>> Removing city A (0,3806)
 
remove 0 3807
>> Removing city A (0,3807)
 
remove 0 3808
>> Removing city A (0,3808)
 
remove 0 3809
>> Removing city A (0,3809)
 
remove 0 3810
>> Removing city A (0,3810)
 
remove 0 3811
>> Removing city A (0,3811)
 
remove 0 3812
>> Removing city A (0,3812)
 
remove 0 3813
>> Removing city A (0,3813)
 
remove 0 3814
>> Removing city A (0,3814)
 
remove 0 3815
>> Removing city A (0,3815)
 
remove 0 3816
>> Removing city A (0,3816)
 
remove 0 3817
>> Removing city A (0,3817)
 
remove 0 3818
>> Removing city A (0,3818)
 
remove 0 3819
>> Removing city A (0,3819)
 
remove 0 3820
>> Removing city A (0,3820)
 
remove 0 3821
>> Removing city A (0,3821)
 
remove 0 3822
>> Removing city A (0,3822)
 
remove 0 3823
>> Removing city A (0,3823)
 
remove 0 3824
>> Removing city A (0,3824)
 
remove 0 3825
>> Removing city A (0,3825)
 
remove 0 3826
>> Removing city A (0,3826)
 
remove 0 3827
>> Removing city A (0,3827)
 
remove 0 3828
>> Removing city A (0,3828)
 
remove 0 3829
>> Removing city A (0,3829)
 
remove 0 3830
>> Removing city A (0,3830)
 
remove 0 3831
>> Removing city A (0,3831)
 
remove 0 3832
>> Removing city A (0,3832)
 
remove 0 3833
>> Removing city A (0,3833)
 
remove 0 3834
>> Removing city A (0,3834)
 
remove 0 3835
>> Removing city A (0,3835)
 
remove 0 3836
>> Removing city A (0,3836)
 
remove 0 3837
>> Removing city A (0,3837)
 
remove 0 3838
>> Removing city A (0,3838)
 
remove 0 3839
>> Removing city A (0,3839)
 
remove 0 3840
>> Removing city A (0,3840)
 
remove 0 3841
>> Removing city A (0,3841)
 
remove 0 3842
>> Removing city A (0,3842)
 
remove 0 3843
>> Removing city A (0,3843)
 
remove 0 3844
>> Removing city A (0,3844)
 
remove 0 3845
>> Removing city A (0,3845)
 
remove 0 3846
>> Removing city A (0,3846)
 
remove 0 3847
>> Removing city A (0,3847)
 
remove 0 3848
>> Removing city A (0,3848)
 
remove 0 3849
>> Removing city A (0,3849)
 
remove 0 3850
>> Removing city A (0,3850)
 
remove 0 3851
>> Removing city A (0,3851)
 
remove 0 3852
>> Removing city A (0,3852)
 
remove 0 3853
>> Removing city A (0,3853)
 
remove 0 3854
>> Removing city A (0,3854)
 
remove 0 3855
>> Removing city A (0,3855)
 
remove 0 3856
>> Removing city A (0,3856)
 
remove 0 3857
>> Removing city A (0,3857)
 
remove 0 3858
>> Removing city A (0,3858)
 
remove 0 3859
>> Removing city A (0,3859)
 
remove 0 3860
>> Removing city A (0,3860)
 
remove 0 3861
>> Removing city A (0,3861)
 
remove 0 3862
>> Removing city A (0,3862)
 
remove 0 3863
>> Removing city A (0,3863)
 
remove 0 3864
>> Removing city A (0,3864)
 
remove 0 3865
>> Removing city A (0,3865)
 
remove 0 3866
>> Removing city A (0,3866)
 
remove 0 3867
>> Removing city A (0,3867)
 
remove 0 3868
>> Removing city A (0,3868)
 
remove 0 3869
>> Removing city A (0,3869)
 
remove 0 3870
>> Removing city A (0,3870)
 
remove 0 3871
>> Removing city A (0,3871)
 
remove 0 3872
>> Removing city A (0,3872)
 
remove 0 3873
>> Removing city A (0,3873)
 
remove 0 3874
>> Removing city A (0,3874)
 
remove 0 3875
>> Removing city A (0,3875)
 
remove 0 3876
>> Removing city A (0,3876)
 
remove 0 3877
>> Removing city A (0,3877)
 
remove 0 3878
>> Removing city A (0,3878)
 
remove 0 3879
>> Removing city A (0,3879)
 
remove 0 3880
>> Removing city A (0,3880)
 
remove 0 3881
>> Removing city A (0,3881)
 
remove 0 3882
>> Removing city A (0,3882)
 
remove 0 3883
>> Removing city A (0,3883)
 
remove 0 3884
>> Removing city A (0,3884)
 
remove 0 3885
>> Removing city A (0,3885)
 
remove 0 3886
>> Removing city A (0,3886)
 
remove 0 3887
>> Removing city A (0,3887)
 
remove 0 3888
>> Removing city A (0,3888)
 
remove 0 3889
>> Removing city A (0,3889)
 
remove 0 3890
>> Removing city A (0,3890)
 
remove 0 3891
>> Removing city A (0,3891)
 
remove 0 3892
>> Removing city A (0,3892)
 
remove 0 3893
>> Removing city A (0,3893)
 
remove 0 3894
>> Removing city A (0,3894)
 
remove 0 3895
>> Removing city A (0,3895)
 
remove 0 3896
>> Removing city A (0,3896)
 
remove 0 3897
>> Removing city A (0,3897)
 
remove 0 3898
>> Removing city A (0,3898)
 
remove 0 3899
>> Removing city A (0,3899)
 
remove 0 3900
>> Removing city A (0,3900)
 
remove 0 3901
>> Removing city A (0,3901)
 
remove 0 3902
>> Removing city A (0,3902)
 
remove 0 3903
>> Removing city A (0,3903)
 
remove 0 3904
>> Removing city A (0,3904)
 
remove 0 3905
>> Removing city A (0,3905)
 
remove 0 3906
>> Removing city A (0,3906)
 
remove 0 3907
>> Removing city A (0,3907)
 
remove 0 3908
>> Removing city A (0,3908)
 
remove 0 3909
>> Removing city A (0,3909)
 
remove 0 3910
>> Removing city A (0,3910)
 
remove 0 3911
>> Removing city A (0,3911)
 
remove 0 3912
>> Removing city A (0,3912)
 
remove 0 3913
>> Removing city A (0,3913)
 
remove 0 3914
>> Removing city A (0,3914)
 
remove 0 3915
>> Removing city A (0,3915)
 
remove 0 3916
>> Removing city A (0,3916)
 
remove 0 3917
>> Removing city A (0,3917)
 
remove 0 3918
>> Removing city A (0,3918)
 
remove 0 3919
>> Removing city A (0,3919)
 
remove 0 3920
>> Removing city A (0,3920)
 
remove 0 3921
>> Removing city A (0,3921)
 
remove 0 3922
>> Removing city A (0,3922)
 
remove 0 3923
>> Removing city A (0,3923)
 
remove 0 3924
>> Removing city A (0,3924)
 
remove 0 3925
>> Removing city A (0,3925)
 
remove 0 3926
>> Removing city A (0,3926)
 
remove 0 3927
>> Removing city A (0,3927)
 
remove 0 3928
>> Removing city A (0,3928)
 
remove 0 3929
>> Removing city A (0,3929)
 
remove 0 3930
>> Removing city A (0,3930)
 
remove 0 3931
>> Removing city A (0,3931)
 
remove 0 3932
>> Removing city A (0,3932)
 
remove 0 3933
>> Removing city A (0,3933)
 
remove 0 3934
>> Removing city A (0,3934)
 
remove 0 3935
>> Removing city A (0,3935)
 
remove 0 3936
>> Removing city A (0,3936)
 
remove 0 3937
>> Removing city A (0,3937)
 
remove 0 3938
>> Removing city A (0,3938)
 
remove 0 3939
>> Removing city A (0,3939)
 
remove 0 3940
>> Removing city A (0,3940)
 
remove 0 3941
>> Removing city A (0,3941)
 
remove 0 3942
>> Removing city A (0,3942)
 
remove 0 3943
>> Removing city A (0,3943)
 
remove 0 3944
>> Removing city A (0,3944)
 
remove 0 3945
>> Removing city A (0,3945)
 
remove 0 3946
>> Removing city A (0,3946)
 
remove 0 3947
>> Removing city A (0,3947)
 
remove 0 3948
>> Removing city A (0,3948)
 
remove 0 3949
>> Removing city A (0,3949)
 
remove 0 3950
>> Removing city A (0,3950)
 
remove 0 3951
>> Removing city A (0,3951)
 
remove 0 3952
>> Removing city A (0,3952)
 
remove 0 3953
>> Removing city A (0,3953)
 
remove 0 3954
>> Removing city A (0,3954)
 
remove 0 3955
>> Removing city A (0,3955)
 
remove 0 3956
>> Removing city A (0,3956)
 
remove 0 3957
>> Removing city A (0,3957)
 
remove 0 3958
>> Removing city A (0,3958)
 
remove 0 3959
>> Removing city A (0,3959)
 
remove 0 3960
>> Removing city A (0,3960)
 
remove 0 3961
>> Removing city A (0,3961)
 
remove 0 3962
>> Removing city A (0,3962)
 
remove 0 3963
>> Removing city A (0,3963)
 
remove 0 3964
>> Removing city A (0,3964)
 
remove 0 3965
>> Removing city A (0,3965)
 
remove 0 3966
>> Removing city A (0,3966)
 
remove 0 3967
>> Removing city A (0,3967)
 
remove 0 3968
>> Removing city A (0,3968)
 
remove 0 3969
>> Removing city A (0,3969)
 
remove 0 3970
>> Removing city A (0,3970)
 
remove 0 3971
>> Removing city A (0,3971)
 
remove 0 3972
>> Removing city A (0,3972)
 
remove 0 3973
>> Removing city A (0,3973)
 
remove 0 3974
>> Removing city A (0,3974)
 
remove 0 3975
>> Removing city A (0,3975)
 
remove 0 3976
>> Removing city A (0,3976)
 
remove 0 3977
>> Removing city A (0,3977)
 
remove 0 3978
>> Removing city A (0,3978)
 
remove 0 3979
>> Removing city A (0,3979)
 
remove 0 3980
>> Removing city A (0,3980)
 
remove 0 3981
>> Removing city A (0,3981)
 
remove 0 3982
>> Removing city A (0,3982)
 
remove 0 3983
>> Removing city A (0,3983)
 
remove 0 3984
>> Removing city A (0,3984)
 
remove 0 3985
>> Removing city A (0,3985)
 
remove 0 3986
>> Removing city A (0,3986)
 
remove 0 3987
>> Removing city A (0,3987)
 
remove 0 3988
>> Removing city A (0,3988)
 
remove 0 3989
>> Removing city A (0,3989)
 
remove 0 3990
>> Removing city A (0,3990)
 
remove 0 3991
>> Removing city A (0,3991)
 
remove 0 3992
>> Removing city A (0,3992)
 
remove 0 3993
>> Removing city A (0,3993)
 
remove 0 3994
>> Removing city A (0,3994)
 
remove 0 3995
>> Removing city A (0,3995)
 
remove 0 3996
>> Removing city A (0,3996)
 
remove 0 3997
>> Removing city A (0,3997)
 
remove 0 3998
>> Removing city A (0,3998)
 
remove 0 3999
>> Removing city A (0,3999)
 
remove 0 4000
>> Removing city A (0,4000)
 
remove 0 4001
>> Removing city A (0,4001)
 
remove 0 4002
>> Removing city A (0,4002)
 
remove 0 4003
>> Removing city A (0,4003)
 
remove 0 4004
>> Removing city A (0,4004)
 
remove 0 4005
>> Removing city A (0,4005)
 
remove 0 4006
>> Removing city A (0,4006)
 
remove 0 4007
>> Removing city A (0,4007)
 
remove 0 4008
>> Removing city A (0,4008)
 
remove 0 4009
>> Removing city A (0,4009)
 
remove 0 4010
>> Removing city A (0,4010)
 
remove 0 4011
>> Removing city A (0,4011)
 
remove 0 4012
>> Removing city A (0,4012)
 
remove 0 4013
>> Removing city A (0,4013)
 
remove 0 4014
>> Removing city A (0,4014)
 
remove 0 4015
>> Removing city A (0,4015)
 
remove 0 4016
>> Removing city A (0,4016)
 
remove 0 4017
>> Removing city A (0,4017)
 
remove 0 4018
>> Removing city A (0,4018)
 
remove 0 4019
>> Removing city A (0,4019)
 
remove 0 4020
>> Removing city A (0,4020)
 
remove 0 4021
>> Removing city A (0,4021)
 
remove 0 4022
>> Removing city A (0,4022)
 
remove 0 4023
>> Removing city A (0,4023)
 
remove 0 4024
>> Removing city A (0,4024)
 
remove 0 4025
>> Removing city A (0,4025)
 
remove 0 4026
>> Removing city A (0,4026)
 
remove 0 4027
>> Removing city A (0,4027)
 
remove 0 4028
>> Removing city A (0,4028)
 
remove 0 4029
>> Removing city A (0,4029)
 
remove 0 4030
>> Removing city A (0,4030)
 
remove 0 4031
>> Removing city A (0,4031)
 
remove 0 4032
>> Removing city A (0,4032)
 
remove 0 4033
>> Removing city A (0,4033)
 
remove 0 4034
>> Removing city A (0,4034)
 
remove 0 4035
>> Removing city A (0,4035)
 
remove 0 4036
>> Removing city A (0,4036)
 
remove 0 4037
>> Removing city A (0,4037)
 
remove 0 4038
>> Removing city A (0,4038)
 
remove 0 4039
>> Removing city A (0,4039)
 
remove 0 4040
>> Removing city A (0,4040)
 
remove 0 4041
>> Removing city A (0,4041)
 
remove 0 4042
>> Removing city A (0,4042)
 
remove 0 4043
>> Removing city A (0,4043)
 
remove 0 4044
>> Removing city A (0,4044)
 
remove 0 4045
>> Removing city A (0,4045)
 
remove 0 4046
>> Removing city A (0,4046)
 
remove 0 4047
>> Removing city A (0,4047)
 
remove 0 4048
>> Removing city A (0,4048)
 
remove 0 4049
>> Removing city A (0,4049)
 
remove 0 4050
>> Removing city A (0,4050)
 
remove 0 4051
>> Removing city A (0,4051)
 
remove 0 4052
>> Removing city A (0,4052)
 
remove 0 4053
>> Removing city A (0,4053)
 
remove 0 4054
>> Removing city A (0,4054)
 
remove 0 4055
>> Removing city A (0,4055)
 
remove 0 4056
>> Removing city A (0,4056)
 
remove 0 4057
>> Removing city A (0,4057)
 
remove 0 4058
>> Removing city A (0,4058)
 
remove 0 4059
>> Removing city A (0,4059)
 
remove 0 4060
>> Removing city A (0,4060)
 
remove 0 4061
>> Removing city A (0,4061)
 
remove 0 4062
>> Removing city A (0,4062)
 
remove 0 4063
>> Removing city A (0,4063)
 
remove 0 4064
>> Removing city A (0,4064)
 
remove 0 4065
>> Removing city A (0,4065)
 
remove 0 4066
>> Removing city A (0,4066)
 
remove 0 4067
>> Removing city A (0,4067)
 
remove 0 4068
>> Removing city A (0,4068)
 
remove 0 4069
>> Removing city A (0,4069)
 
remove 0 4070
>> Removing city A (0,4070)
 
remove 0 4071
>> Removing city A (0,4071)
 
remove 0 4072
>> Removing city A (0,4072)
 
remove 0 4073
>> Removing city A (0,4073)
 
remove 0 4074
>> Removing city A (0,4074)
 
remove 0 4075
>> Removing city A (0,4075)
 
remove 0 4076
>> Removing city A (0,4076)
 
remove 0 4077
>> Removing city A (0,4077)
 
remove 0 4078
>> Removing city A (0,4078)
 
remove 0 4079
>> Removing city A (0,4079)
 
remove 0 4080
>> Removing city A (0,4080)
 
remove 0 4081
>> Removing city A (0,4081)
 
remove 0 4082
>> Removing city A (0,4082)
 
remove 0 4083
>> Removing city A (0,4083)
 
remove 0 4084
>> Removing city A (0,4084)
 
remove 0 4085
>> Removing city A (0,4085)
 
remove 0 4086
>> Removing city A (0,4086)
 
remove 0 4087
>> Removing city A (0,4087)
 
remove 0 4088
>> Removing city A (0,4088)
 
remove 0 4089
>> Removing city A (0,4089)
 
remove 0 4090
>> Removing city A (0,4090)
 
remove 0 4091
>> Removing city A (0,4091)
 
remove 0 4092
>> Removing city A (0,4092)
 
remove 0 4093
>> Removing city A (0,4093)
 
remove 0 4094
>> Removing city A (0,4094)
 
remove 0 4095
>> Removing city A (0,4095)
 
remove 0 4096
>> Removing city A (0,4096)
 
remove 0 4097
>> Removing city A (0,4097)
 
remove 0 4098
>> Removing city A (0,4098)
 
remove 0 4099
>> Removing city A (0,4099)
 
remove 0 4100
>> Removing city A (0,4100)
 
remove 0 4101
>> Removing city A (0,4101)
 
remove 0 4102
>> Removing city A (0,4102)
 
remove 0 4103
>> Removing city A (0,4103)
 
remove 0 4104
>> Removing city A (0,4104)
 
remove 0 4105
>> Removing city A (0,4105)
 
remove 0 4106
>> Removing city A (0,4106)
 
remove 0 4107
>> Removing city A (0,4107)
 
remove 0 4108
>> Removing city A (0,4108)
 
remove 0 4109
>> Removing city A (0,4109)
 
remove 0 4110
>> Removing city A (0,4110)
 
remove 0 4111
>> Removing city A (0,4111)
 
remove 0 4112
>> Removing city A (0,4112)
 
remove 0 4113
>> Removing city A (0,4113)
 
remove 0 4114
>> Removing city A (0,4114)
 
remove 0 4115
>> Removing city A (0,4115)
 
remove 0 4116
>> Removing city A (0,4116)
 
remove 0 4117
>> Removing city A (0,4117)
 
remove 0 4118
>> Removing city A (0,4118)
 
remove 0 4119
>> Removing city A (0,4119)
 
remove 0 4120
>> Removing city A (0,4120)
 
remove 0 4121
>> Removing city A (0,4121)
 
remove 0 4122
>> Removing city A (0,4122)
 
remove 0 4123
>> Removing city A (0,4123)
 
remove 0 4124
>> Removing city A (0,4124)
 
remove 0 4125
>> Removing city A (0,4125)
 
remove 0 4126
>> Removing city A (0,4126)
 
remove 0 4127
>> Removing city A (0,4127)
 
remove 0 4128
>> Removing city A (0,4128)
 
remove 0 4129
>> Removing city A (0,4129)
 
remove 0 4130
>> Removing city A (0,4130)
 
remove 0 4131
>> Removing city A (0,4131)
 
remove 0 4132
>> Removing city A (0,4132)
 
remove 0 4133
>> Removing city A (0,4133)
 
remove 0 4134
>> Removing city A (0,4134)
 
remove 0 4135
>> Removing city A (0,4135)
 
remove 0 4136
>> Removing city A (0,4136)
 
remove 0 4137
>> Removing city A (0,4137)
 
remove 0 4138
>> Removing city A (0,4138)
 
remove 0 4139
>> Removing city A (0,4139)
 
remove 0 4140
>> Removing city A (0,4140)
 
remove 0 4141
>> Removing city A (0,4141)
 
remove 0 4142
>> Removing city A (0,4142)
 
remove 0 4143
>> Removing city A (0,4143)
 
remove 0 4144
>> Removing city A (0,4144)
 
remove 0 4145
>> Removing city A (0,4145)
 
remove 0 4146
>> Removing city A (0,4146)
 
remove 0 4147
>> Removing city A (0,4147)
 
remove 0 4148
>> Removing city A (0,4148)
 
remove 0 4149
>> Removing city A (0,4149)
 
remove 0 4150
>> Removing city A (0,4150)
 
remove 0 4151
>> Removing city A (0,4151)
 
remove 0 4152
>> Removing city A (0,4152)
 
remove 0 4153
>> Removing city A (0,4153)
 
remove 0 4154
>> Removing city A (0,4154)
 
remove 0 4155
>> Removing city A (0,4155)
 
remove 0 4156
>> Removing city A (0,4156)
 
remove 0 4157
>> Removing city A (0,4157)
 
remove 0 4158
>> Removing city A (0,4158)
 
remove 0 4159
>> Removing city A (0,4159)
 
remove 0 4160
>> Removing city A (0,4160)
 
remove 0 4161
>> Removing city A (0,4161)
 
remove 0 4162
>> Removing city A (0,4162)
 
remove 0 4163
>> Removing city A (0,4163)
 
remove 0 4164
>> Removing city A (0,4164)
 
remove 0 4165
>> Removing city A (0,4165)
 
remove 0 4166
>> Removing city A (0,4166)
 
remove 0 4167
>> Removing city A (0,4167)
 
remove 0 4168
>> Removing city A (0,4168)
 
remove 0 4169
>> Removing city A (0,4169)
 
remove 0 4170
>> Removing city A (0,4170)
 
remove 0 4171
>> Removing city A (0,4171)
 
remove 0 4172
>> Removing city A (0,4172)
 
remove 0 4173
>> Removing city A (0,4173)
 
remove 0 4174
>> Removing city A (0,4174)
 
remove 0 4175
>> Removing city A (0,4175)
 
remove 0 4176
>> Removing city A (0,4176)
 
remove 0 4177
>> Removing city A (0,4177)
 
remove 0 4178
>> Removing city A (0,4178)
 
remove 0 4179
>> Removing city A (0,4179)
 
remove 0 4180
>> Removing city A (0,4180)
 
remove 0 4181
>> Removing city A (0,4181)
 
remove 0 4182
>> Removing city A (0,4182)
 
remove 0 4183
>> Removing city A (0,4183)
 
remove 0 4184
>> Removing city A (0,4184)
 
remove 0 4185
>> Removing city A (0,4185)
 
remove 0 4186
>> Removing city A (0,4186)
 
remove 0 4187
>> Removing city A (0,4187)
 
remove 0 4188
>> Removing city A (0,4188)
 
remove 0 4189
>> Removing city A (0,4189)
 
remove 0 4190
>> Removing city A (0,4190)
 
remove 0 4191
>> Removing city A (0,4191)
 
remove 0 4192
>> Removing city A (0,4192)
 
remove 0 4193
>> Removing city A (0,4193)
 
remove 0 4194
>> Removing city A (0,4194)
 
remove 0 4195
>> Removing city A (0,4195)
 
remove 0 4196
>> Removing city A (0,4196)
 
remove 0 4197
>> Removing city A (0,4197)
 
remove 0 4198
>> Removing city A (0,4198)
 
remove 0 4199
>> Removing city A (0,4199)
 
remove 0 4200
>> Removing city A (0,4200)
 
remove 0 4201
>> Removing city A (0,4201)
 
remove 0 4202
>> Removing city A (0,4202)
 
remove 0 4203
>> Removing city A (0,4203)
 
remove 0 4204
>> Removing city A (0,4204)
 
remove 0 4205
>> Removing city A (0,4205)
 
remove 0 4206
>> Removing city A (0,4206)
 
remove 0 4207
>> Removing city A (0,4207)
 
remove 0 4208
>> Removing city A (0,4208)
 
remove 0 4209
>> Removing city A (0,4209)
 
remove 0 4210
>> Removing city A (0,4210)
 
remove 0 4211
>> Removing city A (0,4211)
 
remove 0 4212
>> Removing city A (0,4212)
 
remove 0 4213
>> Removing city A (0,4213)
 
remove 0 4214
>> Removing city A (0,4214)
 
remove 0 4215
>> Removing city A (0,4215)
 
remove 0 4216
>> Removing city A (0,4216)
 
remove 0 4217
>> Removing city A (0,4217)
 
remove 0 4218
>> Removing city A (0,4218)
 
remove 0 4219
>> Removing city A (0,4219)
 
remove 0 4220
>> Removing city A (0,4220)
 
remove 0 4221
>> Removing city A (0,4221)
 
remove 0 4222
>> Removing city A (0,4222)
 
remove 0 4223
>> Removing city A (0,4223)
 
remove 0 4224
>> Removing city A (0,4224)
 
remove 0 4225
>> Removing city A (0,4225)
 
remove 0 4226
>> Removing city A (0,4226)
 
remove 0 4227
>> Removing city A (0,4227)
 
remove 0 4228
>> Removing city A (0,4228)
 
remove 0 4229
>> Removing city A (0,4229)
 
remove 0 4230
>> Removing city A (0,4230)
 
remove 0 4231
>> Removing city A (0,4231)
 
remove 0 4232
>> Removing city A (0,4232)
 
remove 0 4233
>> Removing city A (0,4233)
 
remove 0 4234
>> Removing city A (0,4234)
 
remove 0 4235
>> Removing city A (0,4235)
 
remove 0 4236
>> Removing city A (0,4236)
 
remove 0 4237
>> Removing city A (0,4237)
 
remove 0 4238
>> Removing city A (0,4238)
 
remove 0 4239
>> Removing city A (0,4239)
 
remove 0 4240
>> Removing city A (0,4240)
 
remove 0 4241
>> Removing city A (0,4241)
 
remove 0 4242
>> Removing city A (0,4242)
 
remove 0 4243
>> Removing city A (0,4243)
 
remove 0 4244
>> Removing city A (0,4244)
 
remove 0 4245
>> Removing city A (0,4245)
 
remove 0 4246
>> Removing city A (0,4246)
 
remove 0 4247
>> Removing city A (0,4247)
 
remove 0 4248
>> Removing city A (0,4248)
 
remove 0 4249
>> Removing city A (0,4249)
 
remove 0 4250
>> Removing city A (0,4250)
 
remove 0 4251
>> Removing city A (0,4251)
 
remove 0 4252
>> Removing city A (0,4252)
 
remove 0 4253
>> Removing city A (0,4253)
 
remove 0 4254
>> Removing city A (0,4254)
 
remove 0 4255
>> Removing city A (0,4255)
 
remove 0 4256
>> Removing city A (0,4256)
 
remove 0 4257
>> Removing city A (0,4257)
 
remove 0 4258
>> Removing city A (0,4258)
 
remove 0 4259
>> Removing city A (0,4259)
 
remove 0 4260
>> Removing city A (0,4260)
 
remove 0 4261
>> Removing city A (0,4261)
 
remove 0 4262
>> Removing city A (0,4262)
 
remove 0 4263
>> Removing city A (0,4263)
 
remove 0 4264
>> Removing city A (0,4264)
 
remove 0 4265
>> Removing city A (0,4265)
 
remove 0 4266
>> Removing city A (0,4266)
 
remove 0 4267
>> Removing city A (0,4267)
 
remove 0 4268
>> Removing city A (0,4268)
 
remove 0 4269
>> Removing city A (0,4269)
 
remove 0 4270
>> Removing city A (0,4270)
 
remove 0 4271
>> Removing city A (0,4271)
 
remove 0 4272
>> Removing city A (0,4272)
 
remove 0 4273
>> Removing city A (0,4273)
 
remove 0 4274
>> Removing city A (0,4274)
 
remove 0 4275
>> Removing city A (0,4275)
 
remove 0 4276
>> Removing city A (0,4276)
 
remove 0 4277
>> Removing city A (0,4277)
 
remove 0 4278
>> Removing city A (0,4278)
 
remove 0 4279
>> Removing city A (0,4279)
 
remove 0 4280
>> Removing city A (0,4280)
 
remove 0 4281
>> Removing city A (0,4281)
 
remove 0 4282
>> Removing city A (0,4282)
 
remove 0 4283
>> Removing city A (0,4283)
 
remove 0 4284
>> Removing city A (0,4284)
 
remove 0 4285
>> Removing city A (0,4285)
 
remove 0 4286
>> Removing city A (0,4286)
 
remove 0 4287
>> Removing city A (0,4287)
 
remove 0 4288
>> Removing city A (0,4288)
 
remove 0 4289
>> Removing city A (0,4289)
 
remove 0 4290
>> Removing city A (0,4290)
 
remove 0 4291
>> Removing city A (0,4291)
 
remove 0 4292
>> Removing city A (0,4292)
 
remove 0 4293
>> Removing city A (0,4293)
 
remove 0 4294
>> Removing city A (0,4294)
 
remove 0 4295
>> Removing city A (0,4295)
 
remove 0 4296
>> Removing city A (0,4296)
 
remove 0 4297
>> Removing city A (0,4297)
 
remove 0 4298
>> Removing city A (0,4298)
 
remove 0 4299
>> Removing city A (0,4299)
 
remove 0 4300
>> Removing city A (0,4300)
 
remove 0 4301
>> Removing city A (0,4301)
 
remove 0 4302
>> Removing city A (0,4302)
 
remove 0 4303
>> Removing city A (0,4303)
 
remove 0 4304
>> Removing city A (0,4304)
 
remove 0 4305
>> Removing city A (0,4305)
 
remove 0 4306
>> Removing city A (0,4306)
 
remove 0 4307
>> Removing city A (0,4307)
 
remove 0 4308
>> Removing city A (0,4308)
 
remove 0 4309
>> Removing city A (0,4309)
 
remove 0 4310
>> Removing city A (0,4310)
 
remove 0 4311
>> Removing city A (0,4311)
 
remove 0 4312
>> Removing city A (0,4312)
 
remove 0 4313
>> Removing city A (0,4313)
 
remove 0 4314
>> Removing city A (0,4314)
 
remove 0 4315
>> Removing city A (0,4315)
 
remove 0 4316
>> Removing city A (0,4316)
 
remove 0 4317
>> Removing city A (0,4317)
 
remove 0 4318
>> Removing city A (0,4318)
 
remove 0 4319
>> Removing city A (0,4319)
 
remove 0 4320
>> Removing city A (0,4320)
 
remove 0 4321
>> Removing city A (0,4321)
 
remove 0 4322
>> Removing city A (0,4322)
 
remove 0 4323
>> Removing city A (0,4323)
 
remove 0 4324
>> Removing city A (0,4324)
 
remove 0 4325
>> Removing city A (0,4325)
 
remove 0 4326
>> Removing city A (0,4326)
 
remove 0 4327
>> Removing city A (0,4327)
 
remove 0 4328
>> Removing city A (0,4328)
 
remove 0 4329
>> Removing city A (0,4329)
 
remove 0 4330
>> Removing city A (0,4330)
 
remove 0 4331
>> Removing city A (0,4331)
 
remove 0 4332
>> Removing city A (0,4332)
 
remove 0 4333
>> Removing city A (0,4333)
 
remove 0 4334
>> Removing city A (0,4334)
 
remove 0 4335
>> Removing city A (0,4335)
 
remove 0 4336
>> Removing city A (0,4336)
 
remove 0 4337
>> Removing city A (0,4337)
 
remove 0 4338
>> Removing city A (0,4338)
 
remove 0 4339
>> Removing city A (0,4339)
 
remove 0 4340
>> Removing city A (0,4340)
 
remove 0 4341
>> Removing city A (0,4341)
 
remove 0 4342
>> Removing city A (0,4342)
 
remove 0 4343
>> Removing city A (0,4343)
 
remove 0 4344
>> Removing city A (0,4344)
 
remove 0 4345
>> Removing city A (0,4345)
 
remove 0 4346
>> Removing city A (0,4346)
 
remove 0 4347
>> Removing city A (0,4347)
 
remove 0 4348
>> Removing city A (0,4348)
 
remove 0 4349
>> Removing city A (0,4349)
 
remove 0 4350
>> Removing city A (0,4350)
 
remove 0 4351
>> Removing city A (0,4351)
 
remove 0 4352
>> Removing city A (0,4352)
 
remove 0 4353
>> Removing city A (0,4353)
 
remove 0 4354
>> Removing city A (0,4354)
 
remove 0 4355
>> Removing city A (0,4355)
 
remove 0 4356
>> Removing city A (0,4356)
 
remove 0 4357
>> Removing city A (0,4357)
 
remove 0 4358
>> Removing city A (0,4358)
 
remove 0 4359
>> Removing city A (0,4359)
 
remove 0 4360
>> Removing city A (0,4360)
 
remove 0 4361
>> Removing city A (0,4361)
 
remove 0 4362
>> Removing city A (0,4362)
 
remove 0 4363
>> Removing city A (0,4363)
 
remove 0 4364
>> Removing city A (0,4364)
 
remove 0 4365
>> Removing city A (0,4365)
 
remove 0 4366
>> Removing city A (0,4366)
 
remove 0 4367
>> Removing city A (0,4367)
 
remove 0 4368
>> Removing city A (0,4368)
 
remove 0 4369
>> Removing city A (0,4369)
 
remove 0 4370
>> Removing city A (0,4370)
 
remove 0 4371
>> Removing city A (0,4371)
 
remove 0 4372
>> Removing city A (0,4372)
 
remove 0 4373
>> Removing city A (0,4373)
 
remove 0 4374
>> Removing city A (0,4374)
 
remove 0 4375
>> Removing city A (0,4375)
 
remove 0 4376
>> Removing city A (0,4376)
 
remove 0 4377
>> Removing city A (0,4377)
 
remove 0 4378
>> Removing city A (0,4378)
 
remove 0 4379
>> Removing city A (0,4379)
 
remove 0 4380
>> Removing city A (0,4380)
 
remove 0 4381
>> Removing city A (0,4381)
 
remove 0 4382
>> Removing city A (0,4382)
 
remove 0 4383
>> Removing city A (0,4383)
 
remove 0 4384
>> Removing city A (0,4384)
 
remove 0 4385
>> Removing city A (0,4385)
 
remove 0 4386
>> Removing city A (0,4386)
 
remove 0 4387
>> Removing city A (0,4387)
 
remove 0 4388
>> Removing city A (0,4388)
 
remove 0 4389
>> Removing city A (0,4389)
 
remove 0 4390
>> Removing city A (0,4390)
 
remove 0 4391
>> Removing city A (0,4391)
 
remove 0 4392
>> Removing city A (0,4392)
 
remove 0 4393
>> Removing city A (0,4393)
 
remove 0 4394
>> Removing city A (0,4394)
 
remove 0 4395
>> Removing city A (0,4395)
 
remove 0 4396
>> Removing city A (0,4396)
 
remove 0 4397
>> Removing city A (0,4397)
 
remove 0 4398
>> Removing city A (0,4398)
 
remove 0 4399
>> Removing city A (0,4399)
 
remove 0 4400
>> Removing city A (0,4400)
 
remove 0 4401
>> Removing city A (0,4401)
 
remove 0 4402
>> Removing city A (0,4402)
 
remove 0 4403
>> Removing city A (0,4403)
 
remove 0 4404
>> Removing city A (0,4404)
 
remove 0 4405
>> Removing city A (0,4405)
 
remove 0 4406
>> Removing city A (0,4406)
 
remove 0 4407
>> Removing city A (0,4407)
 
remove 0 4408
>> Removing city A (0,4408)
 
remove 0 4409
>> Removing city A (0,4409)
 
remove 0 4410
>> Removing city A (0,4410)
 
remove 0 4411
>> Removing city A (0,4411)
 
remove 0 4412
>> Removing city A (0,4412)
 
remove 0 4413
>> Removing city A (0,4413)
 
remove 0 4414
>> Removing city A (0,4414)
 
remove 0 4415
>> Removing city A (0,4415)
 
remove 0 4416
>> Removing city A (0,4416)
 
remove 0 4417
>> Removing city A (0,4417)
 
remove 0 4418
>> Removing city A (0,4418)
 
remove 0 4419
>> Removing city A (0,4419)
 
remove 0 4420
>> Removing city A (0,4420)
 
remove 0 4421
>> Removing city A (0,4421)
 
remove 0 4422
>> Removing city A (0,4422)
 
remove 0 4423
>> Removing city A (0,4423)
 
remove 0 4424
>> Removing city A (0,4424)
 
remove 0 4425
>> Removing city A (0,4425)
 
remove 0 4426
>> Removing city A (0,4426)
 
remove 0 4427
>> Removing city A (0,4427)
 
remove 0 4428
>> Removing city A (0,4428)
 
remove 0 4429
>> Removing city A (0,4429)
 
remove 0 4430
>> Removing city A (0,4430)
 
remove 0 4431
>> Removing city A (0,4431)
 
remove 0 4432
>> Removing city A (0,4432)
 
remove 0 4433
>> Removing city A (0,4433)
 
remove 0 4434
>> Removing city A (0,4434)
 
remove 0 4435
>> Removing city A (0,4435)
 
remove 0 4436
>> Removing city A (0,4436)
 
remove 0 4437
>> Removing city A (0,4437)
 
remove 0 4438
>> Removing city A (0,4438)
 
remove 0 4439
>> Removing city A (0,4439)
 
remove 0 4440
>> Removing city A (0,4440)
 
remove 0 4441
>> Removing city A (0,4441)
 
remove 0 4442
>> Removing city A (0,4442)
 
remove 0 4443
>> Removing city A (0,4443)
 
remove 0 4444
>> Removing city A (0,4444)
 
remove 0 4445
>> Removing city A (0,4445)
 
remove 0 4446
>> Removing city A (0,4446)
 
remove 0 4447
>> Removing city A (0,4447)
 
remove 0 4448
>> Removing city A (0,4448)
 
remove 0 4449
>> Removing city A (0,4449)
 
remove 0 4450
>> Removing city A (0,4450)
 
remove 0 4451
>> Removing city A (0,4451)
 
remove 0 4452
>> Removing city A (0,4452)
 
remove 0 4453
>> Removing city A (0,4453)
 
remove 0 4454
>> Removing city A (0,4454)
 
remove 0 4455
>> Removing city A (0,4455)
 
remove 0 4456
>> Removing city A (0,4456)
 
remove 0 4457
>> Removing city A (0,4457)
 
remove 0 4458
>> Removing city A (0,4458)
 
remove 0 4459
>> Removing city A (0,4459)
 
remove 0 4460
>> Removing city A (0,4460)
 
remove 0 4461
>> Removing city A (0,4461)
 
remove 0 4462
>> Removing city A (0,4462)
 
remove 0 4463
>> Removing city A (0,4463)
 
remove 0 4464
>> Removing city A (0,4464)
 
remove 0 4465
>> Removing city A (0,4465)
 
remove 0 4466
>> Removing city A (0,4466)
 
remove 0 4467
>> Removing city A (0,4467)
 
remove 0 4468
>> Removing city A (0,4468)
 
remove 0 4469
>> Removing city A (0,4469)
 
remove 0 4470
>> Removing city A (0,4470)
 
remove 0 4471
>> Removing city A (0,4471)
 
remove 0 4472
>> Removing city A (0,4472)
 
remove 0 4473
>> Removing city A (0,4473)
 
remove 0 4474
>> Removing city A (0,4474)
 
remove 0 4475
>> Removing city A (0,4475)
 
remove 0 4476
>> Removing city A (0,4476)
 
remove 0 4477
>> Removing city A (0,4477)
 
remove 0 4478
>> Removing city A (0,4478)
 
remove 0 4479
>> Removing city A (0,4479)
 
remove 0 4480
>> Removing city A (0,4480)
 
remove 0 4481
>> Removing city A (0,4481)
 
remove 0 4482
>> Removing city A (0,4482)
 
remove 0 4483
>> Removing city A (0,4483)
 
remove 0 4484
>> Removing city A (0,4484)
 
remove 0 4485
>> Removing city A (0,4485)
 
remove 0 4486
>> Removing city A (0,4486)
 
remove 0 4487
>> Removing city A (0,4487)
 
remove 0 4488
>> Removing city A (0,4488)
 
remove 0 4489
>> Removing city A (0,4489)
 
remove 0 4490
>> Removing city A (0,4490)
 
remove 0 4491
>> Removing city A (0,4491)
 
remove 0 4492
>> Removing city A (0,4492)
 
remove 0 4493
>> Removing city A (0,4493)
 
remove 0 4494
>> Removing city A (0,4494)
 
remove 0 4495
>> Removing city A (0,4495)
 
remove 0 4496
>> Removing city A (0,4496)
 
remove 0 4497
>> Removing city A (0,4497)
 
remove 0 4498
>> Removing city A (0,4498)
 
remove 0 4499
>> Removing city A (0,4499)
 
remove 0 4500
>> Removing city A (0,4500)
 
remove 0 4501
>> Removing city A (0,4501)
 
remove 0 4502
>> Removing city A (0,4502)
 
remove 0 4503
>> Removing city A (0,4503)
 
remove 0 4504
>> Removing city A (0,4504)
 
remove 0 4505
>> Removing city A (0,4505)
 
remove 0 4506
>> Removing city A (0,4506)
 
remove 0 4507
>> Removing city A (0,4507)
 
remove 0 4508
>> Removing city A (0,4508)
 
remove 0 4509
>> Removing city A (0,4509)
 
remove 0 4510
>> Removing city A (0,4510)
 
remove 0 4511
>> Removing city A (0,4511)
 
remove 0 4512
>> Removing city A (0,4512)
 
remove 0 4513
>> Removing city A (0,4513)
 
remove 0 4514
>> Removing city A (0,4514)
 
remove 0 4515
>> Removing city A (0,4515)
 
remove 0 4516
>> Removing city A (0,4516)
 
remove 0 4517
>> Removing city A (0,4517)
 
remove 0 4518
>> Removing city A (0,4518)
 
remove 0 4519
>> Removing city A (0,4519)
 
remove 0 4520
>> Removing city A (0,4520)
 
remove 0 4521
>> Removing city A (0,4521)
 
remove 0 4522
>> Removing city A (0,4522)
 
remove 0 4523
>> Removing city A (0,4523)
 
remove 0 4524
>> Removing city A (0,4524)
 
remove 0 4525
>> Removing city A (0,4525)
 
remove 0 4526
>> Removing city A (0,4526)
 
remove 0 4527
>> Removing city A (0,4527)
 
remove 0 4528
>> Removing city A (0,4528)
 
remove 0 4529
>> Removing city A (0,4529)
 
remove 0 4530
>> Removing city A (0,4530)
 
remove 0 4531
>> Removing city A (0,4531)
 
remove 0 4532
>> Removing city A (0,4532)
 
remove 0 4533
>> Removing city A (0,4533)
 
remove 0 4534
>> Removing city A (0,4534)
 
remove 0 4535
>> Removing city A (0,4535)
 
remove 0 4536
>> Removing city A (0,4536)
 
remove 0 4537
>> Removing city A (0,4537)
 
remove 0 4538
>> Removing city A (0,4538)
 
remove 0 4539
>> Removing city A (0,4539)
 
remove 0 4540
>> Removing city A (0,4540)
 
remove 0 4541
>> Removing city A (0,4541)
 
remove 0 4542
>> Removing city A (0,4542)
 
remove 0 4543
>> Removing city A (0,4543)
 
remove 0 4544
>> Removing city A (0,4544)
 
remove 0 4545
>> Removing city A (0,4545)
 
remove 0 4546
>> Removing city A (0,4546)
 
remove 0 4547
>> Removing city A (0,4547)
 
remove 0 4548
>> Removing city A (0,4548)
 
remove 0 4549
>> Removing city A (0,4549)
 
remove 0 4550
>> Removing city A (0,4550)
 
remove 0 4551
>> Removing city A (0,4551)
 
remove 0 4552
>> Removing city A (0,4552)
 
remove 0 4553
>> Removing city A (0,4553)
 
remove 0 4554
>> Removing city A (0,4554)
 
remove 0 4555
>> Removing city A (0,4555)
 
remove 0 4556
>> Removing city A (0,4556)
 
remove 0 4557
>> Removing city A (0,4557)
 
remove 0 4558
>> Removing city A (0,4558)
 
remove 0 4559
>> Removing city A (0,4559)
 
remove 0 4560
>> Removing city A (0,4560)
 
remove 0 4561
>> Removing city A (0,4561)
 
remove 0 4562
>> Removing city A (0,4562)
 
remove 0 4563
>> Removing city A (0,4563)
 
remove 0 4564
>> Removing city A (0,4564)
 
remove 0 4565
>> Removing city A (0,4565)
 
remove 0 4566
>> Removing city A (0,4566)
 
remove 0 4567
>> Removing city A (0,4567)
 
remove 0 4568
>> Removing city A (0,4568)
 
remove 0 4569
>> Removing city A (0,4569)
 
remove 0 4570
>> Removing city A (0,4570)
 
remove 0 4571
>> Removing city A (0,4571)
 
remove 0 4572
>> Removing city A (0,4572)
 
remove 0 4573
>> Removing city A (0,4573)
 
remove 0 4574
>> Removing city A (0,4574)
 
remove 0 4575
>> Removing city A (0,4575)
 
remove 0 4576
>> Removing city A (0,4576)
 
remove 0 4577
>> Removing city A (0,4577)
 
remove 0 4578
>> Removing city A (0,4578)
 
remove 0 4579
>> Removing city A (0,4579)
 
remove 0 4580
>> Removing city A (0,4580)
 
remove 0 4581
>> Removing city A (0,4581)
 
remove 0 4582
>> Removing city A (0,4582)
 
remove 0 4583
>> Removing city A (0,4583)
 
remove 0 4584
>> Removing city A (0,4584)
 
remove 0 4585
>> Removing city A (0,4585)
 
remove 0 4586
>> Removing city A (0,4586)
 
remove 0 4587
>> Removing city A (0,4587)
 
remove 0 4588
>> Removing city A (0,4588)
 
remove 0 4589
>> Removing city A (0,4589)
 
remove 0 4590
>> Removing city A (0,4590)
 
remove 0 4591
>> Removing city A (0,4591)
 
remove 0 4592
>> Removing city A (0,4592)
 
remove 0 4593
>> Removing city A (0,4593)
 
remove 0 4594
>> Removing city A (0,4594)
 
remove 0 4595
>> Removing city A (0,4595)
 
remove 0 4596
>> Removing city A (0,4596)
 
remove 0 4597
>> Removing city A (0,4597)
 
remove 0 4598
>> Removing city A (0,4598)
 
remove 0 4599
>> Removing city A (0,4599)
 
remove 0 4600
>> Removing city A (0,4600)
 
remove 0 4601
>> Removing city A (0,4601)
 
remove 0 4602
>> Removing city A (0,4602)
 
remove 0 4603
>> Removing city A (0,4603)
 
remove 0 4604
>> Removing city A (0,4604)
 
remove 0 4605
>> Removing city A (0,4605)
 
remove 0 4606
>> Removing city A (0,4606)
 
remove 0 4607
>> Removing city A (0,4607)
 
remove 0 4608
>> Removing city A (0,4608)
 
remove 0 4609
>> Removing city A (0,4609)
 
remove 0 4610
>> Removing city A (0,4610)
 
remove 0 4611
>> Removing city A (0,4611)
 
remove 0 4612
>> Removing city A (0,4612)
 
remove 0 4613
>> Removing city A (0,4613)
 
remove 0 4614
>> Removing city A (0,4614)
 
remove 0 4615
>> Removing city A (0,4615)
 
remove 0 4616
>> Removing city A (0,4616)
 
remove 0 4617
>> Removing city A (0,4617)
 
remove 0 4618
>> Removing city A (0,4618)
 
remove 0 4619
>> Removing city A (0,4619)
 
remove 0 4620
>> Removing city A (0,4620)
 
remove 0 4621
>> Removing city A (0,4621)
 
remove 0 4622
>> Removing city A (0,4622)
 
remove 0 4623
>> Removing city A (0,4623)
 
remove 0 4624
>> Removing city A (0,4624)
 
remove 0 4625
>> Removing city A (0,4625)
 
remove 0 4626
>> Removing city A (0,4626)
 
remove 0 4627
>> Removing city A (0,4627)
 
remove 0 4628
>> Removing city A (0,4628)
 
remove 0 4629
>> Removing city A (0,4629)
 
remove 0 4630
>> Removing city A (0,4630)
 
remove 0 4631
>> Removing city A (0,4631)
 
remove 0 4632
>> Removing city A (0,4632)
 
remove 0 4633
>> Removing city A (0,4633)
 
remove 0 4634
>> Removing city A (0,4634)
 
remove 0 4635
>> Removing city A (0,4635)
 
remove 0 4636
>> Removing city A (0,4636)
 
remove 0 4637
>> Removing city A (0,4637)
 
remove 0 4638
>> Removing city A (0,4638)
 
remove 0 4639
>> Removing city A (0,4639)
 
remove 0 4640
>> Removing city A (0,4640)
 
remove 0 4641
>> Removing city A (0,4641)
 
remove 0 4642
>> Removing city A (0,4642)
 
remove 0 4643
>> Removing city A (0,4643)
 
remove 0 4644
>> Removing city A (0,4644)
 
remove 0 4645
>> Removing city A (0,4645)
 
remove 0 4646
>> Removing city A (0,4646)
 
remove 0 4647
>> Removing city A (0,4647)
 
remove 0 4648
>> Removing city A (0,4648)
 
remove 0 4649
>> Removing city A (0,4649)
 
remove 0 4650
>> Removing city A (0,4650)
 
remove 0 4651
>> Removing city A (0,4651)
 
remove 0 4652
>> Removing city A (0,4652)
 
remove 0 4653
>> Removing city A (0,4653)
 
remove 0 4654
>> Removing city A (0,4654)
 
remove 0 4655
>> Removing city A (0,4655)
 
remove 0 4656
>> Removing city A (0,4656)
 
remove 0 4657
>> Removing city A (0,4657)
 
remove 0 4658
>> Removing city A (0,4658)
 
remove 0 4659
>> Removing city A (0,4659)
 
remove 0 4660
>> Removing city A (0,4660)
 
remove 0 4661
>> Removing city A (0,4661)
 
remove 0 4662
>> Removing city A (0,4662)
 
remove 0 4663
>> Removing city A (0,4663)
 
remove 0 4664
>> Removing city A (0,4664)
 
remove 0 4665
>> Removing city A (0,4665)
 
remove 0 4666
>> Removing city A (0,4666)
 
remove 0 4667
>> Removing city A (0,4667)
 
remove 0 4668
>> Removing city A (0,4668)
 
remove 0 4669
>> Removing city A (0,4669)
 
remove 0 4670
>> Removing city A (0,4670)
 
remove 0 4671
>> Removing city A (0,4671)
 
remove 0 4672
>> Removing city A (0,4672)
 
remove 0 4673
>> Removing city A (0,4673)
 
remove 0 4674
>> Removing city A (0,4674)
 
remove 0 4675
>> Removing city A (0,4675)
 
remove 0 4676
>> Removing city A (0,4676)
 
remove 0 4677
>> Removing city A (0,4677)
 
remove 0 4678
>> Removing city A (0,4678)
 
remove 0 4679
>> Removing city A (0,4679)
 
remove 0 4680
>> Removing city A (0,4680)
 
remove 0 4681
>> Removing city A (0,4681)
 
remove 0 4682
>> Removing city A (0,4682)
 
remove 0 4683
>> Removing city A (0,4683)
 
remove 0 4684
>> Removing city A (0,4684)
 
remove 0 4685
>> Removing city A (0,4685)
 
remove 0 4686
>> Removing city A (0,4686)
 
remove 0 4687
>> Removing city A (0,4687)
 
remove 0 4688
>> Removing city A (0,4688)
 
remove 0 4689
>> Removing city A (0,4689)
 
remove 0 4690
>> Removing city A (0,4690)
 
remove 0 4691
>> Removing city A (0,4691)
 
remove 0 4692
>> Removing city A (0,4692)
 
remove 0 4693
>> Removing city A (0,4693)
 
remove 0 4694
>> Removing city A (0,4694)
 
remove 0 4695
>> Removing city A (0,4695)
 
remove 0 4696
>> Removing city A (0,4696)
 
remove 0 4697
>> Removing city A (0,4697)
 
remove 0 4698
>> Removing city A (0,4698)
 
remove 0 4699
>> Removing city A (0,4699)
 
remove 0 4700
>> Removing city A (0,4700)
 
remove 0 4701
>> Removing city A (0,4701)
 
remove 0 4702
>> Removing city A (0,4702)
 
remove 0 4703
>> Removing city A (0,4703)
 
remove 0 4704
>> Removing city A (0,4704)
 
remove 0 4705
>> Removing city A (0,4705)
 
remove 0 4706
>> Removing city A (0,4706)
 
remove 0 4707
>> Removing city A (0,4707)
 
remove 0 4708
>> Removing city A (0,4708)
 
remove 0 4709
>> Removing city A (0,4709)
 
remove 0 4710
>> Removing city A (0,4710)
 
remove 0 4711
>> Removing city A (0,4711)
 
remove 0 4712
>> Removing city A (0,4712)
 
remove 0 4713
>> Removing city A (0,4713)
 
remove 0 4714
>> Removing city A (0,4714)
 
remove 0 4715
>> Removing city A (0,4715)
 
remove 0 4716
>> Removing city A (0,4716)
 
remove 0 4717
>> Removing city A (0,4717)
 
remove 0 4718
>> Removing city A (0,4718)
 
remove 0 4719
>> Removing city A (0,4719)
 
remove 0 4720
>> Removing city A (0,4720)
 
remove 0 4721
>> Removing city A (0,4721)
 
remove 0 4722
>> Removing city A (0,4722)
 
remove 0 4723
>> Removing city A (0,4723)
 
remove 0 4724
>> Removing city A (0,4724)
 
remove 0 4725
>> Removing city A (0,4725)
 
remove 0 4726
>> Removing city A (0,4726)
 
remove 0 4727
>> Removing city A (0,4727)
 
remove 0 4728
>> Removing city A (0,4728)
 
remove 0 4729
>> Removing city A (0,4729)
 
remove 0 4730
>> Removing city A (0,4730)
 
remove 0 4731
>> Removing city A (0,4731)
 
remove 0 4732
>> Removing city A (0,4732)
 
remove 0 4733
>> Removing city A (0,4733)
 
remove 0 4734
>> Removing city A (0,4734)
 
remove 0 4735
>> Removing city A (0,4735)
 
remove 0 4736
>> Removing city A (0,4736)
 
remove 0 4737
>> Removing city A (0,4737)
 
remove 0 4738
>> Removing city A (0,4738)
 
remove 0 4739
>> Removing city A (0,4739)
 
remove 0 4740
>> Removing city A (0,4740)
 
remove 0 4741
>> Removing city A (0,4741)
 
remove 0 4742
>> Removing city A (0,4742)
 
remove 0 4743
>> Removing city A (0,4743)
 
remove 0 4744
>> Removing city A (0,4744)
 
remove 0 4745
>> Removing city A (0,4745)
 
remove 0 4746
>> Removing city A (0,4746)
 
remove 0 4747
>> Removing city A (0,4747)
 
remove 0 4748
>> Removing city A (0,4748)
 
remove 0 4749
>> Removing city A (0,4749)
 
remove 0 4750
>> Removing city A (0,4750)
 
remove 0 4751
>> Removing city A (0,4751)
 
remove 0 4752
>> Removing city A (0,4752)
 
remove 0 4753
>> Removing city A (0,4753)
 
remove 0 4754
>> Removing city A (0,4754)
 
remove 0 4755
>> Removing city A (0,4755)
 
remove 0 4756
>> Removing city A (0,4756)
 
remove 0 4757
>> Removing city A (0,4757)
 
remove 0 4758
>> Removing city A (0,4758)
 
remove 0 4759
>> Removing city A (0,4759)
 
remove 0 4760
>> Removing city A (0,4760)
 
remove 0 4761
>> Removing city A (0,4761)
 
remove 0 4762
>> Removing city A (0,4762)
 
remove 0 4763
>> Removing city A (0,4763)
 
remove 0 4764
>> Removing city A (0,4764)
 
remove 0 4765
>> Removing city A (0,4765)
 
remove 0 4766
>> Removing city A (0,4766)
 
remove 0 4767
>> Removing city A (0,4767)
 
remove 0 4768
>> Removing city A (0,4768)
 
remove 0 4769
>> Removing city A (0,4769)
 
remove 0 4770
>> Removing city A (0,4770)
 
remove 0 4771
>> Removing city A (0,4771)
 
remove 0 4772
>> Removing city A (0,4772)
 
remove 0 4773
>> Removing city A (0,4773)
 
remove 0 4774
>> Removing city A (0,4774)
 
remove 0 4775
>> Removing city A (0,4775)
 
remove 0 4776
>> Removing city A (0,4776)
 
remove 0 4777
>> Removing city A (0,4777)
 
remove 0 4778
>> Removing city A (0,4778)
 
remove 0 4779
>> Removing city A (0,4779)
 
remove 0 4780
>> Removing city A (0,4780)
 
remove 0 4781
>> Removing city A (0,4781)
 
remove 0 4782
>> Removing city A (0,4782)
 
remove 0 4783
>> Removing city A (0,4783)
 
remove 0 4784
>> Removing city A (0,4784)
 
remove 0 4785
>> Removing city A (0,4785)
 
remove 0 4786
>> Removing city A (0,4786)
 
remove 0 4787
>> Removing city A (0,4787)
 
remove 0 4788
>> Removing city A (0,4788)
 
remove 0 4789
>> Removing city A (0,4789)
 
remove 0 4790
>> Removing city A (0,4790)
 
remove 0 4791
>> Removing city A (0,4791)
 
remove 0 4792
>> Removing city A (0,4792)
 
remove 0 4793
>> Removing city A (0,4793)
 
remove 0 4794
>> Removing city A (0,4794)
 
remove 0 4795
>> Removing city A (0,4795)
 
remove 0 4796
>> Removing city A (0,4796)
 
remove 0 4797
>> Removing city A (0,4797)
 
remove 0 4798
>> Removing city A (0,4798)
 
remove 0 4799
>> Removing city A (0,4799)
 
remove 0 4800
>> Removing city A (0,4800)
 
remove 0 4801
>> Removing city A (0,4801)
 
remove 0 4802
>> Removing city A (0,4802)
 
remove 0 4803
>> Removing city A (0,4803)
 
remove 0 4804
>> Removing city A (0,4804)
 
remove 0 4805
>> Removing city A (0,4805)
 
remove 0 4806
>> Removing city A (0,4806)
 
remove 0 4807
>> Removing city A (0,4807)
 
remove 0 4808
>> Removing city A (0,4808)
 
remove 0 4809
>> Removing city A (0,4809)
 
remove 0 4810
>> Removing city A (0,4810)
 
remove 0 4811
>> Removing city A (0,4811)
 
remove 0 4812
>> Removing city A (0,4812)
 
remove 0 4813
>> Removing city A (0,4813)
 
remove 0 4814
>> Removing city A (0,4814)
 
remove 0 4815
>> Removing city A (0,4815)
 
remove 0 4816
>> Removing city A (0,4816)
 
remove 0 4817
>> Removing city A (0,4817)
 
remove 0 4818
>> Removing city A (0,4818)
 
remove 0 4819
>> Removing city A (0,4819)
 
remove 0 4820
>> Removing city A (0,4820)
 
remove 0 4821
>> Removing city A (0,4821)
 
remove 0 4822
>> Removing city A (0,4822)
 
remove 0 4823
>> Removing city A (0,4823)
 
remove 0 4824
>> Removing city A (0,4824)
 
remove 0 4825
>> Removing city A (0,4825)
 
remove 0 4826
>> Removing city A (0,4826)
 
remove 0 4827
>> Removing city A (0,4827)
 
remove 0 4828
>> Removing city A (0,4828)
 
remove 0 4829
>> Removing city A (0,4829)
 
remove 0 4830
>> Removing city A (0,4830)
 
remove 0 4831
>> Removing city A (0,4831)
 
remove 0 4832
>> Removing city A (0,4832)
 
remove 0 4833
>> Removing city A (0,4833)
 
remove 0 4834
>> Removing city A (0,4834)
 
remove 0 4835
>> Removing city A (0,4835)
 
remove 0 4836
>> Removing city A (0,4836)
 
remove 0 4837
>> Removing city A (0,4837)
 
remove 0 4838
>> Removing city A (0,4838)
 
remove 0 4839
>> Removing city A (0,4839)
 
remove 0 4840
>> Removing city A (0,4840)
 
remove 0 4841
>> Removing city A (0,4841)
 
remove 0 4842
>> Removing city A (0,4842)
 
remove 0 4843
>> Removing city A (0,4843)
 
remove 0 4844
>> Removing city A (0,4844)
 
remove 0 4845
>> Removing city A (0,4845)
 
remove 0 4846
>> Removing city A (0,4846)
 
remove 0 4847
>> Removing city A (0,4847)
 
remove 0 4848
>> Removing city A (0,4848)
 
remove 0 4849
>> Removing city A (0,4849)
 
remove 0 4850
>> Removing city A (0,4850)
 
remove 0 4851
>> Removing city A (0,4851)
 
remove 0 4852
>> Removing city A (0,4852)
 
remove 0 4853
>> Removing city A (0,4853)
 
remove 0 4854
>> Removing city A (0,4854)
 
remove 0 4855
>> Removing city A (0,4855)
 
remove 0 4856
>> Removing city A (0,4856)
 
remove 0 4857
>> Removing city A (0,4857)
 
remove 0 4858
>> Removing city A (0,4858)
 
remove 0 4859
>> Removing city A (0,4859)
 
remove 0 4860
>> Removing city A (0,4860)
 
remove 0 4861
>> Removing city A (0,4861)
 
remove 0 4862
>> Removing city A (0,4862)
 
remove 0 4863
>> Removing city A (0,4863)
 
remove 0 4864
>> Removing city A (0,4864)
 
remove 0 4865
>> Removing city A (0,4865)
 
remove 0 4866
>> Removing city A (0,4866)
 
remove 0 4867
>> Removing city A (0,4867)
 
remove 0 4868
>> Removing city A (0,4868)
 
remove 0 4869
>> Removing city A (0,4869)
 
remove 0 4870
>> Removing city A (0,4870)
 
remove 0 4871
>> Removing city A (0,4871)
 
remove 0 4872
>> Removing city A (0,4872)
 
remove 0 4873
>> Removing city A (0,4873)
 
remove 0 4874
>> Removing city A (0,4874)
 
remove 0 4875
>> Removing city A (0,4875)
 
remove 0 4876
>> Removing city A (0,4876)
 
remove 0 4877
>> Removing city A (0,4877)
 
remove 0 4878
>> Removing city A (0,4878)
 
remove 0 4879
>> Removing city A (0,4879)
 
remove 0 4880
>> Removing city A (0,4880)
 
remove 0 4881
>> Removing city A (0,4881)
 
remove 0 4882
>> Removing city A (0,4882)
 
remove 0 4883
>> Removing city A (0,4883)
 
remove 0 4884
>> Removing city A (0,4884)
 
remove 0 4885
>> Removing city A (0,4885)
 
remove 0 4886
>> Removing city A (0,4886)
 
remove 0 4887
>> Removing city A (0,4887)
 
remove 0 4888
>> Removing city A (0,4888)
 
remove 0 4889
>> Removing city A (0,4889)
 
remove 0 4890
>> Removing city A (0,4890)
 
remove 0 4891
>> Removing city A (0,4891)
 
remove 0 4892
>> Removing city A (0,4892)
 
remove 0 4893
>> Removing city A (0,4893)
 
remove 0 4894
>> Removing city A (0,4894)
 
remove 0 4895
>> Removing city A (0,4895)
 
remove 0 4896
>> Removing city A (0,4896)
 
remove 0 4897
>> Removing city A (0,4897)
 
remove 0 4898
>> Removing city A (0,4898)
 
remove 0 4899
>> Removing city A (0,4899)
 
remove 0 4900
>> Removing city A (0,4900)
 
remove 0 4901
>> Removing city A (0,4901)
 
remove 0 4902
>> Removing city A (0,4902)
 
remove 0 4903
>> Removing city A (0,4903)
 
remove 0 4904
>> Removing city A (0,4904)
 
remove 0 4905
>> Removing city A (0,4905)
 
remove 0 4906
>> Removing city A (0,4906)
 
remove 0 4907
>> Removing city A (0,4907)
 
remove 0 4908
>> Removing city A (0,4908)
 
remove 0 4909
>> Removing city A (0,4909)
 
remove 0 4910
>> Removing city A (0,4910)
 
remove 0 4911
>> Removing city A (0,4911)
 
remove 0 4912
>> Removing city A (0,4912)
 
remove 0 4913
>> Removing city A (0,4913)
 
remove 0 4914
>> Removing city A (0,4914)
 
remove 0 4915
>> Removing city A (0,4915)
 
remove 0 4916
>> Removing city A (0,4916)
 
remove 0 4917
>> Removing city A (0,4917)
 
remove 0 4918
>> Removing city A (0,4918)
 
remove 0 4919
>> Removing city A (0,4919)
 
remove 0 4920
>> Removing city A (0,4920)
 
remove 0 4921
>> Removing city A (0,4921)
 
remove 0 4922
>> Removing city A (0,4922)
 
remove 0 4923
>> Removing city A (0,4923)
 
remove 0 4924
>> Removing city A (0,4924)
 
remove 0 4925
>> Removing city A (0,4925)
 
remove 0 4926
>> Removing city A (0,4926)
 
remove 0 4927
>> Removing city A (0,4927)
 
remove 0 4928
>> Removing city A (0,4928)
 
remove 0 4929
>> Removing city A (0,4929)
 
remove 0 4930
>> Removing city A (0,4930)
 
remove 0 4931
>> Removing city A (0,4931)
 
remove 0 4932
>> Removing city A (0,4932)
 
remove 0 4933
>> Removing city A (0,4933)
 
remove 0 4934
>> Removing city A (0,4934)
 
remove 0 4935
>> Removing city A (0,4935)
 
remove 0 4936
>> Removing city A (0,4936)
 
remove 0 4937
>> Removing city A (0,4937)
 
remove 0 4938
>> Removing city A (0,4938)
 
remove 0 4939
>> Removing city A (0,4939)
 
remove 0 4940
>> Removing city A (0,4940)
 
remove 0 4941
>> Removing city A (0,4941)
 
remove 0 4942
>> Removing city A (0,4942)
 
remove 0 4943
>> Removing city A (0,4943)
 
remove 0 4944
>> Removing city A (0,4944)
 
remove 0 4945
>> Removing city A (0,4945)
 
remove 0 4946
>> Removing city A (0,4946)
 
remove 0 4947
>> Removing city A (0,4947)
 
remove 0 4948
>> Removing city A (0,4948)
 
remove 0 4949
>> Removing city A (0,4949)
 
remove 0 4950
>> Removing city A (0,4950)
 
remove 0 4951
>> Removing city A (0,4951)
 
remove 0 4952
>> Removing city A (0,4952)
 
remove 0 4953
>> Removing city A (0,4953)
 
remove 0 4954
>> Removing city A (0,4954)
 
remove 0 4955
>> Removing city A (0,4955)
 
remove 0 4956
>> Removing city A (0,4956)
 
remove 0 4957
>> Removing city A (0,4957)
 
remove 0 4958
>> Removing city A (0,4958)
 
remove 0 4959
>> Removing city A (0,4959)
 
remove 0 4960
>> Removing city A (0,4960)
 
remove 0 4961
>> Removing city A (0,4961)
 
remove 0 4962
>> Removing city A (0,4962)
 
remove 0 4963
>> Removing city A (0,4963)
 
remove 0 4964
>> Removing city A (0,4964)
 
remove 0 4965
>> Removing city A (0,4965)
 
remove 0 4966
>> Removing city A (0,4966)
 
remove 0 4967
>> Removing city A (0,4967)
 
remove 0 4968
>> Removing city A (0,4968)
 
remove 0 4969
>> Removing city A (0,4969)
 
remove 0 4970
>> Removing city A (0,4970)
 
remove 0 4971
>> Removing city A (0,4971)
 
remove 0 4972
>> Removing city A (0,4972)
 
remove 0 4973
>> Removing city A (0,4973)
 
remove 0 4974
>> Removing city A (0,4974)
 
remove 0 4975
>> Removing city A (0,4975)
 
remove 0 4976
>> Removing city A (0,4976)
 
remove 0 4977
>> Removing city A (0,4977)
 
remove 0 4978
>> Removing city A (0,4978)
 
remove 0 4979
>> Removing city A (0,4979)
 
remove 0 4980
>> Removing city A (0,4980)
 
remove 0 4981
>> Removing city A (0,4981)
 
remove 0 4982
>> Removing city A (0,4982)
 
remove 0 4983
>> Removing city A (0,4983)
 
remove 0 4984
>> Removing city A (0,4984)
 
remove 0 4985
>> Removing city A (0,4985)
 
remove 0 4986
>> Removing city A (0,4986)
 
remove 0 4987
>> Removing city A (0,4987)
 
remove 0 4988
>> Removing city A (0,4988)
 
remove 0 4989
>> Removing city A (0,4989)
 
remove 0 4990
>> Removing city A (0,4990)
 
remove 0 4991
>> Removing city A (0,4991)
 
remove 0 4992
>> Removing city A (0,4992)
 
remove 0 4993
>> Removing city A (0,4993)
 
remove 0 4994
>> Removing city A (0,4994)
 
remove 0 4995
>> Removing city A (0,4995)
 
remove 0 4996
>> Removing city A (0,4996)
 
remove 0 4997
>> Removing city A (0,4997)
 
remove 0 4998
>> Removing city A (0,4998)
 
remove 0 4999
>> Removing city A (0,4999)
 
remove 0 5000
>> Removing city A (0,5000)
 
remove 0 5001
>> Removing city A (0,5001)
 
remove 0 5002
>> Removing city A (0,5002)
 
remove 0 5003
>> Removing city A (0,5003)
 
remove 0 5004
>> Removing city A (0,5004)
 
remove 0 5005
>> Removing city A (0,5005)
 
remove 0 5006
>> Removing city A (0,5006)
 
remove 0 5007
>> Removing city A (0,5007)
 
remove 0 5008
>> Removing city A (0,5008)
 
remove 0 5009
>> Removing city A (0,5009)
 
remove 0 5010
>> Removing city A (0,5010)
 
remove 0 5011
>> Removing city A (0,5011)
 
remove 0 5012
>> Removing city A (0,5012)
 
remove 0 5013
>> Removing city A (0,5013)
 
remove 0 5014
>> Removing city A (0,5014)
 
remove 0 5015
>> Removing city A (0,5015)
 
remove 0 5016
>> Removing city A (0,5016)
 
remove 0 5017
>> Removing city A (0,5017)
 
remove 0 5018
>> Removing city A (0,5018)
 
remove 0 5019
>> Removing city A (0,5019)
 
remove 0 5020
>> Removing city A (0,5020)
 
remove 0 5021
>> Removing city A (0,5021)
 
remove 0 5022
>> Removing city A (0,5022)
 
remove 0 5023
>> Removing city A (0,5023)
 
remove 0 5024
>> Removing city A (0,5024)
 
remove 0 5025
>> Removing city A (0,5025)
 
remove 0 5026
>> Removing city A (0,5026)
 
remove 0 5027
>> Removing city A (0,5027)
 
remove 0 5028
>> Removing city A (0,5028)
 
remove 0 5029
>> Removing city A (0,5029)
 
remove 0 5030
>> Removing city A (0,5030)
 
remove 0 5031
>> Removing city A (0,5031)
 
remove 0 5032
>> Removing city A (0,5032)
 
remove 0 5033
>> Removing city A (0,5033)
 
remove 0 5034
>> Removing city A (0,5034)
 
remove 0 5035
>> Removing city A (0,5035)
 
remove 0 5036
>> Removing city A (0,5036)
 
remove 0 5037
>> Removing city A (0,5037)
 
remove 0 5038
>> Removing city A (0,5038)
 
remove 0 5039
>> Removing city A (0,5039)
 
remove 0 5040
>> Removing city A (0,5040)
 
remove 0 5041
>> Removing city A (0,5041)
 
remove 0 5042
>> Removing city A (0,5042)
 
remove 0 5043
>> Removing city A (0,5043)
 
remove 0 5044
>> Removing city A (0,5044)
 
remove 0 5045
>> Removing city A (0,5045)
 
remove 0 5046
>> Removing city A (0,5046)
 
remove 0 5047
>> Removing city A (0,5047)
 
remove 0 5048
>> Removing city A (0,5048)
 
remove 0 5049
>> Removing city A (0,5049)
 
remove 0 5050
>> Removing city A (0,5050)
 
remove 0 5051
>> Removing city A (0,5051)
 
remove 0 5052
>> Removing city A (0,5052)
 
remove 0 5053
>> Removing city A (0,5053)
 
remove 0 5054
>> Removing city A (0,5054)
 
remove 0 5055
>> Removing city A (0,5055)
 
remove 0 5056
>> Removing city A (0,5056)
 
remove 0 5057
>> Removing city A (0,5057)
 
remove 0 5058
>> Removing city A (0,5058)
 
remove 0 5059
>> Removing city A (0,5059)
 
remove 0 5060
>> Removing city A (0,5060)
 
remove 0 5061
>> Removing city A (0,5061)
 
remove 0 5062
>> Removing city A (0,5062)
 
remove 0 5063
>> Removing city A (0,5063)
 
remove 0 5064
>> Removing city A (0,5064)
 
remove 0 5065
>> Removing city A (0,5065)
 
remove 0 5066
>> Removing city A (0,5066)
 
remove 0 5067
>> Removing city A (0,5067)
 
remove 0 5068
>> Removing city A (0,5068)
 
remove 0 5069
>> Removing city A (0,5069)
 
remove 0 5070
>> Removing city A (0,5070)
 
remove 0 5071
>> Removing city A (0,5071)
 
remove 0 5072
>> Removing city A (0,5072)
 
remove 0 5073
>> Removing city A (0,5073)
 
remove 0 5074
>> Removing city A (0,5074)
 
remove 0 5075
>> Removing city A (0,5075)
 
remove 0 5076
>> Removing city A (0,5076)
 
remove 0 5077
>> Removing city A (0,5077)
 
remove 0 5078
>> Removing city A (0,5078)
 
remove 0 5079
>> Removing city A (0,5079)
 
remove 0 5080
>> Removing city A (0,5080)
 
remove 0 5081
>> Removing city A (0,5081)
 
remove 0 5082
>> Removing city A (0,5082)
 
remove 0 5083
>> Removing city A (0,5083)
 
remove 0 5084
>> Removing city A (0,5084)
 
remove 0 5085
>> Removing city A (0,5085)
 
remove 0 5086
>> Removing city A (0,5086)
 
remove 0 5087
>> Removing city A (0,5087)
 
remove 0 5088
>> Removing city A (0,5088)
 
remove 0 5089
>> Removing city A (0,5089)
 
remove 0 5090
>> Removing city A (0,5090)
 
remove 0 5091
>> Removing city A (0,5091)
 
remove 0 5092
>> Removing city A (0,5092)
 
remove 0 5093
>> Removing city A (0,5093)
 
remove 0 5094
>> Removing city A (0,5094)
 
remove 0 5095
>> Removing city A (0,5095)
 
remove 0 5096
>> Removing city A (0,5096)
 
remove 0 5097
>> Removing city A (0,5097)
 
remove 0 5098
>> Removing city A (0,5098)
 
remove 0 5099
>> Removing city A (0,5099)
 
remove 0 5100
>> Removing city A (0,5100)
 
remove 0 5101
>> Removing city A (0,5101)
 
remove 0 5102
>> Removing city A (0,5102)
 
remove 0 5103
>> Removing city A (0,5103)
 
remove 0 5104
>> Removing city A (0,5104)
 
remove 0 5105
>> Removing city A (0,5105)
 
remove 0 5106
>> Removing city A (0,5106)
 
remove 0 5107
>> Removing city A (0,5107)
 
remove 0 5108
>> Removing city A (0,5108)
 
remove 0 5109
>> Removing city A (0,5109)
 
remove 0 5110
>> Removing city A (0,5110)
 
remove 0 5111
>> Removing city A (0,5111)
 
remove 0 5112
>> Removing city A (0,5112)
 
remove 0 5113
>> Removing city A (0,5113)
 
remove 0 5114
>> Removing city A (0,5114)
 
remove 0 5115
>> Removing city A (0,5115)
 
remove 0 5116
>> Removing city A (0,5116)
 
remove 0 5117
>> Removing city A (0,5117)
 
remove 0 5118
>> Removing city A (0,5118)
 
remove 0 5119
>> Removing city A (0,5119)
 
remove 0 5120
>> Removing city A (0,5120)
 
remove 0 5121
>> Removing city A (0,5121)
 
remove 0 5122
>> Removing city A (0,5122)
 
remove 0 5123
>> Removing city A (0,5123)
 
remove 0 5124
>> Removing city A (0,5124)
 
remove 0 5125
>> Removing city A (0,5125)
 
remove 0 5126
>> Removing city A (0,5126)
 
remove 0 5127
>> Removing city A (0,5127)
 
remove 0 5128
>> Removing city A (0,5128)
 
remove 0 5129
>> Removing city A (0,5129)
 
remove 0 5130
>> Removing city A (0,5130)
 
remove 0 5131
>> Removing city A (0,5131)
 
remove 0 5132
>> Removing city A (0,5132)
 
remove 0 5133
>> Removing city A (0,5133)
 
remove 0 5134
>> Removing city A (0,5134)
 
remove 0 5135
>> Removing city A (0,5135)
 
remove 0 5136
>> Removing city A (0,5136)
 
remove 0 5137
>> Removing city A (0,5137)
 
remove 0 5138
>> Removing city A (0,5138)
 
remove 0 5139
>> Removing city A (0,5139)
 
remove 0 5140
>> Removing city A (0,5140)
 
remove 0 5141
>> Removing city A (0,5141)
 
remove 0 5142
>> Removing city A (0,5142)
 
remove 0 5143
>> Removing city A (0,5143)
 
remove 0 5144
>> Removing city A (0,5144)
 
remove 0 5145
>> Removing city A (0,5145)
 
remove 0 5146
>> Removing city A (0,5146)
 
remove 0 5147
>> Removing city A (0,5147)
 
remove 0 5148
>> Removing city A (0,5148)
 
remove 0 5149
>> Removing city A (0,5149)
 
remove 0 5150
>> Removing city A (0,5150)
 
remove 0 5151
>> Removing city A (0,5151)
 
remove 0 5152
>> Removing city A (0,5152)
 
remove 0 5153
>> Removing city A (0,5153)
 
remove 0 5154
>> Removing city A (0,5154)
 
remove 0 5155
>> Removing city A (0,5155)
 
remove 0 5156
>> Removing city A (0,5156)
 
remove 0 5157
>> Removing city A (0,5157)
 
remove 0 5158
>> Removing city A (0,5158)
 
remove 0 5159
>> Removing city A (0,5159)
 
remove 0 5160
>> Removing city A (0,5160)
 
remove 0 5161
>> Removing city A (0,5161)
 
remove 0 5162
>> Removing city A (0,5162)
 
remove 0 5163
>> Removing city A (0,5163)
 
remove 0 5164
>> Removing city A (0,5164)
 
remove 0 5165
>> Removing city A (0,5165)
 
remove 0 5166
>> Removing city A (0,5166)
 
remove 0 5167
>> Removing city A (0,5167)
 
remove 0 5168
>> Removing city A (0,5168)
 
remove 0 5169
>> Removing city A (0,5169)
 
remove 0 5170
>> Removing city A (0,5170)
 
remove 0 5171
>> Removing city A (0,5171)
 
remove 0 5172
>> Removing city A (0,5172)
 
remove 0 5173
>> Removing city A (0,5173)
 
remove 0 5174
>> Removing city A (0,5174)
 
remove 0 5175
>> Removing city A (0,5175)
 
remove 0 5176
>> Removing city A (0,5176)
 
remove 0 5177
>> Removing city A (0,5177)
 
remove 0 5178
>> Removing city A (0,5178)
 
remove 0 5179
>> Removing city A (0,5179)
 
remove 0 5180
>> Removing city A (0,5180)
 
remove 0 5181
>> Removing city A (0,5181)
 
remove 0 5182
>> Removing city A (0,5182)
 
remove 0 5183
>> Removing city A (0,5183)
 
remove 0 5184
>> Removing city A (0,5184)
 
remove 0 5185
>> Removing city A (0,5185)
 
remove 0 5186
>> Removing city A (0,5186)
 
remove 0 5187
>> Removing city A (0,5187)
 
remove 0 5188
>> Removing city A (0,5188)
 
remove 0 5189
>> Removing city A (0,5189)
 
remove 0 5190
>> Removing city A (0,5190)
 
remove 0 5191
>> Removing city A (0,5191)
 
remove 0 5192
>> Removing city A (0,5192)
 
remove 0 5193
>> Removing city A (0,5193)
 
remove 0 5194
>> Removing city A (0,5194)
 
remove 0 5195
>> Removing city A (0,5195)
 
remove 0 5196
>> Removing city A (0,5196)
 
remove 0 5197
>> Removing city A (0,5197)
 
remove 0 5198
>> Removing city A (0,5198)
 
remove 0 5199
>> Removing city A (0,5199)
 
remove 0 5200
>> Removing city A (0,5200)
 
remove 0 5201
>> Removing city A (0,5201)
 
remove 0 5202
>> Removing city A (0,5202)
 
remove 0 5203
>> Removing city A (0,5203)
 
remove 0 5204
>> Removing city A (0,5204)
 
remove 0 5205
>> Removing city A (0,5205)
 
remove 0 5206
>> Removing city A (0,5206)
 
remove 0 5207
>> Removing city A (0,5207)
 
remove 0 5208
>> Removing city A (0,5208)
 
remove 0 5209
>> Removing city A (0,5209)
 
remove 0 5210
>> Removing city A (0,5210)
 
remove 0 5211
>> Removing city A (0,5211)
 
remove 0 5212
>> Removing city A (0,5212)
 
remove 0 5213
>> Removing city A (0,5213)
 
remove 0 5214
>> Removing city A (0,5214)
 
remove 0 5215
>> Removing city A (0,5215)
 
remove 0 5216
>> Removing city A (0,5216)
 
remove 0 5217
>> Removing city A (0,5217)
 
remove 0 5218
>> Removing city A (0,5218)
 
remove 0 5219
>> Removing city A (0,5219)
 
remove 0 5220
>> Removing city A (0,5220)
 
remove 0 5221
>> Removing city A (0,5221)
 
remove 0 5222
>> Removing city A (0,5222)
 
remove 0 5223
>> Removing city A (0,5223)
 
remove 0 5224
>> Removing city A (0,5224)
 
remove 0 5225
>> Removing city A (0,5225)
 
remove 0 5226
>> Removing city A (0,5226)
 
remove 0 5227
>> Removing city A (0,5227)
 
remove 0 5228
>> Removing city A (0,5228)
 
remove 0 5229
>> Removing city A (0,5229)
 
remove 0 5230
>> Removing city A (0,5230)
 
remove 0 5231
>> Removing city A (0,5231)
 
remove 0 5232
>> Removing city A (0,5232)
 
remove 0 5233
>> Removing city A (0,5233)
 
remove 0 5234
>> Removing city A (0,5234)
 
remove 0 5235
>> Removing city A (0,5235)
 
remove 0 5236
>> Removing city A (0,5236)
 
remove 0 5237
>> Removing city A (0,5237)
 
remove 0 5238
>> Removing city A (0,5238)
 
remove 0 5239
>> Removing city A (0,5239)
 
remove 0 5240
>> Removing city A (0,5240)
 
remove 0 5241
>> Removing city A (0,5241)
 
remove 0 5242
>> Removing city A (0,5242)
 
remove 0 5243
>> Removing city A (0,5243)
 
remove 0 5244
>> Removing city A (0,5244)
 
remove 0 5245
>> Removing city A (0,5245)
 
remove 0 5246
>> Removing city A (0,5246)
 
remove 0 5247
>> Removing city A (0,5247)
 
remove 0 5248
>> Removing city A (0,5248)
 
remove 0 5249
>> Removing city A (0,5249)
 
remove 0 5250
>> Removing city A (0,5250)
 
remove 0 5251
>> Removing city A (0,5251)
 
remove 0 5252
>> Removing city A (0,5252)
 
remove 0 5253
>> Removing city A (0,5253)
 
remove 0 5254
>> Removing city A (0,5254)
 
remove 0 5255
>> Removing city A (0,5255)
 
remove 0 5256
>> Removing city A (0,5256)
 
remove 0 5257
>> Removing city A (0,5257)
 
remove 0 5258
>> Removing city A (0,5258)
 
remove 0 5259
>> Removing city A (0,5259)
 
remove 0 5260
>> Removing city A (0,5260)
 
remove 0 5261
>> Removing city A (0,5261)
 
remove 0 5262
>> Removing city A (0,5262)
 
remove 0 5263
>> Removing city A (0,5263)
 
remove 0 5264
>> Removing city A (0,5264)
 
remove 0 5265
>> Removing city A (0,5265)
 
remove 0 5266
>> Removing city A (0,5266)
 
remove 0 5267
>> Removing city A (0,5267)
 
remove 0 5268
>> Removing city A (0,5268)
 
remove 0 5269
>> Removing city A (0,5269)
 
remove 0 5270
>> Removing city A (0,5270)
 
remove 0 5271
>> Removing city A (0,5271)
 
remove 0 5272
>> Removing city A (0,5272)
 
remove 0 5273
>> Removing city A (0,5273)
 
remove 0 5274
>> Removing city A (0,5274)
 
remove 0 5275
>> Removing city A (0,5275)
 
remove 0 5276
>> Removing city A (0,5276)
 
remove 0 5277
>> Removing city A (0,5277)
 
remove 0 5278
>> Removing city A (0,5278)
 
remove 0 5279
>> Removing city A (0,5279)
 
remove 0 5280
>> Removing city A (0,5280)
 
remove 0 5281
>> Removing city A (0,5281)
 
remove 0 5282
>> Removing city A (0,5282)
 
remove 0 5283
>> Removing city A (0,5283)
 
remove 0 5284
>> Removing city A (0,5284)
 
remove 0 5285
>> Removing city A (0,5285)
 
remove 0 5286
>> Removing city A (0,5286)
 
remove 0 5287
>> Removing city A (0,5287)
 
remove 0 5288
>> Removing city A (0,5288)
 
remove 0 5289
>> Removing city A (0,5289)
 
remove 0 5290
>> Removing city A (0,5290)
 
remove 0 5291
>> Removing city A (0,5291)
 
remove 0 5292
>> Removing city A (0,5292)
 
remove 0 5293
>> Removing city A (0,5293)
 
remove 0 5294
>> Removing city A (0,5294)
 
remove 0 5295
>> Removing city A (0,5295)
 
remove 0 5296
>> Removing city A (0,5296)
 
remove 0 5297
>> Removing city A (0,5297)
 
remove 0 5298
>> Removing city A (0,5298)
 
remove 0 5299
>> Removing city A (0,5299)
 
remove 0 5300
>> Removing city A (0,5300)
 
remove 0 5301
>> Removing city A (0,5301)
 
remove 0 5302
>> Removing city A (0,5302)
 
remove 0 5303
>> Removing city A (0,5303)
 
remove 0 5304
>> Removing city A (0,5304)
 
remove 0 5305
>> Removing city A (0,5305)
 
remove 0 5306
>> Removing city A (0,5306)
 
remove 0 5307
>> Removing city A (0,5307)
 
remove 0 5308
>> Removing city A (0,5308)
 
remove 0 5309
>> Removing city A (0,5309)
 
remove 0 5310
>> Removing city A (0,5310)
 
remove 0 5311
>> Removing city A (0,5311)
 
remove 0 5312
>> Removing city A (0,5312)
 
remove 0 5313
>> Removing city A (0,5313)
 
remove 0 5314
>> Removing city A (0,5314)
 
remove 0 5315
>> Removing city A (0,5315)
 
remove 0 5316
>> Removing city A (0,5316)
 
remove 0 5317
>> Removing city A (0,5317)
 
remove 0 5318
>> Removing city A (0,5318)
 
remove 0 5319
>> Removing city A (0,5319)
 
remove 0 5320
>> Removing city A (0,5320)
 
remove 0 5321
>> Removing city A (0,5321)
 
remove 0 5322
>> Removing city A (0,5322)
 
remove 0 5323
>> Removing city A (0,5323)
 
remove 0 5324
>> Removing city A (0,5324)
 
remove 0 5325
>> Removing city A (0,5325)
 
remove 0 5326
>> Removing city A (0,5326)
 
remove 0 5327
>> Removing city A (0,5327)
 
remove 0 5328
>> Removing city A (0,5328)
 
remove 0 5329
>> Removing city A (0,5329)
 
remove 0 5330
>> Removing city A (0,5330)
 
remove 0 5331
>> Removing city A (0,5331)
 
remove 0 5332
>> Removing city A (0,5332)
 
remove 0 5333
>> Removing city A (0,5333)
 
remove 0 5334
>> Removing city A (0,5334)
 
remove 0 5335
>> Removing city A (0,5335)
 
remove 0 5336
>> Removing city A (0,5336)
 
remove 0 5337
>> Removing city A (0,5337)
 
remove 0 5338
>> Removing city A (0,5338)
 
remove 0 5339
>> Removing city A (0,5339)
 
remove 0 5340
>> Removing city A (0,5340)
 
remove 0 5341
>> Removing city A (0,5341)
 
remove 0 5342
>> Removing city A (0,5342)
 
remove 0 5343
>> Removing city A (0,5343)
 
remove 0 5344
>> Removing city A (0,5344)
 
remove 0 5345
>> Removing city A (0,5345)
 
remove 0 5346
>> Removing city A (0,5346)
 
remove 0 5347
>> Removing city A (0,5347)
 
remove 0 5348
>> Removing city A (0,5348)
 
remove 0 5349
>> Removing city A (0,5349)
 
remove 0 5350
>> Removing city A (0,5350)
 
remove 0 5351
>> Removing city A (0,5351)
 
remove 0 5352
>> Removing city A (0,5352)
 
remove 0 5353
>> Removing city A (0,5353)
 
remove 0 5354
>> Removing city A (0,5354)
 
remove 0 5355
>> Removing city A (0,5355)
 
remove 0 5356
>> Removing city A (0,5356)
 
remove 0 5357
>> Removing city A (0,5357)
 
remove 0 5358
>> Removing city A (0,5358)
 
remove 0 5359
>> Removing city A (0,5359)
 
remove 0 5360
>> Removing city A (0,5360)
 
remove 0 5361
>> Removing city A (0,5361)
 
remove 0 5362
>> Removing city A (0,5362)
 
remove 0 5363
>> Removing city A (0,5363)
 
remove 0 5364
>> Removing city A (0,5364)
 
remove 0 5365
>> Removing city A (0,5365)
 
remove 0 5366
>> Removing city A (0,5366)
 
remove 0 5367
>> Removing city A (0,5367)
 
remove 0 5368
>> Removing city A (0,5368)
 
remove 0 5369
>> Removing city A (0,5369)
 
remove 0 5370
>> Removing city A (0,5370)
 
remove 0 5371
>> Removing city A (0,5371)
 
remove 0 5372
>> Removing city A (0,5372)
 
remove 0 5373
>> Removing city A (0,5373)
 
remove 0 5374
>> Removing city A (0,5374)
 
remove 0 5375
>> Removing city A (0,5375)
 
remove 0 5376
>> Removing city A (0,5376)
 
remove 0 5377
>> Removing city A (0,5377)
 
remove 0 5378
>> Removing city A (0,5378)
 
remove 0 5379
>> Removing city A (0,5379)
 
remove 0 5380
>> Removing city A (0,5380)
 
remove 0 5381
>> Removing city A (0,5381)
 
remove 0 5382
>> Removing city A (0,5382)
 
remove 0 5383
>> Removing city A (0,5383)
 
remove 0 5384
>> Removing city A (0,5384)
 
remove 0 5385
>> Removing city A (0,5385)
 
remove 0 5386
>> Removing city A (0,5386)
 
remove 0 5387
>> Removing city A (0,5387)
 
remove 0 5388
>> Removing city A (0,5388)
 
remove 0 5389
>> Removing city A (0,5389)
 
remove 0 5390
>> Removing city A (0,5390)
 
remove 0 5391
>> Removing city A (0,5391)
 
remove 0 5392
>> Removing city A (0,5392)
 
remove 0 5393
>> Removing city A (0,5393)
 
remove 0 5394
>> Removing city A (0,5394)
 
remove 0 5395
>> Removing city A (0,5395)
 
remove 0 5396
>> Removing city A (0,5396)
 
remove 0 5397
>> Removing city A (0,5397)
 
remove 0 5398
>> Removing city A (0,5398)
 
remove 0 5399
>> Removing city A (0,5399)
 
remove 0 5400
>> Removing city A (0,5400)
 
remove 0 5401
>> Removing city A (0,5401)
 
remove 0 5402
>> Removing city A (0,5402)
 
remove 0 5403
>> Removing city A (0,5403)
 
remove 0 5404
>> Removing city A (0,5404)
 
remove 0 5405
>> Removing city A (0,5405)
 
remove 0 5406
>> Removing city A (0,5406)
 
remove 0 5407
>> Removing city A (0,5407)
 
remove 0 5408
>> Removing city A (0,5408)
 
remove 0 5409
>> Removing city A (0,5409)
 
remove 0 5410
>> Removing city A (0,5410)
 
remove 0 5411
>> Removing city A (0,5411)
 
remove 0 5412
>> Removing city A (0,5412)
 
remove 0 5413
>> Removing city A (0,5413)
 
remove 0 5414
>> Removing city A (0,5414)
 
remove 0 5415
>> Removing city A (0,5415)
 
remove 0 5416
>> Removing city A (0,5416)
 
remove 0 5417
>> Removing city A (0,5417)
 
remove 0 5418
>> Removing city A (0,5418)
 
remove 0 5419
>> Removing city A (0,5419)
 
remove 0 5420
>> Removing city A (0,5420)
 
remove 0 5421
>> Removing city A (0,5421)
 
remove 0 5422
>> Removing city A (0,5422)
 
remove 0 5423
>> Removing city A (0,5423)
 
remove 0 5424
>> Removing city A (0,5424)
 
remove 0 5425
>> Removing city A (0,5425)
 
remove 0 5426
>> Removing city A (0,5426)
 
remove 0 5427
>> Removing city A (0,5427)
 
remove 0 5428
>> Removing city A (0,5428)
 
remove 0 5429
>> Removing city A (0,5429)
 
remove 0 5430
>> Removing city A (0,5430)
 
remove 0 5431
>> Removing city A (0,5431)
 
remove 0 5432
>> Removing city A (0,5432)
 
remove 0 5433
>> Removing city A (0,5433)
 
remove 0 5434
>> Removing city A (0,5434)
 
remove 0 5435
>> Removing city A (0,5435)
 
remove 0 5436
>> Removing city A (0,5436)
 
remove 0 5437
>> Removing city A (0,5437)
 
remove 0 5438
>> Removing city A (0,5438)
 
remove 0 5439
>> Removing city A (0,5439)
 
remove 0 5440
>> Removing city A (0,5440)
 
remove 0 5441
>> Removing city A (0,5441)
 
remove 0 5442
>> Removing city A (0,5442)
 
remove 0 5443
>> Removing city A (0,5443)
 
remove 0 5444
>> Removing city A (0,5444)
 
remove 0 5445
>> Removing city A (0,5445)
 
remove 0 5446
>> Removing city A (0,5446)
 
remove 0 5447
>> Removing city A (0,5447)
 
remove 0 5448
>> Removing city A (0,5448)
 
remove 0 5449
>> Removing city A (0,5449)
 
remove 0 5450
>> Removing city A (0,5450)
 
remove 0 5451
>> Removing city A (0,5451)
 
remove 0 5452
>> Removing city A (0,5452)
 
remove 0 5453
>> Removing city A (0,5453)
 
remove 0 5454
>> Removing city A (0,5454)
 
remove 0 5455
>> Removing city A (0,5455)
 
remove 0 5456
>> Removing city A (0,5456)
 
remove 0 5457
>> Removing city A (0,5457)
 
remove 0 5458
>> Removing city A (0,5458)
 
remove 0 5459
>> Removing city A (0,5459)
 
remove 0 5460
>> Removing city A (0,5460)
 
remove 0 5461
>> Removing city A (0,5461)
 
remove 0 5462
>> Removing city A (0,5462)
 
remove 0 5463
>> Removing city A (0,5463)
 
remove 0 5464
>> Removing city A (0,5464)
 
remove 0 5465
>> Removing city A (0,5465)
 
remove 0 5466
>> Removing city A (0,5466)
 
remove 0 5467
>> Removing city A (0,5467)
 
remove 0 5468
>> Removing city A (0,5468)
 
remove 0 5469
>> Removing city A (0,5469)
 
remove 0 5470
>> Removing city A (0,5470)
 
remove 0 5471
>> Removing city A (0,5471)
 
remove 0 5472
>> Removing city A (0,5472)
 
remove 0 5473
>> Removing city A (0,5473)
 
remove 0 5474
>> Removing city A (0,5474)
 
remove 0 5475
>> Removing city A (0,5475)
 
remove 0 5476
>> Removing city A (0,5476)
 
remove 0 5477
>> Removing city A (0,5477)
 
remove 0 5478
>> Removing city A (0,5478)
 
remove 0 5479
>> Removing city A (0,5479)
 
remove 0 5480
>> Removing city A (0,5480)
 
remove 0 5481
>> Removing city A (0,5481)
 
remove 0 5482
>> Removing city A (0,5482)
 
remove 0 5483
>> Removing city A (0,5483)
 
remove 0 5484
>> Removing city A (0,5484)
 
remove 0 5485
>> Removing city A (0,5485)
 
remove 0 5486
>> Removing city A (0,5486)
 
remove 0 5487
>> Removing city A (0,5487)
 
remove 0 5488
>> Removing city A (0,5488)
 
remove 0 5489
>> Removing city A (0,5489)
 
remove 0 5490
>> Removing city A (0,5490)
 
remove 0 5491
>> Removing city A (0,5491)
 
remove 0 5492
>> Removing city A (0,5492)
 
remove 0 5493
>> Removing city A (0,5493)
 
remove 0 5494
>> Removing city A (0,5494)
 
remove 0 5495
>> Removing city A (0,5495)
 
remove 0 5496
>> Removing city A (0,5496)
 
remove 0 5497
>> Removing city A (0,5497)
 
remove 0 5498
>> Removing city A (0,5498)
 
remove 0 5499
>> Removing city A (0,5499)
 
remove 0 5500
>> Removing city A (0,5500)
 
remove 0 5501
>> Removing city A (0,5501)
 
remove 0 5502
>> Removing city A (0,5502)
 
remove 0 5503
>> Removing city A (0,5503)
 
remove 0 5504
>> Removing city A (0,5504)
 
remove 0 5505
>> Removing city A (0,5505)
 
remove 0 5506
>> Removing city A (0,5506)
 
remove 0 5507
>> Removing city A (0,5507)
 
remove 0 5508
>> Removing city A (0,5508)
 
remove 0 5509
>> Removing city A (0,5509)
 
remove 0 5510
>> Removing city A (0,5510)
 
remove 0 5511
>> Removing city A (0,5511)
 
remove 0 5512
>> Removing city A (0,5512)
 
remove 0 5513
>> Removing city A (0,5513)
 
remove 0 5514
>> Removing city A (0,5514)
 
remove 0 5515
>> Removing city A (0,5515)
 
remove 0 5516
>> Removing city A (0,5516)
 
remove 0 5517
>> Removing city A (0,5517)
 
remove 0 5518
>> Removing city A (0,5518)
 
remove 0 5519
>> Removing city A (0,5519)
 
remove 0 5520
>> Removing city A (0,5520)
 
remove 0 5521
>> Removing city A (0,5521)
 
remove 0 5522
>> Removing city A (0,5522)
 
remove 0 5523
>> Removing city A (0,5523)
 
remove 0 5524
>> Removing city A (0,5524)
 
remove 0 5525
>> Removing city A (0,5525)
 
remove 0 5526
>> Removing city A (0,5526)
 
remove 0 5527
>> Removing city A (0,5527)
 
remove 0 5528
>> Removing city A (0,5528)
 
remove 0 5529
>> Removing city A (0,5529)
 
remove 0 5530
>> Removing city A (0,5530)
 
remove 0 5531
>> Removing city A (0,5531)
 
remove 0 5532
>> Removing city A (0,5532)
 
remove 0 5533
>> Removing city A (0,5533)
 
remove 0 5534
>> Removing city A (0,5534)
 
remove 0 5535
>> Removing city A (0,5535)
 
remove 0 5536
>> Removing city A (0,5536)
 
remove 0 5537
>> Removing city A (0,5537)
 
remove 0 5538
>> Removing city A (0,5538)
 
remove 0 5539
>> Removing city A (0,5539)
 
remove 0 5540
>> Removing city A (0,5540)
 
remove 0 5541
>> Removing city A (0,5541)
 
remove 0 5542
>> Removing city A (0,5542)
 
remove 0 5543
>> Removing city A (0,5543)
 
remove 0 5544
>> Removing city A (0,5544)
 
remove 0 5545
>> Removing city A (0,5545)
 
remove 0 5546
>> Removing city A (0,5546)
 
remove 0 5547
>> Removing city A (0,5547)
 
remove 0 5548
>> Removing city A (0,5548)
 
remove 0 5549
>> Removing city A (0,5549)
 
remove 0 5550
>> Removing city A (0,5550)
 
remove 0 5551
>> Removing city A (0,5551)
 
remove 0 5552
>> Removing city A (0,5552)
 
remove 0 5553
>> Removing city A (0,5553)
 
remove 0 5554
>> Removing city A (0,5554)
 
remove 0 5555
>> Removing city A (0,5555)
 
remove 0 5556
>> Removing city A (0,5556)
 
remove 0 5557
>> Removing city A (0,5557)
 
remove 0 5558
>> Removing city A (0,5558)
 
remove 0 5559
>> Removing city A (0,5559)
 
remove 0 5560
>> Removing city A (0,5560)
 
remove 0 5561
>> Removing city A (0,5561)
 
remove 0 5562
>> Removing city A (0,5562)
 
remove 0 5563
>> Removing city A (0,5563)
 
remove 0 5564
>> Removing city A (0,5564)
 
remove 0 5565
>> Removing city A (0,5565)
 
remove 0 5566
>> Removing city A (0,5566)
 
remove 0 5567
>> Removing city A (0,5567)
 
remove 0 5568
>> Removing city A (0,5568)
 
remove 0 5569
>> Removing city A (0,5569)
 
remove 0 5570
>> Removing city A (0,5570)
 
remove 0 5571
>> Removing city A (0,5571)
 
remove 0 5572
>> Removing city A (0,5572)
 
remove 0 5573
>> Removing city A (0,5573)
 
remove 0 5574
>> Removing city A (0,5574)
 
remove 0 5575
>> Removing city A (0,5575)
 
remove 0 5576
>> Removing city A (0,5576)
 
remove 0 5577
>> Removing city A (0,5577)
 
remove 0 5578
>> Removing city A (0,5578)
 
remove 0 5579
>> Removing city A (0,5579)
 
remove 0 5580
>> Removing city A (0,5580)
 
remove 0 5581
>> Removing city A (0,5581)
 
remove 0 5582
>> Removing city A (0,5582)
 
remove 0 5583
>> Removing city A (0,5583)
 
remove 0 5584
>> Removing city A (0,5584)
 
remove 0 5585
>> Removing city A (0,5585)
 
remove 0 5586
>> Removing city A (0,5586)
 
remove 0 5587
>> Removing city A (0,5587)
 
remove 0 5588
>> Removing city A (0,5588)
 
remove 0 5589
>> Removing city A (0,5589)
 
remove 0 5590
>> Removing city A (0,5590)
 
remove 0 5591
>> Removing city A (0,5591)
 
remove 0 5592
>> Removing city A (0,5592)
 
remove 0 5593
>> Removing city A (0,5593)
 
remove 0 5594
>> Removing city A (0,5594)
 
remove 0 5595
>> Removing city A (0,5595)
 
remove 0 5596
>> Removing city A (0,5596)
 
remove 0 5597
>> Removing city A (0,5597)
 
remove 0 5598
>> Removing city A (0,5598)
 
remove 0 5599
>> Removing city A (0,5599)
 
remove 0 5600
>> Removing city A (0,5600)
 
remove 0 5601
>> Removing city A (0,5601)
 
remove 0 5602
>> Removing city A (0,5602)
 
remove 0 5603
>> Removing city A (0,5603)
 
remove 0 5604
>> Removing city A (0,5604)
 
remove 0 5605
>> Removing city A (0,5605)
 
remove 0 5606
>> Removing city A (0,5606)
 
remove 0 5607
>> Removing city A (0,5607)
 
remove 0 5608
>> Removing city A (0,5608)
 
remove 0 5609
>> Removing city A (0,5609)
 
remove 0 5610
>> Removing city A (0,5610)
 
remove 0 5611
>> Removing city A (0,5611)
 
remove 0 5612
>> Removing city A (0,5612)
 
remove 0 5613
>> Removing city A (0,5613)
 
remove 0 5614
>> Removing city A (0,5614)
 
remove 0 5615
>> Removing city A (0,5615)
 
remove 0 5616
>> Removing city A (0,5616)
 
remove 0 5617
>> Removing city A (0,5617)
 
remove 0 5618
>> Removing city A (0,5618)
 
remove 0 5619
>> Removing city A (0,5619)
 
remove 0 5620
>> Removing city A (0,5620)
 
remove 0 5621
>> Removing city A (0,5621)
 
remove 0 5622
>> Removing city A (0,5622)
 
remove 0 5623
>> Removing city A (0,5623)
 
remove 0 5624
>> Removing city A (0,5624)
 
remove 0 5625
>> Removing city A (0,5625)
 
remove 0 5626
>> Removing city A (0,5626)
 
remove 0 5627
>> Removing city A (0,5627)
 
remove 0 5628
>> Removing city A (0,5628)
 
remove 0 5629
>> Removing city A (0,5629)
 
remove 0 5630
>> Removing city A (0,5630)
 
remove 0 5631
>> Removing city A (0,5631)
 
remove 0 5632
>> Removing city A (0,5632)
 
remove 0 5633
>> Removing city A (0,5633)
 
remove 0 5634
>> Removing city A (0,5634)
 
remove 0 5635
>> Removing city A (0,5635)
 
remove 0 5636
>> Removing city A (0,5636)
 
remove 0 5637
>> Removing city A (0,5637)
 
remove 0 5638
>> Removing city A (0,5638)
 
remove 0 5639
>> Removing city A (0,5639)
 
remove 0 5640
>> Removing city A (0,5640)
 
remove 0 5641
>> Removing city A (0,5641)
 
remove 0 5642
>> Removing city A (0,5642)
 
remove 0 5643
>> Removing city A (0,5643)
 
remove 0 5644
>> Removing city A (0,5644)
 
remove 0 5645
>> Removing city A (0,5645)
 
remove 0 5646
>> Removing city A (0,5646)
 
remove 0 5647
>> Removing city A (0,5647)
 
remove 0 5648
>> Removing city A (0,5648)
 
remove 0 5649
>> Removing city A (0,5649)
 
remove 0 5650
>> Removing city A (0,5650)
 
remove 0 5651
>> Removing city A (0,5651)
 
remove 0 5652
>> Removing city A (0,5652)
 
remove 0 5653
>> Removing city A (0,5653)
 
remove 0 5654
>> Removing city A (0,5654)
 
remove 0 5655
>> Removing city A (0,5655)
 
remove 0 5656
>> Removing city A (0,5656)
 
remove 0 5657
>> Removing city A (0,5657)
 
remove 0 5658
>> Removing city A (0,5658)
 
remove 0 5659
>> Removing city A (0,5659)
 
remove 0 5660
>> Removing city A (0,5660)
 
remove 0 5661
>> Removing city A (0,5661)
 
remove 0 5662
>> Removing city A (0,5662)
 
remove 0 5663
>> Removing city A (0,5663)
 
remove 0 5664
>> Removing city A (0,5664)
 
remove 0 5665
>> Removing city A (0,5665)
 
remove 0 5666
>> Removing city A (0,5666)
 
remove 0 5667
>> Removing city A (0,5667)
 
remove 0 5668
>> Removing city A (0,5668)
 
remove 0 5669
>> Removing city A (0,5669)
 
remove 0 5670
>> Removing city A (0,5670)
 
remove 0 5671
>> Removing city A (0,5671)
 
remove 0 5672
>> Removing city A (0,5672)
 
remove 0 5673
>> Removing city A (0,5673)
 
remove 0 5674
>> Removing city A (0,5674)
 
remove 0 5675
>> Removing city A (0,5675)
 
remove 0 5676
>> Removing city A (0,5676)
 
remove 0 5677
>> Removing city A (0,5677)
 
remove 0 5678
>> Removing city A (0,5678)
 
remove 0 5679
>> Removing city A (0,5679)
 
remove 0 5680
>> Removing city A (0,5680)
 
remove 0 5681
>> Removing city A (0,5681)
 
remove 0 5682
>> Removing city A (0,5682)
 
remove 0 5683
>> Removing city A (0,5683)
 
remove 0 5684
>> Removing city A (0,5684)
 
remove 0 5685
>> Removing city A (0,5685)
 
remove 0 5686
>> Removing city A (0,5686)
 
remove 0 5687
>> Removing city A (0,5687)
 
remove 0 5688
>> Removing city A (0,5688)
 
remove 0 5689
>> Removing city A (0,5689)
 
remove 0 5690
>> Removing city A (0,5690)
 
remove 0 5691
>> Removing city A (0,5691)
 
remove 0 5692
>> Removing city A (0,5692)
 
remove 0 5693
>> Removing city A (0,5693)
 
remove 0 5694
>> Removing city A (0,5694)
 
remove 0 5695
>> Removing city A (0,5695)
 
remove 0 5696
>> Removing city A (0,5696)
 
remove 0 5697
>> Removing city A (0,5697)
 
remove 0 5698
>> Removing city A (0,5698)
 
remove 0 5699
>> Removing city A (0,5699)
 
remove 0 5700
>> Removing city A (0,5700)
 
remove 0 5701
>> Removing city A (0,5701)
 
remove 0 5702
>> Removing city A (0,5702)
 
remove 0 5703
>> Removing city A (0,5703)
 
remove 0 5704
>> Removing city A (0,5704)
 
remove 0 5705
>> Removing city A (0,5705)
 
remove 0 5706
>> Removing city A (0,5706)
 
remove 0 5707
>> Removing city A (0,5707)
 
remove 0 5708
>> Removing city A (0,5708)
 
remove 0 5709
>> Removing city A (0,5709)
 
remove 0 5710
>> Removing city A (0,5710)
 
remove 0 5711
>> Removing city A (0,5711)
 
remove 0 5712
>> Removing city A (0,5712)
 
remove 0 5713
>> Removing city A (0,5713)
 
remove 0 5714
>> Removing city A (0,5714)
 
remove 0 5715
>> Removing city A (0,5715)
 
remove 0 5716
>> Removing city A (0,5716)
 
remove 0 5717
>> Removing city A (0,5717)
 
remove 0 5718
>> Removing city A (0,5718)
 
remove 0 5719
>> Removing city A (0,5719)
 
remove 0 5720
>> Removing city A (0,5720)
 
remove 0 5721
>> Removing city A (0,5721)
 
remove 0 5722
>> Removing city A (0,5722)
 
remove 0 5723
>> Removing city A (0,5723)
 
remove 0 5724
>> Removing city A (0,5724)
 
remove 0 5725
>> Removing city A (0,5725)
 
remove 0 5726
>> Removing city A (0,5726)
 
remove 0 5727
>> Removing city A (0,5727)
 
remove 0 5728
>> Removing city A (0,5728)
 
remove 0 5729
>> Removing city A (0,5729)
 
remove 0 5730
>> Removing city A (0,5730)
 
remove 0 5731
>> Removing city A (0,5731)
 
remove 0 5732
>> Removing city A (0,5732)
 
remove 0 5733
>> Removing city A (0,5733)
 
remove 0 5734
>> Removing city A (0,5734)
 
remove 0 5735
>> Removing city A (0,5735)
 
remove 0 5736
>> Removing city A (0,5736)
 
remove 0 5737
>> Removing city A (0,5737)
 
remove 0 5738
>> Removing city A (0,5738)
 
remove 0 5739
>> Removing city A (0,5739)
 
remove 0 5740
>> Removing city A (0,5740)
 
remove 0 5741
>> Removing city A (0,5741)
 
remove 0 5742
>> Removing city A (0,5742)
 
remove 0 5743
>> Removing city A (0,5743)
 
remove 0 5744
>> Removing city A (0,5744)
 
remove 0 5745
>> Removing city A (0,5745)
 
remove 0 5746
>> Removing city A (0,5746)
 
remove 0 5747
>> Removing city A (0,5747)
 
remove 0 5748
>> Removing city A (0,5748)
 
remove 0 5749
>> Removing city A (0,5749)
 
remove 0 5750
>> Removing city A (0,5750)
 
remove 0 5751
>> Removing city A (0,5751)
 
remove 0 5752
>> Removing city A (0,5752)
 
remove 0 5753
>> Removing city A (0,5753)
 
remove 0 5754
>> Removing city A (0,5754)
 
remove 0 5755
>> Removing city A (0,5755)
 
remove 0 5756
>> Removing city A (0,5756)
 
remove 0 5757
>> Removing city A (0,5757)
 
remove 0 5758
>> Removing city A (0,5758)
 
remove 0 5759
>> Removing city A (0,5759)
 
remove 0 5760
>> Removing city A (0,5760)
 
remove 0 5761
>> Removing city A (0,5761)
 
remove 0 5762
>> Removing city A (0,5762)
 
remove 0 5763
>> Removing city A (0,5763)
 
remove 0 5764
>> Removing city A (0,5764)
 
remove 0 5765
>> Removing city A (0,5765)
 
remove 0 5766
>> Removing city A (0,5766)
 
remove 0 5767
>> Removing city A (0,5767)
 
remove 0 5768
>> Removing city A (0,5768)
 
remove 0 5769
>> Removing city A (0,5769)
 
remove 0 5770
>> Removing city A (0,5770)
 
remove 0 5771
>> Removing city A (0,5771)
 
remove 0 5772
>> Removing city A (0,5772)
 
remove 0 5773
>> Removing city A (0,5773)
 
remove 0 5774
>> Removing city A (0,5774)
 
remove 0 5775
>> Removing city A (0,5775)
 
remove 0 5776
>> Removing city A (0,5776)
 
remove 0 5777
>> Removing city A (0,5777)
 
remove 0 5778
>> Removing city A (0,5778)
 
remove 0 5779
>> Removing city A (0,5779)
 
remove 0 5780
>> Removing city A (0,5780)
 
remove 0 5781
>> Removing city A (0,5781)
 
remove 0 5782
>> Removing city A (0,5782)
 
remove 0 5783
>> Removing city A (0,5783)
 
remove 0 5784
>> Removing city A (0,5784)
 
remove 0 5785
>> Removing city A (0,5785)
 
remove 0 5786
>> Removing city A (0,5786)
 
remove 0 5787
>> Removing city A (0,5787)
 
remove 0 5788
>> Removing city A (0,5788)
 
remove 0 5789
>> Removing city A (0,5789)
 
remove 0 5790
>> Removing city A (0,5790)
 
remove 0 5791
>> Removing city A (0,5791)
 
remove 0 5792
>> Removing city A (0,5792)
 
remove 0 5793
>> Removing city A (0,5793)
 
remove 0 5794
>> Removing city A (0,5794)
 
remove 0 5795
>> Removing city A (0,5795)
 
remove 0 5796
>> Removing city A (0,5796)
 
remove 0 5797
>> Removing city A (0,5797)
 
remove 0 5798
>> Removing city A (0,5798)
 
remove 0 5799
>> Removing city A (0,5799)
 
remove 0 5800
>> Removing city A (0,5800)
 
remove 0 5801
>> Removing city A (0,5801)
 
remove 0 5802
>> Removing city A (0,5802)
 
remove 0 5803
>> Removing city A (0,5803)
 
remove 0 5804
>> Removing city A (0,5804)
 
remove 0 5805
>> Removing city A (0,5805)
 
remove 0 5806
>> Removing city A (0,5806)
 
remove 0 5807
>> Removing city A (0,5807)
 
remove 0 5808
>> Removing city A (0,5808)
 
remove 0 5809
>> Removing city A (0,5809)
 
remove 0 5810
>> Removing city A (0,5810)
 
remove 0 5811
>> Removing city A (0,5811)
 
remove 0 5812
>> Removing city A (0,5812)
 
remove 0 5813
>> Removing city A (0,5813)
 
remove 0 5814
>> Removing city A (0,5814)
 
remove 0 5815
>> Removing city A (0,5815)
 
remove 0 5816
>> Removing city A (0,5816)
 
remove 0 5817
>> Removing city A (0,5817)
 
remove 0 5818
>> Removing city A (0,5818)
 
remove 0 5819
>> Removing city A (0,5819)
 
remove 0 5820
>> Removing city A (0,5820)
 
remove 0 5821
>> Removing city A (0,5821)
 
remove 0 5822
>> Removing city A (0,5822)
 
remove 0 5823
>> Removing city A (0,5823)
 
remove 0 5824
>> Removing city A (0,5824)
 
remove 0 5825
>> Removing city A (0,5825)
 
remove 0 5826
>> Removing city A (0,5826)
 
remove 0 5827
>> Removing city A (0,5827)
 
remove 0 5828
>> Removing city A (0,5828)
 
remove 0 5829
>> Removing city A (0,5829)
 
remove 0 5830
>> Removing city A (0,5830)
 
remove 0 5831
>> Removing city A (0,5831)
 
remove 0 5832
>> Removing city A (0,5832)
 
remove 0 5833
>> Removing city A (0,5833)
 
remove 0 5834
>> Removing city A (0,5834)
 
remove 0 5835
>> Removing city A (0,5835)
 
remove 0 5836
>> Removing city A (0,5836)
 
remove 0 5837
>> Removing city A (0,5837)
 
remove 0 5838
>> Removing city A (0,5838)
 
remove 0 5839
>> Removing city A (0,5839)
 
remove 0 5840
>> Removing city A (0,5840)
 
remove 0 5841
>> Removing city A (0,5841)
 
remove 0 5842
>> Removing city A (0,5842)
 
remove 0 5843
>> Removing city A (0,5843)
 
remove 0 5844
>> Removing city A (0,5844)
 
remove 0 5845
>> Removing city A (0,5845)
 
remove 0 5846
>> Removing city A (0,5846)
 
remove 0 5847
>> Removing city A (0,5847)
 
remove 0 5848
>> Removing city A (0,5848)
 
remove 0 5849
>> Removing city A (0,5849)
 
remove 0 5850
>> Removing city A (0,5850)
 
remove 0 5851
>> Removing city A (0,5851)
 
remove 0 5852
>> Removing city A (0,5852)
 
remove 0 5853
>> Removing city A (0,5853)
 
remove 0 5854
>> Removing city A (0,5854)
 
remove 0 5855
>> Removing city A (0,5855)
 
remove 0 5856
>> Removing city A (0,5856)
 
remove 0 5857
>> Removing city A (0,5857)
 
remove 0 5858
>> Removing city A (0,5858)
 
remove 0 5859
>> Removing city A (0,5859)
 
remove 0 5860
>> Removing city A (0,5860)
 
remove 0 5861
>> Removing city A (0,5861)
 
remove 0 5862
>> Removing city A (0,5862)
 
remove 0 5863
>> Removing city A (0,5863)
 
remove 0 5864
>> Removing city A (0,5864)
 
remove 0 5865
>> Removing city A (0,5865)
 
remove 0 5866
>> Removing city A (0,5866)
 
remove 0 5867
>> Removing city A (0,5867)
 
remove 0 5868
>> Removing city A (0,5868)
 
remove 0 5869
>> Removing city A (0,5869)
 
remove 0 5870
>> Removing city A (0,5870)
 
remove 0 5871
>> Removing city A (0,5871)
 
remove 0 5872
>> Removing city A (0,5872)
 
remove 0 5873
>> Removing city A (0,5873)
 
remove 0 5874
>> Removing city A (0,5874)
 
remove 0 5875
>> Removing city A (0,5875)
 
remove 0 5876
>> Removing city A (0,5876)
 
remove 0 5877
>> Removing city A (0,5877)
 
remove 0 5878
>> Removing city A (0,5878)
 
remove 0 5879
>> Removing city A (0,5879)
 
remove 0 5880
>> Removing city A (0,5880)
 
remove 0 5881
>> Removing city A (0,5881)
 
remove 0 5882
>> Removing city A (0,5882)
 
remove 0 5883
>> Removing city A (0,5883)
 
remove 0 5884
>> Removing city A (0,5884)
 
remove 0 5885
>> Removing city A (0,5885)
 
remove 0 5886
>> Removing city A (0,5886)
 
remove 0 5887
>> Removing city A (0,5887)
 
remove 0 5888
>> Removing city A (0,5888)
 
remove 0 5889
>> Removing city A (0,5889)
 
remove 0 5890
>> Removing city A (0,5890)
 
remove 0 5891
>> Removing city A (0,5891)
 
remove 0 5892
>> Removing city A (0,5892)
 
remove 0 5893
>> Removing city A (0,5893)
 
remove 0 5894
>> Removing city A (0,5894)
 
remove 0 5895
>> Removing city A (0,5895)
 
remove 0 5896
>> Removing city A (0,5896)
 
remove 0 5897
>> Removing city A (0,5897)
 
remove 0 5898
>> Removing city A (0,5898)
 
remove 0 5899
>> Removing city A (0,5899)
 
remove 0 5900
>> Removing city A (0,5900)
 
remove 0 5901
>> Removing city A (0,5901)
 
remove 0 5902
>> Removing city A (0,5902)
 
remove 0 5903
>> Removing city A (0,5903)
 
remove 0 5904
>> Removing city A (0,5904)
 
remove 0 5905
>> Removing city A (0,5905)
 
remove 0 5906
>> Removing city A (0,5906)
 
remove 0 5907
>> Removing city A (0,5907)
 
remove 0 5908
>> Removing city A (0,5908)
 
remove 0 5909
>> Removing city A (0,5909)
 
remove 0 5910
>> Removing city A (0,5910)
 
remove 0 5911
>> Removing city A (0,5911)
 
remove 0 5912
>> Removing city A (0,5912)
 
remove 0 5913
>> Removing city A (0,5913)
 
remove 0 5914
>> Removing city A (0,5914)
 
remove 0 5915
>> Removing city A (0,5915)
 
remove 0 5916
>> Removing city A (0,5916)
 
remove 0 5917
>> Removing city A (0,5917)
 
remove 0 5918
>> Removing city A (0,5918)
 
remove 0 5919
>> Removing city A (0,5919)
 
remove 0 5920
>> Removing city A (0,5920)
 
remove 0 5921
>> Removing city A (0,5921)
 
remove 0 5922
>> Removing city A (0,5922)
 
remove 0 5923
>> Removing city A (0,5923)
 
remove 0 5924
>> Removing city A (0,5924)
 
remove 0 5925
>> Removing city A (0,5925)
 
remove 0 5926
>> Removing city A (0,5926)
 
remove 0 5927
>> Removing city A (0,5927)
 
remove 0 5928
>> Removing city A (0,5928)
 
remove 0 5929
>> Removing city A (0,5929)
 
remove 0 5930
>> Removing city A (0,5930)
 
remove 0 5931
>> Removing city A (0,5931)
 
remove 0 5932
>> Removing city A (0,5932)
 
remove 0 5933
>> Removing city A (0,5933)
 
remove 0 5934
>> Removing city A (0,5934)
 
remove 0 5935
>> Removing city A (0,5935)
 
remove 0 5936
>> Removing city A (0,5936)
 
remove 0 5937
>> Removing city A (0,5937)
 
remove 0 5938
>> Removing city A (0,5938)
 
remove 0 5939
>> Removing city A (0,5939)
 
remove 0 5940
>> Removing city A (0,5940)
 
remove 0 5941
>> Removing city A (0,5941)
 
remove 0 5942
>> Removing city A (0,5942)
 
remove 0 5943
>> Removing city A (0,5943)
 
remove 0 5944
>> Removing city A (0,5944)
 
remove 0 5945
>> Removing city A (0,5945)
 
remove 0 5946
>> Removing city A (0,5946)
 
remove 0 5947
>> Removing city A (0,5947)
 
remove 0 5948
>> Removing city A (0,5948)
 
remove 0 5949
>> Removing city A (0,5949)
 
remove 0 5950
>> Removing city A (0,5950)
 
remove 0 5951
>> Removing city A (0,5951)
 
remove 0 5952
>> Removing city A (0,5952)
 
remove 0 5953
>> Removing city A (0,5953)
 
remove 0 5954
>> Removing city A (0,5954)
 
remove 0 5955
>> Removing city A (0,5955)
 
remove 0 5956
>> Removing city A (0,5956)
 
remove 0 5957
>> Removing city A (0,5957)
 
remove 0 5958
>> Removing city A (0,5958)
 
remove 0 5959
>> Removing city A (0,5959)
 
remove 0 5960
>> Removing city A (0,5960)
 
remove 0 5961
>> Removing city A (0,5961)
 
remove 0 5962
>> Removing city A (0,5962)
 
remove 0 5963
>> Removing city A (0,5963)
 
remove 0 5964
>> Removing city A (0,5964)
 
remove 0 5965
>> Removing city A (0,5965)
 
remove 0 5966
>> Removing city A (0,5966)
 
remove 0 5967
>> Removing city A (0,5967)
 
remove 0 5968
>> Removing city A (0,5968)
 
remove 0 5969
>> Removing city A (0,5969)
 
remove 0 5970
>> Removing city A (0,5970)
 
remove 0 5971
>> Removing city A (0,5971)
 
remove 0 5972
>> Removing city A (0,5972)
 
remove 0 5973
>> Removing city A (0,5973)
 
remove 0 5974
>> Removing city A (0,5974)
 
remove 0 5975
>> Removing city A (0,5975)
 
remove 0 5976
>> Removing city A (0,5976)
 
remove 0 5977
>> Removing city A (0,5977)
 
remove 0 5978
>> Removing city A (0,5978)
 
remove 0 5979
>> Removing city A (0,5979)
 
remove 0 5980
>> Removing city A (0,5980)
 
remove 0 5981
>> Removing city A (0,5981)
 
remove 0 5982
>> Removing city A (0,5982)
 
remove 0 5983
>> Removing city A (0,5983)
 
remove 0 5984
>> Removing city A (0,5984)
 
remove 0 5985
>> Removing city A (0,5985)
 
remove 0 5986
>> Removing city A (0,5986)
 
remove 0 5987
>> Removing city A (0,5987)
 
remove 0 5988
>> Removing city A (0,5988)
 
remove 0 5989
>> Removing city A (0,5989)
 
remove 0 5990
>> Removing city A (0,5990)
 
remove 0 5991
>> Removing city A (0,5991)
 
remove 0 5992
>> Removing city A (0,5992)
 
remove 0 5993
>> Removing city A (0,5993)
 
remove 0 5994
>> Removing city A (0,5994)
 
remove 0 5995
>> Removing city A (0,5995)
 
remove 0 5996
>> Removing city A (0,5996)
 
remove 0 5997
>> Removing city A (0,5997)
 
remove 0 5998
>> Removing city A (0,5998)
 
remove 0 5999
>> Removing city A (0,5999)
 
remove 0 6000
>> Removing city A (0,6000)
 
remove 0 6001
>> Removing city A (0,6001)
 
remove 0 6002
>> Removing city A (0,6002)
 
remove 0 6003
>> Removing city A (0,6003)
 
remove 0 6004
>> Removing city A (0,6004)
 
remove 0 6005
>> Removing city A (0,6005)
 
remove 0 6006
>> Removing city A (0,6006)
 
remove 0 6007
>> Removing city A (0,6007)
 
remove 0 6008
>> Removing city A (0,6008)
 
remove 0 6009
>> Removing city A (0,6009)
 
remove 0 6010
>> Removing city A (0,6010)
 
remove 0 6011
>> Removing city A (0,6011)
 
remove 0 6012
>> Removing city A (0,6012)
 
remove 0 6013
>> Removing city A (0,6013)
 
remove 0 6014
>> Removing city A (0,6014)
 
remove 0 6015
>> Removing city A (0,6015)
 
remove 0 6016
>> Removing city A (0,6016)
 
remove 0 6017
>> Removing city A (0,6017)
 
remove 0 6018
>> Removing city A (0,6018)
 
remove 0 6019
>> Removing city A (0,6019)
 
remove 0 6020
>> Removing city A (0,6020)
 
remove 0 6021
>> Removing city A (0,6021)
 
remove 0 6022
>> Removing city A (0,6022)
 
remove 0 6023
>> Removing city A (0,6023)
 
remove 0 6024
>> Removing city A (0,6024)
 
remove 0 6025
>> Removing city A (0,6025)
 
remove 0 6026
>> Removing city A (0,6026)
 
remove 0 6027
>> Removing city A (0,6027)
 
remove 0 6028
>> Removing city A (0,6028)
 
remove 0 6029
>> Removing city A (0,6029)
 
remove 0 6030
>> Removing city A (0,6030)
 
remove 0 6031
>> Removing city A (0,6031)
 
remove 0 6032
>> Removing city A (0,6032)
 
remove 0 6033
>> Removing city A (0,6033)
 
remove 0 6034
>> Removing city A (0,6034)
 
remove 0 6035
>> Removing city A (0,6035)
 
remove 0 6036
>> Removing city A (0,6036)
 
remove 0 6037
>> Removing city A (0,6037)
 
remove 0 6038
>> Removing city A (0,6038)
 
remove 0 6039
>> Removing city A (0,6039)
 
remove 0 6040
>> Removing city A (0,6040)
 
remove 0 6041
>> Removing city A (0,6041)
 
remove 0 6042
>> Removing city A (0,6042)
 
remove 0 6043
>> Removing city A (0,6043)
 
remove 0 6044
>> Removing city A (0,6044)
 
remove 0 6045
>> Removing city A (0,6045)
 
remove 0 6046
>> Removing city A (0,6046)
 
remove 0 6047
>> Removing city A (0,6047)
 
remove 0 6048
>> Removing city A (0,6048)
 
remove 0 6049
>> Removing city A (0,6049)
 
remove 0 6050
>> Removing city A (0,6050)
 
remove 0 6051
>> Removing city A (0,6051)
 
remove 0 6052
>> Removing city A (0,6052)
 
remove 0 6053
>> Removing city A (0,6053)
 
remove 0 6054
>> Removing city A (0,6054)
 
remove 0 6055
>> Removing city A (0,6055)
 
remove 0 6056
>> Removing city A (0,6056)
 
remove 0 6057
>> Removing city A (0,6057)
 
remove 0 6058
>> Removing city A (0,6058)
 
remove 0 6059
>> Removing city A (0,6059)
 
remove 0 6060
>> Removing city A (0,6060)
 
remove 0 6061
>> Removing city A (0,6061)
 
remove 0 6062
>> Removing city A (0,6062)
 
remove 0 6063
>> Removing city A (0,6063)
 
remove 0 6064
>> Removing city A (0,6064)
 
remove 0 6065
>> Removing city A (0,6065)
 
remove 0 6066
>> Removing city A (0,6066)
 
remove 0 6067
>> Removing city A (0,6067)
 
remove 0 6068
>> Removing city A (0,6068)
 
remove 0 6069
>> Removing city A (0,6069)
 
remove 0 6070
>> Removing city A (0,6070)
 
remove 0 6071
>> Removing city A (0,6071)
 
remove 0 6072
>> Removing city A (0,6072)
 
remove 0 6073
>> Removing city A (0,6073)
 
remove 0 6074
>> Removing city A (0,6074)
 
remove 0 6075
>> Removing city A (0,6075)
 
remove 0 6076
>> Removing city A (0,6076)
 
remove 0 6077
>> Removing city A (0,6077)
 
remove 0 6078
>> Removing city A (0,6078)
 
remove 0 6079
>> Removing city A (0,6079)
 
remove 0 6080
>> Removing city A (0,6080)
 
remove 0 6081
>> Removing city A (0,6081)
 
remove 0 6082
>> Removing city A (0,6082)
 
remove 0 6083
>> Removing city A (0,6083)
 
remove 0 6084
>> Removing city A (0,6084)
 
remove 0 6085
>> Removing city A (0,6085)
 
remove 0 6086
>> Removing city A (0,6086)
 
remove 0 6087
>> Removing city A (0,6087)
 
remove 0 6088
>> Removing city A (0,6088)
 
remove 0 6089
>> Removing city A (0,6089)
 
remove 0 6090
>> Removing city A (0,6090)
 
remove 0 6091
>> Removing city A (0,6091)
 
remove 0 6092
>> Removing city A (0,6092)
 
remove 0 6093
>> Removing city A (0,6093)
 
remove 0 6094
>> Removing city A (0,6094)
 
remove 0 6095
>> Removing city A (0,6095)
 
remove 0 6096
>> Removing city A (0,6096)
 
remove 0 6097
>> Removing city A (0,6097)
 
remove 0 6098
>> Removing city A (0,6098)
 
remove 0 6099
>> Removing city A (0,6099)
 
remove 0 6100
>> Removing city A (0,6100)
 
remove 0 6101
>> Removing city A (0,6101)
 
remove 0 6102
>> Removing city A (0,6102)
 
remove 0 6103
>> Removing city A (0,6103)
 
remove 0 6104
>> Removing city A (0,6104)
 
remove 0 6105
>> Removing city A (0,6105)
 
remove 0 6106
>> Removing city A (0,6106)
 
remove 0 6107
>> Removing city A (0,6107)
 
remove 0 6108
>> Removing city A (0,6108)
 
remove 0 6109
>> Removing city A (0,6109)
 
remove 0 6110
>> Removing city A (0,6110)
 
remove 0 6111
>> Removing city A (0,6111)
 
remove 0 6112
>> Removing city A (0,6112)
 
remove 0 6113
>> Removing city A (0,6113)
 
remove 0 6114
>> Removing city A (0,6114)
 
remove 0 6115
>> Removing city A (0,6115)
 
remove 0 6116
>> Removing city A (0,6116)
 
remove 0 6117
>> Removing city A (0,6117)
 
remove 0 6118
>> Removing city A (0,6118)
 
remove 0 6119
>> Removing city A (0,6119)
 
remove 0 6120
>> Removing city A (0,6120)
 
remove 0 6121
>> Removing city A (0,6121)
 
remove 0 6122
>> Removing city A (0,6122)
 
remove 0 6123
>> Removing city A (0,6123)
 
remove 0 6124
>> Removing city A (0,6124)
 
remove 0 6125
>> Removing city A (0,6125)
 
remove 0 6126
>> Removing city A (0,6126)
 
remove 0 6127
>> Removing city A (0,6127)
 
remove 0 6128
>> Removing city A (0,6128)
 
remove 0 6129
>> Removing city A (0,6129)
 
remove 0 6130
>> Removing city A (0,6130)
 
remove 0 6131
>> Removing city A (0,6131)
 
remove 0 6132
>> Removing city A (0,6132)
 
remove 0 6133
>> Removing city A (0,6133)
 
remove 0 6134
>> Removing city A (0,6134)
 
remove 0 6135
>> Removing city A (0,6135)
 
remove 0 6136
>> Removing city A (0,6136)
 
remove 0 6137
>> Removing city A (0,6137)
 
remove 0 6138
>> Removing city A (0,6138)
 
remove 0 6139
>> Removing city A (0,6139)
 
remove 0 6140
>> Removing city A (0,6140)
 
remove 0 6141
>> Removing city A (0,6141)
 
remove 0 6142
>> Removing city A (0,6142)
 
remove 0 6143
>> Removing city A (0,6143)
 
remove 0 6144
>> Removing city A (0,6144)
 
remove 0 6145
>> Removing city A (0,6145)
 
remove 0 6146
>> Removing city A (0,6146)
 
remove 0 6147
>> Removing city A (0,6147)
 
remove 0 6148
>> Removing city A (0,6148)
 
remove 0 6149
>> Removing city A (0,6149)
 
remove 0 6150
>> Removing city A (0,6150)
 
remove 0 6151
>> Removing city A (0,6151)
 
remove 0 6152
>> Removing city A (0,6152)
 
remove 0 6153
>> Removing city A (0,6153)
 
remove 0 6154
>> Removing city A (0,6154)
 
remove 0 6155
>> Removing city A (0,6155)
 
remove 0 6156
>> Removing city A (0,6156)
 
remove 0 6157
>> Removing city A (0,6157)
 
remove 0 6158
>> Removing city A (0,6158)
 
remove 0 6159
>> Removing city A (0,6159)
 
remove 0 6160
>> Removing city A (0,6160)
 
remove 0 6161
>> Removing city A (0,6161)
 
remove 0 6162
>> Removing city A (0,6162)
 
remove 0 6163
>> Removing city A (0,6163)
 
remove 0 6164
>> Removing city A (0,6164)
 
remove 0 6165
>> Removing city A (0,6165)
 
remove 0 6166
>> Removing city A (0,6166)
 
remove 0 6167
>> Removing city A (0,6167)
 
remove 0 6168
>> Removing city A (0,6168)
 
remove 0 6169
>> Removing city A (0,6169)
 
remove 0 6170
>> Removing city A (0,6170)
 
remove 0 6171
>> Removing city A (0,6171)
 
remove 0 6172
>> Removing city A (0,6172)
 
remove 0 6173
>> Removing city A (0,6173)
 
remove 0 6174
>> Removing city A (0,6174)
 
remove 0 6175
>> Removing city A (0,6175)
 
remove 0 6176
>> Removing city A (0,6176)
 
remove 0 6177
>> Removing city A (0,6177)
 
remove 0 6178
>> Removing city A (0,6178)
 
remove 0 6179
>> Removing city A (0,6179)
 
remove 0 6180
>> Removing city A (0,6180)
 
remove 0 6181
>> Removing city A (0,6181)
 
remove 0 6182
>> Removing city A (0,6182)
 
remove 0 6183
>> Removing city A (0,6183)
 
remove 0 6184
>> Removing city A (0,6184)
 
remove 0 6185
>> Removing city A (0,6185)
 
remove 0 6186
>> Removing city A (0,6186)
 
remove 0 6187
>> Removing city A (0,6187)
 
remove 0 6188
>> Removing city A (0,6188)
 
remove 0 6189
>> Removing city A (0,6189)
 
remove 0 6190
>> Removing city A (0,6190)
 
remove 0 6191
>> Removing city A (0,6191)
 
remove 0 6192
>> Removing city A (0,6192)
 
remove 0 6193
>> Removing city A (0,6193)
 
remove 0 6194
>> Removing city A (0,6194)
 
remove 0 6195
>> Removing city A (0,6195)
 
remove 0 6196
>> Removing city A (0,6196)
 
remove 0 6197
>> Removing city A (0,6197)
 
remove 0 6198
>> Removing city A (0,6198)
 
remove 0 6199
>> Removing city A (0,6199)
 
remove 0 6200
>> Removing city A (0,6200)
 
remove 0 6201
>> Removing city A (0,6201)
 
remove 0 6202
>> Removing city A (0,6202)
 
remove 0 6203
>> Removing city A (0,6203)
 
remove 0 6204
>> Removing city A (0,6204)
 
remove 0 6205
>> Removing city A (0,6205)
 
remove 0 6206
>> Removing city A (0,6206)
 
remove 0 6207
>> Removing city A (0,6207)
 
remove 0 6208
>> Removing city A (0,6208)
 
remove 0 6209
>> Removing city A (0,6209)
 
remove 0 6210
>> Removing city A (0,6210)
 
remove 0 6211
>> Removing city A (0,6211)
 
remove 0 6212
>> Removing city A (0,6212)
 
remove 0 6213
>> Removing city A (0,6213)
 
remove 0 6214
>> Removing city A (0,6214)
 
remove 0 6215
>> Removing city A (0,6215)
 
remove 0 6216
>> Removing city A (0,6216)
 
remove 0 6217
>> Removing city A (0,6217)
 
remove 0 6218
>> Removing city A (0,6218)
 
remove 0 6219
>> Removing city A (0,6219)
 
remove 0 6220
>> Removing city A (0,6220)
 
remove 0 6221
>> Removing city A (0,6221)
 
remove 0 6222
>> Removing city A (0,6222)
 
remove 0 6223
>> Removing city A (0,6223)
 
remove 0 6224
>> Removing city A (0,6224)
 
remove 0 6225
>> Removing city A (0,6225)
 
remove 0 6226
>> Removing city A (0,6226)
 
remove 0 6227
>> Removing city A (0,6227)
 
remove 0 6228
>> Removing city A (0,6228)
 
remove 0 6229
>> Removing city A (0,6229)
 
remove 0 6230
>> Removing city A (0,6230)
 
remove 0 6231
>> Removing city A (0,6231)
 
remove 0 6232
>> Removing city A (0,6232)
 
remove 0 6233
>> Removing city A (0,6233)
 
remove 0 6234
>> Removing city A (0,6234)
 
remove 0 6235
>> Removing city A (0,6235)
 
remove 0 6236
>> Removing city A (0,6236)
 
remove 0 6237
>> Removing city A (0,6237)
 
remove 0 6238
>> Removing city A (0,6238)
 
remove 0 6239
>> Removing city A (0,6239)
 
remove 0 6240
>> Removing city A (0,6240)
 
remove 0 6241
>> Removing city A (0,6241)
 
remove 0 6242
>> Removing city A (0,6242)
 
remove 0 6243
>> Removing city A (0,6243)
 
remove 0 6244
>> Removing city A (0,6244)
 
remove 0 6245
>> Removing city A (0,6245)
 
remove 0 6246
>> Removing city A (0,6246)
 
remove 0 6247
>> Removing city A (0,6247)
 
remove 0 6248
>> Removing city A (0,6248)
 
remove 0 6249
>> Removing city A (0,6249)
 
remove 0 6250
>> Removing city A (0,6250)
 
remove 0 6251
>> Removing city A (0,6251)
 
remove 0 6252
>> Removing city A (0,6252)
 
remove 0 6253
>> Removing city A (0,6253)
 
remove 0 6254
>> Removing city A (0,6254)
 
remove 0 6255
>> Removing city A (0,6255)
 
remove 0 6256
>> Removing city A (0,6256)
 
remove 0 6257
>> Removing city A (0,6257)
 
remove 0 6258
>> Removing city A (0,6258)
 
remove 0 6259
>> Removing city A (0,6259)
 
remove 0 6260
>> Removing city A (0,6260)
 
remove 0 6261
>> Removing city A (0,6261)
 
remove 0 6262
>> Removing city A (0,6262)
 
remove 0 6263
>> Removing city A (0,6263)
 
remove 0 6264
>> Removing city A (0,6264)
 
remove 0 6265
>> Removing city A (0,6265)
 
remove 0 6266
>> Removing city A (0,6266)
 
remove 0 6267
>> Removing city A (0,6267)
 
remove 0 6268
>> Removing city A (0,6268)
 
remove 0 6269
>> Removing city A (0,6269)
 
remove 0 6270
>> Removing city A (0,6270)
 
remove 0 6271
>> Removing city A (0,6271)
 
remove 0 6272
>> Removing city A (0,6272)
 
remove 0 6273
>> Removing city A (0,6273)
 
remove 0 6274
>> Removing city A (0,6274)
 
remove 0 6275
>> Removing city A (0,6275)
 
remove 0 6276
>> Removing city A (0,6276)
 
remove 0 6277
>> Removing city A (0,6277)
 
remove 0 6278
>> Removing city A (0,6278)
 
remove 0 6279
>> Removing city A (0,6279)
 
remove 0 6280
>> Removing city A (0,6280)
 
remove 0 6281
>> Removing city A (0,6281)
 
remove 0 6282
>> Removing city A (0,6282)
 
remove 0 6283
>> Removing city A (0,6283)
 
remove 0 6284
>> Removing city A (0,6284)
 
remove 0 6285
>> Removing city A (0,6285)
 
remove 0 6286
>> Removing city A (0,6286)
 
remove 0 6287
>> Removing city A (0,6287)
 
remove 0 6288
>> Removing city A (0,6288)
 
remove 0 6289
>> Removing city A (0,6289)
 
remove 0 6290
>> Removing city A (0,6290)
 
remove 0 6291
>> Removing city A (0,6291)
 
remove 0 6292
>> Removing city A (0,6292)
 
remove 0 6293
>> Removing city A (0,6293)
 
remove 0 6294
>> Removing city A (0,6294)
 
remove 0 6295
>> Removing city A (0,6295)
 
remove 0 6296
>> Removing city A (0,6296)
 
remove 0 6297
>> Removing city A (0,6297)
 
remove 0 6298
>> Removing city A (0,6298)
 
remove 0 6299
>> Removing city A (0,6299)
 
remove 0 6300
>> Removing city A (0,6300)
 
remove 0 6301
>> Removing city A (0,6301)
 
remove 0 6302
>> Removing city A (0,6302)
 
remove 0 6303
>> Removing city A (0,6303)
 
remove 0 6304
>> Removing city A (0,6304)
 
remove 0 6305
>> Removing city A (0,6305)
 
remove 0 6306
>> Removing city A (0,6306)
 
remove 0 6307
>> Removing city A (0,6307)
 
remove 0 6308
>> Removing city A (0,6308)
 
remove 0 6309
>> Removing city A (0,6309)
 
remove 0 6310
>> Removing city A (0,6310)
 
remove 0 6311
>> Removing city A (0,6311)
 
remove 0 6312
>> Removing city A (0,6312)
 
remove 0 6313
>> Removing city A (0,6313)
 
remove 0 6314
>> Removing city A (0,6314)
 
remove 0 6315
>> Removing city A (0,6315)
 
remove 0 6316
>> Removing city A (0,6316)
 
remove 0 6317
>> Removing city A (0,6317)
 
remove 0 6318
>> Removing city A (0,6318)
 
remove 0 6319
>> Removing city A (0,6319)
 
remove 0 6320
>> Removing city A (0,6320)
 
remove 0 6321
>> Removing city A (0,6321)
 
remove 0 6322
>> Removing city A (0,6322)
 
remove 0 6323
>> Removing city A (0,6323)
 
remove 0 6324
>> Removing city A (0,6324)
 
remove 0 6325
>> Removing city A (0,6325)
 
remove 0 6326
>> Removing city A (0,6326)
 
remove 0 6327
>> Removing city A (0,6327)
 
remove 0 6328
>> Removing city A (0,6328)
 
remove 0 6329
>> Removing city A (0,6329)
 
remove 0 6330
>> Removing city A (0,6330)
 
remove 0 6331
>> Removing city A (0,6331)
 
remove 0 6332
>> Removing city A (0,6332)
 
remove 0 6333
>> Removing city A (0,6333)
 
remove 0 6334
>> Removing city A (0,6334)
 
remove 0 6335
>> Removing city A (0,6335)
 
remove 0 6336
>> Removing city A (0,6336)
 
remove 0 6337
>> Removing city A (0,6337)
 
remove 0 6338
>> Removing city A (0,6338)
 
remove 0 6339
>> Removing city A (0,6339)
 
remove 0 6340
>> Removing city A (0,6340)
 
remove 0 6341
>> Removing city A (0,6341)
 
remove 0 6342
>> Removing city A (0,6342)
 
remove 0 6343
>> Removing city A (0,6343)
 
remove 0 6344
>> Removing city A (0,6344)
 
remove 0 6345
>> Removing city A (0,6345)
 
remove 0 6346
>> Removing city A (0,6346)
 
remove 0 6347
>> Removing city A (0,6347)
 
remove 0 6348
>> Removing city A (0,6348)
 
remove 0 6349
>> Removing city A (0,6349)
 
remove 0 6350
>> Removing city A (0,6350)
 
remove 0 6351
>> Removing city A (0,6351)
 
remove 0 6352
>> Removing city A (0,6352)
 
remove 0 6353
>> Removing city A (0,6353)
 
remove 0 6354
>> Removing city A (0,6354)
 
remove 0 6355
>> Removing city A (0,6355)
 
remove 0 6356
>> Removing city A (0,6356)
 
remove 0 6357
>> Removing city A (0,6357)
 
remove 0 6358
>> Removing city A (0,6358)
 
remove 0 6359
>> Removing city A (0,6359)
 
remove 0 6360
>> Removing city A (0,6360)
 
remove 0 6361
>> Removing city A (0,6361)
 
remove 0 6362
>> Removing city A (0,6362)
 
remove 0 6363
>> Removing city A (0,6363)
 
remove 0 6364
>> Removing city A (0,6364)
 
remove 0 6365
>> Removing city A (0,6365)
 
remove 0 6366
>> Removing city A (0,6366)
 
remove 0 6367
>> Removing city A (0,6367)
 
remove 0 6368
>> Removing city A (0,6368)
 
remove 0 6369
>> Removing city A (0,6369)
 
remove 0 6370
>> Removing city A (0,6370)
 
remove 0 6371
>> Removing city A (0,6371)
 
remove 0 6372
>> Removing city A (0,6372)
 
remove 0 6373
>> Removing city A (0,6373)
 
remove 0 6374
>> Removing city A (0,6374)
 
remove 0 6375
>> Removing city A (0,6375)
 
remove 0 6376
>> Removing city A (0,6376)
 
remove 0 6377
>> Removing city A (0,6377)
 
remove 0 6378
>> Removing city A (0,6378)
 
remove 0 6379
>> Removing city A (0,6379)
 
remove 0 6380
>> Removing city A (0,6380)
 
remove 0 6381
>> Removing city A (0,6381)
 
remove 0 6382
>> Removing city A (0,6382)
 
remove 0 6383
>> Removing city A (0,6383)
 
remove 0 6384
>> Removing city A (0,6384)
 
remove 0 6385
>> Removing city A (0,6385)
 
remove 0 6386
>> Removing city A (0,6386)
 
remove 0 6387
>> Removing city A (0,6387)
 
remove 0 6388
>> Removing city A (0,6388)
 
remove 0 6389
>> Removing city A (0,6389)
 
remove 0 6390
>> Removing city A (0,6390)
 
remove 0 6391
>> Removing city A (0,6391)
 
remove 0 6392
>> Removing city A (0,6392)
 
remove 0 6393
>> Removing city A (0,6393)
 
remove 0 6394
>> Removing city A (0,6394)
 
remove 0 6395
>> Removing city A (0,6395)
 
remove 0 6396
>> Removing city A (0,6396)
 
remove 0 6397
>> Removing city A (0,6397)
 
remove 0 6398
>> Removing city A (0,6398)
 
remove 0 6399
>> Removing city A (0,6399)
 
remove 0 6400
>> Removing city A (0,6400)
 
remove 0 6401
>> Removing city A (0,6401)
 
remove 0 6402
>> Removing city A (0,6402)
 
remove 0 6403
>> Removing city A (0,6403)
 
remove 0 6404
>> Removing city A (0,6404)
 
remove 0 6405
>> Removing city A (0,6405)
 
remove 0 6406
>> Removing city A (0,6406)
 
remove 0 6407
>> Removing city A (0,6407)
 
remove 0 6408
>> Removing city A (0,6408)
 
remove 0 6409
>> Removing city A (0,6409)
 
remove 0 6410
>> Removing city A (0,6410)
 
remove 0 6411
>> Removing city A (0,6411)
 
remove 0 6412
>> Removing city A (0,6412)
 
remove 0 6413
>> Removing city A (0,6413)
 
remove 0 6414
>> Removing city A (0,6414)
 
remove 0 6415
>> Removing city A (0,6415)
 
remove 0 6416
>> Removing city A (0,6416)
 
remove 0 6417
>> Removing city A (0,6417)
 
remove 0 6418
>> Removing city A (0,6418)
 
remove 0 6419
>> Removing city A (0,6419)
 
remove 0 6420
>> Removing city A (0,6420)
 
remove 0 6421
>> Removing city A (0,6421)
 
remove 0 6422
>> Removing city A (0,6422)
 
remove 0 6423
>> Removing city A (0,6423)
 
remove 0 6424
>> Removing city A (0,6424)
 
remove 0 6425
>> Removing city A (0,6425)
 
remove 0 6426
>> Removing city A (0,6426)
 
remove 0 6427
>> Removing city A (0,6427)
 
remove 0 6428
>> Removing city A (0,6428)
 
remove 0 6429
>> Removing city A (0,6429)
 
remove 0 6430
>> Removing city A (0,6430)
 
remove 0 6431
>> Removing city A (0,6431)
 
remove 0 6432
>> Removing city A (0,6432)
 
remove 0 6433
>> Removing city A (0,6433)
 
remove 0 6434
>> Removing city A (0,6434)
 
remove 0 6435
>> Removing city A (0,6435)
 
remove 0 6436
>> Removing city A (0,6436)
 
remove 0 6437
>> Removing city A (0,6437)
 
remove 0 6438
>> Removing city A (0,6438)
 
remove 0 6439
>> Removing city A (0,6439)
 
remove 0 6440
>> Removing city A (0,6440)
 
remove 0 6441
>> Removing city A (0,6441)
 
remove 0 6442
>> Removing city A (0,6442)
 
remove 0 6443
>> Removing city A (0,6443)
 
remove 0 6444
>> Removing city A (0,6444)
 
remove 0 6445
>> Removing city A (0,6445)
 
remove 0 6446
>> Removing city A (0,6446)
 
remove 0 6447
>> Removing city A (0,6447)
 
remove 0 6448
>> Removing city A (0,6448)
 
remove 0 6449
>> Removing city A (0,6449)
 
remove 0 6450
>> Removing city A (0,6450)
 
remove 0 6451
>> Removing city A (0,6451)
 
remove 0 6452
>> Removing city A (0,6452)
 
remove 0 6453
>> Removing city A (0,6453)
 
remove 0 6454
>> Removing city A (0,6454)
 
remove 0 6455
>> Removing city A (0,6455)
 
remove 0 6456
>> Removing city A (0,6456)
 
remove 0 6457
>> Removing city A (0,6457)
 
remove 0 6458
>> Removing city A (0,6458)
 
remove 0 6459
>> Removing city A (0,6459)
 
remove 0 6460
>> Removing city A (0,6460)
 
remove 0 6461
>> Removing city A (0,6461)
 
remove 0 6462
>> Removing city A (0,6462)
 
remove 0 6463
>> Removing city A (0,6463)
 
remove 0 6464
>> Removing city A (0,6464)
 
remove 0 6465
>> Removing city A (0,6465)
 
remove 0 6466
>> Removing city A (0,6466)
 
remove 0 6467
>> Removing city A (0,6467)
 
remove 0 6468
>> Removing city A (0,6468)
 
remove 0 6469
>> Removing city A (0,6469)
 
remove 0 6470
>> Removing city A (0,6470)
 
remove 0 6471
>> Removing city A (0,6471)
 
remove 0 6472
>> Removing city A (0,6472)
 
remove 0 6473
>> Removing city A (0,6473)
 
remove 0 6474
>> Removing city A (0,6474)
 
remove 0 6475
>> Removing city A (0,6475)
 
remove 0 6476
>> Removing city A (0,6476)
 
remove 0 6477
>> Removing city A (0,6477)
 
remove 0 6478
>> Removing city A (0,6478)
 
remove 0 6479
>> Removing city A (0,6479)
 
remove 0 6480
>> Removing city A (0,6480)
 
remove 0 6481
>> Removing city A (0,6481)
 
remove 0 6482
>> Removing city A (0,6482)
 
remove 0 6483
>> Removing city A (0,6483)
 
remove 0 6484
>> Removing city A (0,6484)
 
remove 0 6485
>> Removing city A (0,6485)
 
remove 0 6486
>> Removing city A (0,6486)
 
remove 0 6487
>> Removing city A (0,6487)
 
remove 0 6488
>> Removing city A (0,6488)
 
remove 0 6489
>> Removing city A (0,6489)
 
remove 0 6490
>> Removing city A (0,6490)
 
remove 0 6491
>> Removing city A (0,6491)
 
remove 0 6492
>> Removing city A (0,6492)
 
remove 0 6493
>> Removing city A (0,6493)
 
remove 0 6494
>> Removing city A (0,6494)
 
remove 0 6495
>> Removing city A (0,6495)
 
remove 0 6496
>> Removing city A (0,6496)
 
remove 0 6497
>> Removing city A (0,6497)
 
remove 0 6498
>> Removing city A (0,6498)
 
remove 0 6499
>> Removing city A (0,6499)
 
remove 0 6500
>> Removing city A (0,6500)
 
remove 0 6501
>> Removing city A (0,6501)
 
remove 0 6502
>> Removing city A (0,6502)
 
remove 0 6503
>> Removing city A (0,6503)
 
remove 0 6504
>> Removing city A (0,6504)
 
remove 0 6505
>> Removing city A (0,6505)
 
remove 0 6506
>> Removing city A (0,6506)
 
remove 0 6507
>> Removing city A (0,6507)
 
remove 0 6508
>> Removing city A (0,6508)
 
remove 0 6509
>> Removing city A (0,6509)
 
remove 0 6510
>> Removing city A (0,6510)
 
remove 0 6511
>> Removing city A (0,6511)
 
remove 0 6512
>> Removing city A (0,6512)
 
remove 0 6513
>> Removing city A (0,6513)
 
remove 0 6514
>> Removing city A (0,6514)
 
remove 0 6515
>> Removing city A (0,6515)
 
remove 0 6516
>> Removing city A (0,6516)
 
remove 0 6517
>> Removing city A (0,6517)
 
remove 0 6518
>> Removing city A (0,6518)
 
remove 0 6519
>> Removing city A (0,6519)
 
remove 0 6520
>> Removing city A (0,6520)
 
remove 0 6521
>> Removing city A (0,6521)
 
remove 0 6522
>> Removing city A (0,6522)
 
remove 0 6523
>> Removing city A (0,6523)
 
remove 0 6524
>> Removing city A (0,6524)
 
remove 0 6525
>> Removing city A (0,6525)
 
remove 0 6526
>> Removing city A (0,6526)
 
remove 0 6527
>> Removing city A (0,6527)
 
remove 0 6528
>> Removing city A (0,6528)
 
remove 0 6529
>> Removing city A (0,6529)
 
remove 0 6530
>> Removing city A (0,6530)
 
remove 0 6531
>> Removing city A (0,6531)
 
remove 0 6532
>> Removing city A (0,6532)
 
remove 0 6533
>> Removing city A (0,6533)
 
remove 0 6534
>> Removing city A (0,6534)
 
remove 0 6535
>> Removing city A (0,6535)
 
remove 0 6536
>> Removing city A (0,6536)
 
remove 0 6537
>> Removing city A (0,6537)
 
remove 0 6538
>> Removing city A (0,6538)
 
remove 0 6539
>> Removing city A (0,6539)
 
remove 0 6540
>> Removing city A (0,6540)
 
remove 0 6541
>> Removing city A (0,6541)
 
remove 0 6542
>> Removing city A (0,6542)
 
remove 0 6543
>> Removing city A (0,6543)
 
remove 0 6544
>> Removing city A (0,6544)
 
remove 0 6545
>> Removing city A (0,6545)
 
remove 0 6546
>> Removing city A (0,6546)
 
remove 0 6547
>> Removing city A (0,6547)
 
remove 0 6548
>> Removing city A (0,6548)
 
remove 0 6549
>> Removing city A (0,6549)
 
remove 0 6550
>> Removing city A (0,6550)
 
remove 0 6551
>> Removing city A (0,6551)
 
remove 0 6552
>> Removing city A (0,6552)
 
remove 0 6553
>> Removing city A (0,6553)
 
remove 0 6554
>> Removing city A (0,6554)
 
remove 0 6555
>> Removing city A (0,6555)
 
remove 0 6556
>> Removing city A (0,6556)
 
remove 0 6557
>> Removing city A (0,6557)
 
remove 0 6558
>> Removing city A (0,6558)
 
remove 0 6559
>> Removing city A (0,6559)
 
remove 0 6560
>> Removing city A (0,6560)
 
remove 0 6561
>> Removing city A (0,6561)
 
remove 0 6562
>> Removing city A (0,6562)
 
remove 0 6563
>> Removing city A (0,6563)
 
remove 0 6564
>> Removing city A (0,6564)
 
remove 0 6565
>> Removing city A (0,6565)
 
remove 0 6566
>> Removing city A (0,6566)
 
remove 0 6567
>> Removing city A (0,6567)
 
remove 0 6568
>> Removing city A (0,6568)
 
remove 0 6569
>> Removing city A (0,6569)
 
remove 0 6570
>> Removing city A (0,6570)
 
remove 0 6571
>> Removing city A (0,6571)
 
remove 0 6572
>> Removing city A (0,6572)
 
remove 0 6573
>> Removing city A (0,6573)
 
remove 0 6574
>> Removing city A (0,6574)
 
remove 0 6575
>> Removing city A (0,6575)
 
remove 0 6576
>> Removing city A (0,6576)
 
remove 0 6577
>> Removing city A (0,6577)
 
remove 0 6578
>> Removing city A (0,6578)
 
remove 0 6579
>> Removing city A (0,6579)
 
remove 0 6580
>> Removing city A (0,6580)
 
remove 0 6581
>> Removing city A (0,6581)
 
remove 0 6582
>> Removing city A (0,6582)
 
remove 0 6583
>> Removing city A (0,6583)
 
remove 0 6584
>> Removing city A (0,6584)
 
remove 0 6585
>> Removing city A (0,6585)
 
remove 0 6586
>> Removing city A (0,6586)
 
remove 0 6587
>> Removing city A (0,6587)
 
remove 0 6588
>> Removing city A (0,6588)
 
remove 0 6589
>> Removing city A (0,6589)
 
remove 0 6590
>> Removing city A (0,6590)
 
remove 0 6591
>> Removing city A (0,6591)
 
remove 0 6592
>> Removing city A (0,6592)
 
remove 0 6593
>> Removing city A (0,6593)
 
remove 0 6594
>> Removing city A (0,6594)
 
remove 0 6595
>> Removing city A (0,6595)
 
remove 0 6596
>> Removing city A (0,6596)
 
remove 0 6597
>> Removing city A (0,6597)
 
remove 0 6598
>> Removing city A (0,6598)
 
remove 0 6599
>> Removing city A (0,6599)
 
remove 0 6600
>> Removing city A (0,6600)
 
remove 0 6601
>> Removing city A (0,6601)
 
remove 0 6602
>> Removing city A (0,6602)
 
remove 0 6603
>> Removing city A (0,6603)
 
remove 0 6604
>> Removing city A (0,6604)
 
remove 0 6605
>> Removing city A (0,6605)
 
remove 0 6606
>> Removing city A (0,6606)
 
remove 0 6607
>> Removing city A (0,6607)
 
remove 0 6608
>> Removing city A (0,6608)
 
remove 0 6609
>> Removing city A (0,6609)
 
remove 0 6610
>> Removing city A (0,6610)
 
remove 0 6611
>> Removing city A (0,6611)
 
remove 0 6612
>> Removing city A (0,6612)
 
remove 0 6613
>> Removing city A (0,6613)
 
remove 0 6614
>> Removing city A (0,6614)
 
remove 0 6615
>> Removing city A (0,6615)
 
remove 0 6616
>> Removing city A (0,6616)
 
remove 0 6617
>> Removing city A (0,6617)
 
remove 0 6618
>> Removing city A (0,6618)
 
remove 0 6619
>> Removing city A (0,6619)
 
remove 0 6620
>> Removing city A (0,6620)
 
remove 0 6621
>> Removing city A (0,6621)
 
remove 0 6622
>> Removing city A (0,6622)
 
remove 0 6623
>> Removing city A (0,6623)
 
remove 0 6624
>> Removing city A (0,6624)
 
remove 0 6625
>> Removing city A (0,6625)
 
remove 0 6626
>> Removing city A (0,6626)
 
remove 0 6627
>> Removing city A (0,6627)
 
remove 0 6628
>> Removing city A (0,6628)
 
remove 0 6629
>> Removing city A (0,6629)
 
remove 0 6630
>> Removing city A (0,6630)
 
remove 0 6631
>> Removing city A (0,6631)
 
remove 0 6632
>> Removing city A (0,6632)
 
remove 0 6633
>> Removing city A (0,6633)
 
remove 0 6634
>> Removing city A (0,6634)
 
remove 0 6635
>> Removing city A (0,6635)
 
remove 0 6636
>> Removing city A (0,6636)
 
remove 0 6637
>> Removing city A (0,6637)
 
remove 0 6638
>> Removing city A (0,6638)
 
remove 0 6639
>> Removing city A (0,6639)
 
remove 0 6640
>> Removing city A (0,6640)
 
remove 0 6641
>> Removing city A (0,6641)
 
remove 0 6642
>> Removing city A (0,6642)
 
remove 0 6643
>> Removing city A (0,6643)
 
remove 0 6644
>> Removing city A (0,6644)
 
remove 0 6645
>> Removing city A (0,6645)
 
remove 0 6646
>> Removing city A (0,6646)
 
remove 0 6647
>> Removing city A (0,6647)
 
remove 0 6648
>> Removing city A (0,6648)
 
remove 0 6649
>> Removing city A (0,6649)
 
remove 0 6650
>> Removing city A (0,6650)
 
remove 0 6651
>> Removing city A (0,6651)
 
remove 0 6652
>> Removing city A (0,6652)
 
remove 0 6653
>> Removing city A (0,6653)
 
remove 0 6654
>> Removing city A (0,6654)
 
remove 0 6655
>> Removing city A (0,6655)
 
remove 0 6656
>> Removing city A (0,6656)
 
remove 0 6657
>> Removing city A (0,6657)
 
remove 0 6658
>> Removing city A (0,6658)
 
remove 0 6659
>> Removing city A (0,6659)
 
remove 0 6660
>> Removing city A (0,6660)
 
remove 0 6661
>> Removing city A (0,6661)
 
remove 0 6662
>> Removing city A (0,6662)
 
remove 0 6663
>> Removing city A (0,6663)
 
remove 0 6664
>> Removing city A (0,6664)
 
remove 0 6665
>> Removing city A (0,6665)
 
remove 0 6666
>> Removing city A (0,6666)
 
remove 0 6667
>> Removing city A (0,6667)
 
remove 0 6668
>> Removing city A (0,6668)
 
remove 0 6669
>> Removing city A (0,6669)
 
remove 0 6670
>> Removing city A (0,6670)
 
remove 0 6671
>> Removing city A (0,6671)
 
remove 0 6672
>> Removing city A (0,6672)
 
remove 0 6673
>> Removing city A (0,6673)
 
remove 0 6674
>> Removing city A (0,6674)
 
remove 0 6675
>> Removing city A (0,6675)
 
remove 0 6676
>> Removing city A (0,6676)
 
remove 0 6677
>> Removing city A (0,6677)
 
remove 0 6678
>> Removing city A (0,6678)
 
remove 0 6679
>> Removing city A (0,6679)
 
remove 0 6680
>> Removing city A (0,6680)
 
remove 0 6681
>> Removing city A (0,6681)
 
remove 0 6682
>> Removing city A (0,6682)
 
remove 0 6683
>> Removing city A (0,6683)
 
remove 0 6684
>> Removing city A (0,6684)
 
remove 0 6685
>> Removing city A (0,6685)
 
remove 0 6686
>> Removing city A (0,6686)
 
remove 0 6687
>> Removing city A (0,6687)
 
remove 0 6688
>> Removing city A (0,6688)
 
remove 0 6689
>> Removing city A (0,6689)
 
remove 0 6690
>> Removing city A (0,6690)
 
remove 0 6691
>> Removing city A (0,6691)
 
remove 0 6692
>> Removing city A (0,6692)
 
remove 0 6693
>> Removing city A (0,6693)
 
remove 0 6694
>> Removing city A (0,6694)
 
remove 0 6695
>> Removing city A (0,6695)
 
remove 0 6696
>> Removing city A (0,6696)
 
remove 0 6697
>> Removing city A (0,6697)
 
remove 0 6698
>> Removing city A (0,6698)
 
remove 0 6699
>> Removing city A (0,6699)
 
remove 0 6700
>> Removing city A (0,6700)
 
remove 0 6701
>> Removing city A (0,6701)
 
remove 0 6702
>> Removing city A (0,6702)
 
remove 0 6703
>> Removing city A (0,6703)
 
remove 0 6704
>> Removing city A (0,6704)
 
remove 0 6705
>> Removing city A (0,6705)
 
remove 0 6706
>> Removing city A (0,6706)
 
remove 0 6707
>> Removing city A (0,6707)
 
remove 0 6708
>> Removing city A (0,6708)
 
remove 0 6709
>> Removing city A (0,6709)
 
remove 0 6710
>> Removing city A (0,6710)
 
remove 0 6711
>> Removing city A (0,6711)
 
remove 0 6712
>> Removing city A (0,6712)
 
remove 0 6713
>> Removing city A (0,6713)
 
remove 0 6714
>> Removing city A (0,6714)
 
remove 0 6715
>> Removing city A (0,6715)
 
remove 0 6716
>> Removing city A (0,6716)
 
remove 0 6717
>> Removing city A (0,6717)
 
remove 0 6718
>> Removing city A (0,6718)
 
remove 0 6719
>> Removing city A (0,6719)
 
remove 0 6720
>> Removing city A (0,6720)
 
remove 0 6721
>> Removing city A (0,6721)
 
remove 0 6722
>> Removing city A (0,6722)
 
remove 0 6723
>> Removing city A (0,6723)
 
remove 0 6724
>> Removing city A (0,6724)
 
remove 0 6725
>> Removing city A (0,6725)
 
remove 0 6726
>> Removing city A (0,6726)
 
remove 0 6727
>> Removing city A (0,6727)
 
remove 0 6728
>> Removing city A (0,6728)
 
remove 0 6729
>> Removing city A (0,6729)
 
remove 0 6730
>> Removing city A (0,6730)
 
remove 0 6731
>> Removing city A (0,6731)
 
remove 0 6732
>> Removing city A (0,6732)
 
remove 0 6733
>> Removing city A (0,6733)
 
remove 0 6734
>> Removing city A (0,6734)
 
remove 0 6735
>> Removing city A (0,6735)
 
remove 0 6736
>> Removing city A (0,6736)
 
remove 0 6737
>> Removing city A (0,6737)
 
remove 0 6738
>> Removing city A (0,6738)
 
remove 0 6739
>> Removing city A (0,6739)
 
remove 0 6740
>> Removing city A (0,6740)
 
remove 0 6741
>> Removing city A (0,6741)
 
remove 0 6742
>> Removing city A (0,6742)
 
remove 0 6743
>> Removing city A (0,6743)
 
remove 0 6744
>> Removing city A (0,6744)
 
remove 0 6745
>> Removing city A (0,6745)
 
remove 0 6746
>> Removing city A (0,6746)
 
remove 0 6747
>> Removing city A (0,6747)
 
remove 0 6748
>> Removing city A (0,6748)
 
remove 0 6749
>> Removing city A (0,6749)
 
remove 0 6750
>> Removing city A (0,6750)
 
remove 0 6751
>> Removing city A (0,6751)
 
remove 0 6752
>> Removing city A (0,6752)
 
remove 0 6753
>> Removing city A (0,6753)
 
remove 0 6754
>> Removing city A (0,6754)
 
remove 0 6755
>> Removing city A (0,6755)
 
remove 0 6756
>> Removing city A (0,6756)
 
remove 0 6757
>> Removing city A (0,6757)
 
remove 0 6758
>> Removing city A (0,6758)
 
remove 0 6759
>> Removing city A (0,6759)
 
remove 0 6760
>> Removing city A (0,6760)
 
remove 0 6761
>> Removing city A (0,6761)
 
remove 0 6762
>> Removing city A (0,6762)
 
remove 0 6763
>> Removing city A (0,6763)
 
remove 0 6764
>> Removing city A (0,6764)
 
remove 0 6765
>> Removing city A (0,6765)
 
remove 0 6766
>> Removing city A (0,6766)
 
remove 0 6767
>> Removing city A (0,6767)
 
remove 0 6768
>> Removing city A (0,6768)
 
remove 0 6769
>> Removing city A (0,6769)
 
remove 0 6770
>> Removing city A (0,6770)
 
remove 0 6771
>> Removing city A (0,6771)
 
remove 0 6772
>> Removing city A (0,6772)
 
remove 0 6773
>> Removing city A (0,6773)
 
remove 0 6774
>> Removing city A (0,6774)
 
remove 0 6775
>> Removing city A (0,6775)
 
remove 0 6776
>> Removing city A (0,6776)
 
remove 0 6777
>> Removing city A (0,6777)
 
remove 0 6778
>> Removing city A (0,6778)
 
remove 0 6779
>> Removing city A (0,6779)
 
remove 0 6780
>> Removing city A (0,6780)
 
remove 0 6781
>> Removing city A (0,6781)
 
remove 0 6782
>> Removing city A (0,6782)
 
remove 0 6783
>> Removing city A (0,6783)
 
remove 0 6784
>> Removing city A (0,6784)
 
remove 0 6785
>> Removing city A (0,6785)
 
remove 0 6786
>> Removing city A (0,6786)
 
remove 0 6787
>> Removing city A (0,6787)
 
remove 0 6788
>> Removing city A (0,6788)
 
remove 0 6789
>> Removing city A (0,6789)
 
remove 0 6790
>> Removing city A (0,6790)
 
remove 0 6791
>> Removing city A (0,6791)
 
remove 0 6792
>> Removing city A (0,6792)
 
remove 0 6793
>> Removing city A (0,6793)
 
remove 0 6794
>> Removing city A (0,6794)
 
remove 0 6795
>> Removing city A (0,6795)
 
remove 0 6796
>> Removing city A (0,6796)
 
remove 0 6797
>> Removing city A (0,6797)
 
remove 0 6798
>> Removing city A (0,6798)
 
remove 0 6799
>> Removing city A (0,6799)
 
remove 0 6800
>> Removing city A (0,6800)
 
remove 0 6801
>> Removing city A (0,6801)
 
remove 0 6802
>> Removing city A (0,6802)
 
remove 0 6803
>> Removing city A (0,6803)
 
remove 0 6804
>> Removing city A (0,6804)
 
remove 0 6805
>> Removing city A (0,6805)
 
remove 0 6806
>> Removing city A (0,6806)
 
remove 0 6807
>> Removing city A (0,6807)
 
remove 0 6808
>> Removing city A (0,6808)
 
remove 0 6809
>> Removing city A (0,6809)
 
remove 0 6810
>> Removing city A (0,6810)
 
remove 0 6811
>> Removing city A (0,6811)
 
remove 0 6812
>> Removing city A (0,6812)
 
remove 0 6813
>> Removing city A (0,6813)
 
remove 0 6814
>> Removing city A (0,6814)
 
remove 0 6815
>> Removing city A (0,6815)
 
remove 0 6816
>> Removing city A (0,6816)
 
remove 0 6817
>> Removing city A (0,6817)
 
remove 0 6818
>> Removing city A (0,6818)
 
remove 0 6819
>> Removing city A (0,6819)
 
remove 0 6820
>> Removing city A (0,6820)
 
remove 0 6821
>> Removing city A (0,6821)
 
remove 0 6822
>> Removing city A (0,6822)
 
remove 0 6823
>> Removing city A (0,6823)
 
remove 0 6824
>> Removing city A (0,6824)
 
remove 0 6825
>> Removing city A (0,6825)
 
remove 0 6826
>> Removing city A (0,6826)
 
remove 0 6827
>> Removing city A (0,6827)
 
remove 0 6828
>> Removing city A (0,6828)
 
remove 0 6829
>> Removing city A (0,6829)
 
remove 0 6830
>> Removing city A (0,6830)
 
remove 0 6831
>> Removing city A (0,6831)
 
remove 0 6832
>> Removing city A (0,6832)
 
remove 0 6833
>> Removing city A (0,6833)
 
remove 0 6834
>> Removing city A (0,6834)
 
remove 0 6835
>> Removing city A (0,6835)
 
remove 0 6836
>> Removing city A (0,6836)
 
remove 0 6837
>> Removing city A (0,6837)
 
remove 0 6838
>> Removing city A (0,6838)
 
remove 0 6839
>> Removing city A (0,6839)
 
remove 0 6840
>> Removing city A (0,6840)
 
remove 0 6841
>> Removing city A (0,6841)
 
remove 0 6842
>> Removing city A (0,6842)
 
remove 0 6843
>> Removing city A (0,6843)
 
remove 0 6844
>> Removing city A (0,6844)
 
remove 0 6845
>> Removing city A (0,6845)
 
remove 0 6846
>> Removing city A (0,6846)
 
remove 0 6847
>> Removing city A (0,6847)
 
remove 0 6848
>> Removing city A (0,6848)
 
remove 0 6849
>> Removing city A (0,6849)
 
remove 0 6850
>> Removing city A (0,6850)
 
remove 0 6851
>> Removing city A (0,6851)
 
remove 0 6852
>> Removing city A (0,6852)
 
remove 0 6853
>> Removing city A (0,6853)
 
remove 0 6854
>> Removing city A (0,6854)
 
remove 0 6855
>> Removing city A (0,6855)
 
remove 0 6856
>> Removing city A (0,6856)
 
remove 0 6857
>> Removing city A (0,6857)
 
remove 0 6858
>> Removing city A (0,6858)
 
remove 0 6859
>> Removing city A (0,6859)
 
remove 0 6860
>> Removing city A (0,6860)
 
remove 0 6861
>> Removing city A (0,6861)
 
remove 0 6862
>> Removing city A (0,6862)
 
remove 0 6863
>> Removing city A (0,6863)
 
remove 0 6864
>> Removing city A (0,6864)
 
remove 0 6865
>> Removing city A (0,6865)
 
remove 0 6866
>> Removing city A (0,6866)
 
remove 0 6867
>> Removing city A (0,6867)
 
remove 0 6868
>> Removing city A (0,6868)
 
remove 0 6869
>> Removing city A (0,6869)
 
remove 0 6870
>> Removing city A (0,6870)
 
remove 0 6871
>> Removing city A (0,6871)
 
remove 0 6872
>> Removing city A (0,6872)
 
remove 0 6873
>> Removing city A (0,6873)
 
remove 0 6874
>> Removing city A (0,6874)
 
remove 0 6875
>> Removing city A (0,6875)
 
remove 0 6876
>> Removing city A (0,6876)
 
remove 0 6877
>> Removing city A (0,6877)
 
remove 0 6878
>> Removing city A (0,6878)
 
remove 0 6879
>> Removing city A (0,6879)
 
remove 0 6880
>> Removing city A (0,6880)
 
remove 0 6881
>> Removing city A (0,6881)
 
remove 0 6882
>> Removing city A (0,6882)
 
remove 0 6883
>> Removing city A (0,6883)
 
remove 0 6884
>> Removing city A (0,6884)
 
remove 0 6885
>> Removing city A (0,6885)
 
remove 0 6886
>> Removing city A (0,6886)
 
remove 0 6887
>> Removing city A (0,6887)
 
remove 0 6888
>> Removing city A (0,6888)
 
remove 0 6889
>> Removing city A (0,6889)
 
remove 0 6890
>> Removing city A (0,6890)
 
remove 0 6891
>> Removing city A (0,6891)
 
remove 0 6892
>> Removing city A (0,6892)
 
remove 0 6893
>> Removing city A (0,6893)
 
remove 0 6894
>> Removing city A (0,6894)
 
remove 0 6895
>> Removing city A (0,6895)
 
remove 0 6896
>> Removing city A (0,6896)
 
remove 0 6897
>> Removing city A (0,6897)
 
remove 0 6898
>> Removing city A (0,6898)
 
remove 0 6899
>> Removing city A (0,6899)
 
remove 0 6900
>> Removing city A (0,6900)
 
remove 0 6901
>> Removing city A (0,6901)
 
remove 0 6902
>> Removing city A (0,6902)
 
remove 0 6903
>> Removing city A (0,6903)
 
remove 0 6904
>> Removing city A (0,6904)
 
remove 0 6905
>> Removing city A (0,6905)
 
remove 0 6906
>> Removing city A (0,6906)
 
remove 0 6907
>> Removing city A (0,6907)
 
remove 0 6908
>> Removing city A (0,6908)
 
remove 0 6909
>> Removing city A (0,6909)
 
remove 0 6910
>> Removing city A (0,6910)
 
remove 0 6911
>> Removing city A (0,6911)
 
remove 0 6912
>> Removing city A (0,6912)
 
remove 0 6913
>> Removing city A (0,6913)
 
remove 0 6914
>> Removing city A (0,6914)
 
remove 0 6915
>> Removing city A (0,6915)
 
remove 0 6916
>> Removing city A (0,6916)
 
remove 0 6917
>> Removing city A (0,6917)
 
remove 0 6918
>> Removing city A (0,6918)
 
remove 0 6919
>> Removing city A (0,6919)
 
remove 0 6920
>> Removing city A (0,6920)
 
remove 0 6921
>> Removing city A (0,6921)
 
remove 0 6922
>> Removing city A (0,6922)
 
remove 0 6923
>> Removing city A (0,6923)
 
remove 0 6924
>> Removing city A (0,6924)
 
remove 0 6925
>> Removing city A (0,6925)
 
remove 0 6926
>> Removing city A (0,6926)
 
remove 0 6927
>> Removing city A (0,6927)
 
remove 0 6928
>> Removing city A (0,6928)
 
remove 0 6929
>> Removing city A (0,6929)
 
remove 0 6930
>> Removing city A (0,6930)
 
remove 0 6931
>> Removing city A (0,6931)
 
remove 0 6932
>> Removing city A (0,6932)
 
remove 0 6933
>> Removing city A (0,6933)
 
remove 0 6934
>> Removing city A (0,6934)
 
remove 0 6935
>> Removing city A (0,6935)
 
remove 0 6936
>> Removing city A (0,6936)
 
remove 0 6937
>> Removing city A (0,6937)
 
remove 0 6938
>> Removing city A (0,6938)
 
remove 0 6939
>> Removing city A (0,6939)
 
remove 0 6940
>> Removing city A (0,6940)
 
remove 0 6941
>> Removing city A (0,6941)
 
remove 0 6942
>> Removing city A (0,6942)
 
remove 0 6943
>> Removing city A (0,6943)
 
remove 0 6944
>> Removing city A (0,6944)
 
remove 0 6945
>> Removing city A (0,6945)
 
remove 0 6946
>> Removing city A (0,6946)
 
remove 0 6947
>> Removing city A (0,6947)
 
remove 0 6948
>> Removing city A (0,6948)
 
remove 0 6949
>> Removing city A (0,6949)
 
remove 0 6950
>> Removing city A (0,6950)
 
remove 0 6951
>> Removing city A (0,6951)
 
remove 0 6952
>> Removing city A (0,6952)
 
remove 0 6953
>> Removing city A (0,6953)
 
remove 0 6954
>> Removing city A (0,6954)
 
remove 0 6955
>> Removing city A (0,6955)
 
remove 0 6956
>> Removing city A (0,6956)
 
remove 0 6957
>> Removing city A (0,6957)
 
remove 0 6958
>> Removing city A (0,6958)
 
remove 0 6959
>> Removing city A (0,6959)
 
remove 0 6960
>> Removing city A (0,6960)
 
remove 0 6961
>> Removing city A (0,6961)
 
remove 0 6962
>> Removing city A (0,6962)
 
remove 0 6963
>> Removing city A (0,6963)
 
remove 0 6964
>> Removing city A (0,6964)
 
remove 0 6965
>> Removing city A (0,6965)
 
remove 0 6966
>> Removing city A (0,6966)
 
remove 0 6967
>> Removing city A (0,6967)
 
remove 0 6968
>> Removing city A (0,6968)
 
remove 0 6969
>> Removing city A (0,6969)
 
remove 0 6970
>> Removing city A (0,6970)
 
remove 0 6971
>> Removing city A (0,6971)
 
remove 0 6972
>> Removing city A (0,6972)
 
remove 0 6973
>> Removing city A (0,6973)
 
remove 0 6974
>> Removing city A (0,6974)
 
remove 0 6975
>> Removing city A (0,6975)
 
remove 0 6976
>> Removing city A (0,6976)
 
remove 0 6977
>> Removing city A (0,6977)
 
remove 0 6978
>> Removing city A (0,6978)
 
remove 0 6979
>> Removing city A (0,6979)
 
remove 0 6980
>> Removing city A (0,6980)
 
remove 0 6981
>> Removing city A (0,6981)
 
remove 0 6982
>> Removing city A (0,6982)
 
remove 0 6983
>> Removing city A (0,6983)
 
remove 0 6984
>> Removing city A (0,6984)
 
remove 0 6985
>> Removing city A (0,6985)
 
remove 0 6986
>> Removing city A (0,6986)
 
remove 0 6987
>> Removing city A (0,6987)
 
remove 0 6988
>> Removing city A (0,6988)
 
remove 0 6989
>> Removing city A (0,6989)
 
remove 0 6990
>> Removing city A (0,6990)
 
remove 0 6991
>> Removing city A (0,6991)
 
remove 0 6992
>> Removing city A (0,6992)
 
remove 0 6993
>> Removing city A (0,6993)
 
remove 0 6994
>> Removing city A (0,6994)
 
remove 0 6995
>> Removing city A (0,6995)
 
remove 0 6996
>> Removing city A (0,6996)
 
remove 0 6997
>> Removing city A (0,6997)
 
remove 0 6998
>> Removing city A (0,6998)
 
remove 0 6999
>> Removing city A (0,6999)
 
remove 0 7000
>> Removing city A (0,7000)
 
remove 0 7001
>> Removing city A (0,7001)
 
remove 0 7002
>> Removing city A (0,7002)
 
remove 0 7003
>> Removing city A (0,7003)
 
remove 0 7004
>> Removing city A (0,7004)
 
remove 0 7005
>> Removing city A (0,7005)
 
remove 0 7006
>> Removing city A (0,7006)
 
remove 0 7007
>> Removing city A (0,7007)
 
remove 0 7008
>> Removing city A (0,7008)
 
remove 0 7009
>> Removing city A (0,7009)
 
remove 0 7010
>> Removing city A (0,7010)
 
remove 0 7011
>> Removing city A (0,7011)
 
remove 0 7012
>> Removing city A (0,7012)
 
remove 0 7013
>> Removing city A (0,7013)
 
remove 0 7014
>> Removing city A (0,7014)
 
remove 0 7015
>> Removing city A (0,7015)
 
remove 0 7016
>> Removing city A (0,7016)
 
remove 0 7017
>> Removing city A (0,7017)
 
remove 0 7018
>> Removing city A (0,7018)
 
remove 0 7019
>> Removing city A (0,7019)
 
remove 0 7020
>> Removing city A (0,7020)
 
remove 0 7021
>> Removing city A (0,7021)
 
remove 0 7022
>> Removing city A (0,7022)
 
remove 0 7023
>> Removing city A (0,7023)
 
remove 0 7024
>> Removing city A (0,7024)
 
remove 0 7025
>> Removing city A (0,7025)
 
remove 0 7026
>> Removing city A (0,7026)
 
remove 0 7027
>> Removing city A (0,7027)
 
remove 0 7028
>> Removing city A (0,7028)
 
remove 0 7029
>> Removing city A (0,7029)
 
remove 0 7030
>> Removing city A (0,7030)
 
remove 0 7031
>> Removing city A (0,7031)
 
remove 0 7032
>> Removing city A (0,7032)
 
remove 0 7033
>> Removing city A (0,7033)
 
remove 0 7034
>> Removing city A (0,7034)
 
remove 0 7035
>> Removing city A (0,7035)
 
remove 0 7036
>> Removing city A (0,7036)
 
remove 0 7037
>> Removing city A (0,7037)
 
remove 0 7038
>> Removing city A (0,7038)
 
remove 0 7039
>> Removing city A (0,7039)
 
remove 0 7040
>> Removing city A (0,7040)
 
remove 0 7041
>> Removing city A (0,7041)
 
remove 0 7042
>> Removing city A (0,7042)
 
remove 0 7043
>> Removing city A (0,7043)
 
remove 0 7044
>> Removing city A (0,7044)
 
remove 0 7045
>> Removing city A (0,7045)
 
remove 0 7046
>> Removing city A (0,7046)
 
remove 0 7047
>> Removing city A (0,7047)
 
remove 0 7048
>> Removing city A (0,7048)
 
remove 0 7049
>> Removing city A (0,7049)
 
remove 0 7050
>> Removing city A (0,7050)
 
remove 0 7051
>> Removing city A (0,7051)
 
remove 0 7052
>> Removing city A (0,7052)
 
remove 0 7053
>> Removing city A (0,7053)
 
remove 0 7054
>> Removing city A (0,7054)
 
remove 0 7055
>> Removing city A (0,7055)
 
remove 0 7056
>> Removing city A (0,7056)
 
remove 0 7057
>> Removing city A (0,7057)
 
remove 0 7058
>> Removing city A (0,7058)
 
remove 0 7059
>> Removing city A (0,7059)
 
remove 0 7060
>> Removing city A (0,7060)
 
remove 0 7061
>> Removing city A (0,7061)
 
remove 0 7062
>> Removing city A (0,7062)
 
remove 0 7063
>> Removing city A (0,7063)
 
remove 0 7064
>> Removing city A (0,7064)
 
remove 0 7065
>> Removing city A (0,7065)
 
remove 0 7066
>> Removing city A (0,7066)
 
remove 0 7067
>> Removing city A (0,7067)
 
remove 0 7068
>> Removing city A (0,7068)
 
remove 0 7069
>> Removing city A (0,7069)
 
remove 0 7070
>> Removing city A (0,7070)
 
remove 0 7071
>> Removing city A (0,7071)
 
remove 0 7072
>> Removing city A (0,7072)
 
remove 0 7073
>> Removing city A (0,7073)
 
remove 0 7074
>> Removing city A (0,7074)
 
remove 0 7075
>> Removing city A (0,7075)
 
remove 0 7076
>> Removing city A (0,7076)
 
remove 0 7077
>> Removing city A (0,7077)
 
remove 0 7078
>> Removing city A (0,7078)
 
remove 0 7079
>> Removing city A (0,7079)
 
remove 0 7080
>> Removing city A (0,7080)
 
remove 0 7081
>> Removing city A (0,7081)
 
remove 0 7082
>> Removing city A (0,7082)
 
remove 0 7083
>> Removing city A (0,7083)
 
remove 0 7084
>> Removing city A (0,7084)
 
remove 0 7085
>> Removing city A (0,7085)
 
remove 0 7086
>> Removing city A (0,7086)
 
remove 0 7087
>> Removing city A (0,7087)
 
remove 0 7088
>> Removing city A (0,7088)
 
remove 0 7089
>> Removing city A (0,7089)
 
remove 0 7090
>> Removing city A (0,7090)
 
remove 0 7091
>> Removing city A (0,7091)
 
remove 0 7092
>> Removing city A (0,7092)
 
remove 0 7093
>> Removing city A (0,7093)
 
remove 0 7094
>> Removing city A (0,7094)
 
remove 0 7095
>> Removing city A (0,7095)
 
remove 0 7096
>> Removing city A (0,7096)
 
remove 0 7097
>> Removing city A (0,7097)
 
remove 0 7098
>> Removing city A (0,7098)
 
remove 0 7099
>> Removing city A (0,7099)
 
remove 0 7100
>> Removing city A (0,7100)
 
remove 0 7101
>> Removing city A (0,7101)
 
remove 0 7102
>> Removing city A (0,7102)
 
remove 0 7103
>> Removing city A (0,7103)
 
remove 0 7104
>> Removing city A (0,7104)
 
remove 0 7105
>> Removing city A (0,7105)
 
remove 0 7106
>> Removing city A (0,7106)
 
remove 0 7107
>> Removing city A (0,7107)
 
remove 0 7108
>> Removing city A (0,7108)
 
remove 0 7109
>> Removing city A (0,7109)
 
remove 0 7110
>> Removing city A (0,7110)
 
remove 0 7111
>> Removing city A (0,7111)
 
remove 0 7112
>> Removing city A (0,7112)
 
remove 0 7113
>> Removing city A (0,7113)
 
remove 0 7114
>> Removing city A (0,7114)
 
remove 0 7115
>> Removing city A (0,7115)
 
remove 0 7116
>> Removing city A (0,7116)
 
remove 0 7117
>> Removing city A (0,7117)
 
remove 0 7118
>> Removing city A (0,7118)
 
remove 0 7119
>> Removing city A (0,7119)
 
remove 0 7120
>> Removing city A (0,7120)
 
remove 0 7121
>> Removing city A (0,7121)
 
remove 0 7122
>> Removing city A (0,7122)
 
remove 0 7123
>> Removing city A (0,7123)
 
remove 0 7124
>> Removing city A (0,7124)
 
remove 0 7125
>> Removing city A (0,7125)
 
remove 0 7126
>> Removing city A (0,7126)
 
remove 0 7127
>> Removing city A (0,7127)
 
remove 0 7128
>> Removing city A (0,7128)
 
remove 0 7129
>> Removing city A (0,7129)
 
remove 0 7130
>> Removing city A (0,7130)
 
remove 0 7131
>> Removing city A (0,7131)
 
remove 0 7132
>> Removing city A (0,7132)
 
remove 0 7133
>> Removing city A (0,7133)
 
remove 0 7134
>> Removing city A (0,7134)
 
remove 0 7135
>> Removing city A (0,7135)
 
remove 0 7136
>> Removing city A (0,7136)
 
remove 0 7137
>> Removing city A (0,7137)
 
remove 0 7138
>> Removing city A (0,7138)
 
remove 0 7139
>> Removing city A (0,7139)
 
remove 0 7140
>> Removing city A (0,7140)
 
remove 0 7141
>> Removing city A (0,7141)
 
remove 0 7142
>> Removing city A (0,7142)
 
remove 0 7143
>> Removing city A (0,7143)
 
remove 0 7144
>> Removing city A (0,7144)
 
remove 0 7145
>> Removing city A (0,7145)
 
remove 0 7146
>> Removing city A (0,7146)
 
remove 0 7147
>> Removing city A (0,7147)
 
remove 0 7148
>> Removing city A (0,7148)
 
remove 0 7149
>> Removing city A (0,7149)
 
remove 0 7150
>> Removing city A (0,7150)
 
remove 0 7151
>> Removing city A (0,7151)
 
remove 0 7152
>> Removing city A (0,7152)
 
remove 0 7153
>> Removing city A (0,7153)
 
remove 0 7154
>> Removing city A (0,7154)
 
remove 0 7155
>> Removing city A (0,7155)
 
remove 0 7156
>> Removing city A (0,7156)
 
remove 0 7157
>> Removing city A (0,7157)
 
remove 0 7158
>> Removing city A (0,7158)
 
remove 0 7159
>> Removing city A (0,7159)
 
remove 0 7160
>> Removing city A (0,7160)
 
remove 0 7161
>> Removing city A (0,7161)
 
remove 0 7162
>> Removing city A (0,7162)
 
remove 0 7163
>> Removing city A (0,7163)
 
remove 0 7164
>> Removing city A (0,7164)
 
remove 0 7165
>> Removing city A (0,7165)
 
remove 0 7166
>> Removing city A (0,7166)
 
remove 0 7167
>> Removing city A (0,7167)
 
remove 0 7168
>> Removing city A (0,7168)
 
remove 0 7169
>> Removing city A (0,7169)
 
remove 0 7170
>> Removing city A (0,7170)
 
remove 0 7171
>> Removing city A (0,7171)
 
remove 0 7172
>> Removing city A (0,7172)
 
remove 0 7173
>> Removing city A (0,7173)
 
remove 0 7174
>> Removing city A (0,7174)
 
remove 0 7175
>> Removing city A (0,7175)
 
remove 0 7176
>> Removing city A (0,7176)
 
remove 0 7177
>> Removing city A (0,7177)
 
remove 0 7178
>> Removing city A (0,7178)
 
remove 0 7179
>> Removing city A (0,7179)
 
remove 0 7180
>> Removing city A (0,7180)
 
remove 0 7181
>> Removing city A (0,7181)
 
remove 0 7182
>> Removing city A (0,7182)
 
remove 0 7183
>> Removing city A (0,7183)
 
remove 0 7184
>> Removing city A (0,7184)
 
remove 0 7185
>> Removing city A (0,7185)
 
remove 0 7186
>> Removing city A (0,7186)
 
remove 0 7187
>> Removing city A (0,7187)
 
remove 0 7188
>> Removing city A (0,7188)
 
remove 0 7189
>> Removing city A (0,7189)
 
remove 0 7190
>> Removing city A (0,7190)
 
remove 0 7191
>> Removing city A (0,7191)
 
remove 0 7192
>> Removing city A (0,7192)
 
remove 0 7193
>> Removing city A (0,7193)
 
remove 0 7194
>> Removing city A (0,7194)
 
remove 0 7195
>> Removing city A (0,7195)
 
remove 0 7196
>> Removing city A (0,7196)
 
remove 0 7197
>> Removing city A (0,7197)
 
remove 0 7198
>> Removing city A (0,7198)
 
remove 0 7199
>> Removing city A (0,7199)
 
remove 0 7200
>> Removing city A (0,7200)
 
remove 0 7201
>> Removing city A (0,7201)
 
remove 0 7202
>> Removing city A (0,7202)
 
remove 0 7203
>> Removing city A (0,7203)
 
remove 0 7204
>> Removing city A (0,7204)
 
remove 0 7205
>> Removing city A (0,7205)
 
remove 0 7206
>> Removing city A (0,7206)
 
remove 0 7207
>> Removing city A (0,7207)
 
remove 0 7208
>> Removing city A (0,7208)
 
remove 0 7209
>> Removing city A (0,7209)
 
remove 0 7210
>> Removing city A (0,7210)
 
remove 0 7211
>> Removing city A (0,7211)
 
remove 0 7212
>> Removing city A (0,7212)
 
remove 0 7213
>> Removing city A (0,7213)
 
remove 0 7214
>> Removing city A (0,7214)
 
remove 0 7215
>> Removing city A (0,7215)
 
remove 0 7216
>> Removing city A (0,7216)
 
remove 0 7217
>> Removing city A (0,7217)
 
remove 0 7218
>> Removing city A (0,7218)
 
remove 0 7219
>> Removing city A (0,7219)
 
remove 0 7220
>> Removing city A (0,7220)
 
remove 0 7221
>> Removing city A (0,7221)
 
remove 0 7222
>> Removing city A (0,7222)
 
remove 0 7223
>> Removing city A (0,7223)
 
remove 0 7224
>> Removing city A (0,7224)
 
remove 0 7225
>> Removing city A (0,7225)
 
remove 0 7226
>> Removing city A (0,7226)
 
remove 0 7227
>> Removing city A (0,7227)
 
remove 0 7228
>> Removing city A (0,7228)
 
remove 0 7229
>> Removing city A (0,7229)
 
remove 0 7230
>> Removing city A (0,7230)
 
remove 0 7231
>> Removing city A (0,7231)
 
remove 0 7232
>> Removing city A (0,7232)
 
remove 0 7233
>> Removing city A (0,7233)
 
remove 0 7234
>> Removing city A (0,7234)
 
remove 0 7235
>> Removing city A (0,7235)
 
remove 0 7236
>> Removing city A (0,7236)
 
remove 0 7237
>> Removing city A (0,7237)
 
remove 0 7238
>> Removing city A (0,7238)
 
remove 0 7239
>> Removing city A (0,7239)
 
remove 0 7240
>> Removing city A (0,7240)
 
remove 0 7241
>> Removing city A (0,7241)
 
remove 0 7242
>> Removing city A (0,7242)
 
remove 0 7243
>> Removing city A (0,7243)
 
remove 0 7244
>> Removing city A (0,7244)
 
remove 0 7245
>> Removing city A (0,7245)
 
remove 0 7246
>> Removing city A (0,7246)
 
remove 0 7247
>> Removing city A (0,7247)
 
remove 0 7248
>> Removing city A (0,7248)
 
remove 0 7249
>> Removing city A (0,7249)
 
remove 0 7250
>> Removing city A (0,7250)
 
remove 0 7251
>> Removing city A (0,7251)
 
remove 0 7252
>> Removing city A (0,7252)
 
remove 0 7253
>> Removing city A (0,7253)
 
remove 0 7254
>> Removing city A (0,7254)
 
remove 0 7255
>> Removing city A (0,7255)
 
remove 0 7256
>> Removing city A (0,7256)
 
remove 0 7257
>> Removing city A (0,7257)
 
remove 0 7258
>> Removing city A (0,7258)
 
remove 0 7259
>> Removing city A (0,7259)
 
remove 0 7260
>> Removing city A (0,7260)
 
remove 0 7261
>> Removing city A (0,7261)
 
remove 0 7262
>> Removing city A (0,7262)
 
remove 0 7263
>> Removing city A (0,7263)
 
remove 0 7264
>> Removing city A (0,7264)
 
remove 0 7265
>> Removing city A (0,7265)
 
remove 0 7266
>> Removing city A (0,7266)
 
remove 0 7267
>> Removing city A (0,7267)
 
remove 0 7268
>> Removing city A (0,7268)
 
remove 0 7269
>> Removing city A (0,7269)
 
remove 0 7270
>> Removing city A (0,7270)
 
remove 0 7271
>> Removing city A (0,7271)
 
remove 0 7272
>> Removing city A (0,7272)
 
remove 0 7273
>> Removing city A (0,7273)
 
remove 0 7274
>> Removing city A (0,7274)
 
remove 0 7275
>> Removing city A (0,7275)
 
remove 0 7276
>> Removing city A (0,7276)
 
remove 0 7277
>> Removing city A (0,7277)
 
remove 0 7278
>> Removing city A (0,7278)
 
remove 0 7279
>> Removing city A (0,7279)
 
remove 0 7280
>> Removing city A (0,7280)
 
remove 0 7281
>> Removing city A (0,7281)
 
remove 0 7282
>> Removing city A (0,7282)
 
remove 0 7283
>> Removing city A (0,7283)
 
remove 0 7284
>> Removing city A (0,7284)
 
remove 0 7285
>> Removing city A (0,7285)
 
remove 0 7286
>> Removing city A (0,7286)
 
remove 0 7287
>> Removing city A (0,7287)
 
remove 0 7288
>> Removing city A (0,7288)
 
remove 0 7289
>> Removing city A (0,7289)
 
remove 0 7290
>> Removing city A (0,7290)
 
remove 0 7291
>> Removing city A (0,7291)
 
remove 0 7292
>> Removing city A (0,7292)
 
remove 0 7293
>> Removing city A (0,7293)
 
remove 0 7294
>> Removing city A (0,7294)
 
remove 0 7295
>> Removing city A (0,7295)
 
remove 0 7296
>> Removing city A (0,7296)
 
remove 0 7297
>> Removing city A (0,7297)
 
remove 0 7298
>> Removing city A (0,7298)
 
remove 0 7299
>> Removing city A (0,7299)
 
remove 0 7300
>> Removing city A (0,7300)
 
remove 0 7301
>> Removing city A (0,7301)
 
remove 0 7302
>> Removing city A (0,7302)
 
remove 0 7303
>> Removing city A (0,7303)
 
remove 0 7304
>> Removing city A (0,7304)
 
remove 0 7305
>> Removing city A (0,7305)
 
remove 0 7306
>> Removing city A (0,7306)
 
remove 0 7307
>> Removing city A (0,7307)
 
remove 0 7308
>> Removing city A (0,7308)
 
remove 0 7309
>> Removing city A (0,7309)
 
remove 0 7310
>> Removing city A (0,7310)
 
remove 0 7311
>> Removing city A (0,7311)
 
remove 0 7312
>> Removing city A (0,7312)
 
remove 0 7313
>> Removing city A (0,7313)
 
remove 0 7314
>> Removing city A (0,7314)
 
remove 0 7315
>> Removing city A (0,7315)
 
remove 0 7316
>> Removing city A (0,7316)
 
remove 0 7317
>> Removing city A (0,7317)
 
remove 0 7318
>> Removing city A (0,7318)
 
remove 0 7319
>> Removing city A (0,7319)
 
remove 0 7320
>> Removing city A (0,7320)
 
remove 0 7321
>> Removing city A (0,7321)
 
remove 0 7322
>> Removing city A (0,7322)
 
remove 0 7323
>> Removing city A (0,7323)
 
remove 0 7324
>> Removing city A (0,7324)
 
remove 0 7325
>> Removing city A (0,7325)
 
remove 0 7326
>> Removing city A (0,7326)
 
remove 0 7327
>> Removing city A (0,7327)
 
remove 0 7328
>> Removing city A (0,7328)
 
remove 0 7329
>> Removing city A (0,7329)
 
remove 0 7330
>> Removing city A (0,7330)
 
remove 0 7331
>> Removing city A (0,7331)
 
remove 0 7332
>> Removing city A (0,7332)
 
remove 0 7333
>> Removing city A (0,7333)
 
remove 0 7334
>> Removing city A (0,7334)
 
remove 0 7335
>> Removing city A (0,7335)
 
remove 0 7336
>> Removing city A (0,7336)
 
remove 0 7337
>> Removing city A (0,7337)
 
remove 0 7338
>> Removing city A (0,7338)
 
remove 0 7339
>> Removing city A (0,7339)
 
remove 0 7340
>> Removing city A (0,7340)
 
remove 0 7341
>> Removing city A (0,7341)
 
remove 0 7342
>> Removing city A (0,7342)
 
remove 0 7343
>> Removing city A (0,7343)
 
remove 0 7344
>> Removing city A (0,7344)
 
remove 0 7345
>> Removing city A (0,7345)
 
remove 0 7346
>> Removing city A (0,7346)
 
remove 0 7347
>> Removing city A (0,7347)
 
remove 0 7348
>> Removing city A (0,7348)
 
remove 0 7349
>> Removing city A (0,7349)
 
remove 0 7350
>> Removing city A (0,7350)
 
remove 0 7351
>> Removing city A (0,7351)
 
remove 0 7352
>> Removing city A (0,7352)
 
remove 0 7353
>> Removing city A (0,7353)
 
remove 0 7354
>> Removing city A (0,7354)
 
remove 0 7355
>> Removing city A (0,7355)
 
remove 0 7356
>> Removing city A (0,7356)
 
remove 0 7357
>> Removing city A (0,7357)
 
remove 0 7358
>> Removing city A (0,7358)
 
remove 0 7359
>> Removing city A (0,7359)
 
remove 0 7360
>> Removing city A (0,7360)
 
remove 0 7361
>> Removing city A (0,7361)
 
remove 0 7362
>> Removing city A (0,7362)
 
remove 0 7363
>> Removing city A (0,7363)
 
remove 0 7364
>> Removing city A (0,7364)
 
remove 0 7365
>> Removing city A (0,7365)
 
remove 0 7366
>> Removing city A (0,7366)
 
remove 0 7367
>> Removing city A (0,7367)
 
remove 0 7368
>> Removing city A (0,7368)
 
remove 0 7369
>> Removing city A (0,7369)
 
remove 0 7370
>> Removing city A (0,7370)
 
remove 0 7371
>> Removing city A (0,7371)
 
remove 0 7372
>> Removing city A (0,7372)
 
remove 0 7373
>> Removing city A (0,7373)
 
remove 0 7374
>> Removing city A (0,7374)
 
remove 0 7375
>> Removing city A (0,7375)
 
remove 0 7376
>> Removing city A (0,7376)
 
remove 0 7377
>> Removing city A (0,7377)
 
remove 0 7378
>> Removing city A (0,7378)
 
remove 0 7379
>> Removing city A (0,7379)
 
remove 0 7380
>> Removing city A (0,7380)
 
remove 0 7381
>> Removing city A (0,7381)
 
remove 0 7382
>> Removing city A (0,7382)
 
remove 0 7383
>> Removing city A (0,7383)
 
remove 0 7384
>> Removing city A (0,7384)
 
remove 0 7385
>> Removing city A (0,7385)
 
remove 0 7386
>> Removing city A (0,7386)
 
remove 0 7387
>> Removing city A (0,7387)
 
remove 0 7388
>> Removing city A (0,7388)
 
remove 0 7389
>> Removing city A (0,7389)
 
remove 0 7390
>> Removing city A (0,7390)
 
remove 0 7391
>> Removing city A (0,7391)
 
remove 0 7392
>> Removing city A (0,7392)
 
remove 0 7393
>> Removing city A (0,7393)
 
remove 0 7394
>> Removing city A (0,7394)
 
remove 0 7395
>> Removing city A (0,7395)
 
remove 0 7396
>> Removing city A (0,7396)
 
remove 0 7397
>> Removing city A (0,7397)
 
remove 0 7398
>> Removing city A (0,7398)
 
remove 0 7399
>> Removing city A (0,7399)
 
remove 0 7400
>> Removing city A (0,7400)
 
remove 0 7401
>> Removing city A (0,7401)
 
remove 0 7402
>> Removing city A (0,7402)
 
remove 0 7403
>> Removing city A (0,7403)
 
remove 0 7404
>> Removing city A (0,7404)
 
remove 0 7405
>> Removing city A (0,7405)
 
remove 0 7406
>> Removing city A (0,7406)
 
remove 0 7407
>> Removing city A (0,7407)
 
remove 0 7408
>> Removing city A (0,7408)
 
remove 0 7409
>> Removing city A (0,7409)
 
remove 0 7410
>> Removing city A (0,7410)
 
remove 0 7411
>> Removing city A (0,7411)
 
remove 0 7412
>> Removing city A (0,7412)
 
remove 0 7413
>> Removing city A (0,7413)
 
remove 0 7414
>> Removing city A (0,7414)
 
remove 0 7415
>> Removing city A (0,7415)
 
remove 0 7416
>> Removing city A (0,7416)
 
remove 0 7417
>> Removing city A (0,7417)
 
remove 0 7418
>> Removing city A (0,7418)
 
remove 0 7419
>> Removing city A (0,7419)
 
remove 0 7420
>> Removing city A (0,7420)
 
remove 0 7421
>> Removing city A (0,7421)
 
remove 0 7422
>> Removing city A (0,7422)
 
remove 0 7423
>> Removing city A (0,7423)
 
remove 0 7424
>> Removing city A (0,7424)
 
remove 0 7425
>> Removing city A (0,7425)
 
remove 0 7426
>> Removing city A (0,7426)
 
remove 0 7427
>> Removing city A (0,7427)
 
remove 0 7428
>> Removing city A (0,7428)
 
remove 0 7429
>> Removing city A (0,7429)
 
remove 0 7430
>> Removing city A (0,7430)
 
remove 0 7431
>> Removing city A (0,7431)
 
remove 0 7432
>> Removing city A (0,7432)
 
remove 0 7433
>> Removing city A (0,7433)
 
remove 0 7434
>> Removing city A (0,7434)
 
remove 0 7435
>> Removing city A (0,7435)
 
remove 0 7436
>> Removing city A (0,7436)
 
remove 0 7437
>> Removing city A (0,7437)
 
remove 0 7438
>> Removing city A (0,7438)
 
remove 0 7439
>> Removing city A (0,7439)
 
remove 0 7440
>> Removing city A (0,7440)
 
remove 0 7441
>> Removing city A (0,7441)
 
remove 0 7442
>> Removing city A (0,7442)
 
remove 0 7443
>> Removing city A (0,7443)
 
remove 0 7444
>> Removing city A (0,7444)
 
remove 0 7445
>> Removing city A (0,7445)
 
remove 0 7446
>> Removing city A (0,7446)
 
remove 0 7447
>> Removing city A (0,7447)
 
remove 0 7448
>> Removing city A (0,7448)
 
remove 0 7449
>> Removing city A (0,7449)
 
remove 0 7450
>> Removing city A (0,7450)
 
remove 0 7451
>> Removing city A (0,7451)
 
remove 0 7452
>> Removing city A (0,7452)
 
remove 0 7453
>> Removing city A (0,7453)
 
remove 0 7454
>> Removing city A (0,7454)
 
remove 0 7455
>> Removing city A (0,7455)
 
remove 0 7456
>> Removing city A (0,7456)
 
remove 0 7457
>> Removing city A (0,7457)
 
remove 0 7458
>> Removing city A (0,7458)
 
remove 0 7459
>> Removing city A (0,7459)
 
remove 0 7460
>> Removing city A (0,7460)
 
remove 0 7461
>> Removing city A (0,7461)
 
remove 0 7462
>> Removing city A (0,7462)
 
remove 0 7463
>> Removing city A (0,7463)
 
remove 0 7464
>> Removing city A (0,7464)
 
remove 0 7465
>> Removing city A (0,7465)
 
remove 0 7466
>> Removing city A (0,7466)
 
remove 0 7467
>> Removing city A (0,7467)
 
remove 0 7468
>> Removing city A (0,7468)
 
remove 0 7469
>> Removing city A (0,7469)
 
remove 0 7470
>> Removing city A (0,7470)
 
remove 0 7471
>> Removing city A (0,7471)
 
remove 0 7472
>> Removing city A (0,7472)
 
remove 0 7473
>> Removing city A (0,7473)
 
remove 0 7474
>> Removing city A (0,7474)
 
remove 0 7475
>> Removing city A (0,7475)
 
remove 0 7476
>> Removing city A (0,7476)
 
remove 0 7477
>> Removing city A (0,7477)
 
remove 0 7478
>> Removing city A (0,7478)
 
remove 0 7479
>> Removing city A (0,7479)
 
remove 0 7480
>> Removing city A (0,7480)
 
remove 0 7481
>> Removing city A (0,7481)
 
remove 0 7482
>> Removing city A (0,7482)
 
remove 0 7483
>> Removing city A (0,7483)
 
remove 0 7484
>> Removing city A (0,7484)
 
remove 0 7485
>> Removing city A (0,7485)
 
remove 0 7486
>> Removing city A (0,7486)
 
remove 0 7487
>> Removing city A (0,7487)
 
remove 0 7488
>> Removing city A (0,7488)
 
remove 0 7489
>> Removing city A (0,7489)
 
remove 0 7490
>> Removing city A (0,7490)
 
remove 0 7491
>> Removing city A (0,7491)
 
remove 0 7492
>> Removing city A (0,7492)
 
remove 0 7493
>> Removing city A (0,7493)
 
remove 0 7494
>> Removing city A (0,7494)
 
remove 0 7495
>> Removing city A (0,7495)
 
remove 0 7496
>> Removing city A (0,7496)
 
remove 0 7497
>> Removing city A (0,7497)
 
remove 0 7498
>> Removing city A (0,7498)
 
remove 0 7499
>> Removing city A (0,7499)
 
remove 0 7500
>> Removing city A (0,7500)
 
remove 0 7501
>> Removing city A (0,7501)
 
remove 0 7502
>> Removing city A (0,7502)
 
remove 0 7503
>> Removing city A (0,7503)
 
remove 0 7504
>> Removing city A (0,7504)
 
remove 0 7505
>> Removing city A (0,7505)
 
remove 0 7506
>> Removing city A (0,7506)
 
remove 0 7507
>> Removing city A (0,7507)
 
remove 0 7508
>> Removing city A (0,7508)
 
remove 0 7509
>> Removing city A (0,7509)
 
remove 0 7510
>> Removing city A (0,7510)
 
remove 0 7511
>> Removing city A (0,7511)
 
remove 0 7512
>> Removing city A (0,7512)
 
remove 0 7513
>> Removing city A (0,7513)
 
remove 0 7514
>> Removing city A (0,7514)
 
remove 0 7515
>> Removing city A (0,7515)
 
remove 0 7516
>> Removing city A (0,7516)
 
remove 0 7517
>> Removing city A (0,7517)
 
remove 0 7518
>> Removing city A (0,7518)
 
remove 0 7519
>> Removing city A (0,7519)
 
remove 0 7520
>> Removing city A (0,7520)
 
remove 0 7521
>> Removing city A (0,7521)
 
remove 0 7522
>> Removing city A (0,7522)
 
remove 0 7523
>> Removing city A (0,7523)
 
remove 0 7524
>> Removing city A (0,7524)
 
remove 0 7525
>> Removing city A (0,7525)
 
remove 0 7526
>> Removing city A (0,7526)
 
remove 0 7527
>> Removing city A (0,7527)
 
remove 0 7528
>> Removing city A (0,7528)
 
remove 0 7529
>> Removing city A (0,7529)
 
remove 0 7530
>> Removing city A (0,7530)
 
remove 0 7531
>> Removing city A (0,7531)
 
remove 0 7532
>> Removing city A (0,7532)
 
remove 0 7533
>> Removing city A (0,7533)
 
remove 0 7534
>> Removing city A (0,7534)
 
remove 0 7535
>> Removing city A (0,7535)
 
remove 0 7536
>> Removing city A (0,7536)
 
remove 0 7537
>> Removing city A (0,7537)
 
remove 0 7538
>> Removing city A (0,7538)
 
remove 0 7539
>> Removing city A (0,7539)
 
remove 0 7540
>> Removing city A (0,7540)
 
remove 0 7541
>> Removing city A (0,7541)
 
remove 0 7542
>> Removing city A (0,7542)
 
remove 0 7543
>> Removing city A (0,7543)
 
remove 0 7544
>> Removing city A (0,7544)
 
remove 0 7545
>> Removing city A (0,7545)
 
remove 0 7546
>> Removing city A (0,7546)
 
remove 0 7547
>> Removing city A (0,7547)
 
remove 0 7548
>> Removing city A (0,7548)
 
remove 0 7549
>> Removing city A (0,7549)
 
remove 0 7550
>> Removing city A (0,7550)
 
remove 0 7551
>> Removing city A (0,7551)
 
remove 0 7552
>> Removing city A (0,7552)
 
remove 0 7553
>> Removing city A (0,7553)
 
remove 0 7554
>> Removing city A (0,7554)
 
remove 0 7555
>> Removing city A (0,7555)
 
remove 0 7556
>> Removing city A (0,7556)
 
remove 0 7557
>> Removing city A (0,7557)
 
remove 0 7558
>> Removing city A (0,7558)
 
remove 0 7559
>> Removing city A (0,7559)
 
remove 0 7560
>> Removing city A (0,7560)
 
remove 0 7561
>> Removing city A (0,7561)
 
remove 0 7562
>> Removing city A (0,7562)
 
remove 0 7563
>> Removing city A (0,7563)
 
remove 0 7564
>> Removing city A (0,7564)
 
remove 0 7565
>> Removing city A (0,7565)
 
remove 0 7566
>> Removing city A (0,7566)
 
remove 0 7567
>> Removing city A (0,7567)
 
remove 0 7568
>> Removing city A (0,7568)
 
remove 0 7569
>> Removing city A (0,7569)
 
remove 0 7570
>> Removing city A (0,7570)
 
remove 0 7571
>> Removing city A (0,7571)
 
remove 0 7572
>> Removing city A (0,7572)
 
remove 0 7573
>> Removing city A (0,7573)
 
remove 0 7574
>> Removing city A (0,7574)
 
remove 0 7575
>> Removing city A (0,7575)
 
remove 0 7576
>> Removing city A (0,7576)
 
remove 0 7577
>> Removing city A (0,7577)
 
remove 0 7578
>> Removing city A (0,7578)
 
remove 0 7579
>> Removing city A (0,7579)
 
remove 0 7580
>> Removing city A (0,7580)
 
remove 0 7581
>> Removing city A (0,7581)
 
remove 0 7582
>> Removing city A (0,7582)
 
remove 0 7583
>> Removing city A (0,7583)
 
remove 0 7584
>> Removing city A (0,7584)
 
remove 0 7585
>> Removing city A (0,7585)
 
remove 0 7586
>> Removing city A (0,7586)
 
remove 0 7587
>> Removing city A (0,7587)
 
remove 0 7588
>> Removing city A (0,7588)
 
remove 0 7589
>> Removing city A (0,7589)
 
remove 0 7590
>> Removing city A (0,7590)
 
remove 0 7591
>> Removing city A (0,7591)
 
remove 0 7592
>> Removing city A (0,7592)
 
remove 0 7593
>> Removing city A (0,7593)
 
remove 0 7594
>> Removing city A (0,7594)
 
remove 0 7595
>> Removing city A (0,7595)
 
remove 0 7596
>> Removing city A (0,7596)
 
remove 0 7597
>> Removing city A (0,7597)
 
remove 0 7598
>> Removing city A (0,7598)
 
remove 0 7599
>> Removing city A (0,7599)
 
remove 0 7600
>> Removing city A (0,7600)
 
remove 0 7601
>> Removing city A (0,7601)
 
remove 0 7602
>> Removing city A (0,7602)
 
remove 0 7603
>> Removing city A (0,7603)
 
remove 0 7604
>> Removing city A (0,7604)
 
remove 0 7605
>> Removing city A (0,7605)
 
remove 0 7606
>> Removing city A (0,7606)
 
remove 0 7607
>> Removing city A (0,7607)
 
remove 0 7608
>> Removing city A (0,7608)
 
remove 0 7609
>> Removing city A (0,7609)
 
remove 0 7610
>> Removing city A (0,7610)
 
remove 0 7611
>> Removing city A (0,7611)
 
remove 0 7612
>> Removing city A (0,7612)
 
remove 0 7613
>> Removing city A (0,7613)
 
remove 0 7614
>> Removing city A (0,7614)
 
remove 0 7615
>> Removing city A (0,7615)
 
remove 0 7616
>> Removing city A (0,7616)
 
remove 0 7617
>> Removing city A (0,7617)
 
remove 0 7618
>> Removing city A (0,7618)
 
remove 0 7619
>> Removing city A (0,7619)
 
remove 0 7620
>> Removing city A (0,7620)
 
remove 0 7621
>> Removing city A (0,7621)
 
remove 0 7622
>> Removing city A (0,7622)
 
remove 0 7623
>> Removing city A (0,7623)
 
remove 0 7624
>> Removing city A (0,7624)
 
remove 0 7625
>> Removing city A (0,7625)
 
remove 0 7626
>> Removing city A (0,7626)
 
remove 0 7627
>> Removing city A (0,7627)
 
remove 0 7628
>> Removing city A (0,7628)
 
remove 0 7629
>> Removing city A (0,7629)
 
remove 0 7630
>> Removing city A (0,7630)
 
remove 0 7631
>> Removing city A (0,7631)
 
remove 0 7632
>> Removing city A (0,7632)
 
remove 0 7633
>> Removing city A (0,7633)
 
remove 0 7634
>> Removing city A (0,7634)
 
remove 0 7635
>> Removing city A (0,7635)
 
remove 0 7636
>> Removing city A (0,7636)
 
remove 0 7637
>> Removing city A (0,7637)
 
remove 0 7638
>> Removing city A (0,7638)
 
remove 0 7639
>> Removing city A (0,7639)
 
remove 0 7640
>> Removing city A (0,7640)
 
remove 0 7641
>> Removing city A (0,7641)
 
remove 0 7642
>> Removing city A (0,7642)
 
remove 0 7643
>> Removing city A (0,7643)
 
remove 0 7644
>> Removing city A (0,7644)
 
remove 0 7645
>> Removing city A (0,7645)
 
remove 0 7646
>> Removing city A (0,7646)
 
remove 0 7647
>> Removing city A (0,7647)
 
remove 0 7648
>> Removing city A (0,7648)
 
remove 0 7649
>> Removing city A (0,7649)
 
remove 0 7650
>> Removing city A (0,7650)
 
remove 0 7651
>> Removing city A (0,7651)
 
remove 0 7652
>> Removing city A (0,7652)
 
remove 0 7653
>> Removing city A (0,7653)
 
remove 0 7654
>> Removing city A (0,7654)
 
remove 0 7655
>> Removing city A (0,7655)
 
remove 0 7656
>> Removing city A (0,7656)
 
remove 0 7657
>> Removing city A (0,7657)
 
remove 0 7658
>> Removing city A (0,7658)
 
remove 0 7659
>> Removing city A (0,7659)
 
remove 0 7660
>> Removing city A (0,7660)
 
remove 0 7661
>> Removing city A (0,7661)
 
remove 0 7662
>> Removing city A (0,7662)
 
remove 0 7663
>> Removing city A (0,7663)
 
remove 0 7664
>> Removing city A (0,7664)
 
remove 0 7665
>> Removing city A (0,7665)
 
remove 0 7666
>> Removing city A (0,7666)
 
remove 0 7667
>> Removing city A (0,7667)
 
remove 0 7668
>> Removing city A (0,7668)
 
remove 0 7669
>> Removing city A (0,7669)
 
remove 0 7670
>> Removing city A (0,7670)
 
remove 0 7671
>> Removing city A (0,7671)
 
remove 0 7672
>> Removing city A (0,7672)
 
remove 0 7673
>> Removing city A (0,7673)
 
remove 0 7674
>> Removing city A (0,7674)
 
remove 0 7675
>> Removing city A (0,7675)
 
remove 0 7676
>> Removing city A (0,7676)
 
remove 0 7677
>> Removing city A (0,7677)
 
remove 0 7678
>> Removing city A (0,7678)
 
remove 0 7679
>> Removing city A (0,7679)
 
remove 0 7680
>> Removing city A (0,7680)
 
remove 0 7681
>> Removing city A (0,7681)
 
remove 0 7682
>> Removing city A (0,7682)
 
remove 0 7683
>> Removing city A (0,7683)
 
remove 0 7684
>> Removing city A (0,7684)
 
remove 0 7685
>> Removing city A (0,7685)
 
remove 0 7686
>> Removing city A (0,7686)
 
remove 0 7687
>> Removing city A (0,7687)
 
remove 0 7688
>> Removing city A (0,7688)
 
remove 0 7689
>> Removing city A (0,7689)
 
remove 0 7690
>> Removing city A (0,7690)
 
remove 0 7691
>> Removing city A (0,7691)
 
remove 0 7692
>> Removing city A (0,7692)
 
remove 0 7693
>> Removing city A (0,7693)
 
remove 0 7694
>> Removing city A (0,7694)
 
remove 0 7695
>> Removing city A (0,7695)
 
remove 0 7696
>> Removing city A (0,7696)
 
remove 0 7697
>> Removing city A (0,7697)
 
remove 0 7698
>> Removing city A (0,7698)
 
remove 0 7699
>> Removing city A (0,7699)
 
remove 0 7700
>> Removing city A (0,7700)
 
remove 0 7701
>> Removing city A (0,7701)
 
remove 0 7702
>> Removing city A (0,7702)
 
remove 0 7703
>> Removing city A (0,7703)
 
remove 0 7704
>> Removing city A (0,7704)
 
remove 0 7705
>> Removing city A (0,7705)
 
remove 0 7706
>> Removing city A (0,7706)
 
remove 0 7707
>> Removing city A (0,7707)
 
remove 0 7708
>> Removing city A (0,7708)
 
remove 0 7709
>> Removing city A (0,7709)
 
remove 0 7710
>> Removing city A (0,7710)
 
remove 0 7711
>> Removing city A (0,7711)
 
remove 0 7712
>> Removing city A (0,7712)
 
remove 0 7713
>> Removing city A (0,7713)
 
remove 0 7714
>> Removing city A (0,7714)
 
remove 0 7715
>> Removing city A (0,7715)
 
remove 0 7716
>> Removing city A (0,7716)
 
remove 0 7717
>> Removing city A (0,7717)
 
remove 0 7718
>> Removing city A (0,7718)
 
remove 0 7719
>> Removing city A (0,7719)
 
remove 0 7720
>> Removing city A (0,7720)
 
remove 0 7721
>> Removing city A (0,7721)
 
remove 0 7722
>> Removing city A (0,7722)
 
remove 0 7723
>> Removing city A (0,7723)
 
remove 0 7724
>> Removing city A (0,7724)
 
remove 0 7725
>> Removing city A (0,7725)
 
remove 0 7726
>> Removing city A (0,7726)
 
remove 0 7727
>> Removing city A (0,7727)
 
remove 0 7728
>> Removing city A (0,7728)
 
remove 0 7729
>> Removing city A (0,7729)
 
remove 0 7730
>> Removing city A (0,7730)
 
remove 0 7731
>> Removing city A (0,7731)
 
remove 0 7732
>> Removing city A (0,7732)
 
remove 0 7733
>> Removing city A (0,7733)
 
remove 0 7734
>> Removing city A (0,7734)
 
remove 0 7735
>> Removing city A (0,7735)
 
remove 0 7736
>> Removing city A (0,7736)
 
remove 0 7737
>> Removing city A (0,7737)
 
remove 0 7738
>> Removing city A (0,7738)
 
remove 0 7739
>> Removing city A (0,7739)
 
remove 0 7740
>> Removing city A (0,7740)
 
remove 0 7741
>> Removing city A (0,7741)
 
remove 0 7742
>> Removing city A (0,7742)
 
remove 0 7743
>> Removing city A (0,7743)
 
remove 0 7744
>> Removing city A (0,7744)
 
remove 0 7745
>> Removing city A (0,7745)
 
remove 0 7746
>> Removing city A (0,7746)
 
remove 0 7747
>> Removing city A (0,7747)
 
remove 0 7748
>> Removing city A (0,7748)
 
remove 0 7749
>> Removing city A (0,7749)
 
remove 0 7750
>> Removing city A (0,7750)
 
remove 0 7751
>> Removing city A (0,7751)
 
remove 0 7752
>> Removing city A (0,7752)
 
remove 0 7753
>> Removing city A (0,7753)
 
remove 0 7754
>> Removing city A (0,7754)
 
remove 0 7755
>> Removing city A (0,7755)
 
remove 0 7756
>> Removing city A (0,7756)
 
remove 0 7757
>> Removing city A (0,7757)
 
remove 0 7758
>> Removing city A (0,7758)
 
remove 0 7759
>> Removing city A (0,7759)
 
remove 0 7760
>> Removing city A (0,7760)
 
remove 0 7761
>> Removing city A (0,7761)
 
remove 0 7762
>> Removing city A (0,7762)
 
remove 0 7763
>> Removing city A (0,7763)
 
remove 0 7764
>> Removing city A (0,7764)
 
remove 0 7765
>> Removing city A (0,7765)
 
remove 0 7766
>> Removing city A (0,7766)
 
remove 0 7767
>> Removing city A (0,7767)
 
remove 0 7768
>> Removing city A (0,7768)
 
remove 0 7769
>> Removing city A (0,7769)
 
remove 0 7770
>> Removing city A (0,7770)
 
remove 0 7771
>> Removing city A (0,7771)
 
remove 0 7772
>> Removing city A (0,7772)
 
remove 0 7773
>> Removing city A (0,7773)
 
remove 0 7774
>> Removing city A (0,7774)
 
remove 0 7775
>> Removing city A (0,7775)
 
remove 0 7776
>> Removing city A (0,7776)
 
remove 0 7777
>> Removing city A (0,7777)
 
remove 0 7778
>> Removing city A (0,7778)
 
remove 0 7779
>> Removing city A (0,7779)
 
remove 0 7780
>> Removing city A (0,7780)
 
remove 0 7781
>> Removing city A (0,7781)
 
remove 0 7782
>> Removing city A (0,7782)
 
remove 0 7783
>> Removing city A (0,7783)
 
remove 0 7784
>> Removing city A (0,7784)
 
remove 0 7785
>> Removing city A (0,7785)
 
remove 0 7786
>> Removing city A (0,7786)
 
remove 0 7787
>> Removing city A (0,7787)
 
remove 0 7788
>> Removing city A (0,7788)
 
remove 0 7789
>> Removing city A (0,7789)
 
remove 0 7790
>> Removing city A (0,7790)
 
remove 0 7791
>> Removing city A (0,7791)
 
remove 0 7792
>> Removing city A (0,7792)
 
remove 0 7793
>> Removing city A (0,7793)
 
remove 0 7794
>> Removing city A (0,7794)
 
remove 0 7795
>> Removing city A (0,7795)
 
remove 0 7796
>> Removing city A (0,7796)
 
remove 0 7797
>> Removing city A (0,7797)
 
remove 0 7798
>> Removing city A (0,7798)
 
remove 0 7799
>> Removing city A (0,7799)
 
remove 0 7800
>> Removing city A (0,7800)
 
remove 0 7801
>> Removing city A (0,7801)
 
remove 0 7802
>> Removing city A (0,7802)
 
remove 0 7803
>> Removing city A (0,7803)
 
remove 0 7804
>> Removing city A (0,7804)
 
remove 0 7805
>> Removing city A (0,7805)
 
remove 0 7806
>> Removing city A (0,7806)
 
remove 0 7807
>> Removing city A (0,7807)
 
remove 0 7808
>> Removing city A (0,7808)
 
remove 0 7809
>> Removing city A (0,7809)
 
remove 0 7810
>> Removing city A (0,7810)
 
remove 0 7811
>> Removing city A (0,7811)
 
remove 0 7812
>> Removing city A (0,7812)
 
remove 0 7813
>> Removing city A (0,7813)
 
remove 0 7814
>> Removing city A (0,7814)
 
remove 0 7815
>> Removing city A (0,7815)
 
remove 0 7816
>> Removing city A (0,7816)
 
remove 0 7817
>> Removing city A (0,7817)
 
remove 0 7818
>> Removing city A (0,7818)
 
remove 0 7819
>> Removing city A (0,7819)
 
remove 0 7820
>> Removing city A (0,7820)
 
remove 0 7821
>> Removing city A (0,7821)
 
remove 0 7822
>> Removing city A (0,7822)
 
remove 0 7823
>> Removing city A (0,7823)
 
remove 0 7824
>> Removing city A (0,7824)
 
remove 0 7825
>> Removing city A (0,7825)
 
remove 0 7826
>> Removing city A (0,7826)
 
remove 0 7827
>> Removing city A (0,7827)
 
remove 0 7828
>> Removing city A (0,7828)
 
remove 0 7829
>> Removing city A (0,7829)
 
remove 0 7830
>> Removing city A (0,7830)
 
remove 0 7831
>> Removing city A (0,7831)
 
remove 0 7832
>> Removing city A (0,7832)
 
remove 0 7833
>> Removing city A (0,7833)
 
remove 0 7834
>> Removing city A (0,7834)
 
remove 0 7835
>> Removing city A (0,7835)
 
remove 0 7836
>> Removing city A (0,7836)
 
remove 0 7837
>> Removing city A (0,7837)
 
remove 0 7838
>> Removing city A (0,7838)
 
remove 0 7839
>> Removing city A (0,7839)
 
remove 0 7840
>> Removing city A (0,7840)
 
remove 0 7841
>> Removing city A (0,7841)
 
remove 0 7842
>> Removing city A (0,7842)
 
remove 0 7843
>> Removing city A (0,7843)
 
remove 0 7844
>> Removing city A (0,7844)
 
remove 0 7845
>> Removing city A (0,7845)
 
remove 0 7846
>> Removing city A (0,7846)
 
remove 0 7847
>> Removing city A (0,7847)
 
remove 0 7848
>> Removing city A (0,7848)
 
remove 0 7849
>> Removing city A (0,7849)
 
remove 0 7850
>> Removing city A (0,7850)
 
remove 0 7851
>> Removing city A (0,7851)
 
remove 0 7852
>> Removing city A (0,7852)
 
remove 0 7853
>> Removing city A (0,7853)
 
remove 0 7854
>> Removing city A (0,7854)
 
remove 0 7855
>> Removing city A (0,7855)
 
remove 0 7856
>> Removing city A (0,7856)
 
remove 0 7857
>> Removing city A (0,7857)
 
remove 0 7858
>> Removing city A (0,7858)
 
remove 0 7859
>> Removing city A (0,7859)
 
remove 0 7860
>> Removing city A (0,7860)
 
remove 0 7861
>> Removing city A (0,7861)
 
remove 0 7862
>> Removing city A (0,7862)
 
remove 0 7863
>> Removing city A (0,7863)
 
remove 0 7864
>> Removing city A (0,7864)
 
remove 0 7865
>> Removing city A (0,7865)
 
remove 0 7866
>> Removing city A (0,7866)
 
remove 0 7867
>> Removing city A (0,7867)
 
remove 0 7868
>> Removing city A (0,7868)
 
remove 0 7869
>> Removing city A (0,7869)
 
remove 0 7870
>> Removing city A (0,7870)
 
remove 0 7871
>> Removing city A (0,7871)
 
remove 0 7872
>> Removing city A (0,7872)
 
remove 0 7873
>> Removing city A (0,7873)
 
remove 0 7874
>> Removing city A (0,7874)
 
remove 0 7875
>> Removing city A (0,7875)
 
remove 0 7876
>> Removing city A (0,7876)
 
remove 0 7877
>> Removing city A (0,7877)
 
remove 0 7878
>> Removing city A (0,7878)
 
remove 0 7879
>> Removing city A (0,7879)
 
remove 0 7880
>> Removing city A (0,7880)
 
remove 0 7881
>> Removing city A (0,7881)
 
remove 0 7882
>> Removing city A (0,7882)
 
remove 0 7883
>> Removing city A (0,7883)
 
remove 0 7884
>> Removing city A (0,7884)
 
remove 0 7885
>> Removing city A (0,7885)
 
remove 0 7886
>> Removing city A (0,7886)
 
remove 0 7887
>> Removing city A (0,7887)
 
remove 0 7888
>> Removing city A (0,7888)
 
remove 0 7889
>> Removing city A (0,7889)
 
remove 0 7890
>> Removing city A (0,7890)
 
remove 0 7891
>> Removing city A (0,7891)
 
remove 0 7892
>> Removing city A (0,7892)
 
remove 0 7893
>> Removing city A (0,7893)
 
remove 0 7894
>> Removing city A (0,7894)
 
remove 0 7895
>> Removing city A (0,7895)
 
remove 0 7896
>> Removing city A (0,7896)
 
remove 0 7897
>> Removing city A (0,7897)
 
remove 0 7898
>> Removing city A (0,7898)
 
remove 0 7899
>> Removing city A (0,7899)
 
remove 0 7900
>> Removing city A (0,7900)
 
remove 0 7901
>> Removing city A (0,7901)
 
remove 0 7902
>> Removing city A (0,7902)
 
remove 0 7903
>> Removing city A (0,7903)
 
remove 0 7904
>> Removing city A (0,7904)
 
remove 0 7905
>> Removing city A (0,7905)
 
remove 0 7906
>> Removing city A (0,7906)
 
remove 0 7907
>> Removing city A (0,7907)
 
remove 0 7908
>> Removing city A (0,7908)
 
remove 0 7909
>> Removing city A (0,7909)
 
remove 0 7910
>> Removing city A (0,7910)
 
remove 0 7911
>> Removing city A (0,7911)
 
remove 0 7912
>> Removing city A (0,7912)
 
remove 0 7913
>> Removing city A (0,7913)
 
remove 0 7914
>> Removing city A (0,7914)
 
remove 0 7915
>> Removing city A (0,7915)
 
remove 0 7916
>> Removing city A (0,7916)
 
remove 0 7917
>> Removing city A (0,7917)
 
remove 0 7918
>> Removing city A (0,7918)
 
remove 0 7919
>> Removing city A (0,7919)
 
remove 0 7920
>> Removing city A (0,7920)
 
remove 0 7921
>> Removing city A (0,7921)
 
remove 0 7922
>> Removing city A (0,7922)
 
remove 0 7923
>> Removing city A (0,7923)
 
remove 0 7924
>> Removing city A (0,7924)
 
remove 0 7925
>> Removing city A (0,7925)
 
remove 0 7926
>> Removing city A (0,7926)
 
remove 0 7927
>> Removing city A (0,7927)
 
remove 0 7928
>> Removing city A (0,7928)
 
remove 0 7929
>> Removing city A (0,7929)
 
remove 0 7930
>> Removing city A (0,7930)
 
remove 0 7931
>> Removing city A (0,7931)
 
remove 0 7932
>> Removing city A (0,7932)
 
remove 0 7933
>> Removing city A (0,7933)
 
remove 0 7934
>> Removing city A (0,7934)
 
remove 0 7935
>> Removing city A (0,7935)
 
remove 0 7936
>> Removing city A (0,7936)
 
remove 0 7937
>> Removing city A (0,7937)
 
remove 0 7938
>> Removing city A (0,7938)
 
remove 0 7939
>> Removing city A (0,7939)
 
remove 0 7940
>> Removing city A (0,7940)
 
remove 0 7941
>> Removing city A (0,7941)
 
remove 0 7942
>> Removing city A (0,7942)
 
remove 0 7943
>> Removing city A (0,7943)
 
remove 0 7944
>> Removing city A (0,7944)
 
remove 0 7945
>> Removing city A (0,7945)
 
remove 0 7946
>> Removing city A (0,7946)
 
remove 0 7947
>> Removing city A (0,7947)
 
remove 0 7948
>> Removing city A (0,7948)
 
remove 0 7949
>> Removing city A (0,7949)
 
remove 0 7950
>> Removing city A (0,7950)
 
remove 0 7951
>> Removing city A (0,7951)
 
remove 0 7952
>> Removing city A (0,7952)
 
remove 0 7953
>> Removing city A (0,7953)
 
remove 0 7954
>> Removing city A (0,7954)
 
remove 0 7955
>> Removing city A (0,7955)
 
remove 0 7956
>> Removing city A (0,7956)
 
remove 0 7957
>> Removing city A (0,7957)
 
remove 0 7958
>> Removing city A (0,7958)
 
remove 0 7959
>> Removing city A (0,7959)
 
remove 0 7960
>> Removing city A (0,7960)
 
remove 0 7961
>> Removing city A (0,7961)
 
remove 0 7962
>> Removing city A (0,7962)
 
remove 0 7963
>> Removing city A (0,7963)
 
remove 0 7964
>> Removing city A (0,7964)
 
remove 0 7965
>> Removing city A (0,7965)
 
remove 0 7966
>> Removing city A (0,7966)
 
remove 0 7967
>> Removing city A (0,7967)
 
remove 0 7968
>> Removing city A (0,7968)
 
remove 0 7969
>> Removing city A (0,7969)
 
remove 0 7970
>> Removing city A (0,7970)
 
remove 0 7971
>> Removing city A (0,7971)
 
remove 0 7972
>> Removing city A (0,7972)
 
remove 0 7973
>> Removing city A (0,7973)
 
remove 0 7974
>> Removing city A (0,7974)
 
remove 0 7975
>> Removing city A (0,7975)
 
remove 0 7976
>> Removing city A (0,7976)
 
remove 0 7977
>> Removing city A (0,7977)
 
remove 0 7978
>> Removing city A (0,7978)
 
remove 0 7979
>> Removing city A (0,7979)
 
remove 0 7980
>> Removing city A (0,7980)
 
remove 0 7981
>> Removing city A (0,7981)
 
remove 0 7982
>> Removing city A (0,7982)
 
remove 0 7983
>> Removing city A (0,7983)
 
remove 0 7984
>> Removing city A (0,7984)
 
remove 0 7985
>> Removing city A (0,7985)
 
remove 0 7986
>> Removing city A (0,7986)
 
remove 0 7987
>> Removing city A (0,7987)
 
remove 0 7988
>> Removing city A (0,7988)
 
remove 0 7989
>> Removing city A (0,7989)
 
remove 0 7990
>> Removing city A (0,7990)
 
remove 0 7991
>> Removing city A (0,7991)
 
remove 0 7992
>> Removing city A (0,7992)
 
remove 0 7993
>> Removing city A (0,7993)
 
remove 0 7994
>> Removing city A (0,7994)
 
remove 0 7995
>> Removing city A (0,7995)
 
remove 0 7996
>> Removing city A (0,7996)
 
remove 0 7997
>> Removing city A (0,7997)
 
remove 0 7998
>> Removing city A (0,7998)
 
remove 0 7999
>> Removing city A (0,7999)
 
remove 0 8000
>> Removing city A (0,8000)
 
remove 0 8001
>> Removing city A (0,8001)
 
remove 0 8002
>> Removing city A (0,8002)
 
remove 0 8003
>> Removing city A (0,8003)
 
remove 0 8004
>> Removing city A (0,8004)
 
remove 0 8005
>> Removing city A (0,8005)
 
remove 0 8006
>> Removing city A (0,8006)
 
remove 0 8007
>> Removing city A (0,8007)
 
remove 0 8008
>> Removing city A (0,8008)
 
remove 0 8009
>> Removing city A (0,8009)
 
remove 0 8010
>> Removing city A (0,8010)
 
remove 0 8011
>> Removing city A (0,8011)
 
remove 0 8012
>> Removing city A (0,8012)
 
remove 0 8013
>> Removing city A (0,8013)
 
remove 0 8014
>> Removing city A (0,8014)
 
remove 0 8015
>> Removing city A (0,8015)
 
remove 0 8016
>> Removing city A (0,8016)
 
remove 0 8017
>> Removing city A (0,8017)
 
remove 0 8018
>> Removing city A (0,8018)
 
remove 0 8019
>> Removing city A (0,8019)
 
remove 0 8020
>> Removing city A (0,8020)
 
remove 0 8021
>> Removing city A (0,8021)
 
remove 0 8022
>> Removing city A (0,8022)
 
remove 0 8023
>> Removing city A (0,8023)
 
remove 0 8024
>> Removing city A (0,8024)
 
remove 0 8025
>> Removing city A (0,8025)
 
remove 0 8026
>> Removing city A (0,8026)
 
remove 0 8027
>> Removing city A (0,8027)
 
remove 0 8028
>> Removing city A (0,8028)
 
remove 0 8029
>> Removing city A (0,8029)
 
remove 0 8030
>> Removing city A (0,8030)
 
remove 0 8031
>> Removing city A (0,8031)
 
remove 0 8032
>> Removing city A (0,8032)
 
remove 0 8033
>> Removing city A (0,8033)
 
remove 0 8034
>> Removing city A (0,8034)
 
remove 0 8035
>> Removing city A (0,8035)
 
remove 0 8036
>> Removing city A (0,8036)
 
remove 0 8037
>> Removing city A (0,8037)
 
remove 0 8038
>> Removing city A (0,8038)
 
remove 0 8039
>> Removing city A (0,8039)
 
remove 0 8040
>> Removing city A (0,8040)
 
remove 0 8041
>> Removing city A (0,8041)
 
remove 0 8042
>> Removing city A (0,8042)
 
remove 0 8043
>> Removing city A (0,8043)
 
remove 0 8044
>> Removing city A (0,8044)
 
remove 0 8045
>> Removing city A (0,8045)
 
remove 0 8046
>> Removing city A (0,8046)
 
remove 0 8047
>> Removing city A (0,8047)
 
remove 0 8048
>> Removing city A (0,8048)
 
remove 0 8049
>> Removing city A (0,8049)
 
remove 0 8050
>> Removing city A (0,8050)
 
remove 0 8051
>> Removing city A (0,8051)
 
remove 0 8052
>> Removing city A (0,8052)
 
remove 0 8053
>> Removing city A (0,8053)
 
remove 0 8054
>> Removing city A (0,8054)
 
remove 0 8055
>> Removing city A (0,8055)
 
remove 0 8056
>> Removing city A (0,8056)
 
remove 0 8057
>> Removing city A (0,8057)
 
remove 0 8058
>> Removing city A (0,8058)
 
remove 0 8059
>> Removing city A (0,8059)
 
remove 0 8060
>> Removing city A (0,8060)
 
remove 0 8061
>> Removing city A (0,8061)
 
remove 0 8062
>> Removing city A (0,8062)
 
remove 0 8063
>> Removing city A (0,8063)
 
remove 0 8064
>> Removing city A (0,8064)
 
remove 0 8065
>> Removing city A (0,8065)
 
remove 0 8066
>> Removing city A (0,8066)
 
remove 0 8067
>> Removing city A (0,8067)
 
remove 0 8068
>> Removing city A (0,8068)
 
remove 0 8069
>> Removing city A (0,8069)
 
remove 0 8070
>> Removing city A (0,8070)
 
remove 0 8071
>> Removing city A (0,8071)
 
remove 0 8072
>> Removing city A (0,8072)
 
remove 0 8073
>> Removing city A (0,8073)
 
remove 0 8074
>> Removing city A (0,8074)
 
remove 0 8075
>> Removing city A (0,8075)
 
remove 0 8076
>> Removing city A (0,8076)
 
remove 0 8077
>> Removing city A (0,8077)
 
remove 0 8078
>> Removing city A (0,8078)
 
remove 0 8079
>> Removing city A (0,8079)
 
remove 0 8080
>> Removing city A (0,8080)
 
remove 0 8081
>> Removing city A (0,8081)
 
remove 0 8082
>> Removing city A (0,8082)
 
remove 0 8083
>> Removing city A (0,8083)
 
remove 0 8084
>> Removing city A (0,8084)
 
remove 0 8085
>> Removing city A (0,8085)
 
remove 0 8086
>> Removing city A (0,8086)
 
remove 0 8087
>> Removing city A (0,8087)
 
remove 0 8088
>> Removing city A (0,8088)
 
remove 0 8089
>> Removing city A (0,8089)
 
remove 0 8090
>> Removing city A (0,8090)
 
remove 0 8091
>> Removing city A (0,8091)
 
remove 0 8092
>> Removing city A (0,8092)
 
remove 0 8093
>> Removing city A (0,8093)
 
remove 0 8094
>> Removing city A (0,8094)
 
remove 0 8095
>> Removing city A (0,8095)
 
remove 0 8096
>> Removing city A (0,8096)
 
remove 0 8097
>> Removing city A (0,8097)
 
remove 0 8098
>> Removing city A (0,8098)
 
remove 0 8099
>> Removing city A (0,8099)
 
remove 0 8100
>> Removing city A (0,8100)
 
remove 0 8101
>> Removing city A (0,8101)
 
remove 0 8102
>> Removing city A (0,8102)
 
remove 0 8103
>> Removing city A (0,8103)
 
remove 0 8104
>> Removing city A (0,8104)
 
remove 0 8105
>> Removing city A (0,8105)
 
remove 0 8106
>> Removing city A (0,8106)
 
remove 0 8107
>> Removing city A (0,8107)
 
remove 0 8108
>> Removing city A (0,8108)
 
remove 0 8109
>> Removing city A (0,8109)
 
remove 0 8110
>> Removing city A (0,8110)
 
remove 0 8111
>> Removing city A (0,8111)
 
remove 0 8112
>> Removing city A (0,8112)
 
remove 0 8113
>> Removing city A (0,8113)
 
remove 0 8114
>> Removing city A (0,8114)
 
remove 0 8115
>> Removing city A (0,8115)
 
remove 0 8116
>> Removing city A (0,8116)
 
remove 0 8117
>> Removing city A (0,8117)
 
remove 0 8118
>> Removing city A (0,8118)
 
remove 0 8119
>> Removing city A (0,8119)
 
remove 0 8120
>> Removing city A (0,8120)
 
remove 0 8121
>> Removing city A (0,8121)
 
remove 0 8122
>> Removing city A (0,8122)
 
remove 0 8123
>> Removing city A (0,8123)
 
remove 0 8124
>> Removing city A (0,8124)
 
remove 0 8125
>> Removing city A (0,8125)
 
remove 0 8126
>> Removing city A (0,8126)
 
remove 0 8127
>> Removing city A (0,8127)
 
remove 0 8128
>> Removing city A (0,8128)
 
remove 0 8129
>> Removing city A (0,8129)
 
remove 0 8130
>> Removing city A (0,8130)
 
remove 0 8131
>> Removing city A (0,8131)
 
remove 0 8132
>> Removing city A (0,8132)
 
remove 0 8133
>> Removing city A (0,8133)
 
remove 0 8134
>> Removing city A (0,8134)
 
remove 0 8135
>> Removing city A (0,8135)
 
remove 0 8136
>> Removing city A (0,8136)
 
remove 0 8137
>> Removing city A (0,8137)
 
remove 0 8138
>> Removing city A (0,8138)
 
remove 0 8139
>> Removing city A (0,8139)
 
remove 0 8140
>> Removing city A (0,8140)
 
remove 0 8141
>> Removing city A (0,8141)
 
remove 0 8142
>> Removing city A (0,8142)
 
remove 0 8143
>> Removing city A (0,8143)
 
remove 0 8144
>> Removing city A (0,8144)
 
remove 0 8145
>> Removing city A (0,8145)
 
remove 0 8146
>> Removing city A (0,8146)
 
remove 0 8147
>> Removing city A (0,8147)
 
remove 0 8148
>> Removing city A (0,8148)
 
remove 0 8149
>> Removing city A (0,8149)
 
remove 0 8150
>> Removing city A (0,8150)
 
remove 0 8151
>> Removing city A (0,8151)
 
remove 0 8152
>> Removing city A (0,8152)
 
remove 0 8153
>> Removing city A (0,8153)
 
remove 0 8154
>> Removing city A (0,8154)
 
remove 0 8155
>> Removing city A (0,8155)
 
remove 0 8156
>> Removing city A (0,8156)
 
remove 0 8157
>> Removing city A (0,8157)
 
remove 0 8158
>> Removing city A (0,8158)
 
remove 0 8159
>> Removing city A (0,8159)
 
remove 0 8160
>> Removing city A (0,8160)
 
remove 0 8161
>> Removing city A (0,8161)
 
remove 0 8162
>> Removing city A (0,8162)
 
remove 0 8163
>> Removing city A (0,8163)
 
remove 0 8164
>> Removing city A (0,8164)
 
remove 0 8165
>> Removing city A (0,8165)
 
remove 0 8166
>> Removing city A (0,8166)
 
remove 0 8167
>> Removing city A (0,8167)
 
remove 0 8168
>> Removing city A (0,8168)
 
remove 0 8169
>> Removing city A (0,8169)
 
remove 0 8170
>> Removing city A (0,8170)
 
remove 0 8171
>> Removing city A (0,8171)
 
remove 0 8172
>> Removing city A (0,8172)
 
remove 0 8173
>> Removing city A (0,8173)
 
remove 0 8174
>> Removing city A (0,8174)
 
remove 0 8175
>> Removing city A (0,8175)
 
remove 0 8176
>> Removing city A (0,8176)
 
remove 0 8177
>> Removing city A (0,8177)
 
remove 0 8178
>> Removing city A (0,8178)
 
remove 0 8179
>> Removing city A (0,8179)
 
remove 0 8180
>> Removing city A (0,8180)
 
remove 0 8181
>> Removing city A (0,8181)
 
remove 0 8182
>> Removing city A (0,8182)
 
remove 0 8183
>> Removing city A (0,8183)
 
remove 0 8184
>> Removing city A (0,8184)
 
remove 0 8185
>> Removing city A (0,8185)
 
remove 0 8186
>> Removing city A (0,8186)
 
remove 0 8187
>> Removing city A (0,8187)
 
remove 0 8188
>> Removing city A (0,8188)
 
remove 0 8189
>> Removing city A (0,8189)
 
remove 0 8190
>> Removing city A (0,8190)
 
remove 0 8191
>> Removing city A (0,8191)
 
remove 0 8192
>> Removing city A (0,8192)
 
remove 0 8193
>> Removing city A (0,8193)
 
remove 0 8194
>> Removing city A (0,8194)
 
remove 0 8195
>> Removing city A (0,8195)
 
remove 0 8196
>> Removing city A (0,8196)
 
remove 0 8197
>> Removing city A (0,8197)
 
remove 0 8198
>> Removing city A (0,8198)
 
remove 0 8199
>> Removing city A (0,8199)
 
remove 0 8200
>> Removing city A (0,8200)
 
remove 0 8201
>> Removing city A (0,8201)
 
remove 0 8202
>> Removing city A (0,8202)
 
remove 0 8203
>> Removing city A (0,8203)
 
remove 0 8204
>> Removing city A (0,8204)
 
remove 0 8205
>> Removing city A (0,8205)
 
remove 0 8206
>> Removing city A (0,8206)
 
remove 0 8207
>> Removing city A (0,8207)
 
remove 0 8208
>> Removing city A (0,8208)
 
remove 0 8209
>> Removing city A (0,8209)
 
remove 0 8210
>> Removing city A (0,8210)
 
remove 0 8211
>> Removing city A (0,8211)
 
remove 0 8212
>> Removing city A (0,8212)
 
remove 0 8213
>> Removing city A (0,8213)
 
remove 0 8214
>> Removing city A (0,8214)
 
remove 0 8215
>> Removing city A (0,8215)
 
remove 0 8216
>> Removing city A (0,8216)
 
remove 0 8217
>> Removing city A (0,8217)
 
remove 0 8218
>> Removing city A (0,8218)
 
remove 0 8219
>> Removing city A (0,8219)
 
remove 0 8220
>> Removing city A (0,8220)
 
remove 0 8221
>> Removing city A (0,8221)
 
remove 0 8222
>> Removing city A (0,8222)
 
remove 0 8223
>> Removing city A (0,8223)
 
remove 0 8224
>> Removing city A (0,8224)
 
remove 0 8225
>> Removing city A (0,8225)
 
remove 0 8226
>> Removing city A (0,8226)
 
remove 0 8227
>> Removing city A (0,8227)
 
remove 0 8228
>> Removing city A (0,8228)
 
remove 0 8229
>> Removing city A (0,8229)
 
remove 0 8230
>> Removing city A (0,8230)
 
remove 0 8231
>> Removing city A (0,8231)
 
remove 0 8232
>> Removing city A (0,8232)
 
remove 0 8233
>> Removing city A (0,8233)
 
remove 0 8234
>> Removing city A (0,8234)
 
remove 0 8235
>> Removing city A (0,8235)
 
remove 0 8236
>> Removing city A (0,8236)
 
remove 0 8237
>> Removing city A (0,8237)
 
remove 0 8238
>> Removing city A (0,8238)
 
remove 0 8239
>> Removing city A (0,8239)
 
remove 0 8240
>> Removing city A (0,8240)
 
remove 0 8241
>> Removing city A (0,8241)
 
remove 0 8242
>> Removing city A (0,8242)
 
remove 0 8243
>> Removing city A (0,8243)
 
remove 0 8244
>> Removing city A (0,8244)
 
remove 0 8245
>> Removing city A (0,8245)
 
remove 0 8246
>> Removing city A (0,8246)
 
remove 0 8247
>> Removing city A (0,8247)
 
remove 0 8248
>> Removing city A (0,8248)
 
remove 0 8249
>> Removing city A (0,8249)
 
remove 0 8250
>> Removing city A (0,8250)
 
remove 0 8251
>> Removing city A (0,8251)
 
remove 0 8252
>> Removing city A (0,8252)
 
remove 0 8253
>> Removing city A (0,8253)
 
remove 0 8254
>> Removing city A (0,8254)
 
remove 0 8255
>> Removing city A (0,8255)
 
remove 0 8256
>> Removing city A (0,8256)
 
remove 0 8257
>> Removing city A (0,8257)
 
remove 0 8258
>> Removing city A (0,8258)
 
remove 0 8259
>> Removing city A (0,8259)
 
remove 0 8260
>> Removing city A (0,8260)
 
remove 0 8261
>> Removing city A (0,8261)
 
remove 0 8262
>> Removing city A (0,8262)
 
remove 0 8263
>> Removing city A (0,8263)
 
remove 0 8264
>> Removing city A (0,8264)
 
remove 0 8265
>> Removing city A (0,8265)
 
remove 0 8266
>> Removing city A (0,8266)
 
remove 0 8267
>> Removing city A (0,8267)
 
remove 0 8268
>> Removing city A (0,8268)
 
remove 0 8269
>> Removing city A (0,8269)
 
remove 0 8270
>> Removing city A (0,8270)
 
remove 0 8271
>> Removing city A (0,8271)
 
remove 0 8272
>> Removing city A (0,8272)
 
remove 0 8273
>> Removing city A (0,8273)
 
remove 0 8274
>> Removing city A (0,8274)
 
remove 0 8275
>> Removing city A (0,8275)
 
remove 0 8276
>> Removing city A (0,8276)
 
remove 0 8277
>> Removing city A (0,8277)
 
remove 0 8278
>> Removing city A (0,8278)
 
remove 0 8279
>> Removing city A (0,8279)
 
remove 0 8280
>> Removing city A (0,8280)
 
remove 0 8281
>> Removing city A (0,8281)
 
remove 0 8282
>> Removing city A (0,8282)
 
remove 0 8283
>> Removing city A (0,8283)
 
remove 0 8284
>> Removing city A (0,8284)
 
remove 0 8285
>> Removing city A (0,8285)
 
remove 0 8286
>> Removing city A (0,8286)
 
remove 0 8287
>> Removing city A (0,8287)
 
remove 0 8288
>> Removing city A (0,8288)
 
remove 0 8289
>> Removing city A (0,8289)
 
remove 0 8290
>> Removing city A (0,8290)
 
remove 0 8291
>> Removing city A (0,8291)
 
remove 0 8292
>> Removing city A (0,8292)
 
remove 0 8293
>> Removing city A (0,8293)
 
remove 0 8294
>> Removing city A (0,8294)
 
remove 0 8295
>> Removing city A (0,8295)
 
remove 0 8296
>> Removing city A (0,8296)
 
remove 0 8297
>> Removing city A (0,8297)
 
remove 0 8298
>> Removing city A (0,8298)
 
remove 0 8299
>> Removing city A (0,8299)
 
remove 0 8300
>> Removing city A (0,8300)
 
remove 0 8301
>> Removing city A (0,8301)
 
remove 0 8302
>> Removing city A (0,8302)
 
remove 0 8303
>> Removing city A (0,8303)
 
remove 0 8304
>> Removing city A (0,8304)
 
remove 0 8305
>> Removing city A (0,8305)
 
remove 0 8306
>> Removing city A (0,8306)
 
remove 0 8307
>> Removing city A (0,8307)
 
remove 0 8308
>> Removing city A (0,8308)
 
remove 0 8309
>> Removing city A (0,8309)
 
remove 0 8310
>> Removing city A (0,8310)
 
remove 0 8311
>> Removing city A (0,8311)
 
remove 0 8312
>> Removing city A (0,8312)
 
remove 0 8313
>> Removing city A (0,8313)
 
remove 0 8314
>> Removing city A (0,8314)
 
remove 0 8315
>> Removing city A (0,8315)
 
remove 0 8316
>> Removing city A (0,8316)
 
remove 0 8317
>> Removing city A (0,8317)
 
remove 0 8318
>> Removing city A (0,8318)
 
remove 0 8319
>> Removing city A (0,8319)
 
remove 0 8320
>> Removing city A (0,8320)
 
remove 0 8321
>> Removing city A (0,8321)
 
remove 0 8322
>> Removing city A (0,8322)
 
remove 0 8323
>> Removing city A (0,8323)
 
remove 0 8324
>> Removing city A (0,8324)
 
remove 0 8325
>> Removing city A (0,8325)
 
remove 0 8326
>> Removing city A (0,8326)
 
remove 0 8327
>> Removing city A (0,8327)
 
remove 0 8328
>> Removing city A (0,8328)
 
remove 0 8329
>> Removing city A (0,8329)
 
remove 0 8330
>> Removing city A (0,8330)
 
remove 0 8331
>> Removing city A (0,8331)
 
remove 0 8332
>> Removing city A (0,8332)
 
remove 0 8333
>> Removing city A (0,8333)
 
remove 0 8334
>> Removing city A (0,8334)
 
remove 0 8335
>> Removing city A (0,8335)
 
remove 0 8336
>> Removing city A (0,8336)
 
remove 0 8337
>> Removing city A (0,8337)
 
remove 0 8338
>> Removing city A (0,8338)
 
remove 0 8339
>> Removing city A (0,8339)
 
remove 0 8340
>> Removing city A (0,8340)
 
remove 0 8341
>> Removing city A (0,8341)
 
remove 0 8342
>> Removing city A (0,8342)
 
remove 0 8343
>> Removing city A (0,8343)
 
remove 0 8344
>> Removing city A (0,8344)
 
remove 0 8345
>> Removing city A (0,8345)
 
remove 0 8346
>> Removing city A (0,8346)
 
remove 0 8347
>> Removing city A (0,8347)
 
remove 0 8348
>> Removing city A (0,8348)
 
remove 0 8349
>> Removing city A (0,8349)
 
remove 0 8350
>> Removing city A (0,8350)
 
remove 0 8351
>> Removing city A (0,8351)
 
remove 0 8352
>> Removing city A (0,8352)
 
remove 0 8353
>> Removing city A (0,8353)
 
remove 0 8354
>> Removing city A (0,8354)
 
remove 0 8355
>> Removing city A (0,8355)
 
remove 0 8356
>> Removing city A (0,8356)
 
remove 0 8357
>> Removing city A (0,8357)
 
remove 0 8358
>> Removing city A (0,8358)
 
remove 0 8359
>> Removing city A (0,8359)
 
remove 0 8360
>> Removing city A (0,8360)
 
remove 0 8361
>> Removing city A (0,8361)
 
remove 0 8362
>> Removing city A (0,8362)
 
remove 0 8363
>> Removing city A (0,8363)
 
remove 0 8364
>> Removing city A (0,8364)
 
remove 0 8365
>> Removing city A (0,8365)
 
remove 0 8366
>> Removing city A (0,8366)
 
remove 0 8367
>> Removing city A (0,8367)
 
remove 0 8368
>> Removing city A (0,8368)
 
remove 0 8369
>> Removing city A (0,8369)
 
remove 0 8370
>> Removing city A (0,8370)
 
remove 0 8371
>> Removing city A (0,8371)
 
remove 0 8372
>> Removing city A (0,8372)
 
remove 0 8373
>> Removing city A (0,8373)
 
remove 0 8374
>> Removing city A (0,8374)
 
remove 0 8375
>> Removing city A (0,8375)
 
remove 0 8376
>> Removing city A (0,8376)
 
remove 0 8377
>> Removing city A (0,8377)
 
remove 0 8378
>> Removing city A (0,8378)
 
remove 0 8379
>> Removing city A (0,8379)
 
remove 0 8380
>> Removing city A (0,8380)
 
remove 0 8381
>> Removing city A (0,8381)
 
remove 0 8382
>> Removing city A (0,8382)
 
remove 0 8383
>> Removing city A (0,8383)
 
remove 0 8384
>> Removing city A (0,8384)
 
remove 0 8385
>> Removing city A (0,8385)
 
remove 0 8386
>> Removing city A (0,8386)
 
remove 0 8387
>> Removing city A (0,8387)
 
remove 0 8388
>> Removing city A (0,8388)
 
remove 0 8389
>> Removing city A (0,8389)
 
remove 0 8390
>> Removing city A (0,8390)
 
remove 0 8391
>> Removing city A (0,8391)
 
remove 0 8392
>> Removing city A (0,8392)
 
remove 0 8393
>> Removing city A (0,8393)
 
remove 0 8394
>> Removing city A (0,8394)
 
remove 0 8395
>> Removing city A (0,8395)
 
remove 0 8396
>> Removing city A (0,8396)
 
remove 0 8397
>> Removing city A (0,8397)
 
remove 0 8398
>> Removing city A (0,8398)
 
remove 0 8399
>> Removing city A (0,8399)
 
remove 0 8400
>> Removing city A (0,8400)
 
remove 0 8401
>> Removing city A (0,8401)
 
remove 0 8402
>> Removing city A (0,8402)
 
remove 0 8403
>> Removing city A (0,8403)
 
remove 0 8404
>> Removing city A (0,8404)
 
remove 0 8405
>> Removing city A (0,8405)
 
remove 0 8406
>> Removing city A (0,8406)
 
remove 0 8407
>> Removing city A (0,8407)
 
remove 0 8408
>> Removing city A (0,8408)
 
remove 0 8409
>> Removing city A (0,8409)
 
remove 0 8410
>> Removing city A (0,8410)
 
remove 0 8411
>> Removing city A (0,8411)
 
remove 0 8412
>> Removing city A (0,8412)
 
remove 0 8413
>> Removing city A (0,8413)
 
remove 0 8414
>> Removing city A (0,8414)
 
remove 0 8415
>> Removing city A (0,8415)
 
remove 0 8416
>> Removing city A (0,8416)
 
remove 0 8417
>> Removing city A (0,8417)
 
remove 0 8418
>> Removing city A (0,8418)
 
remove 0 8419
>> Removing city A (0,8419)
 
remove 0 8420
>> Removing city A (0,8420)
 
remove 0 8421
>> Removing city A (0,8421)
 
remove 0 8422
>> Removing city A (0,8422)
 
remove 0 8423
>> Removing city A (0,8423)
 
remove 0 8424
>> Removing city A (0,8424)
 
remove 0 8425
>> Removing city A (0,8425)
 
remove 0 8426
>> Removing city A (0,8426)
 
remove 0 8427
>> Removing city A (0,8427)
 
remove 0 8428
>> Removing city A (0,8428)
 
remove 0 8429
>> Removing city A (0,8429)
 
remove 0 8430
>> Removing city A (0,8430)
 
remove 0 8431
>> Removing city A (0,8431)
 
remove 0 8432
>> Removing city A (0,8432)
 
remove 0 8433
>> Removing city A (0,8433)
 
remove 0 8434
>> Removing city A (0,8434)
 
remove 0 8435
>> Removing city A (0,8435)
 
remove 0 8436
>> Removing city A (0,8436)
 
remove 0 8437
>> Removing city A (0,8437)
 
remove 0 8438
>> Removing city A (0,8438)
 
remove 0 8439
>> Removing city A (0,8439)
 
remove 0 8440
>> Removing city A (0,8440)
 
remove 0 8441
>> Removing city A (0,8441)
 
remove 0 8442
>> Removing city A (0,8442)
 
remove 0 8443
>> Removing city A (0,8443)
 
remove 0 8444
>> Removing city A (0,8444)
 
remove 0 8445
>> Removing city A (0,8445)
 
remove 0 8446
>> Removing city A (0,8446)
 
remove 0 8447
>> Removing city A (0,8447)
 
remove 0 8448
>> Removing city A (0,8448)
 
remove 0 8449
>> Removing city A (0,8449)
 
remove 0 8450
>> Removing city A (0,8450)
 
remove 0 8451
>> Removing city A (0,8451)
 
remove 0 8452
>> Removing city A (0,8452)
 
remove 0 8453
>> Removing city A (0,8453)
 
remove 0 8454
>> Removing city A (0,8454)
 
remove 0 8455
>> Removing city A (0,8455)
 
remove 0 8456
>> Removing city A (0,8456)
 
remove 0 8457
>> Removing city A (0,8457)
 
remove 0 8458
>> Removing city A (0,8458)
 
remove 0 8459
>> Removing city A (0,8459)
 
remove 0 8460
>> Removing city A (0,8460)
 
remove 0 8461
>> Removing city A (0,8461)
 
remove 0 8462
>> Removing city A (0,8462)
 
remove 0 8463
>> Removing city A (0,8463)
 
remove 0 8464
>> Removing city A (0,8464)
 
remove 0 8465
>> Removing city A (0,8465)
 
remove 0 8466
>> Removing city A (0,8466)
 
remove 0 8467
>> Removing city A (0,8467)
 
remove 0 8468
>> Removing city A (0,8468)
 
remove 0 8469
>> Removing city A (0,8469)
 
remove 0 8470
>> Removing city A (0,8470)
 
remove 0 8471
>> Removing city A (0,8471)
 
remove 0 8472
>> Removing city A (0,8472)
 
remove 0 8473
>> Removing city A (0,8473)
 
remove 0 8474
>> Removing city A (0,8474)
 
remove 0 8475
>> Removing city A (0,8475)
 
remove 0 8476
>> Removing city A (0,8476)
 
remove 0 8477
>> Removing city A (0,8477)
 
remove 0 8478
>> Removing city A (0,8478)
 
remove 0 8479
>> Removing city A (0,8479)
 
remove 0 8480
>> Removing city A (0,8480)
 
remove 0 8481
>> Removing city A (0,8481)
 
remove 0 8482
>> Removing city A (0,8482)
 
remove 0 8483
>> Removing city A (0,8483)
 
remove 0 8484
>> Removing city A (0,8484)
 
remove 0 8485
>> Removing city A (0,8485)
 
remove 0 8486
>> Removing city A (0,8486)
 
remove 0 8487
>> Removing city A (0,8487)
 
remove 0 8488
>> Removing city A (0,8488)
 
remove 0 8489
>> Removing city A (0,8489)
 
remove 0 8490
>> Removing city A (0,8490)
 
remove 0 8491
>> Removing city A (0,8491)
 
remove 0 8492
>> Removing city A (0,8492)
 
remove 0 8493
>> Removing city A (0,8493)
 
remove 0 8494
>> Removing city A (0,8494)
 
remove 0 8495
>> Removing city A (0,8495)
 
remove 0 8496
>> Removing city A (0,8496)
 
remove 0 8497
>> Removing city A (0,8497)
 
remove 0 8498
>> Removing city A (0,8498)
 
remove 0 8499
>> Removing city A (0,8499)
 
remove 0 8500
>> Removing city A (0,8500)
 
remove 0 8501
>> Removing city A (0,8501)
 
remove 0 8502
>> Removing city A (0,8502)
 
remove 0 8503
>> Removing city A (0,8503)
 
remove 0 8504
>> Removing city A (0,8504)
 
remove 0 8505
>> Removing city A (0,8505)
 
remove 0 8506
>> Removing city A (0,8506)
 
remove 0 8507
>> Removing city A (0,8507)
 
remove 0 8508
>> Removing city A (0,8508)
 
remove 0 8509
>> Removing city A (0,8509)
 
remove 0 8510
>> Removing city A (0,8510)
 
remove 0 8511
>> Removing city A (0,8511)
 
remove 0 8512
>> Removing city A (0,8512)
 
remove 0 8513
>> Removing city A (0,8513)
 
remove 0 8514
>> Removing city A (0,8514)
 
remove 0 8515
>> Removing city A (0,8515)
 
remove 0 8516
>> Removing city A (0,8516)
 
remove 0 8517
>> Removing city A (0,8517)
 
remove 0 8518
>> Removing city A (0,8518)
 
remove 0 8519
>> Removing city A (0,8519)
 
remove 0 8520
>> Removing city A (0,8520)
 
remove 0 8521
>> Removing city A (0,8521)
 
remove 0 8522
>> Removing city A (0,8522)
 
remove 0 8523
>> Removing city A (0,8523)
 
remove 0 8524
>> Removing city A (0,8524)
 
remove 0 8525
>> Removing city A (0,8525)
 
remove 0 8526
>> Removing city A (0,8526)
 
remove 0 8527
>> Removing city A (0,8527)
 
remove 0 8528
>> Removing city A (0,8528)
 
remove 0 8529
>> Removing city A (0,8529)
 
remove 0 8530
>> Removing city A (0,8530)
 
remove 0 8531
>> Removing city A (0,8531)
 
remove 0 8532
>> Removing city A (0,8532)
 
remove 0 8533
>> Removing city A (0,8533)
 
remove 0 8534
>> Removing city A (0,8534)
 
remove 0 8535
>> Removing city A (0,8535)
 
remove 0 8536
>> Removing city A (0,8536)
 
remove 0 8537
>> Removing city A (0,8537)
 
remove 0 8538
>> Removing city A (0,8538)
 
remove 0 8539
>> Removing city A (0,8539)
 
remove 0 8540
>> Removing city A (0,8540)
 
remove 0 8541
>> Removing city A (0,8541)
 
remove 0 8542
>> Removing city A (0,8542)
 
remove 0 8543
>> Removing city A (0,8543)
 
remove 0 8544
>> Removing city A (0,8544)
 
remove 0 8545
>> Removing city A (0,8545)
 
remove 0 8546
>> Removing city A (0,8546)
 
remove 0 8547
>> Removing city A (0,8547)
 
remove 0 8548
>> Removing city A (0,8548)
 
remove 0 8549
>> Removing city A (0,8549)
 
remove 0 8550
>> Removing city A (0,8550)
 
remove 0 8551
>> Removing city A (0,8551)
 
remove 0 8552
>> Removing city A (0,8552)
 
remove 0 8553
>> Removing city A (0,8553)
 
remove 0 8554
>> Removing city A (0,8554)
 
remove 0 8555
>> Removing city A (0,8555)
 
remove 0 8556
>> Removing city A (0,8556)
 
remove 0 8557
>> Removing city A (0,8557)
 
remove 0 8558
>> Removing city A (0,8558)
 
remove 0 8559
>> Removing city A (0,8559)
 
remove 0 8560
>> Removing city A (0,8560)
 
remove 0 8561
>> Removing city A (0,8561)
 
remove 0 8562
>> Removing city A (0,8562)
 
remove 0 8563
>> Removing city A (0,8563)
 
remove 0 8564
>> Removing city A (0,8564)
 
remove 0 8565
>> Removing city A (0,8565)
 
remove 0 8566
>> Removing city A (0,8566)
 
remove 0 8567
>> Removing city A (0,8567)
 
remove 0 8568
>> Removing city A (0,8568)
 
remove 0 8569
>> Removing city A (0,8569)
 
remove 0 8570
>> Removing city A (0,8570)
 
remove 0 8571
>> Removing city A (0,8571)
 
remove 0 8572
>> Removing city A (0,8572)
 
remove 0 8573
>> Removing city A (0,8573)
 
remove 0 8574
>> Removing city A (0,8574)
 
remove 0 8575
>> Removing city A (0,8575)
 
remove 0 8576
>> Removing city A (0,8576)
 
remove 0 8577
>> Removing city A (0,8577)
 
remove 0 8578
>> Removing city A (0,8578)
 
remove 0 8579
>> Removing city A (0,8579)
 
remove 0 8580
>> Removing city A (0,8580)
 
remove 0 8581
>> Removing city A (0,8581)
 
remove 0 8582
>> Removing city A (0,8582)
 
remove 0 8583
>> Removing city A (0,8583)
 
remove 0 8584
>> Removing city A (0,8584)
 
remove 0 8585
>> Removing city A (0,8585)
 
remove 0 8586
>> Removing city A (0,8586)
 
remove 0 8587
>> Removing city A (0,8587)
 
remove 0 8588
>> Removing city A (0,8588)
 
remove 0 8589
>> Removing city A (0,8589)
 
remove 0 8590
>> Removing city A (0,8590)
 
remove 0 8591
>> Removing city A (0,8591)
 
remove 0 8592
>> Removing city A (0,8592)
 
remove 0 8593
>> Removing city A (0,8593)
 
remove 0 8594
>> Removing city A (0,8594)
 
remove 0 8595
>> Removing city A (0,8595)
 
remove 0 8596
>> Removing city A (0,8596)
 
remove 0 8597
>> Removing city A (0,8597)
 
remove 0 8598
>> Removing city A (0,8598)
 
remove 0 8599
>> Removing city A (0,8599)
 
remove 0 8600
>> Removing city A (0,8600)
 
remove 0 8601
>> Removing city A (0,8601)
 
remove 0 8602
>> Removing city A (0,8602)
 
remove 0 8603
>> Removing city A (0,8603)
 
remove 0 8604
>> Removing city A (0,8604)
 
remove 0 8605
>> Removing city A (0,8605)
 
remove 0 8606
>> Removing city A (0,8606)
 
remove 0 8607
>> Removing city A (0,8607)
 
remove 0 8608
>> Removing city A (0,8608)
 
remove 0 8609
>> Removing city A (0,8609)
 
remove 0 8610
>> Removing city A (0,8610)
 
remove 0 8611
>> Removing city A (0,8611)
 
remove 0 8612
>> Removing city A (0,8612)
 
remove 0 8613
>> Removing city A (0,8613)
 
remove 0 8614
>> Removing city A (0,8614)
 
remove 0 8615
>> Removing city A (0,8615)
 
remove 0 8616
>> Removing city A (0,8616)
 
remove 0 8617
>> Removing city A (0,8617)
 
remove 0 8618
>> Removing city A (0,8618)
 
remove 0 8619
>> Removing city A (0,8619)
 
remove 0 8620
>> Removing city A (0,8620)
 
remove 0 8621
>> Removing city A (0,8621)
 
remove 0 8622
>> Removing city A (0,8622)
 
remove 0 8623
>> Removing city A (0,8623)
 
remove 0 8624
>> Removing city A (0,8624)
 
remove 0 8625
>> Removing city A (0,8625)
 
remove 0 8626
>> Removing city A (0,8626)
 
remove 0 8627
>> Removing city A (0,8627)
 
remove 0 8628
>> Removing city A (0,8628)
 
remove 0 8629
>> Removing city A (0,8629)
 
remove 0 8630
>> Removing city A (0,8630)
 
remove 0 8631
>> Removing city A (0,8631)
 
remove 0 8632
>> Removing city A (0,8632)
 
remove 0 8633
>> Removing city A (0,8633)
 
remove 0 8634
>> Removing city A (0,8634)
 
remove 0 8635
>> Removing city A (0,8635)
 
remove 0 8636
>> Removing city A (0,8636)
 
remove 0 8637
>> Removing city A (0,8637)
 
remove 0 8638
>> Removing city A (0,8638)
 
remove 0 8639
>> Removing city A (0,8639)
 
remove 0 8640
>> Removing city A (0,8640)
 
remove 0 8641
>> Removing city A (0,8641)
 
remove 0 8642
>> Removing city A (0,8642)
 
remove 0 8643
>> Removing city A (0,8643)
 
remove 0 8644
>> Removing city A (0,8644)
 
remove 0 8645
>> Removing city A (0,8645)
 
remove 0 8646
>> Removing city A (0,8646)
 
remove 0 8647
>> Removing city A (0,8647)
 
remove 0 8648
>> Removing city A (0,8648)
 
remove 0 8649
>> Removing city A (0,8649)
 
remove 0 8650
>> Removing city A (0,8650)
 
remove 0 8651
>> Removing city A (0,8651)
 
remove 0 8652
>> Removing city A (0,8652)
 
remove 0 8653
>> Removing city A (0,8653)
 
remove 0 8654
>> Removing city A (0,8654)
 
remove 0 8655
>> Removing city A (0,8655)
 
remove 0 8656
>> Removing city A (0,8656)
 
remove 0 8657
>> Removing city A (0,8657)
 
remove 0 8658
>> Removing city A (0,8658)
 
remove 0 8659
>> Removing city A (0,8659)
 
remove 0 8660
>> Removing city A (0,8660)
 
remove 0 8661
>> Removing city A (0,8661)
 
remove 0 8662
>> Removing city A (0,8662)
 
remove 0 8663
>> Removing city A (0,8663)
 
remove 0 8664
>> Removing city A (0,8664)
 
remove 0 8665
>> Removing city A (0,8665)
 
remove 0 8666
>> Removing city A (0,8666)
 
remove 0 8667
>> Removing city A (0,8667)
 
remove 0 8668
>> Removing city A (0,8668)
 
remove 0 8669
>> Removing city A (0,8669)
 
remove 0 8670
>> Removing city A (0,8670)
 
remove 0 8671
>> Removing city A (0,8671)
 
remove 0 8672
>> Removing city A (0,8672)
 
remove 0 8673
>> Removing city A (0,8673)
 
remove 0 8674
>> Removing city A (0,8674)
 
remove 0 8675
>> Removing city A (0,8675)
 
remove 0 8676
>> Removing city A (0,8676)
 
remove 0 8677
>> Removing city A (0,8677)
 
remove 0 8678
>> Removing city A (0,8678)
 
remove 0 8679
>> Removing city A (0,8679)
 
remove 0 8680
>> Removing city A (0,8680)
 
remove 0 8681
>> Removing city A (0,8681)
 
remove 0 8682
>> Removing city A (0,8682)
 
remove 0 8683
>> Removing city A (0,8683)
 
remove 0 8684
>> Removing city A (0,8684)
 
remove 0 8685
>> Removing city A (0,8685)
 
remove 0 8686
>> Removing city A (0,8686)
 
remove 0 8687
>> Removing city A (0,8687)
 
remove 0 8688
>> Removing city A (0,8688)
 
remove 0 8689
>> Removing city A (0,8689)
 
remove 0 8690
>> Removing city A (0,8690)
 
remove 0 8691
>> Removing city A (0,8691)
 
remove 0 8692
>> Removing city A (0,8692)
 
remove 0 8693
>> Removing city A (0,8693)
 
remove 0 8694
>> Removing city A (0,8694)
 
remove 0 8695
>> Removing city A (0,8695)
 
remove 0 8696
>> Removing city A (0,8696)
 
remove 0 8697
>> Removing city A (0,8697)
 
remove 0 8698
>> Removing city A (0,8698)
 
remove 0 8699
>> Removing city A (0,8699)
 
remove 0 8700
>> Removing city A (0,8700)
 
remove 0 8701
>> Removing city A (0,8701)
 
remove 0 8702
>> Removing city A (0,8702)
 
remove 0 8703
>> Removing city A (0,8703)
 
remove 0 8704
>> Removing city A (0,8704)
 
remove 0 8705
>> Removing city A (0,8705)
 
remove 0 8706
>> Removing city A (0,8706)
 
remove 0 8707
>> Removing city A (0,8707)
 
remove 0 8708
>> Removing city A (0,8708)
 
remove 0 8709
>> Removing city A (0,8709)
 
remove 0 8710
>> Removing city A (0,8710)
 
remove 0 8711
>> Removing city A (0,8711)
 
remove 0 8712
>> Removing city A (0,8712)
 
remove 0 8713
>> Removing city A (0,8713)
 
remove 0 8714
>> Removing city A (0,8714)
 
remove 0 8715
>> Removing city A (0,8715)
 
remove 0 8716
>> Removing city A (0,8716)
 
remove 0 8717
>> Removing city A (0,8717)
 
remove 0 8718
>> Removing city A (0,8718)
 
remove 0 8719
>> Removing city A (0,8719)
 
remove 0 8720
>> Removing city A (0,8720)
 
remove 0 8721
>> Removing city A (0,8721)
 
remove 0 8722
>> Removing city A (0,8722)
 
remove 0 8723
>> Removing city A (0,8723)
 
remove 0 8724
>> Removing city A (0,8724)
 
remove 0 8725
>> Removing city A (0,8725)
 
remove 0 8726
>> Removing city A (0,8726)
 
remove 0 8727
>> Removing city A (0,8727)
 
remove 0 8728
>> Removing city A (0,8728)
 
remove 0 8729
>> Removing city A (0,8729)
 
remove 0 8730
>> Removing city A (0,8730)
 
remove 0 8731
>> Removing city A (0,8731)
 
remove 0 8732
>> Removing city A (0,8732)
 
remove 0 8733
>> Removing city A (0,8733)
 
remove 0 8734
>> Removing city A (0,8734)
 
remove 0 8735
>> Removing city A (0,8735)
 
remove 0 8736
>> Removing city A (0,8736)
 
remove 0 8737
>> Removing city A (0,8737)
 
remove 0 8738
>> Removing city A (0,8738)
 
remove 0 8739
>> Removing city A (0,8739)
 
remove 0 8740
>> Removing city A (0,8740)
 
remove 0 8741
>> Removing city A (0,8741)
 
remove 0 8742
>> Removing city A (0,8742)
 
remove 0 8743
>> Removing city A (0,8743)
 
remove 0 8744
>> Removing city A (0,8744)
 
remove 0 8745
>> Removing city A (0,8745)
 
remove 0 8746
>> Removing city A (0,8746)
 
remove 0 8747
>> Removing city A (0,8747)
 
remove 0 8748
>> Removing city A (0,8748)
 
remove 0 8749
>> Removing city A (0,8749)
 
remove 0 8750
>> Removing city A (0,8750)
 
remove 0 8751
>> Removing city A (0,8751)
 
remove 0 8752
>> Removing city A (0,8752)
 
remove 0 8753
>> Removing city A (0,8753)
 
remove 0 8754
>> Removing city A (0,8754)
 
remove 0 8755
>> Removing city A (0,8755)
 
remove 0 8756
>> Removing city A (0,8756)
 
remove 0 8757
>> Removing city A (0,8757)
 
remove 0 8758
>> Removing city A (0,8758)
 
remove 0 8759
>> Removing city A (0,8759)
 
remove 0 8760
>> Removing city A (0,8760)
 
remove 0 8761
>> Removing city A (0,8761)
 
remove 0 8762
>> Removing city A (0,8762)
 
remove 0 8763
>> Removing city A (0,8763)
 
remove 0 8764
>> Removing city A (0,8764)
 
remove 0 8765
>> Removing city A (0,8765)
 
remove 0 8766
>> Removing city A (0,8766)
 
remove 0 8767
>> Removing city A (0,8767)
 
remove 0 8768
>> Removing city A (0,8768)
 
remove 0 8769
>> Removing city A (0,8769)
 
remove 0 8770
>> Removing city A (0,8770)
 
remove 0 8771
>> Removing city A (0,8771)
 
remove 0 8772
>> Removing city A (0,8772)
 
remove 0 8773
>> Removing city A (0,8773)
 
remove 0 8774
>> Removing city A (0,8774)
 
remove 0 8775
>> Removing city A (0,8775)
 
remove 0 8776
>> Removing city A (0,8776)
 
remove 0 8777
>> Removing city A (0,8777)
 
remove 0 8778
>> Removing city A (0,8778)
 
remove 0 8779
>> Removing city A (0,8779)
 
remove 0 8780
>> Removing city A (0,8780)
 
remove 0 8781
>> Removing city A (0,8781)
 
remove 0 8782
>> Removing city A (0,8782)
 
remove 0 8783
>> Removing city A (0,8783)
 
remove 0 8784
>> Removing city A (0,8784)
 
remove 0 8785
>> Removing city A (0,8785)
 
remove 0 8786
>> Removing city A (0,8786)
 
remove 0 8787
>> Removing city A (0,8787)
 
remove 0 8788
>> Removing city A (0,8788)
 
remove 0 8789
>> Removing city A (0,8789)
 
remove 0 8790
>> Removing city A (0,8790)
 
remove 0 8791
>> Removing city A (0,8791)
 
remove 0 8792
>> Removing city A (0,8792)
 
remove 0 8793
>> Removing city A (0,8793)
 
remove 0 8794
>> Removing city A (0,8794)
 
remove 0 8795
>> Removing city A (0,8795)
 
remove 0 8796
>> Removing city A (0,8796)
 
remove 0 8797
>> Removing city A (0,8797)
 
remove 0 8798
>> Removing city A (0,8798)
 
remove 0 8799
>> Removing city A (0,8799)
 
remove 0 8800
>> Removing city A (0,8800)
 
remove 0 8801
>> Removing city A (0,8801)
 
remove 0 8802
>> Removing city A (0,8802)
 
remove 0 8803
>> Removing city A (0,8803)
 
remove 0 8804
>> Removing city A (0,8804)
 
remove 0 8805
>> Removing city A (0,8805)
 
remove 0 8806
>> Removing city A (0,8806)
 
remove 0 8807
>> Removing city A (0,8807)
 
remove 0 8808
>> Removing city A (0,8808)
 
remove 0 8809
>> Removing city A (0,8809)
 
remove 0 8810
>> Removing city A (0,8810)
 
remove 0 8811
>> Removing city A (0,8811)
 
remove 0 8812
>> Removing city A (0,8812)
 
remove 0 8813
>> Removing city A (0,8813)
 
remove 0 8814
>> Removing city A (0,8814)
 
remove 0 8815
>> Removing city A (0,8815)
 
remove 0 8816
>> Removing city A (0,8816)
 
remove 0 8817
>> Removing city A (0,8817)
 
remove 0 8818
>> Removing city A (0,8818)
 
remove 0 8819
>> Removing city A (0,8819)
 
remove 0 8820
>> Removing city A (0,8820)
 
remove 0 8821
>> Removing city A (0,8821)
 
remove 0 8822
>> Removing city A (0,8822)
 
remove 0 8823
>> Removing city A (0,8823)
 
remove 0 8824
>> Removing city A (0,8824)
 
remove 0 8825
>> Removing city A (0,8825)
 
remove 0 8826
>> Removing city A (0,8826)
 
remove 0 8827
>> Removing city A (0,8827)
 
remove 0 8828
>> Removing city A (0,8828)
 
remove 0 8829
>> Removing city A (0,8829)
 
remove 0 8830
>> Removing city A (0,8830)
 
remove 0 8831
>> Removing city A (0,8831)
 
remove 0 8832
>> Removing city A (0,8832)
 
remove 0 8833
>> Removing city A (0,8833)
 
remove 0 8834
>> Removing city A (0,8834)
 
remove 0 8835
>> Removing city A (0,8835)
 
remove 0 8836
>> Removing city A (0,8836)
 
remove 0 8837
>> Removing city A (0,8837)
 
remove 0 8838
>> Removing city A (0,8838)
 
remove 0 8839
>> Removing city A (0,8839)
 
remove 0 8840
>> Removing city A (0,8840)
 
remove 0 8841
>> Removing city A (0,8841)
 
remove 0 8842
>> Removing city A (0,8842)
 
remove 0 8843
>> Removing city A (0,8843)
 
remove 0 8844
>> Removing city A (0,8844)
 
remove 0 8845
>> Removing city A (0,8845)
 
remove 0 8846
>> Removing city A (0,8846)
 
remove 0 8847
>> Removing city A (0,8847)
 
remove 0 8848
>> Removing city A (0,8848)
 
remove 0 8849
>> Removing city A (0,8849)
 
remove 0 8850
>> Removing city A (0,8850)
 
remove 0 8851
>> Removing city A (0,8851)
 
remove 0 8852
>> Removing city A (0,8852)
 
remove 0 8853
>> Removing city A (0,8853)
 
remove 0 8854
>> Removing city A (0,8854)
 
remove 0 8855
>> Removing city A (0,8855)
 
remove 0 8856
>> Removing city A (0,8856)
 
remove 0 8857
>> Removing city A (0,8857)
 
remove 0 8858
>> Removing city A (0,8858)
 
remove 0 8859
>> Removing city A (0,8859)
 
remove 0 8860
>> Removing city A (0,8860)
 
remove 0 8861
>> Removing city A (0,8861)
 
remove 0 8862
>> Removing city A (0,8862)
 
remove 0 8863
>> Removing city A (0,8863)
 
remove 0 8864
>> Removing city A (0,8864)
 
remove 0 8865
>> Removing city A (0,8865)
 
remove 0 8866
>> Removing city A (0,8866)
 
remove 0 8867
>> Removing city A (0,8867)
 
remove 0 8868
>> Removing city A (0,8868)
 
remove 0 8869
>> Removing city A (0,8869)
 
remove 0 8870
>> Removing city A (0,8870)
 
remove 0 8871
>> Removing city A (0,8871)
 
remove 0 8872
>> Removing city A (0,8872)
 
remove 0 8873
>> Removing city A (0,8873)
 
remove 0 8874
>> Removing city A (0,8874)
 
remove 0 8875
>> Removing city A (0,8875)
 
remove 0 8876
>> Removing city A (0,8876)
 
remove 0 8877
>> Removing city A (0,8877)
 
remove 0 8878
>> Removing city A (0,8878)
 
remove 0 8879
>> Removing city A (0,8879)
 
remove 0 8880
>> Removing city A (0,8880)
 
remove 0 8881
>> Removing city A (0,8881)
 
remove 0 8882
>> Removing city A (0,8882)
 
remove 0 8883
>> Removing city A (0,8883)
 
remove 0 8884
>> Removing city A (0,8884)
 
remove 0 8885
>> Removing city A (0,8885)
 
remove 0 8886
>> Removing city A (0,8886)
 
remove 0 8887
>> Removing city A (0,8887)
 
remove 0 8888
>> Removing city A (0,8888)
 
remove 0 8889
>> Removing city A (0,8889)
 
remove 0 8890
>> Removing city A (0,8890)
 
remove 0 8891
>> Removing city A (0,8891)
 
remove 0 8892
>> Removing city A (0,8892)
 
remove 0 8893
>> Removing city A (0,8893)
 
remove 0 8894
>> Removing city A (0,8894)
 
remove 0 8895
>> Removing city A (0,8895)
 
remove 0 8896
>> Removing city A (0,8896)
 
remove 0 8897
>> Removing city A (0,8897)
 
remove 0 8898
>> Removing city A (0,8898)
 
remove 0 8899
>> Removing city A (0,8899)
 
remove 0 8900
>> Removing city A (0,8900)
 
remove 0 8901
>> Removing city A (0,8901)
 
remove 0 8902
>> Removing city A (0,8902)
 
remove 0 8903
>> Removing city A (0,8903)
 
remove 0 8904
>> Removing city A (0,8904)
 
remove 0 8905
>> Removing city A (0,8905)
 
remove 0 8906
>> Removing city A (0,8906)
 
remove 0 8907
>> Removing city A (0,8907)
 
remove 0 8908
>> Removing city A (0,8908)
 
remove 0 8909
>> Removing city A (0,8909)
 
remove 0 8910
>> Removing city A (0,8910)
 
remove 0 8911
>> Removing city A (0,8911)
 
remove 0 8912
>> Removing city A (0,8912)
 
remove 0 8913
>> Removing city A (0,8913)
 
remove 0 8914
>> Removing city A (0,8914)
 
remove 0 8915
>> Removing city A (0,8915)
 
remove 0 8916
>> Removing city A (0,8916)
 
remove 0 8917
>> Removing city A (0,8917)
 
remove 0 8918
>> Removing city A (0,8918)
 
remove 0 8919
>> Removing city A (0,8919)
 
remove 0 8920
>> Removing city A (0,8920)
 
remove 0 8921
>> Removing city A (0,8921)
 
remove 0 8922
>> Removing city A (0,8922)
 
remove 0 8923
>> Removing city A (0,8923)
 
remove 0 8924
>> Removing city A (0,8924)
 
remove 0 8925
>> Removing city A (0,8925)
 
remove 0 8926
>> Removing city A (0,8926)
 
remove 0 8927
>> Removing city A (0,8927)
 
remove 0 8928
>> Removing city A (0,8928)
 
remove 0 8929
>> Removing city A (0,8929)
 
remove 0 8930
>> Removing city A (0,8930)
 
remove 0 8931
>> Removing city A (0,8931)
 
remove 0 8932
>> Removing city A (0,8932)
 
remove 0 8933
>> Removing city A (0,8933)
 
remove 0 8934
>> Removing city A (0,8934)
 
remove 0 8935
>> Removing city A (0,8935)
 
remove 0 8936
>> Removing city A (0,8936)
 
remove 0 8937
>> Removing city A (0,8937)
 
remove 0 8938
>> Removing city A (0,8938)
 
remove 0 8939
>> Removing city A (0,8939)
 
remove 0 8940
>> Removing city A (0,8940)
 
remove 0 8941
>> Removing city A (0,8941)
 
remove 0 8942
>> Removing city A (0,8942)
 
remove 0 8943
>> Removing city A (0,8943)
 
remove 0 8944
>> Removing city A (0,8944)
 
remove 0 8945
>> Removing city A (0,8945)
 
remove 0 8946
>> Removing city A (0,8946)
 
remove 0 8947
>> Removing city A (0,8947)
 
remove 0 8948
>> Removing city A (0,8948)
 
remove 0 8949
>> Removing city A (0,8949)
 
remove 0 8950
>> Removing city A (0,8950)
 
remove 0 8951
>> Removing city A (0,8951)
 
remove 0 8952
>> Removing city A (0,8952)
 
remove 0 8953
>> Removing city A (0,8953)
 
remove 0 8954
>> Removing city A (0,8954)
 
remove 0 8955
>> Removing city A (0,8955)
 
remove 0 8956
>> Removing city A (0,8956)
 
remove 0 8957
>> Removing city A (0,8957)
 
remove 0 8958
>> Removing city A (0,8958)
 
remove 0 8959
>> Removing city A (0,8959)
 
remove 0 8960
>> Removing city A (0,8960)
 
remove 0 8961
>> Removing city A (0,8961)
 
remove 0 8962
>> Removing city A (0,8962)
 
remove 0 8963
>> Removing city A (0,8963)
 
remove 0 8964
>> Removing city A (0,8964)
 
remove 0 8965
>> Removing city A (0,8965)
 
remove 0 8966
>> Removing city A (0,8966)
 
remove 0 8967
>> Removing city A (0,8967)
 
remove 0 8968
>> Removing city A (0,8968)
 
remove 0 8969
>> Removing city A (0,8969)
 
remove 0 8970
>> Removing city A (0,8970)
 
remove 0 8971
>> Removing city A (0,8971)
 
remove 0 8972
>> Removing city A (0,8972)
 
remove 0 8973
>> Removing city A (0,8973)
 
remove 0 8974
>> Removing city A (0,8974)
 
remove 0 8975
>> Removing city A (0,8975)
 
remove 0 8976
>> Removing city A (0,8976)
 
remove 0 8977
>> Removing city A (0,8977)
 
remove 0 8978
>> Removing city A (0,8978)
 
remove 0 8979
>> Removing city A (0,8979)
 
remove 0 8980
>> Removing city A (0,8980)
 
remove 0 8981
>> Removing city A (0,8981)
 
remove 0 8982
>> Removing city A (0,8982)
 
remove 0 8983
>> Removing city A (0,8983)
 
remove 0 8984
>> Removing city A (0,8984)
 
remove 0 8985
>> Removing city A (0,8985)
 
remove 0 8986
>> Removing city A (0,8986)
 
remove 0 8987
>> Removing city A (0,8987)
 
remove 0 8988
>> Removing city A (0,8988)
 
remove 0 8989
>> Removing city A (0,8989)
 
remove 0 8990
>> Removing city A (0,8990)
 
remove 0 8991
>> Removing city A (0,8991)
 
remove 0 8992
>> Removing city A (0,8992)
 
remove 0 8993
>> Removing city A (0,8993)
 
remove 0 8994
>> Removing city A (0,8994)
 
remove 0 8995
>> Removing city A (0,8995)
 
remove 0 8996
>> Removing city A (0,8996)
 
remove 0 8997
>> Removing city A (0,8997)
 
remove 0 8998
>> Removing city A (0,8998)
 
remove 0 8999
>> Removing city A (0,8999)
 
remove 0 9000
>> Removing city A (0,9000)
 
remove 0 9001
>> Removing city A (0,9001)
 
remove 0 9002
>> Removing city A (0,9002)
 
remove 0 9003
>> Removing city A (0,9003)
 
remove 0 9004
>> Removing city A (0,9004)
 
remove 0 9005
>> Removing city A (0,9005)
 
remove 0 9006
>> Removing city A (0,9006)
 
remove 0 9007
>> Removing city A (0,9007)
 
remove 0 9008
>> Removing city A (0,9008)
 
remove 0 9009
>> Removing city A (0,9009)
 
remove 0 9010
>> Removing city A (0,9010)
 
remove 0 9011
>> Removing city A (0,9011)
 
remove 0 9012
>> Removing city A (0,9012)
 
remove 0 9013
>> Removing city A (0,9013)
 
remove 0 9014
>> Removing city A (0,9014)
 
remove 0 9015
>> Removing city A (0,9015)
 
remove 0 9016
>> Removing city A (0,9016)
 
remove 0 9017
>> Removing city A (0,9017)
 
remove 0 9018
>> Removing city A (0,9018)
 
remove 0 9019
>> Removing city A (0,9019)
 
remove 0 9020
>> Removing city A (0,9020)
 
remove 0 9021
>> Removing city A (0,9021)
 
remove 0 9022
>> Removing city A (0,9022)
 
remove 0 9023
>> Removing city A (0,9023)
 
remove 0 9024
>> Removing city A (0,9024)
 
remove 0 9025
>> Removing city A (0,9025)
 
remove 0 9026
>> Removing city A (0,9026)
 
remove 0 9027
>> Removing city A (0,9027)
 
remove 0 9028
>> Removing city A (0,9028)
 
remove 0 9029
>> Removing city A (0,9029)
 
remove 0 9030
>> Removing city A (0,9030)
 
remove 0 9031
>> Removing city A (0,9031)
 
remove 0 9032
>> Removing city A (0,9032)
 
remove 0 9033
>> Removing city A (0,9033)
 
remove 0 9034
>> Removing city A (0,9034)
 
remove 0 9035
>> Removing city A (0,9035)
 
remove 0 9036
>> Removing city A (0,9036)
 
remove 0 9037
>> Removing city A (0,9037)
 
remove 0 9038
>> Removing city A (0,9038)
 
remove 0 9039
>> Removing city A (0,9039)
 
remove 0 9040
>> Removing city A (0,9040)
 
remove 0 9041
>> Removing city A (0,9041)
 
remove 0 9042
>> Removing city A (0,9042)
 
remove 0 9043
>> Removing city A (0,9043)
 
remove 0 9044
>> Removing city A (0,9044)
 
remove 0 9045
>> Removing city A (0,9045)
 
remove 0 9046
>> Removing city A (0,9046)
 
remove 0 9047
>> Removing city A (0,9047)
 
remove 0 9048
>> Removing city A (0,9048)
 
remove 0 9049
>> Removing city A (0,9049)
 
remove 0 9050
>> Removing city A (0,9050)
 
remove 0 9051
>> Removing city A (0,9051)
 
remove 0 9052
>> Removing city A (0,9052)
 
remove 0 9053
>> Removing city A (0,9053)
 
remove 0 9054
>> Removing city A (0,9054)
 
remove 0 9055
>> Removing city A (0,9055)
 
remove 0 9056
>> Removing city A (0,9056)
 
remove 0 9057
>> Removing city A (0,9057)
 
remove 0 9058
>> Removing city A (0,9058)
 
remove 0 9059
>> Removing city A (0,9059)
 
remove 0 9060
>> Removing city A (0,9060)
 
remove 0 9061
>> Removing city A (0,9061)
 
remove 0 9062
>> Removing city A (0,9062)
 
remove 0 9063
>> Removing city A (0,9063)
 
remove 0 9064
>> Removing city A (0,9064)
 
remove 0 9065
>> Removing city A (0,9065)
 
remove 0 9066
>> Removing city A (0,9066)
 
remove 0 9067
>> Removing city A (0,9067)
 
remove 0 9068
>> Removing city A (0,9068)
 
remove 0 9069
>> Removing city A (0,9069)
 
remove 0 9070
>> Removing city A (0,9070)
 
remove 0 9071
>> Removing city A (0,9071)
 
remove 0 9072
>> Removing city A (0,9072)
 
remove 0 9073
>> Removing city A (0,9073)
 
remove 0 9074
>> Removing city A (0,9074)
 
remove 0 9075
>> Removing city A (0,9075)
 
remove 0 9076
>> Removing city A (0,9076)
 
remove 0 9077
>> Removing city A (0,9077)
 
remove 0 9078
>> Removing city A (0,9078)
 
remove 0 9079
>> Removing city A (0,9079)
 
remove 0 9080
>> Removing city A (0,9080)
 
remove 0 9081
>> Removing city A (0,9081)
 
remove 0 9082
>> Removing city A (0,9082)
 
remove 0 9083
>> Removing city A (0,9083)
 
remove 0 9084
>> Removing city A (0,9084)
 
remove 0 9085
>> Removing city A (0,9085)
 
remove 0 9086
>> Removing city A (0,9086)
 
remove 0 9087
>> Removing city A (0,9087)
 
remove 0 9088
>> Removing city A (0,9088)
 
remove 0 9089
>> Removing city A (0,9089)
 
remove 0 9090
>> Removing city A (0,9090)
 
remove 0 9091
>> Removing city A (0,9091)
 
remove 0 9092
>> Removing city A (0,9092)
 
remove 0 9093
>> Removing city A (0,9093)
 
remove 0 9094
>> Removing city A (0,9094)
 
remove 0 9095
>> Removing city A (0,9095)
 
remove 0 9096
>> Removing city A (0,9096)
 
remove 0 9097
>> Removing city A (0,9097)
 
remove 0 9098
>> Removing city A (0,9098)
 
remove 0 9099
>> Removing city A (0,9099)
 
remove 0 9100
>> Removing city A (0,9100)
 
remove 0 9101
>> Removing city A (0,9101)
 
remove 0 9102
>> Removing city A (0,9102)
 
remove 0 9103
>> Removing city A (0,9103)
 
remove 0 9104
>> Removing city A (0,9104)
 
remove 0 9105
>> Removing city A (0,9105)
 
remove 0 9106
>> Removing city A (0,9106)
 
remove 0 9107
>> Removing city A (0,9107)
 
remove 0 9108
>> Removing city A (0,9108)
 
remove 0 9109
>> Removing city A (0,9109)
 
remove 0 9110
>> Removing city A (0,9110)
 
remove 0 9111
>> Removing city A (0,9111)
 
remove 0 9112
>> Removing city A (0,9112)
 
remove 0 9113
>> Removing city A (0,9113)
 
remove 0 9114
>> Removing city A (0,9114)
 
remove 0 9115
>> Removing city A (0,9115)
 
remove 0 9116
>> Removing city A (0,9116)
 
remove 0 9117
>> Removing city A (0,9117)
 
remove 0 9118
>> Removing city A (0,9118)
 
remove 0 9119
>> Removing city A (0,9119)
 
remove 0 9120
>> Removing city A (0,9120)
 
remove 0 9121
>> Removing city A (0,9121)
 
remove 0 9122
>> Removing city A (0,9122)
 
remove 0 9123
>> Removing city A (0,9123)
 
remove 0 9124
>> Removing city A (0,9124)
 
remove 0 9125
>> Removing city A (0,9125)
 
remove 0 9126
>> Removing city A (0,9126)
 
remove 0 9127
>> Removing city A (0,9127)
 
remove 0 9128
>> Removing city A (0,9128)
 
remove 0 9129
>> Removing city A (0,9129)
 
remove 0 9130
>> Removing city A (0,9130)
 
remove 0 9131
>> Removing city A (0,9131)
 
remove 0 9132
>> Removing city A (0,9132)
 
remove 0 9133
>> Removing city A (0,9133)
 
remove 0 9134
>> Removing city A (0,9134)
 
remove 0 9135
>> Removing city A (0,9135)
 
remove 0 9136
>> Removing city A (0,9136)
 
remove 0 9137
>> Removing city A (0,9137)
 
remove 0 9138
>> Removing city A (0,9138)
 
remove 0 9139
>> Removing city A (0,9139)
 
remove 0 9140
>> Removing city A (0,9140)
 
remove 0 9141
>> Removing city A (0,9141)
 
remove 0 9142
>> Removing city A (0,9142)
 
remove 0 9143
>> Removing city A (0,9143)
 
remove 0 9144
>> Removing city A (0,9144)
 
remove 0 9145
>> Removing city A (0,9145)
 
remove 0 9146
>> Removing city A (0,9146)
 
remove 0 9147
>> Removing city A (0,9147)
 
remove 0 9148
>> Removing city A (0,9148)
 
remove 0 9149
>> Removing city A (0,9149)
 
remove 0 9150
>> Removing city A (0,9150)
 
remove 0 9151
>> Removing city A (0,9151)
 
remove 0 9152
>> Removing city A (0,9152)
 
remove 0 9153
>> Removing city A (0,9153)
 
remove 0 9154
>> Removing city A (0,9154)
 
remove 0 9155
>> Removing city A (0,9155)
 
remove 0 9156
>> Removing city A (0,9156)
 
remove 0 9157
>> Removing city A (0,9157)
 
remove 0 9158
>> Removing city A (0,9158)
 
remove 0 9159
>> Removing city A (0,9159)
 
remove 0 9160
>> Removing city A (0,9160)
 
remove 0 9161
>> Removing city A (0,9161)
 
remove 0 9162
>> Removing city A (0,9162)
 
remove 0 9163
>> Removing city A (0,9163)
 
remove 0 9164
>> Removing city A (0,9164)
 
remove 0 9165
>> Removing city A (0,9165)
 
remove 0 9166
>> Removing city A (0,9166)
 
remove 0 9167
>> Removing city A (0,9167)
 
remove 0 9168
>> Removing city A (0,9168)
 
remove 0 9169
>> Removing city A (0,9169)
 
remove 0 9170
>> Removing city A (0,9170)
 
remove 0 9171
>> Removing city A (0,9171)
 
remove 0 9172
>> Removing city A (0,9172)
 
remove 0 9173
>> Removing city A (0,9173)
 
remove 0 9174
>> Removing city A (0,9174)
 
remove 0 9175
>> Removing city A (0,9175)
 
remove 0 9176
>> Removing city A (0,9176)
 
remove 0 9177
>> Removing city A (0,9177)
 
remove 0 9178
>> Removing city A (0,9178)
 
remove 0 9179
>> Removing city A (0,9179)
 
remove 0 9180
>> Removing city A (0,9180)
 
remove 0 9181
>> Removing city A (0,9181)
 
remove 0 9182
>> Removing city A (0,9182)
 
remove 0 9183
>> Removing city A (0,9183)
 
remove 0 9184
>> Removing city A (0,9184)
 
remove 0 9185
>> Removing city A (0,9185)
 
remove 0 9186
>> Removing city A (0,9186)
 
remove 0 9187
>> Removing city A (0,9187)
 
remove 0 9188
>> Removing city A (0,9188)
 
remove 0 9189
>> Removing city A (0,9189)
 
remove 0 9190
>> Removing city A (0,9190)
 
remove 0 9191
>> Removing city A (0,9191)
 
remove 0 9192
>> Removing city A (0,9192)
 
remove 0 9193
>> Removing city A (0,9193)
 
remove 0 9194
>> Removing city A (0,9194)
 
remove 0 9195
>> Removing city A (0,9195)
 
remove 0 9196
>> Removing city A (0,9196)
 
remove 0 9197
>> Removing city A (0,9197)
 
remove 0 9198
>> Removing city A (0,9198)
 
remove 0 9199
>> Removing city A (0,9199)
 
remove 0 9200
>> Removing city A (0,9200)
 
remove 0 9201
>> Removing city A (0,9201)
 
remove 0 9202
>> Removing city A (0,9202)
 
remove 0 9203
>> Removing city A (0,9203)
 
remove 0 9204
>> Removing city A (0,9204)
 
remove 0 9205
>> Removing city A (0,9205)
 
remove 0 9206
>> Removing city A (0,9206)
 
remove 0 9207
>> Removing city A (0,9207)
 
remove 0 9208
>> Removing city A (0,9208)
 
remove 0 9209
>> Removing city A (0,9209)
 
remove 0 9210
>> Removing city A (0,9210)
 
remove 0 9211
>> Removing city A (0,9211)
 
remove 0 9212
>> Removing city A (0,9212)
 
remove 0 9213
>> Removing city A (0,9213)
 
remove 0 9214
>> Removing city A (0,9214)
 
remove 0 9215
>> Removing city A (0,9215)
 
remove 0 9216
>> Removing city A (0,9216)
 
remove 0 9217
>> Removing city A (0,9217)
 
remove 0 9218
>> Removing city A (0,9218)
 
remove 0 9219
>> Removing city A (0,9219)
 
remove 0 9220
>> Removing city A (0,9220)
 
remove 0 9221
>> Removing city A (0,9221)
 
remove 0 9222
>> Removing city A (0,9222)
 
remove 0 9223
>> Removing city A (0,9223)
 
remove 0 9224
>> Removing city A (0,9224)
 
remove 0 9225
>> Removing city A (0,9225)
 
remove 0 9226
>> Removing city A (0,9226)
 
remove 0 9227
>> Removing city A (0,9227)
 
remove 0 9228
>> Removing city A (0,9228)
 
remove 0 9229
>> Removing city A (0,9229)
 
remove 0 9230
>> Removing city A (0,9230)
 
remove 0 9231
>> Removing city A (0,9231)
 
remove 0 9232
>> Removing city A (0,9232)
 
remove 0 9233
>> Removing city A (0,9233)
 
remove 0 9234
>> Removing city A (0,9234)
 
remove 0 9235
>> Removing city A (0,9235)
 
remove 0 9236
>> Removing city A (0,9236)
 
remove 0 9237
>> Removing city A (0,9237)
 
remove 0 9238
>> Removing city A (0,9238)
 
remove 0 9239
>> Removing city A (0,9239)
 
remove 0 9240
>> Removing city A (0,9240)
 
remove 0 9241
>> Removing city A (0,9241)
 
remove 0 9242
>> Removing city A (0,9242)
 
remove 0 9243
>> Removing city A (0,9243)
 
remove 0 9244
>> Removing city A (0,9244)
 
remove 0 9245
>> Removing city A (0,9245)
 
remove 0 9246
>> Removing city A (0,9246)
 
remove 0 9247
>> Removing city A (0,9247)
 
remove 0 9248
>> Removing city A (0,9248)
 
remove 0 9249
>> Removing city A (0,9249)
 
remove 0 9250
>> Removing city A (0,9250)
 
remove 0 9251
>> Removing city A (0,9251)
 
remove 0 9252
>> Removing city A (0,9252)
 
remove 0 9253
>> Removing city A (0,9253)
 
remove 0 9254
>> Removing city A (0,9254)
 
remove 0 9255
>> Removing city A (0,9255)
 
remove 0 9256
>> Removing city A (0,9256)
 
remove 0 9257
>> Removing city A (0,9257)
 
remove 0 9258
>> Removing city A (0,9258)
 
remove 0 9259
>> Removing city A (0,9259)
 
remove 0 9260
>> Removing city A (0,9260)
 
remove 0 9261
>> Removing city A (0,9261)
 
remove 0 9262
>> Removing city A (0,9262)
 
remove 0 9263
>> Removing city A (0,9263)
 
remove 0 9264
>> Removing city A (0,9264)
 
remove 0 9265
>> Removing city A (0,9265)
 
remove 0 9266
>> Removing city A (0,9266)
 
remove 0 9267
>> Removing city A (0,9267)
 
remove 0 9268
>> Removing city A (0,9268)
 
remove 0 9269
>> Removing city A (0,9269)
 
remove 0 9270
>> Removing city A (0,9270)
 
remove 0 9271
>> Removing city A (0,9271)
 
remove 0 9272
>> Removing city A (0,9272)
 
remove 0 9273
>> Removing city A (0,9273)
 
remove 0 9274
>> Removing city A (0,9274)
 
remove 0 9275
>> Removing city A (0,9275)
 
remove 0 9276
>> Removing city A (0,9276)
 
remove 0 9277
>> Removing city A (0,9277)
 
remove 0 9278
>> Removing city A (0,9278)
 
remove 0 9279
>> Removing city A (0,9279)
 
remove 0 9280
>> Removing city A (0,9280)
 
remove 0 9281
>> Removing city A (0,9281)
 
remove 0 9282
>> Removing city A (0,9282)
 
remove 0 9283
>> Removing city A (0,9283)
 
remove 0 9284
>> Removing city A (0,9284)
 
remove 0 9285
>> Removing city A (0,9285)
 
remove 0 9286
>> Removing city A (0,9286)
 
remove 0 9287
>> Removing city A (0,9287)
 
remove 0 9288
>> Removing city A (0,9288)
 
remove 0 9289
>> Removing city A (0,9289)
 
remove 0 9290
>> Removing city A (0,9290)
 
remove 0 9291
>> Removing city A (0,9291)
 
remove 0 9292
>> Removing city A (0,9292)
 
remove 0 9293
>> Removing city A (0,9293)
 
remove 0 9294
>> Removing city A (0,9294)
 
remove 0 9295
>> Removing city A (0,9295)
 
remove 0 9296
>> Removing city A (0,9296)
 
remove 0 9297
>> Removing city A (0,9297)
 
remove 0 9298
>> Removing city A (0,9298)
 
remove 0 9299
>> Removing city A (0,9299)
 
remove 0 9300
>> Removing city A (0,9300)
 
remove 0 9301
>> Removing city A (0,9301)
 
remove 0 9302
>> Removing city A (0,9302)
 
remove 0 9303
>> Removing city A (0,9303)
 
remove 0 9304
>> Removing city A (0,9304)
 
remove 0 9305
>> Removing city A (0,9305)
 
remove 0 9306
>> Removing city A (0,9306)
 
remove 0 9307
>> Removing city A (0,9307)
 
remove 0 9308
>> Removing city A (0,9308)
 
remove 0 9309
>> Removing city A (0,9309)
 
remove 0 9310
>> Removing city A (0,9310)
 
remove 0 9311
>> Removing city A (0,9311)
 
remove 0 9312
>> Removing city A (0,9312)
 
remove 0 9313
>> Removing city A (0,9313)
 
remove 0 9314
>> Removing city A (0,9314)
 
remove 0 9315
>> Removing city A (0,9315)
 
remove 0 9316
>> Removing city A (0,9316)
 
remove 0 9317
>> Removing city A (0,9317)
 
remove 0 9318
>> Removing city A (0,9318)
 
remove 0 9319
>> Removing city A (0,9319)
 
remove 0 9320
>> Removing city A (0,9320)
 
remove 0 9321
>> Removing city A (0,9321)
 
remove 0 9322
>> Removing city A (0,9322)
 
remove 0 9323
>> Removing city A (0,9323)
 
remove 0 9324
>> Removing city A (0,9324)
 
remove 0 9325
>> Removing city A (0,9325)
 
remove 0 9326
>> Removing city A (0,9326)
 
remove 0 9327
>> Removing city A (0,9327)
 
remove 0 9328
>> Removing city A (0,9328)
 
remove 0 9329
>> Removing city A (0,9329)
 
remove 0 9330
>> Removing city A (0,9330)
 
remove 0 9331
>> Removing city A (0,9331)
 
remove 0 9332
>> Removing city A (0,9332)
 
remove 0 9333
>> Removing city A (0,9333)
 
remove 0 9334
>> Removing city A (0,9334)
 
remove 0 9335
>> Removing city A (0,9335)
 
remove 0 9336
>> Removing city A (0,9336)
 
remove 0 9337
>> Removing city A (0,9337)
 
remove 0 9338
>> Removing city A (0,9338)
 
remove 0 9339
>> Removing city A (0,9339)
 
remove 0 9340
>> Removing city A (0,9340)
 
remove 0 9341
>> Removing city A (0,9341)
 
remove 0 9342
>> Removing city A (0,9342)
 
remove 0 9343
>> Removing city A (0,9343)
 
remove 0 9344
>> Removing city A (0,9344)
 
remove 0 9345
>> Removing city A (0,9345)
 
remove 0 9346
>> Removing city A (0,9346)
 
remove 0 9347
>> Removing city A (0,9347)
 
remove 0 9348
>> Removing city A (0,9348)
 
remove 0 9349
>> Removing city A (0,9349)
 
remove 0 9350
>> Removing city A (0,9350)
 
remove 0 9351
>> Removing city A (0,9351)
 
remove 0 9352
>> Removing city A (0,9352)
 
remove 0 9353
>> Removing city A (0,9353)
 
remove 0 9354
>> Removing city A (0,9354)
 
remove 0 9355
>> Removing city A (0,9355)
 
remove 0 9356
>> Removing city A (0,9356)
 
remove 0 9357
>> Removing city A (0,9357)
 
remove 0 9358
>> Removing city A (0,9358)
 
remove 0 9359
>> Removing city A (0,9359)
 
remove 0 9360
>> Removing city A (0,9360)
 
remove 0 9361
>> Removing city A (0,9361)
 
remove 0 9362
>> Removing city A (0,9362)
 
remove 0 9363
>> Removing city A (0,9363)
 
remove 0 9364
>> Removing city A (0,9364)
 
remove 0 9365
>> Removing city A (0,9365)
 
remove 0 9366
>> Removing city A (0,9366)
 
remove 0 9367
>> Removing city A (0,9367)
 
remove 0 9368
>> Removing city A (0,9368)
 
remove 0 9369
>> Removing city A (0,9369)
 
remove 0 9370
>> Removing city A (0,9370)
 
remove 0 9371
>> Removing city A (0,9371)
 
remove 0 9372
>> Removing city A (0,9372)
 
remove 0 9373
>> Removing city A (0,9373)
 
remove 0 9374
>> Removing city A (0,9374)
 
remove 0 9375
>> Removing city A (0,9375)
 
remove 0 9376
>> Removing city A (0,9376)
 
remove 0 9377
>> Removing city A (0,9377)
 
remove 0 9378
>> Removing city A (0,9378)
 
remove 0 9379
>> Removing city A (0,9379)
 
remove 0 9380
>> Removing city A (0,9380)
 
remove 0 9381
>> Removing city A (0,9381)
 
remove 0 9382
>> Removing city A (0,9382)
 
remove 0 9383
>> Removing city A (0,9383)
 
remove 0 9384
>> Removing city A (0,9384)
 
remove 0 9385
>> Removing city A (0,9385)
 
remove 0 9386
>> Removing city A (0,9386)
 
remove 0 9387
>> Removing city A (0,9387)
 
remove 0 9388
>> Removing city A (0,9388)
 
remove 0 9389
>> Removing city A (0,9389)
 
remove 0 9390
>> Removing city A (0,9390)
 
remove 0 9391
>> Removing city A (0,9391)
 
remove 0 9392
>> Removing city A (0,9392)
 
remove 0 9393
>> Removing city A (0,9393)
 
remove 0 9394
>> Removing city A (0,9394)
 
remove 0 9395
>> Removing city A (0,9395)
 
remove 0 9396
>> Removing city A (0,9396)
 
remove 0 9397
>> Removing city A (0,9397)
 
remove 0 9398
>> Removing city A (0,9398)
 
remove 0 9399
>> Removing city A (0,9399)
 
remove 0 9400
>> Removing city A (0,9400)
 
remove 0 9401
>> Removing city A (0,9401)
 
remove 0 9402
>> Removing city A (0,9402)
 
remove 0 9403
>> Removing city A (0,9403)
 
remove 0 9404
>> Removing city A (0,9404)
 
remove 0 9405
>> Removing city A (0,9405)
 
remove 0 9406
>> Removing city A (0,9406)
 
remove 0 9407
>> Removing city A (0,9407)
 
remove 0 9408
>> Removing city A (0,9408)
 
remove 0 9409
>> Removing city A (0,9409)
 
remove 0 9410
>> Removing city A (0,9410)
 
remove 0 9411
>> Removing city A (0,9411)
 
remove 0 9412
>> Removing city A (0,9412)
 
remove 0 9413
>> Removing city A (0,9413)
 
remove 0 9414
>> Removing city A (0,9414)
 
remove 0 9415
>> Removing city A (0,9415)
 
remove 0 9416
>> Removing city A (0,9416)
 
remove 0 9417
>> Removing city A (0,9417)
 
remove 0 9418
>> Removing city A (0,9418)
 
remove 0 9419
>> Removing city A (0,9419)
 
remove 0 9420
>> Removing city A (0,9420)
 
remove 0 9421
>> Removing city A (0,9421)
 
remove 0 9422
>> Removing city A (0,9422)
 
remove 0 9423
>> Removing city A (0,9423)
 
remove 0 9424
>> Removing city A (0,9424)
 
remove 0 9425
>> Removing city A (0,9425)
 
remove 0 9426
>> Removing city A (0,9426)
 
remove 0 9427
>> Removing city A (0,9427)
 
remove 0 9428
>> Removing city A (0,9428)
 
remove 0 9429
>> Removing city A (0,9429)
 
remove 0 9430
>> Removing city A (0,9430)
 
remove 0 9431
>> Removing city A (0,9431)
 
remove 0 9432
>> Removing city A (0,9432)
 
remove 0 9433
>> Removing city A (0,9433)
 
remove 0 9434
>> Removing city A (0,9434)
 
remove 0 9435
>> Removing city A (0,9435)
 
remove 0 9436
>> Removing city A (0,9436)
 
remove 0 9437
>> Removing city A (0,9437)
 
remove 0 9438
>> Removing city A (0,9438)
 
remove 0 9439
>> Removing city A (0,9439)
 
remove 0 9440
>> Removing city A (0,9440)
 
remove 0 9441
>> Removing city A (0,9441)
 
remove 0 9442
>> Removing city A (0,9442)
 
remove 0 9443
>> Removing city A (0,9443)
 
remove 0 9444
>> Removing city A (0,9444)
 
remove 0 9445
>> Removing city A (0,9445)
 
remove 0 9446
>> Removing city A (0,9446)
 
remove 0 9447
>> Removing city A (0,9447)
 
remove 0 9448
>> Removing city A (0,9448)
 
remove 0 9449
>> Removing city A (0,9449)
 
remove 0 9450
>> Removing city A (0,9450)
 
remove 0 9451
>> Removing city A (0,9451)
 
remove 0 9452
>> Removing city A (0,9452)
 
remove 0 9453
>> Removing city A (0,9453)
 
remove 0 9454
>> Removing city A (0,9454)
 
remove 0 9455
>> Removing city A (0,9455)
 
remove 0 9456
>> Removing city A (0,9456)
 
remove 0 9457
>> Removing city A (0,9457)
 
remove 0 9458
>> Removing city A (0,9458)
 
remove 0 9459
>> Removing city A (0,9459)
 
remove 0 9460
>> Removing city A (0,9460)
 
remove 0 9461
>> Removing city A (0,9461)
 
remove 0 9462
>> Removing city A (0,9462)
 
remove 0 9463
>> Removing city A (0,9463)
 
remove 0 9464
>> Removing city A (0,9464)
 
remove 0 9465
>> Removing city A (0,9465)
 
remove 0 9466
>> Removing city A (0,9466)
 
remove 0 9467
>> Removing city A (0,9467)
 
remove 0 9468
>> Removing city A (0,9468)
 
remove 0 9469
>> Removing city A (0,9469)
 
remove 0 9470
>> Removing city A (0,9470)
 
remove 0 9471
>> Removing city A (0,9471)
 
remove 0 9472
>> Removing city A (0,9472)
 
remove 0 9473
>> Removing city A (0,9473)
 
remove 0 9474
>> Removing city A (0,9474)
 
remove 0 9475
>> Removing city A (0,9475)
 
remove 0 9476
>> Removing city A (0,9476)
 
remove 0 9477
>> Removing city A (0,9477)
 
remove 0 9478
>> Removing city A (0,9478)
 
remove 0 9479
>> Removing city A (0,9479)
 
remove 0 9480
>> Removing city A (0,9480)
 
remove 0 9481
>> Removing city A (0,9481)
 
remove 0 9482
>> Removing city A (0,9482)
 
remove 0 9483
>> Removing city A (0,9483)
 
remove 0 9484
>> Removing city A (0,9484)
 
remove 0 9485
>> Removing city A (0,9485)
 
remove 0 9486
>> Removing city A (0,9486)
 
remove 0 9487
>> Removing city A (0,9487)
 
remove 0 9488
>> Removing city A (0,9488)
 
remove 0 9489
>> Removing city A (0,9489)
 
remove 0 9490
>> Removing city A (0,9490)
 
remove 0 9491
>> Removing city A (0,9491)
 
remove 0 9492
>> Removing city A (0,9492)
 
remove 0 9493
>> Removing city A (0,9493)
 
remove 0 9494
>> Removing city A (0,9494)
 
remove 0 9495
>> Removing city A (0,9495)
 
remove 0 9496
>> Removing city A (0,9496)
 
remove 0 9497
>> Removing city A (0,9497)
 
remove 0 9498
>> Removing city A (0,9498)
 
remove 0 9499
>> Removing city A (0,9499)
 
remove 0 9500
>> Removing city A (0,9500)
 
remove 0 9501
>> Removing city A (0,9501)
 
remove 0 9502
>> Removing city A (0,9502)
 
remove 0 9503
>> Removing city A (0,9503)
 
remove 0 9504
>> Removing city A (0,9504)
 
remove 0 9505
>> Removing city A (0,9505)
 
remove 0 9506
>> Removing city A (0,9506)
 
remove 0 9507
>> Removing city A (0,9507)
 
remove 0 9508
>> Removing city A (0,9508)
 
remove 0 9509
>> Removing city A (0,9509)
 
remove 0 9510
>> Removing city A (0,9510)
 
remove 0 9511
>> Removing city A (0,9511)
 
remove 0 9512
>> Removing city A (0,9512)
 
remove 0 9513
>> Removing city A (0,9513)
 
remove 0 9514
>> Removing city A (0,9514)
 
remove 0 9515
>> Removing city A (0,9515)
 
remove 0 9516
>> Removing city A (0,9516)
 
remove 0 9517
>> Removing city A (0,9517)
 
remove 0 9518
>> Removing city A (0,9518)
 
remove 0 9519
>> Removing city A (0,9519)
 
remove 0 9520
>> Removing city A (0,9520)
 
remove 0 9521
>> Removing city A (0,9521)
 
remove 0 9522
>> Removing city A (0,9522)
 
remove 0 9523
>> Removing city A (0,9523)
 
remove 0 9524
>> Removing city A (0,9524)
 
remove 0 9525
>> Removing city A (0,9525)
 
remove 0 9526
>> Removing city A (0,9526)
 
remove 0 9527
>> Removing city A (0,9527)
 
remove 0 9528
>> Removing city A (0,9528)
 
remove 0 9529
>> Removing city A (0,9529)
 
remove 0 9530
>> Removing city A (0,9530)
 
remove 0 9531
>> Removing city A (0,9531)
 
remove 0 9532
>> Removing city A (0,9532)
 
remove 0 9533
>> Removing city A (0,9533)
 
remove 0 9534
>> Removing city A (0,9534)
 
remove 0 9535
>> Removing city A (0,9535)
 
remove 0 9536
>> Removing city A (0,9536)
 
remove 0 9537
>> Removing city A (0,9537)
 
remove 0 9538
>> Removing city A (0,9538)
 
remove 0 9539
>> Removing city A (0,9539)
 
remove 0 9540
>> Removing city A (0,9540)
 
remove 0 9541
>> Removing city A (0,9541)
 
remove 0 9542
>> Removing city A (0,9542)
 
remove 0 9543
>> Removing city A (0,9543)
 
remove 0 9544
>> Removing city A (0,9544)
 
remove 0 9545
>> Removing city A (0,9545)
 
remove 0 9546
>> Removing city A (0,9546)
 
remove 0 9547
>> Removing city A (0,9547)
 
remove 0 9548
>> Removing city A (0,9548)
 
remove 0 9549
>> Removing city A (0,9549)
 
remove 0 9550
>> Removing city A (0,9550)
 
remove 0 9551
>> Removing city A (0,9551)
 
remove 0 9552
>> Removing city A (0,9552)
 
remove 0 9553
>> Removing city A (0,9553)
 
remove 0 9554
>> Removing city A (0,9554)
 
remove 0 9555
>> Removing city A (0,9555)
 
remove 0 9556
>> Removing city A (0,9556)
 
remove 0 9557
>> Removing city A (0,9557)
 
remove 0 9558
>> Removing city A (0,9558)
 
remove 0 9559
>> Removing city A (0,9559)
 
remove 0 9560
>> Removing city A (0,9560)
 
remove 0 9561
>> Removing city A (0,9561)
 
remove 0 9562
>> Removing city A (0,9562)
 
remove 0 9563
>> Removing city A (0,9563)
 
remove 0 9564
>> Removing city A (0,9564)
 
remove 0 9565
>> Removing city A (0,9565)
 
remove 0 9566
>> Removing city A (0,9566)
 
remove 0 9567
>> Removing city A (0,9567)
 
remove 0 9568
>> Removing city A (0,9568)
 
remove 0 9569
>> Removing city A (0,9569)
 
remove 0 9570
>> Removing city A (0,9570)
 
remove 0 9571
>> Removing city A (0,9571)
 
remove 0 9572
>> Removing city A (0,9572)
 
remove 0 9573
>> Removing city A (0,9573)
 
remove 0 9574
>> Removing city A (0,9574)
 
remove 0 9575
>> Removing city A (0,9575)
 
remove 0 9576
>> Removing city A (0,9576)
 
remove 0 9577
>> Removing city A (0,9577)
 
remove 0 9578
>> Removing city A (0,9578)
 
remove 0 9579
>> Removing city A (0,9579)
 
remove 0 9580
>> Removing city A (0,9580)
 
remove 0 9581
>> Removing city A (0,9581)
 
remove 0 9582
>> Removing city A (0,9582)
 
remove 0 9583
>> Removing city A (0,9583)
 
remove 0 9584
>> Removing city A (0,9584)
 
remove 0 9585
>> Removing city A (0,9585)
 
remove 0 9586
>> Removing city A (0,9586)
 
remove 0 9587
>> Removing city A (0,9587)
 
remove 0 9588
>> Removing city A (0,9588)
 
remove 0 9589
>> Removing city A (0,9589)
 
remove 0 9590
>> Removing city A (0,9590)
 
remove 0 9591
>> Removing city A (0,9591)
 
remove 0 9592
>> Removing city A (0,9592)
 
remove 0 9593
>> Removing city A (0,9593)
 
remove 0 9594
>> Removing city A (0,9594)
 
remove 0 9595
>> Removing city A (0,9595)
 
remove 0 9596
>> Removing city A (0,9596)
 
remove 0 9597
>> Removing city A (0,9597)
 
remove 0 9598
>> Removing city A (0,9598)
 
remove 0 9599
>> Removing city A (0,9599)
 
remove 0 9600
>> Removing city A (0,9600)
 
remove 0 9601
>> Removing city A (0,9601)
 
remove 0 9602
>> Removing city A (0,9602)
 
remove 0 9603
>> Removing city A (0,9603)
 
remove 0 9604
>> Removing city A (0,9604)
 
remove 0 9605
>> Removing city A (0,9605)
 
remove 0 9606
>> Removing city A (0,9606)
 
remove 0 9607
>> Removing city A (0,9607)
 
remove 0 9608
>> Removing city A (0,9608)
 
remove 0 9609
>> Removing city A (0,9609)
 
remove 0 9610
>> Removing city A (0,9610)
 
remove 0 9611
>> Removing city A (0,9611)
 
remove 0 9612
>> Removing city A (0,9612)
 
remove 0 9613
>> Removing city A (0,9613)
 
remove 0 9614
>> Removing city A (0,9614)
 
remove 0 9615
>> Removing city A (0,9615)
 
remove 0 9616
>> Removing city A (0,9616)
 
remove 0 9617
>> Removing city A (0,9617)
 
remove 0 9618
>> Removing city A (0,9618)
 
remove 0 9619
>> Removing city A (0,9619)
 
remove 0 9620
>> Removing city A (0,9620)
 
remove 0 9621
>> Removing city A (0,9621)
 
remove 0 9622
>> Removing city A (0,9622)
 
remove 0 9623
>> Removing city A (0,9623)
 
remove 0 9624
>> Removing city A (0,9624)
 
remove 0 9625
>> Removing city A (0,9625)
 
remove 0 9626
>> Removing city A (0,9626)
 
remove 0 9627
>> Removing city A (0,9627)
 
remove 0 9628
>> Removing city A (0,9628)
 
remove 0 9629
>> Removing city A (0,9629)
 
remove 0 9630
>> Removing city A (0,9630)
 
remove 0 9631
>> Removing city A (0,9631)
 
remove 0 9632
>> Removing city A (0,9632)
 
remove 0 9633
>> Removing city A (0,9633)
 
remove 0 9634
>> Removing city A (0,9634)
 
remove 0 9635
>> Removing city A (0,9635)
 
remove 0 9636
>> Removing city A (0,9636)
 
remove 0 9637
>> Removing city A (0,9637)
 
remove 0 9638
>> Removing city A (0,9638)
 
remove 0 9639
>> Removing city A (0,9639)
 
remove 0 9640
>> Removing city A (0,9640)
 
remove 0 9641
>> Removing city A (0,9641)
 
remove 0 9642
>> Removing city A (0,9642)
 
remove 0 9643
>> Removing city A (0,9643)
 
remove 0 9644
>> Removing city A (0,9644)
 
remove 0 9645
>> Removing city A (0,9645)
 
remove 0 9646
>> Removing city A (0,9646)
 
remove 0 9647
>> Removing city A (0,9647)
 
remove 0 9648
>> Removing city A (0,9648)
 
remove 0 9649
>> Removing city A (0,9649)
 
remove 0 9650
>> Removing city A (0,9650)
 
remove 0 9651
>> Removing city A (0,9651)
 
remove 0 9652
>> Removing city A (0,9652)
 
remove 0 9653
>> Removing city A (0,9653)
 
remove 0 9654
>> Removing city A (0,9654)
 
remove 0 9655
>> Removing city A (0,9655)
 
remove 0 9656
>> Removing city A (0,9656)
 
remove 0 9657
>> Removing city A (0,9657)
 
remove 0 9658
>> Removing city A (0,9658)
 
remove 0 9659
>> Removing city A (0,9659)
 
remove 0 9660
>> Removing city A (0,9660)
 
remove 0 9661
>> Removing city A (0,9661)
 
remove 0 9662
>> Removing city A (0,9662)
 
remove 0 9663
>> Removing city A (0,9663)
 
remove 0 9664
>> Removing city A (0,9664)
 
remove 0 9665
>> Removing city A (0,9665)
 
remove 0 9666
>> Removing city A (0,9666)
 
remove 0 9667
>> Removing city A (0,9667)
 
remove 0 9668
>> Removing city A (0,9668)
 
remove 0 9669
>> Removing city A (0,9669)
 
remove 0 9670
>> Removing city A (0,9670)
 
remove 0 9671
>> Removing city A (0,9671)
 
remove 0 9672
>> Removing city A (0,9672)
 
remove 0 9673
>> Removing city A (0,9673)
 
remove 0 9674
>> Removing city A (0,9674)
 
remove 0 9675
>> Removing city A (0,9675)
 
remove 0 9676
>> Removing city A (0,9676)
 
remove 0 9677
>> Removing city A (0,9677)
 
remove 0 9678
>> Removing city A (0,9678)
 
remove 0 9679
>> Removing city A (0,9679)
 
remove 0 9680
>> Removing city A (0,9680)
 
remove 0 9681
>> Removing city A (0,9681)
 
remove 0 9682
>> Removing city A (0,9682)
 
remove 0 9683
>> Removing city A (0,9683)
 
remove 0 9684
>> Removing city A (0,9684)
 
remove 0 9685
>> Removing city A (0,9685)
 
remove 0 9686
>> Removing city A (0,9686)
 
remove 0 9687
>> Removing city A (0,9687)
 
remove 0 9688
>> Removing city A (0,9688)
 
remove 0 9689
>> Removing city A (0,9689)
 
remove 0 9690
>> Removing city A (0,9690)
 
remove 0 9691
>> Removing city A (0,9691)
 
remove 0 9692
>> Removing city A (0,9692)
 
remove 0 9693
>> Removing city A (0,9693)
 
remove 0 9694
>> Removing city A (0,9694)
 
remove 0 9695
>> Removing city A (0,9695)
 
remove 0 9696
>> Removing city A (0,9696)
 
remove 0 9697
>> Removing city A (0,9697)
 
remove 0 9698
>> Removing city A (0,9698)
 
remove 0 9699
>> Removing city A (0,9699)
 
remove 0 9700
>> Removing city A (0,9700)
 
remove 0 9701
>> Removing city A (0,9701)
 
remove 0 9702
>> Removing city A (0,9702)
 
remove 0 9703
>> Removing city A (0,9703)
 
remove 0 9704
>> Removing city A (0,9704)
 
remove 0 9705
>> Removing city A (0,9705)
 
remove 0 9706
>> Removing city A (0,9706)
 
remove 0 9707
>> Removing city A (0,9707)
 
remove 0 9708
>> Removing city A (0,9708)
 
remove 0 9709
>> Removing city A (0,9709)
 
remove 0 9710
>> Removing city A (0,9710)
 
remove 0 9711
>> Removing city A (0,9711)
 
remove 0 9712
>> Removing city A (0,9712)
 
remove 0 9713
>> Removing city A (0,9713)
 
remove 0 9714
>> Removing city A (0,9714)
 
remove 0 9715
>> Removing city A (0,9715)
 
remove 0 9716
>> Removing city A (0,9716)
 
remove 0 9717
>> Removing city A (0,9717)
 
remove 0 9718
>> Removing city A (0,9718)
 
remove 0 9719
>> Removing city A (0,9719)
 
remove 0 9720
>> Removing city A (0,9720)
 
remove 0 9721
>> Removing city A (0,9721)
 
remove 0 9722
>> Removing city A (0,9722)
 
remove 0 9723
>> Removing city A (0,9723)
 
remove 0 9724
>> Removing city A (0,9724)
 
remove 0 9725
>> Removing city A (0,9725)
 
remove 0 9726
>> Removing city A (0,9726)
 
remove 0 9727
>> Removing city A (0,9727)
 
remove 0 9728
>> Removing city A (0,9728)
 
remove 0 9729
>> Removing city A (0,9729)
 
remove 0 9730
>> Removing city A (0,9730)
 
remove 0 9731
>> Removing city A (0,9731)
 
remove 0 9732
>> Removing city A (0,9732)
 
remove 0 9733
>> Removing city A (0,9733)
 
remove 0 9734
>> Removing city A (0,9734)
 
remove 0 9735
>> Removing city A (0,9735)
 
remove 0 9736
>> Removing city A (0,9736)
 
remove 0 9737
>> Removing city A (0,9737)
 
remove 0 9738
>> Removing city A (0,9738)
 
remove 0 9739
>> Removing city A (0,9739)
 
remove 0 9740
>> Removing city A (0,9740)
 
remove 0 9741
>> Removing city A (0,9741)
 
remove 0 9742
>> Removing city A (0,9742)
 
remove 0 9743
>> Removing city A (0,9743)
 
remove 0 9744
>> Removing city A (0,9744)
 
remove 0 9745
>> Removing city A (0,9745)
 
remove 0 9746
>> Removing city A (0,9746)
 
remove 0 9747
>> Removing city A (0,9747)
 
remove 0 9748
>> Removing city A (0,9748)
 
remove 0 9749
>> Removing city A (0,9749)
 
remove 0 9750
>> Removing city A (0,9750)
 
remove 0 9751
>> Removing city A (0,9751)
 
remove 0 9752
>> Removing city A (0,9752)
 
remove 0 9753
>> Removing city A (0,9753)
 
remove 0 9754
>> Removing city A (0,9754)
 
remove 0 9755
>> Removing city A (0,9755)
 
remove 0 9756
>> Removing city A (0,9756)
 
remove 0 9757
>> Removing city A (0,9757)
 
remove 0 9758
>> Removing city A (0,9758)
 
remove 0 9759
>> Removing city A (0,9759)
 
remove 0 9760
>> Removing city A (0,9760)
 
remove 0 9761
>> Removing city A (0,9761)
 
remove 0 9762
>> Removing city A (0,9762)
 
remove 0 9763
>> Removing city A (0,9763)
 
remove 0 9764
>> Removing city A (0,9764)
 
remove 0 9765
>> Removing city A (0,9765)
 
remove 0 9766
>> Removing city A (0,9766)
 
remove 0 9767
>> Removing city A (0,9767)
 
remove 0 9768
>> Removing city A (0,9768)
 
remove 0 9769
>> Removing city A (0,9769)
 
remove 0 9770
>> Removing city A (0,9770)
 
remove 0 9771
>> Removing city A (0,9771)
 
remove 0 9772
>> Removing city A (0,9772)
 
remove 0 9773
>> Removing city A (0,9773)
 
remove 0 9774
>> Removing city A (0,9774)
 
remove 0 9775
>> Removing city A (0,9775)
 
remove 0 9776
>> Removing city A (0,9776)
 
remove 0 9777
>> Removing city A (0,9777)
 
remove 0 9778
>> Removing city A (0,9778)
 
remove 0 9779
>> Removing city A (0,9779)
 
remove 0 9780
>> Removing city A (0,9780)
 
remove 0 9781
>> Removing city A (0,9781)
 
remove 0 9782
>> Removing city A (0,9782)
 
remove 0 9783
>> Removing city A (0,9783)
 
remove 0 9784
>> Removing city A (0,9784)
 
remove 0 9785
>> Removing city A (0,9785)
 
remove 0 9786
>> Removing city A (0,9786)
 
remove 0 9787
>> Removing city A (0,9787)
 
remove 0 9788
>> Removing city A (0,9788)
 
remove 0 9789
>> Removing city A (0,9789)
 
remove 0 9790
>> Removing city A (0,9790)
 
remove 0 9791
>> Removing city A (0,9791)
 
remove 0 9792
>> Removing city A (0,9792)
 
remove 0 9793
>> Removing city A (0,9793)
 
remove 0 9794
>> Removing city A (0,9794)
 
remove 0 9795
>> Removing city A (0,9795)
 
remove 0 9796
>> Removing city A (0,9796)
 
remove 0 9797
>> Removing city A (0,9797)
 
remove 0 9798
>> Removing city A (0,9798)
 
remove 0 9799
>> Removing city A (0,9799)
 
remove 0 9800
>> Removing city A (0,9800)
 
remove 0 9801
>> Removing city A (0,9801)
 
remove 0 9802
>> Removing city A (0,9802)
 
remove 0 9803
>> Removing city A (0,9803)
 
remove 0 9804
>> Removing city A (0,9804)
 
remove 0 9805
>> Removing city A (0,9805)
 
remove 0 9806
>> Removing city A (0,9806)
 
remove 0 9807
>> Removing city A (0,9807)
 
remove 0 9808
>> Removing city A (0,9808)
 
remove 0 9809
>> Removing city A (0,9809)
 
remove 0 9810
>> Removing city A (0,9810)
 
remove 0 9811
>> Removing city A (0,9811)
 
remove 0 9812
>> Removing city A (0,9812)
 
remove 0 9813
>> Removing city A (0,9813)
 
remove 0 9814
>> Removing city A (0,9814)
 
remove 0 9815
>> Removing city A (0,9815)
 
remove 0 9816
>> Removing city A (0,9816)
 
remove 0 9817
>> Removing city A (0,9817)
 
remove 0 9818
>> Removing city A (0,9818)
 
remove 0 9819
>> Removing city A (0,9819)
 
remove 0 9820
>> Removing city A (0,9820)
 
remove 0 9821
>> Removing city A (0,9821)
 
remove 0 9822
>> Removing city A (0,9822)
 
remove 0 9823
>> Removing city A (0,9823)
 
remove 0 9824
>> Removing city A (0,9824)
 
remove 0 9825
>> Removing city A (0,9825)
 
remove 0 9826
>> Removing city A (0,9826)
 
remove 0 9827
>> Removing city A (0,9827)
 
remove 0 9828
>> Removing city A (0,9828)
 
remove 0 9829
>> Removing city A (0,9829)
 
remove 0 9830
>> Removing city A (0,9830)
 
remove 0 9831
>> Removing city A (0,9831)
 
remove 0 9832
>> Removing city A (0,9832)
 
remove 0 9833
>> Removing city A (0,9833)
 
remove 0 9834
>> Removing city A (0,9834)
 
remove 0 9835
>> Removing city A (0,9835)
 
remove 0 9836
>> Removing city A (0,9836)
 
remove 0 9837
>> Removing city A (0,9837)
 
remove 0 9838
>> Removing city A (0,9838)
 
remove 0 9839
>> Removing city A (0,9839)
 
remove 0 9840
>> Removing city A (0,9840)
 
remove 0 9841
>> Removing city A (0,9841)
 
remove 0 9842
>> Removing city A (0,9842)
 
remove 0 9843
>> Removing city A (0,9843)
 
remove 0 9844
>> Removing city A (0,9844)
 
remove 0 9845
>> Removing city A (0,9845)
 
remove 0 9846
>> Removing city A (0,9846)
 
remove 0 9847
>> Removing city A (0,9847)
 
remove 0 9848
>> Removing city A (0,9848)
 
remove 0 9849
>> Removing city A (0,9849)
 
remove 0 9850
>> Removing city A (0,9850)
 
remove 0 9851
>> Removing city A (0,9851)
 
remove 0 9852
>> Removing city A (0,9852)
 
remove 0 9853
>> Removing city A (0,9853)
 
remove 0 9854
>> Removing city A (0,9854)
 
remove 0 9855
>> Removing city A (0,9855)
 
remove 0 9856
>> Removing city A (0,9856)
 
remove 0 9857
>> Removing city A (0,9857)
 
remove 0 9858
>> Removing city A (0,9858)
 
remove 0 9859
>> Removing city A (0,9859)
 
remove 0 9860
>> Removing city A (0,9860)
 
remove 0 9861
>> Removing city A (0,9861)
 
remove 0 9862
>> Removing city A (0,9862)
 
remove 0 9863
>> Removing city A (0,9863)
 
remove 0 9864
>> Removing city A (0,9864)
 
remove 0 9865
>> Removing city A (0,9865)
 
remove 0 9866
>> Removing city A (0,9866)
 
remove 0 9867
>> Removing city A (0,9867)
 
remove 0 9868
>> Removing city A (0,9868)
 
remove 0 9869
>> Removing city A (0,9869)
 
remove 0 9870
>> Removing city A (0,9870)
 
remove 0 9871
>> Removing city A (0,9871)
 
remove 0 9872
>> Removing city A (0,9872)
 
remove 0 9873
>> Removing city A (0,9873)
 
remove 0 9874
>> Removing city A (0,9874)
 
remove 0 9875
>> Removing city A (0,9875)
 
remove 0 9876
>> Removing city A (0,9876)
 
remove 0 9877
>> Removing city A (0,9877)
 
remove 0 9878
>> Removing city A (0,9878)
 
remove 0 9879
>> Removing city A (0,9879)
 
remove 0 9880
>> Removing city A (0,9880)
 
remove 0 9881
>> Removing city A (0,9881)
 
remove 0 9882
>> Removing city A (0,9882)
 
remove 0 9883
>> Removing city A (0,9883)
 
remove 0 9884
>> Removing city A (0,9884)
 
remove 0 9885
>> Removing city A (0,9885)
 
remove 0 9886
>> Removing city A (0,9886)
 
remove 0 9887
>> Removing city A (0,9887)
 
remove 0 9888
>> Removing city A (0,9888)
 
remove 0 9889
>> Removing city A (0,9889)
 
remove 0 9890
>> Removing city A (0,9890)
 
remove 0 9891
>> Removing city A (0,9891)
 
remove 0 9892
>> Removing city A (0,9892)
 
remove 0 9893
>> Removing city A (0,9893)
 
remove 0 9894
>> Removing city A (0,9894)
 
remove 0 9895
>> Removing city A (0,9895)
 
remove 0 9896
>> Removing city A (0,9896)
 
remove 0 9897
>> Removing city A (0,9897)
 
remove 0 9898
>> Removing city A (0,9898)
 
remove 0 9899
>> Removing city A (0,9899)
 
remove 0 9900
>> Removing city A (0,9900)
 
remove 0 9901
>> Removing city A (0,9901)
 
remove 0 9902
>> Removing city A (0,9902)
 
remove 0 9903
>> Removing city A (0,9903)
 
remove 0 9904
>> Removing city A (0,9904)
 
remove 0 9905
>> Removing city A (0,9905)
 
remove 0 9906
>> Removing city A (0,9906)
 
remove 0 9907
>> Removing city A (0,9907)
 
remove 0 9908
>> Removing city A (0,9908)
 
remove 0 9909
>> Removing city A (0,9909)
 
remove 0 9910
>> Removing city A (0,9910)
 
remove 0 9911
>> Removing city A (0,9911)
 
remove 0 9912
>> Removing city A (0,9912)
 
remove 0 9913
>> Removing city A (0,9913)
 
remove 0 9914
>> Removing city A (0,9914)
 
remove 0 9915
>> Removing city A (0,9915)
 
remove 0 9916
>> Removing city A (0,9916)
 
remove 0 9917
>> Removing city A (0,9917)
 
remove 0 9918
>> Removing city A (0,9918)
 
remove 0 9919
>> Removing city A (0,9919)
 
remove 0 9920
>> Removing city A (0,9920)
 
remove 0 9921
>> Removing city A (0,9921)
 
remove 0 9922
>> Removing city A (0,9922)
 
remove 0 9923
>> Removing city A (0,9923)
 
remove 0 9924
>> Removing city A (0,9924)
 
remove 0 9925
>> Removing city A (0,9925)
 
remove 0 9926
>> Removing city A (0,9926)
 
remove 0 9927
>> Removing city A (0,9927)
 
remove 0 9928
>> Removing city A (0,9928)
 
remove 0 9929
>> Removing city A (0,9929)
 
remove 0 9930
>> Removing city A (0,9930)
 
remove 0 9931
>> Removing city A (0,9931)
 
remove 0 9932
>> Removing city A (0,9932)
 
remove 0 9933
>> Removing city A (0,9933)
 
remove 0 9934
>> Removing city A (0,9934)
 
remove 0 9935
>> Removing city A (0,9935)
 
remove 0 9936
>> Removing city A (0,9936)
 
remove 0 9937
>> Removing city A (0,9937)
 
remove 0 9938
>> Removing city A (0,9938)
 
remove 0 9939
>> Removing city A (0,9939)
 
remove 0 9940
>> Removing city A (0,9940)
 
remove 0 9941
>> Removing city A (0,9941)
 
remove 0 9942
>> Removing city A (0,9942)
 
remove 0 9943
>> Removing city A (0,9943)
 
remove 0 9944
>> Removing city A (0,9944)
 
remove 0 9945
>> Removing city A (0,9945)
 
remove 0 9946
>> Removing city A (0,9946)
 
remove 0 9947
>> Removing city A (0,9947)
 
remove 0 9948
>> Removing city A (0,9948)
 
remove 0 9949
>> Removing city A (0,9949)
 
remove 0 9950
>> Removing city A (0,9950)
 
remove 0 9951
>> Removing city A (0,9951)
 
remove 0 9952
>> Removing city A (0,9952)
 
remove 0 9953
>> Removing city A (0,9953)
 
remove 0 9954
>> Removing city A (0,9954)
 
remove 0 9955
>> Removing city A (0,9955)
 
remove 0 9956
>> Removing city A (0,9956)
 
remove 0 9957
>> Removing city A (0,9957)
 
remove 0 9958
>> Removing city A (0,9958)
 
remove 0 9959
>> Removing city A (0,9959)
 
remove 0 9960
>> Removing city A (0,9960)
 
remove 0 9961
>> Removing city A (0,9961)
 
remove 0 9962
>> Removing city A (0,9962)
 
remove 0 9963
>> Removing city A (0,9963)
 
remove 0 9964
>> Removing city A (0,9964)
 
remove 0 9965
>> Removing city A (0,9965)
 
remove 0 9966
>> Removing city A (0,9966)
 
remove 0 9967
>> Removing city A (0,9967)
 
remove 0 9968
>> Removing city A (0,9968)
 
remove 0 9969
>> Removing city A (0,9969)
 
remove 0 9970
>> Removing city A (0,9970)
 
remove 0 9971
>> Removing city A (0,9971)
 
remove 0 9972
>> Removing city A (0,9972)
 
remove 0 9973
>> Removing city A (0,9973)
 
remove 0 9974
>> Removing city A (0,9974)
 
remove 0 9975
>> Removing city A (0,9975)
 
remove 0 9976
>> Removing city A (0,9976)
 
remove 0 9977
>> Removing city A (0,9977)
 
remove 0 9978
>> Removing city A (0,9978)
 
remove 0 9979
>> Removing city A (0,9979)
 
remove 0 9980
>> Removing city A (0,9980)
 
remove 0 9981
>> Removing city A (0,9981)
 
remove 0 9982
>> Removing city A (0,9982)
 
remove 0 9983
>> Removing city A (0,9983)
 
remove 0 9984
>> Removing city A (0,9984)
 
remove 0 9985
>> Removing city A (0,9985)
 
remove 0 9986
>> Removing city A (0,9986)
 
remove 0 9987
>> Removing city A (0,9987)
 
remove 0 9988
>> Removing city A (0,9988)
 
remove 0 9989
>> Removing city A (0,9989)
 
remove 0 9990
>> Removing city A (0,9990)
 
remove 0 9991
>> Removing city A (0,9991)
 
remove 0 9992
>> Removing city A (0,9992)
 
remove 0 9993
>> Removing city A (0,9993)
 
remove 0 9994
>> Removing city A (0,9994)
 
remove 0 9995
>> Removing city A (0,9995)
 
remove 0 9996
>> Removing city A (0,9996)
 
remove 0 9997
>> Removing city A (0,9997)
 
remove 0 9998
>> Removing city A (0,9998)
 
remove 0 9999
>> Removing city A (0,9999)
 
remove 0 10000
>> Removing city A (0,10000)
 
remove 0 10001
>> Removing city A (0,10001)
 
remove 0 10002
>> Removing city A (0,10002)
 
remove 0 10003
>> Removing city A (0,10003)
 
remove 0 10004
>> Removing city A (0,10004)
 
remove 0 10005
>> Removing city A (0,10005)
 
remove 0 10006
>> Removing city A (0,10006)
 
remove 0 10007
>> Removing city A (0,10007)
 
remove 0 10008
>> Removing city A (0,10008)
 
remove 0 10009
>> Removing city A (0,10009)
 
remove 0 10010
>> Removing city A (0,10010)
 
remove 0 10011
>> Removing city A (0,10011)
 
remove 0 10012
>> Removing city A (0,10012)
 
remove 0 10013
>> Removing city A (0,10013)
 
remove 0 10014
>> Removing city A (0,10014)
 
remove 0 10015
>> Removing city A (0,10015)
 
remove 0 10016
>> Removing city A (0,10016)
 
remove 0 10017
>> Removing city A (0,10017)
 
remove 0 10018
>> Removing city A (0,10018)
 
remove 0 10019
>> Removing city A (0,10019)
 
remove 0 10020
>> Removing city A (0,10020)
 
remove 0 10021
>> Removing city A (0,10021)
 
remove 0 10022
>> Removing city A (0,10022)
 
remove 0 10023
>> Removing city A (0,10023)
 
remove 0 10024
>> Removing city A (0,10024)
 
remove 0 10025
>> Removing city A (0,10025)
 
remove 0 10026
>> Removing city A (0,10026)
 
remove 0 10027
>> Removing city A (0,10027)
 
remove 0 10028
>> Removing city A (0,10028)
 
remove 0 10029
>> Removing city A (0,10029)
 
remove 0 10030
>> Removing city A (0,10030)
 
remove 0 10031
>> Removing city A (0,10031)
 
remove 0 10032
>> Removing city A (0,10032)
 
remove 0 10033
>> Removing city A (0,10033)
 
remove 0 10034
>> Removing city A (0,10034)
 
remove 0 10035
>> Removing city A (0,10035)
 
remove 0 10036
>> Removing city A (0,10036)
 
remove 0 10037
>> Removing city A (0,10037)
 
remove 0 10038
>> Removing city A (0,10038)
 
remove 0 10039
>> Removing city A (0,10039)
 
remove 0 10040
>> Removing city A (0,10040)
 
remove 0 10041
>> Removing city A (0,10041)
 
remove 0 10042
>> Removing city A (0,10042)
 
remove 0 10043
>> Removing city A (0,10043)
 
remove 0 10044
>> Removing city A (0,10044)
 
remove 0 10045
>> Removing city A (0,10045)
 
remove 0 10046
>> Removing city A (0,10046)
 
remove 0 10047
>> Removing city A (0,10047)
 
remove 0 10048
>> Removing city A (0,10048)
 
remove 0 10049
>> Removing city A (0,10049)
 
remove 0 10050
>> Removing city A (0,10050)
 
remove 0 10051
>> Removing city A (0,10051)
 
remove 0 10052
>> Removing city A (0,10052)
 
remove 0 10053
>> Removing city A (0,10053)
 
remove 0 10054
>> Removing city A (0,10054)
 
remove 0 10055
>> Removing city A (0,10055)
 
remove 0 10056
>> Removing city A (0,10056)
 
remove 0 10057
>> Removing city A (0,10057)
 
remove 0 10058
>> Removing city A (0,10058)
 
remove 0 10059
>> Removing city A (0,10059)
 
remove 0 10060
>> Removing city A (0,10060)
 
remove 0 10061
>> Removing city A (0,10061)
 
remove 0 10062
>> Removing city A (0,10062)
 
remove 0 10063
>> Removing city A (0,10063)
 
remove 0 10064
>> Removing city A (0,10064)
 
remove 0 10065
>> Removing city A (0,10065)
 
remove 0 10066
>> Removing city A (0,10066)
 
remove 0 10067
>> Removing city A (0,10067)
 
remove 0 10068
>> Removing city A (0,10068)
 
remove 0 10069
>> Removing city A (0,10069)
 
remove 0 10070
>> Removing city A (0,10070)
 
remove 0 10071
>> Removing city A (0,10071)
 
remove 0 10072
>> Removing city A (0,10072)
 
remove 0 10073
>> Removing city A (0,10073)
 
remove 0 10074
>> Removing city A (0,10074)
 
remove 0 10075
>> Removing city A (0,10075)
 
remove 0 10076
>> Removing city A (0,10076)
 
remove 0 10077
>> Removing city A (0,10077)
 
remove 0 10078
>> Removing city A (0,10078)
 
remove 0 10079
>> Removing city A (0,10079)
 
remove 0 10080
>> Removing city A (0,10080)
 
remove 0 10081
>> Removing city A (0,10081)
 
remove 0 10082
>> Removing city A (0,10082)
 
remove 0 10083
>> Removing city A (0,10083)
 
remove 0 10084
>> Removing city A (0,10084)
 
remove 0 10085
>> Removing city A (0,10085)
 
remove 0 10086
>> Removing city A (0,10086)
 
remove 0 10087
>> Removing city A (0,10087)
 
remove 0 10088
>> Removing city A (0,10088)
 
remove 0 10089
>> Removing city A (0,10089)
 
remove 0 10090
>> Removing city A (0,10090)
 
remove 0 10091
>> Removing city A (0,10091)
 
remove 0 10092
>> Removing city A (0,10092)
 
remove 0 10093
>> Removing city A (0,10093)
 
remove 0 10094
>> Removing city A (0,10094)
 
remove 0 10095
>> Removing city A (0,10095)
 
remove 0 10096
>> Removing city A (0,10096)
 
remove 0 10097
>> Removing city A (0,10097)
 
remove 0 10098
>> Removing city A (0,10098)
 
remove 0 10099
>> Removing city A (0,10099)
 
remove 0 10100
>> Removing city A (0,10100)
 
remove 0 10101
>> Removing city A (0,10101)
 
remove 0 10102
>> Removing city A (0,10102)
 
remove 0 10103
>> Removing city A (0,10103)
 
remove 0 10104
>> Removing city A (0,10104)
 
remove 0 10105
>> Removing city A (0,10105)
 
remove 0 10106
>> Removing city A (0,10106)
 
remove 0 10107
>> Removing city A (0,10107)
 
remove 0 10108
>> Removing city A (0,10108)
 
remove 0 10109
>> Removing city A (0,10109)
 
remove 0 10110
>> Removing city A (0,10110)
 
remove 0 10111
>> Removing city A (0,10111)
 
remove 0 10112
>> Removing city A (0,10112)
 
remove 0 10113
>> Removing city A (0,10113)
 
remove 0 10114
>> Removing city A (0,10114)
 
remove 0 10115
>> Removing city A (0,10115)
 
remove 0 10116
>> Removing city A (0,10116)
 
remove 0 10117
>> Removing city A (0,10117)
 
remove 0 10118
>> Removing city A (0,10118)
 
remove 0 10119
>> Removing city A (0,10119)
 
remove 0 10120
>> Removing city A (0,10120)
 
remove 0 10121
>> Removing city A (0,10121)
 
remove 0 10122
>> Removing city A (0,10122)
 
remove 0 10123
>> Removing city A (0,10123)
 
remove 0 10124
>> Removing city A (0,10124)
 
remove 0 10125
>> Removing city A (0,10125)
 
remove 0 10126
>> Removing city A (0,10126)
 
remove 0 10127
>> Removing city A (0,10127)
 
remove 0 10128
>> Removing city A (0,10128)
 
remove 0 10129
>> Removing city A (0,10129)
 
remove 0 10130
>> Removing city A (0,10130)
 
remove 0 10131
>> Removing city A (0,10131)
 
remove 0 10132
>> Removing city A (0,10132)
 
remove 0 10133
>> Removing city A (0,10133)
 
remove 0 10134
>> Removing city A (0,10134)
 
remove 0 10135
>> Removing city A (0,10135)
 
remove 0 10136
>> Removing city A (0,10136)
 
remove 0 10137
>> Removing city A (0,10137)
 
remove 0 10138
>> Removing city A (0,10138)
 
remove 0 10139
>> Removing city A (0,10139)
 
remove 0 10140
>> Removing city A (0,10140)
 
remove 0 10141
>> Removing city A (0,10141)
 
remove 0 10142
>> Removing city A (0,10142)
 
remove 0 10143
>> Removing city A (0,10143)
 
remove 0 10144
>> Removing city A (0,10144)
 
remove 0 10145
>> Removing city A (0,10145)
 
remove 0 10146
>> Removing city A (0,10146)
 
remove 0 10147
>> Removing city A (0,10147)
 
remove 0 10148
>> Removing city A (0,10148)
 
remove 0 10149
>> Removing city A (0,10149)
 
remove 0 10150
>> Removing city A (0,10150)
 
remove 0 10151
>> Removing city A (0,10151)
 
remove 0 10152
>> Removing city A (0,10152)
 
remove 0 10153
>> Removing city A (0,10153)
 
remove 0 10154
>> Removing city A (0,10154)
 
remove 0 10155
>> Removing city A (0,10155)
 
remove 0 10156
>> Removing city A (0,10156)
 
remove 0 10157
>> Removing city A (0,10157)
 
remove 0 10158
>> Removing city A (0,10158)
 
remove 0 10159
>> Removing city A (0,10159)
 
remove 0 10160
>> Removing city A (0,10160)
 
remove 0 10161
>> Removing city A (0,10161)
 
remove 0 10162
>> Removing city A (0,10162)
 
remove 0 10163
>> Removing city A (0,10163)
 
remove 0 10164
>> Removing city A (0,10164)
 
remove 0 10165
>> Removing city A (0,10165)
 
remove 0 10166
>> Removing city A (0,10166)
 
remove 0 10167
>> Removing city A (0,10167)
 
remove 0 10168
>> Removing city A (0,10168)
 
remove 0 10169
>> Removing city A (0,10169)
 
remove 0 10170
>> Removing city A (0,10170)
 
remove 0 10171
>> Removing city A (0,10171)
 
remove 0 10172
>> Removing city A (0,10172)
 
remove 0 10173
>> Removing city A (0,10173)
 
remove 0 10174
>> Removing city A (0,10174)
 
remove 0 10175
>> Removing city A (0,10175)
 
remove 0 10176
>> Removing city A (0,10176)
 
remove 0 10177
>> Removing city A (0,10177)
 
remove 0 10178
>> Removing city A (0,10178)
 
remove 0 10179
>> Removing city A (0,10179)
 
remove 0 10180
>> Removing city A (0,10180)
 
remove 0 10181
>> Removing city A (0,10181)
 
remove 0 10182
>> Removing city A (0,10182)
 
remove 0 10183
>> Removing city A (0,10183)
 
remove 0 10184
>> Removing city A (0,10184)
 
remove 0 10185
>> Removing city A (0,10185)
 
remove 0 10186
>> Removing city A (0,10186)
 
remove 0 10187
>> Removing city A (0,10187)
 
remove 0 10188
>> Removing city A (0,10188)
 
remove 0 10189
>> Removing city A (0,10189)
 
remove 0 10190
>> Removing city A (0,10190)
 
remove 0 10191
>> Removing city A (0,10191)
 
remove 0 10192
>> Removing city A (0,10192)
 
remove 0 10193
>> Removing city A (0,10193)
 
remove 0 10194
>> Removing city A (0,10194)
 
remove 0 10195
>> Removing city A (0,10195)
 
remove 0 10196
>> Removing city A (0,10196)
 
remove 0 10197
>> Removing city A (0,10197)
 
remove 0 10198
>> Removing city A (0,10198)
 
remove 0 10199
>> Removing city A (0,10199)
 
remove 0 10200
>> Removing city A (0,10200)
 
remove 0 10201
>> Removing city A (0,10201)
 
remove 0 10202
>> Removing city A (0,10202)
 
remove 0 10203
>> Removing city A (0,10203)
 
remove 0 10204
>> Removing city A (0,10204)
 
remove 0 10205
>> Removing city A (0,10205)
 
remove 0 10206
>> Removing city A (0,10206)
 
remove 0 10207
>> Removing city A (0,10207)
 
remove 0 10208
>> Removing city A (0,10208)
 
remove 0 10209
>> Removing city A (0,10209)
 
remove 0 10210
>> Removing city A (0,10210)
 
remove 0 10211
>> Removing city A (0,10211)
 
remove 0 10212
>> Removing city A (0,10212)
 
remove 0 10213
>> Removing city A (0,10213)
 
remove 0 10214
>> Removing city A (0,10214)
 
remove 0 10215
>> Removing city A (0,10215)
 
remove 0 10216
>> Removing city A (0,10216)
 
remove 0 10217
>> Removing city A (0,10217)
 
remove 0 10218
>> Removing city A (0,10218)
 
remove 0 10219
>> Removing city A (0,10219)
 
remove 0 10220
>> Removing city A (0,10220)
 
remove 0 10221
>> Removing city A (0,10221)
 
remove 0 10222
>> Removing city A (0,10222)
 
remove 0 10223
>> Removing city A (0,10223)
 
remove 0 10224
>> Removing city A (0,10224)
 
remove 0 10225
>> Removing city A (0,10225)
 
remove 0 10226
>> Removing city A (0,10226)
 
remove 0 10227
>> Removing city A (0,10227)
 
remove 0 10228
>> Removing city A (0,10228)
 
remove 0 10229
>> Removing city A (0,10229)
 
remove 0 10230
>> Removing city A (0,10230)
 
remove 0 10231
>> Removing city A (0,10231)
 
remove 0 10232
>> Removing city A (0,10232)
 
remove 0 10233
>> Removing city A (0,10233)
 
remove 0 10234
>> Removing city A (0,10234)
 
remove 0 10235
>> Removing city A (0,10235)
 
remove 0 10236
>> Removing city A (0,10236)
 
remove 0 10237
>> Removing city A (0,10237)
 
remove 0 10238
>> Removing city A (0,10238)
 
remove 0 10239
>> Removing city A (0,10239)
 
remove 0 10240
>> Removing city A (0,10240)
 
remove 0 10241
>> Removing city A (0,10241)
 
remove 0 10242
>> Removing city A (0,10242)
 
remove 0 10243
>> Removing city A (0,10243)
 
remove 0 10244
>> Removing city A (0,10244)
 
remove 0 10245
>> Removing city A (0,10245)
 
remove 0 10246
>> Removing city A (0,10246)
 
remove 0 10247
>> Removing city A (0,10247)
 
remove 0 10248
>> Removing city A (0,10248)
 
remove 0 10249
>> Removing city A (0,10249)
 
remove 0 10250
>> Removing city A (0,10250)
 
remove 0 10251
>> Removing city A (0,10251)
 
remove 0 10252
>> Removing city A (0,10252)
 
remove 0 10253
>> Removing city A (0,10253)
 
remove 0 10254
>> Removing city A (0,10254)
 
remove 0 10255
>> Removing city A (0,10255)
 
remove 0 10256
>> Removing city A (0,10256)
 
remove 0 10257
>> Removing city A (0,10257)
 
remove 0 10258
>> Removing city A (0,10258)
 
remove 0 10259
>> Removing city A (0,10259)
 
remove 0 10260
>> Removing city A (0,10260)
 
remove 0 10261
>> Removing city A (0,10261)
 
remove 0 10262
>> Removing city A (0,10262)
 
remove 0 10263
>> Removing city A (0,10263)
 
remove 0 10264
>> Removing city A (0,10264)
 
remove 0 10265
>> Removing city A (0,10265)
 
remove 0 10266
>> Removing city A (0,10266)
 
remove 0 10267
>> Removing city A (0,10267)
 
remove 0 10268
>> Removing city A (0,10268)
 
remove 0 10269
>> Removing city A (0,10269)
 
remove 0 10270
>> Removing city A (0,10270)
 
remove 0 10271
>> Removing city A (0,10271)
 
remove 0 10272
>> Removing city A (0,10272)
 
remove 0 10273
>> Removing city A (0,10273)
 
remove 0 10274
>> Removing city A (0,10274)
 
remove 0 10275
>> Removing city A (0,10275)
 
remove 0 10276
>> Removing city A (0,10276)
 
remove 0 10277
>> Removing city A (0,10277)
 
remove 0 10278
>> Removing city A (0,10278)
 
remove 0 10279
>> Removing city A (0,10279)
 
remove 0 10280
>> Removing city A (0,10280)
 
remove 0 10281
>> Removing city A (0,10281)
 
remove 0 10282
>> Removing city A (0,10282)
 
remove 0 10283
>> Removing city A (0,10283)
 
remove 0 10284
>> Removing city A (0,10284)
 
remove 0 10285
>> Removing city A (0,10285)
 
remove 0 10286
>> Removing city A (0,10286)
 
remove 0 10287
>> Removing city A (0,10287)
 
remove 0 10288
>> Removing city A (0,10288)
 
remove 0 10289
>> Removing city A (0,10289)
 
remove 0 10290
>> Removing city A (0,10290)
 
remove 0 10291
>> Removing city A (0,10291)
 
remove 0 10292
>> Removing city A (0,10292)
 
remove 0 10293
>> Removing city A (0,10293)
 
remove 0 10294
>> Removing city A (0,10294)
 
remove 0 10295
>> Removing city A (0,10295)
 
remove 0 10296
>> Removing city A (0,10296)
 
remove 0 10297
>> Removing city A (0,10297)
 
remove 0 10298
>> Removing city A (0,10298)
 
remove 0 10299
>> Removing city A (0,10299)
 
remove 0 10300
>> Removing city A (0,10300)
 
remove 0 10301
>> Removing city A (0,10301)
 
remove 0 10302
>> Removing city A (0,10302)
 
remove 0 10303
>> Removing city A (0,10303)
 
remove 0 10304
>> Removing city A (0,10304)
 
remove 0 10305
>> Removing city A (0,10305)
 
remove 0 10306
>> Removing city A (0,10306)
 
remove 0 10307
>> Removing city A (0,10307)
 
remove 0 10308
>> Removing city A (0,10308)
 
remove 0 10309
>> Removing city A (0,10309)
 
remove 0 10310
>> Removing city A (0,10310)
 
remove 0 10311
>> Removing city A (0,10311)
 
remove 0 10312
>> Removing city A (0,10312)
 
remove 0 10313
>> Removing city A (0,10313)
 
remove 0 10314
>> Removing city A (0,10314)
 
remove 0 10315
>> Removing city A (0,10315)
 
remove 0 10316
>> Removing city A (0,10316)
 
remove 0 10317
>> Removing city A (0,10317)
 
remove 0 10318
>> Removing city A (0,10318)
 
remove 0 10319
>> Removing city A (0,10319)
 
remove 0 10320
>> Removing city A (0,10320)
 
remove 0 10321
>> Removing city A (0,10321)
 
remove 0 10322
>> Removing city A (0,10322)
 
remove 0 10323
>> Removing city A (0,10323)
 
remove 0 10324
>> Removing city A (0,10324)
 
remove 0 10325
>> Removing city A (0,10325)
 
remove 0 10326
>> Removing city A (0,10326)
 
remove 0 10327
>> Removing city A (0,10327)
 
remove 0 10328
>> Removing city A (0,10328)
 
remove 0 10329
>> Removing city A (0,10329)
 
remove 0 10330
>> Removing city A (0,10330)
 
remove 0 10331
>> Removing city A (0,10331)
 
remove 0 10332
>> Removing city A (0,10332)
 
remove 0 10333
>> Removing city A (0,10333)
 
remove 0 10334
>> Removing city A (0,10334)
 
remove 0 10335
>> Removing city A (0,10335)
 
remove 0 10336
>> Removing city A (0,10336)
 
remove 0 10337
>> Removing city A (0,10337)
 
remove 0 10338
>> Removing city A (0,10338)
 
remove 0 10339
>> Removing city A (0,10339)
 
remove 0 10340
>> Removing city A (0,10340)
 
remove 0 10341
>> Removing city A (0,10341)
 
remove 0 10342
>> Removing city A (0,10342)
 
remove 0 10343
>> Removing city A (0,10343)
 
remove 0 10344
>> Removing city A (0,10344)
 
remove 0 10345
>> Removing city A (0,10345)
 
remove 0 10346
>> Removing city A (0,10346)
 
remove 0 10347
>> Removing city A (0,10347)
 
remove 0 10348
>> Removing city A (0,10348)
 
remove 0 10349
>> Removing city A (0,10349)
 
remove 0 10350
>> Removing city A (0,10350)
 
remove 0 10351
>> Removing city A (0,10351)
 
remove 0 10352
>> Removing city A (0,10352)
 
remove 0 10353
>> Removing city A (0,10353)
 
remove 0 10354
>> Removing city A (0,10354)
 
remove 0 10355
>> Removing city A (0,10355)
 
remove 0 10356
>> Removing city A (0,10356)
 
remove 0 10357
>> Removing city A (0,10357)
 
remove 0 10358
>> Removing city A (0,10358)
 
remove 0 10359
>> Removing city A (0,10359)
 
remove 0 10360
>> Removing city A (0,10360)
 
remove 0 10361
>> Removing city A (0,10361)
 
remove 0 10362
>> Removing city A (0,10362)
 
remove 0 10363
>> Removing city A (0,10363)
 
remove 0 10364
>> Removing city A (0,10364)
 
remove 0 10365
>> Removing city A (0,10365)
 
remove 0 10366
>> Removing city A (0,10366)
 
remove 0 10367
>> Removing city A (0,10367)
 
remove 0 10368
>> Removing city A (0,10368)
 
remove 0 10369
>> Removing city A (0,10369)
 
remove 0 10370
>> Removing city A (0,10370)
 
remove 0 10371
>> Removing city A (0,10371)
 
remove 0 10372
>> Removing city A (0,10372)
 
remove 0 10373
>> Removing city A (0,10373)
 
remove 0 10374
>> Removing city A (0,10374)
 
remove 0 10375
>> Removing city A (0,10375)
 
remove 0 10376
>> Removing city A (0,10376)
 
remove 0 10377
>> Removing city A (0,10377)
 
remove 0 10378
>> Removing city A (0,10378)
 
remove 0 10379
>> Removing city A (0,10379)
 
remove 0 10380
>> Removing city A (0,10380)
 
remove 0 10381
>> Removing city A (0,10381)
 
remove 0 10382
>> Removing city A (0,10382)
 
remove 0 10383
>> Removing city A (0,10383)
 
remove 0 10384
>> Removing city A (0,10384)
 
remove 0 10385
>> Removing city A (0,10385)
 
remove 0 10386
>> Removing city A (0,10386)
 
remove 0 10387
>> Removing city A (0,10387)
 
remove 0 10388
>> Removing city A (0,10388)
 
remove 0 10389
>> Removing city A (0,10389)
 
remove 0 10390
>> Removing city A (0,10390)
 
remove 0 10391
>> Removing city A (0,10391)
 
remove 0 10392
>> Removing city A (0,10392)
 
remove 0 10393
>> Removing city A (0,10393)
 
remove 0 10394
>> Removing city A (0,10394)
 
remove 0 10395
>> Removing city A (0,10395)
 
remove 0 10396
>> Removing city A (0,10396)
 
remove 0 10397
>> Removing city A (0,10397)
 
remove 0 10398
>> Removing city A (0,10398)
 
remove 0 10399
>> Removing city A (0,10399)
 
remove 0 10400
>> Removing city A (0,10400)
 
remove 0 10401
>> Removing city A (0,10401)
 
remove 0 10402
>> Removing city A (0,10402)
 
remove 0 10403
>> Removing city A (0,10403)
 
remove 0 10404
>> Removing city A (0,10404)
 
remove 0 10405
>> Removing city A (0,10405)
 
remove 0 10406
>> Removing city A (0,10406)
 
remove 0 10407
>> Removing city A (0,10407)
 
remove 0 10408
>> Removing city A (0,10408)
 
remove 0 10409
>> Removing city A (0,10409)
 
remove 0 10410
>> Removing city A (0,10410)
 
remove 0 10411
>> Removing city A (0,10411)
 
remove 0 10412
>> Removing city A (0,10412)
 
remove 0 10413
>> Removing city A (0,10413)
 
remove 0 10414
>> Removing city A (0,10414)
 
remove 0 10415
>> Removing city A (0,10415)
 
remove 0 10416
>> Removing city A (0,10416)
 
remove 0 10417
>> Removing city A (0,10417)
 
remove 0 10418
>> Removing city A (0,10418)
 
remove 0 10419
>> Removing city A (0,10419)
 
remove 0 10420
>> Removing city A (0,10420)
 
remove 0 10421
>> Removing city A (0,10421)
 
remove 0 10422
>> Removing city A (0,10422)
 
remove 0 10423
>> Removing city A (0,10423)
 
remove 0 10424
>> Removing city A (0,10424)
 
remove 0 10425
>> Removing city A (0,10425)
 
remove 0 10426
>> Removing city A (0,10426)
 
remove 0 10427
>> Removing city A (0,10427)
 
remove 0 10428
>> Removing city A (0,10428)
 
remove 0 10429
>> Removing city A (0,10429)
 
remove 0 10430
>> Removing city A (0,10430)
 
remove 0 10431
>> Removing city A (0,10431)
 
remove 0 10432
>> Removing city A (0,10432)
 
remove 0 10433
>> Removing city A (0,10433)
 
remove 0 10434
>> Removing city A (0,10434)
 
remove 0 10435
>> Removing city A (0,10435)
 
remove 0 10436
>> Removing city A (0,10436)
 
remove 0 10437
>> Removing city A (0,10437)
 
remove 0 10438
>> Removing city A (0,10438)
 
remove 0 10439
>> Removing city A (0,10439)
 
remove 0 10440
>> Removing city A (0,10440)
 
remove 0 10441
>> Removing city A (0,10441)
 
remove 0 10442
>> Removing city A (0,10442)
 
remove 0 10443
>> Removing city A (0,10443)
 
remove 0 10444
>> Removing city A (0,10444)
 
remove 0 10445
>> Removing city A (0,10445)
 
remove 0 10446
>> Removing city A (0,10446)
 
remove 0 10447
>> Removing city A (0,10447)
 
remove 0 10448
>> Removing city A (0,10448)
 
remove 0 10449
>> Removing city A (0,10449)
 
remove 0 10450
>> Removing city A (0,10450)
 
remove 0 10451
>> Removing city A (0,10451)
 
remove 0 10452
>> Removing city A (0,10452)
 
remove 0 10453
>> Removing city A (0,10453)
 
remove 0 10454
>> Removing city A (0,10454)
 
remove 0 10455
>> Removing city A (0,10455)
 
remove 0 10456
>> Removing city A (0,10456)
 
remove 0 10457
>> Removing city A (0,10457)
 
remove 0 10458
>> Removing city A (0,10458)
 
remove 0 10459
>> Removing city A (0,10459)
 
remove 0 10460
>> Removing city A (0,10460)
 
remove 0 10461
>> Removing city A (0,10461)
 
remove 0 10462
>> Removing city A (0,10462)
 
remove 0 10463
>> Removing city A (0,10463)
 
remove 0 10464
>> Removing city A (0,10464)
 
remove 0 10465
>> Removing city A (0,10465)
 
remove 0 10466
>> Removing city A (0,10466)
 
remove 0 10467
>> Removing city A (0,10467)
 
remove 0 10468
>> Removing city A (0,10468)
 
remove 0 10469
>> Removing city A (0,10469)
 
remove 0 10470
>> Removing city A (0,10470)
 
remove 0 10471
>> Removing city A (0,10471)
 
remove 0 10472
>> Removing city A (0,10472)
 
remove 0 10473
>> Removing city A (0,10473)
 
remove 0 10474
>> Removing city A (0,10474)
 
remove 0 10475
>> Removing city A (0,10475)
 
remove 0 10476
>> Removing city A (0,10476)
 
remove 0 10477
>> Removing city A (0,10477)
 
remove 0 10478
>> Removing city A (0,10478)
 
remove 0 10479
>> Removing city A (0,10479)
 
remove 0 10480
>> Removing city A (0,10480)
 
remove 0 10481
>> Removing city A (0,10481)
 
remove 0 10482
>> Removing city A (0,10482)
 
remove 0 10483
>> Removing city A (0,10483)
 
remove 0 10484
>> Removing city A (0,10484)
 
remove 0 10485
>> Removing city A (0,10485)
 
remove 0 10486
>> Removing city A (0,10486)
 
remove 0 10487
>> Removing city A (0,10487)
 
remove 0 10488
>> Removing city A (0,10488)
 
remove 0 10489
>> Removing city A (0,10489)
 
remove 0 10490
>> Removing city A (0,10490)
 
remove 0 10491
>> Removing city A (0,10491)
 
remove 0 10492
>> Removing city A (0,10492)
 
remove 0 10493
>> Removing city A (0,10493)
 
remove 0 10494
>> Removing city A (0,10494)
 
remove 0 10495
>> Removing city A (0,10495)
 
remove 0 10496
>> Removing city A (0,10496)
 
remove 0 10497
>> Removing city A (0,10497)
 
remove 0 10498
>> Removing city A (0,10498)
 
remove 0 10499
>> Removing city A (0,10499)
 
remove 0 10500
>> Removing city A (0,10500)
 
remove 0 10501
>> Removing city A (0,10501)
 
remove 0 10502
>> Removing city A (0,10502)
 
remove 0 10503
>> Removing city A (0,10503)
 
remove 0 10504
>> Removing city A (0,10504)
 
remove 0 10505
>> Removing city A (0,10505)
 
remove 0 10506
>> Removing city A (0,10506)
 
remove 0 10507
>> Removing city A (0,10507)
 
remove 0 10508
>> Removing city A (0,10508)
 
remove 0 10509
>> Removing city A (0,10509)
 
remove 0 10510
>> Removing city A (0,10510)
 
remove 0 10511
>> Removing city A (0,10511)
 
remove 0 10512
>> Removing city A (0,10512)
 
remove 0 10513
>> Removing city A (0,10513)
 
remove 0 10514
>> Removing city A (0,10514)
 
remove 0 10515
>> Removing city A (0,10515)
 
remove 0 10516
>> Removing city A (0,10516)
 
remove 0 10517
>> Removing city A (0,10517)
 
remove 0 10518
>> Removing city A (0,10518)
 
remove 0 10519
>> Removing city A (0,10519)
 
remove 0 10520
>> Removing city A (0,10520)
 
remove 0 10521
>> Removing city A (0,10521)
 
remove 0 10522
>> Removing city A (0,10522)
 
remove 0 10523
>> Removing city A (0,10523)
 
remove 0 10524
>> Removing city A (0,10524)
 
remove 0 10525
>> Removing city A (0,10525)
 
remove 0 10526
>> Removing city A (0,10526)
 
remove 0 10527
>> Removing city A (0,10527)
 
remove 0 10528
>> Removing city A (0,10528)
 
remove 0 10529
>> Removing city A (0,10529)
 
remove 0 10530
>> Removing city A (0,10530)
 
remove 0 10531
>> Removing city A (0,10531)
 
remove 0 10532
>> Removing city A (0,10532)
 
remove 0 10533
>> Removing city A (0,10533)
 
remove 0 10534
>> Removing city A (0,10534)
 
remove 0 10535
>> Removing city A (0,10535)
 
remove 0 10536
>> Removing city A (0,10536)
 
remove 0 10537
>> Removing city A (0,10537)
 
remove 0 10538
>> Removing city A (0,10538)
 
remove 0 10539
>> Removing city A (0,10539)
 
remove 0 10540
>> Removing city A (0,10540)
 
remove 0 10541
>> Removing city A (0,10541)
 
remove 0 10542
>> Removing city A (0,10542)
 
remove 0 10543
>> Removing city A (0,10543)
 
remove 0 10544
>> Removing city A (0,10544)
 
remove 0 10545
>> Removing city A (0,10545)
 
remove 0 10546
>> Removing city A (0,10546)
 
remove 0 10547
>> Removing city A (0,10547)
 
remove 0 10548
>> Removing city A (0,10548)
 
remove 0 10549
>> Removing city A (0,10549)
 
remove 0 10550
>> Removing city A (0,10550)
 
remove 0 10551
>> Removing city A (0,10551)
 
remove 0 10552
>> Removing city A (0,10552)
 
remove 0 10553
>> Removing city A (0,10553)
 
remove 0 10554
>> Removing city A (0,10554)
 
remove 0 10555
>> Removing city A (0,10555)
 
remove 0 10556
>> Removing city A (0,10556)
 
remove 0 10557
>> Removing city A (0,10557)
 
remove 0 10558
>> Removing city A (0,10558)
 
remove 0 10559
>> Removing city A (0,10559)
 
remove 0 10560
>> Removing city A (0,10560)
 
remove 0 10561
>> Removing city A (0,10561)
 
remove 0 10562
>> Removing city A (0,10562)
 
remove 0 10563
>> Removing city A (0,10563)
 
remove 0 10564
>> Removing city A (0,10564)
 
remove 0 10565
>> Removing city A (0,10565)
 
remove 0 10566
>> Removing city A (0,10566)
 
remove 0 10567
>> Removing city A (0,10567)
 
remove 0 10568
>> Removing city A (0,10568)
 
remove 0 10569
>> Removing city A (0,10569)
 
remove 0 10570
>> Removing city A (0,10570)
 
remove 0 10571
>> Removing city A (0,10571)
 
remove 0 10572
>> Removing city A (0,10572)
 
remove 0 10573
>> Removing city A (0,10573)
 
remove 0 10574
>> Removing city A (0,10574)
 
remove 0 10575
>> Removing city A (0,10575)
 
remove 0 10576
>> Removing city A (0,10576)
 
remove 0 10577
>> Removing city A (0,10577)
 
remove 0 10578
>> Removing city A (0,10578)
 
remove 0 10579
>> Removing city A (0,10579)
 
remove 0 10580
>> Removing city A (0,10580)
 
remove 0 10581
>> Removing city A (0,10581)
 
remove 0 10582
>> Removing city A (0,10582)
 
remove 0 10583
>> Removing city A (0,10583)
 
remove 0 10584
>> Removing city A (0,10584)
 
remove 0 10585
>> Removing city A (0,10585)
 
remove 0 10586
>> Removing city A (0,10586)
 
remove 0 10587
>> Removing city A (0,10587)
 
remove 0 10588
>> Removing city A (0,10588)
 
remove 0 10589
>> Removing city A (0,10589)
 
remove 0 10590
>> Removing city A (0,10590)
 
remove 0 10591
>> Removing city A (0,10591)
 
remove 0 10592
>> Removing city A (0,10592)
 
remove 0 10593
>> Removing city A (0,10593)
 
remove 0 10594
>> Removing city A (0,10594)
 
remove 0 10595
>> Removing city A (0,10595)
 
remove 0 10596
>> Removing city A (0,10596)
 
remove 0 10597
>> Removing city A (0,10597)
 
remove 0 10598
>> Removing city A (0,10598)
 
remove 0 10599
>> Removing city A (0,10599)
 
remove 0 10600
>> Removing city A (0,10600)
 
remove 0 10601
>> Removing city A (0,10601)
 
remove 0 10602
>> Removing city A (0,10602)
 
remove 0 10603
>> Removing city A (0,10603)
 
remove 0 10604
>> Removing city A (0,10604)
 
remove 0 10605
>> Removing city A (0,10605)
 
remove 0 10606
>> Removing city A (0,10606)
 
remove 0 10607
>> Removing city A (0,10607)
 
remove 0 10608
>> Removing city A (0,10608)
 
remove 0 10609
>> Removing city A (0,10609)
 
remove 0 10610
>> Removing city A (0,10610)
 
remove 0 10611
>> Removing city A (0,10611)
 
remove 0 10612
>> Removing city A (0,10612)
 
remove 0 10613
>> Removing city A (0,10613)
 
remove 0 10614
>> Removing city A (0,10614)
 
remove 0 10615
>> Removing city A (0,10615)
 
remove 0 10616
>> Removing city A (0,10616)
 
remove 0 10617
>> Removing city A (0,10617)
 
remove 0 10618
>> Removing city A (0,10618)
 
remove 0 10619
>> Removing city A (0,10619)
 
remove 0 10620
>> Removing city A (0,10620)
 
remove 0 10621
>> Removing city A (0,10621)
 
remove 0 10622
>> Removing city A (0,10622)
 
remove 0 10623
>> Removing city A (0,10623)
 
remove 0 10624
>> Removing city A (0,10624)
 
remove 0 10625
>> Removing city A (0,10625)
 
remove 0 10626
>> Removing city A (0,10626)
 
remove 0 10627
>> Removing city A (0,10627)
 
remove 0 10628
>> Removing city A (0,10628)
 
remove 0 10629
>> Removing city A (0,10629)
 
remove 0 10630
>> Removing city A (0,10630)
 
remove 0 10631
>> Removing city A (0,10631)
 
remove 0 10632
>> Removing city A (0,10632)
 
remove 0 10633
>> Removing city A (0,10633)
 
remove 0 10634
>> Removing city A (0,10634)
 
remove 0 10635
>> Removing city A (0,10635)
 
remove 0 10636
>> Removing city A (0,10636)
 
remove 0 10637
>> Removing city A (0,10637)
 
remove 0 10638
>> Removing city A (0,10638)
 
remove 0 10639
>> Removing city A (0,10639)
 
remove 0 10640
>> Removing city A (0,10640)
 
remove 0 10641
>> Removing city A (0,10641)
 
remove 0 10642
>> Removing city A (0,10642)
 
remove 0 10643
>> Removing city A (0,10643)
 
remove 0 10644
>> Removing city A (0,10644)
 
remove 0 10645
>> Removing city A (0,10645)
 
remove 0 10646
>> Removing city A (0,10646)
 
remove 0 10647
>> Removing city A (0,10647)
 
remove 0 10648
>> Removing city A (0,10648)
 
remove 0 10649
>> Removing city A (0,10649)
 
remove 0 10650
>> Removing city A (0,10650)
 
remove 0 10651
>> Removing city A (0,10651)
 
remove 0 10652
>> Removing city A (0,10652)
 
remove 0 10653
>> Removing city A (0,10653)
 
remove 0 10654
>> Removing city A (0,10654)
 
remove 0 10655
>> Removing city A (0,10655)
 
remove 0 10656
>> Removing city A (0,10656)
 
remove 0 10657
>> Removing city A (0,10657)
 
remove 0 10658
>> Removing city A (0,10658)
 
remove 0 10659
>> Removing city A (0,10659)
 
remove 0 10660
>> Removing city A (0,10660)
 
remove 0 10661
>> Removing city A (0,10661)
 
remove 0 10662
>> Removing city A (0,10662)
 
remove 0 10663
>> Removing city A (0,10663)
 
remove 0 10664
>> Removing city A (0,10664)
 
remove 0 10665
>> Removing city A (0,10665)
 
remove 0 10666
>> Removing city A (0,10666)
 
remove 0 10667
>> Removing city A (0,10667)
 
remove 0 10668
>> Removing city A (0,10668)
 
remove 0 10669
>> Removing city A (0,10669)
 
remove 0 10670
>> Removing city A (0,10670)
 
remove 0 10671
>> Removing city A (0,10671)
 
remove 0 10672
>> Removing city A (0,10672)
 
remove 0 10673
>> Removing city A (0,10673)
 
remove 0 10674
>> Removing city A (0,10674)
 
remove 0 10675
>> Removing city A (0,10675)
 
remove 0 10676
>> Removing city A (0,10676)
 
remove 0 10677
>> Removing city A (0,10677)
 
remove 0 10678
>> Removing city A (0,10678)
 
remove 0 10679
>> Removing city A (0,10679)
 
remove 0 10680
>> Removing city A (0,10680)
 
remove 0 10681
>> Removing city A (0,10681)
 
remove 0 10682
>> Removing city A (0,10682)
 
remove 0 10683
>> Removing city A (0,10683)
 
remove 0 10684
>> Removing city A (0,10684)
 
remove 0 10685
>> Removing city A (0,10685)
 
remove 0 10686
>> Removing city A (0,10686)
 
remove 0 10687
>> Removing city A (0,10687)
 
remove 0 10688
>> Removing city A (0,10688)
 
remove 0 10689
>> Removing city A (0,10689)
 
remove 0 10690
>> Removing city A (0,10690)
 
remove 0 10691
>> Removing city A (0,10691)
 
remove 0 10692
>> Removing city A (0,10692)
 
remove 0 10693
>> Removing city A (0,10693)
 
remove 0 10694
>> Removing city A (0,10694)
 
remove 0 10695
>> Removing city A (0,10695)
 
remove 0 10696
>> Removing city A (0,10696)
 
remove 0 10697
>> Removing city A (0,10697)
 
remove 0 10698
>> Removing city A (0,10698)
 
remove 0 10699
>> Removing city A (0,10699)
 
remove 0 10700
>> Removing city A (0,10700)
 
remove 0 10701
>> Removing city A (0,10701)
 
remove 0 10702
>> Removing city A (0,10702)
 
remove 0 10703
>> Removing city A (0,10703)
 
remove 0 10704
>> Removing city A (0,10704)
 
remove 0 10705
>> Removing city A (0,10705)
 
remove 0 10706
>> Removing city A (0,10706)
 
remove 0 10707
>> Removing city A (0,10707)
 
remove 0 10708
>> Removing city A (0,10708)
 
remove 0 10709
>> Removing city A (0,10709)
 
remove 0 10710
>> Removing city A (0,10710)
 
remove 0 10711
>> Removing city A (0,10711)
 
remove 0 10712
>> Removing city A (0,10712)
 
remove 0 10713
>> Removing city A (0,10713)
 
remove 0 10714
>> Removing city A (0,10714)
 
remove 0 10715
>> Removing city A (0,10715)
 
remove 0 10716
>> Removing city A (0,10716)
 
remove 0 10717
>> Removing city A (0,10717)
 
remove 0 10718
>> Removing city A (0,10718)
 
remove 0 10719
>> Removing city A (0,10719)
 
remove 0 10720
>> Removing city A (0,10720)
 
remove 0 10721
>> Removing city A (0,10721)
 
remove 0 10722
>> Removing city A (0,10722)
 
remove 0 10723
>> Removing city A (0,10723)
 
remove 0 10724
>> Removing city A (0,10724)
 
remove 0 10725
>> Removing city A (0,10725)
 
remove 0 10726
>> Removing city A (0,10726)
 
remove 0 10727
>> Removing city A (0,10727)
 
remove 0 10728
>> Removing city A (0,10728)
 
remove 0 10729
>> Removing city A (0,10729)
 
remove 0 10730
>> Removing city A (0,10730)
 
remove 0 10731
>> Removing city A (0,10731)
 
remove 0 10732
>> Removing city A (0,10732)
 
remove 0 10733
>> Removing city A (0,10733)
 
remove 0 10734
>> Removing city A (0,10734)
 
remove 0 10735
>> Removing city A (0,10735)
 
remove 0 10736
>> Removing city A (0,10736)
 
remove 0 10737
>> Removing city A (0,10737)
 
remove 0 10738
>> Removing city A (0,10738)
 
remove 0 10739
>> Removing city A (0,10739)
 
remove 0 10740
>> Removing city A (0,10740)
 
remove 0 10741
>> Removing city A (0,10741)
 
remove 0 10742
>> Removing city A (0,10742)
 
remove 0 10743
>> Removing city A (0,10743)
 
remove 0 10744
>> Removing city A (0,10744)
 
remove 0 10745
>> Removing city A (0,10745)
 
remove 0 10746
>> Removing city A (0,10746)
 
remove 0 10747
>> Removing city A (0,10747)
 
remove 0 10748
>> Removing city A (0,10748)
 
remove 0 10749
>> Removing city A (0,10749)
 
remove 0 10750
>> Removing city A (0,10750)
 
remove 0 10751
>> Removing city A (0,10751)
 
remove 0 10752
>> Removing city A (0,10752)
 
remove 0 10753
>> Removing city A (0,10753)
 
remove 0 10754
>> Removing city A (0,10754)
 
remove 0 10755
>> Removing city A (0,10755)
 
remove 0 10756
>> Removing city A (0,10756)
 
remove 0 10757
>> Removing city A (0,10757)
 
remove 0 10758
>> Removing city A (0,10758)
 
remove 0 10759
>> Removing city A (0,10759)
 
remove 0 10760
>> Removing city A (0,10760)
 
remove 0 10761
>> Removing city A (0,10761)
 
remove 0 10762
>> Removing city A (0,10762)
 
remove 0 10763
>> Removing city A (0,10763)
 
remove 0 10764
>> Removing city A (0,10764)
 
remove 0 10765
>> Removing city A (0,10765)
 
remove 0 10766
>> Removing city A (0,10766)
 
remove 0 10767
>> Removing city A (0,10767)
 
remove 0 10768
>> Removing city A (0,10768)
 
remove 0 10769
>> Removing city A (0,10769)
 
remove 0 10770
>> Removing city A (0,10770)
 
remove 0 10771
>> Removing city A (0,10771)
 
remove 0 10772
>> Removing city A (0,10772)
 
remove 0 10773
>> Removing city A (0,10773)
 
remove 0 10774
>> Removing city A (0,10774)
 
remove 0 10775
>> Removing city A (0,10775)
 
remove 0 10776
>> Removing city A (0,10776)
 
remove 0 10777
>> Removing city A (0,10777)
 
remove 0 10778
>> Removing city A (0,10778)
 
remove 0 10779
>> Removing city A (0,10779)
 
remove 0 10780
>> Removing city A (0,10780)
 
remove 0 10781
>> Removing city A (0,10781)
 
remove 0 10782
>> Removing city A (0,10782)
 
remove 0 10783
>> Removing city A (0,10783)
 
remove 0 10784
>> Removing city A (0,10784)
 
remove 0 10785
>> Removing city A (0,10785)
 
remove 0 10786
>> Removing city A (0,10786)
 
remove 0 10787
>> Removing city A (0,10787)
 
remove 0 10788
>> Removing city A (0,10788)
 
remove 0 10789
>> Removing city A (0,10789)
 
remove 0 10790
>> Removing city A (0,10790)
 
remove 0 10791
>> Removing city A (0,10791)
 
remove 0 10792
>> Removing city A (0,10792)
 
remove 0 10793
>> Removing city A (0,10793)
 
remove 0 10794
>> Removing city A (0,10794)
 
remove 0 10795
>> Removing city A (0,10795)
 
remove 0 10796
>> Removing city A (0,10796)
 
remove 0 10797
>> Removing city A (0,10797)
 
remove 0 10798
>> Removing city A (0,10798)
 
remove 0 10799
>> Removing city A (0,10799)
 
remove 0 10800
>> Removing city A (0,10800)
 
remove 0 10801
>> Removing city A (0,10801)
 
remove 0 10802
>> Removing city A (0,10802)
 
remove 0 10803
>> Removing city A (0,10803)
 
remove 0 10804
>> Removing city A (0,10804)
 
remove 0 10805
>> Removing city A (0,10805)
 
remove 0 10806
>> Removing city A (0,10806)
 
remove 0 10807
>> Removing city A (0,10807)
 
remove 0 10808
>> Removing city A (0,10808)
 
remove 0 10809
>> Removing city A (0,10809)
 
remove 0 10810
>> Removing city A (0,10810)
 
remove 0 10811
>> Removing city A (0,10811)
 
remove 0 10812
>> Removing city A (0,10812)
 
remove 0 10813
>> Removing city A (0,10813)
 
remove 0 10814
>> Removing city A (0,10814)
 
remove 0 10815
>> Removing city A (0,10815)
 
remove 0 10816
>> Removing city A (0,10816)
 
remove 0 10817
>> Removing city A (0,10817)
 
remove 0 10818
>> Removing city A (0,10818)
 
remove 0 10819
>> Removing city A (0,10819)
 
remove 0 10820
>> Removing city A (0,10820)
 
remove 0 10821
>> Removing city A (0,10821)
 
remove 0 10822
>> Removing city A (0,10822)
 
remove 0 10823
>> Removing city A (0,10823)
 
remove 0 10824
>> Removing city A (0,10824)
 
remove 0 10825
>> Removing city A (0,10825)
 
remove 0 10826
>> Removing city A (0,10826)
 
remove 0 10827
>> Removing city A (0,10827)
 
remove 0 10828
>> Removing city A (0,10828)
 
remove 0 10829
>> Removing city A (0,10829)
 
remove 0 10830
>> Removing city A (0,10830)
 
remove 0 10831
>> Removing city A (0,10831)
 
remove 0 10832
>> Removing city A (0,10832)
 
remove 0 10833
>> Removing city A (0,10833)
 
remove 0 10834
>> Removing city A (0,10834)
 
remove 0 10835
>> Removing city A (0,10835)
 
remove 0 10836
>> Removing city A (0,10836)
 
remove 0 10837
>> Removing city A (0,10837)
 
remove 0 10838
>> Removing city A (0,10838)
 
remove 0 10839
>> Removing city A (0,10839)
 
remove 0 10840
>> Removing city A (0,10840)
 
remove 0 10841
>> Removing city A (0,10841)
 
remove 0 10842
>> Removing city A (0,10842)
 
remove 0 10843
>> Removing city A (0,10843)
 
remove 0 10844
>> Removing city A (0,10844)
 
remove 0 10845
>> Removing city A (0,10845)
 
remove 0 10846
>> Removing city A (0,10846)
 
remove 0 10847
>> Removing city A (0,10847)
 
remove 0 10848
>> Removing city A (0,10848)
 
remove 0 10849
>> Removing city A (0,10849)
 
remove 0 10850
>> Removing city A (0,10850)
 
remove 0 10851
>> Removing city A (0,10851)
 
remove 0 10852
>> Removing city A (0,10852)
 
remove 0 10853
>> Removing city A (0,10853)
 
remove 0 10854
>> Removing city A (0,10854)
 
remove 0 10855
>> Removing city A (0,10855)
 
remove 0 10856
>> Removing city A (0,10856)
 
remove 0 10857
>> Removing city A (0,10857)
 
remove 0 10858
>> Removing city A (0,10858)
 
remove 0 10859
>> Removing city A (0,10859)
 
remove 0 10860
>> Removing city A (0,10860)
 
remove 0 10861
>> Removing city A (0,10861)
 
remove 0 10862
>> Removing city A (0,10862)
 
remove 0 10863
>> Removing city A (0,10863)
 
remove 0 10864
>> Removing city A (0,10864)
 
remove 0 10865
>> Removing city A (0,10865)
 
remove 0 10866
>> Removing city A (0,10866)
 
remove 0 10867
>> Removing city A (0,10867)
 
remove 0 10868
>> Removing city A (0,10868)
 
remove 0 10869
>> Removing city A (0,10869)
 
remove 0 10870
>> Removing city A (0,10870)
 
remove 0 10871
>> Removing city A (0,10871)
 
remove 0 10872
>> Removing city A (0,10872)
 
remove 0 10873
>> Removing city A (0,10873)
 
remove 0 10874
>> Removing city A (0,10874)
 
remove 0 10875
>> Removing city A (0,10875)
 
remove 0 10876
>> Removing city A (0,10876)
 
remove 0 10877
>> Removing city A (0,10877)
 
remove 0 10878
>> Removing city A (0,10878)
 
remove 0 10879
>> Removing city A (0,10879)
 
remove 0 10880
>> Removing city A (0,10880)
 
remove 0 10881
>> Removing city A (0,10881)
 
remove 0 10882
>> Removing city A (0,10882)
 
remove 0 10883
>> Removing city A (0,10883)
 
remove 0 10884
>> Removing city A (0,10884)
 
remove 0 10885
>> Removing city A (0,10885)
 
remove 0 10886
>> Removing city A (0,10886)
 
remove 0 10887
>> Removing city A (0,10887)
 
remove 0 10888
>> Removing city A (0,10888)
 
remove 0 10889
>> Removing city A (0,10889)
 
remove 0 10890
>> Removing city A (0,10890)
 
remove 0 10891
>> Removing city A (0,10891)
 
remove 0 10892
>> Removing city A (0,10892)
 
remove 0 10893
>> Removing city A (0,10893)
 
remove 0 10894
>> Removing city A (0,10894)
 
remove 0 10895
>> Removing city A (0,10895)
 
remove 0 10896
>> Removing city A (0,10896)
 
remove 0 10897
>> Removing city A (0,10897)
 
remove 0 10898
>> Removing city A (0,10898)
 
remove 0 10899
>> Removing city A (0,10899)
 
remove 0 10900
>> Removing city A (0,10900)
 
remove 0 10901
>> Removing city A (0,10901)
 
remove 0 10902
>> Removing city A (0,10902)
 
remove 0 10903
>> Removing city A (0,10903)
 
remove 0 10904
>> Removing city A (0,10904)
 
remove 0 10905
>> Removing city A (0,10905)
 
remove 0 10906
>> Removing city A (0,10906)
 
remove 0 10907
>> Removing city A (0,10907)
 
remove 0 10908
>> Removing city A (0,10908)
 
remove 0 10909
>> Removing city A (0,10909)
 
remove 0 10910
>> Removing city A (0,10910)
 
remove 0 10911
>> Removing city A (0,10911)
 
remove 0 10912
>> Removing city A (0,10912)
 
remove 0 10913
>> Removing city A (0,10913)
 
remove 0 10914
>> Removing city A (0,10914)
 
remove 0 10915
>> Removing city A (0,10915)
 
remove 0 10916
>> Removing city A (0,10916)
 
remove 0 10917
>> Removing city A (0,10917)
 
remove 0 10918
>> Removing city A (0,10918)
 
remove 0 10919
>> Removing city A (0,10919)
 
remove 0 10920
>> Removing city A (0,10920)
 
remove 0 10921
>> Removing city A (0,10921)
 
remove 0 10922
>> Removing city A (0,10922)
 
remove 0 10923
>> Removing city A (0,10923)
 
remove 0 10924
>> Removing city A (0,10924)
 
remove 0 10925
>> Removing city A (0,10925)
 
remove 0 10926
>> Removing city A (0,10926)
 
remove 0 10927
>> Removing city A (0,10927)
 
remove 0 10928
>> Removing city A (0,10928)
 
remove 0 10929
>> Removing city A (0,10929)
 
remove 0 10930
>> Removing city A (0,10930)
 
remove 0 10931
>> Removing city A (0,10931)
 
remove 0 10932
>> Removing city A (0,10932)
 
remove 0 10933
>> Removing city A (0,10933)
 
remove 0 10934
>> Removing city A (0,10934)
 
remove 0 10935
>> Removing city A (0,10935)
 
remove 0 10936
>> Removing city A (0,10936)
 
remove 0 10937
>> Removing city A (0,10937)
 
remove 0 10938
>> Removing city A (0,10938)
 
remove 0 10939
>> Removing city A (0,10939)
 
remove 0 10940
>> Removing city A (0,10940)
 
remove 0 10941
>> Removing city A (0,10941)
 
remove 0 10942
>> Removing city A (0,10942)
 
remove 0 10943
>> Removing city A (0,10943)
 
remove 0 10944
>> Removing city A (0,10944)
 
remove 0 10945
>> Removing city A (0,10945)
 
remove 0 10946
>> Removing city A (0,10946)
 
remove 0 10947
>> Removing city A (0,10947)
 
remove 0 10948
>> Removing city A (0,10948)
 
remove 0 10949
>> Removing city A (0,10949)
 
remove 0 10950
>> Removing city A (0,10950)
 
remove 0 10951
>> Removing city A (0,10951)
 
remove 0 10952
>> Removing city A (0,10952)
 
remove 0 10953
>> Removing city A (0,10953)
 
remove 0 10954
>> Removing city A (0,10954)
 
remove 0 10955
>> Removing city A (0,10955)
 
remove 0 10956
>> Removing city A (0,10956)
 
remove 0 10957
>> Removing city A (0,10957)
 
remove 0 10958
>> Removing city A (0,10958)
 
remove 0 10959
>> Removing city A (0,10959)
 
remove 0 10960
>> Removing city A (0,10960)
 
remove 0 10961
>> Removing city A (0,10961)
 
remove 0 10962
>> Removing city A (0,10962)
 
remove 0 10963
>> Removing city A (0,10963)
 
remove 0 10964
>> Removing city A (0,10964)
 
remove 0 10965
>> Removing city A (0,10965)
 
remove 0 10966
>> Removing city A (0,10966)
 
remove 0 10967
>> Removing city A (0,10967)
 
remove 0 10968
>> Removing city A (0,10968)
 
remove 0 10969
>> Removing city A (0,10969)
 
remove 0 10970
>> Removing city A (0,10970)
 
remove 0 10971
>> Removing city A (0,10971)
 
remove 0 10972
>> Removing city A (0,10972)
 
remove 0 10973
>> Removing city A (0,10973)
 
remove 0 10974
>> Removing city A (0,10974)
 
remove 0 10975
>> Removing city A (0,10975)
 
remove 0 10976
>> Removing city A (0,10976)
 
remove 0 10977
>> Removing city A (0,10977)
 
remove 0 10978
>> Removing city A (0,10978)
 
remove 0 10979
>> Removing city A (0,10979)
 
remove 0 10980
>> Removing city A (0,10980)
 
remove 0 10981
>> Removing city A (0,10981)
 
remove 0 10982
>> Removing city A (0,10982)
 
remove 0 10983
>> Removing city A (0,10983)
 
remove 0 10984
>> Removing city A (0,10984)
 
remove 0 10985
>> Removing city A (0,10985)
 
remove 0 10986
>> Removing city A (0,10986)
 
remove 0 10987
>> Removing city A (0,10987)
 
remove 0 10988
>> Removing city A (0,10988)
 
remove 0 10989
>> Removing city A (0,10989)
 
remove 0 10990
>> Removing city A (0,10990)
 
remove 0 10991
>> Removing city A (0,10991)
 
remove 0 10992
>> Removing city A (0,10992)
 
remove 0 10993
>> Removing city A (0,10993)
 
remove 0 10994
>> Removing city A (0,10994)
 
remove 0 10995
>> Removing city A (0,10995)
 
remove 0 10996
>> Removing city A (0,10996)
 
remove 0 10997
>> Removing city A (0,10997)
 
remove 0 10998
>> Removing city A (0,10998)
 
remove 0 10999
>> Removing city A (0,10999)
 
remove 0 11000
>> Removing city A (0,11000)
 
remove 0 11001
>> Removing city A (0,11001)
 
remove 0 11002
>> Removing city A (0,11002)
 
remove 0 11003
>> Removing city A (0,11003)
 
remove 0 11004
>> Removing city A (0,11004)
 
remove 0 11005
>> Removing city A (0,11005)
 
remove 0 11006
>> Removing city A (0,11006)
 
remove 0 11007
>> Removing city A (0,11007)
 
remove 0 11008
>> Removing city A (0,11008)
 
remove 0 11009
>> Removing city A (0,11009)
 
remove 0 11010
>> Removing city A (0,11010)
 
remove 0 11011
>> Removing city A (0,11011)
 
remove 0 11012
>> Removing city A (0,11012)
 
remove 0 11013
>> Removing city A (0,11013)
 
remove 0 11014
>> Removing city A (0,11014)
 
remove 0 11015
>> Removing city A (0,11015)
 
remove 0 11016
>> Removing city A (0,11016)
 
remove 0 11017
>> Removing city A (0,11017)
 
remove 0 11018
>> Removing city A (0,11018)
 
remove 0 11019
>> Removing city A (0,11019)
 
remove 0 11020
>> Removing city A (0,11020)
 
remove 0 11021
>> Removing city A (0,11021)
 
remove 0 11022
>> Removing city A (0,11022)
 
remove 0 11023
>> Removing city A (0,11023)
 
remove 0 11024
>> Removing city A (0,11024)
 
remove 0 11025
>> Removing city A (0,11025)
 
remove 0 11026
>> Removing city A (0,11026)
 
remove 0 11027
>> Removing city A (0,11027)
 
remove 0 11028
>> Removing city A (0,11028)
 
remove 0 11029
>> Removing city A (0,11029)
 
remove 0 11030
>> Removing city A (0,11030)
 
remove 0 11031
>> Removing city A (0,11031)
 
remove 0 11032
>> Removing city A (0,11032)
 
remove 0 11033
>> Removing city A (0,11033)
 
remove 0 11034
>> Removing city A (0,11034)
 
remove 0 11035
>> Removing city A (0,11035)
 
remove 0 11036
>> Removing city A (0,11036)
 
remove 0 11037
>> Removing city A (0,11037)
 
remove 0 11038
>> Removing city A (0,11038)
 
remove 0 11039
>> Removing city A (0,11039)
 
remove 0 11040
>> Removing city A (0,11040)
 
remove 0 11041
>> Removing city A (0,11041)
 
remove 0 11042
>> Removing city A (0,11042)
 
remove 0 11043
>> Removing city A (0,11043)
 
remove 0 11044
>> Removing city A (0,11044)
 
remove 0 11045
>> Removing city A (0,11045)
 
remove 0 11046
>> Removing city A (0,11046)
 
remove 0 11047
>> Removing city A (0,11047)
 
remove 0 11048
>> Removing city A (0,11048)
 
remove 0 11049
>> Removing city A (0,11049)
 
remove 0 11050
>> Removing city A (0,11050)
 
remove 0 11051
>> Removing city A (0,11051)
 
remove 0 11052
>> Removing city A (0,11052)
 
remove 0 11053
>> Removing city A (0,11053)
 
remove 0 11054
>> Removing city A (0,11054)
 
remove 0 11055
>> Removing city A (0,11055)
 
remove 0 11056
>> Removing city A (0,11056)
 
remove 0 11057
>> Removing city A (0,11057)
 
remove 0 11058
>> Removing city A (0,11058)
 
remove 0 11059
>> Removing city A (0,11059)
 
remove 0 11060
>> Removing city A (0,11060)
 
remove 0 11061
>> Removing city A (0,11061)
 
remove 0 11062
>> Removing city A (0,11062)
 
remove 0 11063
>> Removing city A (0,11063)
 
remove 0 11064
>> Removing city A (0,11064)
 
remove 0 11065
>> Removing city A (0,11065)
 
remove 0 11066
>> Removing city A (0,11066)
 
remove 0 11067
>> Removing city A (0,11067)
 
remove 0 11068
>> Removing city A (0,11068)
 
remove 0 11069
>> Removing city A (0,11069)
 
remove 0 11070
>> Removing city A (0,11070)
 
remove 0 11071
>> Removing city A (0,11071)
 
remove 0 11072
>> Removing city A (0,11072)
 
remove 0 11073
>> Removing city A (0,11073)
 
remove 0 11074
>> Removing city A (0,11074)
 
remove 0 11075
>> Removing city A (0,11075)
 
remove 0 11076
>> Removing city A (0,11076)
 
remove 0 11077
>> Removing city A (0,11077)
 
remove 0 11078
>> Removing city A (0,11078)
 
remove 0 11079
>> Removing city A (0,11079)
 
remove 0 11080
>> Removing city A (0,11080)
 
remove 0 11081
>> Removing city A (0,11081)
 
remove 0 11082
>> Removing city A (0,11082)
 
remove 0 11083
>> Removing city A (0,11083)
 
remove 0 11084
>> Removing city A (0,11084)
 
remove 0 11085
>> Removing city A (0,11085)
 
remove 0 11086
>> Removing city A (0,11086)
 
remove 0 11087
>> Removing city A (0,11087)
 
remove 0 11088
>> Removing city A (0,11088)
 
remove 0 11089
>> Removing city A (0,11089)
 
remove 0 11090
>> Removing city A (0,11090)
 
remove 0 11091
>> Removing city A (0,11091)
 
remove 0 11092
>> Removing city A (0,11092)
 
remove 0 11093
>> Removing city A (0,11093)
 
remove 0 11094
>> Removing city A (0,11094)
 
remove 0 11095
>> Removing city A (0,11095)
 
remove 0 11096
>> Removing city A (0,11096)
 
remove 0 11097
>> Removing city A (0,11097)
 
remove 0 11098
>> Removing city A (0,11098)
 
remove 0 11099
>> Removing city A (0,11099)
 
remove 0 11100
>> Removing city A (0,11100)
 
remove 0 11101
>> Removing city A (0,11101)
 
remove 0 11102
>> Removing city A (0,11102)
 
remove 0 11103
>> Removing city A (0,11103)
 
remove 0 11104
>> Removing city A (0,11104)
 
remove 0 11105
>> Removing city A (0,11105)
 
remove 0 11106
>> Removing city A (0,11106)
 
remove 0 11107
>> Removing city A (0,11107)
 
remove 0 11108
>> Removing city A (0,11108)
 
remove 0 11109
>> Removing city A (0,11109)
 
remove 0 11110
>> Removing city A (0,11110)
 
remove 0 11111
>> Removing city A (0,11111)
 
remove 0 11112
>> Removing city A (0,11112)
 
remove 0 11113
>> Removing city A (0,11113)
 
remove 0 11114
>> Removing city A (0,11114)
 
remove 0 11115
>> Removing city A (0,11115)
 
remove 0 11116
>> Removing city A (0,11116)
 
remove 0 11117
>> Removing city A (0,11117)
 
remove 0 11118
>> Removing city A (0,11118)
 
remove 0 11119
>> Removing city A (0,11119)
 
remove 0 11120
>> Removing city A (0,11120)
 
remove 0 11121
>> Removing city A (0,11121)
 
remove 0 11122
>> Removing city A (0,11122)
 
remove 0 11123
>> Removing city A (0,11123)
 
remove 0 11124
>> Removing city A (0,11124)
 
remove 0 11125
>> Removing city A (0,11125)
 
remove 0 11126
>> Removing city A (0,11126)
 
remove 0 11127
>> Removing city A (0,11127)
 
remove 0 11128
>> Removing city A (0,11128)
 
remove 0 11129
>> Removing city A (0,11129)
 
remove 0 11130
>> Removing city A (0,11130)
 
remove 0 11131
>> Removing city A (0,11131)
 
remove 0 11132
>> Removing city A (0,11132)
 
remove 0 11133
>> Removing city A (0,11133)
 
remove 0 11134
>> Removing city A (0,11134)
 
remove 0 11135
>> Removing city A (0,11135)
 
remove 0 11136
>> Removing city A (0,11136)
 
remove 0 11137
>> Removing city A (0,11137)
 
remove 0 11138
>> Removing city A (0,11138)
 
remove 0 11139
>> Removing city A (0,11139)
 
remove 0 11140
>> Removing city A (0,11140)
 
remove 0 11141
>> Removing city A (0,11141)
 
remove 0 11142
>> Removing city A (0,11142)
 
remove 0 11143
>> Removing city A (0,11143)
 
remove 0 11144
>> Removing city A (0,11144)
 
remove 0 11145
>> Removing city A (0,11145)
 
remove 0 11146
>> Removing city A (0,11146)
 
remove 0 11147
>> Removing city A (0,11147)
 
remove 0 11148
>> Removing city A (0,11148)
 
remove 0 11149
>> Removing city A (0,11149)
 
remove 0 11150
>> Removing city A (0,11150)
 
remove 0 11151
>> Removing city A (0,11151)
 
remove 0 11152
>> Removing city A (0,11152)
 
remove 0 11153
>> Removing city A (0,11153)
 
remove 0 11154
>> Removing city A (0,11154)
 
remove 0 11155
>> Removing city A (0,11155)
 
remove 0 11156
>> Removing city A (0,11156)
 
remove 0 11157
>> Removing city A (0,11157)
 
remove 0 11158
>> Removing city A (0,11158)
 
remove 0 11159
>> Removing city A (0,11159)
 
remove 0 11160
>> Removing city A (0,11160)
 
remove 0 11161
>> Removing city A (0,11161)
 
remove 0 11162
>> Removing city A (0,11162)
 
remove 0 11163
>> Removing city A (0,11163)
 
remove 0 11164
>> Removing city A (0,11164)
 
remove 0 11165
>> Removing city A (0,11165)
 
remove 0 11166
>> Removing city A (0,11166)
 
remove 0 11167
>> Removing city A (0,11167)
 
remove 0 11168
>> Removing city A (0,11168)
 
remove 0 11169
>> Removing city A (0,11169)
 
remove 0 11170
>> Removing city A (0,11170)
 
remove 0 11171
>> Removing city A (0,11171)
 
remove 0 11172
>> Removing city A (0,11172)
 
remove 0 11173
>> Removing city A (0,11173)
 
remove 0 11174
>> Removing city A (0,11174)
 
remove 0 11175
>> Removing city A (0,11175)
 
remove 0 11176
>> Removing city A (0,11176)
 
remove 0 11177
>> Removing city A (0,11177)
 
remove 0 11178
>> Removing city A (0,11178)
 
remove 0 11179
>> Removing city A (0,11179)
 
remove 0 11180
>> Removing city A (0,11180)
 
remove 0 11181
>> Removing city A (0,11181)
 
remove 0 11182
>> Removing city A (0,11182)
 
remove 0 11183
>> Removing city A (0,11183)
 
remove 0 11184
>> Removing city A (0,11184)
 
remove 0 11185
>> Removing city A (0,11185)
 
remove 0 11186
>> Removing city A (0,11186)
 
remove 0 11187
>> Removing city A (0,11187)
 
remove 0 11188
>> Removing city A (0,11188)
 
remove 0 11189
>> Removing city A (0,11189)
 
remove 0 11190
>> Removing city A (0,11190)
 
remove 0 11191
>> Removing city A (0,11191)
 
remove 0 11192
>> Removing city A (0,11192)
 
remove 0 11193
>> Removing city A (0,11193)
 
remove 0 11194
>> Removing city A (0,11194)
 
remove 0 11195
>> Removing city A (0,11195)
 
remove 0 11196
>> Removing city A (0,11196)
 
remove 0 11197
>> Removing city A (0,11197)
 
remove 0 11198
>> Removing city A (0,11198)
 
remove 0 11199
>> Removing city A (0,11199)
 
remove 0 11200
>> Removing city A (0,11200)
 
remove 0 11201
>> Removing city A (0,11201)
 
remove 0 11202
>> Removing city A (0,11202)
 
remove 0 11203
>> Removing city A (0,11203)
 
remove 0 11204
>> Removing city A (0,11204)
 
remove 0 11205
>> Removing city A (0,11205)
 
remove 0 11206
>> Removing city A (0,11206)
 
remove 0 11207
>> Removing city A (0,11207)
 
remove 0 11208
>> Removing city A (0,11208)
 
remove 0 11209
>> Removing city A (0,11209)
 
remove 0 11210
>> Removing city A (0,11210)
 
remove 0 11211
>> Removing city A (0,11211)
 
remove 0 11212
>> Removing city A (0,11212)
 
remove 0 11213
>> Removing city A (0,11213)
 
remove 0 11214
>> Removing city A (0,11214)
 
remove 0 11215
>> Removing city A (0,11215)
 
remove 0 11216
>> Removing city A (0,11216)
 
remove 0 11217
>> Removing city A (0,11217)
 
remove 0 11218
>> Removing city A (0,11218)
 
remove 0 11219
>> Removing city A (0,11219)
 
remove 0 11220
>> Removing city A (0,11220)
 
remove 0 11221
>> Removing city A (0,11221)
 
remove 0 11222
>> Removing city A (0,11222)
 
remove 0 11223
>> Removing city A (0,11223)
 
remove 0 11224
>> Removing city A (0,11224)
 
remove 0 11225
>> Removing city A (0,11225)
 
remove 0 11226
>> Removing city A (0,11226)
 
remove 0 11227
>> Removing city A (0,11227)
 
remove 0 11228
>> Removing city A (0,11228)
 
remove 0 11229
>> Removing city A (0,11229)
 
remove 0 11230
>> Removing city A (0,11230)
 
remove 0 11231
>> Removing city A (0,11231)
 
remove 0 11232
>> Removing city A (0,11232)
 
remove 0 11233
>> Removing city A (0,11233)
 
remove 0 11234
>> Removing city A (0,11234)
 
remove 0 11235
>> Removing city A (0,11235)
 
remove 0 11236
>> Removing city A (0,11236)
 
remove 0 11237
>> Removing city A (0,11237)
 
remove 0 11238
>> Removing city A (0,11238)
 
remove 0 11239
>> Removing city A (0,11239)
 
remove 0 11240
>> Removing city A (0,11240)
 
remove 0 11241
>> Removing city A (0,11241)
 
remove 0 11242
>> Removing city A (0,11242)
 
remove 0 11243
>> Removing city A (0,11243)
 
remove 0 11244
>> Removing city A (0,11244)
 
remove 0 11245
>> Removing city A (0,11245)
 
remove 0 11246
>> Removing city A (0,11246)
 
remove 0 11247
>> Removing city A (0,11247)
 
remove 0 11248
>> Removing city A (0,11248)
 
remove 0 11249
>> Removing city A (0,11249)
 
remove 0 11250
>> Removing city A (0,11250)
 
remove 0 11251
>> Removing city A (0,11251)
 
remove 0 11252
>> Removing city A (0,11252)
 
remove 0 11253
>> Removing city A (0,11253)
 
remove 0 11254
>> Removing city A (0,11254)
 
remove 0 11255
>> Removing city A (0,11255)
 
remove 0 11256
>> Removing city A (0,11256)
 
remove 0 11257
>> Removing city A (0,11257)
 
remove 0 11258
>> Removing city A (0,11258)
 
remove 0 11259
>> Removing city A (0,11259)
 
remove 0 11260
>> Removing city A (0,11260)
 
remove 0 11261
>> Removing city A (0,11261)
 
remove 0 11262
>> Removing city A (0,11262)
 
remove 0 11263
>> Removing city A (0,11263)
 
remove 0 11264
>> Removing city A (0,11264)
 
remove 0 11265
>> Removing city A (0,11265)
 
remove 0 11266
>> Removing city A (0,11266)
 
remove 0 11267
>> Removing city A (0,11267)
 
remove 0 11268
>> Removing city A (0,11268)
 
remove 0 11269
>> Removing city A (0,11269)
 
remove 0 11270
>> Removing city A (0,11270)
 
remove 0 11271
>> Removing city A (0,11271)
 
remove 0 11272
>> Removing city A (0,11272)
 
remove 0 11273
>> Removing city A (0,11273)
 
remove 0 11274
>> Removing city A (0,11274)
 
remove 0 11275
>> Removing city A (0,11275)
 
remove 0 11276
>> Removing city A (0,11276)
 
remove 0 11277
>> Removing city A (0,11277)
 
remove 0 11278
>> Removing city A (0,11278)
 
remove 0 11279
>> Removing city A (0,11279)
 
remove 0 11280
>> Removing city A (0,11280)
 
remove 0 11281
>> Removing city A (0,11281)
 
remove 0 11282
>> Removing city A (0,11282)
 
remove 0 11283
>> Removing city A (0,11283)
 
remove 0 11284
>> Removing city A (0,11284)
 
remove 0 11285
>> Removing city A (0,11285)
 
remove 0 11286
>> Removing city A (0,11286)
 
remove 0 11287
>> Removing city A (0,11287)
 
remove 0 11288
>> Removing city A (0,11288)
 
remove 0 11289
>> Removing city A (0,11289)
 
remove 0 11290
>> Removing city A (0,11290)
 
remove 0 11291
>> Removing city A (0,11291)
 
remove 0 11292
>> Removing city A (0,11292)
 
remove 0 11293
>> Removing city A (0,11293)
 
remove 0 11294
>> Removing city A (0,11294)
 
remove 0 11295
>> Removing city A (0,11295)
 
remove 0 11296
>> Removing city A (0,11296)
 
remove 0 11297
>> Removing city A (0,11297)
 
remove 0 11298
>> Removing city A (0,11298)
 
remove 0 11299
>> Removing city A (0,11299)
 
remove 0 11300
>> Removing city A (0,11300)
 
remove 0 11301
>> Removing city A (0,11301)
 
remove 0 11302
>> Removing city A (0,11302)
 
remove 0 11303
>> Removing city A (0,11303)
 
remove 0 11304
>> Removing city A (0,11304)
 
remove 0 11305
>> Removing city A (0,11305)
 
remove 0 11306
>> Removing city A (0,11306)
 
remove 0 11307
>> Removing city A (0,11307)
 
remove 0 11308
>> Removing city A (0,11308)
 
remove 0 11309
>> Removing city A (0,11309)
 
remove 0 11310
>> Removing city A (0,11310)
 
remove 0 11311
>> Removing city A (0,11311)
 
remove 0 11312
>> Removing city A (0,11312)
 
remove 0 11313
>> Removing city A (0,11313)
 
remove 0 11314
>> Removing city A (0,11314)
 
remove 0 11315
>> Removing city A (0,11315)
 
remove 0 11316
>> Removing city A (0,11316)
 
remove 0 11317
>> Removing city A (0,11317)
 
remove 0 11318
>> Removing city A (0,11318)
 
remove 0 11319
>> Removing city A (0,11319)
 
remove 0 11320
>> Removing city A (0,11320)
 
remove 0 11321
>> Removing city A (0,11321)
 
remove 0 11322
>> Removing city A (0,11322)
 
remove 0 11323
>> Removing city A (0,11323)
 
remove 0 11324
>> Removing city A (0,11324)
 
remove 0 11325
>> Removing city A (0,11325)
 
remove 0 11326
>> Removing city A (0,11326)
 
remove 0 11327
>> Removing city A (0,11327)
 
remove 0 11328
>> Removing city A (0,11328)
 
remove 0 11329
>> Removing city A (0,11329)
 
remove 0 11330
>> Removing city A (0,11330)
 
remove 0 11331
>> Removing city A (0,11331)
 
remove 0 11332
>> Removing city A (0,11332)
 
remove 0 11333
>> Removing city A (0,11333)
 
remove 0 11334
>> Removing city A (0,11334)
 
remove 0 11335
>> Removing city A (0,11335)
 
remove 0 11336
>> Removing city A (0,11336)
 
remove 0 11337
>> Removing city A (0,11337)
 
remove 0 11338
>> Removing city A (0,11338)
 
remove 0 11339
>> Removing city A (0,11339)
 
remove 0 11340
>> Removing city A (0,11340)
 
remove 0 11341
>> Removing city A (0,11341)
 
remove 0 11342
>> Removing city A (0,11342)
 
remove 0 11343
>> Removing city A (0,11343)
 
remove 0 11344
>> Removing city A (0,11344)
 
remove 0 11345
>> Removing city A (0,11345)
 
remove 0 11346
>> Removing city A (0,11346)
 
remove 0 11347
>> Removing city A (0,11347)
 
remove 0 11348
>> Removing city A (0,11348)
 
remove 0 11349
>> Removing city A (0,11349)
 
remove 0 11350
>> Removing city A (0,11350)
 
remove 0 11351
>> Removing city A (0,11351)
 
remove 0 11352
>> Removing city A (0,11352)
 
remove 0 11353
>> Removing city A (0,11353)
 
remove 0 11354
>> Removing city A (0,11354)
 
remove 0 11355
>> Removing city A (0,11355)
 
remove 0 11356
>> Removing city A (0,11356)
 
remove 0 11357
>> Removing city A (0,11357)
 
remove 0 11358
>> Removing city A (0,11358)
 
remove 0 11359
>> Removing city A (0,11359)
 
remove 0 11360
>> Removing city A (0,11360)
 
remove 0 11361
>> Removing city A (0,11361)
 
remove 0 11362
>> Removing city A (0,11362)
 
remove 0 11363
>> Removing city A (0,11363)
 
remove 0 11364
>> Removing city A (0,11364)
 
remove 0 11365
>> Removing city A (0,11365)
 
remove 0 11366
>> Removing city A (0,11366)
 
remove 0 11367
>> Removing city A (0,11367)
 
remove 0 11368
>> Removing city A (0,11368)
 
remove 0 11369
>> Removing city A (0,11369)
 
remove 0 11370
>> Removing city A (0,11370)
 
remove 0 11371
>> Removing city A (0,11371)
 
remove 0 11372
>> Removing city A (0,11372)
 
remove 0 11373
>> Removing city A (0,11373)
 
remove 0 11374
>> Removing city A (0,11374)
 
remove 0 11375
>> Removing city A (0,11375)
 
remove 0 11376
>> Removing city A (0,11376)
 
remove 0 11377
>> Removing city A (0,11377)
 
remove 0 11378
>> Removing city A (0,11378)
 
remove 0 11379
>> Removing city A (0,11379)
 
remove 0 11380
>> Removing city A (0,11380)
 
remove 0 11381
>> Removing city A (0,11381)
 
remove 0 11382
>> Removing city A (0,11382)
 
remove 0 11383
>> Removing city A (0,11383)
 
remove 0 11384
>> Removing city A (0,11384)
 
remove 0 11385
>> Removing city A (0,11385)
 
remove 0 11386
>> Removing city A (0,11386)
 
remove 0 11387
>> Removing city A (0,11387)
 
remove 0 11388
>> Removing city A (0,11388)
 
remove 0 11389
>> Removing city A (0,11389)
 
remove 0 11390
>> Removing city A (0,11390)
 
remove 0 11391
>> Removing city A (0,11391)
 
remove 0 11392
>> Removing city A (0,11392)
 
remove 0 11393
>> Removing city A (0,11393)
 
remove 0 11394
>> Removing city A (0,11394)
 
remove 0 11395
>> Removing city A (0,11395)
 
remove 0 11396
>> Removing city A (0,11396)
 
remove 0 11397
>> Removing city A (0,11397)
 
remove 0 11398
>> Removing city A (0,11398)
 
remove 0 11399
>> Removing city A (0,11399)
 
remove 0 11400
>> Removing city A (0,11400)
 
remove 0 11401
>> Removing city A (0,11401)
 
remove 0 11402
>> Removing city A (0,11402)
 
remove 0 11403
>> Removing city A (0,11403)
 
remove 0 11404
>> Removing city A (0,11404)
 
remove 0 11405
>> Removing city A (0,11405)
 
remove 0 11406
>> Removing city A (0,11406)
 
remove 0 11407
>> Removing city A (0,11407)
 
remove 0 11408
>> Removing city A (0,11408)
 
remove 0 11409
>> Removing city A (0,11409)
 
remove 0 11410
>> Removing city A (0,11410)
 
remove 0 11411
>> Removing city A (0,11411)
 
remove 0 11412
>> Removing city A (0,11412)
 
remove 0 11413
>> Removing city A (0,11413)
 
remove 0 11414
>> Removing city A (0,11414)
 
remove 0 11415
>> Removing city A (0,11415)
 
remove 0 11416
>> Removing city A (0,11416)
 
remove 0 11417
>> Removing city A (0,11417)
 
remove 0 11418
>> Removing city A (0,11418)
 
remove 0 11419
>> Removing city A (0,11419)
 
remove 0 11420
>> Removing city A (0,11420)
 
remove 0 11421
>> Removing city A (0,11421)
 
remove 0 11422
>> Removing city A (0,11422)
 
remove 0 11423
>> Removing city A (0,11423)
 
remove 0 11424
>> Removing city A (0,11424)
 
remove 0 11425
>> Removing city A (0,11425)
 
remove 0 11426
>> Removing city A (0,11426)
 
remove 0 11427
>> Removing city A (0,11427)
 
remove 0 11428
>> Removing city A (0,11428)
 
remove 0 11429
>> Removing city A (0,11429)
 
remove 0 11430
>> Removing city A (0,11430)
 
remove 0 11431
>> Removing city A (0,11431)
 
remove 0 11432
>> Removing city A (0,11432)
 
remove 0 11433
>> Removing city A (0,11433)
 
remove 0 11434
>> Removing city A (0,11434)
 
remove 0 11435
>> Removing city A (0,11435)
 
remove 0 11436
>> Removing city A (0,11436)
 
remove 0 11437
>> Removing city A (0,11437)
 
remove 0 11438
>> Removing city A (0,11438)
 
remove 0 11439
>> Removing city A (0,11439)
 
remove 0 11440
>> Removing city A (0,11440)
 
remove 0 11441
>> Removing city A (0,11441)
 
remove 0 11442
>> Removing city A (0,11442)
 
remove 0 11443
>> Removing city A (0,11443)
 
remove 0 11444
>> Removing city A (0,11444)
 
remove 0 11445
>> Removing city A (0,11445)
 
remove 0 11446
>> Removing city A (0,11446)
 
remove 0 11447
>> Removing city A (0,11447)
 
remove 0 11448
>> Removing city A (0,11448)
 
remove 0 11449
>> Removing city A (0,11449)
 
remove 0 11450
>> Removing city A (0,11450)
 
remove 0 11451
>> Removing city A (0,11451)
 
remove 0 11452
>> Removing city A (0,11452)
 
remove 0 11453
>> Removing city A (0,11453)
 
remove 0 11454
>> Removing city A (0,11454)
 
remove 0 11455
>> Removing city A (0,11455)
 
remove 0 11456
>> Removing city A (0,11456)
 
remove 0 11457
>> Removing city A (0,11457)
 
remove 0 11458
>> Removing city A (0,11458)
 
remove 0 11459
>> Removing city A (0,11459)
 
remove 0 11460
>> Removing city A (0,11460)
 
remove 0 11461
>> Removing city A (0,11461)
 
remove 0 11462
>> Removing city A (0,11462)
 
remove 0 11463
>> Removing city A (0,11463)
 
remove 0 11464
>> Removing city A (0,11464)
 
remove 0 11465
>> Removing city A (0,11465)
 
remove 0 11466
>> Removing city A (0,11466)
 
remove 0 11467
>> Removing city A (0,11467)
 
remove 0 11468
>> Removing city A (0,11468)
 
remove 0 11469
>> Removing city A (0,11469)
 
remove 0 11470
>> Removing city A (0,11470)
 
remove 0 11471
>> Removing city A (0,11471)
 
remove 0 11472
>> Removing city A (0,11472)
 
remove 0 11473
>> Removing city A (0,11473)
 
remove 0 11474
>> Removing city A (0,11474)
 
remove 0 11475
>> Removing city A (0,11475)
 
remove 0 11476
>> Removing city A (0,11476)
 
remove 0 11477
>> Removing city A (0,11477)
 
remove 0 11478
>> Removing city A (0,11478)
 
remove 0 11479
>> Removing city A (0,11479)
 
remove 0 11480
>> Removing city A (0,11480)
 
remove 0 11481
>> Removing city A (0,11481)
 
remove 0 11482
>> Removing city A (0,11482)
 
remove 0 11483
>> Removing city A (0,11483)
 
remove 0 11484
>> Removing city A (0,11484)
 
remove 0 11485
>> Removing city A (0,11485)
 
remove 0 11486
>> Removing city A (0,11486)
 
remove 0 11487
>> Removing city A (0,11487)
 
remove 0 11488
>> Removing city A (0,11488)
 
remove 0 11489
>> Removing city A (0,11489)
 
remove 0 11490
>> Removing city A (0,11490)
 
remove 0 11491
>> Removing city A (0,11491)
 
remove 0 11492
>> Removing city A (0,11492)
 
remove 0 11493
>> Removing city A (0,11493)
 
remove 0 11494
>> Removing city A (0,11494)
 
remove 0 11495
>> Removing city A (0,11495)
 
remove 0 11496
>> Removing city A (0,11496)
 
remove 0 11497
>> Removing city A (0,11497)
 
remove 0 11498
>> Removing city A (0,11498)
 
remove 0 11499
>> Removing city A (0,11499)
 
remove 0 11500
>> Removing city A (0,11500)
 
remove 0 11501
>> Removing city A (0,11501)
 
remove 0 11502
>> Removing city A (0,11502)
 
remove 0 11503
>> Removing city A (0,11503)
 
remove 0 11504
>> Removing city A (0,11504)
 
remove 0 11505
>> Removing city A (0,11505)
 
remove 0 11506
>> Removing city A (0,11506)
 
remove 0 11507
>> Removing city A (0,11507)
 
remove 0 11508
>> Removing city A (0,11508)
 
remove 0 11509
>> Removing city A (0,11509)
 
remove 0 11510
>> Removing city A (0,11510)
 
remove 0 11511
>> Removing city A (0,11511)
 
remove 0 11512
>> Removing city A (0,11512)
 
remove 0 11513
>> Removing city A (0,11513)
 
remove 0 11514
>> Removing city A (0,11514)
 
remove 0 11515
>> Removing city A (0,11515)
 
remove 0 11516
>> Removing city A (0,11516)
 
remove 0 11517
>> Removing city A (0,11517)
 
remove 0 11518
>> Removing city A (0,11518)
 
remove 0 11519
>> Removing city A (0,11519)
 
remove 0 11520
>> Removing city A (0,11520)
 
remove 0 11521
>> Removing city A (0,11521)
 
remove 0 11522
>> Removing city A (0,11522)
 
remove 0 11523
>> Removing city A (0,11523)
 
remove 0 11524
>> Removing city A (0,11524)
 
remove 0 11525
>> Removing city A (0,11525)
 
remove 0 11526
>> Removing city A (0,11526)
 
remove 0 11527
>> Removing city A (0,11527)
 
remove 0 11528
>> Removing city A (0,11528)
 
remove 0 11529
>> Removing city A (0,11529)
 
remove 0 11530
>> Removing city A (0,11530)
 
remove 0 11531
>> Removing city A (0,11531)
 
remove 0 11532
>> Removing city A (0,11532)
 
remove 0 11533
>> Removing city A (0,11533)
 
remove 0 11534
>> Removing city A (0,11534)
 
remove 0 11535
>> Removing city A (0,11535)
 
remove 0 11536
>> Removing city A (0,11536)
 
remove 0 11537
>> Removing city A (0,11537)
 
remove 0 11538
>> Removing city A (0,11538)
 
remove 0 11539
>> Removing city A (0,11539)
 
remove 0 11540
>> Removing city A (0,11540)
 
remove 0 11541
>> Removing city A (0,11541)
 
remove 0 11542
>> Removing city A (0,11542)
 
remove 0 11543
>> Removing city A (0,11543)
 
remove 0 11544
>> Removing city A (0,11544)
 
remove 0 11545
>> Removing city A (0,11545)
 
remove 0 11546
>> Removing city A (0,11546)
 
remove 0 11547
>> Removing city A (0,11547)
 
remove 0 11548
>> Removing city A (0,11548)
 
remove 0 11549
>> Removing city A (0,11549)
 
remove 0 11550
>> Removing city A (0,11550)
 
remove 0 11551
>> Removing city A (0,11551)
 
remove 0 11552
>> Removing city A (0,11552)
 
remove 0 11553
>> Removing city A (0,11553)
 
remove 0 11554
>> Removing city A (0,11554)
 
remove 0 11555
>> Removing city A (0,11555)
 
remove 0 11556
>> Removing city A (0,11556)
 
remove 0 11557
>> Removing city A (0,11557)
 
remove 0 11558
>> Removing city A (0,11558)
 
remove 0 11559
>> Removing city A (0,11559)
 
remove 0 11560
>> Removing city A (0,11560)
 
remove 0 11561
>> Removing city A (0,11561)
 
remove 0 11562
>> Removing city A (0,11562)
 
remove 0 11563
>> Removing city A (0,11563)
 
remove 0 11564
>> Removing city A (0,11564)
 
remove 0 11565
>> Removing city A (0,11565)
 
remove 0 11566
>> Removing city A (0,11566)
 
remove 0 11567
>> Removing city A (0,11567)
 
remove 0 11568
>> Removing city A (0,11568)
 
remove 0 11569
>> Removing city A (0,11569)
 
remove 0 11570
>> Removing city A (0,11570)
 
remove 0 11571
>> Removing city A (0,11571)
 
remove 0 11572
>> Removing city A (0,11572)
 
remove 0 11573
>> Removing city A (0,11573)
 
remove 0 11574
>> Removing city A (0,11574)
 
remove 0 11575
>> Removing city A (0,11575)
 
remove 0 11576
>> Removing city A (0,11576)
 
remove 0 11577
>> Removing city A (0,11577)
 
remove 0 11578
>> Removing city A (0,11578)
 
remove 0 11579
>> Removing city A (0,11579)
 
remove 0 11580
>> Removing city A (0,11580)
 
remove 0 11581
>> Removing city A (0,11581)
 
remove 0 11582
>> Removing city A (0,11582)
 
remove 0 11583
>> Removing city A (0,11583)
 
remove 0 11584
>> Removing city A (0,11584)
 
remove 0 11585
>> Removing city A (0,11585)
 
remove 0 11586
>> Removing city A (0,11586)
 
remove 0 11587
>> Removing city A (0,11587)
 
remove 0 11588
>> Removing city A (0,11588)
 
remove 0 11589
>> Removing city A (0,11589)
 
remove 0 11590
>> Removing city A (0,11590)
 
remove 0 11591
>> Removing city A (0,11591)
 
remove 0 11592
>> Removing city A (0,11592)
 
remove 0 11593
>> Removing city A (0,11593)
 
remove 0 11594
>> Removing city A (0,11594)
 
remove 0 11595
>> Removing city A (0,11595)
 
remove 0 11596
>> Removing city A (0,11596)
 
remove 0 11597
>> Removing city A (0,11597)
 
remove 0 11598
>> Removing city A (0,11598)
 
remove 0 11599
>> Removing city A (0,11599)
 
remove 0 11600
>> Removing city A (0,11600)
 
remove 0 11601
>> Removing city A (0,11601)
 
remove 0 11602
>> Removing city A (0,11602)
 
remove 0 11603
>> Removing city A (0,11603)
 
remove 0 11604
>> Removing city A (0,11604)
 
remove 0 11605
>> Removing city A (0,11605)
 
remove 0 11606
>> Removing city A (0,11606)
 
remove 0 11607
>> Removing city A (0,11607)
 
remove 0 11608
>> Removing city A (0,11608)
 
remove 0 11609
>> Removing city A (0,11609)
 
remove 0 11610
>> Removing city A (0,11610)
 
remove 0 11611
>> Removing city A (0,11611)
 
remove 0 11612
>> Removing city A (0,11612)
 
remove 0 11613
>> Removing city A (0,11613)
 
remove 0 11614
>> Removing city A (0,11614)
 
remove 0 11615
>> Removing city A (0,11615)
 
remove 0 11616
>> Removing city A (0,11616)
 
remove 0 11617
>> Removing city A (0,11617)
 
remove 0 11618
>> Removing city A (0,11618)
 
remove 0 11619
>> Removing city A (0,11619)
 
remove 0 11620
>> Removing city A (0,11620)
 
remove 0 11621
>> Removing city A (0,11621)
 
remove 0 11622
>> Removing city A (0,11622)
 
remove 0 11623
>> Removing city A (0,11623)
 
remove 0 11624
>> Removing city A (0,11624)
 
remove 0 11625
>> Removing city A (0,11625)
 
remove 0 11626
>> Removing city A (0,11626)
 
remove 0 11627
>> Removing city A (0,11627)
 
remove 0 11628
>> Removing city A (0,11628)
 
remove 0 11629
>> Removing city A (0,11629)
 
remove 0 11630
>> Removing city A (0,11630)
 
remove 0 11631
>> Removing city A (0,11631)
 
remove 0 11632
>> Removing city A (0,11632)
 
remove 0 11633
>> Removing city A (0,11633)
 
remove 0 11634
>> Removing city A (0,11634)
 
remove 0 11635
>> Removing city A (0,11635)
 
remove 0 11636
>> Removing city A (0,11636)
 
remove 0 11637
>> Removing city A (0,11637)
 
remove 0 11638
>> Removing city A (0,11638)
 
remove 0 11639
>> Removing city A (0,11639)
 
remove 0 11640
>> Removing city A (0,11640)
 
remove 0 11641
>> Removing city A (0,11641)
 
remove 0 11642
>> Removing city A (0,11642)
 
remove 0 11643
>> Removing city A (0,11643)
 
remove 0 11644
>> Removing city A (0,11644)
 
remove 0 11645
>> Removing city A (0,11645)
 
remove 0 11646
>> Removing city A (0,11646)
 
remove 0 11647
>> Removing city A (0,11647)
 
remove 0 11648
>> Removing city A (0,11648)
 
remove 0 11649
>> Removing city A (0,11649)
 
remove 0 11650
>> Removing city A (0,11650)
 
remove 0 11651
>> Removing city A (0,11651)
 
remove 0 11652
>> Removing city A (0,11652)
 
remove 0 11653
>> Removing city A (0,11653)
 
remove 0 11654
>> Removing city A (0,11654)
 
remove 0 11655
>> Removing city A (0,11655)
 
remove 0 11656
>> Removing city A (0,11656)
 
remove 0 11657
>> Removing city A (0,11657)
 
remove 0 11658
>> Removing city A (0,11658)
 
remove 0 11659
>> Removing city A (0,11659)
 
remove 0 11660
>> Removing city A (0,11660)
 
remove 0 11661
>> Removing city A (0,11661)
 
remove 0 11662
>> Removing city A (0,11662)
 
remove 0 11663
>> Removing city A (0,11663)
 
remove 0 11664
>> Removing city A (0,11664)
 
remove 0 11665
>> Removing city A (0,11665)
 
remove 0 11666
>> Removing city A (0,11666)
 
remove 0 11667
>> Removing city A (0,11667)
 
remove 0 11668
>> Removing city A (0,11668)
 
remove 0 11669
>> Removing city A (0,11669)
 
remove 0 11670
>> Removing city A (0,11670)
 
remove 0 11671
>> Removing city A (0,11671)
 
remove 0 11672
>> Removing city A (0,11672)
 
remove 0 11673
>> Removing city A (0,11673)
 
remove 0 11674
>> Removing city A (0,11674)
 
remove 0 11675
>> Removing city A (0,11675)
 
remove 0 11676
>> Removing city A (0,11676)
 
remove 0 11677
>> Removing city A (0,11677)
 
remove 0 11678
>> Removing city A (0,11678)
 
remove 0 11679
>> Removing city A (0,11679)
 
remove 0 11680
>> Removing city A (0,11680)
 
remove 0 11681
>> Removing city A (0,11681)
 
remove 0 11682
>> Removing city A (0,11682)
 
remove 0 11683
>> Removing city A (0,11683)
 
remove 0 11684
>> Removing city A (0,11684)
 
remove 0 11685
>> Removing city A (0,11685)
 
remove 0 11686
>> Removing city A (0,11686)
 
remove 0 11687
>> Removing city A (0,11687)
 
remove 0 11688
>> Removing city A (0,11688)
 
remove 0 11689
>> Removing city A (0,11689)
 
remove 0 11690
>> Removing city A (0,11690)
 
remove 0 11691
>> Removing city A (0,11691)
 
remove 0 11692
>> Removing city A (0,11692)
 
remove 0 11693
>> Removing city A (0,11693)
 
remove 0 11694
>> Removing city A (0,11694)
 
remove 0 11695
>> Removing city A (0,11695)
 
remove 0 11696
>> Removing city A (0,11696)
 
remove 0 11697
>> Removing city A (0,11697)
 
remove 0 11698
>> Removing city A (0,11698)
 
remove 0 11699
>> Removing city A (0,11699)
 
remove 0 11700
>> Removing city A (0,11700)
 
remove 0 11701
>> Removing city A (0,11701)
 
remove 0 11702
>> Removing city A (0,11702)
 
remove 0 11703
>> Removing city A (0,11703)
 
remove 0 11704
>> Removing city A (0,11704)
 
remove 0 11705
>> Removing city A (0,11705)
 
remove 0 11706
>> Removing city A (0,11706)
 
remove 0 11707
>> Removing city A (0,11707)
 
remove 0 11708
>> Removing city A (0,11708)
 
remove 0 11709
>> Removing city A (0,11709)
 
remove 0 11710
>> Removing city A (0,11710)
 
remove 0 11711
>> Removing city A (0,11711)
 
remove 0 11712
>> Removing city A (0,11712)
 
remove 0 11713
>> Removing city A (0,11713)
 
remove 0 11714
>> Removing city A (0,11714)
 
remove 0 11715
>> Removing city A (0,11715)
 
remove 0 11716
>> Removing city A (0,11716)
 
remove 0 11717
>> Removing city A (0,11717)
 
remove 0 11718
>> Removing city A (0,11718)
 
remove 0 11719
>> Removing city A (0,11719)
 
remove 0 11720
>> Removing city A (0,11720)
 
remove 0 11721
>> Removing city A (0,11721)
 
remove 0 11722
>> Removing city A (0,11722)
 
remove 0 11723
>> Removing city A (0,11723)
 
remove 0 11724
>> Removing city A (0,11724)
 
remove 0 11725
>> Removing city A (0,11725)
 
remove 0 11726
>> Removing city A (0,11726)
 
remove 0 11727
>> Removing city A (0,11727)
 
remove 0 11728
>> Removing city A (0,11728)
 
remove 0 11729
>> Removing city A (0,11729)
 
remove 0 11730
>> Removing city A (0,11730)
 
remove 0 11731
>> Removing city A (0,11731)
 
remove 0 11732
>> Removing city A (0,11732)
 
remove 0 11733
>> Removing city A (0,11733)
 
remove 0 11734
>> Removing city A (0,11734)
 
remove 0 11735
>> Removing city A (0,11735)
 
remove 0 11736
>> Removing city A (0,11736)
 
remove 0 11737
>> Removing city A (0,11737)
 
remove 0 11738
>> Removing city A (0,11738)
 
remove 0 11739
>> Removing city A (0,11739)
 
remove 0 11740
>> Removing city A (0,11740)
 
remove 0 11741
>> Removing city A (0,11741)
 
remove 0 11742
>> Removing city A (0,11742)
 
remove 0 11743
>> Removing city A (0,11743)
 
remove 0 11744
>> Removing city A (0,11744)
 
remove 0 11745
>> Removing city A (0,11745)
 
remove 0 11746
>> Removing city A (0,11746)
 
remove 0 11747
>> Removing city A (0,11747)
 
remove 0 11748
>> Removing city A (0,11748)
 
remove 0 11749
>> Removing city A (0,11749)
 
remove 0 11750
>> Removing city A (0,11750)
 
remove 0 11751
>> Removing city A (0,11751)
 
remove 0 11752
>> Removing city A (0,11752)
 
remove 0 11753
>> Removing city A (0,11753)
 
remove 0 11754
>> Removing city A (0,11754)
 
remove 0 11755
>> Removing city A (0,11755)
 
remove 0 11756
>> Removing city A (0,11756)
 
remove 0 11757
>> Removing city A (0,11757)
 
remove 0 11758
>> Removing city A (0,11758)
 
remove 0 11759
>> Removing city A (0,11759)
 
remove 0 11760
>> Removing city A (0,11760)
 
remove 0 11761
>> Removing city A (0,11761)
 
remove 0 11762
>> Removing city A (0,11762)
 
remove 0 11763
>> Removing city A (0,11763)
 
remove 0 11764
>> Removing city A (0,11764)
 
remove 0 11765
>> Removing city A (0,11765)
 
remove 0 11766
>> Removing city A (0,11766)
 
remove 0 11767
>> Removing city A (0,11767)
 
remove 0 11768
>> Removing city A (0,11768)
 
remove 0 11769
>> Removing city A (0,11769)
 
remove 0 11770
>> Removing city A (0,11770)
 
remove 0 11771
>> Removing city A (0,11771)
 
remove 0 11772
>> Removing city A (0,11772)
 
remove 0 11773
>> Removing city A (0,11773)
 
remove 0 11774
>> Removing city A (0,11774)
 
remove 0 11775
>> Removing city A (0,11775)
 
remove 0 11776
>> Removing city A (0,11776)
 
remove 0 11777
>> Removing city A (0,11777)
 
remove 0 11778
>> Removing city A (0,11778)
 
remove 0 11779
>> Removing city A (0,11779)
 
remove 0 11780
>> Removing city A (0,11780)
 
remove 0 11781
>> Removing city A (0,11781)
 
remove 0 11782
>> Removing city A (0,11782)
 
remove 0 11783
>> Removing city A (0,11783)
 
remove 0 11784
>> Removing city A (0,11784)
 
remove 0 11785
>> Removing city A (0,11785)
 
remove 0 11786
>> Removing city A (0,11786)
 
remove 0 11787
>> Removing city A (0,11787)
 
remove 0 11788
>> Removing city A (0,11788)
 
remove 0 11789
>> Removing city A (0,11789)
 
remove 0 11790
>> Removing city A (0,11790)
 
remove 0 11791
>> Removing city A (0,11791)
 
remove 0 11792
>> Removing city A (0,11792)
 
remove 0 11793
>> Removing city A (0,11793)
 
remove 0 11794
>> Removing city A (0,11794)
 
remove 0 11795
>> Removing city A (0,11795)
 
remove 0 11796
>> Removing city A (0,11796)
 
remove 0 11797
>> Removing city A (0,11797)
 
remove 0 11798
>> Removing city A (0,11798)
 
remove 0 11799
>> Removing city A (0,11799)
 
remove 0 11800
>> Removing city A (0,11800)
 
remove 0 11801
>> Removing city A (0,11801)
 
remove 0 11802
>> Removing city A (0,11802)
 
remove 0 11803
>> Removing city A (0,11803)
 
remove 0 11804
>> Removing city A (0,11804)
 
remove 0 11805
>> Removing city A (0,11805)
 
remove 0 11806
>> Removing city A (0,11806)
 
remove 0 11807
>> Removing city A (0,11807)
 
remove 0 11808
>> Removing city A (0,11808)
 
remove 0 11809
>> Removing city A (0,11809)
 
remove 0 11810
>> Removing city A (0,11810)
 
remove 0 11811
>> Removing city A (0,11811)
 
remove 0 11812
>> Removing city A (0,11812)
 
remove 0 11813
>> Removing city A (0,11813)
 
remove 0 11814
>> Removing city A (0,11814)
 
remove 0 11815
>> Removing city A (0,11815)
 
remove 0 11816
>> Removing city A (0,11816)
 
remove 0 11817
>> Removing city A (0,11817)
 
remove 0 11818
>> Removing city A (0,11818)
 
remove 0 11819
>> Removing city A (0,11819)
 
remove 0 11820
>> Removing city A (0,11820)
 
remove 0 11821
>> Removing city A (0,11821)
 
remove 0 11822
>> Removing city A (0,11822)
 
remove 0 11823
>> Removing city A (0,11823)
 
remove 0 11824
>> Removing city A (0,11824)
 
remove 0 11825
>> Removing city A (0,11825)
 
remove 0 11826
>> Removing city A (0,11826)
 
remove 0 11827
>> Removing city A (0,11827)
 
remove 0 11828
>> Removing city A (0,11828)
 
remove 0 11829
>> Removing city A (0,11829)
 
remove 0 11830
>> Removing city A (0,11830)
 
remove 0 11831
>> Removing city A (0,11831)
 
remove 0 11832
>> Removing city A (0,11832)
 
remove 0 11833
>> Removing city A (0,11833)
 
remove 0 11834
>> Removing city A (0,11834)
 
remove 0 11835
>> Removing city A (0,11835)
 
remove 0 11836
>> Removing city A (0,11836)
 
remove 0 11837
>> Removing city A (0,11837)
 
remove 0 11838
>> Removing city A (0,11838)
 
remove 0 11839
>> Removing city A (0,11839)
 
remove 0 11840
>> Removing city A (0,11840)
 
remove 0 11841
>> Removing city A (0,11841)
 
remove 0 11842
>> Removing city A (0,11842)
 
remove 0 11843
>> Removing city A (0,11843)
 
remove 0 11844
>> Removing city A (0,11844)
 
remove 0 11845
>> Removing city A (0,11845)
 
remove 0 11846
>> Removing city A (0,11846)
 
remove 0 11847
>> Removing city A (0,11847)
 
remove 0 11848
>> Removing city A (0,11848)
 
remove 0 11849
>> Removing city A (0,11849)
 
remove 0 11850
>> Removing city A (0,11850)
 
remove 0 11851
>> Removing city A (0,11851)
 
remove 0 11852
>> Removing city A (0,11852)
 
remove 0 11853
>> Removing city A (0,11853)
 
remove 0 11854
>> Removing city A (0,11854)
 
remove 0 11855
>> Removing city A (0,11855)
 
remove 0 11856
>> Removing city A (0,11856)
 
remove 0 11857
>> Removing city A (0,11857)
 
remove 0 11858
>> Removing city A (0,11858)
 
remove 0 11859
>> Removing city A (0,11859)
 
remove 0 11860
>> Removing city A (0,11860)
 
remove 0 11861
>> Removing city A (0,11861)
 
remove 0 11862
>> Removing city A (0,11862)
 
remove 0 11863
>> Removing city A (0,11863)
 
remove 0 11864
>> Removing city A (0,11864)
 
remove 0 11865
>> Removing city A (0,11865)
 
remove 0 11866
>> Removing city A (0,11866)
 
remove 0 11867
>> Removing city A (0,11867)
 
remove 0 11868
>> Removing city A (0,11868)
 
remove 0 11869
>> Removing city A (0,11869)
 
remove 0 11870
>> Removing city A (0,11870)
 
remove 0 11871
>> Removing city A (0,11871)
 
remove 0 11872
>> Removing city A (0,11872)
 
remove 0 11873
>> Removing city A (0,11873)
 
remove 0 11874
>> Removing city A (0,11874)
 
remove 0 11875
>> Removing city A (0,11875)
 
remove 0 11876
>> Removing city A (0,11876)
 
remove 0 11877
>> Removing city A (0,11877)
 
remove 0 11878
>> Removing city A (0,11878)
 
remove 0 11879
>> Removing city A (0,11879)
 
remove 0 11880
>> Removing city A (0,11880)
 
remove 0 11881
>> Removing city A (0,11881)
 
remove 0 11882
>> Removing city A (0,11882)
 
remove 0 11883
>> Removing city A (0,11883)
 
remove 0 11884
>> Removing city A (0,11884)
 
remove 0 11885
>> Removing city A (0,11885)
 
remove 0 11886
>> Removing city A (0,11886)
 
remove 0 11887
>> Removing city A (0,11887)
 
remove 0 11888
>> Removing city A (0,11888)
 
remove 0 11889
>> Removing city A (0,11889)
 
remove 0 11890
>> Removing city A (0,11890)
 
remove 0 11891
>> Removing city A (0,11891)
 
remove 0 11892
>> Removing city A (0,11892)
 
remove 0 11893
>> Removing city A (0,11893)
 
remove 0 11894
>> Removing city A (0,11894)
 
remove 0 11895
>> Removing city A (0,11895)
 
remove 0 11896
>> Removing city A (0,11896)
 
remove 0 11897
>> Removing city A (0,11897)
 
remove 0 11898
>> Removing city A (0,11898)
 
remove 0 11899
>> Removing city A (0,11899)
 
remove 0 11900
>> Removing city A (0,11900)
 
remove 0 11901
>> Removing city A (0,11901)
 
remove 0 11902
>> Removing city A (0,11902)
 
remove 0 11903
>> Removing city A (0,11903)
 
remove 0 11904
>> Removing city A (0,11904)
 
remove 0 11905
>> Removing city A (0,11905)
 
remove 0 11906
>> Removing city A (0,11906)
 
remove 0 11907
>> Removing city A (0,11907)
 
remove 0 11908
>> Removing city A (0,11908)
 
remove 0 11909
>> Removing city A (0,11909)
 
remove 0 11910
>> Removing city A (0,11910)
 
remove 0 11911
>> Removing city A (0,11911)
 
remove 0 11912
>> Removing city A (0,11912)
 
remove 0 11913
>> Removing city A (0,11913)
 
remove 0 11914
>> Removing city A (0,11914)
 
remove 0 11915
>> Removing city A (0,11915)
 
remove 0 11916
>> Removing city A (0,11916)
 
remove 0 11917
>> Removing city A (0,11917)
 
remove 0 11918
>> Removing city A (0,11918)
 
remove 0 11919
>> Removing city A (0,11919)
 
remove 0 11920
>> Removing city A (0,11920)
 
remove 0 11921
>> Removing city A (0,11921)
 
remove 0 11922
>> Removing city A (0,11922)
 
remove 0 11923
>> Removing city A (0,11923)
 
remove 0 11924
>> Removing city A (0,11924)
 
remove 0 11925
>> Removing city A (0,11925)
 
remove 0 11926
>> Removing city A (0,11926)
 
remove 0 11927
>> Removing city A (0,11927)
 
remove 0 11928
>> Removing city A (0,11928)
 
remove 0 11929
>> Removing city A (0,11929)
 
remove 0 11930
>> Removing city A (0,11930)
 
remove 0 11931
>> Removing city A (0,11931)
 
remove 0 11932
>> Removing city A (0,11932)
 
remove 0 11933
>> Removing city A (0,11933)
 
remove 0 11934
>> Removing city A (0,11934)
 
remove 0 11935
>> Removing city A (0,11935)
 
remove 0 11936
>> Removing city A (0,11936)
 
remove 0 11937
>> Removing city A (0,11937)
 
remove 0 11938
>> Removing city A (0,11938)
 
remove 0 11939
>> Removing city A (0,11939)
 
remove 0 11940
>> Removing city A (0,11940)
 
remove 0 11941
>> Removing city A (0,11941)
 
remove 0 11942
>> Removing city A (0,11942)
 
remove 0 11943
>> Removing city A (0,11943)
 
remove 0 11944
>> Removing city A (0,11944)
 
remove 0 11945
>> Removing city A (0,11945)
 
remove 0 11946
>> Removing city A (0,11946)
 
remove 0 11947
>> Removing city A (0,11947)
 
remove 0 11948
>> Removing city A (0,11948)
 
remove 0 11949
>> Removing city A (0,11949)
 
remove 0 11950
>> Removing city A (0,11950)
 
remove 0 11951
>> Removing city A (0,11951)
 
remove 0 11952
>> Removing city A (0,11952)
 
remove 0 11953
>> Removing city A (0,11953)
 
remove 0 11954
>> Removing city A (0,11954)
 
remove 0 11955
>> Removing city A (0,11955)
 
remove 0 11956
>> Removing city A (0,11956)
 
remove 0 11957
>> Removing city A (0,11957)
 
remove 0 11958
>> Removing city A (0,11958)
 
remove 0 11959
>> Removing city A (0,11959)
 
remove 0 11960
>> Removing city A (0,11960)
 
remove 0 11961
>> Removing city A (0,11961)
 
remove 0 11962
>> Removing city A (0,11962)
 
remove 0 11963
>> Removing city A (0,11963)
 
remove 0 11964
>> Removing city A (0,11964)
 
remove 0 11965
>> Removing city A (0,11965)
 
remove 0 11966
>> Removing city A (0,11966)
 
remove 0 11967
>> Removing city A (0,11967)
 
remove 0 11968
>> Removing city A (0,11968)
 
remove 0 11969
>> Removing city A (0,11969)
 
remove 0 11970
>> Removing city A (0,11970)
 
remove 0 11971
>> Removing city A (0,11971)
 
remove 0 11972
>> Removing city A (0,11972)
 
remove 0 11973
>> Removing city A (0,11973)
 
remove 0 11974
>> Removing city A (0,11974)
 
remove 0 11975
>> Removing city A (0,11975)
 
remove 0 11976
>> Removing city A (0,11976)
 
remove 0 11977
>> Removing city A (0,11977)
 
remove 0 11978
>> Removing city A (0,11978)
 
remove 0 11979
>> Removing city A (0,11979)
 
remove 0 11980
>> Removing city A (0,11980)
 
remove 0 11981
>> Removing city A (0,11981)
 
remove 0 11982
>> Removing city A (0,11982)
 
remove 0 11983
>> Removing city A (0,11983)
 
remove 0 11984
>> Removing city A (0,11984)
 
remove 0 11985
>> Removing city A (0,11985)
 
remove 0 11986
>> Removing city A (0,11986)
 
remove 0 11987
>> Removing city A (0,11987)
 
remove 0 11988
>> Removing city A (0,11988)
 
remove 0 11989
>> Removing city A (0,11989)
 
remove 0 11990
>> Removing city A (0,11990)
 
remove 0 11991
>> Removing city A (0,11991)
 
remove 0 11992
>> Removing city A (0,11992)
 
remove 0 11993
>> Removing city A (0,11993)
 
remove 0 11994
>> Removing city A (0,11994)
 
remove 0 11995
>> Removing city A (0,11995)
 
remove 0 11996
>> Removing city A (0,11996)
 
remove 0 11997
>> Removing city A (0,11997)
 
remove 0 11998
>> Removing city A (0,11998)
 
remove 0 11999
>> Removing city A (0,11999)
 
remove 0 12000
>> Removing city A (0,12000)
 
remove 0 12001
>> Removing city A (0,12001)
 
remove 0 12002
>> Removing city A (0,12002)
 
remove 0 12003
>> Removing city A (0,12003)
 
remove 0 12004
>> Removing city A (0,12004)
 
remove 0 12005
>> Removing city A (0,12005)
 
remove 0 12006
>> Removing city A (0,12006)
 
remove 0 12007
>> Removing city A (0,12007)
 
remove 0 12008
>> Removing city A (0,12008)
 
remove 0 12009
>> Removing city A (0,12009)
 
remove 0 12010
>> Removing city A (0,12010)
 
remove 0 12011
>> Removing city A (0,12011)
 
remove 0 12012
>> Removing city A (0,12012)
 
remove 0 12013
>> Removing city A (0,12013)
 
remove 0 12014
>> Removing city A (0,12014)
 
remove 0 12015
>> Removing city A (0,12015)
 
remove 0 12016
>> Removing city A (0,12016)
 
remove 0 12017
>> Removing city A (0,12017)
 
remove 0 12018
>> Removing city A (0,12018)
 
remove 0 12019
>> Removing city A (0,12019)
 
remove 0 12020
>> Removing city A (0,12020)
 
remove 0 12021
>> Removing city A (0,12021)
 
remove 0 12022
>> Removing city A (0,12022)
 
remove 0 12023
>> Removing city A (0,12023)
 
remove 0 12024
>> Removing city A (0,12024)
 
remove 0 12025
>> Removing city A (0,12025)
 
remove 0 12026
>> Removing city A (0,12026)
 
remove 0 12027
>> Removing city A (0,12027)
 
remove 0 12028
>> Removing city A (0,12028)
 
remove 0 12029
>> Removing city A (0,12029)
 
remove 0 12030
>> Removing city A (0,12030)
 
remove 0 12031
>> Removing city A (0,12031)
 
remove 0 12032
>> Removing city A (0,12032)
 
remove 0 12033
>> Removing city A (0,12033)
 
remove 0 12034
>> Removing city A (0,12034)
 
remove 0 12035
>> Removing city A (0,12035)
 
remove 0 12036
>> Removing city A (0,12036)
 
remove 0 12037
>> Removing city A (0,12037)
 
remove 0 12038
>> Removing city A (0,12038)
 
remove 0 12039
>> Removing city A (0,12039)
 
remove 0 12040
>> Removing city A (0,12040)
 
remove 0 12041
>> Removing city A (0,12041)
 
remove 0 12042
>> Removing city A (0,12042)
 
remove 0 12043
>> Removing city A (0,12043)
 
remove 0 12044
>> Removing city A (0,12044)
 
remove 0 12045
>> Removing city A (0,12045)
 
remove 0 12046
>> Removing city A (0,12046)
 
remove 0 12047
>> Removing city A (0,12047)
 
remove 0 12048
>> Removing city A (0,12048)
 
remove 0 12049
>> Removing city A (0,12049)
 
remove 0 12050
>> Removing city A (0,12050)
 
remove 0 12051
>> Removing city A (0,12051)
 
remove 0 12052
>> Removing city A (0,12052)
 
remove 0 12053
>> Removing city A (0,12053)
 
remove 0 12054
>> Removing city A (0,12054)
 
remove 0 12055
>> Removing city A (0,12055)
 
remove 0 12056
>> Removing city A (0,12056)
 
remove 0 12057
>> Removing city A (0,12057)
 
remove 0 12058
>> Removing city A (0,12058)
 
remove 0 12059
>> Removing city A (0,12059)
 
remove 0 12060
>> Removing city A (0,12060)
 
remove 0 12061
>> Removing city A (0,12061)
 
remove 0 12062
>> Removing city A (0,12062)
 
remove 0 12063
>> Removing city A (0,12063)
 
remove 0 12064
>> Removing city A (0,12064)
 
remove 0 12065
>> Removing city A (0,12065)
 
remove 0 12066
>> Removing city A (0,12066)
 
remove 0 12067
>> Removing city A (0,12067)
 
remove 0 12068
>> Removing city A (0,12068)
 
remove 0 12069
>> Removing city A (0,12069)
 
remove 0 12070
>> Removing city A (0,12070)
 
remove 0 12071
>> Removing city A (0,12071)
 
remove 0 12072
>> Removing city A (0,12072)
 
remove 0 12073
>> Removing city A (0,12073)
 
remove 0 12074
>> Removing city A (0,12074)
 
remove 0 12075
>> Removing city A (0,12075)
 
remove 0 12076
>> Removing city A (0,12076)
 
remove 0 12077
>> Removing city A (0,12077)
 
remove 0 12078
>> Removing city A (0,12078)
 
remove 0 12079
>> Removing city A (0,12079)
 
remove 0 12080
>> Removing city A (0,12080)
 
remove 0 12081
>> Removing city A (0,12081)
 
remove 0 12082
>> Removing city A (0,12082)
 
remove 0 12083
>> Removing city A (0,12083)
 
remove 0 12084
>> Removing city A (0,12084)
 
remove 0 12085
>> Removing city A (0,12085)
 
remove 0 12086
>> Removing city A (0,12086)
 
remove 0 12087
>> Removing city A (0,12087)
 
remove 0 12088
>> Removing city A (0,12088)
 
remove 0 12089
>> Removing city A (0,12089)
 
remove 0 12090
>> Removing city A (0,12090)
 
remove 0 12091
>> Removing city A (0,12091)
 
remove 0 12092
>> Removing city A (0,12092)
 
remove 0 12093
>> Removing city A (0,12093)
 
remove 0 12094
>> Removing city A (0,12094)
 
remove 0 12095
>> Removing city A (0,12095)
 
remove 0 12096
>> Removing city A (0,12096)
 
remove 0 12097
>> Removing city A (0,12097)
 
remove 0 12098
>> Removing city A (0,12098)
 
remove 0 12099
>> Removing city A (0,12099)
 
remove 0 12100
>> Removing city A (0,12100)
 
remove 0 12101
>> Removing city A (0,12101)
 
remove 0 12102
>> Removing city A (0,12102)
 
remove 0 12103
>> Removing city A (0,12103)
 
remove 0 12104
>> Removing city A (0,12104)
 
remove 0 12105
>> Removing city A (0,12105)
 
remove 0 12106
>> Removing city A (0,12106)
 
remove 0 12107
>> Removing city A (0,12107)
 
remove 0 12108
>> Removing city A (0,12108)
 
remove 0 12109
>> Removing city A (0,12109)
 
remove 0 12110
>> Removing city A (0,12110)
 
remove 0 12111
>> Removing city A (0,12111)
 
remove 0 12112
>> Removing city A (0,12112)
 
remove 0 12113
>> Removing city A (0,12113)
 
remove 0 12114
>> Removing city A (0,12114)
 
remove 0 12115
>> Removing city A (0,12115)
 
remove 0 12116
>> Removing city A (0,12116)
 
remove 0 12117
>> Removing city A (0,12117)
 
remove 0 12118
>> Removing city A (0,12118)
 
remove 0 12119
>> Removing city A (0,12119)
 
remove 0 12120
>> Removing city A (0,12120)
 
remove 0 12121
>> Removing city A (0,12121)
 
remove 0 12122
>> Removing city A (0,12122)
 
remove 0 12123
>> Removing city A (0,12123)
 
remove 0 12124
>> Removing city A (0,12124)
 
remove 0 12125
>> Removing city A (0,12125)
 
remove 0 12126
>> Removing city A (0,12126)
 
remove 0 12127
>> Removing city A (0,12127)
 
remove 0 12128
>> Removing city A (0,12128)
 
remove 0 12129
>> Removing city A (0,12129)
 
remove 0 12130
>> Removing city A (0,12130)
 
remove 0 12131
>> Removing city A (0,12131)
 
remove 0 12132
>> Removing city A (0,12132)
 
remove 0 12133
>> Removing city A (0,12133)
 
remove 0 12134
>> Removing city A (0,12134)
 
remove 0 12135
>> Removing city A (0,12135)
 
remove 0 12136
>> Removing city A (0,12136)
 
remove 0 12137
>> Removing city A (0,12137)
 
remove 0 12138
>> Removing city A (0,12138)
 
remove 0 12139
>> Removing city A (0,12139)
 
remove 0 12140
>> Removing city A (0,12140)
 
remove 0 12141
>> Removing city A (0,12141)
 
remove 0 12142
>> Removing city A (0,12142)
 
remove 0 12143
>> Removing city A (0,12143)
 
remove 0 12144
>> Removing city A (0,12144)
 
remove 0 12145
>> Removing city A (0,12145)
 
remove 0 12146
>> Removing city A (0,12146)
 
remove 0 12147
>> Removing city A (0,12147)
 
remove 0 12148
>> Removing city A (0,12148)
 
remove 0 12149
>> Removing city A (0,12149)
 
remove 0 12150
>> Removing city A (0,12150)
 
remove 0 12151
>> Removing city A (0,12151)
 
remove 0 12152
>> Removing city A (0,12152)
 
remove 0 12153
>> Removing city A (0,12153)
 
remove 0 12154
>> Removing city A (0,12154)
 
remove 0 12155
>> Removing city A (0,12155)
 
remove 0 12156
>> Removing city A (0,12156)
 
remove 0 12157
>> Removing city A (0,12157)
 
remove 0 12158
>> Removing city A (0,12158)
 
remove 0 12159
>> Removing city A (0,12159)
 
remove 0 12160
>> Removing city A (0,12160)
 
remove 0 12161
>> Removing city A (0,12161)
 
remove 0 12162
>> Removing city A (0,12162)
 
remove 0 12163
>> Removing city A (0,12163)
 
remove 0 12164
>> Removing city A (0,12164)
 
remove 0 12165
>> Removing city A (0,12165)
 
remove 0 12166
>> Removing city A (0,12166)
 
remove 0 12167
>> Removing city A (0,12167)
 
remove 0 12168
>> Removing city A (0,12168)
 
remove 0 12169
>> Removing city A (0,12169)
 
remove 0 12170
>> Removing city A (0,12170)
 
remove 0 12171
>> Removing city A (0,12171)
 
remove 0 12172
>> Removing city A (0,12172)
 
remove 0 12173
>> Removing city A (0,12173)
 
remove 0 12174
>> Removing city A (0,12174)
 
remove 0 12175
>> Removing city A (0,12175)
 
remove 0 12176
>> Removing city A (0,12176)
 
remove 0 12177
>> Removing city A (0,12177)
 
remove 0 12178
>> Removing city A (0,12178)
 
remove 0 12179
>> Removing city A (0,12179)
 
remove 0 12180
>> Removing city A (0,12180)
 
remove 0 12181
>> Removing city A (0,12181)
 
remove 0 12182
>> Removing city A (0,12182)
 
remove 0 12183
>> Removing city A (0,12183)
 
remove 0 12184
>> Removing city A (0,12184)
 
remove 0 12185
>> Removing city A (0,12185)
 
remove 0 12186
>> Removing city A (0,12186)
 
remove 0 12187
>> Removing city A (0,12187)
 
remove 0 12188
>> Removing city A (0,12188)
 
remove 0 12189
>> Removing city A (0,12189)
 
remove 0 12190
>> Removing city A (0,12190)
 
remove 0 12191
>> Removing city A (0,12191)
 
remove 0 12192
>> Removing city A (0,12192)
 
remove 0 12193
>> Removing city A (0,12193)
 
remove 0 12194
>> Removing city A (0,12194)
 
remove 0 12195
>> Removing city A (0,12195)
 
remove 0 12196
>> Removing city A (0,12196)
 
remove 0 12197
>> Removing city A (0,12197)
 
remove 0 12198
>> Removing city A (0,12198)
 
remove 0 12199
>> Removing city A (0,12199)
 
remove 0 12200
>> Removing city A (0,12200)
 
remove 0 12201
>> Removing city A (0,12201)
 
remove 0 12202
>> Removing city A (0,12202)
 
remove 0 12203
>> Removing city A (0,12203)
 
remove 0 12204
>> Removing city A (0,12204)
 
remove 0 12205
>> Removing city A (0,12205)
 
remove 0 12206
>> Removing city A (0,12206)
 
remove 0 12207
>> Removing city A (0,12207)
 
remove 0 12208
>> Removing city A (0,12208)
 
remove 0 12209
>> Removing city A (0,12209)
 
remove 0 12210
>> Removing city A (0,12210)
 
remove 0 12211
>> Removing city A (0,12211)
 
remove 0 12212
>> Removing city A (0,12212)
 
remove 0 12213
>> Removing city A (0,12213)
 
remove 0 12214
>> Removing city A (0,12214)
 
remove 0 12215
>> Removing city A (0,12215)
 
remove 0 12216
>> Removing city A (0,12216)
 
remove 0 12217
>> Removing city A (0,12217)
 
remove 0 12218
>> Removing city A (0,12218)
 
remove 0 12219
>> Removing city A (0,12219)
 
remove 0 12220
>> Removing city A (0,12220)
 
remove 0 12221
>> Removing city A (0,12221)
 
remove 0 12222
>> Removing city A (0,12222)
 
remove 0 12223
>> Removing city A (0,12223)
 
remove 0 12224
>> Removing city A (0,12224)
 
remove 0 12225
>> Removing city A (0,12225)
 
remove 0 12226
>> Removing city A (0,12226)
 
remove 0 12227
>> Removing city A (0,12227)
 
remove 0 12228
>> Removing city A (0,12228)
 
remove 0 12229
>> Removing city A (0,12229)
 
remove 0 12230
>> Removing city A (0,12230)
 
remove 0 12231
>> Removing city A (0,12231)
 
remove 0 12232
>> Removing city A (0,12232)
 
remove 0 12233
>> Removing city A (0,12233)
 
remove 0 12234
>> Removing city A (0,12234)
 
remove 0 12235
>> Removing city A (0,12235)
 
remove 0 12236
>> Removing city A (0,12236)
 
remove 0 12237
>> Removing city A (0,12237)
 
remove 0 12238
>> Removing city A (0,12238)
 
remove 0 12239
>> Removing city A (0,12239)
 
remove 0 12240
>> Removing city A (0,12240)
 
remove 0 12241
>> Removing city A (0,12241)
 
remove 0 12242
>> Removing city A (0,12242)
 
remove 0 12243
>> Removing city A (0,12243)
 
remove 0 12244
>> Removing city A (0,12244)
 
remove 0 12245
>> Removing city A (0,12245)
 
remove 0 12246
>> Removing city A (0,12246)
 
remove 0 12247
>> Removing city A (0,12247)
 
remove 0 12248
>> Removing city A (0,12248)
 
remove 0 12249
>> Removing city A (0,12249)
 
remove 0 12250
>> Removing city A (0,12250)
 
remove 0 12251
>> Removing city A (0,12251)
 
remove 0 12252
>> Removing city A (0,12252)
 
remove 0 12253
>> Removing city A (0,12253)
 
remove 0 12254
>> Removing city A (0,12254)
 
remove 0 12255
>> Removing city A (0,12255)
 
remove 0 12256
>> Removing city A (0,12256)
 
remove 0 12257
>> Removing city A (0,12257)
 
remove 0 12258
>> Removing city A (0,12258)
 
remove 0 12259
>> Removing city A (0,12259)
 
remove 0 12260
>> Removing city A (0,12260)
 
remove 0 12261
>> Removing city A (0,12261)
 
remove 0 12262
>> Removing city A (0,12262)
 
remove 0 12263
>> Removing city A (0,12263)
 
remove 0 12264
>> Removing city A (0,12264)
 
remove 0 12265
>> Removing city A (0,12265)
 
remove 0 12266
>> Removing city A (0,12266)
 
remove 0 12267
>> Removing city A (0,12267)
 
remove 0 12268
>> Removing city A (0,12268)
 
remove 0 12269
>> Removing city A (0,12269)
 
remove 0 12270
>> Removing city A (0,12270)
 
remove 0 12271
>> Removing city A (0,12271)
 
remove 0 12272
>> Removing city A (0,12272)
 
remove 0 12273
>> Removing city A (0,12273)
 
remove 0 12274
>> Removing city A (0,12274)
 
remove 0 12275
>> Removing city A (0,12275)
 
remove 0 12276
>> Removing city A (0,12276)
 
remove 0 12277
>> Removing city A (0,12277)
 
remove 0 12278
>> Removing city A (0,12278)
 
remove 0 12279
>> Removing city A (0,12279)
 
remove 0 12280
>> Removing city A (0,12280)
 
remove 0 12281
>> Removing city A (0,12281)
 
remove 0 12282
>> Removing city A (0,12282)
 
remove 0 12283
>> Removing city A (0,12283)
 
remove 0 12284
>> Removing city A (0,12284)
 
remove 0 12285
>> Removing city A (0,12285)
 
remove 0 12286
>> Removing city A (0,12286)
 
remove 0 12287
>> Removing city A (0,12287)
 
remove 0 12288
>> Removing city A (0,12288)
 
remove 0 12289
>> Removing city A (0,12289)
 
remove 0 12290
>> Removing city A (0,12290)
 
remove 0 12291
>> Removing city A (0,12291)
 
remove 0 12292
>> Removing city A (0,12292)
 
remove 0 12293
>> Removing city A (0,12293)
 
remove 0 12294
>> Removing city A (0,12294)
 
remove 0 12295
>> Removing city A (0,12295)
 
remove 0 12296
>> Removing city A (0,12296)
 
remove 0 12297
>> Removing city A (0,12297)
 
remove 0 12298
>> Removing city A (0,12298)
 
remove 0 12299
>> Removing city A (0,12299)
 
remove 0 12300
>> Removing city A (0,12300)
 
remove 0 12301
>> Removing city A (0,12301)
 
remove 0 12302
>> Removing city A (0,12302)
 
remove 0 12303
>> Removing city A (0,12303)
 
remove 0 12304
>> Removing city A (0,12304)
 
remove 0 12305
>> Removing city A (0,12305)
 
remove 0 12306
>> Removing city A (0,12306)
 
remove 0 12307
>> Removing city A (0,12307)
 
remove 0 12308
>> Removing city A (0,12308)
 
remove 0 12309
>> Removing city A (0,12309)
 
remove 0 12310
>> Removing city A (0,12310)
 
remove 0 12311
>> Removing city A (0,12311)
 
remove 0 12312
>> Removing city A (0,12312)
 
remove 0 12313
>> Removing city A (0,12313)
 
remove 0 12314
>> Removing city A (0,12314)
 
remove 0 12315
>> Removing city A (0,12315)
 
remove 0 12316
>> Removing city A (0,12316)
 
remove 0 12317
>> Removing city A (0,12317)
 
remove 0 12318
>> Removing city A (0,12318)
 
remove 0 12319
>> Removing city A (0,12319)
 
remove 0 12320
>> Removing city A (0,12320)
 
remove 0 12321
>> Removing city A (0,12321)
 
remove 0 12322
>> Removing city A (0,12322)
 
remove 0 12323
>> Removing city A (0,12323)
 
remove 0 12324
>> Removing city A (0,12324)
 
remove 0 12325
>> Removing city A (0,12325)
 
remove 0 12326
>> Removing city A (0,12326)
 
remove 0 12327
>> Removing city A (0,12327)
 
remove 0 12328
>> Removing city A (0,12328)
 
remove 0 12329
>> Removing city A (0,12329)
 
remove 0 12330
>> Removing city A (0,12330)
 
remove 0 12331
>> Removing city A (0,12331)
 
remove 0 12332
>> Removing city A (0,12332)
 
remove 0 12333
>> Removing city A (0,12333)
 
remove 0 12334
>> Removing city A (0,12334)
 
remove 0 12335
>> Removing city A (0,12335)
 
remove 0 12336
>> Removing city A (0,12336)
 
remove 0 12337
>> Removing city A (0,12337)
 
remove 0 12338
>> Removing city A (0,12338)
 
remove 0 12339
>> Removing city A (0,12339)
 
remove 0 12340
>> Removing city A (0,12340)
 
remove 0 12341
>> Removing city A (0,12341)
 
remove 0 12342
>> Removing city A (0,12342)
 
remove 0 12343
>> Removing city A (0,12343)
 
remove 0 12344
>> Removing city A (0,12344)
 
remove 0 12345
>> Removing city A (0,12345)
 
remove 0 12346
>> Removing city A (0,12346)
 
remove 0 12347
>> Removing city A (0,12347)
 
remove 0 12348
>> Removing city A (0,12348)
 
remove 0 12349
>> Removing city A (0,12349)
 
remove 0 12350
>> Removing city A (0,12350)
 
remove 0 12351
>> Removing city A (0,12351)
 
remove 0 12352
>> Removing city A (0,12352)
 
remove 0 12353
>> Removing city A (0,12353)
 
remove 0 12354
>> Removing city A (0,12354)
 
remove 0 12355
>> Removing city A (0,12355)
 
remove 0 12356
>> Removing city A (0,12356)
 
remove 0 12357
>> Removing city A (0,12357)
 
remove 0 12358
>> Removing city A (0,12358)
 
remove 0 12359
>> Removing city A (0,12359)
 
remove 0 12360
>> Removing city A (0,12360)
 
remove 0 12361
>> Removing city A (0,12361)
 
remove 0 12362
>> Removing city A (0,12362)
 
remove 0 12363
>> Removing city A (0,12363)
 
remove 0 12364
>> Removing city A (0,12364)
 
remove 0 12365
>> Removing city A (0,12365)
 
remove 0 12366
>> Removing city A (0,12366)
 
remove 0 12367
>> Removing city A (0,12367)
 
remove 0 12368
>> Removing city A (0,12368)
 
remove 0 12369
>> Removing city A (0,12369)
 
remove 0 12370
>> Removing city A (0,12370)
 
remove 0 12371
>> Removing city A (0,12371)
 
remove 0 12372
>> Removing city A (0,12372)
 
remove 0 12373
>> Removing city A (0,12373)
 
remove 0 12374
>> Removing city A (0,12374)
 
remove 0 12375
>> Removing city A (0,12375)
 
remove 0 12376
>> Removing city A (0,12376)
 
remove 0 12377
>> Removing city A (0,12377)
 
remove 0 12378
>> Removing city A (0,12378)
 
remove 0 12379
>> Removing city A (0,12379)
 
remove 0 12380
>> Removing city A (0,12380)
 
remove 0 12381
>> Removing city A (0,12381)
 
remove 0 12382
>> Removing city A (0,12382)
 
remove 0 12383
>> Removing city A (0,12383)
 
remove 0 12384
>> Removing city A (0,12384)
 
remove 0 12385
>> Removing city A (0,12385)
 
remove 0 12386
>> Removing city A (0,12386)
 
remove 0 12387
>> Removing city A (0,12387)
 
remove 0 12388
>> Removing city A (0,12388)
 
remove 0 12389
>> Removing city A (0,12389)
 
remove 0 12390
>> Removing city A (0,12390)
 
remove 0 12391
>> Removing city A (0,12391)
 
remove 0 12392
>> Removing city A (0,12392)
 
remove 0 12393
>> Removing city A (0,12393)
 
remove 0 12394
>> Removing city A (0,12394)
 
remove 0 12395
>> Removing city A (0,12395)
 
remove 0 12396
>> Removing city A (0,12396)
 
remove 0 12397
>> Removing city A (0,12397)
 
remove 0 12398
>> Removing city A (0,12398)
 
remove 0 12399
>> Removing city A (0,12399)
 
remove 0 12400
>> Removing city A (0,12400)
 
remove 0 12401
>> Removing city A (0,12401)
 
remove 0 12402
>> Removing city A (0,12402)
 
remove 0 12403
>> Removing city A (0,12403)
 
remove 0 12404
>> Removing city A (0,12404)
 
remove 0 12405
>> Removing city A (0,12405)
 
remove 0 12406
>> Removing city A (0,12406)
 
remove 0 12407
>> Removing city A (0,12407)
 
remove 0 12408
>> Removing city A (0,12408)
 
remove 0 12409
>> Removing city A (0,12409)
 
remove 0 12410
>> Removing city A (0,12410)
 
remove 0 12411
>> Removing city A (0,12411)
 
remove 0 12412
>> Removing city A (0,12412)
 
remove 0 12413
>> Removing city A (0,12413)
 
remove 0 12414
>> Removing city A (0,12414)
 
remove 0 12415
>> Removing city A (0,12415)
 
remove 0 12416
>> Removing city A (0,12416)
 
remove 0 12417
>> Removing city A (0,12417)
 
remove 0 12418
>> Removing city A (0,12418)
 
remove 0 12419
>> Removing city A (0,12419)
 
remove 0 12420
>> Removing city A (0,12420)
 
remove 0 12421
>> Removing city A (0,12421)
 
remove 0 12422
>> Removing city A (0,12422)
 
remove 0 12423
>> Removing city A (0,12423)
 
remove 0 12424
>> Removing city A (0,12424)
 
remove 0 12425
>> Removing city A (0,12425)
 
remove 0 12426
>> Removing city A (0,12426)
 
remove 0 12427
>> Removing city A (0,12427)
 
remove 0 12428
>> Removing city A (0,12428)
 
remove 0 12429
>> Removing city A (0,12429)
 
remove 0 12430
>> Removing city A (0,12430)
 
remove 0 12431
>> Removing city A (0,12431)
 
remove 0 12432
>> Removing city A (0,12432)
 
remove 0 12433
>> Removing city A (0,12433)
 
remove 0 12434
>> Removing city A (0,12434)
 
remove 0 12435
>> Removing city A (0,12435)
 
remove 0 12436
>> Removing city A (0,12436)
 
remove 0 12437
>> Removing city A (0,12437)
 
remove 0 12438
>> Removing city A (0,12438)
 
remove 0 12439
>> Removing city A (0,12439)
 
remove 0 12440
>> Removing city A (0,12440)
 
remove 0 12441
>> Removing city A (0,12441)
 
remove 0 12442
>> Removing city A (0,12442)
 
remove 0 12443
>> Removing city A (0,12443)
 
remove 0 12444
>> Removing city A (0,12444)
 
remove 0 12445
>> Removing city A (0,12445)
 
remove 0 12446
>> Removing city A (0,12446)
 
remove 0 12447
>> Removing city A (0,12447)
 
remove 0 12448
>> Removing city A (0,12448)
 
remove 0 12449
>> Removing city A (0,12449)
 
remove 0 12450
>> Removing city A (0,12450)
 
remove 0 12451
>> Removing city A (0,12451)
 
remove 0 12452
>> Removing city A (0,12452)
 
remove 0 12453
>> Removing city A (0,12453)
 
remove 0 12454
>> Removing city A (0,12454)
 
remove 0 12455
>> Removing city A (0,12455)
 
remove 0 12456
>> Removing city A (0,12456)
 
remove 0 12457
>> Removing city A (0,12457)
 
remove 0 12458
>> Removing city A (0,12458)
 
remove 0 12459
>> Removing city A (0,12459)
 
remove 0 12460
>> Removing city A (0,12460)
 
remove 0 12461
>> Removing city A (0,12461)
 
remove 0 12462
>> Removing city A (0,12462)
 
remove 0 12463
>> Removing city A (0,12463)
 
remove 0 12464
>> Removing city A (0,12464)
 
remove 0 12465
>> Removing city A (0,12465)
 
remove 0 12466
>> Removing city A (0,12466)
 
remove 0 12467
>> Removing city A (0,12467)
 
remove 0 12468
>> Removing city A (0,12468)
 
remove 0 12469
>> Removing city A (0,12469)
 
remove 0 12470
>> Removing city A (0,12470)
 
remove 0 12471
>> Removing city A (0,12471)
 
remove 0 12472
>> Removing city A (0,12472)
 
remove 0 12473
>> Removing city A (0,12473)
 
remove 0 12474
>> Removing city A (0,12474)
 
remove 0 12475
>> Removing city A (0,12475)
 
remove 0 12476
>> Removing city A (0,12476)
 
remove 0 12477
>> Removing city A (0,12477)
 
remove 0 12478
>> Removing city A (0,12478)
 
remove 0 12479
>> Removing city A (0,12479)
 
remove 0 12480
>> Removing city A (0,12480)
 
remove 0 12481
>> Removing city A (0,12481)
 
remove 0 12482
>> Removing city A (0,12482)
 
remove 0 12483
>> Removing city A (0,12483)
 
remove 0 12484
>> Removing city A (0,12484)
 
remove 0 12485
>> Removing city A (0,12485)
 
remove 0 12486
>> Removing city A (0,12486)
 
remove 0 12487
>> Removing city A (0,12487)
 
remove 0 12488
>> Removing city A (0,12488)
 
remove 0 12489
>> Removing city A (0,12489)
 
remove 0 12490
>> Removing city A (0,12490)
 
remove 0 12491
>> Removing city A (0,12491)
 
remove 0 12492
>> Removing city A (0,12492)
 
remove 0 12493
>> Removing city A (0,12493)
 
remove 0 12494
>> Removing city A (0,12494)
 
remove 0 12495
>> Removing city A (0,12495)
 
remove 0 12496
>> Removing city A (0,12496)
 
remove 0 12497
>> Removing city A (0,12497)
 
remove 0 12498
>> Removing city A (0,12498)
 
remove 0 12499
>> Removing city A (0,12499)
 
remove 0 12500
>> Removing city A (0,12500)
 
remove 0 12501
>> Removing city A (0,12501)
 
remove 0 12502
>> Removing city A (0,12502)
 
remove 0 12503
>> Removing city A (0,12503)
 
remove 0 12504
>> Removing city A (0,12504)
 
remove 0 12505
>> Removing city A (0,12505)
 
remove 0 12506
>> Removing city A (0,12506)
 
remove 0 12507
>> Removing city A (0,12507)
 
remove 0 12508
>> Removing city A (0,12508)
 
remove 0 12509
>> Removing city A (0,12509)
 
remove 0 12510
>> Removing city A (0,12510)
 
remove 0 12511
>> Removing city A (0,12511)
 
remove 0 12512
>> Removing city A (0,12512)
 
remove 0 12513
>> Removing city A (0,12513)
 
remove 0 12514
>> Removing city A (0,12514)
 
remove 0 12515
>> Removing city A (0,12515)
 
remove 0 12516
>> Removing city A (0,12516)
 
remove 0 12517
>> Removing city A (0,12517)
 
remove 0 12518
>> Removing city A (0,12518)
 
remove 0 12519
>> Removing city A (0,12519)
 
remove 0 12520
>> Removing city A (0,12520)
 
remove 0 12521
>> Removing city A (0,12521)
 
remove 0 12522
>> Removing city A (0,12522)
 
remove 0 12523
>> Removing city A (0,12523)
 
remove 0 12524
>> Removing city A (0,12524)
 
remove 0 12525
>> Removing city A (0,12525)
 
remove 0 12526
>> Removing city A (0,12526)
 
remove 0 12527
>> Removing city A (0,12527)
 
remove 0 12528
>> Removing city A (0,12528)
 
remove 0 12529
>> Removing city A (0,12529)
 
remove 0 12530
>> Removing city A (0,12530)
 
remove 0 12531
>> Removing city A (0,12531)
 
remove 0 12532
>> Removing city A (0,12532)
 
remove 0 12533
>> Removing city A (0,12533)
 
remove 0 12534
>> Removing city A (0,12534)
 
remove 0 12535
>> Removing city A (0,12535)
 
remove 0 12536
>> Removing city A (0,12536)
 
remove 0 12537
>> Removing city A (0,12537)
 
remove 0 12538
>> Removing city A (0,12538)
 
remove 0 12539
>> Removing city A (0,12539)
 
remove 0 12540
>> Removing city A (0,12540)
 
remove 0 12541
>> Removing city A (0,12541)
 
remove 0 12542
>> Removing city A (0,12542)
 
remove 0 12543
>> Removing city A (0,12543)
 
remove 0 12544
>> Removing city A (0,12544)
 
remove 0 12545
>> Removing city A (0,12545)
 
remove 0 12546
>> Removing city A (0,12546)
 
remove 0 12547
>> Removing city A (0,12547)
 
remove 0 12548
>> Removing city A (0,12548)
 
remove 0 12549
>> Removing city A (0,12549)
 
remove 0 12550
>> Removing city A (0,12550)
 
remove 0 12551
>> Removing city A (0,12551)
 
remove 0 12552
>> Removing city A (0,12552)
 
remove 0 12553
>> Removing city A (0,12553)
 
remove 0 12554
>> Removing city A (0,12554)
 
remove 0 12555
>> Removing city A (0,12555)
 
remove 0 12556
>> Removing city A (0,12556)
 
remove 0 12557
>> Removing city A (0,12557)
 
remove 0 12558
>> Removing city A (0,12558)
 
remove 0 12559
>> Removing city A (0,12559)
 
remove 0 12560
>> Removing city A (0,12560)
 
remove 0 12561
>> Removing city A (0,12561)
 
remove 0 12562
>> Removing city A (0,12562)
 
remove 0 12563
>> Removing city A (0,12563)
 
remove 0 12564
>> Removing city A (0,12564)
 
remove 0 12565
>> Removing city A (0,12565)
 
remove 0 12566
>> Removing city A (0,12566)
 
remove 0 12567
>> Removing city A (0,12567)
 
remove 0 12568
>> Removing city A (0,12568)
 
remove 0 12569
>> Removing city A (0,12569)
 
remove 0 12570
>> Removing city A (0,12570)
 
remove 0 12571
>> Removing city A (0,12571)
 
remove 0 12572
>> Removing city A (0,12572)
 
remove 0 12573
>> Removing city A (0,12573)
 
remove 0 12574
>> Removing city A (0,12574)
 
remove 0 12575
>> Removing city A (0,12575)
 
remove 0 12576
>> Removing city A (0,12576)
 
remove 0 12577
>> Removing city A (0,12577)
 
remove 0 12578
>> Removing city A (0,12578)
 
remove 0 12579
>> Removing city A (0,12579)
 
remove 0 12580
>> Removing city A (0,12580)
 
remove 0 12581
>> Removing city A (0,12581)
 
remove 0 12582
>> Removing city A (0,12582)
 
remove 0 12583
>> Removing city A (0,12583)
 
remove 0 12584
>> Removing city A (0,12584)
 
remove 0 12585
>> Removing city A (0,12585)
 
remove 0 12586
>> Removing city A (0,12586)
 
remove 0 12587
>> Removing city A (0,12587)
 
remove 0 12588
>> Removing city A (0,12588)
 
remove 0 12589
>> Removing city A (0,12589)
 
remove 0 12590
>> Removing city A (0,12590)
 
remove 0 12591
>> Removing city A (0,12591)
 
remove 0 12592
>> Removing city A (0,12592)
 
remove 0 12593
>> Removing city A (0,12593)
 
remove 0 12594
>> Removing city A (0,12594)
 
remove 0 12595
>> Removing city A (0,12595)
 
remove 0 12596
>> Removing city A (0,12596)
 
remove 0 12597
>> Removing city A (0,12597)
 
remove 0 12598
>> Removing city A (0,12598)
 
remove 0 12599
>> Removing city A (0,12599)
 
remove 0 12600
>> Removing city A (0,12600)
 
remove 0 12601
>> Removing city A (0,12601)
 
remove 0 12602
>> Removing city A (0,12602)
 
remove 0 12603
>> Removing city A (0,12603)
 
remove 0 12604
>> Removing city A (0,12604)
 
remove 0 12605
>> Removing city A (0,12605)
 
remove 0 12606
>> Removing city A (0,12606)
 
remove 0 12607
>> Removing city A (0,12607)
 
remove 0 12608
>> Removing city A (0,12608)
 
remove 0 12609
>> Removing city A (0,12609)
 
remove 0 12610
>> Removing city A (0,12610)
 
remove 0 12611
>> Removing city A (0,12611)
 
remove 0 12612
>> Removing city A (0,12612)
 
remove 0 12613
>> Removing city A (0,12613)
 
remove 0 12614
>> Removing city A (0,12614)
 
remove 0 12615
>> Removing city A (0,12615)
 
remove 0 12616
>> Removing city A (0,12616)
 
remove 0 12617
>> Removing city A (0,12617)
 
remove 0 12618
>> Removing city A (0,12618)
 
remove 0 12619
>> Removing city A (0,12619)
 
remove 0 12620
>> Removing city A (0,12620)
 
remove 0 12621
>> Removing city A (0,12621)
 
remove 0 12622
>> Removing city A (0,12622)
 
remove 0 12623
>> Removing city A (0,12623)
 
remove 0 12624
>> Removing city A (0,12624)
 
remove 0 12625
>> Removing city A (0,12625)
 
remove 0 12626
>> Removing city A (0,12626)
 
remove 0 12627
>> Removing city A (0,12627)
 
remove 0 12628
>> Removing city A (0,12628)
 
remove 0 12629
>> Removing city A (0,12629)
 
remove 0 12630
>> Removing city A (0,12630)
 
remove 0 12631
>> Removing city A (0,12631)
 
remove 0 12632
>> Removing city A (0,12632)
 
remove 0 12633
>> Removing city A (0,12633)
 
remove 0 12634
>> Removing city A (0,12634)
 
remove 0 12635
>> Removing city A (0,12635)
 
remove 0 12636
>> Removing city A (0,12636)
 
remove 0 12637
>> Removing city A (0,12637)
 
remove 0 12638
>> Removing city A (0,12638)
 
remove 0 12639
>> Removing city A (0,12639)
 
remove 0 12640
>> Removing city A (0,12640)
 
remove 0 12641
>> Removing city A (0,12641)
 
remove 0 12642
>> Removing city A (0,12642)
 
remove 0 12643
>> Removing city A (0,12643)
 
remove 0 12644
>> Removing city A (0,12644)
 
remove 0 12645
>> Removing city A (0,12645)
 
remove 0 12646
>> Removing city A (0,12646)
 
remove 0 12647
>> Removing city A (0,12647)
 
remove 0 12648
>> Removing city A (0,12648)
 
remove 0 12649
>> Removing city A (0,12649)
 
remove 0 12650
>> Removing city A (0,12650)
 
remove 0 12651
>> Removing city A (0,12651)
 
remove 0 12652
>> Removing city A (0,12652)
 
remove 0 12653
>> Removing city A (0,12653)
 
remove 0 12654
>> Removing city A (0,12654)
 
remove 0 12655
>> Removing city A (0,12655)
 
remove 0 12656
>> Removing city A (0,12656)
 
remove 0 12657
>> Removing city A (0,12657)
 
remove 0 12658
>> Removing city A (0,12658)
 
remove 0 12659
>> Removing city A (0,12659)
 
remove 0 12660
>> Removing city A (0,12660)
 
remove 0 12661
>> Removing city A (0,12661)
 
remove 0 12662
>> Removing city A (0,12662)
 
remove 0 12663
>> Removing city A (0,12663)
 
remove 0 12664
>> Removing city A (0,12664)
 
remove 0 12665
>> Removing city A (0,12665)
 
remove 0 12666
>> Removing city A (0,12666)
 
remove 0 12667
>> Removing city A (0,12667)
 
remove 0 12668
>> Removing city A (0,12668)
 
remove 0 12669
>> Removing city A (0,12669)
 
remove 0 12670
>> Removing city A (0,12670)
 
remove 0 12671
>> Removing city A (0,12671)
 
remove 0 12672
>> Removing city A (0,12672)
 
remove 0 12673
>> Removing city A (0,12673)
 
remove 0 12674
>> Removing city A (0,12674)
 
remove 0 12675
>> Removing city A (0,12675)
 
remove 0 12676
>> Removing city A (0,12676)
 
remove 0 12677
>> Removing city A (0,12677)
 
remove 0 12678
>> Removing city A (0,12678)
 
remove 0 12679
>> Removing city A (0,12679)
 
remove 0 12680
>> Removing city A (0,12680)
 
remove 0 12681
>> Removing city A (0,12681)
 
remove 0 12682
>> Removing city A (0,12682)
 
remove 0 12683
>> Removing city A (0,12683)
 
remove 0 12684
>> Removing city A (0,12684)
 
remove 0 12685
>> Removing city A (0,12685)
 
remove 0 12686
>> Removing city A (0,12686)
 
remove 0 12687
>> Removing city A (0,12687)
 
remove 0 12688
>> Removing city A (0,12688)
 
remove 0 12689
>> Removing city A (0,12689)
 
remove 0 12690
>> Removing city A (0,12690)
 
remove 0 12691
>> Removing city A (0,12691)
 
remove 0 12692
>> Removing city A (0,12692)
 
remove 0 12693
>> Removing city A (0,12693)
 
remove 0 12694
>> Removing city A (0,12694)
 
remove 0 12695
>> Removing city A (0,12695)
 
remove 0 12696
>> Removing city A (0,12696)
 
remove 0 12697
>> Removing city A (0,12697)
 
remove 0 12698
>> Removing city A (0,12698)
 
remove 0 12699
>> Removing city A (0,12699)
 
remove 0 12700
>> Removing city A (0,12700)
 
remove 0 12701
>> Removing city A (0,12701)
 
remove 0 12702
>> Removing city A (0,12702)
 
remove 0 12703
>> Removing city A (0,12703)
 
remove 0 12704
>> Removing city A (0,12704)
 
remove 0 12705
>> Removing city A (0,12705)
 
remove 0 12706
>> Removing city A (0,12706)
 
remove 0 12707
>> Removing city A (0,12707)
 
remove 0 12708
>> Removing city A (0,12708)
 
remove 0 12709
>> Removing city A (0,12709)
 
remove 0 12710
>> Removing city A (0,12710)
 
remove 0 12711
>> Removing city A (0,12711)
 
remove 0 12712
>> Removing city A (0,12712)
 
remove 0 12713
>> Removing city A (0,12713)
 
remove 0 12714
>> Removing city A (0,12714)
 
remove 0 12715
>> Removing city A (0,12715)
 
remove 0 12716
>> Removing city A (0,12716)
 
remove 0 12717
>> Removing city A (0,12717)
 
remove 0 12718
>> Removing city A (0,12718)
 
remove 0 12719
>> Removing city A (0,12719)
 
remove 0 12720
>> Removing city A (0,12720)
 
remove 0 12721
>> Removing city A (0,12721)
 
remove 0 12722
>> Removing city A (0,12722)
 
remove 0 12723
>> Removing city A (0,12723)
 
remove 0 12724
>> Removing city A (0,12724)
 
remove 0 12725
>> Removing city A (0,12725)
 
remove 0 12726
>> Removing city A (0,12726)
 
remove 0 12727
>> Removing city A (0,12727)
 
remove 0 12728
>> Removing city A (0,12728)
 
remove 0 12729
>> Removing city A (0,12729)
 
remove 0 12730
>> Removing city A (0,12730)
 
remove 0 12731
>> Removing city A (0,12731)
 
remove 0 12732
>> Removing city A (0,12732)
 
remove 0 12733
>> Removing city A (0,12733)
 
remove 0 12734
>> Removing city A (0,12734)
 
remove 0 12735
>> Removing city A (0,12735)
 
remove 0 12736
>> Removing city A (0,12736)
 
remove 0 12737
>> Removing city A (0,12737)
 
remove 0 12738
>> Removing city A (0,12738)
 
remove 0 12739
>> Removing city A (0,12739)
 
remove 0 12740
>> Removing city A (0,12740)
 
remove 0 12741
>> Removing city A (0,12741)
 
remove 0 12742
>> Removing city A (0,12742)
 
remove 0 12743
>> Removing city A (0,12743)
 
remove 0 12744
>> Removing city A (0,12744)
 
remove 0 12745
>> Removing city A (0,12745)
 
remove 0 12746
>> Removing city A (0,12746)
 
remove 0 12747
>> Removing city A (0,12747)
 
remove 0 12748
>> Removing city A (0,12748)
 
remove 0 12749
>> Removing city A (0,12749)
 
remove 0 12750
>> Removing city A (0,12750)
 
remove 0 12751
>> Removing city A (0,12751)
 
remove 0 12752
>> Removing city A (0,12752)
 
remove 0 12753
>> Removing city A (0,12753)
 
remove 0 12754
>> Removing city A (0,12754)
 
remove 0 12755
>> Removing city A (0,12755)
 
remove 0 12756
>> Removing city A (0,12756)
 
remove 0 12757
>> Removing city A (0,12757)
 
remove 0 12758
>> Removing city A (0,12758)
 
remove 0 12759
>> Removing city A (0,12759)
 
remove 0 12760
>> Removing city A (0,12760)
 
remove 0 12761
>> Removing city A (0,12761)
 
remove 0 12762
>> Removing city A (0,12762)
 
remove 0 12763
>> Removing city A (0,12763)
 
remove 0 12764
>> Removing city A (0,12764)
 
remove 0 12765
>> Removing city A (0,12765)
 
remove 0 12766
>> Removing city A (0,12766)
 
remove 0 12767
>> Removing city A (0,12767)
 
remove 0 12768
>> Removing city A (0,12768)
 
remove 0 12769
>> Removing city A (0,12769)
 
remove 0 12770
>> Removing city A (0,12770)
 
remove 0 12771
>> Removing city A (0,12771)
 
remove 0 12772
>> Removing city A (0,12772)
 
remove 0 12773
>> Removing city A (0,12773)
 
remove 0 12774
>> Removing city A (0,12774)
 
remove 0 12775
>> Removing city A (0,12775)
 
remove 0 12776
>> Removing city A (0,12776)
 
remove 0 12777
>> Removing city A (0,12777)
 
remove 0 12778
>> Removing city A (0,12778)
 
remove 0 12779
>> Removing city A (0,12779)
 
remove 0 12780
>> Removing city A (0,12780)
 
remove 0 12781
>> Removing city A (0,12781)
 
remove 0 12782
>> Removing city A (0,12782)
 
remove 0 12783
>> Removing city A (0,12783)
 
remove 0 12784
>> Removing city A (0,12784)
 
remove 0 12785
>> Removing city A (0,12785)
 
remove 0 12786
>> Removing city A (0,12786)
 
remove 0 12787
>> Removing city A (0,12787)
 
remove 0 12788
>> Removing city A (0,12788)
 
remove 0 12789
>> Removing city A (0,12789)
 
remove 0 12790
>> Removing city A (0,12790)
 
remove 0 12791
>> Removing city A (0,12791)
 
remove 0 12792
>> Removing city A (0,12792)
 
remove 0 12793
>> Removing city A (0,12793)
 
remove 0 12794
>> Removing city A (0,12794)
 
remove 0 12795
>> Removing city A (0,12795)
 
remove 0 12796
>> Removing city A (0,12796)
 
remove 0 12797
>> Removing city A (0,12797)
 
remove 0 12798
>> Removing city A (0,12798)
 
remove 0 12799
>> Removing city A (0,12799)
 
remove 0 12800
>> Removing city A (0,12800)
 
remove 0 12801
>> Removing city A (0,12801)
 
remove 0 12802
>> Removing city A (0,12802)
 
remove 0 12803
>> Removing city A (0,12803)
 
remove 0 12804
>> Removing city A (0,12804)
 
remove 0 12805
>> Removing city A (0,12805)
 
remove 0 12806
>> Removing city A (0,12806)
 
remove 0 12807
>> Removing city A (0,12807)
 
remove 0 12808
>> Removing city A (0,12808)
 
remove 0 12809
>> Removing city A (0,12809)
 
remove 0 12810
>> Removing city A (0,12810)
 
remove 0 12811
>> Removing city A (0,12811)
 
remove 0 12812
>> Removing city A (0,12812)
 
remove 0 12813
>> Removing city A (0,12813)
 
remove 0 12814
>> Removing city A (0,12814)
 
remove 0 12815
>> Removing city A (0,12815)
 
remove 0 12816
>> Removing city A (0,12816)
 
remove 0 12817
>> Removing city A (0,12817)
 
remove 0 12818
>> Removing city A (0,12818)
 
remove 0 12819
>> Removing city A (0,12819)
 
remove 0 12820
>> Removing city A (0,12820)
 
remove 0 12821
>> Removing city A (0,12821)
 
remove 0 12822
>> Removing city A (0,12822)
 
remove 0 12823
>> Removing city A (0,12823)
 
remove 0 12824
>> Removing city A (0,12824)
 
remove 0 12825
>> Removing city A (0,12825)
 
remove 0 12826
>> Removing city A (0,12826)
 
remove 0 12827
>> Removing city A (0,12827)
 
remove 0 12828
>> Removing city A (0,12828)
 
remove 0 12829
>> Removing city A (0,12829)
 
remove 0 12830
>> Removing city A (0,12830)
 
remove 0 12831
>> Removing city A (0,12831)
 
remove 0 12832
>> Removing city A (0,12832)
 
remove 0 12833
>> Removing city A (0,12833)
 
remove 0 12834
>> Removing city A (0,12834)
 
remove 0 12835
>> Removing city A (0,12835)
 
remove 0 12836
>> Removing city A (0,12836)
 
remove 0 12837
>> Removing city A (0,12837)
 
remove 0 12838
>> Removing city A (0,12838)
 
remove 0 12839
>> Removing city A (0,12839)
 
remove 0 12840
>> Removing city A (0,12840)
 
remove 0 12841
>> Removing city A (0,12841)
 
remove 0 12842
>> Removing city A (0,12842)
 
remove 0 12843
>> Removing city A (0,12843)
 
remove 0 12844
>> Removing city A (0,12844)
 
remove 0 12845
>> Removing city A (0,12845)
 
remove 0 12846
>> Removing city A (0,12846)
 
remove 0 12847
>> Removing city A (0,12847)
 
remove 0 12848
>> Removing city A (0,12848)
 
remove 0 12849
>> Removing city A (0,12849)
 
remove 0 12850
>> Removing city A (0,12850)
 
remove 0 12851
>> Removing city A (0,12851)
 
remove 0 12852
>> Removing city A (0,12852)
 
remove 0 12853
>> Removing city A (0,12853)
 
remove 0 12854
>> Removing city A (0,12854)
 
remove 0 12855
>> Removing city A (0,12855)
 
remove 0 12856
>> Removing city A (0,12856)
 
remove 0 12857
>> Removing city A (0,12857)
 
remove 0 12858
>> Removing city A (0,12858)
 
remove 0 12859
>> Removing city A (0,12859)
 
remove 0 12860
>> Removing city A (0,12860)
 
remove 0 12861
>> Removing city A (0,12861)
 
remove 0 12862
>> Removing city A (0,12862)
 
remove 0 12863
>> Removing city A (0,12863)
 
remove 0 12864
>> Removing city A (0,12864)
 
remove 0 12865
>> Removing city A (0,12865)
 
remove 0 12866
>> Removing city A (0,12866)
 
remove 0 12867
>> Removing city A (0,12867)
 
remove 0 12868
>> Removing city A (0,12868)
 
remove 0 12869
>> Removing city A (0,12869)
 
remove 0 12870
>> Removing city A (0,12870)
 
remove 0 12871
>> Removing city A (0,12871)
 
remove 0 12872
>> Removing city A (0,12872)
 
remove 0 12873
>> Removing city A (0,12873)
 
remove 0 12874
>> Removing city A (0,12874)
 
remove 0 12875
>> Removing city A (0,12875)
 
remove 0 12876
>> Removing city A (0,12876)
 
remove 0 12877
>> Removing city A (0,12877)
 
remove 0 12878
>> Removing city A (0,12878)
 
remove 0 12879
>> Removing city A (0,12879)
 
remove 0 12880
>> Removing city A (0,12880)
 
remove 0 12881
>> Removing city A (0,12881)
 
remove 0 12882
>> Removing city A (0,12882)
 
remove 0 12883
>> Removing city A (0,12883)
 
remove 0 12884
>> Removing city A (0,12884)
 
remove 0 12885
>> Removing city A (0,12885)
 
remove 0 12886
>> Removing city A (0,12886)
 
remove 0 12887
>> Removing city A (0,12887)
 
remove 0 12888
>> Removing city A (0,12888)
 
remove 0 12889
>> Removing city A (0,12889)
 
remove 0 12890
>> Removing city A (0,12890)
 
remove 0 12891
>> Removing city A (0,12891)
 
remove 0 12892
>> Removing city A (0,12892)
 
remove 0 12893
>> Removing city A (0,12893)
 
remove 0 12894
>> Removing city A (0,12894)
 
remove 0 12895
>> Removing city A (0,12895)
 
remove 0 12896
>> Removing city A (0,12896)
 
remove 0 12897
>> Removing city A (0,12897)
 
remove 0 12898
>> Removing city A (0,12898)
 
remove 0 12899
>> Removing city A (0,12899)
 
remove 0 12900
>> Removing city A (0,12900)
 
remove 0 12901
>> Removing city A (0,12901)
 
remove 0 12902
>> Removing city A (0,12902)
 
remove 0 12903
>> Removing city A (0,12903)
 
remove 0 12904
>> Removing city A (0,12904)
 
remove 0 12905
>> Removing city A (0,12905)
 
remove 0 12906
>> Removing city A (0,12906)
 
remove 0 12907
>> Removing city A (0,12907)
 
remove 0 12908
>> Removing city A (0,12908)
 
remove 0 12909
>> Removing city A (0,12909)
 
remove 0 12910
>> Removing city A (0,12910)
 
remove 0 12911
>> Removing city A (0,12911)
 
remove 0 12912
>> Removing city A (0,12912)
 
remove 0 12913
>> Removing city A (0,12913)
 
remove 0 12914
>> Removing city A (0,12914)
 
remove 0 12915
>> Removing city A (0,12915)
 
remove 0 12916
>> Removing city A (0,12916)
 
remove 0 12917
>> Removing city A (0,12917)
 
remove 0 12918
>> Removing city A (0,12918)
 
remove 0 12919
>> Removing city A (0,12919)
 
remove 0 12920
>> Removing city A (0,12920)
 
remove 0 12921
>> Removing city A (0,12921)
 
remove 0 12922
>> Removing city A (0,12922)
 
remove 0 12923
>> Removing city A (0,12923)
 
remove 0 12924
>> Removing city A (0,12924)
 
remove 0 12925
>> Removing city A (0,12925)
 
remove 0 12926
>> Removing city A (0,12926)
 
remove 0 12927
>> Removing city A (0,12927)
 
remove 0 12928
>> Removing city A (0,12928)
 
remove 0 12929
>> Removing city A (0,12929)
 
remove 0 12930
>> Removing city A (0,12930)
 
remove 0 12931
>> Removing city A (0,12931)
 
remove 0 12932
>> Removing city A (0,12932)
 
remove 0 12933
>> Removing city A (0,12933)
 
remove 0 12934
>> Removing city A (0,12934)
 
remove 0 12935
>> Removing city A (0,12935)
 
remove 0 12936
>> Removing city A (0,12936)
 
remove 0 12937
>> Removing city A (0,12937)
 
remove 0 12938
>> Removing city A (0,12938)
 
remove 0 12939
>> Removing city A (0,12939)
 
remove 0 12940
>> Removing city A (0,12940)
 
remove 0 12941
>> Removing city A (0,12941)
 
remove 0 12942
>> Removing city A (0,12942)
 
remove 0 12943
>> Removing city A (0,12943)
 
remove 0 12944
>> Removing city A (0,12944)
 
remove 0 12945
>> Removing city A (0,12945)
 
remove 0 12946
>> Removing city A (0,12946)
 
remove 0 12947
>> Removing city A (0,12947)
 
remove 0 12948
>> Removing city A (0,12948)
 
remove 0 12949
>> Removing city A (0,12949)
 
remove 0 12950
>> Removing city A (0,12950)
 
remove 0 12951
>> Removing city A (0,12951)
 
remove 0 12952
>> Removing city A (0,12952)
 
remove 0 12953
>> Removing city A (0,12953)
 
remove 0 12954
>> Removing city A (0,12954)
 
remove 0 12955
>> Removing city A (0,12955)
 
remove 0 12956
>> Removing city A (0,12956)
 
remove 0 12957
>> Removing city A (0,12957)
 
remove 0 12958
>> Removing city A (0,12958)
 
remove 0 12959
>> Removing city A (0,12959)
 
remove 0 12960
>> Removing city A (0,12960)
 
remove 0 12961
>> Removing city A (0,12961)
 
remove 0 12962
>> Removing city A (0,12962)
 
remove 0 12963
>> Removing city A (0,12963)
 
remove 0 12964
>> Removing city A (0,12964)
 
remove 0 12965
>> Removing city A (0,12965)
 
remove 0 12966
>> Removing city A (0,12966)
 
remove 0 12967
>> Removing city A (0,12967)
 
remove 0 12968
>> Removing city A (0,12968)
 
remove 0 12969
>> Removing city A (0,12969)
 
remove 0 12970
>> Removing city A (0,12970)
 
remove 0 12971
>> Removing city A (0,12971)
 
remove 0 12972
>> Removing city A (0,12972)
 
remove 0 12973
>> Removing city A (0,12973)
 
remove 0 12974
>> Removing city A (0,12974)
 
remove 0 12975
>> Removing city A (0,12975)
 
remove 0 12976
>> Removing city A (0,12976)
 
remove 0 12977
>> Removing city A (0,12977)
 
remove 0 12978
>> Removing city A (0,12978)
 
remove 0 12979
>> Removing city A (0,12979)
 
remove 0 12980
>> Removing city A (0,12980)
 
remove 0 12981
>> Removing city A (0,12981)
 
remove 0 12982
>> Removing city A (0,12982)
 
remove 0 12983
>> Removing city A (0,12983)
 
remove 0 12984
>> Removing city A (0,12984)
 
remove 0 12985
>> Removing city A (0,12985)
 
remove 0 12986
>> Removing city A (0,12986)
 
remove 0 12987
>> Removing city A (0,12987)
 
remove 0 12988
>> Removing city A (0,12988)
 
remove 0 12989
>> Removing city A (0,12989)
 
remove 0 12990
>> Removing city A (0,12990)
 
remove 0 12991
>> Removing city A (0,12991)
 
remove 0 12992
>> Removing city A (0,12992)
 
remove 0 12993
>> Removing city A (0,12993)
 
remove 0 12994
>> Removing city A (0,12994)
 
remove 0 12995
>> Removing city A (0,12995)
 
remove 0 12996
>> Removing city A (0,12996)
 
remove 0 12997
>> Removing city A (0,12997)
 
remove 0 12998
>> Removing city A (0,12998)
 
remove 0 12999
>> Removing city A (0,12999)
 
remove 0 13000
>> Removing city A (0,13000)
 
remove 0 13001
>> Removing city A (0,13001)
 
remove 0 13002
>> Removing city A (0,13002)
 
remove 0 13003
>> Removing city A (0,13003)
 
remove 0 13004
>> Removing city A (0,13004)
 
remove 0 13005
>> Removing city A (0,13005)
 
remove 0 13006
>> Removing city A (0,13006)
 
remove 0 13007
>> Removing city A (0,13007)
 
remove 0 13008
>> Removing city A (0,13008)
 
remove 0 13009
>> Removing city A (0,13009)
 
remove 0 13010
>> Removing city A (0,13010)
 
remove 0 13011
>> Removing city A (0,13011)
 
remove 0 13012
>> Removing city A (0,13012)
 
remove 0 13013
>> Removing city A (0,13013)
 
remove 0 13014
>> Removing city A (0,13014)
 
remove 0 13015
>> Removing city A (0,13015)
 
remove 0 13016
>> Removing city A (0,13016)
 
remove 0 13017
>> Removing city A (0,13017)
 
remove 0 13018
>> Removing city A (0,13018)
 
remove 0 13019
>> Removing city A (0,13019)
 
remove 0 13020
>> Removing city A (0,13020)
 
remove 0 13021
>> Removing city A (0,13021)
 
remove 0 13022
>> Removing city A (0,13022)
 
remove 0 13023
>> Removing city A (0,13023)
 
remove 0 13024
>> Removing city A (0,13024)
 
remove 0 13025
>> Removing city A (0,13025)
 
remove 0 13026
>> Removing city A (0,13026)
 
remove 0 13027
>> Removing city A (0,13027)
 
remove 0 13028
>> Removing city A (0,13028)
 
remove 0 13029
>> Removing city A (0,13029)
 
remove 0 13030
>> Removing city A (0,13030)
 
remove 0 13031
>> Removing city A (0,13031)
 
remove 0 13032
>> Removing city A (0,13032)
 
remove 0 13033
>> Removing city A (0,13033)
 
remove 0 13034
>> Removing city A (0,13034)
 
remove 0 13035
>> Removing city A (0,13035)
 
remove 0 13036
>> Removing city A (0,13036)
 
remove 0 13037
>> Removing city A (0,13037)
 
remove 0 13038
>> Removing city A (0,13038)
 
remove 0 13039
>> Removing city A (0,13039)
 
remove 0 13040
>> Removing city A (0,13040)
 
remove 0 13041
>> Removing city A (0,13041)
 
remove 0 13042
>> Removing city A (0,13042)
 
remove 0 13043
>> Removing city A (0,13043)
 
remove 0 13044
>> Removing city A (0,13044)
 
remove 0 13045
>> Removing city A (0,13045)
 
remove 0 13046
>> Removing city A (0,13046)
 
remove 0 13047
>> Removing city A (0,13047)
 
remove 0 13048
>> Removing city A (0,13048)
 
remove 0 13049
>> Removing city A (0,13049)
 
remove 0 13050
>> Removing city A (0,13050)
 
remove 0 13051
>> Removing city A (0,13051)
 
remove 0 13052
>> Removing city A (0,13052)
 
remove 0 13053
>> Removing city A (0,13053)
 
remove 0 13054
>> Removing city A (0,13054)
 
remove 0 13055
>> Removing city A (0,13055)
 
remove 0 13056
>> Removing city A (0,13056)
 
remove 0 13057
>> Removing city A (0,13057)
 
remove 0 13058
>> Removing city A (0,13058)
 
remove 0 13059
>> Removing city A (0,13059)
 
remove 0 13060
>> Removing city A (0,13060)
 
remove 0 13061
>> Removing city A (0,13061)
 
remove 0 13062
>> Removing city A (0,13062)
 
remove 0 13063
>> Removing city A (0,13063)
 
remove 0 13064
>> Removing city A (0,13064)
 
remove 0 13065
>> Removing city A (0,13065)
 
remove 0 13066
>> Removing city A (0,13066)
 
remove 0 13067
>> Removing city A (0,13067)
 
remove 0 13068
>> Removing city A (0,13068)
 
remove 0 13069
>> Removing city A (0,13069)
 
remove 0 13070
>> Removing city A (0,13070)
 
remove 0 13071
>> Removing city A (0,13071)
 
remove 0 13072
>> Removing city A (0,13072)
 
remove 0 13073
>> Removing city A (0,13073)
 
remove 0 13074
>> Removing city A (0,13074)
 
remove 0 13075
>> Removing city A (0,13075)
 
remove 0 13076
>> Removing city A (0,13076)
 
remove 0 13077
>> Removing city A (0,13077)
 
remove 0 13078
>> Removing city A (0,13078)
 
remove 0 13079
>> Removing city A (0,13079)
 
remove 0 13080
>> Removing city A (0,13080)
 
remove 0 13081
>> Removing city A (0,13081)
 
remove 0 13082
>> Removing city A (0,13082)
 
remove 0 13083
>> Removing city A (0,13083)
 
remove 0 13084
>> Removing city A (0,13084)
 
remove 0 13085
>> Removing city A (0,13085)
 
remove 0 13086
>> Removing city A (0,13086)
 
remove 0 13087
>> Removing city A (0,13087)
 
remove 0 13088
>> Removing city A (0,13088)
 
remove 0 13089
>> Removing city A (0,13089)
 
remove 0 13090
>> Removing city A (0,13090)
 
remove 0 13091
>> Removing city A (0,13091)
 
remove 0 13092
>> Removing city A (0,13092)
 
remove 0 13093
>> Removing city A (0,13093)
 
remove 0 13094
>> Removing city A (0,13094)
 
remove 0 13095
>> Removing city A (0,13095)
 
remove 0 13096
>> Removing city A (0,13096)
 
remove 0 13097
>> Removing city A (0,13097)
 
remove 0 13098
>> Removing city A (0,13098)
 
remove 0 13099
>> Removing city A (0,13099)
 
remove 0 13100
>> Removing city A (0,13100)
 
remove 0 13101
>> Removing city A (0,13101)
 
remove 0 13102
>> Removing city A (0,13102)
 
remove 0 13103
>> Removing city A (0,13103)
 
remove 0 13104
>> Removing city A (0,13104)
 
remove 0 13105
>> Removing city A (0,13105)
 
remove 0 13106
>> Removing city A (0,13106)
 
remove 0 13107
>> Removing city A (0,13107)
 
remove 0 13108
>> Removing city A (0,13108)
 
remove 0 13109
>> Removing city A (0,13109)
 
remove 0 13110
>> Removing city A (0,13110)
 
remove 0 13111
>> Removing city A (0,13111)
 
remove 0 13112
>> Removing city A (0,13112)
 
remove 0 13113
>> Removing city A (0,13113)
 
remove 0 13114
>> Removing city A (0,13114)
 
remove 0 13115
>> Removing city A (0,13115)
 
remove 0 13116
>> Removing city A (0,13116)
 
remove 0 13117
>> Removing city A (0,13117)
 
remove 0 13118
>> Removing city A (0,13118)
 
remove 0 13119
>> Removing city A (0,13119)
 
remove 0 13120
>> Removing city A (0,13120)
 
remove 0 13121
>> Removing city A (0,13121)
 
remove 0 13122
>> Removing city A (0,13122)
 
remove 0 13123
>> Removing city A (0,13123)
 
remove 0 13124
>> Removing city A (0,13124)
 
remove 0 13125
>> Removing city A (0,13125)
 
remove 0 13126
>> Removing city A (0,13126)
 
remove 0 13127
>> Removing city A (0,13127)
 
remove 0 13128
>> Removing city A (0,13128)
 
remove 0 13129
>> Removing city A (0,13129)
 
remove 0 13130
>> Removing city A (0,13130)
 
remove 0 13131
>> Removing city A (0,13131)
 
remove 0 13132
>> Removing city A (0,13132)
 
remove 0 13133
>> Removing city A (0,13133)
 
remove 0 13134
>> Removing city A (0,13134)
 
remove 0 13135
>> Removing city A (0,13135)
 
remove 0 13136
>> Removing city A (0,13136)
 
remove 0 13137
>> Removing city A (0,13137)
 
remove 0 13138
>> Removing city A (0,13138)
 
remove 0 13139
>> Removing city A (0,13139)
 
remove 0 13140
>> Removing city A (0,13140)
 
remove 0 13141
>> Removing city A (0,13141)
 
remove 0 13142
>> Removing city A (0,13142)
 
remove 0 13143
>> Removing city A (0,13143)
 
remove 0 13144
>> Removing city A (0,13144)
 
remove 0 13145
>> Removing city A (0,13145)
 
remove 0 13146
>> Removing city A (0,13146)
 
remove 0 13147
>> Removing city A (0,13147)
 
remove 0 13148
>> Removing city A (0,13148)
 
remove 0 13149
>> Removing city A (0,13149)
 
remove 0 13150
>> Removing city A (0,13150)
 
remove 0 13151
>> Removing city A (0,13151)
 
remove 0 13152
>> Removing city A (0,13152)
 
remove 0 13153
>> Removing city A (0,13153)
 
remove 0 13154
>> Removing city A (0,13154)
 
remove 0 13155
>> Removing city A (0,13155)
 
remove 0 13156
>> Removing city A (0,13156)
 
remove 0 13157
>> Removing city A (0,13157)
 
remove 0 13158
>> Removing city A (0,13158)
 
remove 0 13159
>> Removing city A (0,13159)
 
remove 0 13160
>> Removing city A (0,13160)
 
remove 0 13161
>> Removing city A (0,13161)
 
remove 0 13162
>> Removing city A (0,13162)
 
remove 0 13163
>> Removing city A (0,13163)
 
remove 0 13164
>> Removing city A (0,13164)
 
remove 0 13165
>> Removing city A (0,13165)
 
remove 0 13166
>> Removing city A (0,13166)
 
remove 0 13167
>> Removing city A (0,13167)
 
remove 0 13168
>> Removing city A (0,13168)
 
remove 0 13169
>> Removing city A (0,13169)
 
remove 0 13170
>> Removing city A (0,13170)
 
remove 0 13171
>> Removing city A (0,13171)
 
remove 0 13172
>> Removing city A (0,13172)
 
remove 0 13173
>> Removing city A (0,13173)
 
remove 0 13174
>> Removing city A (0,13174)
 
remove 0 13175
>> Removing city A (0,13175)
 
remove 0 13176
>> Removing city A (0,13176)
 
remove 0 13177
>> Removing city A (0,13177)
 
remove 0 13178
>> Removing city A (0,13178)
 
remove 0 13179
>> Removing city A (0,13179)
 
remove 0 13180
>> Removing city A (0,13180)
 
remove 0 13181
>> Removing city A (0,13181)
 
remove 0 13182
>> Removing city A (0,13182)
 
remove 0 13183
>> Removing city A (0,13183)
 
remove 0 13184
>> Removing city A (0,13184)
 
remove 0 13185
>> Removing city A (0,13185)
 
remove 0 13186
>> Removing city A (0,13186)
 
remove 0 13187
>> Removing city A (0,13187)
 
remove 0 13188
>> Removing city A (0,13188)
 
remove 0 13189
>> Removing city A (0,13189)
 
remove 0 13190
>> Removing city A (0,13190)
 
remove 0 13191
>> Removing city A (0,13191)
 
remove 0 13192
>> Removing city A (0,13192)
 
remove 0 13193
>> Removing city A (0,13193)
 
remove 0 13194
>> Removing city A (0,13194)
 
remove 0 13195
>> Removing city A (0,13195)
 
remove 0 13196
>> Removing city A (0,13196)
 
remove 0 13197
>> Removing city A (0,13197)
 
remove 0 13198
>> Removing city A (0,13198)
 
remove 0 13199
>> Removing city A (0,13199)
 
remove 0 13200
>> Removing city A (0,13200)
 
remove 0 13201
>> Removing city A (0,13201)
 
remove 0 13202
>> Removing city A (0,13202)
 
remove 0 13203
>> Removing city A (0,13203)
 
remove 0 13204
>> Removing city A (0,13204)
 
remove 0 13205
>> Removing city A (0,13205)
 
remove 0 13206
>> Removing city A (0,13206)
 
remove 0 13207
>> Removing city A (0,13207)
 
remove 0 13208
>> Removing city A (0,13208)
 
remove 0 13209
>> Removing city A (0,13209)
 
remove 0 13210
>> Removing city A (0,13210)
 
remove 0 13211
>> Removing city A (0,13211)
 
remove 0 13212
>> Removing city A (0,13212)
 
remove 0 13213
>> Removing city A (0,13213)
 
remove 0 13214
>> Removing city A (0,13214)
 
remove 0 13215
>> Removing city A (0,13215)
 
remove 0 13216
>> Removing city A (0,13216)
 
remove 0 13217
>> Removing city A (0,13217)
 
remove 0 13218
>> Removing city A (0,13218)
 
remove 0 13219
>> Removing city A (0,13219)
 
remove 0 13220
>> Removing city A (0,13220)
 
remove 0 13221
>> Removing city A (0,13221)
 
remove 0 13222
>> Removing city A (0,13222)
 
remove 0 13223
>> Removing city A (0,13223)
 
remove 0 13224
>> Removing city A (0,13224)
 
remove 0 13225
>> Removing city A (0,13225)
 
remove 0 13226
>> Removing city A (0,13226)
 
remove 0 13227
>> Removing city A (0,13227)
 
remove 0 13228
>> Removing city A (0,13228)
 
remove 0 13229
>> Removing city A (0,13229)
 
remove 0 13230
>> Removing city A (0,13230)
 
remove 0 13231
>> Removing city A (0,13231)
 
remove 0 13232
>> Removing city A (0,13232)
 
remove 0 13233
>> Removing city A (0,13233)
 
remove 0 13234
>> Removing city A (0,13234)
 
remove 0 13235
>> Removing city A (0,13235)
 
remove 0 13236
>> Removing city A (0,13236)
 
remove 0 13237
>> Removing city A (0,13237)
 
remove 0 13238
>> Removing city A (0,13238)
 
remove 0 13239
>> Removing city A (0,13239)
 
remove 0 13240
>> Removing city A (0,13240)
 
remove 0 13241
>> Removing city A (0,13241)
 
remove 0 13242
>> Removing city A (0,13242)
 
remove 0 13243
>> Removing city A (0,13243)
 
remove 0 13244
>> Removing city A (0,13244)
 
remove 0 13245
>> Removing city A (0,13245)
 
remove 0 13246
>> Removing city A (0,13246)
 
remove 0 13247
>> Removing city A (0,13247)
 
remove 0 13248
>> Removing city A (0,13248)
 
remove 0 13249
>> Removing city A (0,13249)
 
remove 0 13250
>> Removing city A (0,13250)
 
remove 0 13251
>> Removing city A (0,13251)
 
remove 0 13252
>> Removing city A (0,13252)
 
remove 0 13253
>> Removing city A (0,13253)
 
remove 0 13254
>> Removing city A (0,13254)
 
remove 0 13255
>> Removing city A (0,13255)
 
remove 0 13256
>> Removing city A (0,13256)
 
remove 0 13257
>> Removing city A (0,13257)
 
remove 0 13258
>> Removing city A (0,13258)
 
remove 0 13259
>> Removing city A (0,13259)
 
remove 0 13260
>> Removing city A (0,13260)
 
remove 0 13261
>> Removing city A (0,13261)
 
remove 0 13262
>> Removing city A (0,13262)
 
remove 0 13263
>> Removing city A (0,13263)
 
remove 0 13264
>> Removing city A (0,13264)
 
remove 0 13265
>> Removing city A (0,13265)
 
remove 0 13266
>> Removing city A (0,13266)
 
remove 0 13267
>> Removing city A (0,13267)
 
remove 0 13268
>> Removing city A (0,13268)
 
remove 0 13269
>> Removing city A (0,13269)
 
remove 0 13270
>> Removing city A (0,13270)
 
remove 0 13271
>> Removing city A (0,13271)
 
remove 0 13272
>> Removing city A (0,13272)
 
remove 0 13273
>> Removing city A (0,13273)
 
remove 0 13274
>> Removing city A (0,13274)
 
remove 0 13275
>> Removing city A (0,13275)
 
remove 0 13276
>> Removing city A (0,13276)
 
remove 0 13277
>> Removing city A (0,13277)
 
remove 0 13278
>> Removing city A (0,13278)
 
remove 0 13279
>> Removing city A (0,13279)
 
remove 0 13280
>> Removing city A (0,13280)
 
remove 0 13281
>> Removing city A (0,13281)
 
remove 0 13282
>> Removing city A (0,13282)
 
remove 0 13283
>> Removing city A (0,13283)
 
remove 0 13284
>> Removing city A (0,13284)
 
remove 0 13285
>> Removing city A (0,13285)
 
remove 0 13286
>> Removing city A (0,13286)
 
remove 0 13287
>> Removing city A (0,13287)
 
remove 0 13288
>> Removing city A (0,13288)
 
remove 0 13289
>> Removing city A (0,13289)
 
remove 0 13290
>> Removing city A (0,13290)
 
remove 0 13291
>> Removing city A (0,13291)
 
remove 0 13292
>> Removing city A (0,13292)
 
remove 0 13293
>> Removing city A (0,13293)
 
remove 0 13294
>> Removing city A (0,13294)
 
remove 0 13295
>> Removing city A (0,13295)
 
remove 0 13296
>> Removing city A (0,13296)
 
remove 0 13297
>> Removing city A (0,13297)
 
remove 0 13298
>> Removing city A (0,13298)
 
remove 0 13299
>> Removing city A (0,13299)
 
remove 0 13300
>> Removing city A (0,13300)
 
remove 0 13301
>> Removing city A (0,13301)
 
remove 0 13302
>> Removing city A (0,13302)
 
remove 0 13303
>> Removing city A (0,13303)
 
remove 0 13304
>> Removing city A (0,13304)
 
remove 0 13305
>> Removing city A (0,13305)
 
remove 0 13306
>> Removing city A (0,13306)
 
remove 0 13307
>> Removing city A (0,13307)
 
remove 0 13308
>> Removing city A (0,13308)
 
remove 0 13309
>> Removing city A (0,13309)
 
remove 0 13310
>> Removing city A (0,13310)
 
remove 0 13311
>> Removing city A (0,13311)
 
remove 0 13312
>> Removing city A (0,13312)
 
remove 0 13313
>> Removing city A (0,13313)
 
remove 0 13314
>> Removing city A (0,13314)
 
remove 0 13315
>> Removing city A (0,13315)
 
remove 0 13316
>> Removing city A (0,13316)
 
remove 0 13317
>> Removing city A (0,13317)
 
remove 0 13318
>> Removing city A (0,13318)
 
remove 0 13319
>> Removing city A (0,13319)
 
remove 0 13320
>> Removing city A (0,13320)
 
remove 0 13321
>> Removing city A (0,13321)
 
remove 0 13322
>> Removing city A (0,13322)
 
remove 0 13323
>> Removing city A (0,13323)
 
remove 0 13324
>> Removing city A (0,13324)
 
remove 0 13325
>> Removing city A (0,13325)
 
remove 0 13326
>> Removing city A (0,13326)
 
remove 0 13327
>> Removing city A (0,13327)
 
remove 0 13328
>> Removing city A (0,13328)
 
remove 0 13329
>> Removing city A (0,13329)
 
remove 0 13330
>> Removing city A (0,13330)
 
remove 0 13331
>> Removing city A (0,13331)
 
remove 0 13332
>> Removing city A (0,13332)
 
remove 0 13333
>> Removing city A (0,13333)
 
remove 0 13334
>> Removing city A (0,13334)
 
remove 0 13335
>> Removing city A (0,13335)
 
remove 0 13336
>> Removing city A (0,13336)
 
remove 0 13337
>> Removing city A (0,13337)
 
remove 0 13338
>> Removing city A (0,13338)
 
remove 0 13339
>> Removing city A (0,13339)
 
remove 0 13340
>> Removing city A (0,13340)
 
remove 0 13341
>> Removing city A (0,13341)
 
remove 0 13342
>> Removing city A (0,13342)
 
remove 0 13343
>> Removing city A (0,13343)
 
remove 0 13344
>> Removing city A (0,13344)
 
remove 0 13345
>> Removing city A (0,13345)
 
remove 0 13346
>> Removing city A (0,13346)
 
remove 0 13347
>> Removing city A (0,13347)
 
remove 0 13348
>> Removing city A (0,13348)
 
remove 0 13349
>> Removing city A (0,13349)
 
remove 0 13350
>> Removing city A (0,13350)
 
remove 0 13351
>> Removing city A (0,13351)
 
remove 0 13352
>> Removing city A (0,13352)
 
remove 0 13353
>> Removing city A (0,13353)
 
remove 0 13354
>> Removing city A (0,13354)
 
remove 0 13355
>> Removing city A (0,13355)
 
remove 0 13356
>> Removing city A (0,13356)
 
remove 0 13357
>> Removing city A (0,13357)
 
remove 0 13358
>> Removing city A (0,13358)
 
remove 0 13359
>> Removing city A (0,13359)
 
remove 0 13360
>> Removing city A (0,13360)
 
remove 0 13361
>> Removing city A (0,13361)
 
remove 0 13362
>> Removing city A (0,13362)
 
remove 0 13363
>> Removing city A (0,13363)
 
remove 0 13364
>> Removing city A (0,13364)
 
remove 0 13365
>> Removing city A (0,13365)
 
remove 0 13366
>> Removing city A (0,13366)
 
remove 0 13367
>> Removing city A (0,13367)
 
remove 0 13368
>> Removing city A (0,13368)
 
remove 0 13369
>> Removing city A (0,13369)
 
remove 0 13370
>> Removing city A (0,13370)
 
remove 0 13371
>> Removing city A (0,13371)
 
remove 0 13372
>> Removing city A (0,13372)
 
remove 0 13373
>> Removing city A (0,13373)
 
remove 0 13374
>> Removing city A (0,13374)
 
remove 0 13375
>> Removing city A (0,13375)
 
remove 0 13376
>> Removing city A (0,13376)
 
remove 0 13377
>> Removing city A (0,13377)
 
remove 0 13378
>> Removing city A (0,13378)
 
remove 0 13379
>> Removing city A (0,13379)
 
remove 0 13380
>> Removing city A (0,13380)
 
remove 0 13381
>> Removing city A (0,13381)
 
remove 0 13382
>> Removing city A (0,13382)
 
remove 0 13383
>> Removing city A (0,13383)
 
remove 0 13384
>> Removing city A (0,13384)
 
remove 0 13385
>> Removing city A (0,13385)
 
remove 0 13386
>> Removing city A (0,13386)
 
remove 0 13387
>> Removing city A (0,13387)
 
remove 0 13388
>> Removing city A (0,13388)
 
remove 0 13389
>> Removing city A (0,13389)
 
remove 0 13390
>> Removing city A (0,13390)
 
remove 0 13391
>> Removing city A (0,13391)
 
remove 0 13392
>> Removing city A (0,13392)
 
remove 0 13393
>> Removing city A (0,13393)
 
remove 0 13394
>> Removing city A (0,13394)
 
remove 0 13395
>> Removing city A (0,13395)
 
remove 0 13396
>> Removing city A (0,13396)
 
remove 0 13397
>> Removing city A (0,13397)
 
remove 0 13398
>> Removing city A (0,13398)
 
remove 0 13399
>> Removing city A (0,13399)
 
remove 0 13400
>> Removing city A (0,13400)
 
remove 0 13401
>> Removing city A (0,13401)
 
remove 0 13402
>> Removing city A (0,13402)
 
remove 0 13403
>> Removing city A (0,13403)
 
remove 0 13404
>> Removing city A (0,13404)
 
remove 0 13405
>> Removing city A (0,13405)
 
remove 0 13406
>> Removing city A (0,13406)
 
remove 0 13407
>> Removing city A (0,13407)
 
remove 0 13408
>> Removing city A (0,13408)
 
remove 0 13409
>> Removing city A (0,13409)
 
remove 0 13410
>> Removing city A (0,13410)
 
remove 0 13411
>> Removing city A (0,13411)
 
remove 0 13412
>> Removing city A (0,13412)
 
remove 0 13413
>> Removing city A (0,13413)
 
remove 0 13414
>> Removing city A (0,13414)
 
remove 0 13415
>> Removing city A (0,13415)
 
remove 0 13416
>> Removing city A (0,13416)
 
remove 0 13417
>> Removing city A (0,13417)
 
remove 0 13418
>> Removing city A (0,13418)
 
remove 0 13419
>> Removing city A (0,13419)
 
remove 0 13420
>> Removing city A (0,13420)
 
remove 0 13421
>> Removing city A (0,13421)
 
remove 0 13422
>> Removing city A (0,13422)
 
remove 0 13423
>> Removing city A (0,13423)
 
remove 0 13424
>> Removing city A (0,13424)
 
remove 0 13425
>> Removing city A (0,13425)
 
remove 0 13426
>> Removing city A (0,13426)
 
remove 0 13427
>> Removing city A (0,13427)
 
remove 0 13428
>> Removing city A (0,13428)
 
remove 0 13429
>> Removing city A (0,13429)
 
remove 0 13430
>> Removing city A (0,13430)
 
remove 0 13431
>> Removing city A (0,13431)
 
remove 0 13432
>> Removing city A (0,13432)
 
remove 0 13433
>> Removing city A (0,13433)
 
remove 0 13434
>> Removing city A (0,13434)
 
remove 0 13435
>> Removing city A (0,13435)
 
remove 0 13436
>> Removing city A (0,13436)
 
remove 0 13437
>> Removing city A (0,13437)
 
remove 0 13438
>> Removing city A (0,13438)
 
remove 0 13439
>> Removing city A (0,13439)
 
remove 0 13440
>> Removing city A (0,13440)
 
remove 0 13441
>> Removing city A (0,13441)
 
remove 0 13442
>> Removing city A (0,13442)
 
remove 0 13443
>> Removing city A (0,13443)
 
remove 0 13444
>> Removing city A (0,13444)
 
remove 0 13445
>> Removing city A (0,13445)
 
remove 0 13446
>> Removing city A (0,13446)
 
remove 0 13447
>> Removing city A (0,13447)
 
remove 0 13448
>> Removing city A (0,13448)
 
remove 0 13449
>> Removing city A (0,13449)
 
remove 0 13450
>> Removing city A (0,13450)
 
remove 0 13451
>> Removing city A (0,13451)
 
remove 0 13452
>> Removing city A (0,13452)
 
remove 0 13453
>> Removing city A (0,13453)
 
remove 0 13454
>> Removing city A (0,13454)
 
remove 0 13455
>> Removing city A (0,13455)
 
remove 0 13456
>> Removing city A (0,13456)
 
remove 0 13457
>> Removing city A (0,13457)
 
remove 0 13458
>> Removing city A (0,13458)
 
remove 0 13459
>> Removing city A (0,13459)
 
remove 0 13460
>> Removing city A (0,13460)
 
remove 0 13461
>> Removing city A (0,13461)
 
remove 0 13462
>> Removing city A (0,13462)
 
remove 0 13463
>> Removing city A (0,13463)
 
remove 0 13464
>> Removing city A (0,13464)
 
remove 0 13465
>> Removing city A (0,13465)
 
remove 0 13466
>> Removing city A (0,13466)
 
remove 0 13467
>> Removing city A (0,13467)
 
remove 0 13468
>> Removing city A (0,13468)
 
remove 0 13469
>> Removing city A (0,13469)
 
remove 0 13470
>> Removing city A (0,13470)
 
remove 0 13471
>> Removing city A (0,13471)
 
remove 0 13472
>> Removing city A (0,13472)
 
remove 0 13473
>> Removing city A (0,13473)
 
remove 0 13474
>> Removing city A (0,13474)
 
remove 0 13475
>> Removing city A (0,13475)
 
remove 0 13476
>> Removing city A (0,13476)
 
remove 0 13477
>> Removing city A (0,13477)
 
remove 0 13478
>> Removing city A (0,13478)
 
remove 0 13479
>> Removing city A (0,13479)
 
remove 0 13480
>> Removing city A (0,13480)
 
remove 0 13481
>> Removing city A (0,13481)
 
remove 0 13482
>> Removing city A (0,13482)
 
remove 0 13483
>> Removing city A (0,13483)
 
remove 0 13484
>> Removing city A (0,13484)
 
remove 0 13485
>> Removing city A (0,13485)
 
remove 0 13486
>> Removing city A (0,13486)
 
remove 0 13487
>> Removing city A (0,13487)
 
remove 0 13488
>> Removing city A (0,13488)
 
remove 0 13489
>> Removing city A (0,13489)
 
remove 0 13490
>> Removing city A (0,13490)
 
remove 0 13491
>> Removing city A (0,13491)
 
remove 0 13492
>> Removing city A (0,13492)
 
remove 0 13493
>> Removing city A (0,13493)
 
remove 0 13494
>> Removing city A (0,13494)
 
remove 0 13495
>> Removing city A (0,13495)
 
remove 0 13496
>> Removing city A (0,13496)
 
remove 0 13497
>> Removing city A (0,13497)
 
remove 0 13498
>> Removing city A (0,13498)
 
remove 0 13499
>> Removing city A (0,13499)
 
remove 0 13500
>> Removing city A (0,13500)
 
remove 0 13501
>> Removing city A (0,13501)
 
remove 0 13502
>> Removing city A (0,13502)
 
remove 0 13503
>> Removing city A (0,13503)
 
remove 0 13504
>> Removing city A (0,13504)
 
remove 0 13505
>> Removing city A (0,13505)
 
remove 0 13506
>> Removing city A (0,13506)
 
remove 0 13507
>> Removing city A (0,13507)
 
remove 0 13508
>> Removing city A (0,13508)
 
remove 0 13509
>> Removing city A (0,13509)
 
remove 0 13510
>> Removing city A (0,13510)
 
remove 0 13511
>> Removing city A (0,13511)
 
remove 0 13512
>> Removing city A (0,13512)
 
remove 0 13513
>> Removing city A (0,13513)
 
remove 0 13514
>> Removing city A (0,13514)
 
remove 0 13515
>> Removing city A (0,13515)
 
remove 0 13516
>> Removing city A (0,13516)
 
remove 0 13517
>> Removing city A (0,13517)
 
remove 0 13518
>> Removing city A (0,13518)
 
remove 0 13519
>> Removing city A (0,13519)
 
remove 0 13520
>> Removing city A (0,13520)
 
remove 0 13521
>> Removing city A (0,13521)
 
remove 0 13522
>> Removing city A (0,13522)
 
remove 0 13523
>> Removing city A (0,13523)
 
remove 0 13524
>> Removing city A (0,13524)
 
remove 0 13525
>> Removing city A (0,13525)
 
remove 0 13526
>> Removing city A (0,13526)
 
remove 0 13527
>> Removing city A (0,13527)
 
remove 0 13528
>> Removing city A (0,13528)
 
remove 0 13529
>> Removing city A (0,13529)
 
remove 0 13530
>> Removing city A (0,13530)
 
remove 0 13531
>> Removing city A (0,13531)
 
remove 0 13532
>> Removing city A (0,13532)
 
remove 0 13533
>> Removing city A (0,13533)
 
remove 0 13534
>> Removing city A (0,13534)
 
remove 0 13535
>> Removing city A (0,13535)
 
remove 0 13536
>> Removing city A (0,13536)
 
remove 0 13537
>> Removing city A (0,13537)
 
remove 0 13538
>> Removing city A (0,13538)
 
remove 0 13539
>> Removing city A (0,13539)
 
remove 0 13540
>> Removing city A (0,13540)
 
remove 0 13541
>> Removing city A (0,13541)
 
remove 0 13542
>> Removing city A (0,13542)
 
remove 0 13543
>> Removing city A (0,13543)
 
remove 0 13544
>> Removing city A (0,13544)
 
remove 0 13545
>> Removing city A (0,13545)
 
remove 0 13546
>> Removing city A (0,13546)
 
remove 0 13547
>> Removing city A (0,13547)
 
remove 0 13548
>> Removing city A (0,13548)
 
remove 0 13549
>> Removing city A (0,13549)
 
remove 0 13550
>> Removing city A (0,13550)
 
remove 0 13551
>> Removing city A (0,13551)
 
remove 0 13552
>> Removing city A (0,13552)
 
remove 0 13553
>> Removing city A (0,13553)
 
remove 0 13554
>> Removing city A (0,13554)
 
remove 0 13555
>> Removing city A (0,13555)
 
remove 0 13556
>> Removing city A (0,13556)
 
remove 0 13557
>> Removing city A (0,13557)
 
remove 0 13558
>> Removing city A (0,13558)
 
remove 0 13559
>> Removing city A (0,13559)
 
remove 0 13560
>> Removing city A (0,13560)
 
remove 0 13561
>> Removing city A (0,13561)
 
remove 0 13562
>> Removing city A (0,13562)
 
remove 0 13563
>> Removing city A (0,13563)
 
remove 0 13564
>> Removing city A (0,13564)
 
remove 0 13565
>> Removing city A (0,13565)
 
remove 0 13566
>> Removing city A (0,13566)
 
remove 0 13567
>> Removing city A (0,13567)
 
remove 0 13568
>> Removing city A (0,13568)
 
remove 0 13569
>> Removing city A (0,13569)
 
remove 0 13570
>> Removing city A (0,13570)
 
remove 0 13571
>> Removing city A (0,13571)
 
remove 0 13572
>> Removing city A (0,13572)
 
remove 0 13573
>> Removing city A (0,13573)
 
remove 0 13574
>> Removing city A (0,13574)
 
remove 0 13575
>> Removing city A (0,13575)
 
remove 0 13576
>> Removing city A (0,13576)
 
remove 0 13577
>> Removing city A (0,13577)
 
remove 0 13578
>> Removing city A (0,13578)
 
remove 0 13579
>> Removing city A (0,13579)
 
remove 0 13580
>> Removing city A (0,13580)
 
remove 0 13581
>> Removing city A (0,13581)
 
remove 0 13582
>> Removing city A (0,13582)
 
remove 0 13583
>> Removing city A (0,13583)
 
remove 0 13584
>> Removing city A (0,13584)
 
remove 0 13585
>> Removing city A (0,13585)
 
remove 0 13586
>> Removing city A (0,13586)
 
remove 0 13587
>> Removing city A (0,13587)
 
remove 0 13588
>> Removing city A (0,13588)
 
remove 0 13589
>> Removing city A (0,13589)
 
remove 0 13590
>> Removing city A (0,13590)
 
remove 0 13591
>> Removing city A (0,13591)
 
remove 0 13592
>> Removing city A (0,13592)
 
remove 0 13593
>> Removing city A (0,13593)
 
remove 0 13594
>> Removing city A (0,13594)
 
remove 0 13595
>> Removing city A (0,13595)
 
remove 0 13596
>> Removing city A (0,13596)
 
remove 0 13597
>> Removing city A (0,13597)
 
remove 0 13598
>> Removing city A (0,13598)
 
remove 0 13599
>> Removing city A (0,13599)
 
remove 0 13600
>> Removing city A (0,13600)
 
remove 0 13601
>> Removing city A (0,13601)
 
remove 0 13602
>> Removing city A (0,13602)
 
remove 0 13603
>> Removing city A (0,13603)
 
remove 0 13604
>> Removing city A (0,13604)
 
remove 0 13605
>> Removing city A (0,13605)
 
remove 0 13606
>> Removing city A (0,13606)
 
remove 0 13607
>> Removing city A (0,13607)
 
remove 0 13608
>> Removing city A (0,13608)
 
remove 0 13609
>> Removing city A (0,13609)
 
remove 0 13610
>> Removing city A (0,13610)
 
remove 0 13611
>> Removing city A (0,13611)
 
remove 0 13612
>> Removing city A (0,13612)
 
remove 0 13613
>> Removing city A (0,13613)
 
remove 0 13614
>> Removing city A (0,13614)
 
remove 0 13615
>> Removing city A (0,13615)
 
remove 0 13616
>> Removing city A (0,13616)
 
remove 0 13617
>> Removing city A (0,13617)
 
remove 0 13618
>> Removing city A (0,13618)
 
remove 0 13619
>> Removing city A (0,13619)
 
remove 0 13620
>> Removing city A (0,13620)
 
remove 0 13621
>> Removing city A (0,13621)
 
remove 0 13622
>> Removing city A (0,13622)
 
remove 0 13623
>> Removing city A (0,13623)
 
remove 0 13624
>> Removing city A (0,13624)
 
remove 0 13625
>> Removing city A (0,13625)
 
remove 0 13626
>> Removing city A (0,13626)
 
remove 0 13627
>> Removing city A (0,13627)
 
remove 0 13628
>> Removing city A (0,13628)
 
remove 0 13629
>> Removing city A (0,13629)
 
remove 0 13630
>> Removing city A (0,13630)
 
remove 0 13631
>> Removing city A (0,13631)
 
remove 0 13632
>> Removing city A (0,13632)
 
remove 0 13633
>> Removing city A (0,13633)
 
remove 0 13634
>> Removing city A (0,13634)
 
remove 0 13635
>> Removing city A (0,13635)
 
remove 0 13636
>> Removing city A (0,13636)
 
remove 0 13637
>> Removing city A (0,13637)
 
remove 0 13638
>> Removing city A (0,13638)
 
remove 0 13639
>> Removing city A (0,13639)
 
remove 0 13640
>> Removing city A (0,13640)
 
remove 0 13641
>> Removing city A (0,13641)
 
remove 0 13642
>> Removing city A (0,13642)
 
remove 0 13643
>> Removing city A (0,13643)
 
remove 0 13644
>> Removing city A (0,13644)
 
remove 0 13645
>> Removing city A (0,13645)
 
remove 0 13646
>> Removing city A (0,13646)
 
remove 0 13647
>> Removing city A (0,13647)
 
remove 0 13648
>> Removing city A (0,13648)
 
remove 0 13649
>> Removing city A (0,13649)
 
remove 0 13650
>> Removing city A (0,13650)
 
remove 0 13651
>> Removing city A (0,13651)
 
remove 0 13652
>> Removing city A (0,13652)
 
remove 0 13653
>> Removing city A (0,13653)
 
remove 0 13654
>> Removing city A (0,13654)
 
remove 0 13655
>> Removing city A (0,13655)
 
remove 0 13656
>> Removing city A (0,13656)
 
remove 0 13657
>> Removing city A (0,13657)
 
remove 0 13658
>> Removing city A (0,13658)
 
remove 0 13659
>> Removing city A (0,13659)
 
remove 0 13660
>> Removing city A (0,13660)
 
remove 0 13661
>> Removing city A (0,13661)
 
remove 0 13662
>> Removing city A (0,13662)
 
remove 0 13663
>> Removing city A (0,13663)
 
remove 0 13664
>> Removing city A (0,13664)
 
remove 0 13665
>> Removing city A (0,13665)
 
remove 0 13666
>> Removing city A (0,13666)
 
remove 0 13667
>> Removing city A (0,13667)
 
remove 0 13668
>> Removing city A (0,13668)
 
remove 0 13669
>> Removing city A (0,13669)
 
remove 0 13670
>> Removing city A (0,13670)
 
remove 0 13671
>> Removing city A (0,13671)
 
remove 0 13672
>> Removing city A (0,13672)
 
remove 0 13673
>> Removing city A (0,13673)
 
remove 0 13674
>> Removing city A (0,13674)
 
remove 0 13675
>> Removing city A (0,13675)
 
remove 0 13676
>> Removing city A (0,13676)
 
remove 0 13677
>> Removing city A (0,13677)
 
remove 0 13678
>> Removing city A (0,13678)
 
remove 0 13679
>> Removing city A (0,13679)
 
remove 0 13680
>> Removing city A (0,13680)
 
remove 0 13681
>> Removing city A (0,13681)
 
remove 0 13682
>> Removing city A (0,13682)
 
remove 0 13683
>> Removing city A (0,13683)
 
remove 0 13684
>> Removing city A (0,13684)
 
remove 0 13685
>> Removing city A (0,13685)
 
remove 0 13686
>> Removing city A (0,13686)
 
remove 0 13687
>> Removing city A (0,13687)
 
remove 0 13688
>> Removing city A (0,13688)
 
remove 0 13689
>> Removing city A (0,13689)
 
remove 0 13690
>> Removing city A (0,13690)
 
remove 0 13691
>> Removing city A (0,13691)
 
remove 0 13692
>> Removing city A (0,13692)
 
remove 0 13693
>> Removing city A (0,13693)
 
remove 0 13694
>> Removing city A (0,13694)
 
remove 0 13695
>> Removing city A (0,13695)
 
remove 0 13696
>> Removing city A (0,13696)
 
remove 0 13697
>> Removing city A (0,13697)
 
remove 0 13698
>> Removing city A (0,13698)
 
remove 0 13699
>> Removing city A (0,13699)
 
remove 0 13700
>> Removing city A (0,13700)
 
remove 0 13701
>> Removing city A (0,13701)
 
remove 0 13702
>> Removing city A (0,13702)
 
remove 0 13703
>> Removing city A (0,13703)
 
remove 0 13704
>> Removing city A (0,13704)
 
remove 0 13705
>> Removing city A (0,13705)
 
remove 0 13706
>> Removing city A (0,13706)
 
remove 0 13707
>> Removing city A (0,13707)
 
remove 0 13708
>> Removing city A (0,13708)
 
remove 0 13709
>> Removing city A (0,13709)
 
remove 0 13710
>> Removing city A (0,13710)
 
remove 0 13711
>> Removing city A (0,13711)
 
remove 0 13712
>> Removing city A (0,13712)
 
remove 0 13713
>> Removing city A (0,13713)
 
remove 0 13714
>> Removing city A (0,13714)
 
remove 0 13715
>> Removing city A (0,13715)
 
remove 0 13716
>> Removing city A (0,13716)
 
remove 0 13717
>> Removing city A (0,13717)
 
remove 0 13718
>> Removing city A (0,13718)
 
remove 0 13719
>> Removing city A (0,13719)
 
remove 0 13720
>> Removing city A (0,13720)
 
remove 0 13721
>> Removing city A (0,13721)
 
remove 0 13722
>> Removing city A (0,13722)
 
remove 0 13723
>> Removing city A (0,13723)
 
remove 0 13724
>> Removing city A (0,13724)
 
remove 0 13725
>> Removing city A (0,13725)
 
remove 0 13726
>> Removing city A (0,13726)
 
remove 0 13727
>> Removing city A (0,13727)
 
remove 0 13728
>> Removing city A (0,13728)
 
remove 0 13729
>> Removing city A (0,13729)
 
remove 0 13730
>> Removing city A (0,13730)
 
remove 0 13731
>> Removing city A (0,13731)
 
remove 0 13732
>> Removing city A (0,13732)
 
remove 0 13733
>> Removing city A (0,13733)
 
remove 0 13734
>> Removing city A (0,13734)
 
remove 0 13735
>> Removing city A (0,13735)
 
remove 0 13736
>> Removing city A (0,13736)
 
remove 0 13737
>> Removing city A (0,13737)
 
remove 0 13738
>> Removing city A (0,13738)
 
remove 0 13739
>> Removing city A (0,13739)
 
remove 0 13740
>> Removing city A (0,13740)
 
remove 0 13741
>> Removing city A (0,13741)
 
remove 0 13742
>> Removing city A (0,13742)
 
remove 0 13743
>> Removing city A (0,13743)
 
remove 0 13744
>> Removing city A (0,13744)
 
remove 0 13745
>> Removing city A (0,13745)
 
remove 0 13746
>> Removing city A (0,13746)
 
remove 0 13747
>> Removing city A (0,13747)
 
remove 0 13748
>> Removing city A (0,13748)
 
remove 0 13749
>> Removing city A (0,13749)
 
remove 0 13750
>> Removing city A (0,13750)
 
remove 0 13751
>> Removing city A (0,13751)
 
remove 0 13752
>> Removing city A (0,13752)
 
remove 0 13753
>> Removing city A (0,13753)
 
remove 0 13754
>> Removing city A (0,13754)
 
remove 0 13755
>> Removing city A (0,13755)
 
remove 0 13756
>> Removing city A (0,13756)
 
remove 0 13757
>> Removing city A (0,13757)
 
remove 0 13758
>> Removing city A (0,13758)
 
remove 0 13759
>> Removing city A (0,13759)
 
remove 0 13760
>> Removing city A (0,13760)
 
remove 0 13761
>> Removing city A (0,13761)
 
remove 0 13762
>> Removing city A (0,13762)
 
remove 0 13763
>> Removing city A (0,13763)
 
remove 0 13764
>> Removing city A (0,13764)
 
remove 0 13765
>> Removing city A (0,13765)
 
remove 0 13766
>> Removing city A (0,13766)
 
remove 0 13767
>> Removing city A (0,13767)
 
remove 0 13768
>> Removing city A (0,13768)
 
remove 0 13769
>> Removing city A (0,13769)
 
remove 0 13770
>> Removing city A (0,13770)
 
remove 0 13771
>> Removing city A (0,13771)
 
remove 0 13772
>> Removing city A (0,13772)
 
remove 0 13773
>> Removing city A (0,13773)
 
remove 0 13774
>> Removing city A (0,13774)
 
remove 0 13775
>> Removing city A (0,13775)
 
remove 0 13776
>> Removing city A (0,13776)
 
remove 0 13777
>> Removing city A (0,13777)
 
remove 0 13778
>> Removing city A (0,13778)
 
remove 0 13779
>> Removing city A (0,13779)
 
remove 0 13780
>> Removing city A (0,13780)
 
remove 0 13781
>> Removing city A (0,13781)
 
remove 0 13782
>> Removing city A (0,13782)
 
remove 0 13783
>> Removing city A (0,13783)
 
remove 0 13784
>> Removing city A (0,13784)
 
remove 0 13785
>> Removing city A (0,13785)
 
remove 0 13786
>> Removing city A (0,13786)
 
remove 0 13787
>> Removing city A (0,13787)
 
remove 0 13788
>> Removing city A (0,13788)
 
remove 0 13789
>> Removing city A (0,13789)
 
remove 0 13790
>> Removing city A (0,13790)
 
remove 0 13791
>> Removing city A (0,13791)
 
remove 0 13792
>> Removing city A (0,13792)
 
remove 0 13793
>> Removing city A (0,13793)
 
remove 0 13794
>> Removing city A (0,13794)
 
remove 0 13795
>> Removing city A (0,13795)
 
remove 0 13796
>> Removing city A (0,13796)
 
remove 0 13797
>> Removing city A (0,13797)
 
remove 0 13798
>> Removing city A (0,13798)
 
remove 0 13799
>> Removing city A (0,13799)
 
remove 0 13800
>> Removing city A (0,13800)
 
remove 0 13801
>> Removing city A (0,13801)
 
remove 0 13802
>> Removing city A (0,13802)
 
remove 0 13803
>> Removing city A (0,13803)
 
remove 0 13804
>> Removing city A (0,13804)
 
remove 0 13805
>> Removing city A (0,13805)
 
remove 0 13806
>> Removing city A (0,13806)
 
remove 0 13807
>> Removing city A (0,13807)
 
remove 0 13808
>> Removing city A (0,13808)
 
remove 0 13809
>> Removing city A (0,13809)
 
remove 0 13810
>> Removing city A (0,13810)
 
remove 0 13811
>> Removing city A (0,13811)
 
remove 0 13812
>> Removing city A (0,13812)
 
remove 0 13813
>> Removing city A (0,13813)
 
remove 0 13814
>> Removing city A (0,13814)
 
remove 0 13815
>> Removing city A (0,13815)
 
remove 0 13816
>> Removing city A (0,13816)
 
remove 0 13817
>> Removing city A (0,13817)
 
remove 0 13818
>> Removing city A (0,13818)
 
remove 0 13819
>> Removing city A (0,13819)
 
remove 0 13820
>> Removing city A (0,13820)
 
remove 0 13821
>> Removing city A (0,13821)
 
remove 0 13822
>> Removing city A (0,13822)
 
remove 0 13823
>> Removing city A (0,13823)
 
remove 0 13824
>> Removing city A (0,13824)
 
remove 0 13825
>> Removing city A (0,13825)
 
remove 0 13826
>> Removing city A (0,13826)
 
remove 0 13827
>> Removing city A (0,13827)
 
remove 0 13828
>> Removing city A (0,13828)
 
remove 0 13829
>> Removing city A (0,13829)
 
remove 0 13830
>> Removing city A (0,13830)
 
remove 0 13831
>> Removing city A (0,13831)
 
remove 0 13832
>> Removing city A (0,13832)
 
remove 0 13833
>> Removing city A (0,13833)
 
remove 0 13834
>> Removing city A (0,13834)
 
remove 0 13835
>> Removing city A (0,13835)
 
remove 0 13836
>> Removing city A (0,13836)
 
remove 0 13837
>> Removing city A (0,13837)
 
remove 0 13838
>> Removing city A (0,13838)
 
remove 0 13839
>> Removing city A (0,13839)
 
remove 0 13840
>> Removing city A (0,13840)
 
remove 0 13841
>> Removing city A (0,13841)
 
remove 0 13842
>> Removing city A (0,13842)
 
remove 0 13843
>> Removing city A (0,13843)
 
remove 0 13844
>> Removing city A (0,13844)
 
remove 0 13845
>> Removing city A (0,13845)
 
remove 0 13846
>> Removing city A (0,13846)
 
remove 0 13847
>> Removing city A (0,13847)
 
remove 0 13848
>> Removing city A (0,13848)
 
remove 0 13849
>> Removing city A (0,13849)
 
remove 0 13850
>> Removing city A (0,13850)
 
remove 0 13851
>> Removing city A (0,13851)
 
remove 0 13852
>> Removing city A (0,13852)
 
remove 0 13853
>> Removing city A (0,13853)
 
remove 0 13854
>> Removing city A (0,13854)
 
remove 0 13855
>> Removing city A (0,13855)
 
remove 0 13856
>> Removing city A (0,13856)
 
remove 0 13857
>> Removing city A (0,13857)
 
remove 0 13858
>> Removing city A (0,13858)
 
remove 0 13859
>> Removing city A (0,13859)
 
remove 0 13860
>> Removing city A (0,13860)
 
remove 0 13861
>> Removing city A (0,13861)
 
remove 0 13862
>> Removing city A (0,13862)
 
remove 0 13863
>> Removing city A (0,13863)
 
remove 0 13864
>> Removing city A (0,13864)
 
remove 0 13865
>> Removing city A (0,13865)
 
remove 0 13866
>> Removing city A (0,13866)
 
remove 0 13867
>> Removing city A (0,13867)
 
remove 0 13868
>> Removing city A (0,13868)
 
remove 0 13869
>> Removing city A (0,13869)
 
remove 0 13870
>> Removing city A (0,13870)
 
remove 0 13871
>> Removing city A (0,13871)
 
remove 0 13872
>> Removing city A (0,13872)
 
remove 0 13873
>> Removing city A (0,13873)
 
remove 0 13874
>> Removing city A (0,13874)
 
remove 0 13875
>> Removing city A (0,13875)
 
remove 0 13876
>> Removing city A (0,13876)
 
remove 0 13877
>> Removing city A (0,13877)
 
remove 0 13878
>> Removing city A (0,13878)
 
remove 0 13879
>> Removing city A (0,13879)
 
remove 0 13880
>> Removing city A (0,13880)
 
remove 0 13881
>> Removing city A (0,13881)
 
remove 0 13882
>> Removing city A (0,13882)
 
remove 0 13883
>> Removing city A (0,13883)
 
remove 0 13884
>> Removing city A (0,13884)
 
remove 0 13885
>> Removing city A (0,13885)
 
remove 0 13886
>> Removing city A (0,13886)
 
remove 0 13887
>> Removing city A (0,13887)
 
remove 0 13888
>> Removing city A (0,13888)
 
remove 0 13889
>> Removing city A (0,13889)
 
remove 0 13890
>> Removing city A (0,13890)
 
remove 0 13891
>> Removing city A (0,13891)
 
remove 0 13892
>> Removing city A (0,13892)
 
remove 0 13893
>> Removing city A (0,13893)
 
remove 0 13894
>> Removing city A (0,13894)
 
remove 0 13895
>> Removing city A (0,13895)
 
remove 0 13896
>> Removing city A (0,13896)
 
remove 0 13897
>> Removing city A (0,13897)
 
remove 0 13898
>> Removing city A (0,13898)
 
remove 0 13899
>> Removing city A (0,13899)
 
remove 0 13900
>> Removing city A (0,13900)
 
remove 0 13901
>> Removing city A (0,13901)
 
remove 0 13902
>> Removing city A (0,13902)
 
remove 0 13903
>> Removing city A (0,13903)
 
remove 0 13904
>> Removing city A (0,13904)
 
remove 0 13905
>> Removing city A (0,13905)
 
remove 0 13906
>> Removing city A (0,13906)
 
remove 0 13907
>> Removing city A (0,13907)
 
remove 0 13908
>> Removing city A (0,13908)
 
remove 0 13909
>> Removing city A (0,13909)
 
remove 0 13910
>> Removing city A (0,13910)
 
remove 0 13911
>> Removing city A (0,13911)
 
remove 0 13912
>> Removing city A (0,13912)
 
remove 0 13913
>> Removing city A (0,13913)
 
remove 0 13914
>> Removing city A (0,13914)
 
remove 0 13915
>> Removing city A (0,13915)
 
remove 0 13916
>> Removing city A (0,13916)
 
remove 0 13917
>> Removing city A (0,13917)
 
remove 0 13918
>> Removing city A (0,13918)
 
remove 0 13919
>> Removing city A (0,13919)
 
remove 0 13920
>> Removing city A (0,13920)
 
remove 0 13921
>> Removing city A (0,13921)
 
remove 0 13922
>> Removing city A (0,13922)
 
remove 0 13923
>> Removing city A (0,13923)
 
remove 0 13924
>> Removing city A (0,13924)
 
remove 0 13925
>> Removing city A (0,13925)
 
remove 0 13926
>> Removing city A (0,13926)
 
remove 0 13927
>> Removing city A (0,13927)
 
remove 0 13928
>> Removing city A (0,13928)
 
remove 0 13929
>> Removing city A (0,13929)
 
remove 0 13930
>> Removing city A (0,13930)
 
remove 0 13931
>> Removing city A (0,13931)
 
remove 0 13932
>> Removing city A (0,13932)
 
remove 0 13933
>> Removing city A (0,13933)
 
remove 0 13934
>> Removing city A (0,13934)
 
remove 0 13935
>> Removing city A (0,13935)
 
remove 0 13936
>> Removing city A (0,13936)
 
remove 0 13937
>> Removing city A (0,13937)
 
remove 0 13938
>> Removing city A (0,13938)
 
remove 0 13939
>> Removing city A (0,13939)
 
remove 0 13940
>> Removing city A (0,13940)
 
remove 0 13941
>> Removing city A (0,13941)
 
remove 0 13942
>> Removing city A (0,13942)
 
remove 0 13943
>> Removing city A (0,13943)
 
remove 0 13944
>> Removing city A (0,13944)
 
remove 0 13945
>> Removing city A (0,13945)
 
remove 0 13946
>> Removing city A (0,13946)
 
remove 0 13947
>> Removing city A (0,13947)
 
remove 0 13948
>> Removing city A (0,13948)
 
remove 0 13949
>> Removing city A (0,13949)
 
remove 0 13950
>> Removing city A (0,13950)
 
remove 0 13951
>> Removing city A (0,13951)
 
remove 0 13952
>> Removing city A (0,13952)
 
remove 0 13953
>> Removing city A (0,13953)
 
remove 0 13954
>> Removing city A (0,13954)
 
remove 0 13955
>> Removing city A (0,13955)
 
remove 0 13956
>> Removing city A (0,13956)
 
remove 0 13957
>> Removing city A (0,13957)
 
remove 0 13958
>> Removing city A (0,13958)
 
remove 0 13959
>> Removing city A (0,13959)
 
remove 0 13960
>> Removing city A (0,13960)
 
remove 0 13961
>> Removing city A (0,13961)
 
remove 0 13962
>> Removing city A (0,13962)
 
remove 0 13963
>> Removing city A (0,13963)
 
remove 0 13964
>> Removing city A (0,13964)
 
remove 0 13965
>> Removing city A (0,13965)
 
remove 0 13966
>> Removing city A (0,13966)
 
remove 0 13967
>> Removing city A (0,13967)
 
remove 0 13968
>> Removing city A (0,13968)
 
remove 0 13969
>> Removing city A (0,13969)
 
remove 0 13970
>> Removing city A (0,13970)
 
remove 0 13971
>> Removing city A (0,13971)
 
remove 0 13972
>> Removing city A (0,13972)
 
remove 0 13973
>> Removing city A (0,13973)
 
remove 0 13974
>> Removing city A (0,13974)
 
remove 0 13975
>> Removing city A (0,13975)
 
remove 0 13976
>> Removing city A (0,13976)
 
remove 0 13977
>> Removing city A (0,13977)
 
remove 0 13978
>> Removing city A (0,13978)
 
remove 0 13979
>> Removing city A (0,13979)
 
remove 0 13980
>> Removing city A (0,13980)
 
remove 0 13981
>> Removing city A (0,13981)
 
remove 0 13982
>> Removing city A (0,13982)
 
remove 0 13983
>> Removing city A (0,13983)
 
remove 0 13984
>> Removing city A (0,13984)
 
remove 0 13985
>> Removing city A (0,13985)
 
remove 0 13986
>> Removing city A (0,13986)
 
remove 0 13987
>> Removing city A (0,13987)
 
remove 0 13988
>> Removing city A (0,13988)
 
remove 0 13989
>> Removing city A (0,13989)
 
remove 0 13990
>> Removing city A (0,13990)
 
remove 0 13991
>> Removing city A (0,13991)
 
remove 0 13992
>> Removing city A (0,13992)
 
remove 0 13993
>> Removing city A (0,13993)
 
remove 0 13994
>> Removing city A (0,13994)
 
remove 0 13995
>> Removing city A (0,13995)
 
remove 0 13996
>> Removing city A (0,13996)
 
remove 0 13997
>> Removing city A (0,13997)
 
remove 0 13998
>> Removing city A (0,13998)
 
remove 0 13999
>> Removing city A (0,13999)
 
remove 0 14000
>> Removing city A (0,14000)
 
remove 0 14001
>> Removing city A (0,14001)
 
remove 0 14002
>> Removing city A (0,14002)
 
remove 0 14003
>> Removing city A (0,14003)
 
remove 0 14004
>> Removing city A (0,14004)
 
remove 0 14005
>> Removing city A (0,14005)
 
remove 0 14006
>> Removing city A (0,14006)
 
remove 0 14007
>> Removing city A (0,14007)
 
remove 0 14008
>> Removing city A (0,14008)
 
remove 0 14009
>> Removing city A (0,14009)
 
remove 0 14010
>> Removing city A (0,14010)
 
remove 0 14011
>> Removing city A (0,14011)
 
remove 0 14012
>> Removing city A (0,14012)
 
remove 0 14013
>> Removing city A (0,14013)
 
remove 0 14014
>> Removing city A (0,14014)
 
remove 0 14015
>> Removing city A (0,14015)
 
remove 0 14016
>> Removing city A (0,14016)
 
remove 0 14017
>> Removing city A (0,14017)
 
remove 0 14018
>> Removing city A (0,14018)
 
remove 0 14019
>> Removing city A (0,14019)
 
remove 0 14020
>> Removing city A (0,14020)
 
remove 0 14021
>> Removing city A (0,14021)
 
remove 0 14022
>> Removing city A (0,14022)
 
remove 0 14023
>> Removing city A (0,14023)
 
remove 0 14024
>> Removing city A (0,14024)
 
remove 0 14025
>> Removing city A (0,14025)
 
remove 0 14026
>> Removing city A (0,14026)
 
remove 0 14027
>> Removing city A (0,14027)
 
remove 0 14028
>> Removing city A (0,14028)
 
remove 0 14029
>> Removing city A (0,14029)
 
remove 0 14030
>> Removing city A (0,14030)
 
remove 0 14031
>> Removing city A (0,14031)
 
remove 0 14032
>> Removing city A (0,14032)
 
remove 0 14033
>> Removing city A (0,14033)
 
remove 0 14034
>> Removing city A (0,14034)
 
remove 0 14035
>> Removing city A (0,14035)
 
remove 0 14036
>> Removing city A (0,14036)
 
remove 0 14037
>> Removing city A (0,14037)
 
remove 0 14038
>> Removing city A (0,14038)
 
remove 0 14039
>> Removing city A (0,14039)
 
remove 0 14040
>> Removing city A (0,14040)
 
remove 0 14041
>> Removing city A (0,14041)
 
remove 0 14042
>> Removing city A (0,14042)
 
remove 0 14043
>> Removing city A (0,14043)
 
remove 0 14044
>> Removing city A (0,14044)
 
remove 0 14045
>> Removing city A (0,14045)
 
remove 0 14046
>> Removing city A (0,14046)
 
remove 0 14047
>> Removing city A (0,14047)
 
remove 0 14048
>> Removing city A (0,14048)
 
remove 0 14049
>> Removing city A (0,14049)
 
remove 0 14050
>> Removing city A (0,14050)
 
remove 0 14051
>> Removing city A (0,14051)
 
remove 0 14052
>> Removing city A (0,14052)
 
remove 0 14053
>> Removing city A (0,14053)
 
remove 0 14054
>> Removing city A (0,14054)
 
remove 0 14055
>> Removing city A (0,14055)
 
remove 0 14056
>> Removing city A (0,14056)
 
remove 0 14057
>> Removing city A (0,14057)
 
remove 0 14058
>> Removing city A (0,14058)
 
remove 0 14059
>> Removing city A (0,14059)
 
remove 0 14060
>> Removing city A (0,14060)
 
remove 0 14061
>> Removing city A (0,14061)
 
remove 0 14062
>> Removing city A (0,14062)
 
remove 0 14063
>> Removing city A (0,14063)
 
remove 0 14064
>> Removing city A (0,14064)
 
remove 0 14065
>> Removing city A (0,14065)
 
remove 0 14066
>> Removing city A (0,14066)
 
remove 0 14067
>> Removing city A (0,14067)
 
remove 0 14068
>> Removing city A (0,14068)
 
remove 0 14069
>> Removing city A (0,14069)
 
remove 0 14070
>> Removing city A (0,14070)
 
remove 0 14071
>> Removing city A (0,14071)
 
remove 0 14072
>> Removing city A (0,14072)
 
remove 0 14073
>> Removing city A (0,14073)
 
remove 0 14074
>> Removing city A (0,14074)
 
remove 0 14075
>> Removing city A (0,14075)
 
remove 0 14076
>> Removing city A (0,14076)
 
remove 0 14077
>> Removing city A (0,14077)
 
remove 0 14078
>> Removing city A (0,14078)
 
remove 0 14079
>> Removing city A (0,14079)
 
remove 0 14080
>> Removing city A (0,14080)
 
remove 0 14081
>> Removing city A (0,14081)
 
remove 0 14082
>> Removing city A (0,14082)
 
remove 0 14083
>> Removing city A (0,14083)
 
remove 0 14084
>> Removing city A (0,14084)
 
remove 0 14085
>> Removing city A (0,14085)
 
remove 0 14086
>> Removing city A (0,14086)
 
remove 0 14087
>> Removing city A (0,14087)
 
remove 0 14088
>> Removing city A (0,14088)
 
remove 0 14089
>> Removing city A (0,14089)
 
remove 0 14090
>> Removing city A (0,14090)
 
remove 0 14091
>> Removing city A (0,14091)
 
remove 0 14092
>> Removing city A (0,14092)
 
remove 0 14093
>> Removing city A (0,14093)
 
remove 0 14094
>> Removing city A (0,14094)
 
remove 0 14095
>> Removing city A (0,14095)
 
remove 0 14096
>> Removing city A (0,14096)
 
remove 0 14097
>> Removing city A (0,14097)
 
remove 0 14098
>> Removing city A (0,14098)
 
remove 0 14099
>> Removing city A (0,14099)
 
remove 0 14100
>> Removing city A (0,14100)
 
remove 0 14101
>> Removing city A (0,14101)
 
remove 0 14102
>> Removing city A (0,14102)
 
remove 0 14103
>> Removing city A (0,14103)
 
remove 0 14104
>> Removing city A (0,14104)
 
remove 0 14105
>> Removing city A (0,14105)
 
remove 0 14106
>> Removing city A (0,14106)
 
remove 0 14107
>> Removing city A (0,14107)
 
remove 0 14108
>> Removing city A (0,14108)
 
remove 0 14109
>> Removing city A (0,14109)
 
remove 0 14110
>> Removing city A (0,14110)
 
remove 0 14111
>> Removing city A (0,14111)
 
remove 0 14112
>> Removing city A (0,14112)
 
remove 0 14113
>> Removing city A (0,14113)
 
remove 0 14114
>> Removing city A (0,14114)
 
remove 0 14115
>> Removing city A (0,14115)
 
remove 0 14116
>> Removing city A (0,14116)
 
remove 0 14117
>> Removing city A (0,14117)
 
remove 0 14118
>> Removing city A (0,14118)
 
remove 0 14119
>> Removing city A (0,14119)
 
remove 0 14120
>> Removing city A (0,14120)
 
remove 0 14121
>> Removing city A (0,14121)
 
remove 0 14122
>> Removing city A (0,14122)
 
remove 0 14123
>> Removing city A (0,14123)
 
remove 0 14124
>> Removing city A (0,14124)
 
remove 0 14125
>> Removing city A (0,14125)
 
remove 0 14126
>> Removing city A (0,14126)
 
remove 0 14127
>> Removing city A (0,14127)
 
remove 0 14128
>> Removing city A (0,14128)
 
remove 0 14129
>> Removing city A (0,14129)
 
remove 0 14130
>> Removing city A (0,14130)
 
remove 0 14131
>> Removing city A (0,14131)
 
remove 0 14132
>> Removing city A (0,14132)
 
remove 0 14133
>> Removing city A (0,14133)
 
remove 0 14134
>> Removing city A (0,14134)
 
remove 0 14135
>> Removing city A (0,14135)
 
remove 0 14136
>> Removing city A (0,14136)
 
remove 0 14137
>> Removing city A (0,14137)
 
remove 0 14138
>> Removing city A (0,14138)
 
remove 0 14139
>> Removing city A (0,14139)
 
remove 0 14140
>> Removing city A (0,14140)
 
remove 0 14141
>> Removing city A (0,14141)
 
remove 0 14142
>> Removing city A (0,14142)
 
remove 0 14143
>> Removing city A (0,14143)
 
remove 0 14144
>> Removing city A (0,14144)
 
remove 0 14145
>> Removing city A (0,14145)
 
remove 0 14146
>> Removing city A (0,14146)
 
remove 0 14147
>> Removing city A (0,14147)
 
remove 0 14148
>> Removing city A (0,14148)
 
remove 0 14149
>> Removing city A (0,14149)
 
remove 0 14150
>> Removing city A (0,14150)
 
remove 0 14151
>> Removing city A (0,14151)
 
remove 0 14152
>> Removing city A (0,14152)
 
remove 0 14153
>> Removing city A (0,14153)
 
remove 0 14154
>> Removing city A (0,14154)
 
remove 0 14155
>> Removing city A (0,14155)
 
remove 0 14156
>> Removing city A (0,14156)
 
remove 0 14157
>> Removing city A (0,14157)
 
remove 0 14158
>> Removing city A (0,14158)
 
remove 0 14159
>> Removing city A (0,14159)
 
remove 0 14160
>> Removing city A (0,14160)
 
remove 0 14161
>> Removing city A (0,14161)
 
remove 0 14162
>> Removing city A (0,14162)
 
remove 0 14163
>> Removing city A (0,14163)
 
remove 0 14164
>> Removing city A (0,14164)
 
remove 0 14165
>> Removing city A (0,14165)
 
remove 0 14166
>> Removing city A (0,14166)
 
remove 0 14167
>> Removing city A (0,14167)
 
remove 0 14168
>> Removing city A (0,14168)
 
remove 0 14169
>> Removing city A (0,14169)
 
remove 0 14170
>> Removing city A (0,14170)
 
remove 0 14171
>> Removing city A (0,14171)
 
remove 0 14172
>> Removing city A (0,14172)
 
remove 0 14173
>> Removing city A (0,14173)
 
remove 0 14174
>> Removing city A (0,14174)
 
remove 0 14175
>> Removing city A (0,14175)
 
remove 0 14176
>> Removing city A (0,14176)
 
remove 0 14177
>> Removing city A (0,14177)
 
remove 0 14178
>> Removing city A (0,14178)
 
remove 0 14179
>> Removing city A (0,14179)
 
remove 0 14180
>> Removing city A (0,14180)
 
remove 0 14181
>> Removing city A (0,14181)
 
remove 0 14182
>> Removing city A (0,14182)
 
remove 0 14183
>> Removing city A (0,14183)
 
remove 0 14184
>> Removing city A (0,14184)
 
remove 0 14185
>> Removing city A (0,14185)
 
remove 0 14186
>> Removing city A (0,14186)
 
remove 0 14187
>> Removing city A (0,14187)
 
remove 0 14188
>> Removing city A (0,14188)
 
remove 0 14189
>> Removing city A (0,14189)
 
remove 0 14190
>> Removing city A (0,14190)
 
remove 0 14191
>> Removing city A (0,14191)
 
remove 0 14192
>> Removing city A (0,14192)
 
remove 0 14193
>> Removing city A (0,14193)
 
remove 0 14194
>> Removing city A (0,14194)
 
remove 0 14195
>> Removing city A (0,14195)
 
remove 0 14196
>> Removing city A (0,14196)
 
remove 0 14197
>> Removing city A (0,14197)
 
remove 0 14198
>> Removing city A (0,14198)
 
remove 0 14199
>> Removing city A (0,14199)
 
remove 0 14200
>> Removing city A (0,14200)
 
remove 0 14201
>> Removing city A (0,14201)
 
remove 0 14202
>> Removing city A (0,14202)
 
remove 0 14203
>> Removing city A (0,14203)
 
remove 0 14204
>> Removing city A (0,14204)
 
remove 0 14205
>> Removing city A (0,14205)
 
remove 0 14206
>> Removing city A (0,14206)
 
remove 0 14207
>> Removing city A (0,14207)
 
remove 0 14208
>> Removing city A (0,14208)
 
remove 0 14209
>> Removing city A (0,14209)
 
remove 0 14210
>> Removing city A (0,14210)
 
remove 0 14211
>> Removing city A (0,14211)
 
remove 0 14212
>> Removing city A (0,14212)
 
remove 0 14213
>> Removing city A (0,14213)
 
remove 0 14214
>> Removing city A (0,14214)
 
remove 0 14215
>> Removing city A (0,14215)
 
remove 0 14216
>> Removing city A (0,14216)
 
remove 0 14217
>> Removing city A (0,14217)
 
remove 0 14218
>> Removing city A (0,14218)
 
remove 0 14219
>> Removing city A (0,14219)
 
remove 0 14220
>> Removing city A (0,14220)
 
remove 0 14221
>> Removing city A (0,14221)
 
remove 0 14222
>> Removing city A (0,14222)
 
remove 0 14223
>> Removing city A (0,14223)
 
remove 0 14224
>> Removing city A (0,14224)
 
remove 0 14225
>> Removing city A (0,14225)
 
remove 0 14226
>> Removing city A (0,14226)
 
remove 0 14227
>> Removing city A (0,14227)
 
remove 0 14228
>> Removing city A (0,14228)
 
remove 0 14229
>> Removing city A (0,14229)
 
remove 0 14230
>> Removing city A (0,14230)
 
remove 0 14231
>> Removing city A (0,14231)
 
remove 0 14232
>> Removing city A (0,14232)
 
remove 0 14233
>> Removing city A (0,14233)
 
remove 0 14234
>> Removing city A (0,14234)
 
remove 0 14235
>> Removing city A (0,14235)
 
remove 0 14236
>> Removing city A (0,14236)
 
remove 0 14237
>> Removing city A (0,14237)
 
remove 0 14238
>> Removing city A (0,14238)
 
remove 0 14239
>> Removing city A (0,14239)
 
remove 0 14240
>> Removing city A (0,14240)
 
remove 0 14241
>> Removing city A (0,14241)
 
remove 0 14242
>> Removing city A (0,14242)
 
remove 0 14243
>> Removing city A (0,14243)
 
remove 0 14244
>> Removing city A (0,14244)
 
remove 0 14245
>> Removing city A (0,14245)
 
remove 0 14246
>> Removing city A (0,14246)
 
remove 0 14247
>> Removing city A (0,14247)
 
remove 0 14248
>> Removing city A (0,14248)
 
remove 0 14249
>> Removing city A (0,14249)
 
remove 0 14250
>> Removing city A (0,14250)
 
remove 0 14251
>> Removing city A (0,14251)
 
remove 0 14252
>> Removing city A (0,14252)
 
remove 0 14253
>> Removing city A (0,14253)
 
remove 0 14254
>> Removing city A (0,14254)
 
remove 0 14255
>> Removing city A (0,14255)
 
remove 0 14256
>> Removing city A (0,14256)
 
remove 0 14257
>> Removing city A (0,14257)
 
remove 0 14258
>> Removing city A (0,14258)
 
remove 0 14259
>> Removing city A (0,14259)
 
remove 0 14260
>> Removing city A (0,14260)
 
remove 0 14261
>> Removing city A (0,14261)
 
remove 0 14262
>> Removing city A (0,14262)
 
remove 0 14263
>> Removing city A (0,14263)
 
remove 0 14264
>> Removing city A (0,14264)
 
remove 0 14265
>> Removing city A (0,14265)
 
remove 0 14266
>> Removing city A (0,14266)
 
remove 0 14267
>> Removing city A (0,14267)
 
remove 0 14268
>> Removing city A (0,14268)
 
remove 0 14269
>> Removing city A (0,14269)
 
remove 0 14270
>> Removing city A (0,14270)
 
remove 0 14271
>> Removing city A (0,14271)
 
remove 0 14272
>> Removing city A (0,14272)
 
remove 0 14273
>> Removing city A (0,14273)
 
remove 0 14274
>> Removing city A (0,14274)
 
remove 0 14275
>> Removing city A (0,14275)
 
remove 0 14276
>> Removing city A (0,14276)
 
remove 0 14277
>> Removing city A (0,14277)
 
remove 0 14278
>> Removing city A (0,14278)
 
remove 0 14279
>> Removing city A (0,14279)
 
remove 0 14280
>> Removing city A (0,14280)
 
remove 0 14281
>> Removing city A (0,14281)
 
remove 0 14282
>> Removing city A (0,14282)
 
remove 0 14283
>> Removing city A (0,14283)
 
remove 0 14284
>> Removing city A (0,14284)
 
remove 0 14285
>> Removing city A (0,14285)
 
remove 0 14286
>> Removing city A (0,14286)
 
remove 0 14287
>> Removing city A (0,14287)
 
remove 0 14288
>> Removing city A (0,14288)
 
remove 0 14289
>> Removing city A (0,14289)
 
remove 0 14290
>> Removing city A (0,14290)
 
remove 0 14291
>> Removing city A (0,14291)
 
remove 0 14292
>> Removing city A (0,14292)
 
remove 0 14293
>> Removing city A (0,14293)
 
remove 0 14294
>> Removing city A (0,14294)
 
remove 0 14295
>> Removing city A (0,14295)
 
remove 0 14296
>> Removing city A (0,14296)
 
remove 0 14297
>> Removing city A (0,14297)
 
remove 0 14298
>> Removing city A (0,14298)
 
remove 0 14299
>> Removing city A (0,14299)
 
remove 0 14300
>> Removing city A (0,14300)
 
remove 0 14301
>> Removing city A (0,14301)
 
remove 0 14302
>> Removing city A (0,14302)
 
remove 0 14303
>> Removing city A (0,14303)
 
remove 0 14304
>> Removing city A (0,14304)
 
remove 0 14305
>> Removing city A (0,14305)
 
remove 0 14306
>> Removing city A (0,14306)
 
remove 0 14307
>> Removing city A (0,14307)
 
remove 0 14308
>> Removing city A (0,14308)
 
remove 0 14309
>> Removing city A (0,14309)
 
remove 0 14310
>> Removing city A (0,14310)
 
remove 0 14311
>> Removing city A (0,14311)
 
remove 0 14312
>> Removing city A (0,14312)
 
remove 0 14313
>> Removing city A (0,14313)
 
remove 0 14314
>> Removing city A (0,14314)
 
remove 0 14315
>> Removing city A (0,14315)
 
remove 0 14316
>> Removing city A (0,14316)
 
remove 0 14317
>> Removing city A (0,14317)
 
remove 0 14318
>> Removing city A (0,14318)
 
remove 0 14319
>> Removing city A (0,14319)
 
remove 0 14320
>> Removing city A (0,14320)
 
remove 0 14321
>> Removing city A (0,14321)
 
remove 0 14322
>> Removing city A (0,14322)
 
remove 0 14323
>> Removing city A (0,14323)
 
remove 0 14324
>> Removing city A (0,14324)
 
remove 0 14325
>> Removing city A (0,14325)
 
remove 0 14326
>> Removing city A (0,14326)
 
remove 0 14327
>> Removing city A (0,14327)
 
remove 0 14328
>> Removing city A (0,14328)
 
remove 0 14329
>> Removing city A (0,14329)
 
remove 0 14330
>> Removing city A (0,14330)
 
remove 0 14331
>> Removing city A (0,14331)
 
remove 0 14332
>> Removing city A (0,14332)
 
remove 0 14333
>> Removing city A (0,14333)
 
remove 0 14334
>> Removing city A (0,14334)
 
remove 0 14335
>> Removing city A (0,14335)
 
remove 0 14336
>> Removing city A (0,14336)
 
remove 0 14337
>> Removing city A (0,14337)
 
remove 0 14338
>> Removing city A (0,14338)
 
remove 0 14339
>> Removing city A (0,14339)
 
remove 0 14340
>> Removing city A (0,14340)
 
remove 0 14341
>> Removing city A (0,14341)
 
remove 0 14342
>> Removing city A (0,14342)
 
remove 0 14343
>> Removing city A (0,14343)
 
remove 0 14344
>> Removing city A (0,14344)
 
remove 0 14345
>> Removing city A (0,14345)
 
remove 0 14346
>> Removing city A (0,14346)
 
remove 0 14347
>> Removing city A (0,14347)
 
remove 0 14348
>> Removing city A (0,14348)
 
remove 0 14349
>> Removing city A (0,14349)
 
remove 0 14350
>> Removing city A (0,14350)
 
remove 0 14351
>> Removing city A (0,14351)
 
remove 0 14352
>> Removing city A (0,14352)
 
remove 0 14353
>> Removing city A (0,14353)
 
remove 0 14354
>> Removing city A (0,14354)
 
remove 0 14355
>> Removing city A (0,14355)
 
remove 0 14356
>> Removing city A (0,14356)
 
remove 0 14357
>> Removing city A (0,14357)
 
remove 0 14358
>> Removing city A (0,14358)
 
remove 0 14359
>> Removing city A (0,14359)
 
remove 0 14360
>> Removing city A (0,14360)
 
remove 0 14361
>> Removing city A (0,14361)
 
remove 0 14362
>> Removing city A (0,14362)
 
remove 0 14363
>> Removing city A (0,14363)
 
remove 0 14364
>> Removing city A (0,14364)
 
remove 0 14365
>> Removing city A (0,14365)
 
remove 0 14366
>> Removing city A (0,14366)
 
remove 0 14367
>> Removing city A (0,14367)
 
remove 0 14368
>> Removing city A (0,14368)
 
remove 0 14369
>> Removing city A (0,14369)
 
remove 0 14370
>> Removing city A (0,14370)
 
remove 0 14371
>> Removing city A (0,14371)
 
remove 0 14372
>> Removing city A (0,14372)
 
remove 0 14373
>> Removing city A (0,14373)
 
remove 0 14374
>> Removing city A (0,14374)
 
remove 0 14375
>> Removing city A (0,14375)
 
remove 0 14376
>> Removing city A (0,14376)
 
remove 0 14377
>> Removing city A (0,14377)
 
remove 0 14378
>> Removing city A (0,14378)
 
remove 0 14379
>> Removing city A (0,14379)
 
remove 0 14380
>> Removing city A (0,14380)
 
remove 0 14381
>> Removing city A (0,14381)
 
remove 0 14382
>> Removing city A (0,14382)
 
remove 0 14383
>> Removing city A (0,14383)
 
remove 0 14384
>> Removing city A (0,14384)
 
remove 0 14385
>> Removing city A (0,14385)
 
remove 0 14386
>> Removing city A (0,14386)
 
remove 0 14387
>> Removing city A (0,14387)
 
remove 0 14388
>> Removing city A (0,14388)
 
remove 0 14389
>> Removing city A (0,14389)
 
remove 0 14390
>> Removing city A (0,14390)
 
remove 0 14391
>> Removing city A (0,14391)
 
remove 0 14392
>> Removing city A (0,14392)
 
remove 0 14393
>> Removing city A (0,14393)
 
remove 0 14394
>> Removing city A (0,14394)
 
remove 0 14395
>> Removing city A (0,14395)
 
remove 0 14396
>> Removing city A (0,14396)
 
remove 0 14397
>> Removing city A (0,14397)
 
remove 0 14398
>> Removing city A (0,14398)
 
remove 0 14399
>> Removing city A (0,14399)
 
remove 0 14400
>> Removing city A (0,14400)
 
remove 0 14401
>> Removing city A (0,14401)
 
remove 0 14402
>> Removing city A (0,14402)
 
remove 0 14403
>> Removing city A (0,14403)
 
remove 0 14404
>> Removing city A (0,14404)
 
remove 0 14405
>> Removing city A (0,14405)
 
remove 0 14406
>> Removing city A (0,14406)
 
remove 0 14407
>> Removing city A (0,14407)
 
remove 0 14408
>> Removing city A (0,14408)
 
remove 0 14409
>> Removing city A (0,14409)
 
remove 0 14410
>> Removing city A (0,14410)
 
remove 0 14411
>> Removing city A (0,14411)
 
remove 0 14412
>> Removing city A (0,14412)
 
remove 0 14413
>> Removing city A (0,14413)
 
remove 0 14414
>> Removing city A (0,14414)
 
remove 0 14415
>> Removing city A (0,14415)
 
remove 0 14416
>> Removing city A (0,14416)
 
remove 0 14417
>> Removing city A (0,14417)
 
remove 0 14418
>> Removing city A (0,14418)
 
remove 0 14419
>> Removing city A (0,14419)
 
remove 0 14420
>> Removing city A (0,14420)
 
remove 0 14421
>> Removing city A (0,14421)
 
remove 0 14422
>> Removing city A (0,14422)
 
remove 0 14423
>> Removing city A (0,14423)
 
remove 0 14424
>> Removing city A (0,14424)
 
remove 0 14425
>> Removing city A (0,14425)
 
remove 0 14426
>> Removing city A (0,14426)
 
remove 0 14427
>> Removing city A (0,14427)
 
remove 0 14428
>> Removing city A (0,14428)
 
remove 0 14429
>> Removing city A (0,14429)
 
remove 0 14430
>> Removing city A (0,14430)
 
remove 0 14431
>> Removing city A (0,14431)
 
remove 0 14432
>> Removing city A (0,14432)
 
remove 0 14433
>> Removing city A (0,14433)
 
remove 0 14434
>> Removing city A (0,14434)
 
remove 0 14435
>> Removing city A (0,14435)
 
remove 0 14436
>> Removing city A (0,14436)
 
remove 0 14437
>> Removing city A (0,14437)
 
remove 0 14438
>> Removing city A (0,14438)
 
remove 0 14439
>> Removing city A (0,14439)
 
remove 0 14440
>> Removing city A (0,14440)
 
remove 0 14441
>> Removing city A (0,14441)
 
remove 0 14442
>> Removing city A (0,14442)
 
remove 0 14443
>> Removing city A (0,14443)
 
remove 0 14444
>> Removing city A (0,14444)
 
remove 0 14445
>> Removing city A (0,14445)
 
remove 0 14446
>> Removing city A (0,14446)
 
remove 0 14447
>> Removing city A (0,14447)
 
remove 0 14448
>> Removing city A (0,14448)
 
remove 0 14449
>> Removing city A (0,14449)
 
remove 0 14450
>> Removing city A (0,14450)
 
remove 0 14451
>> Removing city A (0,14451)
 
remove 0 14452
>> Removing city A (0,14452)
 
remove 0 14453
>> Removing city A (0,14453)
 
remove 0 14454
>> Removing city A (0,14454)
 
remove 0 14455
>> Removing city A (0,14455)
 
remove 0 14456
>> Removing city A (0,14456)
 
remove 0 14457
>> Removing city A (0,14457)
 
remove 0 14458
>> Removing city A (0,14458)
 
remove 0 14459
>> Removing city A (0,14459)
 
remove 0 14460
>> Removing city A (0,14460)
 
remove 0 14461
>> Removing city A (0,14461)
 
remove 0 14462
>> Removing city A (0,14462)
 
remove 0 14463
>> Removing city A (0,14463)
 
remove 0 14464
>> Removing city A (0,14464)
 
remove 0 14465
>> Removing city A (0,14465)
 
remove 0 14466
>> Removing city A (0,14466)
 
remove 0 14467
>> Removing city A (0,14467)
 
remove 0 14468
>> Removing city A (0,14468)
 
remove 0 14469
>> Removing city A (0,14469)
 
remove 0 14470
>> Removing city A (0,14470)
 
remove 0 14471
>> Removing city A (0,14471)
 
remove 0 14472
>> Removing city A (0,14472)
 
remove 0 14473
>> Removing city A (0,14473)
 
remove 0 14474
>> Removing city A (0,14474)
 
remove 0 14475
>> Removing city A (0,14475)
 
remove 0 14476
>> Removing city A (0,14476)
 
remove 0 14477
>> Removing city A (0,14477)
 
remove 0 14478
>> Removing city A (0,14478)
 
remove 0 14479
>> Removing city A (0,14479)
 
remove 0 14480
>> Removing city A (0,14480)
 
remove 0 14481
>> Removing city A (0,14481)
 
remove 0 14482
>> Removing city A (0,14482)
 
remove 0 14483
>> Removing city A (0,14483)
 
remove 0 14484
>> Removing city A (0,14484)
 
remove 0 14485
>> Removing city A (0,14485)
 
remove 0 14486
>> Removing city A (0,14486)
 
remove 0 14487
>> Removing city A (0,14487)
 
remove 0 14488
>> Removing city A (0,14488)
 
remove 0 14489
>> Removing city A (0,14489)
 
remove 0 14490
>> Removing city A (0,14490)
 
remove 0 14491
>> Removing city A (0,14491)
 
remove 0 14492
>> Removing city A (0,14492)
 
remove 0 14493
>> Removing city A (0,14493)
 
remove 0 14494
>> Removing city A (0,14494)
 
remove 0 14495
>> Removing city A (0,14495)
 
remove 0 14496
>> Removing city A (0,14496)
 
remove 0 14497
>> Removing city A (0,14497)
 
remove 0 14498
>> Removing city A (0,14498)
 
remove 0 14499
>> Removing city A (0,14499)
 
remove 0 14500
>> Removing city A (0,14500)
 
remove 0 14501
>> Removing city A (0,14501)
 
remove 0 14502
>> Removing city A (0,14502)
 
remove 0 14503
>> Removing city A (0,14503)
 
remove 0 14504
>> Removing city A (0,14504)
 
remove 0 14505
>> Removing city A (0,14505)
 
remove 0 14506
>> Removing city A (0,14506)
 
remove 0 14507
>> Removing city A (0,14507)
 
remove 0 14508
>> Removing city A (0,14508)
 
remove 0 14509
>> Removing city A (0,14509)
 
remove 0 14510
>> Removing city A (0,14510)
 
remove 0 14511
>> Removing city A (0,14511)
 
remove 0 14512
>> Removing city A (0,14512)
 
remove 0 14513
>> Removing city A (0,14513)
 
remove 0 14514
>> Removing city A (0,14514)
 
remove 0 14515
>> Removing city A (0,14515)
 
remove 0 14516
>> Removing city A (0,14516)
 
remove 0 14517
>> Removing city A (0,14517)
 
remove 0 14518
>> Removing city A (0,14518)
 
remove 0 14519
>> Removing city A (0,14519)
 
remove 0 14520
>> Removing city A (0,14520)
 
remove 0 14521
>> Removing city A (0,14521)
 
remove 0 14522
>> Removing city A (0,14522)
 
remove 0 14523
>> Removing city A (0,14523)
 
remove 0 14524
>> Removing city A (0,14524)
 
remove 0 14525
>> Removing city A (0,14525)
 
remove 0 14526
>> Removing city A (0,14526)
 
remove 0 14527
>> Removing city A (0,14527)
 
remove 0 14528
>> Removing city A (0,14528)
 
remove 0 14529
>> Removing city A (0,14529)
 
remove 0 14530
>> Removing city A (0,14530)
 
remove 0 14531
>> Removing city A (0,14531)
 
remove 0 14532
>> Removing city A (0,14532)
 
remove 0 14533
>> Removing city A (0,14533)
 
remove 0 14534
>> Removing city A (0,14534)
 
remove 0 14535
>> Removing city A (0,14535)
 
remove 0 14536
>> Removing city A (0,14536)
 
remove 0 14537
>> Removing city A (0,14537)
 
remove 0 14538
>> Removing city A (0,14538)
 
remove 0 14539
>> Removing city A (0,14539)
 
remove 0 14540
>> Removing city A (0,14540)
 
remove 0 14541
>> Removing city A (0,14541)
 
remove 0 14542
>> Removing city A (0,14542)
 
remove 0 14543
>> Removing city A (0,14543)
 
remove 0 14544
>> Removing city A (0,14544)
 
remove 0 14545
>> Removing city A (0,14545)
 
remove 0 14546
>> Removing city A (0,14546)
 
remove 0 14547
>> Removing city A (0,14547)
 
remove 0 14548
>> Removing city A (0,14548)
 
remove 0 14549
>> Removing city A (0,14549)
 
remove 0 14550
>> Removing city A (0,14550)
 
remove 0 14551
>> Removing city A (0,14551)
 
remove 0 14552
>> Removing city A (0,14552)
 
remove 0 14553
>> Removing city A (0,14553)
 
remove 0 14554
>> Removing city A (0,14554)
 
remove 0 14555
>> Removing city A (0,14555)
 
remove 0 14556
>> Removing city A (0,14556)
 
remove 0 14557
>> Removing city A (0,14557)
 
remove 0 14558
>> Removing city A (0,14558)
 
remove 0 14559
>> Removing city A (0,14559)
 
remove 0 14560
>> Removing city A (0,14560)
 
remove 0 14561
>> Removing city A (0,14561)
 
remove 0 14562
>> Removing city A (0,14562)
 
remove 0 14563
>> Removing city A (0,14563)
 
remove 0 14564
>> Removing city A (0,14564)
 
remove 0 14565
>> Removing city A (0,14565)
 
remove 0 14566
>> Removing city A (0,14566)
 
remove 0 14567
>> Removing city A (0,14567)
 
remove 0 14568
>> Removing city A (0,14568)
 
remove 0 14569
>> Removing city A (0,14569)
 
remove 0 14570
>> Removing city A (0,14570)
 
remove 0 14571
>> Removing city A (0,14571)
 
remove 0 14572
>> Removing city A (0,14572)
 
remove 0 14573
>> Removing city A (0,14573)
 
remove 0 14574
>> Removing city A (0,14574)
 
remove 0 14575
>> Removing city A (0,14575)
 
remove 0 14576
>> Removing city A (0,14576)
 
remove 0 14577
>> Removing city A (0,14577)
 
remove 0 14578
>> Removing city A (0,14578)
 
remove 0 14579
>> Removing city A (0,14579)
 
remove 0 14580
>> Removing city A (0,14580)
 
remove 0 14581
>> Removing city A (0,14581)
 
remove 0 14582
>> Removing city A (0,14582)
 
remove 0 14583
>> Removing city A (0,14583)
 
remove 0 14584
>> Removing city A (0,14584)
 
remove 0 14585
>> Removing city A (0,14585)
 
remove 0 14586
>> Removing city A (0,14586)
 
remove 0 14587
>> Removing city A (0,14587)
 
remove 0 14588
>> Removing city A (0,14588)
 
remove 0 14589
>> Removing city A (0,14589)
 
remove 0 14590
>> Removing city A (0,14590)
 
remove 0 14591
>> Removing city A (0,14591)
 
remove 0 14592
>> Removing city A (0,14592)
 
remove 0 14593
>> Removing city A (0,14593)
 
remove 0 14594
>> Removing city A (0,14594)
 
remove 0 14595
>> Removing city A (0,14595)
 
remove 0 14596
>> Removing city A (0,14596)
 
remove 0 14597
>> Removing city A (0,14597)
 
remove 0 14598
>> Removing city A (0,14598)
 
remove 0 14599
>> Removing city A (0,14599)
 
remove 0 14600
>> Removing city A (0,14600)
 
remove 0 14601
>> Removing city A (0,14601)
 
remove 0 14602
>> Removing city A (0,14602)
 
remove 0 14603
>> Removing city A (0,14603)
 
remove 0 14604
>> Removing city A (0,14604)
 
remove 0 14605
>> Removing city A (0,14605)
 
remove 0 14606
>> Removing city A (0,14606)
 
remove 0 14607
>> Removing city A (0,14607)
 
remove 0 14608
>> Removing city A (0,14608)
 
remove 0 14609
>> Removing city A (0,14609)
 
remove 0 14610
>> Removing city A (0,14610)
 
remove 0 14611
>> Removing city A (0,14611)
 
remove 0 14612
>> Removing city A (0,14612)
 
remove 0 14613
>> Removing city A (0,14613)
 
remove 0 14614
>> Removing city A (0,14614)
 
remove 0 14615
>> Removing city A (0,14615)
 
remove 0 14616
>> Removing city A (0,14616)
 
remove 0 14617
>> Removing city A (0,14617)
 
remove 0 14618
>> Removing city A (0,14618)
 
remove 0 14619
>> Removing city A (0,14619)
 
remove 0 14620
>> Removing city A (0,14620)
 
remove 0 14621
>> Removing city A (0,14621)
 
remove 0 14622
>> Removing city A (0,14622)
 
remove 0 14623
>> Removing city A (0,14623)
 
remove 0 14624
>> Removing city A (0,14624)
 
remove 0 14625
>> Removing city A (0,14625)
 
remove 0 14626
>> Removing city A (0,14626)
 
remove 0 14627
>> Removing city A (0,14627)
 
remove 0 14628
>> Removing city A (0,14628)
 
remove 0 14629
>> Removing city A (0,14629)
 
remove 0 14630
>> Removing city A (0,14630)
 
remove 0 14631
>> Removing city A (0,14631)
 
remove 0 14632
>> Removing city A (0,14632)
 
remove 0 14633
>> Removing city A (0,14633)
 
remove 0 14634
>> Removing city A (0,14634)
 
remove 0 14635
>> Removing city A (0,14635)
 
remove 0 14636
>> Removing city A (0,14636)
 
remove 0 14637
>> Removing city A (0,14637)
 
remove 0 14638
>> Removing city A (0,14638)
 
remove 0 14639
>> Removing city A (0,14639)
 
remove 0 14640
>> Removing city A (0,14640)
 
remove 0 14641
>> Removing city A (0,14641)
 
remove 0 14642
>> Removing city A (0,14642)
 
remove 0 14643
>> Removing city A (0,14643)
 
remove 0 14644
>> Removing city A (0,14644)
 
remove 0 14645
>> Removing city A (0,14645)
 
remove 0 14646
>> Removing city A (0,14646)
 
remove 0 14647
>> Removing city A (0,14647)
 
remove 0 14648
>> Removing city A (0,14648)
 
remove 0 14649
>> Removing city A (0,14649)
 
remove 0 14650
>> Removing city A (0,14650)
 
remove 0 14651
>> Removing city A (0,14651)
 
remove 0 14652
>> Removing city A (0,14652)
 
remove 0 14653
>> Removing city A (0,14653)
 
remove 0 14654
>> Removing city A (0,14654)
 
remove 0 14655
>> Removing city A (0,14655)
 
remove 0 14656
>> Removing city A (0,14656)
 
remove 0 14657
>> Removing city A (0,14657)
 
remove 0 14658
>> Removing city A (0,14658)
 
remove 0 14659
>> Removing city A (0,14659)
 
remove 0 14660
>> Removing city A (0,14660)
 
remove 0 14661
>> Removing city A (0,14661)
 
remove 0 14662
>> Removing city A (0,14662)
 
remove 0 14663
>> Removing city A (0,14663)
 
remove 0 14664
>> Removing city A (0,14664)
 
remove 0 14665
>> Removing city A (0,14665)
 
remove 0 14666
>> Removing city A (0,14666)
 
remove 0 14667
>> Removing city A (0,14667)
 
remove 0 14668
>> Removing city A (0,14668)
 
remove 0 14669
>> Removing city A (0,14669)
 
remove 0 14670
>> Removing city A (0,14670)
 
remove 0 14671
>> Removing city A (0,14671)
 
remove 0 14672
>> Removing city A (0,14672)
 
remove 0 14673
>> Removing city A (0,14673)
 
remove 0 14674
>> Removing city A (0,14674)
 
remove 0 14675
>> Removing city A (0,14675)
 
remove 0 14676
>> Removing city A (0,14676)
 
remove 0 14677
>> Removing city A (0,14677)
 
remove 0 14678
>> Removing city A (0,14678)
 
remove 0 14679
>> Removing city A (0,14679)
 
remove 0 14680
>> Removing city A (0,14680)
 
remove 0 14681
>> Removing city A (0,14681)
 
remove 0 14682
>> Removing city A (0,14682)
 
remove 0 14683
>> Removing city A (0,14683)
 
remove 0 14684
>> Removing city A (0,14684)
 
remove 0 14685
>> Removing city A (0,14685)
 
remove 0 14686
>> Removing city A (0,14686)
 
remove 0 14687
>> Removing city A (0,14687)
 
remove 0 14688
>> Removing city A (0,14688)
 
remove 0 14689
>> Removing city A (0,14689)
 
remove 0 14690
>> Removing city A (0,14690)
 
remove 0 14691
>> Removing city A (0,14691)
 
remove 0 14692
>> Removing city A (0,14692)
 
remove 0 14693
>> Removing city A (0,14693)
 
remove 0 14694
>> Removing city A (0,14694)
 
remove 0 14695
>> Removing city A (0,14695)
 
remove 0 14696
>> Removing city A (0,14696)
 
remove 0 14697
>> Removing city A (0,14697)
 
remove 0 14698
>> Removing city A (0,14698)
 
remove 0 14699
>> Removing city A (0,14699)
 
remove 0 14700
>> Removing city A (0,14700)
 
remove 0 14701
>> Removing city A (0,14701)
 
remove 0 14702
>> Removing city A (0,14702)
 
remove 0 14703
>> Removing city A (0,14703)
 
remove 0 14704
>> Removing city A (0,14704)
 
remove 0 14705
>> Removing city A (0,14705)
 
remove 0 14706
>> Removing city A (0,14706)
 
remove 0 14707
>> Removing city A (0,14707)
 
remove 0 14708
>> Removing city A (0,14708)
 
remove 0 14709
>> Removing city A (0,14709)
 
remove 0 14710
>> Removing city A (0,14710)
 
remove 0 14711
>> Removing city A (0,14711)
 
remove 0 14712
>> Removing city A (0,14712)
 
remove 0 14713
>> Removing city A (0,14713)
 
remove 0 14714
>> Removing city A (0,14714)
 
remove 0 14715
>> Removing city A (0,14715)
 
remove 0 14716
>> Removing city A (0,14716)
 
remove 0 14717
>> Removing city A (0,14717)
 
remove 0 14718
>> Removing city A (0,14718)
 
remove 0 14719
>> Removing city A (0,14719)
 
remove 0 14720
>> Removing city A (0,14720)
 
remove 0 14721
>> Removing city A (0,14721)
 
remove 0 14722
>> Removing city A (0,14722)
 
remove 0 14723
>> Removing city A (0,14723)
 
remove 0 14724
>> Removing city A (0,14724)
 
remove 0 14725
>> Removing city A (0,14725)
 
remove 0 14726
>> Removing city A (0,14726)
 
remove 0 14727
>> Removing city A (0,14727)
 
remove 0 14728
>> Removing city A (0,14728)
 
remove 0 14729
>> Removing city A (0,14729)
 
remove 0 14730
>> Removing city A (0,14730)
 
remove 0 14731
>> Removing city A (0,14731)
 
remove 0 14732
>> Removing city A (0,14732)
 
remove 0 14733
>> Removing city A (0,14733)
 
remove 0 14734
>> Removing city A (0,14734)
 
remove 0 14735
>> Removing city A (0,14735)
 
remove 0 14736
>> Removing city A (0,14736)
 
remove 0 14737
>> Removing city A (0,14737)
 
remove 0 14738
>> Removing city A (0,14738)
 
remove 0 14739
>> Removing city A (0,14739)
 
remove 0 14740
>> Removing city A (0,14740)
 
remove 0 14741
>> Removing city A (0,14741)
 
remove 0 14742
>> Removing city A (0,14742)
 
remove 0 14743
>> Removing city A (0,14743)
 
remove 0 14744
>> Removing city A (0,14744)
 
remove 0 14745
>> Removing city A (0,14745)
 
remove 0 14746
>> Removing city A (0,14746)
 
remove 0 14747
>> Removing city A (0,14747)
 
remove 0 14748
>> Removing city A (0,14748)
 
remove 0 14749
>> Removing city A (0,14749)
 
remove 0 14750
>> Removing city A (0,14750)
 
remove 0 14751
>> Removing city A (0,14751)
 
remove 0 14752
>> Removing city A (0,14752)
 
remove 0 14753
>> Removing city A (0,14753)
 
remove 0 14754
>> Removing city A (0,14754)
 
remove 0 14755
>> Removing city A (0,14755)
 
remove 0 14756
>> Removing city A (0,14756)
 
remove 0 14757
>> Removing city A (0,14757)
 
remove 0 14758
>> Removing city A (0,14758)
 
remove 0 14759
>> Removing city A (0,14759)
 
remove 0 14760
>> Removing city A (0,14760)
 
remove 0 14761
>> Removing city A (0,14761)
 
remove 0 14762
>> Removing city A (0,14762)
 
remove 0 14763
>> Removing city A (0,14763)
 
remove 0 14764
>> Removing city A (0,14764)
 
remove 0 14765
>> Removing city A (0,14765)
 
remove 0 14766
>> Removing city A (0,14766)
 
remove 0 14767
>> Removing city A (0,14767)
 
remove 0 14768
>> Removing city A (0,14768)
 
remove 0 14769
>> Removing city A (0,14769)
 
remove 0 14770
>> Removing city A (0,14770)
 
remove 0 14771
>> Removing city A (0,14771)
 
remove 0 14772
>> Removing city A (0,14772)
 
remove 0 14773
>> Removing city A (0,14773)
 
remove 0 14774
>> Removing city A (0,14774)
 
remove 0 14775
>> Removing city A (0,14775)
 
remove 0 14776
>> Removing city A (0,14776)
 
remove 0 14777
>> Removing city A (0,14777)
 
remove 0 14778
>> Removing city A (0,14778)
 
remove 0 14779
>> Removing city A (0,14779)
 
remove 0 14780
>> Removing city A (0,14780)
 
remove 0 14781
>> Removing city A (0,14781)
 
remove 0 14782
>> Removing city A (0,14782)
 
remove 0 14783
>> Removing city A (0,14783)
 
remove 0 14784
>> Removing city A (0,14784)
 
remove 0 14785
>> Removing city A (0,14785)
 
remove 0 14786
>> Removing city A (0,14786)
 
remove 0 14787
>> Removing city A (0,14787)
 
remove 0 14788
>> Removing city A (0,14788)
 
remove 0 14789
>> Removing city A (0,14789)
 
remove 0 14790
>> Removing city A (0,14790)
 
remove 0 14791
>> Removing city A (0,14791)
 
remove 0 14792
>> Removing city A (0,14792)
 
remove 0 14793
>> Removing city A (0,14793)
 
remove 0 14794
>> Removing city A (0,14794)
 
remove 0 14795
>> Removing city A (0,14795)
 
remove 0 14796
>> Removing city A (0,14796)
 
remove 0 14797
>> Removing city A (0,14797)
 
remove 0 14798
>> Removing city A (0,14798)
 
remove 0 14799
>> Removing city A (0,14799)
 
remove 0 14800
>> Removing city A (0,14800)
 
remove 0 14801
>> Removing city A (0,14801)
 
remove 0 14802
>> Removing city A (0,14802)
 
remove 0 14803
>> Removing city A (0,14803)
 
remove 0 14804
>> Removing city A (0,14804)
 
remove 0 14805
>> Removing city A (0,14805)
 
remove 0 14806
>> Removing city A (0,14806)
 
remove 0 14807
>> Removing city A (0,14807)
 
remove 0 14808
>> Removing city A (0,14808)
 
remove 0 14809
>> Removing city A (0,14809)
 
remove 0 14810
>> Removing city A (0,14810)
 
remove 0 14811
>> Removing city A (0,14811)
 
remove 0 14812
>> Removing city A (0,14812)
 
remove 0 14813
>> Removing city A (0,14813)
 
remove 0 14814
>> Removing city A (0,14814)
 
remove 0 14815
>> Removing city A (0,14815)
 
remove 0 14816
>> Removing city A (0,14816)
 
remove 0 14817
>> Removing city A (0,14817)
 
remove 0 14818
>> Removing city A (0,14818)
 
remove 0 14819
>> Removing city A (0,14819)
 
remove 0 14820
>> Removing city A (0,14820)
 
remove 0 14821
>> Removing city A (0,14821)
 
remove 0 14822
>> Removing city A (0,14822)
 
remove 0 14823
>> Removing city A (0,14823)
 
remove 0 14824
>> Removing city A (0,14824)
 
remove 0 14825
>> Removing city A (0,14825)
 
remove 0 14826
>> Removing city A (0,14826)
 
remove 0 14827
>> Removing city A (0,14827)
 
remove 0 14828
>> Removing city A (0,14828)
 
remove 0 14829
>> Removing city A (0,14829)
 
remove 0 14830
>> Removing city A (0,14830)
 
remove 0 14831
>> Removing city A (0,14831)
 
remove 0 14832
>> Removing city A (0,14832)
 
remove 0 14833
>> Removing city A (0,14833)
 
remove 0 14834
>> Removing city A (0,14834)
 
remove 0 14835
>> Removing city A (0,14835)
 
remove 0 14836
>> Removing city A (0,14836)
 
remove 0 14837
>> Removing city A (0,14837)
 
remove 0 14838
>> Removing city A (0,14838)
 
remove 0 14839
>> Removing city A (0,14839)
 
remove 0 14840
>> Removing city A (0,14840)
 
remove 0 14841
>> Removing city A (0,14841)
 
remove 0 14842
>> Removing city A (0,14842)
 
remove 0 14843
>> Removing city A (0,14843)
 
remove 0 14844
>> Removing city A (0,14844)
 
remove 0 14845
>> Removing city A (0,14845)
 
remove 0 14846
>> Removing city A (0,14846)
 
remove 0 14847
>> Removing city A (0,14847)
 
remove 0 14848
>> Removing city A (0,14848)
 
remove 0 14849
>> Removing city A (0,14849)
 
remove 0 14850
>> Removing city A (0,14850)
 
remove 0 14851
>> Removing city A (0,14851)
 
remove 0 14852
>> Removing city A (0,14852)
 
remove 0 14853
>> Removing city A (0,14853)
 
remove 0 14854
>> Removing city A (0,14854)
 
remove 0 14855
>> Removing city A (0,14855)
 
remove 0 14856
>> Removing city A (0,14856)
 
remove 0 14857
>> Removing city A (0,14857)
 
remove 0 14858
>> Removing city A (0,14858)
 
remove 0 14859
>> Removing city A (0,14859)
 
remove 0 14860
>> Removing city A (0,14860)
 
remove 0 14861
>> Removing city A (0,14861)
 
remove 0 14862
>> Removing city A (0,14862)
 
remove 0 14863
>> Removing city A (0,14863)
 
remove 0 14864
>> Removing city A (0,14864)
 
remove 0 14865
>> Removing city A (0,14865)
 
remove 0 14866
>> Removing city A (0,14866)
 
remove 0 14867
>> Removing city A (0,14867)
 
remove 0 14868
>> Removing city A (0,14868)
 
remove 0 14869
>> Removing city A (0,14869)
 
remove 0 14870
>> Removing city A (0,14870)
 
remove 0 14871
>> Removing city A (0,14871)
 
remove 0 14872
>> Removing city A (0,14872)
 
remove 0 14873
>> Removing city A (0,14873)
 
remove 0 14874
>> Removing city A (0,14874)
 
remove 0 14875
>> Removing city A (0,14875)
 
remove 0 14876
>> Removing city A (0,14876)
 
remove 0 14877
>> Removing city A (0,14877)
 
remove 0 14878
>> Removing city A (0,14878)
 
remove 0 14879
>> Removing city A (0,14879)
 
remove 0 14880
>> Removing city A (0,14880)
 
remove 0 14881
>> Removing city A (0,14881)
 
remove 0 14882
>> Removing city A (0,14882)
 
remove 0 14883
>> Removing city A (0,14883)
 
remove 0 14884
>> Removing city A (0,14884)
 
remove 0 14885
>> Removing city A (0,14885)
 
remove 0 14886
>> Removing city A (0,14886)
 
remove 0 14887
>> Removing city A (0,14887)
 
remove 0 14888
>> Removing city A (0,14888)
 
remove 0 14889
>> Removing city A (0,14889)
 
remove 0 14890
>> Removing city A (0,14890)
 
remove 0 14891
>> Removing city A (0,14891)
 
remove 0 14892
>> Removing city A (0,14892)
 
remove 0 14893
>> Removing city A (0,14893)
 
remove 0 14894
>> Removing city A (0,14894)
 
remove 0 14895
>> Removing city A (0,14895)
 
remove 0 14896
>> Removing city A (0,14896)
 
remove 0 14897
>> Removing city A (0,14897)
 
remove 0 14898
>> Removing city A (0,14898)
 
remove 0 14899
>> Removing city A (0,14899)
 
remove 0 14900
>> Removing city A (0,14900)
 
remove 0 14901
>> Removing city A (0,14901)
 
remove 0 14902
>> Removing city A (0,14902)
 
remove 0 14903
>> Removing city A (0,14903)
 
remove 0 14904
>> Removing city A (0,14904)
 
remove 0 14905
>> Removing city A (0,14905)
 
remove 0 14906
>> Removing city A (0,14906)
 
remove 0 14907
>> Removing city A (0,14907)
 
remove 0 14908
>> Removing city A (0,14908)
 
remove 0 14909
>> Removing city A (0,14909)
 
remove 0 14910
>> Removing city A (0,14910)
 
remove 0 14911
>> Removing city A (0,14911)
 
remove 0 14912
>> Removing city A (0,14912)
 
remove 0 14913
>> Removing city A (0,14913)
 
remove 0 14914
>> Removing city A (0,14914)
 
remove 0 14915
>> Removing city A (0,14915)
 
remove 0 14916
>> Removing city A (0,14916)
 
remove 0 14917
>> Removing city A (0,14917)
 
remove 0 14918
>> Removing city A (0,14918)
 
remove 0 14919
>> Removing city A (0,14919)
 
remove 0 14920
>> Removing city A (0,14920)
 
remove 0 14921
>> Removing city A (0,14921)
 
remove 0 14922
>> Removing city A (0,14922)
 
remove 0 14923
>> Removing city A (0,14923)
 
remove 0 14924
>> Removing city A (0,14924)
 
remove 0 14925
>> Removing city A (0,14925)
 
remove 0 14926
>> Removing city A (0,14926)
 
remove 0 14927
>> Removing city A (0,14927)
 
remove 0 14928
>> Removing city A (0,14928)
 
remove 0 14929
>> Removing city A (0,14929)
 
remove 0 14930
>> Removing city A (0,14930)
 
remove 0 14931
>> Removing city A (0,14931)
 
remove 0 14932
>> Removing city A (0,14932)
 
remove 0 14933
>> Removing city A (0,14933)
 
remove 0 14934
>> Removing city A (0,14934)
 
remove 0 14935
>> Removing city A (0,14935)
 
remove 0 14936
>> Removing city A (0,14936)
 
remove 0 14937
>> Removing city A (0,14937)
 
remove 0 14938
>> Removing city A (0,14938)
 
remove 0 14939
>> Removing city A (0,14939)
 
remove 0 14940
>> Removing city A (0,14940)
 
remove 0 14941
>> Removing city A (0,14941)
 
remove 0 14942
>> Removing city A (0,14942)
 
remove 0 14943
>> Removing city A (0,14943)
 
remove 0 14944
>> Removing city A (0,14944)
 
remove 0 14945
>> Removing city A (0,14945)
 
remove 0 14946
>> Removing city A (0,14946)
 
remove 0 14947
>> Removing city A (0,14947)
 
remove 0 14948
>> Removing city A (0,14948)
 
remove 0 14949
>> Removing city A (0,14949)
 
remove 0 14950
>> Removing city A (0,14950)
 
remove 0 14951
>> Removing city A (0,14951)
 
remove 0 14952
>> Removing city A (0,14952)
 
remove 0 14953
>> Removing city A (0,14953)
 
remove 0 14954
>> Removing city A (0,14954)
 
remove 0 14955
>> Removing city A (0,14955)
 
remove 0 14956
>> Removing city A (0,14956)
 
remove 0 14957
>> Removing city A (0,14957)
 
remove 0 14958
>> Removing city A (0,14958)
 
remove 0 14959
>> Removing city A (0,14959)
 
remove 0 14960
>> Removing city A (0,14960)
 
remove 0 14961
>> Removing city A (0,14961)
 
remove 0 14962
>> Removing city A (0,14962)
 
remove 0 14963
>> Removing city A (0,14963)
 
remove 0 14964
>> Removing city A (0,14964)
 
remove 0 14965
>> Removing city A (0,14965)
 
remove 0 14966
>> Removing city A (0,14966)
 
remove 0 14967
>> Removing city A (0,14967)
 
remove 0 14968
>> Removing city A (0,14968)
 
remove 0 14969
>> Removing city A (0,14969)
 
remove 0 14970
>> Removing city A (0,14970)
 
remove 0 14971
>> Removing city A (0,14971)
 
remove 0 14972
>> Removing city A (0,14972)
 
remove 0 14973
>> Removing city A (0,14973)
 
remove 0 14974
>> Removing city A (0,14974)
 
remove 0 14975
>> Removing city A (0,14975)
 
remove 0 14976
>> Removing city A (0,14976)
 
remove 0 14977
>> Removing city A (0,14977)
 
remove 0 14978
>> Removing city A (0,14978)
 
remove 0 14979
>> Removing city A (0,14979)
 
remove 0 14980
>> Removing city A (0,14980)
 
remove 0 14981
>> Removing city A (0,14981)
 
remove 0 14982
>> Removing city A (0,14982)
 
remove 0 14983
>> Removing city A (0,14983)
 
remove 0 14984
>> Removing city A (0,14984)
 
remove 0 14985
>> Removing city A (0,14985)
 
remove 0 14986
>> Removing city A (0,14986)
 
remove 0 14987
>> Removing city A (0,14987)
 
remove 0 14988
>> Removing city A (0,14988)
 
remove 0 14989
>> Removing city A (0,14989)
 
remove 0 14990
>> Removing city A (0,14990)
 
remove 0 14991
>> Removing city A (0,14991)
 
remove 0 14992
>> Removing city A (0,14992)
 
remove 0 14993
>> Removing city A (0,14993)
 
remove 0 14994
>> Removing city A (0,14994)
 
remove 0 14995
>> Removing city A (0,14995)
 
remove 0 14996
>> Removing city A (0,14996)
 
remove 0 14997
>> Removing city A (0,14997)
 
remove 0 14998
>> Removing city A (0,14998)
 
remove 0 14999
>> Removing city A (0,14999)
 
remove 0 15000
>> Removing city A (0,15000)
 
remove 0 15001
>> Removing city A (0,15001)
 
remove 0 15002
>> Removing city A (0,15002)
 
remove 0 15003
>> Removing city A (0,15003)
 
remove 0 15004
>> Removing city A (0,15004)
 
remove 0 15005
>> Removing city A (0,15005)
 
remove 0 15006
>> Removing city A (0,15006)
 
remove 0 15007
>> Removing city A (0,15007)
 
remove 0 15008
>> Removing city A (0,15008)
 
remove 0 15009
>> Removing city A (0,15009)
 
remove 0 15010
>> Removing city A (0,15010)
 
remove 0 15011
>> Removing city A (0,15011)
 
remove 0 15012
>> Removing city A (0,15012)
 
remove 0 15013
>> Removing city A (0,15013)
 
remove 0 15014
>> Removing city A (0,15014)
 
remove 0 15015
>> Removing city A (0,15015)
 
remove 0 15016
>> Removing city A (0,15016)
 
remove 0 15017
>> Removing city A (0,15017)
 
remove 0 15018
>> Removing city A (0,15018)
 
remove 0 15019
>> Removing city A (0,15019)
 
remove 0 15020
>> Removing city A (0,15020)
 
remove 0 15021
>> Removing city A (0,15021)
 
remove 0 15022
>> Removing city A (0,15022)
 
remove 0 15023
>> Removing city A (0,15023)
 
remove 0 15024
>> Removing city A (0,15024)
 
remove 0 15025
>> Removing city A (0,15025)
 
remove 0 15026
>> Removing city A (0,15026)
 
remove 0 15027
>> Removing city A (0,15027)
 
remove 0 15028
>> Removing city A (0,15028)
 
remove 0 15029
>> Removing city A (0,15029)
 
remove 0 15030
>> Removing city A (0,15030)
 
remove 0 15031
>> Removing city A (0,15031)
 
remove 0 15032
>> Removing city A (0,15032)
 
remove 0 15033
>> Removing city A (0,15033)
 
remove 0 15034
>> Removing city A (0,15034)
 
remove 0 15035
>> Removing city A (0,15035)
 
remove 0 15036
>> Removing city A (0,15036)
 
remove 0 15037
>> Removing city A (0,15037)
 
remove 0 15038
>> Removing city A (0,15038)
 
remove 0 15039
>> Removing city A (0,15039)
 
remove 0 15040
>> Removing city A (0,15040)
 
remove 0 15041
>> Removing city A (0,15041)
 
remove 0 15042
>> Removing city A (0,15042)
 
remove 0 15043
>> Removing city A (0,15043)
 
remove 0 15044
>> Removing city A (0,15044)
 
remove 0 15045
>> Removing city A (0,15045)
 
remove 0 15046
>> Removing city A (0,15046)
 
remove 0 15047
>> Removing city A (0,15047)
 
remove 0 15048
>> Removing city A (0,15048)
 
remove 0 15049
>> Removing city A (0,15049)
 
remove 0 15050
>> Removing city A (0,15050)
 
remove 0 15051
>> Removing city A (0,15051)
 
remove 0 15052
>> Removing city A (0,15052)
 
remove 0 15053
>> Removing city A (0,15053)
 
remove 0 15054
>> Removing city A (0,15054)
 
remove 0 15055
>> Removing city A (0,15055)
 
remove 0 15056
>> Removing city A (0,15056)
 
remove 0 15057
>> Removing city A (0,15057)
 
remove 0 15058
>> Removing city A (0,15058)
 
remove 0 15059
>> Removing city A (0,15059)
 
remove 0 15060
>> Removing city A (0,15060)
 
remove 0 15061
>> Removing city A (0,15061)
 
remove 0 15062
>> Removing city A (0,15062)
 
remove 0 15063
>> Removing city A (0,15063)
 
remove 0 15064
>> Removing city A (0,15064)
 
remove 0 15065
>> Removing city A (0,15065)
 
remove 0 15066
>> Removing city A (0,15066)
 
remove 0 15067
>> Removing city A (0,15067)
 
remove 0 15068
>> Removing city A (0,15068)
 
remove 0 15069
>> Removing city A (0,15069)
 
remove 0 15070
>> Removing city A (0,15070)
 
remove 0 15071
>> Removing city A (0,15071)
 
remove 0 15072
>> Removing city A (0,15072)
 
remove 0 15073
>> Removing city A (0,15073)
 
remove 0 15074
>> Removing city A (0,15074)
 
remove 0 15075
>> Removing city A (0,15075)
 
remove 0 15076
>> Removing city A (0,15076)
 
remove 0 15077
>> Removing city A (0,15077)
 
remove 0 15078
>> Removing city A (0,15078)
 
remove 0 15079
>> Removing city A (0,15079)
 
remove 0 15080
>> Removing city A (0,15080)
 
remove 0 15081
>> Removing city A (0,15081)
 
remove 0 15082
>> Removing city A (0,15082)
 
remove 0 15083
>> Removing city A (0,15083)
 
remove 0 15084
>> Removing city A (0,15084)
 
remove 0 15085
>> Removing city A (0,15085)
 
remove 0 15086
>> Removing city A (0,15086)
 
remove 0 15087
>> Removing city A (0,15087)
 
remove 0 15088
>> Removing city A (0,15088)
 
remove 0 15089
>> Removing city A (0,15089)
 
remove 0 15090
>> Removing city A (0,15090)
 
remove 0 15091
>> Removing city A (0,15091)
 
remove 0 15092
>> Removing city A (0,15092)
 
remove 0 15093
>> Removing city A (0,15093)
 
remove 0 15094
>> Removing city A (0,15094)
 
remove 0 15095
>> Removing city A (0,15095)
 
remove 0 15096
>> Removing city A (0,15096)
 
remove 0 15097
>> Removing city A (0,15097)
 
remove 0 15098
>> Removing city A (0,15098)
 
remove 0 15099
>> Removing city A (0,15099)
 
remove 0 15100
>> Removing city A (0,15100)
 
remove 0 15101
>> Removing city A (0,15101)
 
remove 0 15102
>> Removing city A (0,15102)
 
remove 0 15103
>> Removing city A (0,15103)
 
remove 0 15104
>> Removing city A (0,15104)
 
remove 0 15105
>> Removing city A (0,15105)
 
remove 0 15106
>> Removing city A (0,15106)
 
remove 0 15107
>> Removing city A (0,15107)
 
remove 0 15108
>> Removing city A (0,15108)
 
remove 0 15109
>> Removing city A (0,15109)
 
remove 0 15110
>> Removing city A (0,15110)
 
remove 0 15111
>> Removing city A (0,15111)
 
remove 0 15112
>> Removing city A (0,15112)
 
remove 0 15113
>> Removing city A (0,15113)
 
remove 0 15114
>> Removing city A (0,15114)
 
remove 0 15115
>> Removing city A (0,15115)
 
remove 0 15116
>> Removing city A (0,15116)
 
remove 0 15117
>> Removing city A (0,15117)
 
remove 0 15118
>> Removing city A (0,15118)
 
remove 0 15119
>> Removing city A (0,15119)
 
remove 0 15120
>> Removing city A (0,15120)
 
remove 0 15121
>> Removing city A (0,15121)
 
remove 0 15122
>> Removing city A (0,15122)
 
remove 0 15123
>> Removing city A (0,15123)
 
remove 0 15124
>> Removing city A (0,15124)
 
remove 0 15125
>> Removing city A (0,15125)
 
remove 0 15126
>> Removing city A (0,15126)
 
remove 0 15127
>> Removing city A (0,15127)
 
remove 0 15128
>> Removing city A (0,15128)
 
remove 0 15129
>> Removing city A (0,15129)
 
remove 0 15130
>> Removing city A (0,15130)
 
remove 0 15131
>> Removing city A (0,15131)
 
remove 0 15132
>> Removing city A (0,15132)
 
remove 0 15133
>> Removing city A (0,15133)
 
remove 0 15134
>> Removing city A (0,15134)
 
remove 0 15135
>> Removing city A (0,15135)
 
remove 0 15136
>> Removing city A (0,15136)
 
remove 0 15137
>> Removing city A (0,15137)
 
remove 0 15138
>> Removing city A (0,15138)
 
remove 0 15139
>> Removing city A (0,15139)
 
remove 0 15140
>> Removing city A (0,15140)
 
remove 0 15141
>> Removing city A (0,15141)
 
remove 0 15142
>> Removing city A (0,15142)
 
remove 0 15143
>> Removing city A (0,15143)
 
remove 0 15144
>> Removing city A (0,15144)
 
remove 0 15145
>> Removing city A (0,15145)
 
remove 0 15146
>> Removing city A (0,15146)
 
remove 0 15147
>> Removing city A (0,15147)
 
remove 0 15148
>> Removing city A (0,15148)
 
remove 0 15149
>> Removing city A (0,15149)
 
remove 0 15150
>> Removing city A (0,15150)
 
remove 0 15151
>> Removing city A (0,15151)
 
remove 0 15152
>> Removing city A (0,15152)
 
remove 0 15153
>> Removing city A (0,15153)
 
remove 0 15154
>> Removing city A (0,15154)
 
remove 0 15155
>> Removing city A (0,15155)
 
remove 0 15156
>> Removing city A (0,15156)
 
remove 0 15157
>> Removing city A (0,15157)
 
remove 0 15158
>> Removing city A (0,15158)
 
remove 0 15159
>> Removing city A (0,15159)
 
remove 0 15160
>> Removing city A (0,15160)
 
remove 0 15161
>> Removing city A (0,15161)
 
remove 0 15162
>> Removing city A (0,15162)
 
remove 0 15163
>> Removing city A (0,15163)
 
remove 0 15164
>> Removing city A (0,15164)
 
remove 0 15165
>> Removing city A (0,15165)
 
remove 0 15166
>> Removing city A (0,15166)
 
remove 0 15167
>> Removing city A (0,15167)
 
remove 0 15168
>> Removing city A (0,15168)
 
remove 0 15169
>> Removing city A (0,15169)
 
remove 0 15170
>> Removing city A (0,15170)
 
remove 0 15171
>> Removing city A (0,15171)
 
remove 0 15172
>> Removing city A (0,15172)
 
remove 0 15173
>> Removing city A (0,15173)
 
remove 0 15174
>> Removing city A (0,15174)
 
remove 0 15175
>> Removing city A (0,15175)
 
remove 0 15176
>> Removing city A (0,15176)
 
remove 0 15177
>> Removing city A (0,15177)
 
remove 0 15178
>> Removing city A (0,15178)
 
remove 0 15179
>> Removing city A (0,15179)
 
remove 0 15180
>> Removing city A (0,15180)
 
remove 0 15181
>> Removing city A (0,15181)
 
remove 0 15182
>> Removing city A (0,15182)
 
remove 0 15183
>> Removing city A (0,15183)
 
remove 0 15184
>> Removing city A (0,15184)
 
remove 0 15185
>> Removing city A (0,15185)
 
remove 0 15186
>> Removing city A (0,15186)
 
remove 0 15187
>> Removing city A (0,15187)
 
remove 0 15188
>> Removing city A (0,15188)
 
remove 0 15189
>> Removing city A (0,15189)
 
remove 0 15190
>> Removing city A (0,15190)
 
remove 0 15191
>> Removing city A (0,15191)
 
remove 0 15192
>> Removing city A (0,15192)
 
remove 0 15193
>> Removing city A (0,15193)
 
remove 0 15194
>> Removing city A (0,15194)
 
remove 0 15195
>> Removing city A (0,15195)
 
remove 0 15196
>> Removing city A (0,15196)
 
remove 0 15197
>> Removing city A (0,15197)
 
remove 0 15198
>> Removing city A (0,15198)
 
remove 0 15199
>> Removing city A (0,15199)
 
remove 0 15200
>> Removing city A (0,15200)
 
remove 0 15201
>> Removing city A (0,15201)
 
remove 0 15202
>> Removing city A (0,15202)
 
remove 0 15203
>> Removing city A (0,15203)
 
remove 0 15204
>> Removing city A (0,15204)
 
remove 0 15205
>> Removing city A (0,15205)
 
remove 0 15206
>> Removing city A (0,15206)
 
remove 0 15207
>> Removing city A (0,15207)
 
remove 0 15208
>> Removing city A (0,15208)
 
remove 0 15209
>> Removing city A (0,15209)
 
remove 0 15210
>> Removing city A (0,15210)
 
remove 0 15211
>> Removing city A (0,15211)
 
remove 0 15212
>> Removing city A (0,15212)
 
remove 0 15213
>> Removing city A (0,15213)
 
remove 0 15214
>> Removing city A (0,15214)
 
remove 0 15215
>> Removing city A (0,15215)
 
remove 0 15216
>> Removing city A (0,15216)
 
remove 0 15217
>> Removing city A (0,15217)
 
remove 0 15218
>> Removing city A (0,15218)
 
remove 0 15219
>> Removing city A (0,15219)
 
remove 0 15220
>> Removing city A (0,15220)
 
remove 0 15221
>> Removing city A (0,15221)
 
remove 0 15222
>> Removing city A (0,15222)
 
remove 0 15223
>> Removing city A (0,15223)
 
remove 0 15224
>> Removing city A (0,15224)
 
remove 0 15225
>> Removing city A (0,15225)
 
remove 0 15226
>> Removing city A (0,15226)
 
remove 0 15227
>> Removing city A (0,15227)
 
remove 0 15228
>> Removing city A (0,15228)
 
remove 0 15229
>> Removing city A (0,15229)
 
remove 0 15230
>> Removing city A (0,15230)
 
remove 0 15231
>> Removing city A (0,15231)
 
remove 0 15232
>> Removing city A (0,15232)
 
remove 0 15233
>> Removing city A (0,15233)
 
remove 0 15234
>> Removing city A (0,15234)
 
remove 0 15235
>> Removing city A (0,15235)
 
remove 0 15236
>> Removing city A (0,15236)
 
remove 0 15237
>> Removing city A (0,15237)
 
remove 0 15238
>> Removing city A (0,15238)
 
remove 0 15239
>> Removing city A (0,15239)
 
remove 0 15240
>> Removing city A (0,15240)
 
remove 0 15241
>> Removing city A (0,15241)
 
remove 0 15242
>> Removing city A (0,15242)
 
remove 0 15243
>> Removing city A (0,15243)
 
remove 0 15244
>> Removing city A (0,15244)
 
remove 0 15245
>> Removing city A (0,15245)
 
remove 0 15246
>> Removing city A (0,15246)
 
remove 0 15247
>> Removing city A (0,15247)
 
remove 0 15248
>> Removing city A (0,15248)
 
remove 0 15249
>> Removing city A (0,15249)
 
remove 0 15250
>> Removing city A (0,15250)
 
remove 0 15251
>> Removing city A (0,15251)
 
remove 0 15252
>> Removing city A (0,15252)
 
remove 0 15253
>> Removing city A (0,15253)
 
remove 0 15254
>> Removing city A (0,15254)
 
remove 0 15255
>> Removing city A (0,15255)
 
remove 0 15256
>> Removing city A (0,15256)
 
remove 0 15257
>> Removing city A (0,15257)
 
remove 0 15258
>> Removing city A (0,15258)
 
remove 0 15259
>> Removing city A (0,15259)
 
remove 0 15260
>> Removing city A (0,15260)
 
remove 0 15261
>> Removing city A (0,15261)
 
remove 0 15262
>> Removing city A (0,15262)
 
remove 0 15263
>> Removing city A (0,15263)
 
remove 0 15264
>> Removing city A (0,15264)
 
remove 0 15265
>> Removing city A (0,15265)
 
remove 0 15266
>> Removing city A (0,15266)
 
remove 0 15267
>> Removing city A (0,15267)
 
remove 0 15268
>> Removing city A (0,15268)
 
remove 0 15269
>> Removing city A (0,15269)
 
remove 0 15270
>> Removing city A (0,15270)
 
remove 0 15271
>> Removing city A (0,15271)
 
remove 0 15272
>> Removing city A (0,15272)
 
remove 0 15273
>> Removing city A (0,15273)
 
remove 0 15274
>> Removing city A (0,15274)
 
remove 0 15275
>> Removing city A (0,15275)
 
remove 0 15276
>> Removing city A (0,15276)
 
remove 0 15277
>> Removing city A (0,15277)
 
remove 0 15278
>> Removing city A (0,15278)
 
remove 0 15279
>> Removing city A (0,15279)
 
remove 0 15280
>> Removing city A (0,15280)
 
remove 0 15281
>> Removing city A (0,15281)
 
remove 0 15282
>> Removing city A (0,15282)
 
remove 0 15283
>> Removing city A (0,15283)
 
remove 0 15284
>> Removing city A (0,15284)
 
remove 0 15285
>> Removing city A (0,15285)
 
remove 0 15286
>> Removing city A (0,15286)
 
remove 0 15287
>> Removing city A (0,15287)
 
remove 0 15288
>> Removing city A (0,15288)
 
remove 0 15289
>> Removing city A (0,15289)
 
remove 0 15290
>> Removing city A (0,15290)
 
remove 0 15291
>> Removing city A (0,15291)
 
remove 0 15292
>> Removing city A (0,15292)
 
remove 0 15293
>> Removing city A (0,15293)
 
remove 0 15294
>> Removing city A (0,15294)
 
remove 0 15295
>> Removing city A (0,15295)
 
remove 0 15296
>> Removing city A (0,15296)
 
remove 0 15297
>> Removing city A (0,15297)
 
remove 0 15298
>> Removing city A (0,15298)
 
remove 0 15299
>> Removing city A (0,15299)
 
remove 0 15300
>> Removing city A (0,15300)
 
remove 0 15301
>> Removing city A (0,15301)
 
remove 0 15302
>> Removing city A (0,15302)
 
remove 0 15303
>> Removing city A (0,15303)
 
remove 0 15304
>> Removing city A (0,15304)
 
remove 0 15305
>> Removing city A (0,15305)
 
remove 0 15306
>> Removing city A (0,15306)
 
remove 0 15307
>> Removing city A (0,15307)
 
remove 0 15308
>> Removing city A (0,15308)
 
remove 0 15309
>> Removing city A (0,15309)
 
remove 0 15310
>> Removing city A (0,15310)
 
remove 0 15311
>> Removing city A (0,15311)
 
remove 0 15312
>> Removing city A (0,15312)
 
remove 0 15313
>> Removing city A (0,15313)
 
remove 0 15314
>> Removing city A (0,15314)
 
remove 0 15315
>> Removing city A (0,15315)
 
remove 0 15316
>> Removing city A (0,15316)
 
remove 0 15317
>> Removing city A (0,15317)
 
remove 0 15318
>> Removing city A (0,15318)
 
remove 0 15319
>> Removing city A (0,15319)
 
remove 0 15320
>> Removing city A (0,15320)
 
remove 0 15321
>> Removing city A (0,15321)
 
remove 0 15322
>> Removing city A (0,15322)
 
remove 0 15323
>> Removing city A (0,15323)
 
remove 0 15324
>> Removing city A (0,15324)
 
remove 0 15325
>> Removing city A (0,15325)
 
remove 0 15326
>> Removing city A (0,15326)
 
remove 0 15327
>> Removing city A (0,15327)
 
remove 0 15328
>> Removing city A (0,15328)
 
remove 0 15329
>> Removing city A (0,15329)
 
remove 0 15330
>> Removing city A (0,15330)
 
remove 0 15331
>> Removing city A (0,15331)
 
remove 0 15332
>> Removing city A (0,15332)
 
remove 0 15333
>> Removing city A (0,15333)
 
remove 0 15334
>> Removing city A (0,15334)
 
remove 0 15335
>> Removing city A (0,15335)
 
remove 0 15336
>> Removing city A (0,15336)
 
remove 0 15337
>> Removing city A (0,15337)
 
remove 0 15338
>> Removing city A (0,15338)
 
remove 0 15339
>> Removing city A (0,15339)
 
remove 0 15340
>> Removing city A (0,15340)
 
remove 0 15341
>> Removing city A (0,15341)
 
remove 0 15342
>> Removing city A (0,15342)
 
remove 0 15343
>> Removing city A (0,15343)
 
remove 0 15344
>> Removing city A (0,15344)
 
remove 0 15345
>> Removing city A (0,15345)
 
remove 0 15346
>> Removing city A (0,15346)
 
remove 0 15347
>> Removing city A (0,15347)
 
remove 0 15348
>> Removing city A (0,15348)
 
remove 0 15349
>> Removing city A (0,15349)
 
remove 0 15350
>> Removing city A (0,15350)
 
remove 0 15351
>> Removing city A (0,15351)
 
remove 0 15352
>> Removing city A (0,15352)
 
remove 0 15353
>> Removing city A (0,15353)
 
remove 0 15354
>> Removing city A (0,15354)
 
remove 0 15355
>> Removing city A (0,15355)
 
remove 0 15356
>> Removing city A (0,15356)
 
remove 0 15357
>> Removing city A (0,15357)
 
remove 0 15358
>> Removing city A (0,15358)
 
remove 0 15359
>> Removing city A (0,15359)
 
remove 0 15360
>> Removing city A (0,15360)
 
remove 0 15361
>> Removing city A (0,15361)
 
remove 0 15362
>> Removing city A (0,15362)
 
remove 0 15363
>> Removing city A (0,15363)
 
remove 0 15364
>> Removing city A (0,15364)
 
remove 0 15365
>> Removing city A (0,15365)
 
remove 0 15366
>> Removing city A (0,15366)
 
remove 0 15367
>> Removing city A (0,15367)
 
remove 0 15368
>> Removing city A (0,15368)
 
remove 0 15369
>> Removing city A (0,15369)
 
remove 0 15370
>> Removing city A (0,15370)
 
remove 0 15371
>> Removing city A (0,15371)
 
remove 0 15372
>> Removing city A (0,15372)
 
remove 0 15373
>> Removing city A (0,15373)
 
remove 0 15374
>> Removing city A (0,15374)
 
remove 0 15375
>> Removing city A (0,15375)
 
remove 0 15376
>> Removing city A (0,15376)
 
remove 0 15377
>> Removing city A (0,15377)
 
remove 0 15378
>> Removing city A (0,15378)
 
remove 0 15379
>> Removing city A (0,15379)
 
remove 0 15380
>> Removing city A (0,15380)
 
remove 0 15381
>> Removing city A (0,15381)
 
remove 0 15382
>> Removing city A (0,15382)
 
remove 0 15383
>> Removing city A (0,15383)
 
remove 0 15384
>> Removing city A (0,15384)
 
remove 0 15385
>> Removing city A (0,15385)
 
remove 0 15386
>> Removing city A (0,15386)
 
remove 0 15387
>> Removing city A (0,15387)
 
remove 0 15388
>> Removing city A (0,15388)
 
remove 0 15389
>> Removing city A (0,15389)
 
remove 0 15390
>> Removing city A (0,15390)
 
remove 0 15391
>> Removing city A (0,15391)
 
remove 0 15392
>> Removing city A (0,15392)
 
remove 0 15393
>> Removing city A (0,15393)
 
remove 0 15394
>> Removing city A (0,15394)
 
remove 0 15395
>> Removing city A (0,15395)
 
remove 0 15396
>> Removing city A (0,15396)
 
remove 0 15397
>> Removing city A (0,15397)
 
remove 0 15398
>> Removing city A (0,15398)
 
remove 0 15399
>> Removing city A (0,15399)
 
remove 0 15400
>> Removing city A (0,15400)
 
remove 0 15401
>> Removing city A (0,15401)
 
remove 0 15402
>> Removing city A (0,15402)
 
remove 0 15403
>> Removing city A (0,15403)
 
remove 0 15404
>> Removing city A (0,15404)
 
remove 0 15405
>> Removing city A (0,15405)
 
remove 0 15406
>> Removing city A (0,15406)
 
remove 0 15407
>> Removing city A (0,15407)
 
remove 0 15408
>> Removing city A (0,15408)
 
remove 0 15409
>> Removing city A (0,15409)
 
remove 0 15410
>> Removing city A (0,15410)
 
remove 0 15411
>> Removing city A (0,15411)
 
remove 0 15412
>> Removing city A (0,15412)
 
remove 0 15413
>> Removing city A (0,15413)
 
remove 0 15414
>> Removing city A (0,15414)
 
remove 0 15415
>> Removing city A (0,15415)
 
remove 0 15416
>> Removing city A (0,15416)
 
remove 0 15417
>> Removing city A (0,15417)
 
remove 0 15418
>> Removing city A (0,15418)
 
remove 0 15419
>> Removing city A (0,15419)
 
remove 0 15420
>> Removing city A (0,15420)
 
remove 0 15421
>> Removing city A (0,15421)
 
remove 0 15422
>> Removing city A (0,15422)
 
remove 0 15423
>> Removing city A (0,15423)
 
remove 0 15424
>> Removing city A (0,15424)
 
remove 0 15425
>> Removing city A (0,15425)
 
remove 0 15426
>> Removing city A (0,15426)
 
remove 0 15427
>> Removing city A (0,15427)
 
remove 0 15428
>> Removing city A (0,15428)
 
remove 0 15429
>> Removing city A (0,15429)
 
remove 0 15430
>> Removing city A (0,15430)
 
remove 0 15431
>> Removing city A (0,15431)
 
remove 0 15432
>> Removing city A (0,15432)
 
remove 0 15433
>> Removing city A (0,15433)
 
remove 0 15434
>> Removing city A (0,15434)
 
remove 0 15435
>> Removing city A (0,15435)
 
remove 0 15436
>> Removing city A (0,15436)
 
remove 0 15437
>> Removing city A (0,15437)
 
remove 0 15438
>> Removing city A (0,15438)
 
remove 0 15439
>> Removing city A (0,15439)
 
remove 0 15440
>> Removing city A (0,15440)
 
remove 0 15441
>> Removing city A (0,15441)
 
remove 0 15442
>> Removing city A (0,15442)
 
remove 0 15443
>> Removing city A (0,15443)
 
remove 0 15444
>> Removing city A (0,15444)
 
remove 0 15445
>> Removing city A (0,15445)
 
remove 0 15446
>> Removing city A (0,15446)
 
remove 0 15447
>> Removing city A (0,15447)
 
remove 0 15448
>> Removing city A (0,15448)
 
remove 0 15449
>> Removing city A (0,15449)
 
remove 0 15450
>> Removing city A (0,15450)
 
remove 0 15451
>> Removing city A (0,15451)
 
remove 0 15452
>> Removing city A (0,15452)
 
remove 0 15453
>> Removing city A (0,15453)
 
remove 0 15454
>> Removing city A (0,15454)
 
remove 0 15455
>> Removing city A (0,15455)
 
remove 0 15456
>> Removing city A (0,15456)
 
remove 0 15457
>> Removing city A (0,15457)
 
remove 0 15458
>> Removing city A (0,15458)
 
remove 0 15459
>> Removing city A (0,15459)
 
remove 0 15460
>> Removing city A (0,15460)
 
remove 0 15461
>> Removing city A (0,15461)
 
remove 0 15462
>> Removing city A (0,15462)
 
remove 0 15463
>> Removing city A (0,15463)
 
remove 0 15464
>> Removing city A (0,15464)
 
remove 0 15465
>> Removing city A (0,15465)
 
remove 0 15466
>> Removing city A (0,15466)
 
remove 0 15467
>> Removing city A (0,15467)
 
remove 0 15468
>> Removing city A (0,15468)
 
remove 0 15469
>> Removing city A (0,15469)
 
remove 0 15470
>> Removing city A (0,15470)
 
remove 0 15471
>> Removing city A (0,15471)
 
remove 0 15472
>> Removing city A (0,15472)
 
remove 0 15473
>> Removing city A (0,15473)
 
remove 0 15474
>> Removing city A (0,15474)
 
remove 0 15475
>> Removing city A (0,15475)
 
remove 0 15476
>> Removing city A (0,15476)
 
remove 0 15477
>> Removing city A (0,15477)
 
remove 0 15478
>> Removing city A (0,15478)
 
remove 0 15479
>> Removing city A (0,15479)
 
remove 0 15480
>> Removing city A (0,15480)
 
remove 0 15481
>> Removing city A (0,15481)
 
remove 0 15482
>> Removing city A (0,15482)
 
remove 0 15483
>> Removing city A (0,15483)
 
remove 0 15484
>> Removing city A (0,15484)
 
remove 0 15485
>> Removing city A (0,15485)
 
remove 0 15486
>> Removing city A (0,15486)
 
remove 0 15487
>> Removing city A (0,15487)
 
remove 0 15488
>> Removing city A (0,15488)
 
remove 0 15489
>> Removing city A (0,15489)
 
remove 0 15490
>> Removing city A (0,15490)
 
remove 0 15491
>> Removing city A (0,15491)
 
remove 0 15492
>> Removing city A (0,15492)
 
remove 0 15493
>> Removing city A (0,15493)
 
remove 0 15494
>> Removing city A (0,15494)
 
remove 0 15495
>> Removing city A (0,15495)
 
remove 0 15496
>> Removing city A (0,15496)
 
remove 0 15497
>> Removing city A (0,15497)
 
remove 0 15498
>> Removing city A (0,15498)
 
remove 0 15499
>> Removing city A (0,15499)
 
remove 0 15500
>> Removing city A (0,15500)
 
remove 0 15501
>> Removing city A (0,15501)
 
remove 0 15502
>> Removing city A (0,15502)
 
remove 0 15503
>> Removing city A (0,15503)
 
remove 0 15504
>> Removing city A (0,15504)
 
remove 0 15505
>> Removing city A (0,15505)
 
remove 0 15506
>> Removing city A (0,15506)
 
remove 0 15507
>> Removing city A (0,15507)
 
remove 0 15508
>> Removing city A (0,15508)
 
remove 0 15509
>> Removing city A (0,15509)
 
remove 0 15510
>> Removing city A (0,15510)
 
remove 0 15511
>> Removing city A (0,15511)
 
remove 0 15512
>> Removing city A (0,15512)
 
remove 0 15513
>> Removing city A (0,15513)
 
remove 0 15514
>> Removing city A (0,15514)
 
remove 0 15515
>> Removing city A (0,15515)
 
remove 0 15516
>> Removing city A (0,15516)
 
remove 0 15517
>> Removing city A (0,15517)
 
remove 0 15518
>> Removing city A (0,15518)
 
remove 0 15519
>> Removing city A (0,15519)
 
remove 0 15520
>> Removing city A (0,15520)
 
remove 0 15521
>> Removing city A (0,15521)
 
remove 0 15522
>> Removing city A (0,15522)
 
remove 0 15523
>> Removing city A (0,15523)
 
remove 0 15524
>> Removing city A (0,15524)
 
remove 0 15525
>> Removing city A (0,15525)
 
remove 0 15526
>> Removing city A (0,15526)
 
remove 0 15527
>> Removing city A (0,15527)
 
remove 0 15528
>> Removing city A (0,15528)
 
remove 0 15529
>> Removing city A (0,15529)
 
remove 0 15530
>> Removing city A (0,15530)
 
remove 0 15531
>> Removing city A (0,15531)
 
remove 0 15532
>> Removing city A (0,15532)
 
remove 0 15533
>> Removing city A (0,15533)
 
remove 0 15534
>> Removing city A (0,15534)
 
remove 0 15535
>> Removing city A (0,15535)
 
remove 0 15536
>> Removing city A (0,15536)
 
remove 0 15537
>> Removing city A (0,15537)
 
remove 0 15538
>> Removing city A (0,15538)
 
remove 0 15539
>> Removing city A (0,15539)
 
remove 0 15540
>> Removing city A (0,15540)
 
remove 0 15541
>> Removing city A (0,15541)
 
remove 0 15542
>> Removing city A (0,15542)
 
remove 0 15543
>> Removing city A (0,15543)
 
remove 0 15544
>> Removing city A (0,15544)
 
remove 0 15545
>> Removing city A (0,15545)
 
remove 0 15546
>> Removing city A (0,15546)
 
remove 0 15547
>> Removing city A (0,15547)
 
remove 0 15548
>> Removing city A (0,15548)
 
remove 0 15549
>> Removing city A (0,15549)
 
remove 0 15550
>> Removing city A (0,15550)
 
remove 0 15551
>> Removing city A (0,15551)
 
remove 0 15552
>> Removing city A (0,15552)
 
remove 0 15553
>> Removing city A (0,15553)
 
remove 0 15554
>> Removing city A (0,15554)
 
remove 0 15555
>> Removing city A (0,15555)
 
remove 0 15556
>> Removing city A (0,15556)
 
remove 0 15557
>> Removing city A (0,15557)
 
remove 0 15558
>> Removing city A (0,15558)
 
remove 0 15559
>> Removing city A (0,15559)
 
remove 0 15560
>> Removing city A (0,15560)
 
remove 0 15561
>> Removing city A (0,15561)
 
remove 0 15562
>> Removing city A (0,15562)
 
remove 0 15563
>> Removing city A (0,15563)
 
remove 0 15564
>> Removing city A (0,15564)
 
remove 0 15565
>> Removing city A (0,15565)
 
remove 0 15566
>> Removing city A (0,15566)
 
remove 0 15567
>> Removing city A (0,15567)
 
remove 0 15568
>> Removing city A (0,15568)
 
remove 0 15569
>> Removing city A (0,15569)
 
remove 0 15570
>> Removing city A (0,15570)
 
remove 0 15571
>> Removing city A (0,15571)
 
remove 0 15572
>> Removing city A (0,15572)
 
remove 0 15573
>> Removing city A (0,15573)
 
remove 0 15574
>> Removing city A (0,15574)
 
remove 0 15575
>> Removing city A (0,15575)
 
remove 0 15576
>> Removing city A (0,15576)
 
remove 0 15577
>> Removing city A (0,15577)
 
remove 0 15578
>> Removing city A (0,15578)
 
remove 0 15579
>> Removing city A (0,15579)
 
remove 0 15580
>> Removing city A (0,15580)
 
remove 0 15581
>> Removing city A (0,15581)
 
remove 0 15582
>> Removing city A (0,15582)
 
remove 0 15583
>> Removing city A (0,15583)
 
remove 0 15584
>> Removing city A (0,15584)
 
remove 0 15585
>> Removing city A (0,15585)
 
remove 0 15586
>> Removing city A (0,15586)
 
remove 0 15587
>> Removing city A (0,15587)
 
remove 0 15588
>> Removing city A (0,15588)
 
remove 0 15589
>> Removing city A (0,15589)
 
remove 0 15590
>> Removing city A (0,15590)
 
remove 0 15591
>> Removing city A (0,15591)
 
remove 0 15592
>> Removing city A (0,15592)
 
remove 0 15593
>> Removing city A (0,15593)
 
remove 0 15594
>> Removing city A (0,15594)
 
remove 0 15595
>> Removing city A (0,15595)
 
remove 0 15596
>> Removing city A (0,15596)
 
remove 0 15597
>> Removing city A (0,15597)
 
remove 0 15598
>> Removing city A (0,15598)
 
remove 0 15599
>> Removing city A (0,15599)
 
remove 0 15600
>> Removing city A (0,15600)
 
remove 0 15601
>> Removing city A (0,15601)
 
remove 0 15602
>> Removing city A (0,15602)
 
remove 0 15603
>> Removing city A (0,15603)
 
remove 0 15604
>> Removing city A (0,15604)
 
remove 0 15605
>> Removing city A (0,15605)
 
remove 0 15606
>> Removing city A (0,15606)
 
remove 0 15607
>> Removing city A (0,15607)
 
remove 0 15608
>> Removing city A (0,15608)
 
remove 0 15609
>> Removing city A (0,15609)
 
remove 0 15610
>> Removing city A (0,15610)
 
remove 0 15611
>> Removing city A (0,15611)
 
remove 0 15612
>> Removing city A (0,15612)
 
remove 0 15613
>> Removing city A (0,15613)
 
remove 0 15614
>> Removing city A (0,15614)
 
remove 0 15615
>> Removing city A (0,15615)
 
remove 0 15616
>> Removing city A (0,15616)
 
remove 0 15617
>> Removing city A (0,15617)
 
remove 0 15618
>> Removing city A (0,15618)
 
remove 0 15619
>> Removing city A (0,15619)
 
remove 0 15620
>> Removing city A (0,15620)
 
remove 0 15621
>> Removing city A (0,15621)
 
remove 0 15622
>> Removing city A (0,15622)
 
remove 0 15623
>> Removing city A (0,15623)
 
remove 0 15624
>> Removing city A (0,15624)
 
remove 0 15625
>> Removing city A (0,15625)
 
remove 0 15626
>> Removing city A (0,15626)
 
remove 0 15627
>> Removing city A (0,15627)
 
remove 0 15628
>> Removing city A (0,15628)
 
remove 0 15629
>> Removing city A (0,15629)
 
remove 0 15630
>> Removing city A (0,15630)
 
remove 0 15631
>> Removing city A (0,15631)
 
remove 0 15632
>> Removing city A (0,15632)
 
remove 0 15633
>> Removing city A (0,15633)
 
remove 0 15634
>> Removing city A (0,15634)
 
remove 0 15635
>> Removing city A (0,15635)
 
remove 0 15636
>> Removing city A (0,15636)
 
remove 0 15637
>> Removing city A (0,15637)
 
remove 0 15638
>> Removing city A (0,15638)
 
remove 0 15639
>> Removing city A (0,15639)
 
remove 0 15640
>> Removing city A (0,15640)
 
remove 0 15641
>> Removing city A (0,15641)
 
remove 0 15642
>> Removing city A (0,15642)
 
remove 0 15643
>> Removing city A (0,15643)
 
remove 0 15644
>> Removing city A (0,15644)
 
remove 0 15645
>> Removing city A (0,15645)
 
remove 0 15646
>> Removing city A (0,15646)
 
remove 0 15647
>> Removing city A (0,15647)
 
remove 0 15648
>> Removing city A (0,15648)
 
remove 0 15649
>> Removing city A (0,15649)
 
remove 0 15650
>> Removing city A (0,15650)
 
remove 0 15651
>> Removing city A (0,15651)
 
remove 0 15652
>> Removing city A (0,15652)
 
remove 0 15653
>> Removing city A (0,15653)
 
remove 0 15654
>> Removing city A (0,15654)
 
remove 0 15655
>> Removing city A (0,15655)
 
remove 0 15656
>> Removing city A (0,15656)
 
remove 0 15657
>> Removing city A (0,15657)
 
remove 0 15658
>> Removing city A (0,15658)
 
remove 0 15659
>> Removing city A (0,15659)
 
remove 0 15660
>> Removing city A (0,15660)
 
remove 0 15661
>> Removing city A (0,15661)
 
remove 0 15662
>> Removing city A (0,15662)
 
remove 0 15663
>> Removing city A (0,15663)
 
remove 0 15664
>> Removing city A (0,15664)
 
remove 0 15665
>> Removing city A (0,15665)
 
remove 0 15666
>> Removing city A (0,15666)
 
remove 0 15667
>> Removing city A (0,15667)
 
remove 0 15668
>> Removing city A (0,15668)
 
remove 0 15669
>> Removing city A (0,15669)
 
remove 0 15670
>> Removing city A (0,15670)
 
remove 0 15671
>> Removing city A (0,15671)
 
remove 0 15672
>> Removing city A (0,15672)
 
remove 0 15673
>> Removing city A (0,15673)
 
remove 0 15674
>> Removing city A (0,15674)
 
remove 0 15675
>> Removing city A (0,15675)
 
remove 0 15676
>> Removing city A (0,15676)
 
remove 0 15677
>> Removing city A (0,15677)
 
remove 0 15678
>> Removing city A (0,15678)
 
remove 0 15679
>> Removing city A (0,15679)
 
remove 0 15680
>> Removing city A (0,15680)
 
remove 0 15681
>> Removing city A (0,15681)
 
remove 0 15682
>> Removing city A (0,15682)
 
remove 0 15683
>> Removing city A (0,15683)
 
remove 0 15684
>> Removing city A (0,15684)
 
remove 0 15685
>> Removing city A (0,15685)
 
remove 0 15686
>> Removing city A (0,15686)
 
remove 0 15687
>> Removing city A (0,15687)
 
remove 0 15688
>> Removing city A (0,15688)
 
remove 0 15689
>> Removing city A (0,15689)
 
remove 0 15690
>> Removing city A (0,15690)
 
remove 0 15691
>> Removing city A (0,15691)
 
remove 0 15692
>> Removing city A (0,15692)
 
remove 0 15693
>> Removing city A (0,15693)
 
remove 0 15694
>> Removing city A (0,15694)
 
remove 0 15695
>> Removing city A (0,15695)
 
remove 0 15696
>> Removing city A (0,15696)
 
remove 0 15697
>> Removing city A (0,15697)
 
remove 0 15698
>> Removing city A (0,15698)
 
remove 0 15699
>> Removing city A (0,15699)
 
remove 0 15700
>> Removing city A (0,15700)
 
remove 0 15701
>> Removing city A (0,15701)
 
remove 0 15702
>> Removing city A (0,15702)
 
remove 0 15703
>> Removing city A (0,15703)
 
remove 0 15704
>> Removing city A (0,15704)
 
remove 0 15705
>> Removing city A (0,15705)
 
remove 0 15706
>> Removing city A (0,15706)
 
remove 0 15707
>> Removing city A (0,15707)
 
remove 0 15708
>> Removing city A (0,15708)
 
remove 0 15709
>> Removing city A (0,15709)
 
remove 0 15710
>> Removing city A (0,15710)
 
remove 0 15711
>> Removing city A (0,15711)
 
remove 0 15712
>> Removing city A (0,15712)
 
remove 0 15713
>> Removing city A (0,15713)
 
remove 0 15714
>> Removing city A (0,15714)
 
remove 0 15715
>> Removing city A (0,15715)
 
remove 0 15716
>> Removing city A (0,15716)
 
remove 0 15717
>> Removing city A (0,15717)
 
remove 0 15718
>> Removing city A (0,15718)
 
remove 0 15719
>> Removing city A (0,15719)
 
remove 0 15720
>> Removing city A (0,15720)
 
remove 0 15721
>> Removing city A (0,15721)
 
remove 0 15722
>> Removing city A (0,15722)
 
remove 0 15723
>> Removing city A (0,15723)
 
remove 0 15724
>> Removing city A (0,15724)
 
remove 0 15725
>> Removing city A (0,15725)
 
remove 0 15726
>> Removing city A (0,15726)
 
remove 0 15727
>> Removing city A (0,15727)
 
remove 0 15728
>> Removing city A (0,15728)
 
remove 0 15729
>> Removing city A (0,15729)
 
remove 0 15730
>> Removing city A (0,15730)
 
remove 0 15731
>> Removing city A (0,15731)
 
remove 0 15732
>> Removing city A (0,15732)
 
remove 0 15733
>> Removing city A (0,15733)
 
remove 0 15734
>> Removing city A (0,15734)
 
remove 0 15735
>> Removing city A (0,15735)
 
remove 0 15736
>> Removing city A (0,15736)
 
remove 0 15737
>> Removing city A (0,15737)
 
remove 0 15738
>> Removing city A (0,15738)
 
remove 0 15739
>> Removing city A (0,15739)
 
remove 0 15740
>> Removing city A (0,15740)
 
remove 0 15741
>> Removing city A (0,15741)
 
remove 0 15742
>> Removing city A (0,15742)
 
remove 0 15743
>> Removing city A (0,15743)
 
remove 0 15744
>> Removing city A (0,15744)
 
remove 0 15745
>> Removing city A (0,15745)
 
remove 0 15746
>> Removing city A (0,15746)
 
remove 0 15747
>> Removing city A (0,15747)
 
remove 0 15748
>> Removing city A (0,15748)
 
remove 0 15749
>> Removing city A (0,15749)
 
remove 0 15750
>> Removing city A (0,15750)
 
remove 0 15751
>> Removing city A (0,15751)
 
remove 0 15752
>> Removing city A (0,15752)
 
remove 0 15753
>> Removing city A (0,15753)
 
remove 0 15754
>> Removing city A (0,15754)
 
remove 0 15755
>> Removing city A (0,15755)
 
remove 0 15756
>> Removing city A (0,15756)
 
remove 0 15757
>> Removing city A (0,15757)
 
remove 0 15758
>> Removing city A (0,15758)
 
remove 0 15759
>> Removing city A (0,15759)
 
remove 0 15760
>> Removing city A (0,15760)
 
remove 0 15761
>> Removing city A (0,15761)
 
remove 0 15762
>> Removing city A (0,15762)
 
remove 0 15763
>> Removing city A (0,15763)
 
remove 0 15764
>> Removing city A (0,15764)
 
remove 0 15765
>> Removing city A (0,15765)
 
remove 0 15766
>> Removing city A (0,15766)
 
remove 0 15767
>> Removing city A (0,15767)
 
remove 0 15768
>> Removing city A (0,15768)
 
remove 0 15769
>> Removing city A (0,15769)
 
remove 0 15770
>> Removing city A (0,15770)
 
remove 0 15771
>> Removing city A (0,15771)
 
remove 0 15772
>> Removing city A (0,15772)
 
remove 0 15773
>> Removing city A (0,15773)
 
remove 0 15774
>> Removing city A (0,15774)
 
remove 0 15775
>> Removing city A (0,15775)
 
remove 0 15776
>> Removing city A (0,15776)
 
remove 0 15777
>> Removing city A (0,15777)
 
remove 0 15778
>> Removing city A (0,15778)
 
remove 0 15779
>> Removing city A (0,15779)
 
remove 0 15780
>> Removing city A (0,15780)
 
remove 0 15781
>> Removing city A (0,15781)
 
remove 0 15782
>> Removing city A (0,15782)
 
remove 0 15783
>> Removing city A (0,15783)
 
remove 0 15784
>> Removing city A (0,15784)
 
remove 0 15785
>> Removing city A (0,15785)
 
remove 0 15786
>> Removing city A (0,15786)
 
remove 0 15787
>> Removing city A (0,15787)
 
remove 0 15788
>> Removing city A (0,15788)
 
remove 0 15789
>> Removing city A (0,15789)
 
remove 0 15790
>> Removing city A (0,15790)
 
remove 0 15791
>> Removing city A (0,15791)
 
remove 0 15792
>> Removing city A (0,15792)
 
remove 0 15793
>> Removing city A (0,15793)
 
remove 0 15794
>> Removing city A (0,15794)
 
remove 0 15795
>> Removing city A (0,15795)
 
remove 0 15796
>> Removing city A (0,15796)
 
remove 0 15797
>> Removing city A (0,15797)
 
remove 0 15798
>> Removing city A (0,15798)
 
remove 0 15799
>> Removing city A (0,15799)
 
remove 0 15800
>> Removing city A (0,15800)
 
remove 0 15801
>> Removing city A (0,15801)
 
remove 0 15802
>> Removing city A (0,15802)
 
remove 0 15803
>> Removing city A (0,15803)
 
remove 0 15804
>> Removing city A (0,15804)
 
remove 0 15805
>> Removing city A (0,15805)
 
remove 0 15806
>> Removing city A (0,15806)
 
remove 0 15807
>> Removing city A (0,15807)
 
remove 0 15808
>> Removing city A (0,15808)
 
remove 0 15809
>> Removing city A (0,15809)
 
remove 0 15810
>> Removing city A (0,15810)
 
remove 0 15811
>> Removing city A (0,15811)
 
remove 0 15812
>> Removing city A (0,15812)
 
remove 0 15813
>> Removing city A (0,15813)
 
remove 0 15814
>> Removing city A (0,15814)
 
remove 0 15815
>> Removing city A (0,15815)
 
remove 0 15816
>> Removing city A (0,15816)
 
remove 0 15817
>> Removing city A (0,15817)
 
remove 0 15818
>> Removing city A (0,15818)
 
remove 0 15819
>> Removing city A (0,15819)
 
remove 0 15820
>> Removing city A (0,15820)
 
remove 0 15821
>> Removing city A (0,15821)
 
remove 0 15822
>> Removing city A (0,15822)
 
remove 0 15823
>> Removing city A (0,15823)
 
remove 0 15824
>> Removing city A (0,15824)
 
remove 0 15825
>> Removing city A (0,15825)
 
remove 0 15826
>> Removing city A (0,15826)
 
remove 0 15827
>> Removing city A (0,15827)
 
remove 0 15828
>> Removing city A (0,15828)
 
remove 0 15829
>> Removing city A (0,15829)
 
remove 0 15830
>> Removing city A (0,15830)
 
remove 0 15831
>> Removing city A (0,15831)
 
remove 0 15832
>> Removing city A (0,15832)
 
remove 0 15833
>> Removing city A (0,15833)
 
remove 0 15834
>> Removing city A (0,15834)
 
remove 0 15835
>> Removing city A (0,15835)
 
remove 0 15836
>> Removing city A (0,15836)
 
remove 0 15837
>> Removing city A (0,15837)
 
remove 0 15838
>> Removing city A (0,15838)
 
remove 0 15839
>> Removing city A (0,15839)
 
remove 0 15840
>> Removing city A (0,15840)
 
remove 0 15841
>> Removing city A (0,15841)
 
remove 0 15842
>> Removing city A (0,15842)
 
remove 0 15843
>> Removing city A (0,15843)
 
remove 0 15844
>> Removing city A (0,15844)
 
remove 0 15845
>> Removing city A (0,15845)
 
remove 0 15846
>> Removing city A (0,15846)
 
remove 0 15847
>> Removing city A (0,15847)
 
remove 0 15848
>> Removing city A (0,15848)
 
remove 0 15849
>> Removing city A (0,15849)
 
remove 0 15850
>> Removing city A (0,15850)
 
remove 0 15851
>> Removing city A (0,15851)
 
remove 0 15852
>> Removing city A (0,15852)
 
remove 0 15853
>> Removing city A (0,15853)
 
remove 0 15854
>> Removing city A (0,15854)
 
remove 0 15855
>> Removing city A (0,15855)
 
remove 0 15856
>> Removing city A (0,15856)
 
remove 0 15857
>> Removing city A (0,15857)
 
remove 0 15858
>> Removing city A (0,15858)
 
remove 0 15859
>> Removing city A (0,15859)
 
remove 0 15860
>> Removing city A (0,15860)
 
remove 0 15861
>> Removing city A (0,15861)
 
remove 0 15862
>> Removing city A (0,15862)
 
remove 0 15863
>> Removing city A (0,15863)
 
remove 0 15864
>> Removing city A (0,15864)
 
remove 0 15865
>> Removing city A (0,15865)
 
remove 0 15866
>> Removing city A (0,15866)
 
remove 0 15867
>> Removing city A (0,15867)
 
remove 0 15868
>> Removing city A (0,15868)
 
remove 0 15869
>> Removing city A (0,15869)
 
remove 0 15870
>> Removing city A (0,15870)
 
remove 0 15871
>> Removing city A (0,15871)
 
remove 0 15872
>> Removing city A (0,15872)
 
remove 0 15873
>> Removing city A (0,15873)
 
remove 0 15874
>> Removing city A (0,15874)
 
remove 0 15875
>> Removing city A (0,15875)
 
remove 0 15876
>> Removing city A (0,15876)
 
remove 0 15877
>> Removing city A (0,15877)
 
remove 0 15878
>> Removing city A (0,15878)
 
remove 0 15879
>> Removing city A (0,15879)
 
remove 0 15880
>> Removing city A (0,15880)
 
remove 0 15881
>> Removing city A (0,15881)
 
remove 0 15882
>> Removing city A (0,15882)
 
remove 0 15883
>> Removing city A (0,15883)
 
remove 0 15884
>> Removing city A (0,15884)
 
remove 0 15885
>> Removing city A (0,15885)
 
remove 0 15886
>> Removing city A (0,15886)
 
remove 0 15887
>> Removing city A (0,15887)
 
remove 0 15888
>> Removing city A (0,15888)
 
remove 0 15889
>> Removing city A (0,15889)
 
remove 0 15890
>> Removing city A (0,15890)
 
remove 0 15891
>> Removing city A (0,15891)
 
remove 0 15892
>> Removing city A (0,15892)
 
remove 0 15893
>> Removing city A (0,15893)
 
remove 0 15894
>> Removing city A (0,15894)
 
remove 0 15895
>> Removing city A (0,15895)
 
remove 0 15896
>> Removing city A (0,15896)
 
remove 0 15897
>> Removing city A (0,15897)
 
remove 0 15898
>> Removing city A (0,15898)
 
remove 0 15899
>> Removing city A (0,15899)
 
remove 0 15900
>> Removing city A (0,15900)
 
remove 0 15901
>> Removing city A (0,15901)
 
remove 0 15902
>> Removing city A (0,15902)
 
remove 0 15903
>> Removing city A (0,15903)
 
remove 0 15904
>> Removing city A (0,15904)
 
remove 0 15905
>> Removing city A (0,15905)
 
remove 0 15906
>> Removing city A (0,15906)
 
remove 0 15907
>> Removing city A (0,15907)
 
remove 0 15908
>> Removing city A (0,15908)
 
remove 0 15909
>> Removing city A (0,15909)
 
remove 0 15910
>> Removing city A (0,15910)
 
remove 0 15911
>> Removing city A (0,15911)
 
remove 0 15912
>> Removing city A (0,15912)
 
remove 0 15913
>> Removing city A (0,15913)
 
remove 0 15914
>> Removing city A (0,15914)
 
remove 0 15915
>> Removing city A (0,15915)
 
remove 0 15916
>> Removing city A (0,15916)
 
remove 0 15917
>> Removing city A (0,15917)
 
remove 0 15918
>> Removing city A (0,15918)
 
remove 0 15919
>> Removing city A (0,15919)
 
remove 0 15920
>> Removing city A (0,15920)
 
remove 0 15921
>> Removing city A (0,15921)
 
remove 0 15922
>> Removing city A (0,15922)
 
remove 0 15923
>> Removing city A (0,15923)
 
remove 0 15924
>> Removing city A (0,15924)
 
remove 0 15925
>> Removing city A (0,15925)
 
remove 0 15926
>> Removing city A (0,15926)
 
remove 0 15927
>> Removing city A (0,15927)
 
remove 0 15928
>> Removing city A (0,15928)
 
remove 0 15929
>> Removing city A (0,15929)
 
remove 0 15930
>> Removing city A (0,15930)
 
remove 0 15931
>> Removing city A (0,15931)
 
remove 0 15932
>> Removing city A (0,15932)
 
remove 0 15933
>> Removing city A (0,15933)
 
remove 0 15934
>> Removing city A (0,15934)
 
remove 0 15935
>> Removing city A (0,15935)
 
remove 0 15936
>> Removing city A (0,15936)
 
remove 0 15937
>> Removing city A (0,15937)
 
remove 0 15938
>> Removing city A (0,15938)
 
remove 0 15939
>> Removing city A (0,15939)
 
remove 0 15940
>> Removing city A (0,15940)
 
remove 0 15941
>> Removing city A (0,15941)
 
remove 0 15942
>> Removing city A (0,15942)
 
remove 0 15943
>> Removing city A (0,15943)
 
remove 0 15944
>> Removing city A (0,15944)
 
remove 0 15945
>> Removing city A (0,15945)
 
remove 0 15946
>> Removing city A (0,15946)
 
remove 0 15947
>> Removing city A (0,15947)
 
remove 0 15948
>> Removing city A (0,15948)
 
remove 0 15949
>> Removing city A (0,15949)
 
remove 0 15950
>> Removing city A (0,15950)
 
remove 0 15951
>> Removing city A (0,15951)
 
remove 0 15952
>> Removing city A (0,15952)
 
remove 0 15953
>> Removing city A (0,15953)
 
remove 0 15954
>> Removing city A (0,15954)
 
remove 0 15955
>> Removing city A (0,15955)
 
remove 0 15956
>> Removing city A (0,15956)
 
remove 0 15957
>> Removing city A (0,15957)
 
remove 0 15958
>> Removing city A (0,15958)
 
remove 0 15959
>> Removing city A (0,15959)
 
remove 0 15960
>> Removing city A (0,15960)
 
remove 0 15961
>> Removing city A (0,15961)
 
remove 0 15962
>> Removing city A (0,15962)
 
remove 0 15963
>> Removing city A (0,15963)
 
remove 0 15964
>> Removing city A (0,15964)
 
remove 0 15965
>> Removing city A (0,15965)
 
remove 0 15966
>> Removing city A (0,15966)
 
remove 0 15967
>> Removing city A (0,15967)
 
remove 0 15968
>> Removing city A (0,15968)
 
remove 0 15969
>> Removing city A (0,15969)
 
remove 0 15970
>> Removing city A (0,15970)
 
remove 0 15971
>> Removing city A (0,15971)
 
remove 0 15972
>> Removing city A (0,15972)
 
remove 0 15973
>> Removing city A (0,15973)
 
remove 0 15974
>> Removing city A (0,15974)
 
remove 0 15975
>> Removing city A (0,15975)
 
remove 0 15976
>> Removing city A (0,15976)
 
remove 0 15977
>> Removing city A (0,15977)
 
remove 0 15978
>> Removing city A (0,15978)
 
remove 0 15979
>> Removing city A (0,15979)
 
remove 0 15980
>> Removing city A (0,15980)
 
remove 0 15981
>> Removing city A (0,15981)
 
remove 0 15982
>> Removing city A (0,15982)
 
remove 0 15983
>> Removing city A (0,15983)
 
remove 0 15984
>> Removing city A (0,15984)
 
remove 0 15985
>> Removing city A (0,15985)
 
remove 0 15986
>> Removing city A (0,15986)
 
remove 0 15987
>> Removing city A (0,15987)
 
remove 0 15988
>> Removing city A (0,15988)
 
remove 0 15989
>> Removing city A (0,15989)
 
remove 0 15990
>> Removing city A (0,15990)
 
remove 0 15991
>> Removing city A (0,15991)
 
remove 0 15992
>> Removing city A (0,15992)
 
remove 0 15993
>> Removing city A (0,15993)
 
remove 0 15994
>> Removing city A (0,15994)
 
remove 0 15995
>> Removing city A (0,15995)
 
remove 0 15996
>> Removing city A (0,15996)
 
remove 0 15997
>> Removing city A (0,15997)
 
remove 0 15998
>> Removing city A (0,15998)
 
remove 0 15999
>> Removing city A (0,15999)
 
remove 0 16000
>> Removing city A (0,16000)
 
remove 0 16001
>> Removing city A (0,16001)
 
remove 0 16002
>> Removing city A (0,16002)
 
remove 0 16003
>> Removing city A (0,16003)
 
remove 0 16004
>> Removing city A (0,16004)
 
remove 0 16005
>> Removing city A (0,16005)
 
remove 0 16006
>> Removing city A (0,16006)
 
remove 0 16007
>> Removing city A (0,16007)
 
remove 0 16008
>> Removing city A (0,16008)
 
remove 0 16009
>> Removing city A (0,16009)
 
remove 0 16010
>> Removing city A (0,16010)
 
remove 0 16011
>> Removing city A (0,16011)
 
remove 0 16012
>> Removing city A (0,16012)
 
remove 0 16013
>> Removing city A (0,16013)
 
remove 0 16014
>> Removing city A (0,16014)
 
remove 0 16015
>> Removing city A (0,16015)
 
remove 0 16016
>> Removing city A (0,16016)
 
remove 0 16017
>> Removing city A (0,16017)
 
remove 0 16018
>> Removing city A (0,16018)
 
remove 0 16019
>> Removing city A (0,16019)
 
remove 0 16020
>> Removing city A (0,16020)
 
remove 0 16021
>> Removing city A (0,16021)
 
remove 0 16022
>> Removing city A (0,16022)
 
remove 0 16023
>> Removing city A (0,16023)
 
remove 0 16024
>> Removing city A (0,16024)
 
remove 0 16025
>> Removing city A (0,16025)
 
remove 0 16026
>> Removing city A (0,16026)
 
remove 0 16027
>> Removing city A (0,16027)
 
remove 0 16028
>> Removing city A (0,16028)
 
remove 0 16029
>> Removing city A (0,16029)
 
remove 0 16030
>> Removing city A (0,16030)
 
remove 0 16031
>> Removing city A (0,16031)
 
remove 0 16032
>> Removing city A (0,16032)
 
remove 0 16033
>> Removing city A (0,16033)
 
remove 0 16034
>> Removing city A (0,16034)
 
remove 0 16035
>> Removing city A (0,16035)
 
remove 0 16036
>> Removing city A (0,16036)
 
remove 0 16037
>> Removing city A (0,16037)
 
remove 0 16038
>> Removing city A (0,16038)
 
remove 0 16039
>> Removing city A (0,16039)
 
remove 0 16040
>> Removing city A (0,16040)
 
remove 0 16041
>> Removing city A (0,16041)
 
remove 0 16042
>> Removing city A (0,16042)
 
remove 0 16043
>> Removing city A (0,16043)
 
remove 0 16044
>> Removing city A (0,16044)
 
remove 0 16045
>> Removing city A (0,16045)
 
remove 0 16046
>> Removing city A (0,16046)
 
remove 0 16047
>> Removing city A (0,16047)
 
remove 0 16048
>> Removing city A (0,16048)
 
remove 0 16049
>> Removing city A (0,16049)
 
remove 0 16050
>> Removing city A (0,16050)
 
remove 0 16051
>> Removing city A (0,16051)
 
remove 0 16052
>> Removing city A (0,16052)
 
remove 0 16053
>> Removing city A (0,16053)
 
remove 0 16054
>> Removing city A (0,16054)
 
remove 0 16055
>> Removing city A (0,16055)
 
remove 0 16056
>> Removing city A (0,16056)
 
remove 0 16057
>> Removing city A (0,16057)
 
remove 0 16058
>> Removing city A (0,16058)
 
remove 0 16059
>> Removing city A (0,16059)
 
remove 0 16060
>> Removing city A (0,16060)
 
remove 0 16061
>> Removing city A (0,16061)
 
remove 0 16062
>> Removing city A (0,16062)
 
remove 0 16063
>> Removing city A (0,16063)
 
remove 0 16064
>> Removing city A (0,16064)
 
remove 0 16065
>> Removing city A (0,16065)
 
remove 0 16066
>> Removing city A (0,16066)
 
remove 0 16067
>> Removing city A (0,16067)
 
remove 0 16068
>> Removing city A (0,16068)
 
remove 0 16069
>> Removing city A (0,16069)
 
remove 0 16070
>> Removing city A (0,16070)
 
remove 0 16071
>> Removing city A (0,16071)
 
remove 0 16072
>> Removing city A (0,16072)
 
remove 0 16073
>> Removing city A (0,16073)
 
remove 0 16074
>> Removing city A (0,16074)
 
remove 0 16075
>> Removing city A (0,16075)
 
remove 0 16076
>> Removing city A (0,16076)
 
remove 0 16077
>> Removing city A (0,16077)
 
remove 0 16078
>> Removing city A (0,16078)
 
remove 0 16079
>> Removing city A (0,16079)
 
remove 0 16080
>> Removing city A (0,16080)
 
remove 0 16081
>> Removing city A (0,16081)
 
remove 0 16082
>> Removing city A (0,16082)
 
remove 0 16083
>> Removing city A (0,16083)
 
remove 0 16084
>> Removing city A (0,16084)
 
remove 0 16085
>> Removing city A (0,16085)
 
remove 0 16086
>> Removing city A (0,16086)
 
remove 0 16087
>> Removing city A (0,16087)
 
remove 0 16088
>> Removing city A (0,16088)
 
remove 0 16089
>> Removing city A (0,16089)
 
remove 0 16090
>> Removing city A (0,16090)
 
remove 0 16091
>> Removing city A (0,16091)
 
remove 0 16092
>> Removing city A (0,16092)
 
remove 0 16093
>> Removing city A (0,16093)
 
remove 0 16094
>> Removing city A (0,16094)
 
remove 0 16095
>> Removing city A (0,16095)
 
remove 0 16096
>> Removing city A (0,16096)
 
remove 0 16097
>> Removing city A (0,16097)
 
remove 0 16098
>> Removing city A (0,16098)
 
remove 0 16099
>> Removing city A (0,16099)
 
remove 0 16100
>> Removing city A (0,16100)
 
remove 0 16101
>> Removing city A (0,16101)
 
remove 0 16102
>> Removing city A (0,16102)
 
remove 0 16103
>> Removing city A (0,16103)
 
remove 0 16104
>> Removing city A (0,16104)
 
remove 0 16105
>> Removing city A (0,16105)
 
remove 0 16106
>> Removing city A (0,16106)
 
remove 0 16107
>> Removing city A (0,16107)
 
remove 0 16108
>> Removing city A (0,16108)
 
remove 0 16109
>> Removing city A (0,16109)
 
remove 0 16110
>> Removing city A (0,16110)
 
remove 0 16111
>> Removing city A (0,16111)
 
remove 0 16112
>> Removing city A (0,16112)
 
remove 0 16113
>> Removing city A (0,16113)
 
remove 0 16114
>> Removing city A (0,16114)
 
remove 0 16115
>> Removing city A (0,16115)
 
remove 0 16116
>> Removing city A (0,16116)
 
remove 0 16117
>> Removing city A (0,16117)
 
remove 0 16118
>> Removing city A (0,16118)
 
remove 0 16119
>> Removing city A (0,16119)
 
remove 0 16120
>> Removing city A (0,16120)
 
remove 0 16121
>> Removing city A (0,16121)
 
remove 0 16122
>> Removing city A (0,16122)
 
remove 0 16123
>> Removing city A (0,16123)
 
remove 0 16124
>> Removing city A (0,16124)
 
remove 0 16125
>> Removing city A (0,16125)
 
remove 0 16126
>> Removing city A (0,16126)
 
remove 0 16127
>> Removing city A (0,16127)
 
remove 0 16128
>> Removing city A (0,16128)
 
remove 0 16129
>> Removing city A (0,16129)
 
remove 0 16130
>> Removing city A (0,16130)
 
remove 0 16131
>> Removing city A (0,16131)
 
remove 0 16132
>> Removing city A (0,16132)
 
remove 0 16133
>> Removing city A (0,16133)
 
remove 0 16134
>> Removing city A (0,16134)
 
remove 0 16135
>> Removing city A (0,16135)
 
remove 0 16136
>> Removing city A (0,16136)
 
remove 0 16137
>> Removing city A (0,16137)
 
remove 0 16138
>> Removing city A (0,16138)
 
remove 0 16139
>> Removing city A (0,16139)
 
remove 0 16140
>> Removing city A (0,16140)
 
remove 0 16141
>> Removing city A (0,16141)
 
remove 0 16142
>> Removing city A (0,16142)
 
remove 0 16143
>> Removing city A (0,16143)
 
remove 0 16144
>> Removing city A (0,16144)
 
remove 0 16145
>> Removing city A (0,16145)
 
remove 0 16146
>> Removing city A (0,16146)
 
remove 0 16147
>> Removing city A (0,16147)
 
remove 0 16148
>> Removing city A (0,16148)
 
remove 0 16149
>> Removing city A (0,16149)
 
remove 0 16150
>> Removing city A (0,16150)
 
remove 0 16151
>> Removing city A (0,16151)
 
remove 0 16152
>> Removing city A (0,16152)
 
remove 0 16153
>> Removing city A (0,16153)
 
remove 0 16154
>> Removing city A (0,16154)
 
remove 0 16155
>> Removing city A (0,16155)
 
remove 0 16156
>> Removing city A (0,16156)
 
remove 0 16157
>> Removing city A (0,16157)
 
remove 0 16158
>> Removing city A (0,16158)
 
remove 0 16159
>> Removing city A (0,16159)
 
remove 0 16160
>> Removing city A (0,16160)
 
remove 0 16161
>> Removing city A (0,16161)
 
remove 0 16162
>> Removing city A (0,16162)
 
remove 0 16163
>> Removing city A (0,16163)
 
remove 0 16164
>> Removing city A (0,16164)
 
remove 0 16165
>> Removing city A (0,16165)
 
remove 0 16166
>> Removing city A (0,16166)
 
remove 0 16167
>> Removing city A (0,16167)
 
remove 0 16168
>> Removing city A (0,16168)
 
remove 0 16169
>> Removing city A (0,16169)
 
remove 0 16170
>> Removing city A (0,16170)
 
remove 0 16171
>> Removing city A (0,16171)
 
remove 0 16172
>> Removing city A (0,16172)
 
remove 0 16173
>> Removing city A (0,16173)
 
remove 0 16174
>> Removing city A (0,16174)
 
remove 0 16175
>> Removing city A (0,16175)
 
remove 0 16176
>> Removing city A (0,16176)
 
remove 0 16177
>> Removing city A (0,16177)
 
remove 0 16178
>> Removing city A (0,16178)
 
remove 0 16179
>> Removing city A (0,16179)
 
remove 0 16180
>> Removing city A (0,16180)
 
remove 0 16181
>> Removing city A (0,16181)
 
remove 0 16182
>> Removing city A (0,16182)
 
remove 0 16183
>> Removing city A (0,16183)
 
remove 0 16184
>> Removing city A (0,16184)
 
remove 0 16185
>> Removing city A (0,16185)
 
remove 0 16186
>> Removing city A (0,16186)
 
remove 0 16187
>> Removing city A (0,16187)
 
remove 0 16188
>> Removing city A (0,16188)
 
remove 0 16189
>> Removing city A (0,16189)
 
remove 0 16190
>> Removing city A (0,16190)
 
remove 0 16191
>> Removing city A (0,16191)
 
remove 0 16192
>> Removing city A (0,16192)
 
remove 0 16193
>> Removing city A (0,16193)
 
remove 0 16194
>> Removing city A (0,16194)
 
remove 0 16195
>> Removing city A (0,16195)
 
remove 0 16196
>> Removing city A (0,16196)
 
remove 0 16197
>> Removing city A (0,16197)
 
remove 0 16198
>> Removing city A (0,16198)
 
remove 0 16199
>> Removing city A (0,16199)
 
remove 0 16200
>> Removing city A (0,16200)
 
remove 0 16201
>> Removing city A (0,16201)
 
remove 0 16202
>> Removing city A (0,16202)
 
remove 0 16203
>> Removing city A (0,16203)
 
remove 0 16204
>> Removing city A (0,16204)
 
remove 0 16205
>> Removing city A (0,16205)
 
remove 0 16206
>> Removing city A (0,16206)
 
remove 0 16207
>> Removing city A (0,16207)
 
remove 0 16208
>> Removing city A (0,16208)
 
remove 0 16209
>> Removing city A (0,16209)
 
remove 0 16210
>> Removing city A (0,16210)
 
remove 0 16211
>> Removing city A (0,16211)
 
remove 0 16212
>> Removing city A (0,16212)
 
remove 0 16213
>> Removing city A (0,16213)
 
remove 0 16214
>> Removing city A (0,16214)
 
remove 0 16215
>> Removing city A (0,16215)
 
remove 0 16216
>> Removing city A (0,16216)
 
remove 0 16217
>> Removing city A (0,16217)
 
remove 0 16218
>> Removing city A (0,16218)
 
remove 0 16219
>> Removing city A (0,16219)
 
remove 0 16220
>> Removing city A (0,16220)
 
remove 0 16221
>> Removing city A (0,16221)
 
remove 0 16222
>> Removing city A (0,16222)
 
remove 0 16223
>> Removing city A (0,16223)
 
remove 0 16224
>> Removing city A (0,16224)
 
remove 0 16225
>> Removing city A (0,16225)
 
remove 0 16226
>> Removing city A (0,16226)
 
remove 0 16227
>> Removing city A (0,16227)
 
remove 0 16228
>> Removing city A (0,16228)
 
remove 0 16229
>> Removing city A (0,16229)
 
remove 0 16230
>> Removing city A (0,16230)
 
remove 0 16231
>> Removing city A (0,16231)
 
remove 0 16232
>> Removing city A (0,16232)
 
remove 0 16233
>> Removing city A (0,16233)
 
remove 0 16234
>> Removing city A (0,16234)
 
remove 0 16235
>> Removing city A (0,16235)
 
remove 0 16236
>> Removing city A (0,16236)
 
remove 0 16237
>> Removing city A (0,16237)
 
remove 0 16238
>> Removing city A (0,16238)
 
remove 0 16239
>> Removing city A (0,16239)
 
remove 0 16240
>> Removing city A (0,16240)
 
remove 0 16241
>> Removing city A (0,16241)
 
remove 0 16242
>> Removing city A (0,16242)
 
remove 0 16243
>> Removing city A (0,16243)
 
remove 0 16244
>> Removing city A (0,16244)
 
remove 0 16245
>> Removing city A (0,16245)
 
remove 0 16246
>> Removing city A (0,16246)
 
remove 0 16247
>> Removing city A (0,16247)
 
remove 0 16248
>> Removing city A (0,16248)
 
remove 0 16249
>> Removing city A (0,16249)
 
remove 0 16250
>> Removing city A (0,16250)
 
remove 0 16251
>> Removing city A (0,16251)
 
remove 0 16252
>> Removing city A (0,16252)
 
remove 0 16253
>> Removing city A (0,16253)
 
remove 0 16254
>> Removing city A (0,16254)
 
remove 0 16255
>> Removing city A (0,16255)
 
remove 0 16256
>> Removing city A (0,16256)
 
remove 0 16257
>> Removing city A (0,16257)
 
remove 0 16258
>> Removing city A (0,16258)
 
remove 0 16259
>> Removing city A (0,16259)
 
remove 0 16260
>> Removing city A (0,16260)
 
remove 0 16261
>> Removing city A (0,16261)
 
remove 0 16262
>> Removing city A (0,16262)
 
remove 0 16263
>> Removing city A (0,16263)
 
remove 0 16264
>> Removing city A (0,16264)
 
remove 0 16265
>> Removing city A (0,16265)
 
remove 0 16266
>> Removing city A (0,16266)
 
remove 0 16267
>> Removing city A (0,16267)
 
remove 0 16268
>> Removing city A (0,16268)
 
remove 0 16269
>> Removing city A (0,16269)
 
remove 0 16270
>> Removing city A (0,16270)
 
remove 0 16271
>> Removing city A (0,16271)
 
remove 0 16272
>> Removing city A (0,16272)
 
remove 0 16273
>> Removing city A (0,16273)
 
remove 0 16274
>> Removing city A (0,16274)
 
remove 0 16275
>> Removing city A (0,16275)
 
remove 0 16276
>> Removing city A (0,16276)
 
remove 0 16277
>> Removing city A (0,16277)
 
remove 0 16278
>> Removing city A (0,16278)
 
remove 0 16279
>> Removing city A (0,16279)
 
remove 0 16280
>> Removing city A (0,16280)
 
remove 0 16281
>> Removing city A (0,16281)
 
remove 0 16282
>> Removing city A (0,16282)
 
remove 0 16283
>> Removing city A (0,16283)
 
remove 0 16284
>> Removing city A (0,16284)
 
remove 0 16285
>> Removing city A (0,16285)
 
remove 0 16286
>> Removing city A (0,16286)
 
remove 0 16287
>> Removing city A (0,16287)
 
remove 0 16288
>> Removing city A (0,16288)
 
remove 0 16289
>> Removing city A (0,16289)
 
remove 0 16290
>> Removing city A (0,16290)
 
remove 0 16291
>> Removing city A (0,16291)
 
remove 0 16292
>> Removing city A (0,16292)
 
remove 0 16293
>> Removing city A (0,16293)
 
remove 0 16294
>> Removing city A (0,16294)
 
remove 0 16295
>> Removing city A (0,16295)
 
remove 0 16296
>> Removing city A (0,16296)
 
remove 0 16297
>> Removing city A (0,16297)
 
remove 0 16298
>> Removing city A (0,16298)
 
remove 0 16299
>> Removing city A (0,16299)
 
remove 0 16300
>> Removing city A (0,16300)
 
remove 0 16301
>> Removing city A (0,16301)
 
remove 0 16302
>> Removing city A (0,16302)
 
remove 0 16303
>> Removing city A (0,16303)
 
remove 0 16304
>> Removing city A (0,16304)
 
remove 0 16305
>> Removing city A (0,16305)
 
remove 0 16306
>> Removing city A (0,16306)
 
remove 0 16307
>> Removing city A (0,16307)
 
remove 0 16308
>> Removing city A (0,16308)
 
remove 0 16309
>> Removing city A (0,16309)
 
remove 0 16310
>> Removing city A (0,16310)
 
remove 0 16311
>> Removing city A (0,16311)
 
remove 0 16312
>> Removing city A (0,16312)
 
remove 0 16313
>> Removing city A (0,16313)
 
remove 0 16314
>> Removing city A (0,16314)
 
remove 0 16315
>> Removing city A (0,16315)
 
remove 0 16316
>> Removing city A (0,16316)
 
remove 0 16317
>> Removing city A (0,16317)
 
remove 0 16318
>> Removing city A (0,16318)
 
remove 0 16319
>> Removing city A (0,16319)
 
remove 0 16320
>> Removing city A (0,16320)
 
remove 0 16321
>> Removing city A (0,16321)
 
remove 0 16322
>> Removing city A (0,16322)
 
remove 0 16323
>> Removing city A (0,16323)
 
remove 0 16324
>> Removing city A (0,16324)
 
remove 0 16325
>> Removing city A (0,16325)
 
remove 0 16326
>> Removing city A (0,16326)
 
remove 0 16327
>> Removing city A (0,16327)
 
remove 0 16328
>> Removing city A (0,16328)
 
remove 0 16329
>> Removing city A (0,16329)
 
remove 0 16330
>> Removing city A (0,16330)
 
remove 0 16331
>> Removing city A (0,16331)
 
remove 0 16332
>> Removing city A (0,16332)
 
remove 0 16333
>> Removing city A (0,16333)
 
remove 0 16334
>> Removing city A (0,16334)
 
remove 0 16335
>> Removing city A (0,16335)
 
remove 0 16336
>> Removing city A (0,16336)
 
remove 0 16337
>> Removing city A (0,16337)
 
remove 0 16338
>> Removing city A (0,16338)
 
remove 0 16339
>> Removing city A (0,16339)
 
remove 0 16340
>> Removing city A (0,16340)
 
remove 0 16341
>> Removing city A (0,16341)
 
remove 0 16342
>> Removing city A (0,16342)
 
remove 0 16343
>> Removing city A (0,16343)
 
remove 0 16344
>> Removing city A (0,16344)
 
remove 0 16345
>> Removing city A (0,16345)
 
remove 0 16346
>> Removing city A (0,16346)
 
remove 0 16347
>> Removing city A (0,16347)
 
remove 0 16348
>> Removing city A (0,16348)
 
remove 0 16349
>> Removing city A (0,16349)
 
remove 0 16350
>> Removing city A (0,16350)
 
remove 0 16351
>> Removing city A (0,16351)
 
remove 0 16352
>> Removing city A (0,16352)
 
remove 0 16353
>> Removing city A (0,16353)
 
remove 0 16354
>> Removing city A (0,16354)
 
remove 0 16355
>> Removing city A (0,16355)
 
remove 0 16356
>> Removing city A (0,16356)
 
remove 0 16357
>> Removing city A (0,16357)
 
remove 0 16358
>> Removing city A (0,16358)
 
remove 0 16359
>> Removing city A (0,16359)
 
remove 0 16360
>> Removing city A (0,16360)
 
remove 0 16361
>> Removing city A (0,16361)
 
remove 0 16362
>> Removing city A (0,16362)
 
remove 0 16363
>> Removing city A (0,16363)
 
remove 0 16364
>> Removing city A (0,16364)
 
remove 0 16365
>> Removing city A (0,16365)
 
remove 0 16366
>> Removing city A (0,16366)
 
remove 0 16367
>> Removing city A (0,16367)
 
remove 0 16368
>> Removing city A (0,16368)
 
remove 0 16369
>> Removing city A (0,16369)
 
remove 0 16370
>> Removing city A (0,16370)
 
remove 0 16371
>> Removing city A (0,16371)
 
remove 0 16372
>> Removing city A (0,16372)
 
remove 0 16373
>> Removing city A (0,16373)
 
remove 0 16374
>> Removing city A (0,16374)
 
remove 0 16375
>> Removing city A (0,16375)
 
remove 0 16376
>> Removing city A (0,16376)
 
remove 0 16377
>> Removing city A (0,16377)
 
remove 0 16378
>> Removing city A (0,16378)
 
remove 0 16379
>> Removing city A (0,16379)
 
remove 0 16380
>> Removing city A (0,16380)
 
remove 0 16381
>> Removing city A (0,16381)
 
remove 0 16382
>> Removing city A (0,16382)
 
remove 0 16383
>> Removing city A (0,16383)
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_syntax
0,0 → 1,53
 
makenull
insert -1 1597 Blacksburg
insert 16384 4 Blacksburg
insert 16383 16834 Blacksburg
insert 8581 -8581 Blacksburg
insert 5001 5012 Blacksburg
insert 5001 5012 Christiansburg
insert 5001 6213 Blacksburg
insert 5001 8414 Christiansburg
insert 0 0 Floyd
insert 16383 16383 Virginia_Beach
debug
 
 
 
 
find Blacksbrug
find Blacksburg
remove -160 15958
remove 0 -15958
remove 581 3851
 
remove 5001 5012
 
remove 5001 5012
 
remove Blacksbrug
remove Christiansburg
 
 
 
 
 
 
 
 
 
 
insert 5002 1019 Radford
search 0 16893 1
search 100 159 -1
 
search -100 159 500
search 0 68 1000000
search 5000 5000 100
 
 
 
makenull
debug
 
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_syntax result.txt
0,0 → 1,90
makenull
>> Makenull successful
 
insert -1 1597 Blacksburg
>> Insert failed: Coordinate values out of range
 
insert 16384 4 Blacksburg
>> Insert failed: Coordinate values out of range
 
insert 16383 16834 Blacksburg
>> Insert failed: Coordinate values out of range
 
insert 8581 -8581 Blacksburg
>> Insert failed: Coordinate values out of range
 
insert 5001 5012 Blacksburg
>> Inserting city Blacksburg (5001,5012)
 
insert 5001 5012 Christiansburg
>> Insert failed: City at (5001,5012) already exists
 
insert 5001 6213 Blacksburg
>> Inserting city Blacksburg (5001,6213)
 
insert 5001 8414 Christiansburg
>> Inserting city Christiansburg (5001,8414)
 
insert 0 0 Floyd
>> Inserting city Floyd (0,0)
 
insert 16383 16383 Virginia_Beach
>> Inserting city Virginia_Beach (16383,16383)
 
debug
>> I5001,5012,Blacksburg5001,6213,Blacksburg0,0,Floyd|E5001,8414,Christiansburg|16383,16383,Virginia_Beach|
 
find Blacksbrug
>> Find failed: City Blacksbrug not found
 
find Blacksburg
>> City found: Blacksburg (5001,5012)
>> City found: Blacksburg (5001,6213)
 
remove -160 15958
>> Remove failed: Coordinate values out of range
 
remove 0 -15958
>> Remove failed: Coordinate values out of range
 
remove 581 3851
>> Remove failed: City with coordinates (581,3851) not found
 
remove 5001 5012
>> Removing city Blacksburg (5001,5012)
 
remove 5001 5012
>> Remove failed: City with coordinates (5001,5012) not found
 
remove Blacksbrug
>> Remove failed: City Blacksbrug not found
 
remove Christiansburg
>> Removing city Christiansburg (5001,8414)
 
insert 5002 1019 Radford
>> Inserting city Radford (5002,1019)
 
search 0 16893 1
>> Search failed: Coordinate values out of range
 
search 100 159 -1
>> Search failed: Radius value out of range
 
search -100 159 500
>> 2 nodes visited:
>> Floyd (0,0)
 
search 0 68 1000000
>> Search failed: Radius value out of range
 
search 5000 5000 100
>> 2 nodes visited:
>> No records found with specified coordinates
 
makenull
>> Makenull successful
 
debug
>> E
 
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/_syntaxOutput
0,0 → 1,137
/*
A few notes:
You don't have to slavishly copy my output style and content (though it will make it easier for me to grade :grin:). Just make sure the output you provide is meaningful and relevant.
 
The order in which the records of a single leaf node are printed is not important, as long as all the records are printed.
 
The search command is supposed to output the number of quadtree nodes searched. I included both the number of leaf nodes and the number of leaf+internal nodes, because the project description is vague on this point.
*/
 
 
 
START
-----
makenull
 
Database initialized.
-----
insert -1 1597 Blacksburg
 
Insert failed. Given x-coordinate is out of range.
-----
insert 16384 4 Blacksburg
 
Insert failed. Given x-coordinate is out of range.
-----
insert 16383 16834 Blacksburg
 
Insert failed. Given y-coordinate is out of range.
-----
insert 8581 -8581 Blacksburg
 
Insert failed. Given y-coordinate is out of range.
-----
insert 5001 5012 Blacksburg
 
Blacksburg (5001,5002) stored.
-----
insert 5001 5012 Christiansburg
 
Insert failed. Another record exists at given location.
-----
insert 5001 6213 Blacksburg
 
Blacksburg (5001,6213) stored.
-----
insert 5001 8414 Christiansburg
 
Christiansburg (5001,8414) stored.
-----
insert 0 0 Floyd
 
Floyd (0,0) stored.
-----
insert 16383 16383 Virginia_Beach
 
Virginia_Beach (16383,16383) stored.
-----
debug
 
I0,0,Floyd5001,5012,Blacksburg5001,6213,Blacksburg|E5001,8414,Christiansburg|16383,16383,Virginia_Beach|
-----
find Blacksbrug
 
0 matches found.
-----
find Blacksburg
 
Blacksburg (5001,5012)
Blacksburg (5001,6213)
2 matches found.
-----
remove -160 15958
 
Remove failed. Given x-coordinate is out of range.
-----
remove 0 -15958
 
Remove failed. Given y-coordinate is out of range.
-----
remove 581 3851
 
Remove failed. No record found at given location.
-----
remove 5001 5012
 
Blacksburg (5001,5012) deleted.
-----
remove 5001 5012
 
Remove failed. No record found at given location.
-----
remove Blacksbrug
 
Remove failed. No record found with given name.
-----
remove Christiansburg
 
Christiansburg (5001,8414) deleted.
-----
insert 5002 1019 Radford
 
Radford (5002,1019) stored.
-----
search 0 16893 1
 
Search failed. Given x-coordinate is out of range.
-----
search 100 159 -1
 
Search failed. Negative search radius given.
-----
search -100 159 500
 
Floyd (0,0)
1 city found. 2 PRQuadTree nodes (1 leaf) searched.
-----
search 0 68 1000000
 
Floyd (0,0)
Radford (5002,1019)
Blacksburg (5001,6213)
Virginia_Beach (16383,16383)
4 cities found. 5 PRQuadTree nodes (4 leaves) searched.
-----
search 5000 5000 100
 
0 cities found. 2 PRQuadTree nodes (1 leaf) searched.
-----
makenull
 
Database cleared. All records deleted.
-----
debug
 
E
-----
STOP
/Classwork/CS3114 - Data Algorithms/Project 2/P2test/p2TestsReadme.txt
0,0 → 1,42
These are the command files used to test and grade your Project 2
submission.
 
_syntax
This is the command file that was posted on the course website. This
is used primarily for testing the correctness of your command
parser.
_syntaxOutput
This is an example of correct program output if _syntax is used as the
command file.
 
_alphabet
This is a command file that inserts a set of twenty-six records into
the trees. Each record is named after a letter of the alphabet, and is
located at (n,n), where n is an integer in the set [0,25]. Used
primarily for testing the insertion, removal, and search methods
in your binary search tree. It also tests your quadtree.
 
_grid-4x4-IR
This is a command file that inserts a set of 16 records into the
trees. The records are all named 'A', and form a 4x4 grid within the
quadtree space. After insertion, the quadtree will have 3 levels, 5
internal nodes and 16 leaf nodes, each containing 1 record "in the
top-left corner". The file then removes all of the records by
coordinates. Used primarily for testing your quadtree's insertion and
removal methods.
 
_grid-4x4-IR-rmName
This is a varation of _grid-4x4-IR which removes all of the
records by name. Used primarily for testing the removal method in your
BST.
 
_grid-4x4-IR-searchMid
This is a variation of _grid-4x4-IR, in which a number of region
searches are conducted. Used primarily for testing your quadtree's
search method.
 
_seq-16384-IR
This is a command file that inserts a set of 16384 records into the
trees. The records are all named 'A', and have coordinates (0,0),
(0,1), (0,2), ..., (0,16382), (0,16383). After the insertions are
complete, the file then removes all of the records.
/Classwork/CS3114 - Data Algorithms/Project 2/PRProg.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRProg.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRProg.java
0,0 → 1,86
/*
* CS 3114 Project 2
* Author: Kevin Lee
* Compiler: Eclipse 3.7.0
* Operating System: Windows 7 x64
* Date Completed: 10/7/2011
*
* The following program is an implementation of two different
* trees that allows for efficient storing of records with
* coordinates. A binary search tree is used to allow for
* efficient search by name, while a point region quad tree is
* used to allow for efficient search by coordinates. The
* program parses an input file for commands, and outputs the
* results to standard out.
*
* On my honor:
*
* - I have not used source code obtained from another student,
* or any other unauthorized source, either modified or
* unmodified.
*
* - All source code and documentation used in my program is
* either my original work, or was derived by me from the
* source code published in the textbook for this course.
*
* - I have not discussed coding details about this project with
* anyone other than my partner (in the case of a joint
* submission), instructor, ACM/UPE tutors or the TAs assigned
* to this course. I understand that I may discuss the concepts
* of this program with other students, and that another student
* may help me debug my program so long as neither of us writes
* anything during the discussion or modifies any computer file
* during the discussion. I have violated neither the spirit nor
* letter of this restriction.
*/
 
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
 
public class PRProg {
 
public static void main(String[] args) {
 
String input_commandFile; // Location of file to parse
 
// 3 arguments must be supplied to the program
if (args.length != 1) {
System.out.println("1 Arguments must be supplied!");
return;
}
 
// Parses passed arguments into member variables
input_commandFile = args[0];
 
// Check to make sure the command file exists
File cmdFile = new File(input_commandFile);
if (!cmdFile.exists()) {
System.out.printf("Command file not found");
return;
}
CmdParser GISParser = new CmdParser();
// Parse each command with the memory client
try {
BufferedReader reader = new BufferedReader(new FileReader(cmdFile));
String cin;
while ((cin = reader.readLine()) != null) {
cin = cin.trim();
if (cin.length() != 0) {
// Send string to command parser
GISParser.Parse(cin);
}
}
} catch (FileNotFoundException e) {
System.out.printf("Command file not found");
return;
} catch (IOException e) {
System.out.printf("Unable to read input file");
return;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTree.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTree.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTree.java
0,0 → 1,257
import java.util.LinkedList;
import java.lang.Math;
 
// Somewhat generic implementation of a PR QuadTree
public class PRQuadTree {
private PRQuadTreeNode root; // Root of the PR QuadTree
private PRQuadTreeNodeFlyweight flyweight; // Flyweight representing empty nodes
private int maxSize = 16384; // Maximum size of the grid
// Constructor
public PRQuadTree() {
// Initialize a singleton flyweight object
flyweight = new PRQuadTreeNodeFlyweight();
root = flyweight;
}
// Inserts given record into the tree
public void insert(Record record) {
// Recursively call function to insert a record
this.root = insertRecursive(root, record, 0, 0, maxSize, maxSize);
}
// Removes a record from the tree given a set of coordinates
public void remove(int x, int y) {
// Recursively call function to remove a record
this.root = removeRecursive(root, x, y, 0, 0, maxSize, maxSize);
}
// Searches for all records within radius and returns the results in the passed list
public int search(int x, int y, int r, LinkedList<Record> results) {
// Searches for all cities in radius of given point
// Number of nodes looked at is returned while list of cities is stored in 'list'
return searchRecursive(root, x, y, r, results, 0, 0, maxSize, maxSize);
}
// Removes all records from the tree
public void clear() {
// Set root to the flyweight to remove all nodes
root = flyweight;
}
// Prints out all records from the tree
public void debug(PRQuadTreeNode root) {
// If root is the flyweight ...
if (root == flyweight) {
System.out.printf("E");
// If root is a leaf ...
} else if (root instanceof PRQuadTreeNodeLeaf) {
Record record = ((PRQuadTreeNodeLeaf) root).getFirst();
do {
System.out.printf("%d,%d,%s", record.getX(), record.getY(), ((CityRecord) record).getName());
record = ((PRQuadTreeNodeLeaf) root).getNext(record);
} while (record != null);
System.out.printf("|");
// If root is an internal node ...
} else {
System.out.printf("I");
debug(((PRQuadTreeNodeInternal) root).getNW());
debug(((PRQuadTreeNodeInternal) root).getNE());
debug(((PRQuadTreeNodeInternal) root).getSW());
debug(((PRQuadTreeNodeInternal) root).getSE());
}
}
// Returns the root of the tree
public PRQuadTreeNode getRoot() {
return root;
}
// Recursively insert a record into a root node
private PRQuadTreeNode insertRecursive(PRQuadTreeNode root, Record record, int originX, int originY, int sizeX, int sizeY) {
// If root is the flyweight, create and return a leaf node with the record
if (root == flyweight) {
PRQuadTreeNodeLeaf newLeaf = new PRQuadTreeNodeLeaf(3);
newLeaf.insert(record);
return newLeaf;
// If root is a leaf ...
} else if (root instanceof PRQuadTreeNodeLeaf) {
// Try to insert the record into the leaf, return leaf if successful
if (((PRQuadTreeNodeLeaf) root).insert(record)) {
return root;
// Otherwise all nodes in the leaf are filled
} else {
// Create new internal node and populate it with flyweights
PRQuadTreeNodeInternal newNode = new PRQuadTreeNodeInternal(flyweight);
// Get the first record to insert into the internal node
Record rec = ((PRQuadTreeNodeLeaf) root).getFirst();
do {
// Insert every record from the full leaf into the internal node
newNode = (PRQuadTreeNodeInternal) insertRecursive(newNode, rec, originX, originY, sizeX, sizeY);
} while ((rec = ((PRQuadTreeNodeLeaf) root).getNext(rec)) != null);
// Now insert the initial record into the internal node
newNode = (PRQuadTreeNodeInternal) insertRecursive(newNode, record, originX, originY, sizeX, sizeY);
// Return the newly created internal node
return newNode;
}
// If root is an internal node ...
} else {
// Insert the record into the correct quadrant
if (record.getX() < originX + sizeX/2 && record.getY() < originY + sizeY/2) {
// Insert into NW quadrant
((PRQuadTreeNodeInternal) root).setNW(insertRecursive(((PRQuadTreeNodeInternal) root).getNW(), record, originX, originY, sizeX/2, sizeY/2));
} else if (record.getX() >= originX + sizeX/2 && record.getY() < originY + sizeY/2) {
// Insert into NE quadrant
((PRQuadTreeNodeInternal) root).setNE(insertRecursive(((PRQuadTreeNodeInternal) root).getNE(), record, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY/2));
} else if (record.getX() < originX + sizeX/2 && record.getY() >= originY + sizeY/2) {
// Insert into SW quadrant
((PRQuadTreeNodeInternal) root).setSW(insertRecursive(((PRQuadTreeNodeInternal) root).getSW(), record, originX, originY + sizeY/2, sizeX/2, sizeY - sizeY/2));
} else if (record.getX() >= originX + sizeX/2 && record.getY() >= originY + sizeY/2) {
// Insert into SE quadrant
((PRQuadTreeNodeInternal) root).setSE(insertRecursive(((PRQuadTreeNodeInternal) root).getSE(), record, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2));
}
// Return the internal node after inserting a record into it
return root;
}
}
// Recursively remove a record from a root node given the coordinates
private PRQuadTreeNode removeRecursive(PRQuadTreeNode root, int x, int y, int originX, int originY, int sizeX, int sizeY) {
// If root is the flyweight, return the root
if (root == flyweight) {
return root;
// If root is a leaf ...
} else if (root instanceof PRQuadTreeNodeLeaf) {
// Try to remove element from the leaf
((PRQuadTreeNodeLeaf) root).remove(x, y);
// If the leaf is empty, return the flyweight
if (root.isEmpty())
return flyweight;
else
return root;
// If root is an internal node ...
} else {
// Remove the record from the correct quadrant
if (x < originX + sizeX/2 && y < originY + sizeY/2) {
// Insert into NW quadrant
((PRQuadTreeNodeInternal) root).setNW(removeRecursive(((PRQuadTreeNodeInternal) root).getNW(), x, y, originX, originY, sizeX/2, sizeY/2));
} else if (x >= originX + sizeX/2 && y < originY + sizeY/2) {
// Insert into NE quadrant
((PRQuadTreeNodeInternal) root).setNE(removeRecursive(((PRQuadTreeNodeInternal) root).getNE(), x, y, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY/2));
} else if (x < originX + sizeX/2 && y >= originY + sizeY/2) {
// Insert into SW quadrant
((PRQuadTreeNodeInternal) root).setSW(removeRecursive(((PRQuadTreeNodeInternal) root).getSW(), x, y, originX, originY + sizeY/2, sizeX/2, sizeY - sizeY/2));
} else if (x >= originX + sizeX/2 && y >= originY + sizeY/2) {
// Insert into SE quadrant
((PRQuadTreeNodeInternal) root).setSE(removeRecursive(((PRQuadTreeNodeInternal) root).getSE(), x, y, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2));
}
// Return a flyweight if the internal node is empty after removal
if (root.isEmpty()) {
return flyweight;
// Otherwise if the internal node contains all leaves or flyweights ...
} else if (((PRQuadTreeNodeInternal) root).containsAllLeavesOrFlyweight()) {
// If the number of records in subleaves is under 3, create and return a new leaf holding all records
if (((PRQuadTreeNodeInternal) root).countOfAllLeafNodes() <= 3) {
PRQuadTreeNodeLeaf newLeaf = new PRQuadTreeNodeLeaf(3);
if (((PRQuadTreeNodeInternal) root).countOfLeafNode(((PRQuadTreeNodeInternal) root).getNW()) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)((PRQuadTreeNodeInternal) root).getNW());
}
if (((PRQuadTreeNodeInternal) root).countOfLeafNode(((PRQuadTreeNodeInternal) root).getNE()) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)((PRQuadTreeNodeInternal) root).getNE());
}
if (((PRQuadTreeNodeInternal) root).countOfLeafNode(((PRQuadTreeNodeInternal) root).getSW()) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)((PRQuadTreeNodeInternal) root).getSW());
}
if (((PRQuadTreeNodeInternal) root).countOfLeafNode(((PRQuadTreeNodeInternal) root).getSE()) != 0) {
newLeaf.insert((PRQuadTreeNodeLeaf)((PRQuadTreeNodeInternal) root).getSE());
}
// Return the new leaf that holds all records from the internal node
return newLeaf;
// If there are more than 3 records in subleaves, return the internal node
} else {
return root;
}
// Otherwise return the internal node if it contains internal nodes
} else {
return root;
}
}
}
// Recursively searches for records within radius of given coordinates
private int searchRecursive(PRQuadTreeNode root, int x, int y, int radius, LinkedList<Record> results, int originX, int originY, int sizeX, int sizeY) {
// If root is the flyweight ...
if (root == flyweight) {
return 1;
// If root is a leaf ...
} else if (root instanceof PRQuadTreeNodeLeaf) {
// Loop through each record in the leaf node
Record record = ((PRQuadTreeNodeLeaf) root).getFirst();
do { // Note: the first record can never be null (else it'll be a flyweight)
// Check each record to see if it lies within the specified radius of the point
if ((x - record.getX()) * (x - record.getX()) +
(y - record.getY()) * (y - record.getY()) <= radius * radius) {
// If it is, add it to the list
results.add(record);
}
record = ((PRQuadTreeNodeLeaf) root).getNext(record);
} while (record != null);
// Return the number of nodes looked at (1, this node)
return 1;
// If root is an internal node ...
} else {
int ret = 0;
// Check each quadrant to see if any intersect with the circle/radius
// NW quadrant
if (intersects(x, y, radius, sizeX/2.0, sizeY/2.0, originX + (sizeX-1)/4.0, originY + (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) root).getNW(), x, y, radius, results, originX, originY, sizeX/2, sizeY/2);
}
// NE quadrant
if (intersects(x, y, radius, sizeX - sizeX/2.0, sizeY/2.0, originX + (sizeX-1) - (sizeX-1)/4.0, originY + (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) root).getNE(), x, y, radius, results, originX + sizeX/2, originY, sizeX - sizeX/2, sizeY - sizeY/2);
}
// SW quadrant
if (intersects(x, y, radius, sizeX/2.0, sizeY - sizeY/2.0, originX + (sizeX-1)/4.0, originY + (sizeY-1) - (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) root).getSW(), x, y, radius, results, originX, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2);
}
// SE quadrant
if (intersects(x, y, radius, sizeX - sizeX/2.0, sizeY - sizeY/2.0, originX + (sizeX-1) - (sizeX-1)/4.0, originY + (sizeY-1) - (sizeY-1)/4.0)) {
ret += searchRecursive(((PRQuadTreeNodeInternal) root).getSE(), x, y, radius, results, originX + sizeX/2, originY + sizeY/2, sizeX - sizeX/2, sizeY - sizeY/2);
}
ret++;
return ret;
}
}
// Calculates if any points in a circle intersects with a rectangle
private boolean intersects(int cX, int cY, int cR, double rW, double rH, double rX, double rY) {
// Reference: http://stackoverflow.com/questions/401847/circle-rectangle-collision-detection-intersection/402010#402010
// Distance from center of circle to center of rectangle
double xCircleDistance = Math.abs(cX - rX);
double yCircleDistance = Math.abs(cY - rY);
// If Distance > width of rectangle + radius, circle cannot overlap rectangle
if (xCircleDistance > (rW/2 + cR)) {
return false;
}
if (yCircleDistance > (rH/2 + cR)) {
return false;
}
// If distance <= width of rectangle, circle must overlap rectangle
if (xCircleDistance <= (rW/2)) {
return true;
}
if (yCircleDistance <= (rH/2)) {
return true;
}
 
// Check for overlap on corners
double cornerDist = (xCircleDistance - rW/2) * (xCircleDistance - rW/2) +
(yCircleDistance - rH/2) * (yCircleDistance - rH/2);
 
return (cornerDist <= cR * cR);
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNode.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNode.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNode.java
0,0 → 1,5
 
// Interface for a generic PRQuadTree node
public interface PRQuadTreeNode {
public boolean isEmpty();
}
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeFlyweight.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeFlyweight.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeFlyweight.java
0,0 → 1,7
 
public class PRQuadTreeNodeFlyweight implements PRQuadTreeNode {
 
public boolean isEmpty() {
return true;
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeInternal.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeInternal.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeInternal.java
0,0 → 1,80
 
// Internal node for the PRQuadTree
public class PRQuadTreeNodeInternal implements PRQuadTreeNode {
// Node in each quadrant
private PRQuadTreeNode NW;
private PRQuadTreeNode NE;
private PRQuadTreeNode SW;
private PRQuadTreeNode SE;
private PRQuadTreeNodeFlyweight flyweight; // Flyweight
// Constructor to initialize the node with flyweights
public PRQuadTreeNodeInternal(PRQuadTreeNodeFlyweight flyweight) {
// Initialize all subnodes with the flyweight
NW = NE = SW = SE = flyweight;
this.flyweight = flyweight;
}
// Queries if all subnodes are flyweights
public boolean isEmpty() {
return (NW == flyweight)&&(NE == flyweight)&&
(SW == flyweight)&&(SE == flyweight);
}
// Test if node contains other internal nodes
public boolean containsAllLeavesOrFlyweight() {
// Queries if all subnodes are either leaves or flyweights
return (NW instanceof PRQuadTreeNodeLeaf || NW instanceof PRQuadTreeNodeFlyweight)&&
(NE instanceof PRQuadTreeNodeLeaf || NE instanceof PRQuadTreeNodeFlyweight)&&
(SW instanceof PRQuadTreeNodeLeaf || SW instanceof PRQuadTreeNodeFlyweight)&&
(SE instanceof PRQuadTreeNodeLeaf || SE instanceof PRQuadTreeNodeFlyweight);
}
// Returns the number of all records in all subleaves
public int countOfAllLeafNodes() {
int ret = 0;
if (NW instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) NW).getCount();
if (NE instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) NE).getCount();
if (SW instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) SW).getCount();
if (SE instanceof PRQuadTreeNodeLeaf)
ret += ((PRQuadTreeNodeLeaf) SE).getCount();
return ret;
}
// Returns the number of records in a node if it is a leaf node
public int countOfLeafNode(PRQuadTreeNode node) {
if (node instanceof PRQuadTreeNodeLeaf)
return ((PRQuadTreeNodeLeaf) node).getCount();
else
return 0;
}
// Encapsulation functions
public PRQuadTreeNode getNW() {
return NW;
}
public void setNW(PRQuadTreeNode nW) {
NW = nW;
}
public PRQuadTreeNode getNE() {
return NE;
}
public void setNE(PRQuadTreeNode nE) {
NE = nE;
}
public PRQuadTreeNode getSW() {
return SW;
}
public void setSW(PRQuadTreeNode sW) {
SW = sW;
}
public PRQuadTreeNode getSE() {
return SE;
}
public void setSE(PRQuadTreeNode sE) {
SE = sE;
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeLeaf.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeLeaf.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/PRQuadTreeNodeLeaf.java
0,0 → 1,119
 
// Leaf node for the PRQuadTree
public class PRQuadTreeNodeLeaf implements PRQuadTreeNode {
private Record[] records; // Array holding the records in the leaf
private int numOfRecords; // Number of records in the leaf
// Initialize a new leaf node that holds 'size' records
public PRQuadTreeNodeLeaf(int size) {
records = new Record[size];
numOfRecords = size;
}
// Inserts each record from input leaf into current leaf
public void insert(PRQuadTreeNodeLeaf leaf) {
Record record = leaf.getFirst();
do {
this.insert(record);
record = leaf.getNext(record);
}
while (record != null);
}
// Inserts a record into the current leaf
public boolean insert(Record in) {
if (in == null)
return true;
boolean ret = false;
// If all records are filled, return false
for (Record record : records) {
if (record == null) {
ret = true;
break;
}
}
if (ret != false) {
// Otherwise insert record into the first avalaible slot
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == null) {
records[i] = in;
break;
}
}
}
return ret;
}
// Removes a record from the leaf given a set of coordinates
public Record remove(int x, int y) {
Record ret = null;
// Check if any of the records have matching coordinates
ret = find(x, y);
if (ret != null) {
// If record is found, return record and shift other records forward
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == ret) {
// Shift records forward
for (int j = i; j < numOfRecords; j++) {
if (j+1 < numOfRecords)
records[j] = records[j+1];
else
records[j] = null;
}
break;
}
}
}
return ret;
}
// Returns a record with the specified coordinates if it exists
public Record find(int x, int y) {
Record ret = null;
// Check if any records have matching coordinates
for (Record record : records) {
if (record != null && record.getX() == x && record.getY() == y) {
// Return the record if found
ret = record;
break;
}
}
return ret;
}
// Returns the first record in the leaf node
public Record getFirst() {
return records[0];
}
// Returns the next record given a record
public Record getNext(Record record) {
Record ret = null;
for (int i = 0; i < numOfRecords; i++) {
if (records[i] == record) {
if (i+1 < numOfRecords)
ret = records[i+1];
break;
}
}
return ret;
}
// Returns the number of records in the leaf node
public int getCount() {
int ret = 0;
for (int i = 0; i < numOfRecords; i++) {
if (records[i] != null)
ret++;
else
break;
}
return ret;
}
// If first record is empty, the entire leaf is empty
public boolean isEmpty() {
return (records[0] == null);
}
}
/Classwork/CS3114 - Data Algorithms/Project 2/Record.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/Record.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/Record.java
0,0 → 1,6
 
// Interface for a generic record for the BSTree or PRQuadTree
public interface Record {
public int getX();
public int getY();
}
/Classwork/CS3114 - Data Algorithms/Project 2/Schedule.xls
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 2/Schedule.xls
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 2/p2SyntaxTest.txt
0,0 → 1,54
 
 
makenull
insert -1 1597 Blacksburg
insert 16384 4 Blacksburg
insert 16383 16834 Blacksburg
insert 8581 -8581 Blacksburg
insert 5001 5012 Blacksburg
insert 5001 5012 Christiansburg
insert 5001 6213 Blacksburg
insert 5001 8414 Christiansburg
insert 0 0 Floyd
insert 16383 16383 Virginia_Beach
debug
 
 
 
 
find Blacksbrug
find Blacksburg
remove -160 15958
remove 0 -15958
remove 581 3851
 
remove 5001 5012
 
remove 5001 5012
 
remove Blacksbrug
remove Christiansburg
 
 
 
 
 
 
 
 
 
 
insert 5002 1019 Radford
search 0 16893 1
search 100 159 -1
 
search -100 159 500
search 0 68 1000000
search 5000 5000 100
 
 
 
makenull
debug
 
 
/Classwork/CS3114 - Data Algorithms/Project 2/p2SyntaxTestOutput.txt
0,0 → 1,94
makenull
>> Makenull operation successful
 
insert -1 1597 Blacksburg
>> Insert rejected, bad X coordinate
 
insert 16384 4 Blacksburg
>> Insert rejected, bad X coordinate
 
insert 16383 16834 Blacksburg
>> Insert rejected, bad Y coordinate
 
insert 8581 -8581 Blacksburg
>> Insert rejected, bad Y coordinate
 
insert 5001 5012 Blacksburg
>> Insert operation successful
 
insert 5001 5012 Christiansburg
>> Insert rejected, coordinates duplicate an existing city record
 
insert 5001 6213 Blacksburg
>> Insert operation successful
 
insert 5001 8414 Christiansburg
>> Insert operation successful
 
insert 0 0 Floyd
>> Insert operation successful
 
insert 16383 16383 Virginia_Beach
>> Insert operation successful
 
debug
>> I5001,5012,Blacksburg5001,6213,Blacksburg0,0,Floyd|E5001,8414,Christiansburg|16383,16383,virginia_Beach|
 
find Blacksbrug
>> City record(s) found:
>> No records
 
find Blacksburg
>> City Records found:
>> 5001, 5012, Blacksburg
>> 5001, 6213, Blacksburg
 
remove -160 15958
>> Remove operation failed: Bad X coordinate
[The Y coordinate is also bad, but one error is sufficient to report]
 
remove 0 -15958
>> Remove operation failed: Bad Y coordinate
 
remove 581 3851
>> No such City Record found
 
remove 5001 5012
>> Removed 5001, 5012, Blacksburg
 
remove 5001 5012
>> No such City Record found
 
remove Blacksbrug
>> No such City Record found
 
remove Christiansburg
>> Removed 5001, 8414, Christiansburg
 
insert 5002 1019 Radford
>> Insert operation successful
 
search 0 16893 1
>> Search operation failed: Bad Y value
 
search 100 159 -1
>> Search operation failed: Bad radius value
 
search -100 159 500
>> City record(s) found:
>> 0, 0, Floyd
>> 2 nodes visited
 
search 0 68 1000000
>> Search operation failed: Bad radius value
 
search 5000 5000 100
>> City record(s) found:
>> No such record
>> 2 nodes visited
 
makenull
>> Makenull operation successful
 
debug
>> E
/Classwork/CS3114 - Data Algorithms/Project 1/.classpath
0,0 → 1,6
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="output" path=""/>
</classpath>
/Classwork/CS3114 - Data Algorithms/Project 1/.project
0,0 → 1,17
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CS3114P1</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
/Classwork/CS3114 - Data Algorithms/Project 1/.settings/org.eclipse.jdt.core.prefs
0,0 → 1,12
#Fri Aug 26 18:05:55 EDT 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
/Classwork/CS3114 - Data Algorithms/Project 1/ByteStringConverter.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/ByteStringConverter.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/ByteStringConverter.java
0,0 → 1,40
import java.nio.ByteBuffer;
 
// Assisting class for MemClient to convert values to a byte array and vice versa
public class ByteStringConverter {
// Converts the passed string array into a byte array
public static byte[] convertToByteArray(int int1, int int2, String str) {
// Use ByteBuffer to serialize to bytes
byte[] byteArray = new byte[8 + str.length()];
byte[] bstr = str.getBytes();
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
// Insert passed values into the byte array
buffer.putInt(int1);
buffer.putInt(int2);
buffer.put(bstr);
return byteArray;
}
 
// Converts the byte array into a string array
public static String[] convertToStringArray(byte[] byteArray) {
// Array of values to return from byte array
String[] strArray = new String[3];
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
int int1 = buffer.getInt();
int int2 = buffer.getInt();
byte[] bstr = new byte[byteArray.length - 8];
buffer.get(bstr);
// Pull values from byte array into string array
strArray[0] = Integer.toString(int1);
strArray[1] = Integer.toString(int2);
strArray[2] = new String(bstr);
return strArray;
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/DoubleLinkedList.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/DoubleLinkedList.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/DoubleLinkedList.java
0,0 → 1,138
// Class for managing the linked list of free blocks
public class DoubleLinkedList {
 
private LinkedListEntry head; // Start of linked list
 
public void insert(LinkedListEntry entry) {
 
boolean adjacencyFound = false; // Adjacency flag
 
// Create the first entry if there are none existing
if (head == null) {
head = entry;
head.setNextBlock(null);
head.setPrevBlock(null);
return;
}
 
LinkedListEntry current = head;
// Check to see if adjacent entries exist
while (current != null) {
if (current.getStartAddress() == entry.getEndAddress() + 1) {
// Entry is adjacent to start of current
LinkedListEntry newEntry = new LinkedListEntry(entry.getStartAddress(),
current.getEndAddress(), entry.getSize() + current.getSize());
remove(current.getStartAddress());
insert(newEntry);
adjacencyFound = true;
break;
}
if (current.getEndAddress() == entry.getStartAddress() - 1) {
// Entry is adjacent to end of current
LinkedListEntry newEntry = new LinkedListEntry(current.getStartAddress(),
entry.getEndAddress(), current.getSize() + entry.getSize());
remove(current.getStartAddress());
insert(newEntry);
adjacencyFound = true;
break;
}
current = current.getNextBlock();
}
 
// Otherwise insert entry into sorted list (by size)
current = head;
if (!adjacencyFound && (entry.getSize() > current.getSize())) {
// Insert into beginning of list if size is largest
entry.setNextBlock(current);
current.setPrevBlock(entry);
head = entry;
return;
} else if (!adjacencyFound) {
// Otherwise find location to insert into
LinkedListEntry prev = head;
while (prev.getNextBlock() != null) {
current = prev.getNextBlock();
if (entry.getSize() == current.getSize()) {
// Sort by address location in accending order
if (entry.getStartAddress() < current.getStartAddress()) {
// Insert before current
entry.setNextBlock(current);
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
current.setPrevBlock(entry);
return;
} else {
// Insert after current
prev = current;
if (prev.getNextBlock() != null) {
current = prev.getNextBlock();
entry.setNextBlock(current);
current.setPrevBlock(entry);
}
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
return;
}
} else if (entry.getSize() > current.getSize()) {
// Insert block between prev and current
entry.setNextBlock(current);
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
current.setPrevBlock(entry);
return;
} else {
// Otherwise continue searching
prev = current;
}
}
// Insert into end of list
entry.setPrevBlock(prev);
prev.setNextBlock(entry);
}
}
 
// Deletes an entry from the list, returns true if address is found
public boolean remove(int address) {
// First check if list is empty
if (head == null) {
return false;
} else {
// Otherwise loop through and fine entry
LinkedListEntry entry = head;
do {
if (entry.getStartAddress() == address) {
if (entry.getPrevBlock() == null && entry.getNextBlock() == null) {
// Deletes entry (only entry in list)
head = null;
} else if (entry.getPrevBlock() == null && entry.getNextBlock() != null) {
// Deletes entry (first in list)
head = entry.getNextBlock();
head.setPrevBlock(null);
} else if (entry.getPrevBlock() != null && entry.getNextBlock() == null) {
// Deletes entry (last in list)
entry.getPrevBlock().setNextBlock(null);
} else {
// Deletes entry (in between two entries)
LinkedListEntry prev = entry.getPrevBlock();
prev.setNextBlock(entry.getNextBlock());
entry.getNextBlock().setPrevBlock(prev);
}
return true;
}
entry = entry.getNextBlock();
} while (entry != null);
}
return false;
}
 
// Returns an entry from the list with the passed address
public LinkedListEntry getFirstEntry() {
// First check if list is empty
if (head == null) {
return null;
} else {
// Otherwise return head entry
return head;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/Handle.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/Handle.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/Handle.java
0,0 → 1,17
// Handle passed to and from MemManager
public class Handle {
private int address; // Location of block in memory pool
 
public Handle(int addr) {
this.address = addr;
}
public int getAddress() {
return address;
}
 
public void setAddress(int address) {
this.address = address;
}
 
}
/Classwork/CS3114 - Data Algorithms/Project 1/LinkedListEntry.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/LinkedListEntry.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/LinkedListEntry.java
0,0 → 1,46
// Individual entries in the linked list
public class LinkedListEntry {
private int startAddress; // Start address of free block
private int endAddress; // End address of free block
private int size; // Total size of free block
private LinkedListEntry nextBlock; // Pointer to next block in list
private LinkedListEntry prevBlock; // Pointer to previous block in list
// Constructor
public LinkedListEntry(int start, int end, int size){
this.startAddress = start;
this.endAddress = end;
this.size = size;
setNextBlock(null);
setPrevBlock(null);
}
public int getStartAddress() {
return startAddress;
}
public int getEndAddress() {
return endAddress;
}
public int getSize() {
return size;
}
public LinkedListEntry getNextBlock() {
return nextBlock;
}
public void setNextBlock(LinkedListEntry nextBlock) {
this.nextBlock = nextBlock;
}
 
public LinkedListEntry getPrevBlock() {
return prevBlock;
}
public void setPrevBlock(LinkedListEntry prevBlock) {
this.prevBlock = prevBlock;
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/MemClient.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/MemClient.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/MemClient.java
0,0 → 1,126
// Memory client that interfaces with MemManager
public class MemClient {
private Handle[] recordArray; // Client's array of handles
private MemManager memoryManager; // Instance of a memory manager
public MemClient(int input_numRecs, int input_poolSize) {
// Initialize the record array and create a new memory manager
recordArray = new Handle[input_numRecs];
memoryManager = new MemManager(input_poolSize);
}
public void processLine(String line) {
// Split the passed line into tokens
String delim = "[ ]+";
String[] tokens = line.split(delim);
// Parse tokens to determine what action to take
if (tokens[0].compareToIgnoreCase("insert") == 0) {
processInsertCommand(tokens, recordArray, memoryManager);
} else if (tokens[0].compareToIgnoreCase("remove") == 0) {
processRemoveCommand(tokens, recordArray, memoryManager);
} else if (tokens[0].compareToIgnoreCase("print") == 0) {
processPrintCommand(tokens, recordArray, memoryManager);
} else {
System.out.printf("\"%s\" command is not supported\n", tokens[0]);
}
}
public void processInsertCommand(String[] tokens, Handle[] recordArray, MemManager memoryManager) {
// Process insert command
if (tokens.length != 5) {
System.out.printf("Arguments must be in format \"insert recnum x y name\"\n");
} else {
try {
// Check for array bounds for record array
int recordID = Integer.parseInt(tokens[1]);
if (recordID < 0 || recordID > recordArray.length - 1) {
System.out.printf("Arguments out of bound\n");
} else {
// Delete record in record array if it exists
if (recordArray[recordID] != null) {
memoryManager.remove(recordArray[recordID]);
recordArray[recordID] = null;
}
// Serialize to byte array and send to memory manager
int xpos = Integer.parseInt(tokens[2]);
int ypos = Integer.parseInt(tokens[3]);
byte[] buffer = ByteStringConverter.convertToByteArray(xpos, ypos, tokens[4]);
Handle retHandle = memoryManager.insert(buffer, buffer.length);
if (retHandle == null) {
System.out.printf("No free space is avaliable to store the record\n");
} else {
// Save returned handle to the record array
recordArray[recordID] = retHandle;
}
}
} catch (NumberFormatException e) {
System.out.printf("Error attempting to parse int values\n");
}
}
}
public void processRemoveCommand(String[] tokens, Handle[] recordArray, MemManager memoryManager) {
// Process remove command
if (tokens.length != 2) {
System.out.printf("A record ID must be supplied\n");
} else {
try {
int recordID = Integer.parseInt(tokens[1]);
if (recordID < 0 || recordID > recordArray.length - 1) {
System.out.printf("Arguments out of bound\n");
} else {
// Remove record from record array if it exists
if (recordArray[recordID] != null) {
memoryManager.remove(recordArray[recordID]);
recordArray[recordID] = null;
} else {
System.out.printf("No record found for record ID %d\n", recordID);
}
}
} catch (NumberFormatException e) {
System.out.printf("Error attempting to parse int values\n");
}
}
}
public void processPrintCommand(String[] tokens, Handle[] recordArray, MemManager memoryManager) {
byte[] fromPool = new byte[255];
// Process print command
if (tokens.length == 1) {
// Print out every entry in recordArray
for (int i = 0; i < recordArray.length; i++) {
if (recordArray[i] != null) {
fromPool = new byte[255];
System.out.printf("Record #%d at address %d: ", i, recordArray[i].getAddress());
memoryManager.get(fromPool, recordArray[i], 255);
String[] strArray = ByteStringConverter.convertToStringArray(fromPool);
System.out.printf("%s (%s,%s)\n", strArray[2].trim(), strArray[0], strArray[1]);
}
}
// Print out free block list
memoryManager.dump();
} else if (tokens.length == 2) {
// Print out specified record
try {
int recordID = Integer.parseInt(tokens[1]);
if (recordID < 0 || recordID > recordArray.length - 1) {
System.out.printf("Arguments out of bound\n");
} else {
if (recordArray[recordID] != null) {
// Get and print out record
memoryManager.get(fromPool, recordArray[recordID], 255);
String[] strArray = ByteStringConverter.convertToStringArray(fromPool);
System.out.printf("Record #%d: %s (%s,%s)\n", recordID, strArray[2].trim(), strArray[0], strArray[1]);
} else {
System.out.printf("No record found for record ID %d\n", recordID);
}
}
} catch (NumberFormatException e) {
System.out.printf("Error attempting to parse int values\n");
}
} else {
System.out.printf("Invalud number of arguments\n");
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/MemManager.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/MemManager.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/MemManager.java
0,0 → 1,117
import java.nio.ByteBuffer;
 
// Memory manager that operates on the memory pool
public class MemManager {
 
private byte[] memoryPool; // Byte array representing the memory pool
private DoubleLinkedList emptyBlockList; // List of free blocks
 
// Constructor
public MemManager(int poolsize) {
// Initialize memory pool and list of free blocks
memoryPool = new byte[poolsize];
emptyBlockList = new DoubleLinkedList();
 
// Create the first empty block of the pool size
LinkedListEntry newEntry = new LinkedListEntry(0, poolsize - 1, poolsize);
emptyBlockList.insert(newEntry);
}
 
// Insert a record and return its position handle.
// space contains the record to be inserted, of length size.
public Handle insert(byte[] space, int size) {
LinkedListEntry start = emptyBlockList.getFirstEntry();
if (start == null) {
// There are no free blocks
return null;
}
if ((size + 1) > start.getSize()) {
// Size to insert is greater than size of largest free block
return null;
}
while (start != null) {
if (start.getNextBlock() == null) {
// Current block is last block in list, insert into current block
Handle newHandle = insertDataIntoMemPool(start, space, size);
return newHandle;
} else if ((size + 1) > start.getNextBlock().getSize()) {
// Best fit block found, insert into current block
Handle newHandle = insertDataIntoMemPool(start, space, size);
return newHandle;
}
// Otherwise keep searching for best fit block
start = start.getNextBlock();
}
return null;
}
 
// Free a block at address. Merge adjacent blocks if appropriate.
public void remove(Handle handle) {
short size = getDataBlockSize(handle.getAddress());
// Needs to create a new empty block at the specified address
LinkedListEntry newEntry = new LinkedListEntry(handle.getAddress(), handle.getAddress() + size, size + 1);
emptyBlockList.insert(newEntry);
}
 
// Return the record with handle posHandle, up to size bytes.
// Data to be returned is copied to space.
public void get(byte[] space, Handle handle, int size) {
short shSize = getDataBlockSize(handle.getAddress());
// Find max number of bytes to copy to byte array
int toRead;
if (size < shSize) {
toRead = size;
} else {
toRead = shSize;
}
// Copy bytes from memory pool to byte array
ByteBuffer memPool = ByteBuffer.wrap(memoryPool, handle.getAddress() + 1, toRead);
ByteBuffer dest = ByteBuffer.wrap(space);
dest.put(memPool);
}
 
// Dump a printout of the freeblock list
public void dump() {
LinkedListEntry head = emptyBlockList.getFirstEntry();
while (head != null) {
System.out.printf("Empty block at address %d of size %d\n", head.getStartAddress(), head.getSize());
head = head.getNextBlock();
}
}
// Returns the value of the first byte for the data entry (size)
private short getDataBlockSize(int address) {
byte[] shortArr = new byte[2];
ByteBuffer shortBuffer = ByteBuffer.wrap(shortArr, 1, 1);
shortBuffer.put(memoryPool[address]);
shortBuffer = ByteBuffer.wrap(shortArr);
short size = shortBuffer.getShort();
return size;
}
// Copies the passed byte array into a free block in the memory pool
private Handle insertDataIntoMemPool(LinkedListEntry entry, byte[] space, int size) {
// Insert the data at the address of the given free block
ByteBuffer memBuffer = ByteBuffer.wrap(memoryPool, entry.getStartAddress(), size + 1);
memBuffer.put((byte)size);
memBuffer.put(space);
// Create a new free block with remaining free space
if (entry.getSize() - (size + 1) != 0) {
int startAddress = entry.getStartAddress() + size + 1;
int newSize = entry.getSize() - (size + 1);
int endAddress = startAddress + newSize - 1;
LinkedListEntry newEntry = new LinkedListEntry(startAddress, endAddress, newSize);
emptyBlockList.remove(entry.getStartAddress());
emptyBlockList.insert(newEntry);
} else {
emptyBlockList.remove(entry.getStartAddress());
}
Handle newHandle = new Handle(entry.getStartAddress());
return newHandle;
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/P1 Notes.txt
0,0 → 1,18
P1 Notes
 
Components:
- Array of bytes representing the memory pool
= byte[size of pool]
- Doubly linked list that keeps track of the free blocks in the memory pool
IE, holds the address and size of each free block in the memory pool
= int (location of block start)
= int (size of block)
= handle (next handle)
= handle (previous handle)
- Record array that stores the 'handles' to the stored data records in the memory pool
 
- Handle class
= int (location of start address in memory pool)
/Classwork/CS3114 - Data Algorithms/Project 1/P1.pdf
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/P1.pdf
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/P1testOutput.txt
0,0 → 1,215
> Let's assume that this was called with a 10 slot array and a 175
> byte memory pool.
 
print
 
> Freelist: [0, 174] (175 bytes)
 
insert 0 4240 7345 Albany
 
> 15 bytes taken
> Freelist: [15, 174] (160 bytes)
 
insert 1 3455 13836 Albuquerque
 
> 20 bytes taken
> Freelist: [35, 174] (140 bytes)
 
insert 2 3511 10150 Amarillo
 
> 17 bytes taken
> Freelist: [52, 174] (123 bytes)
 
insert 3 6113 14954 Anchorage
 
> 18 bytes taken
> Freelist: [70, 174] (105 bytes)
 
insert 4 3345 8423 Atlanta
 
> 16 bytes taken
> Freelist: [86, 174] (89 bytes)
 
remove 4
 
> This frees up the 16 bytes at the end, which merges with the free block
> Freelist: [70, 174] (105 bytes)
 
> 0: (4240, 7345) Albany
> 1: (3455, 13836) Albuquerque
> 2: (3511, 10150) Amarillo
> 3: (6113, 14954) Anchorage
> 4: [no record]
> 5: [no record]
 
print 0
 
> 4240 7345 Albany
 
print 1
 
> 3455 13836 Albuquerque
 
print 2
 
> 3511 10150 Amarillo
 
print 3
 
> 6113 14954 Anchorage
 
print 4
 
> Slot 4 is empty
 
print 5
 
> Slot 5 is empty
 
insert 5 2515 5740 Asuncion_Paraguay
 
> 26 bytes taken
> Freelist: [96, 174] (79 bytes)
 
print 5
 
> 2515 5740 Asuncion_Paraguay
 
insert 6 4447 11750 Baker
 
> 14 bytes taken
> Freelist: [110, 174] (65 bytes)
 
insert 7 3918 7638 Baltimore
 
> 18 bytes taken
> Freelist: [128, 174] (47 bytes)
 
insert 7 3918 7638 Baltimore
 
> Since this is overwriting slot 7, the old message is deleted,
> freeing 18 bytes, which happen to be at the end and which merge with
> the existing free block.
> 18 bytes are then taken for the new message
> Freelist: [128, 174] (47 bytes)
 
insert 8 3955 11625 Beijing_China
 
> 22 bytes taken
> Freelist: [150, 174] (25 bytes)
 
insert 9 3330 8650 Birmingham
 
> 19 bytes taken
> Freelist: [169, 174] (6 bytes)
 
print
> [0] --> 0: (4240, 7345) Albany
> [15] --> 1: (3455, 13836) Albuquerque
> [35] --> 2: (3511, 10150) Amarillo
> [52] --> 3: (6113, 14954) Anchorage
> 4: [no record]
> [70] --> 5: (2515, 5740) Asuncion_Paraguay
> [96] --> 6: (4447, 11750) Baker
> [110] --> 7: (3918, 7638) Baltimore
> [128] --> 8: (3955, 11625) Beijing_China
> [150] --> 9: (3330, 8650) Birmingham
 
remove 9
 
> This frees 19 bytes, which merge with the free block at the end.
> Freelist: [150, 174] (25 bytes)
 
print 9
 
> Slot 9 is empty
 
insert 9 3355 1822 Cape_Town_South_Africa
 
> This requires 31 bytes, but there is not a block of this size
> available. Therefore, nothing is inserted (or otherwise changed)
> Freelist: [150, 174] (25 bytes)
 
print 9
 
> Slot 9 is empty
 
remove 3
 
> Free up 18 bytes
> Freelist: [52, 69] (18 bytes)
> [150, 174] (25 bytes)
 
remove 4
 
> Nothing happens since Slot 4 is empty
 
remove 6
 
> Free up 14 bytes starting at position 96
> Freelist: [52, 69] (18 bytes);
> [96, 109] (14 bytes);
> [150, 174] (25 bytes)
 
remove 7
 
> Free up 18 bytes starting at position 110. Since this is adjacent to
> an existing free block, they merge.
> Freelist: [52, 69] (18 bytes);
> [96, 127] (32 bytes);
> [150, 174] (25 bytes)
 
remove 7
 
> Since Slot 7 is empty, nothing happens.
> Freelist: [52, 69] (18 bytes);
> [96, 127] (32 bytes);
> [150, 174] (25 bytes)
 
remove 8
 
> Free 22 bytes starting at postion 128. Since there are free blocks
> to either side, all three merge together.
> Freelist: [52, 69] (18 bytes);
> [96, 174] (79 bytes);
 
insert 7 2308 8223 Havana_Cuba
 
> 20 bytes taken. The first free block is not big enough, so take from
> the second.
> Freelist: [52, 69] (18 bytes);
> [116, 174] (59 bytes);
 
insert 7 2946 10634 Chongqing_China
 
> First the 20 bytes from the message currently stored is freed, whose
> space merges with the block at the end of the list. Then 24 bytes
> are reserved from the second block, since the first is not big enough.
> Freelist: [52, 69] (18 bytes);
> [120, 174] (55 bytes);
 
insert 8 616 10648 Jakarta_Indonesia
 
> 26 bytes taken from the second block
> Freelist: [52, 69] (18 bytes);
> [146, 174] (29 bytes);
 
print
 
> Print out the current records in the array
> [0] --> 0: 4240 7345 Albany
> [15] --> 1: 3455 13836 Albuquerque
> [35] --> 2: 3511 10150 Amarillo
> 3: [no record]
> 4: [no record]
> [70] --> 5: (2515, 5740) Asuncion_Paraguay
> 6: [no record]
> [96] --> 7: 2946 10634 Chongqing_China
> [120] --> 8: 616 10648 Jakarta_Indonesia
> 9: [no record]
 
remove 8
 
> Free 26 bytes and merge with second block.
> Freelist: [52, 69] (18 bytes);
> [120, 174] (55 bytes);
/Classwork/CS3114 - Data Algorithms/Project 1/Schedule.xls
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/Schedule.xls
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/memman.class
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/Classwork/CS3114 - Data Algorithms/Project 1/memman.class
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Classwork/CS3114 - Data Algorithms/Project 1/memman.java
0,0 → 1,108
/*
* CS 3114 Project 1
* Author: Kevin Lee
* Compiler: Eclipse 3.7.0
* Operating System: Windows 7 x64
* Date Completed: 9/1/2011
*
* The following program is designed to provide an interface to
* client side code that allows the client to store and retrieve
* byte arrays of data. The memory manager has no information on
* the actual data to be stored, other than the size of the byte
* array. The memory manager allocates a memory pool when the
* object is created, and executes all operations on the memory
* pool. The memory manager also keeps a doubly linked list of
* empty blocks from which it finds the best fit block to store
* the passed data in. The client is responsible for parsing the
* command file as well as creating the byte array holding the
* data to be stored. The client also has a record array which
* stores handles passed back from the memory manager from which
* it uses to retrieve stored data from the memory manager.
*
* The stored data is saved in the following format:
* byte[0] = size of data record
* byte[1-4] = int (x-coordinate)
* byte[5-8] = int (y-coordinate)
* byte[9-?] = string (name of city name)
* The first byte is only used by the memory manager and is not
* returned to the client when the data record is retrieved.
*
* On my honor:
*
* - I have not used source code obtained from another student,
* or any other unauthorized source, either modified or
* unmodified.
*
* - All source code and documentation used in my program is
* either my original work, or was derived by me from the
* source code published in the textbook for this course.
*
* - I have not discussed coding details about this project with
* anyone other than my partner (in the case of a joint
* submission), instructor, ACM/UPE tutors or the TAs assigned
* to this course. I understand that I may discuss the concepts
* of this program with other students, and that another student
* may help me debug my program so long as neither of us writes
* anything during the discussion or modifies any computer file
* during the discussion. I have violated neither the spirit nor
* letter of this restriction.
*/
import java.io.*;
 
public class memman {
public static void main(String[] args) {
 
int input_poolSize; // Size of memory pool to allocate
int input_numRecs; // Total number of records to hold
String input_commandFile; // Location of file to parse
 
// 3 arguments must be supplied to the program
if (args.length != 3) {
System.out.println("3 Arguments must be supplied!");
return;
}
 
// Parses passed arguments into member variables
try {
input_poolSize = Integer.parseInt(args[0]);
input_numRecs = Integer.parseInt(args[1]);
input_commandFile = args[2];
} catch (NumberFormatException e) {
System.out.printf("The first two arguments must be an integer");
return;
}
 
// Handles error if the passed arguments are negative numbers
if (input_poolSize < 0 || input_numRecs < 0) {
System.out.printf("Int arguments cannot be negative");
return;
}
 
// Check to make sure the command file exists
File cmdFile = new File(input_commandFile);
if (!cmdFile.exists()) {
System.out.printf("Command file not found");
return;
}
MemClient memoryClient = new MemClient(input_numRecs, input_poolSize);
// Parse each command with the memory client
try {
BufferedReader reader = new BufferedReader(new FileReader(cmdFile));
String cin;
while ((cin = reader.readLine()) != null) {
cin = cin.trim();
if (cin.length() != 0) {
memoryClient.processLine(cin);
}
}
} catch (FileNotFoundException e) {
System.out.printf("Command file not found");
return;
} catch (IOException e) {
System.out.printf("Unable to read input file");
return;
}
}
}
/Classwork/CS3114 - Data Algorithms/Project 1/p1_testData.txt
0,0 → 1,54
 
print
insert 0 4240 7345 Albany
insert 1 3455 13836 Albuquerque
insert 2 3511 10150 Amarillo
insert 3 6113 14954 Anchorage
insert 4 3345 8423 Atlanta
 
remove 4
print 0
print 1
print 2
 
print 3
print 4
print 5
insert 5 2515 5740 Asuncion_Paraguay
print 5
insert 6 4447 11750 Baker
 
 
insert 7 3918 7638 Baltimore
insert 7 3918 7638 Baltimore
insert 8 3955 11625 Beijing_China
insert 9 3330 8650 Birmingham
print
remove 9
print 9
insert 9 3355 1822 Cape_Town_South_Africa
print 9
remove 3
 
remove 4
 
remove 6
remove 7
 
remove 7
 
remove 8
insert 7 2308 8223 Havana_Cuba
insert 7 2946 10634 Chongqing_China
 
insert 8 616 10648 Jakarta_Indonesia
print
 
 
 
 
 
 
 
remove 8