From 6e7283ed8fc42408d718e8776f9fd3856960ffdb Mon Sep 17 00:00:00 2001 From: "EURAC\\marperini" Date: Mon, 29 Apr 2024 10:05:04 +0200 Subject: [PATCH] feat: add finalize_node() --- examples/custom_graph_domtree.py | 155 + examples/domtree_example.py | 27 +- scrapegraphai/asdt/dom_tree.py | 4 +- scrapegraphai/asdt/tree.py | 38 +- scrapegraphai/asdt/tree_node.py | 31 +- scrapegraphai/nodes/fetch_node.py | 2 +- tree_visualization | 4348 ----- tree_visualization.png | Bin 80605 -> 0 bytes tree_visualization.svg | 26070 ---------------------------- 9 files changed, 241 insertions(+), 30434 deletions(-) create mode 100644 examples/custom_graph_domtree.py delete mode 100644 tree_visualization delete mode 100644 tree_visualization.png delete mode 100644 tree_visualization.svg diff --git a/examples/custom_graph_domtree.py b/examples/custom_graph_domtree.py new file mode 100644 index 00000000..5cf6443d --- /dev/null +++ b/examples/custom_graph_domtree.py @@ -0,0 +1,155 @@ +""" +Example of custom graph using existing nodes +""" + +import os +from dotenv import load_dotenv +from scrapegraphai.models import OpenAI +from scrapegraphai.graphs import BaseGraph +from scrapegraphai.nodes import FetchNode, GenerateAnswerNode +load_dotenv() + +# ************************************************ +# Define the configuration for the graph +# ************************************************ + +openai_key = os.getenv("OPENAI_APIKEY") + +graph_config = { + "llm": { + "api_key": openai_key, + "model": "gpt-3.5-turbo", + "temperature": 0, + "streaming": True + }, +} + +# ************************************************ +# Define the graph nodes +# ************************************************ + +llm_model = OpenAI(graph_config["llm"]) + +# define the nodes for the graph +fetch_node = FetchNode( + input="url | local_dir", + output=["doc"], +) +generate_answer_node = GenerateAnswerNode( + input="user_prompt & (relevant_chunks | parsed_doc | doc)", + output=["answer"], + node_config={"llm": llm_model}, +) + +# ************************************************ +# Create the graph by defining the connections +# ************************************************ + +graph = BaseGraph( + nodes={ + fetch_node, + generate_answer_node, + }, + edges={ + (fetch_node, generate_answer_node) + }, + entry_point=fetch_node +) + +# ************************************************ +# Execute the graph +# ************************************************ + +subtree_text = ''' +div>div -> "This is a paragraph" \n +div>ul>li>a>span -> "This is a list item 1" \n +div>ul>li>a>span -> "This is a list item 2" \n +div>ul>li>a>span -> "This is a list item 3" +''' + +subtree_simplified_html = ''' +
+
This is a paragraph
+ +
+''' + +subtree_dict_simple = { + "div": { + "text": { + "content": "This is a paragraph", + "path_to_fork": "div>div", + }, + "ul": { + "path_to_fork": "div>ul", + "texts": [ + { + "content": "This is a list item 1", + "path_to_fork": "ul>li>a>span", + }, + { + "content": "This is a list item 2", + "path_to_fork": "ul>li>a>span", + }, + { + "content": "This is a list item 3", + "path_to_fork": "ul>li>a>span", + } + ] + } + } +} + + +subtree_dict_complex = { + "div": { + "text": { + "content": "This is a paragraph", + "path_to_fork": "div>div", + "attributes": { + "classes": ["paragraph"], + "ids": ["paragraph"], + "hrefs": ["https://www.example.com"] + } + }, + "ul": { + "text1":{ + "content": "This is a list item 1", + "path_to_fork": "ul>li>a>span", + "attributes": { + "classes": ["list-item", "item-1"], + "ids": ["item-1"], + "hrefs": ["https://www.example.com"] + } + }, + "text2":{ + "content": "This is a list item 2", + "path_to_fork": "ul>li>a>span", + "attributes": { + "classes": ["list-item", "item-2"], + "ids": ["item-2"], + "hrefs": ["https://www.example.com"] + } + } + } + } +} + +result, execution_info = graph.execute({ + "user_prompt": "How many list items are there in the document?", + "local_dir": str(subtree_dict_simple) +}) + +# get the answer from the result +result = result.get("answer", "No answer found.") +print(result) diff --git a/examples/domtree_example.py b/examples/domtree_example.py index 50f40fbe..2651f715 100644 --- a/examples/domtree_example.py +++ b/examples/domtree_example.py @@ -46,21 +46,34 @@ def print_matches_side_by_side(matches): # Usage example: # ********************************************************************************************************************* -loader = AsyncHtmlLoader('https://www.wired.com/category/science/') +loader = AsyncHtmlLoader('https://perinim.github.io/projects/') document = loader.load() html_content = document[0].page_content curr_time = time.time() # Instantiate a DOMTree with HTML content dom_tree = DOMTree(html_content) -nodes, metadatas = dom_tree.collect_text_nodes() # Collect text nodes for analysis -for node, metadata in zip(nodes, metadatas): - print("Text:", node) - print("Metadata:", metadata) +# nodes, metadatas = dom_tree.collect_text_nodes() # Collect text nodes for analysis +# for node, metadata in zip(nodes, metadatas): +# print("Text:", node) +# print("Metadata:", metadata) +# sub_list = dom_tree.generate_subtree_dicts() # Generate subtree dictionaries for analysis +# print(sub_list) # graph = dom_tree.visualize(exclude_tags=['script', 'style', 'meta', 'link']) -# subtrees = dom_tree.get_subtrees() # Retrieve subtrees rooted at fork nodes +subtrees = dom_tree.get_subtrees() # Retrieve subtrees rooted at fork nodes +print("Number of subtrees found:", len(subtrees)) +# remove trees whos root node does not lead to any text +text_subtrees = [subtree for subtree in subtrees if subtree.root.leads_to_text] +print("Number of subtrees that lead to text:", len(text_subtrees)) + +direct_leaf_subtrees = [subtree for subtree in text_subtrees if subtree.root.has_direct_leaves] +print("Number of subtrees with direct leaves beneath fork nodes:", len(direct_leaf_subtrees)) + +for subtree in direct_leaf_subtrees: + print("Subtree rooted at:", subtree.root.value) + subtree.traverse(lambda node: print(node)) # Index subtrees by structure and content # structure_index, content_index = index_subtrees(subtrees) @@ -83,4 +96,4 @@ print(f"Time taken to build DOM tree: {time.time() - curr_time:.2f} seconds") # print("Subtree rooted at:", subtree.root.value) # subtree.traverse(lambda node: print(node)) # Traverse the DOMTree and print each node -# dom_tree.traverse(lambda node: print(node)) \ No newline at end of file +# dom_tree.traverse(lambda node: print(node)) diff --git a/scrapegraphai/asdt/dom_tree.py b/scrapegraphai/asdt/dom_tree.py index 57c749c5..50b2e179 100644 --- a/scrapegraphai/asdt/dom_tree.py +++ b/scrapegraphai/asdt/dom_tree.py @@ -15,7 +15,9 @@ class DOMTree(Tree): elif isinstance(child, NavigableString): text = child.strip() if text: - tree_node.add_child(TreeNode(value='text', attributes={'content': text})) + new_node = TreeNode(value='text', attributes={'content': text}) + tree_node.add_child(new_node) + new_node.finalize_node() elif isinstance(child, Tag): new_node = TreeNode(value=child.name, attributes=child.attrs) tree_node.add_child(new_node) diff --git a/scrapegraphai/asdt/tree.py b/scrapegraphai/asdt/tree.py index fd497466..be95f8e6 100644 --- a/scrapegraphai/asdt/tree.py +++ b/scrapegraphai/asdt/tree.py @@ -16,6 +16,42 @@ class Tree: # Retrieves all subtrees rooted at fork nodes return self.root.get_subtrees() if self.root else [] + def generate_subtree_dicts(self): + subtree_dicts = [] + + def aggregate_text_under_fork(fork_node): + text_aggregate = { + "content": [], + "path_to_fork": "" + } + for child in fork_node.children: + if child.value == 'text': + text_aggregate["content"].append(child.attributes['content']) + elif child.is_fork: + continue + else: + for sub_child in child.children: + text_aggregate["content"].append(sub_child.attributes) + + text_aggregate["path_to_fork"] = fork_node.closest_fork_path + return text_aggregate + + def process_node(node): + if node.is_fork: + texts = aggregate_text_under_fork(node) + if texts["content"]: # Only add if there's text content + subtree_dicts.append({ + node.value: { + "text": texts, + "path_to_fork": texts["path_to_fork"], + } + }) + for child in node.children: + process_node(child) + + process_node(self.root) + return subtree_dicts + def visualize(self, exclude_tags = ['script']): def add_nodes_edges(tree_node, graph): if tree_node: @@ -49,7 +85,7 @@ class Tree: # Initialize Digraph, set graph and node attributes graph = Digraph() - graph.attr(size='10,10', dpi='300') # Set higher DPI for better image resolution + # graph.attr(size='10,10', dpi='300') # Set higher DPI for better image resolution graph.attr('node', style='filled', fontname='Helvetica') graph.attr('edge', fontname='Helvetica') diff --git a/scrapegraphai/asdt/tree_node.py b/scrapegraphai/asdt/tree_node.py index c5214548..636cb5c1 100644 --- a/scrapegraphai/asdt/tree_node.py +++ b/scrapegraphai/asdt/tree_node.py @@ -7,7 +7,10 @@ class TreeNode: self.children = children if children is not None else [] self.parent = parent self.depth = depth + # Flag to track if the subtree leads to text self.leads_to_text = False + # Flags to track if the subtree has a direct leaf node + self.has_direct_leaves = False self.root_path = self._compute_root_path() self.closest_fork_path = self._compute_fork_path() self.structure_hash = None @@ -54,14 +57,26 @@ class TreeNode: current = current.parent path.append(current.value) # Add the fork or root node return '>'.join(reversed(path)) - - def get_subtrees(self): + + def finalize_node(self): + if self.is_text and self.is_leaf: + self.update_direct_leaves_flag() + + def update_direct_leaves_flag(self): + ancestor = self.parent + while ancestor and len(ancestor.children) == 1: + ancestor = ancestor.parent + if ancestor and ancestor.is_fork: + ancestor.has_direct_leaves = True + + def get_subtrees(self, direct_leaves=False): # This method finds and returns subtrees rooted at this node and all descendant forks + # Optionally filters to include only those with direct leaves beneath fork nodes subtrees = [] - if self.is_fork: + if self.is_fork and (not direct_leaves or self.has_direct_leaves): subtrees.append(Tree(root=self)) for child in self.children: - subtrees.extend(child.get_subtrees()) + subtrees.extend(child.get_subtrees(direct_leaves=direct_leaves)) return subtrees def hash_subtree_structure(self, node): @@ -84,7 +99,7 @@ class TreeNode: return text def __repr__(self): - return f"TreeNode(value={self.value}, leads_to_text={self.leads_to_text}, depth={self.depth}, root_path={self.root_path}, closest_fork_path={self.closest_fork_path})" + return f"TreeNode(value={self.value}, leads_to_text={self.leads_to_text}, is_fork={self.is_fork})" @property def is_fork(self): @@ -92,4 +107,8 @@ class TreeNode: @property def is_leaf(self): - return len(self.children) == 0 \ No newline at end of file + return len(self.children) == 0 + + @property + def is_text(self): + return self.value == 'text' \ No newline at end of file diff --git a/scrapegraphai/nodes/fetch_node.py b/scrapegraphai/nodes/fetch_node.py index f1260aa5..d912169d 100644 --- a/scrapegraphai/nodes/fetch_node.py +++ b/scrapegraphai/nodes/fetch_node.py @@ -72,7 +72,7 @@ class FetchNode(BaseNode): # if it is a local directory if not source.startswith("http"): - compressedDocument = [Document(page_content=remover(source), metadata={ + compressedDocument = [Document(page_content=source, metadata={ "source": "local_dir" })] diff --git a/tree_visualization b/tree_visualization deleted file mode 100644 index e09e45bc..00000000 --- a/tree_visualization +++ /dev/null @@ -1,4348 +0,0 @@ -digraph { - dpi=300 size="10,10" - node [fontname=Helvetica style=filled] - edge [fontname=Helvetica] - 1485214057040 [label=document color=green fontcolor=black fontsize=12 shape=ellipse] - 1485214072448 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485214057040 -> 1485214072448 [fontsize=10] - 1485225388704 [label=html color=green fontcolor=black fontsize=12 shape=ellipse] - 1485214057040 -> 1485225388704 [fontsize=10] - 1485225388752 [label=head color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225388704 -> 1485225388752 [fontsize=10] - 1485225388992 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225388752 -> 1485225388992 [fontsize=10] - 1485225389184 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225388992 -> 1485225389184 [fontsize=10] - 1485225388896 [label=body color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225388704 -> 1485225388896 [fontsize=10] - 1485225661616 [label=noscript color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225388896 -> 1485225661616 [fontsize=10] - 1485225662288 [label=iframe color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225661616 -> 1485225662288 [fontsize=10] - 1485225657872 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225388896 -> 1485225657872 [fontsize=10] - 1485225658448 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225657872 -> 1485225658448 [fontsize=10] - 1485225663152 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225658448 -> 1485225663152 [fontsize=10] - 1485225663680 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225663680 [fontsize=10] - 1485225663776 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225663776 [fontsize=10] - 1485225659696 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663776 -> 1485225659696 [fontsize=10] - 1485225664112 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225664112 [fontsize=10] - 1485225664784 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225664112 -> 1485225664784 [fontsize=10] - 1485225664448 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225664448 [fontsize=10] - 1485225664976 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225664448 -> 1485225664976 [fontsize=10] - 1485225664400 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225664400 [fontsize=10] - 1485225665264 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225664400 -> 1485225665264 [fontsize=10] - 1485225665120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225665120 [fontsize=10] - 1485225666560 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225665120 -> 1485225666560 [fontsize=10] - 1485225667088 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666560 -> 1485225667088 [fontsize=10] - 1485225667184 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225667088 -> 1485225667184 [fontsize=10] - 1485225667232 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225667088 -> 1485225667232 [fontsize=10] - 1485225666416 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225666416 [fontsize=10] - 1485225666704 [label=header color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666416 -> 1485225666704 [fontsize=10] - 1485225667664 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666704 -> 1485225667664 [fontsize=10] - 1485225667328 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225667664 -> 1485225667328 [fontsize=10] - 1485225668048 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225667328 -> 1485225668048 [fontsize=10] - 1485225668336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225668048 -> 1485225668336 [fontsize=10] - 1485225668192 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225667328 -> 1485225668192 [fontsize=10] - 1485225668720 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225668192 -> 1485225668720 [fontsize=10] - 1485225668816 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225668720 -> 1485225668816 [fontsize=10] - 1485225669008 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225668816 -> 1485225669008 [fontsize=10] - 1485225668864 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225668720 -> 1485225668864 [fontsize=10] - 1485225668096 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225667664 -> 1485225668096 [fontsize=10] - 1485225669056 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225668096 -> 1485225669056 [fontsize=10] - 1485225669296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225668096 -> 1485225669296 [fontsize=10] - 1485225669440 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225669296 -> 1485225669440 [fontsize=10] - 1485225669488 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225669440 -> 1485225669488 [fontsize=10] - 1485225669872 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225669488 -> 1485225669872 [fontsize=10] - 1485225669728 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225669440 -> 1485225669728 [fontsize=10] - 1485225669824 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225669440 -> 1485225669824 [fontsize=10] - 1485225669344 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225668096 -> 1485225669344 [fontsize=10] - 1485225670304 [label=p color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225669344 -> 1485225670304 [fontsize=10] - 1485225670544 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225670304 -> 1485225670544 [fontsize=10] - 1485225670640 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225670304 -> 1485225670640 [fontsize=10] - 1485225670688 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225670640 -> 1485225670688 [fontsize=10] - 1485225670496 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225670304 -> 1485225670496 [fontsize=10] - 1485225669584 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225668096 -> 1485225669584 [fontsize=10] - 1485225671072 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225669584 -> 1485225671072 [fontsize=10] - 1485225671264 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225671072 -> 1485225671264 [fontsize=10] - 1485225671216 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225669584 -> 1485225671216 [fontsize=10] - 1485225671792 [label=svg color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225671216 -> 1485225671792 [fontsize=10] - 1485225671888 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225671792 -> 1485225671888 [fontsize=10] - 1485225667760 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225666704 -> 1485225667760 [fontsize=10] - 1485225668528 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225667760 -> 1485225668528 [fontsize=10] - 1485225671648 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225668528 -> 1485225671648 [fontsize=10] - 1485225672656 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225671648 -> 1485225672656 [fontsize=10] - 1485225672864 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225672656 -> 1485225672864 [fontsize=10] - 1485225667952 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666704 -> 1485225667952 [fontsize=10] - 1485225672080 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225667952 -> 1485225672080 [fontsize=10] - 1485225673440 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225672080 -> 1485225673440 [fontsize=10] - 1485225672368 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225667952 -> 1485225672368 [fontsize=10] - 1485225673920 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225672368 -> 1485225673920 [fontsize=10] - 1485225674256 [label=nav color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225673920 -> 1485225674256 [fontsize=10] - 1485225674448 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225674256 -> 1485225674448 [fontsize=10] - 1485225674640 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225674640 [fontsize=10] - 1485225674832 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674640 -> 1485225674832 [fontsize=10] - 1485225675024 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225674832 -> 1485225675024 [fontsize=10] - 1485225674688 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225674688 [fontsize=10] - 1485225675360 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674688 -> 1485225675360 [fontsize=10] - 1485225675552 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225675360 -> 1485225675552 [fontsize=10] - 1485225674880 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225674880 [fontsize=10] - 1485225675456 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674880 -> 1485225675456 [fontsize=10] - 1485225675792 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225675456 -> 1485225675792 [fontsize=10] - 1485225674784 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225674784 [fontsize=10] - 1485225675888 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674784 -> 1485225675888 [fontsize=10] - 1485225676848 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225675888 -> 1485225676848 [fontsize=10] - 1485225675216 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225675216 [fontsize=10] - 1485225676320 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225675216 -> 1485225676320 [fontsize=10] - 1485225677424 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225676320 -> 1485225677424 [fontsize=10] - 1485225675744 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225675744 [fontsize=10] - 1485225677856 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225675744 -> 1485225677856 [fontsize=10] - 1485225678432 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225677856 -> 1485225678432 [fontsize=10] - 1485225676464 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225676464 [fontsize=10] - 1485225678672 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225676464 -> 1485225678672 [fontsize=10] - 1485225679248 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225678672 -> 1485225679248 [fontsize=10] - 1485225676992 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225676992 [fontsize=10] - 1485225678816 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225676992 -> 1485225678816 [fontsize=10] - 1485225680112 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225678816 -> 1485225680112 [fontsize=10] - 1485225678000 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225674448 -> 1485225678000 [fontsize=10] - 1485225679536 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225678000 -> 1485225679536 [fontsize=10] - 1485225681024 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225679536 -> 1485225681024 [fontsize=10] - 1485225674304 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225673920 -> 1485225674304 [fontsize=10] - 1485225674496 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225673920 -> 1485225674496 [fontsize=10] - 1485225681744 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225674496 -> 1485225681744 [fontsize=10] - 1485225679680 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225681744 -> 1485225679680 [fontsize=10] - 1485225683520 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225679680 -> 1485225683520 [fontsize=10] - 1485225684096 [label=i color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225679680 -> 1485225684096 [fontsize=10] - 1485225682368 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225684096 -> 1485225682368 [fontsize=10] - 1485225684384 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225682368 -> 1485225684384 [fontsize=10] - 1485225684576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225684384 -> 1485225684576 [fontsize=10] - 1485225684432 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225682368 -> 1485225684432 [fontsize=10] - 1485225683088 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225681744 -> 1485225683088 [fontsize=10] - 1485225670352 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666704 -> 1485225670352 [fontsize=10] - 1485225685056 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225670352 -> 1485225685056 [fontsize=10] - 1485225683376 [label=nav color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225670352 -> 1485225683376 [fontsize=10] - 1485225685728 [label=ul color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225683376 -> 1485225685728 [fontsize=10] - 1485225674400 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225670352 -> 1485225674400 [fontsize=10] - 1485225685104 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225670352 -> 1485225685104 [fontsize=10] - 1485225687264 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225685104 -> 1485225687264 [fontsize=10] - 1485225686544 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225687264 -> 1485225686544 [fontsize=10] - 1485225686016 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225687264 -> 1485225686016 [fontsize=10] - 1485225685824 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225685104 -> 1485225685824 [fontsize=10] - 1485225687360 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225685824 -> 1485225687360 [fontsize=10] - 1485225687600 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225685824 -> 1485225687600 [fontsize=10] - 1485225686832 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225685104 -> 1485225686832 [fontsize=10] - 1485225687744 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225686832 -> 1485225687744 [fontsize=10] - 1485225687888 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225686832 -> 1485225687888 [fontsize=10] - 1485225685920 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225670352 -> 1485225685920 [fontsize=10] - 1485225687456 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225685920 -> 1485225687456 [fontsize=10] - 1485225688032 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225685920 -> 1485225688032 [fontsize=10] - 1485225673152 [label=a color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225666704 -> 1485225673152 [fontsize=10] - 1485225686400 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225673152 -> 1485225686400 [fontsize=10] - 1485225688128 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225686400 -> 1485225688128 [fontsize=10] - 1485225688272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225673152 -> 1485225688272 [fontsize=10] - 1485225754928 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225688272 -> 1485225754928 [fontsize=10] - 1485225755936 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225754928 -> 1485225755936 [fontsize=10] - 1485225756464 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225755936 -> 1485225756464 [fontsize=10] - 1485225755648 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225754928 -> 1485225755648 [fontsize=10] - 1485225667376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225666416 -> 1485225667376 [fontsize=10] - 1485225756944 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225667376 -> 1485225756944 [fontsize=10] - 1485225757088 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225757088 [fontsize=10] - 1485225757856 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225757088 -> 1485225757856 [fontsize=10] - 1485225758480 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225757856 -> 1485225758480 [fontsize=10] - 1485225756560 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225756560 [fontsize=10] - 1485225759488 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756560 -> 1485225759488 [fontsize=10] - 1485225759680 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225759488 -> 1485225759680 [fontsize=10] - 1485225759200 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225759200 [fontsize=10] - 1485225759584 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225759200 -> 1485225759584 [fontsize=10] - 1485225759920 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225759584 -> 1485225759920 [fontsize=10] - 1485225758192 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225758192 [fontsize=10] - 1485225760016 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225758192 -> 1485225760016 [fontsize=10] - 1485225760976 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225760016 -> 1485225760976 [fontsize=10] - 1485225759440 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225759440 [fontsize=10] - 1485225760448 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225759440 -> 1485225760448 [fontsize=10] - 1485225761552 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225760448 -> 1485225761552 [fontsize=10] - 1485225759872 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225759872 [fontsize=10] - 1485225761984 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225759872 -> 1485225761984 [fontsize=10] - 1485225762560 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225761984 -> 1485225762560 [fontsize=10] - 1485225760592 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225760592 [fontsize=10] - 1485225762800 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225760592 -> 1485225762800 [fontsize=10] - 1485225763376 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225762800 -> 1485225763376 [fontsize=10] - 1485225761120 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225761120 [fontsize=10] - 1485225762944 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225761120 -> 1485225762944 [fontsize=10] - 1485225764240 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225762944 -> 1485225764240 [fontsize=10] - 1485225762128 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756944 -> 1485225762128 [fontsize=10] - 1485225763664 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225762128 -> 1485225763664 [fontsize=10] - 1485225765152 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225763664 -> 1485225765152 [fontsize=10] - 1485225671936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225666416 -> 1485225671936 [fontsize=10] - 1485225756224 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225671936 -> 1485225756224 [fontsize=10] - 1485225765872 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225765872 [fontsize=10] - 1485225768608 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225765872 -> 1485225768608 [fontsize=10] - 1485225769232 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225768608 -> 1485225769232 [fontsize=10] - 1485225768416 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225768416 [fontsize=10] - 1485225769568 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225768416 -> 1485225769568 [fontsize=10] - 1485225769760 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225769568 -> 1485225769760 [fontsize=10] - 1485225768800 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225768800 [fontsize=10] - 1485225769664 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225768800 -> 1485225769664 [fontsize=10] - 1485225770000 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225769664 -> 1485225770000 [fontsize=10] - 1485225767168 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225767168 [fontsize=10] - 1485225770096 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225767168 -> 1485225770096 [fontsize=10] - 1485225770576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225770096 -> 1485225770576 [fontsize=10] - 1485225769424 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225769424 [fontsize=10] - 1485225770528 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225769424 -> 1485225770528 [fontsize=10] - 1485225820848 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225770528 -> 1485225820848 [fontsize=10] - 1485225769952 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225769952 [fontsize=10] - 1485225821280 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225769952 -> 1485225821280 [fontsize=10] - 1485225821856 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225821280 -> 1485225821856 [fontsize=10] - 1485225820416 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225820416 [fontsize=10] - 1485225822144 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225820416 -> 1485225822144 [fontsize=10] - 1485225822720 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225822144 -> 1485225822720 [fontsize=10] - 1485225770672 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225770672 [fontsize=10] - 1485225822288 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225770672 -> 1485225822288 [fontsize=10] - 1485225823584 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225822288 -> 1485225823584 [fontsize=10] - 1485225821424 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225756224 -> 1485225821424 [fontsize=10] - 1485225823008 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225821424 -> 1485225823008 [fontsize=10] - 1485225824496 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225823008 -> 1485225824496 [fontsize=10] - 1485225665936 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225665936 [fontsize=10] - 1485225667472 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225665936 -> 1485225667472 [fontsize=10] - 1485225823056 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225667472 -> 1485225823056 [fontsize=10] - 1485225825600 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225823056 -> 1485225825600 [fontsize=10] - 1485225825936 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225823056 -> 1485225825936 [fontsize=10] - 1485225665216 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225665216 [fontsize=10] - 1485225667040 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225667040 [fontsize=10] - 1485225825696 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225667040 -> 1485225825696 [fontsize=10] - 1485225833568 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225825696 -> 1485225833568 [fontsize=10] - 1485225829440 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225667040 -> 1485225829440 [fontsize=10] - 1485225832896 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225829440 -> 1485225832896 [fontsize=10] - 1485225835104 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225829440 -> 1485225835104 [fontsize=10] - 1485225763712 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225763712 [fontsize=10] - 1485225825216 [label=main color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225825216 [fontsize=10] - 1485225830352 [label=header color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225825216 -> 1485225830352 [fontsize=10] - 1485225842704 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225830352 -> 1485225842704 [fontsize=10] - 1485225843808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225842704 -> 1485225843808 [fontsize=10] - 1485225837808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225843808 -> 1485225837808 [fontsize=10] - 1485225847552 [label=h1 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225837808 -> 1485225847552 [fontsize=10] - 1485225848224 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225847552 -> 1485225848224 [fontsize=10] - 1485225838624 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225825216 -> 1485225838624 [fontsize=10] - 1485225837280 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225837280 [fontsize=10] - 1485225848560 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225837280 -> 1485225848560 [fontsize=10] - 1485225848848 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225848560 -> 1485225848848 [fontsize=10] - 1485225849040 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225848848 -> 1485225849040 [fontsize=10] - 1485225849232 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849040 -> 1485225849232 [fontsize=10] - 1485225849424 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225849232 -> 1485225849424 [fontsize=10] - 1485225849616 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225849424 -> 1485225849616 [fontsize=10] - 1485225849808 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225849616 -> 1485225849808 [fontsize=10] - 1485225850000 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225849808 -> 1485225850000 [fontsize=10] - 1485225850192 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850000 -> 1485225850192 [fontsize=10] - 1485225850336 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850192 -> 1485225850336 [fontsize=10] - 1485225850528 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850336 -> 1485225850528 [fontsize=10] - 1485225850720 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225850528 -> 1485225850720 [fontsize=10] - 1485225850912 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850720 -> 1485225850912 [fontsize=10] - 1485225850960 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850720 -> 1485225850960 [fontsize=10] - 1485225851056 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225850720 -> 1485225851056 [fontsize=10] - 1485225849664 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225849424 -> 1485225849664 [fontsize=10] - 1485225849856 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849664 -> 1485225849856 [fontsize=10] - 1485225851200 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849856 -> 1485225851200 [fontsize=10] - 1485225851584 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225851200 -> 1485225851584 [fontsize=10] - 1485225851632 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225851584 -> 1485225851632 [fontsize=10] - 1485225850576 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849664 -> 1485225850576 [fontsize=10] - 1485225851968 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225850576 -> 1485225851968 [fontsize=10] - 1485225852208 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225851968 -> 1485225852208 [fontsize=10] - 1485225851392 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849664 -> 1485225851392 [fontsize=10] - 1485225851680 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225851392 -> 1485225851680 [fontsize=10] - 1485225850144 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849664 -> 1485225850144 [fontsize=10] - 1485225852880 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225850144 -> 1485225852880 [fontsize=10] - 1485225869808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225852880 -> 1485225869808 [fontsize=10] - 1485225870000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225869808 -> 1485225870000 [fontsize=10] - 1485225870192 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870000 -> 1485225870192 [fontsize=10] - 1485225870384 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870192 -> 1485225870384 [fontsize=10] - 1485225870576 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870384 -> 1485225870576 [fontsize=10] - 1485225870768 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225870576 -> 1485225870768 [fontsize=10] - 1485225849280 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849040 -> 1485225849280 [fontsize=10] - 1485225849472 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225849280 -> 1485225849472 [fontsize=10] - 1485225870624 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225849472 -> 1485225870624 [fontsize=10] - 1485225871584 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225870624 -> 1485225871584 [fontsize=10] - 1485225871920 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225871584 -> 1485225871920 [fontsize=10] - 1485225872112 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225871920 -> 1485225872112 [fontsize=10] - 1485225872400 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225872112 -> 1485225872400 [fontsize=10] - 1485225872592 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225872400 -> 1485225872592 [fontsize=10] - 1485225872784 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225872592 -> 1485225872784 [fontsize=10] - 1485225872976 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225872784 -> 1485225872976 [fontsize=10] - 1485225873024 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225872784 -> 1485225873024 [fontsize=10] - 1485225873120 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225872784 -> 1485225873120 [fontsize=10] - 1485225870912 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225849472 -> 1485225870912 [fontsize=10] - 1485225871632 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870912 -> 1485225871632 [fontsize=10] - 1485225873264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225871632 -> 1485225873264 [fontsize=10] - 1485225873648 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225873264 -> 1485225873648 [fontsize=10] - 1485225873696 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225873648 -> 1485225873696 [fontsize=10] - 1485225872640 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870912 -> 1485225872640 [fontsize=10] - 1485225873456 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225872640 -> 1485225873456 [fontsize=10] - 1485225874080 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225873456 -> 1485225874080 [fontsize=10] - 1485225872208 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225870912 -> 1485225872208 [fontsize=10] - 1485225874704 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225872208 -> 1485225874704 [fontsize=10] - 1485225874848 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225874704 -> 1485225874848 [fontsize=10] - 1485225875040 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225874848 -> 1485225875040 [fontsize=10] - 1485225875232 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875040 -> 1485225875232 [fontsize=10] - 1485225875424 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875232 -> 1485225875424 [fontsize=10] - 1485225875616 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875424 -> 1485225875616 [fontsize=10] - 1485225875808 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225875616 -> 1485225875808 [fontsize=10] - 1485225849376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849040 -> 1485225849376 [fontsize=10] - 1485225874896 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225849376 -> 1485225874896 [fontsize=10] - 1485225876768 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225874896 -> 1485225876768 [fontsize=10] - 1485225877632 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225876768 -> 1485225877632 [fontsize=10] - 1485225877776 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225877632 -> 1485225877776 [fontsize=10] - 1485225878304 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225877776 -> 1485225878304 [fontsize=10] - 1485225878400 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225878304 -> 1485225878400 [fontsize=10] - 1485225878592 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225878400 -> 1485225878592 [fontsize=10] - 1485225878784 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225878592 -> 1485225878784 [fontsize=10] - 1485225878976 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225878784 -> 1485225878976 [fontsize=10] - 1485225879024 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225878784 -> 1485225879024 [fontsize=10] - 1485225879120 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225878784 -> 1485225879120 [fontsize=10] - 1485225875952 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225874896 -> 1485225875952 [fontsize=10] - 1485225877680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875952 -> 1485225877680 [fontsize=10] - 1485225879264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225877680 -> 1485225879264 [fontsize=10] - 1485225879648 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225879264 -> 1485225879648 [fontsize=10] - 1485225879696 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225879648 -> 1485225879696 [fontsize=10] - 1485225878640 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875952 -> 1485225878640 [fontsize=10] - 1485225880032 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225878640 -> 1485225880032 [fontsize=10] - 1485225880272 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225880032 -> 1485225880272 [fontsize=10] - 1485225879456 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875952 -> 1485225879456 [fontsize=10] - 1485225880560 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225879456 -> 1485225880560 [fontsize=10] - 1485225880896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225880560 -> 1485225880896 [fontsize=10] - 1485225881088 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225880896 -> 1485225881088 [fontsize=10] - 1485225881280 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225881088 -> 1485225881280 [fontsize=10] - 1485225881472 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225881280 -> 1485225881472 [fontsize=10] - 1485225881664 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225881472 -> 1485225881664 [fontsize=10] - 1485225881856 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225881664 -> 1485225881856 [fontsize=10] - 1485225848272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225848272 [fontsize=10] - 1485225849088 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225848272 -> 1485225849088 [fontsize=10] - 1485225881136 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225849088 -> 1485225881136 [fontsize=10] - 1485225881328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225881136 -> 1485225881328 [fontsize=10] - 1485225882000 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225881328 -> 1485225882000 [fontsize=10] - 1485225884016 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225882000 -> 1485225884016 [fontsize=10] - 1485225885360 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225884016 -> 1485225885360 [fontsize=10] - 1485225885552 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225885360 -> 1485225885552 [fontsize=10] - 1485225934960 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225885552 -> 1485225934960 [fontsize=10] - 1485225885072 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225882000 -> 1485225885072 [fontsize=10] - 1485225935344 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225885072 -> 1485225935344 [fontsize=10] - 1485225935488 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935344 -> 1485225935488 [fontsize=10] - 1485225935680 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935488 -> 1485225935680 [fontsize=10] - 1485225935872 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935680 -> 1485225935872 [fontsize=10] - 1485225936064 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935872 -> 1485225936064 [fontsize=10] - 1485225936208 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936064 -> 1485225936208 [fontsize=10] - 1485225936400 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936208 -> 1485225936400 [fontsize=10] - 1485225936592 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225936400 -> 1485225936592 [fontsize=10] - 1485225936784 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936592 -> 1485225936784 [fontsize=10] - 1485225936832 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936592 -> 1485225936832 [fontsize=10] - 1485225936928 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936592 -> 1485225936928 [fontsize=10] - 1485225935536 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225935344 -> 1485225935536 [fontsize=10] - 1485225935728 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225935536 -> 1485225935728 [fontsize=10] - 1485225937072 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225935728 -> 1485225937072 [fontsize=10] - 1485225937456 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225937072 -> 1485225937456 [fontsize=10] - 1485225936448 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225935536 -> 1485225936448 [fontsize=10] - 1485225937792 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225936448 -> 1485225937792 [fontsize=10] - 1485225937264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225935536 -> 1485225937264 [fontsize=10] - 1485225937984 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225937264 -> 1485225937984 [fontsize=10] - 1485225938032 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225937984 -> 1485225938032 [fontsize=10] - 1485225938512 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938032 -> 1485225938512 [fontsize=10] - 1485225938704 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938512 -> 1485225938704 [fontsize=10] - 1485225938896 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938704 -> 1485225938896 [fontsize=10] - 1485225939088 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938896 -> 1485225939088 [fontsize=10] - 1485225939280 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225939088 -> 1485225939280 [fontsize=10] - 1485225935152 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225885072 -> 1485225935152 [fontsize=10] - 1485225938080 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935152 -> 1485225938080 [fontsize=10] - 1485225938560 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225938080 -> 1485225938560 [fontsize=10] - 1485225939520 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225938560 -> 1485225939520 [fontsize=10] - 1485225940480 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225939520 -> 1485225940480 [fontsize=10] - 1485225940576 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225940480 -> 1485225940576 [fontsize=10] - 1485225940816 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225940576 -> 1485225940816 [fontsize=10] - 1485225941008 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225940816 -> 1485225941008 [fontsize=10] - 1485225941200 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225941008 -> 1485225941200 [fontsize=10] - 1485225941248 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225941008 -> 1485225941248 [fontsize=10] - 1485225941344 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225941008 -> 1485225941344 [fontsize=10] - 1485225938944 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225935152 -> 1485225938944 [fontsize=10] - 1485225939808 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938944 -> 1485225939808 [fontsize=10] - 1485225941488 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225939808 -> 1485225941488 [fontsize=10] - 1485225941872 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225941488 -> 1485225941872 [fontsize=10] - 1485225940864 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938944 -> 1485225940864 [fontsize=10] - 1485225942208 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225940864 -> 1485225942208 [fontsize=10] - 1485225941680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225938944 -> 1485225941680 [fontsize=10] - 1485225941920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225941680 -> 1485225941920 [fontsize=10] - 1485225942784 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225941920 -> 1485225942784 [fontsize=10] - 1485225942880 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942784 -> 1485225942880 [fontsize=10] - 1485225943072 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942880 -> 1485225943072 [fontsize=10] - 1485225943264 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225943072 -> 1485225943264 [fontsize=10] - 1485225943456 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225943264 -> 1485225943456 [fontsize=10] - 1485225943648 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225943456 -> 1485225943648 [fontsize=10] - 1485225935632 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225885072 -> 1485225935632 [fontsize=10] - 1485225939472 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935632 -> 1485225939472 [fontsize=10] - 1485225940288 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225939472 -> 1485225940288 [fontsize=10] - 1485225944944 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225940288 -> 1485225944944 [fontsize=10] - 1485225945376 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225944944 -> 1485225945376 [fontsize=10] - 1485225945664 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225945376 -> 1485225945664 [fontsize=10] - 1485225945856 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225945664 -> 1485225945856 [fontsize=10] - 1485225946048 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225945856 -> 1485225946048 [fontsize=10] - 1485225946240 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225946048 -> 1485225946240 [fontsize=10] - 1485225946288 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225946048 -> 1485225946288 [fontsize=10] - 1485225946384 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225946048 -> 1485225946384 [fontsize=10] - 1485225942448 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225935632 -> 1485225942448 [fontsize=10] - 1485225942400 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942448 -> 1485225942400 [fontsize=10] - 1485225946528 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942400 -> 1485225946528 [fontsize=10] - 1485225946912 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225946528 -> 1485225946912 [fontsize=10] - 1485225945904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942448 -> 1485225945904 [fontsize=10] - 1485225947248 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225945904 -> 1485225947248 [fontsize=10] - 1485225946720 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225942448 -> 1485225946720 [fontsize=10] - 1485225947440 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225946720 -> 1485225947440 [fontsize=10] - 1485225947488 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225947440 -> 1485225947488 [fontsize=10] - 1485225947968 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225947488 -> 1485225947968 [fontsize=10] - 1485225948160 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225947968 -> 1485225948160 [fontsize=10] - 1485225948352 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225948160 -> 1485225948352 [fontsize=10] - 1485225948544 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225948352 -> 1485225948544 [fontsize=10] - 1485225948736 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225948544 -> 1485225948736 [fontsize=10] - 1485225935440 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225885072 -> 1485225935440 [fontsize=10] - 1485225947536 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225935440 -> 1485225947536 [fontsize=10] - 1485225936016 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225885072 -> 1485225936016 [fontsize=10] - 1485225948400 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225936016 -> 1485225948400 [fontsize=10] - 1485225950320 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225948400 -> 1485225950320 [fontsize=10] - 1485225986416 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225950320 -> 1485225986416 [fontsize=10] - 1485225986560 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225986416 -> 1485225986560 [fontsize=10] - 1485225986848 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225986560 -> 1485225986848 [fontsize=10] - 1485225987184 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225986848 -> 1485225987184 [fontsize=10] - 1485225987376 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225987184 -> 1485225987376 [fontsize=10] - 1485225987568 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225987376 -> 1485225987568 [fontsize=10] - 1485225987616 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225987376 -> 1485225987616 [fontsize=10] - 1485225987712 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225987376 -> 1485225987712 [fontsize=10] - 1485225949504 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225936016 -> 1485225949504 [fontsize=10] - 1485225985696 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225949504 -> 1485225985696 [fontsize=10] - 1485225987856 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225985696 -> 1485225987856 [fontsize=10] - 1485225988240 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225987856 -> 1485225988240 [fontsize=10] - 1485225987232 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225949504 -> 1485225987232 [fontsize=10] - 1485225988576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225987232 -> 1485225988576 [fontsize=10] - 1485225988768 [label=em color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225987232 -> 1485225988768 [fontsize=10] - 1485225988816 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225988768 -> 1485225988816 [fontsize=10] - 1485225988672 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225987232 -> 1485225988672 [fontsize=10] - 1485225988048 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225949504 -> 1485225988048 [fontsize=10] - 1485225988720 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225988048 -> 1485225988720 [fontsize=10] - 1485225989152 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225988720 -> 1485225989152 [fontsize=10] - 1485225989632 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225989152 -> 1485225989632 [fontsize=10] - 1485225989824 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225989632 -> 1485225989824 [fontsize=10] - 1485225990016 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225989824 -> 1485225990016 [fontsize=10] - 1485225990208 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225990016 -> 1485225990208 [fontsize=10] - 1485225990400 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485225990208 -> 1485225990400 [fontsize=10] - 1485225885264 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225882000 -> 1485225885264 [fontsize=10] - 1485225848656 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225848656 [fontsize=10] - 1485225875664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225848656 -> 1485225875664 [fontsize=10] - 1485225991360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225875664 -> 1485225991360 [fontsize=10] - 1485225995680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225991360 -> 1485225995680 [fontsize=10] - 1485225996880 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225995680 -> 1485225996880 [fontsize=10] - 1485225997648 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225996880 -> 1485225997648 [fontsize=10] - 1485225996400 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225997648 -> 1485225996400 [fontsize=10] - 1485226000192 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225996400 -> 1485226000192 [fontsize=10] - 1485225999664 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226000192 -> 1485225999664 [fontsize=10] - 1485225997888 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225996880 -> 1485225997888 [fontsize=10] - 1485226033696 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225997888 -> 1485226033696 [fontsize=10] - 1485226033792 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033696 -> 1485226033792 [fontsize=10] - 1485226033936 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033792 -> 1485226033936 [fontsize=10] - 1485226034032 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033936 -> 1485226034032 [fontsize=10] - 1485226034176 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034032 -> 1485226034176 [fontsize=10] - 1485226034224 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034176 -> 1485226034224 [fontsize=10] - 1485226034416 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034224 -> 1485226034416 [fontsize=10] - 1485226034560 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226034416 -> 1485226034560 [fontsize=10] - 1485226034704 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034560 -> 1485226034704 [fontsize=10] - 1485226034800 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034560 -> 1485226034800 [fontsize=10] - 1485226034896 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034560 -> 1485226034896 [fontsize=10] - 1485226033840 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226033696 -> 1485226033840 [fontsize=10] - 1485226033984 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226033840 -> 1485226033984 [fontsize=10] - 1485226034368 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226033984 -> 1485226034368 [fontsize=10] - 1485226034656 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226034368 -> 1485226034656 [fontsize=10] - 1485226034512 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226033840 -> 1485226034512 [fontsize=10] - 1485226035232 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226034512 -> 1485226035232 [fontsize=10] - 1485226034944 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226033840 -> 1485226034944 [fontsize=10] - 1485226035088 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226034944 -> 1485226035088 [fontsize=10] - 1485226035616 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035088 -> 1485226035616 [fontsize=10] - 1485226035472 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035616 -> 1485226035472 [fontsize=10] - 1485226035712 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035472 -> 1485226035712 [fontsize=10] - 1485226035856 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035712 -> 1485226035856 [fontsize=10] - 1485226036000 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035856 -> 1485226036000 [fontsize=10] - 1485226036144 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226036000 -> 1485226036144 [fontsize=10] - 1485226033264 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225997888 -> 1485226033264 [fontsize=10] - 1485226035376 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033264 -> 1485226035376 [fontsize=10] - 1485226035568 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226035376 -> 1485226035568 [fontsize=10] - 1485226036336 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226035568 -> 1485226036336 [fontsize=10] - 1485226036288 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036336 -> 1485226036288 [fontsize=10] - 1485226036096 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036288 -> 1485226036096 [fontsize=10] - 1485226036672 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036096 -> 1485226036672 [fontsize=10] - 1485226036816 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226036672 -> 1485226036816 [fontsize=10] - 1485226036912 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036816 -> 1485226036912 [fontsize=10] - 1485226037056 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036816 -> 1485226037056 [fontsize=10] - 1485226037104 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226036816 -> 1485226037104 [fontsize=10] - 1485226035952 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226033264 -> 1485226035952 [fontsize=10] - 1485226035664 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035952 -> 1485226035664 [fontsize=10] - 1485226036528 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035664 -> 1485226036528 [fontsize=10] - 1485226036864 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226036528 -> 1485226036864 [fontsize=10] - 1485226036624 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035952 -> 1485226036624 [fontsize=10] - 1485226037152 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226036624 -> 1485226037152 [fontsize=10] - 1485226036432 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226035952 -> 1485226036432 [fontsize=10] - 1485226037680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226036432 -> 1485226037680 [fontsize=10] - 1485226037584 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037680 -> 1485226037584 [fontsize=10] - 1485226037728 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037584 -> 1485226037728 [fontsize=10] - 1485226037872 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037728 -> 1485226037872 [fontsize=10] - 1485226038016 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037872 -> 1485226038016 [fontsize=10] - 1485226038160 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226038016 -> 1485226038160 [fontsize=10] - 1485226038304 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226038160 -> 1485226038304 [fontsize=10] - 1485226033888 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225997888 -> 1485226033888 [fontsize=10] - 1485226035808 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033888 -> 1485226035808 [fontsize=10] - 1485226038112 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226035808 -> 1485226038112 [fontsize=10] - 1485226037776 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038112 -> 1485226037776 [fontsize=10] - 1485226038256 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226037776 -> 1485226038256 [fontsize=10] - 1485226038736 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038256 -> 1485226038736 [fontsize=10] - 1485226038592 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038736 -> 1485226038592 [fontsize=10] - 1485226038784 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226038592 -> 1485226038784 [fontsize=10] - 1485226039024 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038784 -> 1485226039024 [fontsize=10] - 1485226039072 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038784 -> 1485226039072 [fontsize=10] - 1485226039216 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226038784 -> 1485226039216 [fontsize=10] - 1485226037440 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226033888 -> 1485226037440 [fontsize=10] - 1485226037296 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037440 -> 1485226037296 [fontsize=10] - 1485226038640 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037296 -> 1485226038640 [fontsize=10] - 1485226038880 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226038640 -> 1485226038880 [fontsize=10] - 1485226038688 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037440 -> 1485226038688 [fontsize=10] - 1485226039504 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226038688 -> 1485226039504 [fontsize=10] - 1485226039264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226037440 -> 1485226039264 [fontsize=10] - 1485226039600 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226039264 -> 1485226039600 [fontsize=10] - 1485226039696 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226039600 -> 1485226039696 [fontsize=10] - 1485226039552 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226039696 -> 1485226039552 [fontsize=10] - 1485226039936 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226039552 -> 1485226039936 [fontsize=10] - 1485226040080 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226039936 -> 1485226040080 [fontsize=10] - 1485226040224 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040080 -> 1485226040224 [fontsize=10] - 1485226040368 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226040224 -> 1485226040368 [fontsize=10] - 1485226033600 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225997888 -> 1485226033600 [fontsize=10] - 1485226039360 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226033600 -> 1485226039360 [fontsize=10] - 1485226034272 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225997888 -> 1485226034272 [fontsize=10] - 1485226040176 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226034272 -> 1485226040176 [fontsize=10] - 1485226040848 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040176 -> 1485226040848 [fontsize=10] - 1485226040512 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040848 -> 1485226040512 [fontsize=10] - 1485226040704 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040512 -> 1485226040704 [fontsize=10] - 1485226041088 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040704 -> 1485226041088 [fontsize=10] - 1485226040800 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226041088 -> 1485226040800 [fontsize=10] - 1485226040944 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226040800 -> 1485226040944 [fontsize=10] - 1485226041328 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040944 -> 1485226041328 [fontsize=10] - 1485226041184 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040944 -> 1485226041184 [fontsize=10] - 1485226041472 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040944 -> 1485226041472 [fontsize=10] - 1485226040032 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226034272 -> 1485226040032 [fontsize=10] - 1485226040656 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040032 -> 1485226040656 [fontsize=10] - 1485226041040 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040656 -> 1485226041040 [fontsize=10] - 1485226041232 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226041040 -> 1485226041232 [fontsize=10] - 1485226040896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040032 -> 1485226040896 [fontsize=10] - 1485226041760 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226040896 -> 1485226041760 [fontsize=10] - 1485226041520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040032 -> 1485226041520 [fontsize=10] - 1485226041616 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226041520 -> 1485226041616 [fontsize=10] - 1485226042144 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226041616 -> 1485226042144 [fontsize=10] - 1485226042000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226042144 -> 1485226042000 [fontsize=10] - 1485226042240 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226042000 -> 1485226042240 [fontsize=10] - 1485226042384 [label=span color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226042240 -> 1485226042384 [fontsize=10] - 1485226042528 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226042384 -> 1485226042528 [fontsize=10] - 1485226042672 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226042528 -> 1485226042672 [fontsize=10] - 1485226042624 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226042384 -> 1485226042624 [fontsize=10] - 1485226042816 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226042384 -> 1485226042816 [fontsize=10] - 1485226042960 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226042816 -> 1485226042960 [fontsize=10] - 1485225999232 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225996880 -> 1485225999232 [fontsize=10] - 1485225847696 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225847696 [fontsize=10] - 1485225885168 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225847696 -> 1485225885168 [fontsize=10] - 1485225997168 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225885168 -> 1485225997168 [fontsize=10] - 1485225848896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225848896 [fontsize=10] - 1485225999520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225848896 -> 1485225999520 [fontsize=10] - 1485226043152 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225999520 -> 1485226043152 [fontsize=10] - 1485226038496 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043152 -> 1485226038496 [fontsize=10] - 1485226040752 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226038496 -> 1485226040752 [fontsize=10] - 1485226043200 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226040752 -> 1485226043200 [fontsize=10] - 1485226043584 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043200 -> 1485226043584 [fontsize=10] - 1485226042720 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043584 -> 1485226042720 [fontsize=10] - 1485226044352 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226042720 -> 1485226044352 [fontsize=10] - 1485226044016 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226040752 -> 1485226044016 [fontsize=10] - 1485226043536 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044016 -> 1485226043536 [fontsize=10] - 1485226043344 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043536 -> 1485226043344 [fontsize=10] - 1485226043104 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043344 -> 1485226043104 [fontsize=10] - 1485226044448 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043104 -> 1485226044448 [fontsize=10] - 1485226044112 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044448 -> 1485226044112 [fontsize=10] - 1485226044496 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044112 -> 1485226044496 [fontsize=10] - 1485226044640 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044496 -> 1485226044640 [fontsize=10] - 1485226044736 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044640 -> 1485226044736 [fontsize=10] - 1485226044880 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044736 -> 1485226044880 [fontsize=10] - 1485226044976 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044736 -> 1485226044976 [fontsize=10] - 1485226045072 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044736 -> 1485226045072 [fontsize=10] - 1485226043488 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226043536 -> 1485226043488 [fontsize=10] - 1485226044160 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043488 -> 1485226044160 [fontsize=10] - 1485226044400 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226044160 -> 1485226044400 [fontsize=10] - 1485226044832 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226044400 -> 1485226044832 [fontsize=10] - 1485226044544 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043488 -> 1485226044544 [fontsize=10] - 1485226045408 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226044544 -> 1485226045408 [fontsize=10] - 1485226045120 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043488 -> 1485226045120 [fontsize=10] - 1485226045264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045120 -> 1485226045264 [fontsize=10] - 1485226045792 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045264 -> 1485226045792 [fontsize=10] - 1485226045648 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045792 -> 1485226045648 [fontsize=10] - 1485226045888 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045648 -> 1485226045888 [fontsize=10] - 1485226046032 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045888 -> 1485226046032 [fontsize=10] - 1485226046176 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226046032 -> 1485226046176 [fontsize=10] - 1485226046320 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226046176 -> 1485226046320 [fontsize=10] - 1485226043632 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044016 -> 1485226043632 [fontsize=10] - 1485226044208 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043632 -> 1485226044208 [fontsize=10] - 1485226046128 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044208 -> 1485226046128 [fontsize=10] - 1485226045840 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046128 -> 1485226045840 [fontsize=10] - 1485226046464 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226045840 -> 1485226046464 [fontsize=10] - 1485226046416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046464 -> 1485226046416 [fontsize=10] - 1485226046656 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046416 -> 1485226046656 [fontsize=10] - 1485226046752 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226046656 -> 1485226046752 [fontsize=10] - 1485226046992 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046752 -> 1485226046992 [fontsize=10] - 1485226047088 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046752 -> 1485226047088 [fontsize=10] - 1485226047136 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226046752 -> 1485226047136 [fontsize=10] - 1485226045456 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226043632 -> 1485226045456 [fontsize=10] - 1485226045984 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045456 -> 1485226045984 [fontsize=10] - 1485226046704 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045984 -> 1485226046704 [fontsize=10] - 1485226046896 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226046704 -> 1485226046896 [fontsize=10] - 1485226046848 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045456 -> 1485226046848 [fontsize=10] - 1485226047520 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226046848 -> 1485226047520 [fontsize=10] - 1485226047232 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226045456 -> 1485226047232 [fontsize=10] - 1485226047376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226047232 -> 1485226047376 [fontsize=10] - 1485226047904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226047376 -> 1485226047904 [fontsize=10] - 1485226047760 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226047904 -> 1485226047760 [fontsize=10] - 1485226048000 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226047760 -> 1485226048000 [fontsize=10] - 1485226048144 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226048000 -> 1485226048144 [fontsize=10] - 1485226048288 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226048144 -> 1485226048288 [fontsize=10] - 1485226048432 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226048288 -> 1485226048432 [fontsize=10] - 1485226043776 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044016 -> 1485226043776 [fontsize=10] - 1485226047568 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043776 -> 1485226047568 [fontsize=10] - 1485226048624 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226047568 -> 1485226048624 [fontsize=10] - 1485226047952 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226048624 -> 1485226047952 [fontsize=10] - 1485226048864 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226047952 -> 1485226048864 [fontsize=10] - 1485226048576 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226048864 -> 1485226048576 [fontsize=10] - 1485226048960 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226048576 -> 1485226048960 [fontsize=10] - 1485226049104 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226048960 -> 1485226049104 [fontsize=10] - 1485226049056 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226049104 -> 1485226049056 [fontsize=10] - 1485226049248 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226049104 -> 1485226049248 [fontsize=10] - 1485226049392 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226049104 -> 1485226049392 [fontsize=10] - 1485226048240 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226043776 -> 1485226048240 [fontsize=10] - 1485226047856 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226048240 -> 1485226047856 [fontsize=10] - 1485226048720 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226047856 -> 1485226048720 [fontsize=10] - 1485226049152 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226048720 -> 1485226049152 [fontsize=10] - 1485226048912 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226048240 -> 1485226048912 [fontsize=10] - 1485226164432 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226048912 -> 1485226164432 [fontsize=10] - 1485226049296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226048240 -> 1485226049296 [fontsize=10] - 1485226164384 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226049296 -> 1485226164384 [fontsize=10] - 1485226164816 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226164384 -> 1485226164816 [fontsize=10] - 1485226164672 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226164816 -> 1485226164672 [fontsize=10] - 1485226164912 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226164672 -> 1485226164912 [fontsize=10] - 1485226165056 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226164912 -> 1485226165056 [fontsize=10] - 1485226165200 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226165056 -> 1485226165200 [fontsize=10] - 1485226165344 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226165200 -> 1485226165344 [fontsize=10] - 1485226045744 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044016 -> 1485226045744 [fontsize=10] - 1485226164480 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226045744 -> 1485226164480 [fontsize=10] - 1485226044592 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044016 -> 1485226044592 [fontsize=10] - 1485226165152 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226044592 -> 1485226165152 [fontsize=10] - 1485226165872 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165152 -> 1485226165872 [fontsize=10] - 1485226165584 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165872 -> 1485226165584 [fontsize=10] - 1485226165728 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165584 -> 1485226165728 [fontsize=10] - 1485226166112 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165728 -> 1485226166112 [fontsize=10] - 1485226165824 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226166112 -> 1485226165824 [fontsize=10] - 1485226165968 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226165824 -> 1485226165968 [fontsize=10] - 1485226166352 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165968 -> 1485226166352 [fontsize=10] - 1485226166208 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165968 -> 1485226166208 [fontsize=10] - 1485226166496 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226165968 -> 1485226166496 [fontsize=10] - 1485226165008 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226044592 -> 1485226165008 [fontsize=10] - 1485226165680 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226165008 -> 1485226165680 [fontsize=10] - 1485226166064 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226165680 -> 1485226166064 [fontsize=10] - 1485226166256 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226166064 -> 1485226166256 [fontsize=10] - 1485226165920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226165008 -> 1485226165920 [fontsize=10] - 1485226166784 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226165920 -> 1485226166784 [fontsize=10] - 1485226166544 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226165008 -> 1485226166544 [fontsize=10] - 1485226166640 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226166544 -> 1485226166640 [fontsize=10] - 1485226167168 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226166640 -> 1485226167168 [fontsize=10] - 1485226167024 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167168 -> 1485226167024 [fontsize=10] - 1485226167264 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167024 -> 1485226167264 [fontsize=10] - 1485226167408 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167264 -> 1485226167408 [fontsize=10] - 1485226167552 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167408 -> 1485226167552 [fontsize=10] - 1485226167696 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226167552 -> 1485226167696 [fontsize=10] - 1485226043680 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226040752 -> 1485226043680 [fontsize=10] - 1485225881712 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225881712 [fontsize=10] - 1485226043440 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225881712 -> 1485226043440 [fontsize=10] - 1485226046272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043440 -> 1485226046272 [fontsize=10] - 1485226165776 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226046272 -> 1485226165776 [fontsize=10] - 1485226166832 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226165776 -> 1485226166832 [fontsize=10] - 1485226167936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226166832 -> 1485226167936 [fontsize=10] - 1485226168128 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167936 -> 1485226168128 [fontsize=10] - 1485226168464 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226168128 -> 1485226168464 [fontsize=10] - 1485226168512 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226168464 -> 1485226168512 [fontsize=10] - 1485226167648 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226166832 -> 1485226167648 [fontsize=10] - 1485226167984 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167648 -> 1485226167984 [fontsize=10] - 1485226168800 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226167984 -> 1485226168800 [fontsize=10] - 1485226168608 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168800 -> 1485226168608 [fontsize=10] - 1485226168896 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168608 -> 1485226168896 [fontsize=10] - 1485226168752 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168896 -> 1485226168752 [fontsize=10] - 1485226168704 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168752 -> 1485226168704 [fontsize=10] - 1485226169280 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168704 -> 1485226169280 [fontsize=10] - 1485226169136 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226169280 -> 1485226169136 [fontsize=10] - 1485226169472 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226169136 -> 1485226169472 [fontsize=10] - 1485226169568 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226169136 -> 1485226169568 [fontsize=10] - 1485226169664 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226169136 -> 1485226169664 [fontsize=10] - 1485226167888 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167984 -> 1485226167888 [fontsize=10] - 1485226168320 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167888 -> 1485226168320 [fontsize=10] - 1485226169232 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226168320 -> 1485226169232 [fontsize=10] - 1485226169424 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226169232 -> 1485226169424 [fontsize=10] - 1485226169328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167888 -> 1485226169328 [fontsize=10] - 1485226169712 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226169328 -> 1485226169712 [fontsize=10] - 1485226168944 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167888 -> 1485226168944 [fontsize=10] - 1485226169856 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226168944 -> 1485226169856 [fontsize=10] - 1485226170336 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226169856 -> 1485226170336 [fontsize=10] - 1485226170000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170336 -> 1485226170000 [fontsize=10] - 1485226170384 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170000 -> 1485226170384 [fontsize=10] - 1485226170528 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170384 -> 1485226170528 [fontsize=10] - 1485226170672 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170528 -> 1485226170672 [fontsize=10] - 1485226170816 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226170672 -> 1485226170816 [fontsize=10] - 1485226168656 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167648 -> 1485226168656 [fontsize=10] - 1485226170048 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168656 -> 1485226170048 [fontsize=10] - 1485226170240 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226170048 -> 1485226170240 [fontsize=10] - 1485226171008 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226170240 -> 1485226171008 [fontsize=10] - 1485226170960 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226171008 -> 1485226170960 [fontsize=10] - 1485226170768 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226170960 -> 1485226170768 [fontsize=10] - 1485226171344 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226170768 -> 1485226171344 [fontsize=10] - 1485226171488 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226171344 -> 1485226171488 [fontsize=10] - 1485226171584 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226171488 -> 1485226171584 [fontsize=10] - 1485226171728 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226171488 -> 1485226171728 [fontsize=10] - 1485226171776 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226171488 -> 1485226171776 [fontsize=10] - 1485226170624 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226168656 -> 1485226170624 [fontsize=10] - 1485226170192 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170624 -> 1485226170192 [fontsize=10] - 1485226171200 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170192 -> 1485226171200 [fontsize=10] - 1485226171536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226171200 -> 1485226171536 [fontsize=10] - 1485226171296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170624 -> 1485226171296 [fontsize=10] - 1485226172112 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226171296 -> 1485226172112 [fontsize=10] - 1485226171824 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226170624 -> 1485226171824 [fontsize=10] - 1485226171968 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226171824 -> 1485226171968 [fontsize=10] - 1485226172496 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226171968 -> 1485226172496 [fontsize=10] - 1485226172352 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172496 -> 1485226172352 [fontsize=10] - 1485226172592 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172352 -> 1485226172592 [fontsize=10] - 1485226172736 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172592 -> 1485226172736 [fontsize=10] - 1485226172880 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172736 -> 1485226172880 [fontsize=10] - 1485226173024 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226172880 -> 1485226173024 [fontsize=10] - 1485226168368 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167648 -> 1485226168368 [fontsize=10] - 1485226170480 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168368 -> 1485226170480 [fontsize=10] - 1485226172832 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226170480 -> 1485226172832 [fontsize=10] - 1485226172448 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226172832 -> 1485226172448 [fontsize=10] - 1485226172976 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226172448 -> 1485226172976 [fontsize=10] - 1485226173408 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226172976 -> 1485226173408 [fontsize=10] - 1485226173216 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226173408 -> 1485226173216 [fontsize=10] - 1485226173456 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226173216 -> 1485226173456 [fontsize=10] - 1485226173696 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226173456 -> 1485226173696 [fontsize=10] - 1485226173744 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226173456 -> 1485226173744 [fontsize=10] - 1485226173888 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226173456 -> 1485226173888 [fontsize=10] - 1485226172160 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226168368 -> 1485226172160 [fontsize=10] - 1485226171104 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172160 -> 1485226171104 [fontsize=10] - 1485226173312 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226171104 -> 1485226173312 [fontsize=10] - 1485226173552 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226173312 -> 1485226173552 [fontsize=10] - 1485226173360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172160 -> 1485226173360 [fontsize=10] - 1485226174176 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226173360 -> 1485226174176 [fontsize=10] - 1485226173936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226172160 -> 1485226173936 [fontsize=10] - 1485226174032 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226173936 -> 1485226174032 [fontsize=10] - 1485226174560 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174032 -> 1485226174560 [fontsize=10] - 1485226174416 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174560 -> 1485226174416 [fontsize=10] - 1485226174656 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174416 -> 1485226174656 [fontsize=10] - 1485226174800 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174656 -> 1485226174800 [fontsize=10] - 1485226174944 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174800 -> 1485226174944 [fontsize=10] - 1485226175088 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226174944 -> 1485226175088 [fontsize=10] - 1485226168560 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226167648 -> 1485226168560 [fontsize=10] - 1485226174224 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226168560 -> 1485226174224 [fontsize=10] - 1485226169616 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167648 -> 1485226169616 [fontsize=10] - 1485226174896 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226169616 -> 1485226174896 [fontsize=10] - 1485226175616 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226174896 -> 1485226175616 [fontsize=10] - 1485226175328 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175616 -> 1485226175328 [fontsize=10] - 1485226175472 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175328 -> 1485226175472 [fontsize=10] - 1485226175856 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175472 -> 1485226175856 [fontsize=10] - 1485226175568 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175856 -> 1485226175568 [fontsize=10] - 1485226175712 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226175568 -> 1485226175712 [fontsize=10] - 1485226176096 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175712 -> 1485226176096 [fontsize=10] - 1485226175952 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175712 -> 1485226175952 [fontsize=10] - 1485226176240 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226175712 -> 1485226176240 [fontsize=10] - 1485226174752 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226169616 -> 1485226174752 [fontsize=10] - 1485226175424 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174752 -> 1485226175424 [fontsize=10] - 1485226175808 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226175424 -> 1485226175808 [fontsize=10] - 1485226176000 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226175808 -> 1485226176000 [fontsize=10] - 1485226175664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174752 -> 1485226175664 [fontsize=10] - 1485226176528 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226175664 -> 1485226176528 [fontsize=10] - 1485226176288 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226174752 -> 1485226176288 [fontsize=10] - 1485226176384 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226176288 -> 1485226176384 [fontsize=10] - 1485226176912 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226176384 -> 1485226176912 [fontsize=10] - 1485226176768 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226176912 -> 1485226176768 [fontsize=10] - 1485226177008 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226176768 -> 1485226177008 [fontsize=10] - 1485226177152 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177008 -> 1485226177152 [fontsize=10] - 1485226177296 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177152 -> 1485226177296 [fontsize=10] - 1485226177440 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226177296 -> 1485226177440 [fontsize=10] - 1485226168272 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226166832 -> 1485226168272 [fontsize=10] - 1485225994816 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485225994816 [fontsize=10] - 1485226043008 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225994816 -> 1485226043008 [fontsize=10] - 1485226176864 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226043008 -> 1485226176864 [fontsize=10] - 1485226041808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226041808 [fontsize=10] - 1485226168032 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226041808 -> 1485226168032 [fontsize=10] - 1485226173264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226168032 -> 1485226173264 [fontsize=10] - 1485226178544 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226173264 -> 1485226178544 [fontsize=10] - 1485226167840 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178544 -> 1485226167840 [fontsize=10] - 1485226177536 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167840 -> 1485226177536 [fontsize=10] - 1485226177728 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177536 -> 1485226177728 [fontsize=10] - 1485226178448 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177728 -> 1485226178448 [fontsize=10] - 1485226178400 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226178448 -> 1485226178400 [fontsize=10] - 1485226178352 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226167840 -> 1485226178352 [fontsize=10] - 1485226178976 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178352 -> 1485226178976 [fontsize=10] - 1485226177776 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178976 -> 1485226177776 [fontsize=10] - 1485226178112 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226177776 -> 1485226178112 [fontsize=10] - 1485226178064 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178112 -> 1485226178064 [fontsize=10] - 1485226178736 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178064 -> 1485226178736 [fontsize=10] - 1485226179072 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178736 -> 1485226179072 [fontsize=10] - 1485226178928 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226179072 -> 1485226178928 [fontsize=10] - 1485226179312 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178928 -> 1485226179312 [fontsize=10] - 1485226179408 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226179312 -> 1485226179408 [fontsize=10] - 1485226179504 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226179312 -> 1485226179504 [fontsize=10] - 1485226179600 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226179312 -> 1485226179600 [fontsize=10] - 1485226178496 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178976 -> 1485226178496 [fontsize=10] - 1485226177392 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226178496 -> 1485226177392 [fontsize=10] - 1485226179120 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177392 -> 1485226179120 [fontsize=10] - 1485226179360 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226179120 -> 1485226179360 [fontsize=10] - 1485226179168 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226178496 -> 1485226179168 [fontsize=10] - 1485226179936 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226179168 -> 1485226179936 [fontsize=10] - 1485226179648 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226178496 -> 1485226179648 [fontsize=10] - 1485226180032 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226179648 -> 1485226180032 [fontsize=10] - 1485226180128 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180032 -> 1485226180128 [fontsize=10] - 1485226179984 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180128 -> 1485226179984 [fontsize=10] - 1485226180368 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226179984 -> 1485226180368 [fontsize=10] - 1485226180512 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180368 -> 1485226180512 [fontsize=10] - 1485226262640 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180512 -> 1485226262640 [fontsize=10] - 1485226262784 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226262640 -> 1485226262784 [fontsize=10] - 1485226178304 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178352 -> 1485226178304 [fontsize=10] - 1485226179792 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178304 -> 1485226179792 [fontsize=10] - 1485226180224 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226179792 -> 1485226180224 [fontsize=10] - 1485226262976 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226180224 -> 1485226262976 [fontsize=10] - 1485226262928 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226262976 -> 1485226262928 [fontsize=10] - 1485226262736 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226262928 -> 1485226262736 [fontsize=10] - 1485226263312 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226262736 -> 1485226263312 [fontsize=10] - 1485226263456 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226263312 -> 1485226263456 [fontsize=10] - 1485226263552 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226263456 -> 1485226263552 [fontsize=10] - 1485226263696 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226263456 -> 1485226263696 [fontsize=10] - 1485226263744 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226263456 -> 1485226263744 [fontsize=10] - 1485226180464 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178304 -> 1485226180464 [fontsize=10] - 1485226262592 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180464 -> 1485226262592 [fontsize=10] - 1485226263168 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226262592 -> 1485226263168 [fontsize=10] - 1485226263504 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226263168 -> 1485226263504 [fontsize=10] - 1485226263264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180464 -> 1485226263264 [fontsize=10] - 1485226264080 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226263264 -> 1485226264080 [fontsize=10] - 1485226263792 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226180464 -> 1485226263792 [fontsize=10] - 1485226263936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226263792 -> 1485226263936 [fontsize=10] - 1485226264464 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226263936 -> 1485226264464 [fontsize=10] - 1485226264320 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264464 -> 1485226264320 [fontsize=10] - 1485226264560 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264320 -> 1485226264560 [fontsize=10] - 1485226264704 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264560 -> 1485226264704 [fontsize=10] - 1485226264848 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264704 -> 1485226264848 [fontsize=10] - 1485226264992 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226264848 -> 1485226264992 [fontsize=10] - 1485226178784 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178352 -> 1485226178784 [fontsize=10] - 1485226180320 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178784 -> 1485226180320 [fontsize=10] - 1485226264800 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226180320 -> 1485226264800 [fontsize=10] - 1485226264416 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226264800 -> 1485226264416 [fontsize=10] - 1485226264944 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226264416 -> 1485226264944 [fontsize=10] - 1485226265424 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226264944 -> 1485226265424 [fontsize=10] - 1485226265280 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226265424 -> 1485226265280 [fontsize=10] - 1485226265472 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226265280 -> 1485226265472 [fontsize=10] - 1485226265712 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226265472 -> 1485226265712 [fontsize=10] - 1485226265760 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226265472 -> 1485226265760 [fontsize=10] - 1485226265904 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226265472 -> 1485226265904 [fontsize=10] - 1485226264128 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178784 -> 1485226264128 [fontsize=10] - 1485226263072 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264128 -> 1485226263072 [fontsize=10] - 1485226265328 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226263072 -> 1485226265328 [fontsize=10] - 1485226265568 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226265328 -> 1485226265568 [fontsize=10] - 1485226265376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264128 -> 1485226265376 [fontsize=10] - 1485226266192 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226265376 -> 1485226266192 [fontsize=10] - 1485226265952 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226264128 -> 1485226265952 [fontsize=10] - 1485226266048 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226265952 -> 1485226266048 [fontsize=10] - 1485226266576 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266048 -> 1485226266576 [fontsize=10] - 1485226266432 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266576 -> 1485226266432 [fontsize=10] - 1485226266672 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266432 -> 1485226266672 [fontsize=10] - 1485226266816 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266672 -> 1485226266816 [fontsize=10] - 1485226266960 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266816 -> 1485226266960 [fontsize=10] - 1485226267104 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226266960 -> 1485226267104 [fontsize=10] - 1485226178208 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178352 -> 1485226178208 [fontsize=10] - 1485226265184 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178208 -> 1485226265184 [fontsize=10] - 1485226178640 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178352 -> 1485226178640 [fontsize=10] - 1485226266240 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226178640 -> 1485226266240 [fontsize=10] - 1485226267440 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226266240 -> 1485226267440 [fontsize=10] - 1485226267632 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267440 -> 1485226267632 [fontsize=10] - 1485226267584 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267632 -> 1485226267584 [fontsize=10] - 1485226267776 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267584 -> 1485226267776 [fontsize=10] - 1485226267392 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267776 -> 1485226267392 [fontsize=10] - 1485226267872 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226267392 -> 1485226267872 [fontsize=10] - 1485226268064 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267872 -> 1485226268064 [fontsize=10] - 1485226268112 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267872 -> 1485226268112 [fontsize=10] - 1485226268208 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226267872 -> 1485226268208 [fontsize=10] - 1485226266528 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226178640 -> 1485226266528 [fontsize=10] - 1485226266624 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266528 -> 1485226266624 [fontsize=10] - 1485226267680 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266624 -> 1485226267680 [fontsize=10] - 1485226267920 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226267680 -> 1485226267920 [fontsize=10] - 1485226267488 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266528 -> 1485226267488 [fontsize=10] - 1485226268496 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226267488 -> 1485226268496 [fontsize=10] - 1485226268256 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226266528 -> 1485226268256 [fontsize=10] - 1485226268352 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268256 -> 1485226268352 [fontsize=10] - 1485226268880 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268352 -> 1485226268880 [fontsize=10] - 1485226268736 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268880 -> 1485226268736 [fontsize=10] - 1485226268976 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268736 -> 1485226268976 [fontsize=10] - 1485226269120 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268976 -> 1485226269120 [fontsize=10] - 1485226269264 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269120 -> 1485226269264 [fontsize=10] - 1485226269408 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226269264 -> 1485226269408 [fontsize=10] - 1485226177680 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226167840 -> 1485226177680 [fontsize=10] - 1485226042192 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226042192 [fontsize=10] - 1485226177248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226042192 -> 1485226177248 [fontsize=10] - 1485226177920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177248 -> 1485226177920 [fontsize=10] - 1485226268832 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177920 -> 1485226268832 [fontsize=10] - 1485226269072 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226268832 -> 1485226269072 [fontsize=10] - 1485226268928 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269072 -> 1485226268928 [fontsize=10] - 1485226269360 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226268928 -> 1485226269360 [fontsize=10] - 1485226269744 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269360 -> 1485226269744 [fontsize=10] - 1485226270272 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226269744 -> 1485226270272 [fontsize=10] - 1485226265136 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226269072 -> 1485226265136 [fontsize=10] - 1485226270512 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226265136 -> 1485226270512 [fontsize=10] - 1485226269792 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270512 -> 1485226269792 [fontsize=10] - 1485226270320 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226269792 -> 1485226270320 [fontsize=10] - 1485226270032 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270320 -> 1485226270032 [fontsize=10] - 1485226270416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270032 -> 1485226270416 [fontsize=10] - 1485226270992 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270416 -> 1485226270992 [fontsize=10] - 1485226270464 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270992 -> 1485226270464 [fontsize=10] - 1485226271088 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226270464 -> 1485226271088 [fontsize=10] - 1485226271184 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226271088 -> 1485226271184 [fontsize=10] - 1485226271232 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226271088 -> 1485226271232 [fontsize=10] - 1485226271328 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226271088 -> 1485226271328 [fontsize=10] - 1485226270704 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226270512 -> 1485226270704 [fontsize=10] - 1485226269696 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226270704 -> 1485226269696 [fontsize=10] - 1485226270800 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269696 -> 1485226270800 [fontsize=10] - 1485226271040 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226270800 -> 1485226271040 [fontsize=10] - 1485226270752 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226270704 -> 1485226270752 [fontsize=10] - 1485226271664 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226270752 -> 1485226271664 [fontsize=10] - 1485226271376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226270704 -> 1485226271376 [fontsize=10] - 1485226271520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226271376 -> 1485226271520 [fontsize=10] - 1485226272048 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226271520 -> 1485226272048 [fontsize=10] - 1485226271904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272048 -> 1485226271904 [fontsize=10] - 1485226272144 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226271904 -> 1485226272144 [fontsize=10] - 1485226272288 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272144 -> 1485226272288 [fontsize=10] - 1485226272432 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272288 -> 1485226272432 [fontsize=10] - 1485226272576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226272432 -> 1485226272576 [fontsize=10] - 1485226270080 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226265136 -> 1485226270080 [fontsize=10] - 1485226271712 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270080 -> 1485226271712 [fontsize=10] - 1485226272000 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226271712 -> 1485226272000 [fontsize=10] - 1485226272768 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226272000 -> 1485226272768 [fontsize=10] - 1485226272720 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226272768 -> 1485226272720 [fontsize=10] - 1485226272528 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226272720 -> 1485226272528 [fontsize=10] - 1485226273104 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226272528 -> 1485226273104 [fontsize=10] - 1485226273248 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226273104 -> 1485226273248 [fontsize=10] - 1485226273344 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226273248 -> 1485226273344 [fontsize=10] - 1485226273488 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226273248 -> 1485226273488 [fontsize=10] - 1485226273536 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226273248 -> 1485226273536 [fontsize=10] - 1485226272384 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226270080 -> 1485226272384 [fontsize=10] - 1485226272096 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272384 -> 1485226272096 [fontsize=10] - 1485226272960 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272096 -> 1485226272960 [fontsize=10] - 1485226273296 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226272960 -> 1485226273296 [fontsize=10] - 1485226273056 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272384 -> 1485226273056 [fontsize=10] - 1485226273872 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226273056 -> 1485226273872 [fontsize=10] - 1485226273584 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272384 -> 1485226273584 [fontsize=10] - 1485226273968 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226273584 -> 1485226273968 [fontsize=10] - 1485226274064 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226273968 -> 1485226274064 [fontsize=10] - 1485226273920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226274064 -> 1485226273920 [fontsize=10] - 1485226274304 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226273920 -> 1485226274304 [fontsize=10] - 1485226274448 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226274304 -> 1485226274448 [fontsize=10] - 1485226274592 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226274448 -> 1485226274592 [fontsize=10] - 1485226274736 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226274592 -> 1485226274736 [fontsize=10] - 1485226269936 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226265136 -> 1485226269936 [fontsize=10] - 1485226270656 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226269936 -> 1485226270656 [fontsize=10] - 1485226273728 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270656 -> 1485226273728 [fontsize=10] - 1485226272864 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226273728 -> 1485226272864 [fontsize=10] - 1485226274400 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226272864 -> 1485226274400 [fontsize=10] - 1485226274688 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226274400 -> 1485226274688 [fontsize=10] - 1485226275072 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226274688 -> 1485226275072 [fontsize=10] - 1485226275120 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226275072 -> 1485226275120 [fontsize=10] - 1485226275312 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226275120 -> 1485226275312 [fontsize=10] - 1485226275360 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226275120 -> 1485226275360 [fontsize=10] - 1485226275552 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226275120 -> 1485226275552 [fontsize=10] - 1485226272240 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226269936 -> 1485226272240 [fontsize=10] - 1485226274928 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272240 -> 1485226274928 [fontsize=10] - 1485226274976 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226274928 -> 1485226274976 [fontsize=10] - 1485226275408 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226274976 -> 1485226275408 [fontsize=10] - 1485226275264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272240 -> 1485226275264 [fontsize=10] - 1485226275888 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226275264 -> 1485226275888 [fontsize=10] - 1485226275648 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226272240 -> 1485226275648 [fontsize=10] - 1485226275744 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226275648 -> 1485226275744 [fontsize=10] - 1485226276272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226275744 -> 1485226276272 [fontsize=10] - 1485226276128 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276272 -> 1485226276128 [fontsize=10] - 1485226276368 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276128 -> 1485226276368 [fontsize=10] - 1485226276512 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276368 -> 1485226276512 [fontsize=10] - 1485226276656 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276512 -> 1485226276656 [fontsize=10] - 1485226276800 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226276656 -> 1485226276800 [fontsize=10] - 1485226270368 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226265136 -> 1485226270368 [fontsize=10] - 1485226276608 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226270368 -> 1485226276608 [fontsize=10] - 1485226275936 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226265136 -> 1485226275936 [fontsize=10] - 1485226277040 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226275936 -> 1485226277040 [fontsize=10] - 1485226276944 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277040 -> 1485226276944 [fontsize=10] - 1485226276896 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226276944 -> 1485226276896 [fontsize=10] - 1485226277328 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226276896 -> 1485226277328 [fontsize=10] - 1485226277376 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277328 -> 1485226277376 [fontsize=10] - 1485226277136 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277376 -> 1485226277136 [fontsize=10] - 1485226277568 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226277136 -> 1485226277568 [fontsize=10] - 1485226277616 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277568 -> 1485226277616 [fontsize=10] - 1485226277808 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277568 -> 1485226277808 [fontsize=10] - 1485226277952 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226277568 -> 1485226277952 [fontsize=10] - 1485226276320 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226275936 -> 1485226276320 [fontsize=10] - 1485226277280 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276320 -> 1485226277280 [fontsize=10] - 1485226277424 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226277280 -> 1485226277424 [fontsize=10] - 1485226277712 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226277424 -> 1485226277712 [fontsize=10] - 1485226277472 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276320 -> 1485226277472 [fontsize=10] - 1485226278240 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226277472 -> 1485226278240 [fontsize=10] - 1485226278000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276320 -> 1485226278000 [fontsize=10] - 1485226278096 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278000 -> 1485226278096 [fontsize=10] - 1485226278624 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278096 -> 1485226278624 [fontsize=10] - 1485226278480 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278624 -> 1485226278480 [fontsize=10] - 1485226278720 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278480 -> 1485226278720 [fontsize=10] - 1485226278864 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278720 -> 1485226278864 [fontsize=10] - 1485226360992 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278864 -> 1485226360992 [fontsize=10] - 1485226361136 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226360992 -> 1485226361136 [fontsize=10] - 1485226270176 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226269072 -> 1485226270176 [fontsize=10] - 1485226043248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226043248 [fontsize=10] - 1485226269840 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226043248 -> 1485226269840 [fontsize=10] - 1485226276992 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269840 -> 1485226276992 [fontsize=10] - 1485226278288 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226276992 -> 1485226278288 [fontsize=10] - 1485226269216 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226278288 -> 1485226269216 [fontsize=10] - 1485226361328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269216 -> 1485226361328 [fontsize=10] - 1485226361520 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361328 -> 1485226361520 [fontsize=10] - 1485226361808 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361520 -> 1485226361808 [fontsize=10] - 1485226361952 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226361808 -> 1485226361952 [fontsize=10] - 1485226361856 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226269216 -> 1485226361856 [fontsize=10] - 1485226362288 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361856 -> 1485226362288 [fontsize=10] - 1485226361760 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362288 -> 1485226361760 [fontsize=10] - 1485226361568 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361760 -> 1485226361568 [fontsize=10] - 1485226361472 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361568 -> 1485226361472 [fontsize=10] - 1485226362144 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361472 -> 1485226362144 [fontsize=10] - 1485226362336 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362144 -> 1485226362336 [fontsize=10] - 1485226362528 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362336 -> 1485226362528 [fontsize=10] - 1485226362864 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226362528 -> 1485226362864 [fontsize=10] - 1485226362816 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362864 -> 1485226362816 [fontsize=10] - 1485226363008 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362864 -> 1485226363008 [fontsize=10] - 1485226363104 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362864 -> 1485226363104 [fontsize=10] - 1485226361712 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226362288 -> 1485226361712 [fontsize=10] - 1485226361376 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361712 -> 1485226361376 [fontsize=10] - 1485226362480 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361376 -> 1485226362480 [fontsize=10] - 1485226362912 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226362480 -> 1485226362912 [fontsize=10] - 1485226362720 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361712 -> 1485226362720 [fontsize=10] - 1485226363440 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226362720 -> 1485226363440 [fontsize=10] - 1485226363152 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226361712 -> 1485226363152 [fontsize=10] - 1485226363296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363152 -> 1485226363296 [fontsize=10] - 1485226363824 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363296 -> 1485226363824 [fontsize=10] - 1485226363680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363824 -> 1485226363680 [fontsize=10] - 1485226363920 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363680 -> 1485226363920 [fontsize=10] - 1485226364064 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363920 -> 1485226364064 [fontsize=10] - 1485226364208 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226364064 -> 1485226364208 [fontsize=10] - 1485226364352 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226364208 -> 1485226364352 [fontsize=10] - 1485226362048 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361856 -> 1485226362048 [fontsize=10] - 1485226363488 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362048 -> 1485226363488 [fontsize=10] - 1485226363776 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226363488 -> 1485226363776 [fontsize=10] - 1485226364544 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226363776 -> 1485226364544 [fontsize=10] - 1485226364496 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226364544 -> 1485226364496 [fontsize=10] - 1485226364304 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226364496 -> 1485226364304 [fontsize=10] - 1485226364880 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226364304 -> 1485226364880 [fontsize=10] - 1485226365024 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226364880 -> 1485226365024 [fontsize=10] - 1485226365120 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226365024 -> 1485226365120 [fontsize=10] - 1485226365264 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226365024 -> 1485226365264 [fontsize=10] - 1485226365312 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226365024 -> 1485226365312 [fontsize=10] - 1485226364160 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226362048 -> 1485226364160 [fontsize=10] - 1485226363872 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226364160 -> 1485226363872 [fontsize=10] - 1485226364736 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226363872 -> 1485226364736 [fontsize=10] - 1485226365072 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226364736 -> 1485226365072 [fontsize=10] - 1485226364832 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226364160 -> 1485226364832 [fontsize=10] - 1485226365360 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226364832 -> 1485226365360 [fontsize=10] - 1485226364640 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226364160 -> 1485226364640 [fontsize=10] - 1485226365504 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226364640 -> 1485226365504 [fontsize=10] - 1485226365984 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365504 -> 1485226365984 [fontsize=10] - 1485226365648 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365984 -> 1485226365648 [fontsize=10] - 1485226366032 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365648 -> 1485226366032 [fontsize=10] - 1485226366176 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226366032 -> 1485226366176 [fontsize=10] - 1485226366320 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226366176 -> 1485226366320 [fontsize=10] - 1485226366464 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226366320 -> 1485226366464 [fontsize=10] - 1485226361280 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361856 -> 1485226361280 [fontsize=10] - 1485226364016 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361280 -> 1485226364016 [fontsize=10] - 1485226366272 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226364016 -> 1485226366272 [fontsize=10] - 1485226365888 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366272 -> 1485226365888 [fontsize=10] - 1485226366416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226365888 -> 1485226366416 [fontsize=10] - 1485226366896 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366416 -> 1485226366896 [fontsize=10] - 1485226366752 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366896 -> 1485226366752 [fontsize=10] - 1485226366944 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226366752 -> 1485226366944 [fontsize=10] - 1485226367184 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366944 -> 1485226367184 [fontsize=10] - 1485226367232 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366944 -> 1485226367232 [fontsize=10] - 1485226367376 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226366944 -> 1485226367376 [fontsize=10] - 1485226365696 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361280 -> 1485226365696 [fontsize=10] - 1485226365216 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365696 -> 1485226365216 [fontsize=10] - 1485226366800 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365216 -> 1485226366800 [fontsize=10] - 1485226367040 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226366800 -> 1485226367040 [fontsize=10] - 1485226366848 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365696 -> 1485226366848 [fontsize=10] - 1485226367664 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226366848 -> 1485226367664 [fontsize=10] - 1485226367424 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226365696 -> 1485226367424 [fontsize=10] - 1485226367520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226367424 -> 1485226367520 [fontsize=10] - 1485226368048 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226367520 -> 1485226368048 [fontsize=10] - 1485226367904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368048 -> 1485226367904 [fontsize=10] - 1485226368144 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226367904 -> 1485226368144 [fontsize=10] - 1485226368288 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368144 -> 1485226368288 [fontsize=10] - 1485226368432 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368288 -> 1485226368432 [fontsize=10] - 1485226368576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226368432 -> 1485226368576 [fontsize=10] - 1485226362672 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361856 -> 1485226362672 [fontsize=10] - 1485226367712 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362672 -> 1485226367712 [fontsize=10] - 1485226362624 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361856 -> 1485226362624 [fontsize=10] - 1485226368384 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226362624 -> 1485226368384 [fontsize=10] - 1485226369104 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226368384 -> 1485226369104 [fontsize=10] - 1485226368816 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226369104 -> 1485226368816 [fontsize=10] - 1485226368960 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226368816 -> 1485226368960 [fontsize=10] - 1485226369344 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226368960 -> 1485226369344 [fontsize=10] - 1485226369056 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226369344 -> 1485226369056 [fontsize=10] - 1485226369200 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226369056 -> 1485226369200 [fontsize=10] - 1485226369584 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226369200 -> 1485226369584 [fontsize=10] - 1485226369440 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226369200 -> 1485226369440 [fontsize=10] - 1485226369728 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226369200 -> 1485226369728 [fontsize=10] - 1485226368240 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226362624 -> 1485226368240 [fontsize=10] - 1485226368912 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368240 -> 1485226368912 [fontsize=10] - 1485226369296 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368912 -> 1485226369296 [fontsize=10] - 1485226369488 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226369296 -> 1485226369488 [fontsize=10] - 1485226369152 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368240 -> 1485226369152 [fontsize=10] - 1485226370016 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226369152 -> 1485226370016 [fontsize=10] - 1485226369776 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226368240 -> 1485226369776 [fontsize=10] - 1485226369872 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226369776 -> 1485226369872 [fontsize=10] - 1485226370400 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226369872 -> 1485226370400 [fontsize=10] - 1485226370256 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370400 -> 1485226370256 [fontsize=10] - 1485226370496 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370256 -> 1485226370496 [fontsize=10] - 1485226370640 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370496 -> 1485226370640 [fontsize=10] - 1485226370784 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370640 -> 1485226370784 [fontsize=10] - 1485226370928 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226370784 -> 1485226370928 [fontsize=10] - 1485226361424 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226269216 -> 1485226361424 [fontsize=10] - 1485226167360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226167360 [fontsize=10] - 1485226278576 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226167360 -> 1485226278576 [fontsize=10] - 1485226269552 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226278576 -> 1485226269552 [fontsize=10] - 1485226369008 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226269552 -> 1485226369008 [fontsize=10] - 1485226370064 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226369008 -> 1485226370064 [fontsize=10] - 1485226371168 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370064 -> 1485226371168 [fontsize=10] - 1485226371696 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226371168 -> 1485226371696 [fontsize=10] - 1485226371360 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226371696 -> 1485226371360 [fontsize=10] - 1485226371504 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226371360 -> 1485226371504 [fontsize=10] - 1485226361232 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226370064 -> 1485226361232 [fontsize=10] - 1485226371216 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361232 -> 1485226371216 [fontsize=10] - 1485226371888 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371216 -> 1485226371888 [fontsize=10] - 1485226371120 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371888 -> 1485226371120 [fontsize=10] - 1485226371408 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371120 -> 1485226371408 [fontsize=10] - 1485226371552 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371408 -> 1485226371552 [fontsize=10] - 1485226371600 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371552 -> 1485226371600 [fontsize=10] - 1485226372368 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371600 -> 1485226372368 [fontsize=10] - 1485226372704 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226372368 -> 1485226372704 [fontsize=10] - 1485226372752 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226372704 -> 1485226372752 [fontsize=10] - 1485226372800 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226372704 -> 1485226372800 [fontsize=10] - 1485226372848 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226372704 -> 1485226372848 [fontsize=10] - 1485226372512 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226371216 -> 1485226372512 [fontsize=10] - 1485226371840 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226372512 -> 1485226371840 [fontsize=10] - 1485226372176 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226371840 -> 1485226372176 [fontsize=10] - 1485226372608 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226372176 -> 1485226372608 [fontsize=10] - 1485226372416 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226372512 -> 1485226372416 [fontsize=10] - 1485226373184 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226372416 -> 1485226373184 [fontsize=10] - 1485226372896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226372512 -> 1485226372896 [fontsize=10] - 1485226373040 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226372896 -> 1485226373040 [fontsize=10] - 1485226373568 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373040 -> 1485226373568 [fontsize=10] - 1485226373424 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373568 -> 1485226373424 [fontsize=10] - 1485226373664 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373424 -> 1485226373664 [fontsize=10] - 1485226373808 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373664 -> 1485226373808 [fontsize=10] - 1485226373952 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373808 -> 1485226373952 [fontsize=10] - 1485226374096 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226373952 -> 1485226374096 [fontsize=10] - 1485226371744 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361232 -> 1485226371744 [fontsize=10] - 1485226373232 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371744 -> 1485226373232 [fontsize=10] - 1485226373520 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226373232 -> 1485226373520 [fontsize=10] - 1485226374288 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226373520 -> 1485226374288 [fontsize=10] - 1485226374240 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374288 -> 1485226374240 [fontsize=10] - 1485226374048 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374240 -> 1485226374048 [fontsize=10] - 1485226374624 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374048 -> 1485226374624 [fontsize=10] - 1485226374768 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226374624 -> 1485226374768 [fontsize=10] - 1485226374864 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374768 -> 1485226374864 [fontsize=10] - 1485226375008 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374768 -> 1485226375008 [fontsize=10] - 1485226375056 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226374768 -> 1485226375056 [fontsize=10] - 1485226373904 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226371744 -> 1485226373904 [fontsize=10] - 1485226373616 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373904 -> 1485226373616 [fontsize=10] - 1485226374480 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373616 -> 1485226374480 [fontsize=10] - 1485226374816 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226374480 -> 1485226374816 [fontsize=10] - 1485226374576 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373904 -> 1485226374576 [fontsize=10] - 1485226375392 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226374576 -> 1485226375392 [fontsize=10] - 1485226375104 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226373904 -> 1485226375104 [fontsize=10] - 1485226375344 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375104 -> 1485226375344 [fontsize=10] - 1485226375728 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375344 -> 1485226375728 [fontsize=10] - 1485226375440 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375728 -> 1485226375440 [fontsize=10] - 1485226375824 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375440 -> 1485226375824 [fontsize=10] - 1485226375968 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375824 -> 1485226375968 [fontsize=10] - 1485226376112 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375968 -> 1485226376112 [fontsize=10] - 1485226376256 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226376112 -> 1485226376256 [fontsize=10] - 1485226371984 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361232 -> 1485226371984 [fontsize=10] - 1485226373760 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371984 -> 1485226373760 [fontsize=10] - 1485226376064 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226373760 -> 1485226376064 [fontsize=10] - 1485226375248 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376064 -> 1485226375248 [fontsize=10] - 1485226376208 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226375248 -> 1485226376208 [fontsize=10] - 1485226376688 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376208 -> 1485226376688 [fontsize=10] - 1485226376544 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376688 -> 1485226376544 [fontsize=10] - 1485226376736 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226376544 -> 1485226376736 [fontsize=10] - 1485226376976 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376736 -> 1485226376976 [fontsize=10] - 1485226377024 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376736 -> 1485226377024 [fontsize=10] - 1485226377168 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226376736 -> 1485226377168 [fontsize=10] - 1485226375680 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226371984 -> 1485226375680 [fontsize=10] - 1485226374384 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375680 -> 1485226374384 [fontsize=10] - 1485226376592 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226374384 -> 1485226376592 [fontsize=10] - 1485226376832 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226376592 -> 1485226376832 [fontsize=10] - 1485226376640 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375680 -> 1485226376640 [fontsize=10] - 1485226524976 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226376640 -> 1485226524976 [fontsize=10] - 1485226377120 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226375680 -> 1485226377120 [fontsize=10] - 1485226524832 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226377120 -> 1485226524832 [fontsize=10] - 1485226525360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226524832 -> 1485226525360 [fontsize=10] - 1485226525216 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525360 -> 1485226525216 [fontsize=10] - 1485226525456 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525216 -> 1485226525456 [fontsize=10] - 1485226525600 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525456 -> 1485226525600 [fontsize=10] - 1485226525744 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525600 -> 1485226525744 [fontsize=10] - 1485226525888 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226525744 -> 1485226525888 [fontsize=10] - 1485226372128 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226361232 -> 1485226372128 [fontsize=10] - 1485226525024 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226372128 -> 1485226525024 [fontsize=10] - 1485226371936 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226361232 -> 1485226371936 [fontsize=10] - 1485226525696 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226371936 -> 1485226525696 [fontsize=10] - 1485226526368 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226525696 -> 1485226526368 [fontsize=10] - 1485226526032 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526368 -> 1485226526032 [fontsize=10] - 1485226526224 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526032 -> 1485226526224 [fontsize=10] - 1485226526608 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526224 -> 1485226526608 [fontsize=10] - 1485226526320 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526608 -> 1485226526320 [fontsize=10] - 1485226526464 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226526320 -> 1485226526464 [fontsize=10] - 1485226526848 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526464 -> 1485226526848 [fontsize=10] - 1485226526704 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526464 -> 1485226526704 [fontsize=10] - 1485226526992 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226526464 -> 1485226526992 [fontsize=10] - 1485226525552 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226371936 -> 1485226525552 [fontsize=10] - 1485226526176 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525552 -> 1485226526176 [fontsize=10] - 1485226526560 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226526176 -> 1485226526560 [fontsize=10] - 1485226526752 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226526560 -> 1485226526752 [fontsize=10] - 1485226526416 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525552 -> 1485226526416 [fontsize=10] - 1485226527280 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226526416 -> 1485226527280 [fontsize=10] - 1485226527040 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226525552 -> 1485226527040 [fontsize=10] - 1485226527136 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527040 -> 1485226527136 [fontsize=10] - 1485226527664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527136 -> 1485226527664 [fontsize=10] - 1485226527520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527664 -> 1485226527520 [fontsize=10] - 1485226527760 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527520 -> 1485226527760 [fontsize=10] - 1485226527904 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527760 -> 1485226527904 [fontsize=10] - 1485226528048 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527904 -> 1485226528048 [fontsize=10] - 1485226528192 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226528048 -> 1485226528192 [fontsize=10] - 1485226372080 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226370064 -> 1485226372080 [fontsize=10] - 1485226177824 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226177824 [fontsize=10] - 1485226366656 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226177824 -> 1485226366656 [fontsize=10] - 1485226371264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226366656 -> 1485226371264 [fontsize=10] - 1485226370592 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226371264 -> 1485226370592 [fontsize=10] - 1485226527616 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226370592 -> 1485226527616 [fontsize=10] - 1485226528672 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226527616 -> 1485226528672 [fontsize=10] - 1485226529104 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226528672 -> 1485226529104 [fontsize=10] - 1485226528528 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226529104 -> 1485226528528 [fontsize=10] - 1485226529152 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226528528 -> 1485226529152 [fontsize=10] - 1485226528720 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226527616 -> 1485226528720 [fontsize=10] - 1485226528624 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226528720 -> 1485226528624 [fontsize=10] - 1485226529296 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528624 -> 1485226529296 [fontsize=10] - 1485226528384 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529296 -> 1485226528384 [fontsize=10] - 1485226528768 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528384 -> 1485226528768 [fontsize=10] - 1485226528432 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528768 -> 1485226528432 [fontsize=10] - 1485226529248 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528432 -> 1485226529248 [fontsize=10] - 1485226529920 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529248 -> 1485226529920 [fontsize=10] - 1485226529968 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226529920 -> 1485226529968 [fontsize=10] - 1485226530016 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529968 -> 1485226530016 [fontsize=10] - 1485226530064 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529968 -> 1485226530064 [fontsize=10] - 1485226530112 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529968 -> 1485226530112 [fontsize=10] - 1485226529200 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226528624 -> 1485226529200 [fontsize=10] - 1485226528000 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226529200 -> 1485226528000 [fontsize=10] - 1485226529392 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226528000 -> 1485226529392 [fontsize=10] - 1485226529776 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226529392 -> 1485226529776 [fontsize=10] - 1485226529680 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226529200 -> 1485226529680 [fontsize=10] - 1485226530160 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226529680 -> 1485226530160 [fontsize=10] - 1485226529056 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226529200 -> 1485226529056 [fontsize=10] - 1485226530592 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226529056 -> 1485226530592 [fontsize=10] - 1485226530448 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530592 -> 1485226530448 [fontsize=10] - 1485226530688 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530448 -> 1485226530688 [fontsize=10] - 1485226530832 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530688 -> 1485226530832 [fontsize=10] - 1485226530976 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530832 -> 1485226530976 [fontsize=10] - 1485226531120 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530976 -> 1485226531120 [fontsize=10] - 1485226531264 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226531120 -> 1485226531264 [fontsize=10] - 1485226529344 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226528720 -> 1485226529344 [fontsize=10] - 1485226530496 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529344 -> 1485226530496 [fontsize=10] - 1485226530736 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226530496 -> 1485226530736 [fontsize=10] - 1485226531456 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226530736 -> 1485226531456 [fontsize=10] - 1485226531408 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531456 -> 1485226531408 [fontsize=10] - 1485226531216 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531408 -> 1485226531216 [fontsize=10] - 1485226531792 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531216 -> 1485226531792 [fontsize=10] - 1485226531936 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226531792 -> 1485226531936 [fontsize=10] - 1485226532032 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531936 -> 1485226532032 [fontsize=10] - 1485226532176 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531936 -> 1485226532176 [fontsize=10] - 1485226532224 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226531936 -> 1485226532224 [fontsize=10] - 1485226531072 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226529344 -> 1485226531072 [fontsize=10] - 1485226530640 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226531072 -> 1485226530640 [fontsize=10] - 1485226531648 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226530640 -> 1485226531648 [fontsize=10] - 1485226531984 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226531648 -> 1485226531984 [fontsize=10] - 1485226531744 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226531072 -> 1485226531744 [fontsize=10] - 1485226532560 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226531744 -> 1485226532560 [fontsize=10] - 1485226532272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226531072 -> 1485226532272 [fontsize=10] - 1485226532416 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532272 -> 1485226532416 [fontsize=10] - 1485226532944 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532416 -> 1485226532944 [fontsize=10] - 1485226532800 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532944 -> 1485226532800 [fontsize=10] - 1485226533040 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532800 -> 1485226533040 [fontsize=10] - 1485226533184 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226533040 -> 1485226533184 [fontsize=10] - 1485226533328 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226533184 -> 1485226533328 [fontsize=10] - 1485226533472 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226533328 -> 1485226533472 [fontsize=10] - 1485226529536 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226528720 -> 1485226529536 [fontsize=10] - 1485226530928 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226529536 -> 1485226530928 [fontsize=10] - 1485226533280 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226530928 -> 1485226533280 [fontsize=10] - 1485226532896 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533280 -> 1485226532896 [fontsize=10] - 1485226533424 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226532896 -> 1485226533424 [fontsize=10] - 1485226533904 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533424 -> 1485226533904 [fontsize=10] - 1485226533760 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533904 -> 1485226533760 [fontsize=10] - 1485226533952 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226533760 -> 1485226533952 [fontsize=10] - 1485226534192 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533952 -> 1485226534192 [fontsize=10] - 1485226534240 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533952 -> 1485226534240 [fontsize=10] - 1485226534384 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226533952 -> 1485226534384 [fontsize=10] - 1485226532608 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226529536 -> 1485226532608 [fontsize=10] - 1485226531552 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532608 -> 1485226531552 [fontsize=10] - 1485226533808 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226531552 -> 1485226533808 [fontsize=10] - 1485226534048 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226533808 -> 1485226534048 [fontsize=10] - 1485226533856 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532608 -> 1485226533856 [fontsize=10] - 1485226534672 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226533856 -> 1485226534672 [fontsize=10] - 1485226534432 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226532608 -> 1485226534432 [fontsize=10] - 1485226534768 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534432 -> 1485226534768 [fontsize=10] - 1485226534864 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534768 -> 1485226534864 [fontsize=10] - 1485226534720 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534864 -> 1485226534720 [fontsize=10] - 1485226535104 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534720 -> 1485226535104 [fontsize=10] - 1485226535248 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226535104 -> 1485226535248 [fontsize=10] - 1485226535392 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226535248 -> 1485226535392 [fontsize=10] - 1485226535536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226535392 -> 1485226535536 [fontsize=10] - 1485226528912 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528720 -> 1485226528912 [fontsize=10] - 1485226533664 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528912 -> 1485226533664 [fontsize=10] - 1485226530544 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226528720 -> 1485226530544 [fontsize=10] - 1485226534528 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226530544 -> 1485226534528 [fontsize=10] - 1485226535872 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226534528 -> 1485226535872 [fontsize=10] - 1485226536064 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226535872 -> 1485226536064 [fontsize=10] - 1485226536016 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536064 -> 1485226536016 [fontsize=10] - 1485226536208 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536016 -> 1485226536208 [fontsize=10] - 1485226535824 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536208 -> 1485226535824 [fontsize=10] - 1485226536304 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226535824 -> 1485226536304 [fontsize=10] - 1485226536496 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536304 -> 1485226536496 [fontsize=10] - 1485226536544 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536304 -> 1485226536544 [fontsize=10] - 1485226536640 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536304 -> 1485226536640 [fontsize=10] - 1485226534960 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226530544 -> 1485226534960 [fontsize=10] - 1485226535056 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534960 -> 1485226535056 [fontsize=10] - 1485226536112 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226535056 -> 1485226536112 [fontsize=10] - 1485226536352 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226536112 -> 1485226536352 [fontsize=10] - 1485226535920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534960 -> 1485226535920 [fontsize=10] - 1485226536928 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226535920 -> 1485226536928 [fontsize=10] - 1485226536688 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226534960 -> 1485226536688 [fontsize=10] - 1485226536784 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226536688 -> 1485226536784 [fontsize=10] - 1485226537312 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226536784 -> 1485226537312 [fontsize=10] - 1485226537168 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226537312 -> 1485226537168 [fontsize=10] - 1485226537408 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226537168 -> 1485226537408 [fontsize=10] - 1485226537552 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226537408 -> 1485226537552 [fontsize=10] - 1485226537696 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226537552 -> 1485226537696 [fontsize=10] - 1485226537840 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226537696 -> 1485226537840 [fontsize=10] - 1485226528864 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226527616 -> 1485226528864 [fontsize=10] - 1485226178160 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226178160 [fontsize=10] - 1485226527328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226178160 -> 1485226527328 [fontsize=10] - 1485226535680 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226527328 -> 1485226535680 [fontsize=10] - 1485226536976 [label=section color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226535680 -> 1485226536976 [fontsize=10] - 1485226538080 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226536976 -> 1485226538080 [fontsize=10] - 1485226538992 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538080 -> 1485226538992 [fontsize=10] - 1485226538560 [label=h2 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538992 -> 1485226538560 [fontsize=10] - 1485226538272 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226538560 -> 1485226538272 [fontsize=10] - 1485226538608 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226536976 -> 1485226538608 [fontsize=10] - 1485226538944 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538608 -> 1485226538944 [fontsize=10] - 1485226538656 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538944 -> 1485226538656 [fontsize=10] - 1485226538224 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538656 -> 1485226538224 [fontsize=10] - 1485226538800 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538224 -> 1485226538800 [fontsize=10] - 1485226538320 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538800 -> 1485226538320 [fontsize=10] - 1485226538752 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538320 -> 1485226538752 [fontsize=10] - 1485226538848 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538752 -> 1485226538848 [fontsize=10] - 1485226539664 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538848 -> 1485226539664 [fontsize=10] - 1485226539616 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539664 -> 1485226539616 [fontsize=10] - 1485226539520 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539616 -> 1485226539520 [fontsize=10] - 1485226539808 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226539520 -> 1485226539808 [fontsize=10] - 1485226539904 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539808 -> 1485226539904 [fontsize=10] - 1485226540000 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539808 -> 1485226540000 [fontsize=10] - 1485226540096 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539808 -> 1485226540096 [fontsize=10] - 1485226538032 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538800 -> 1485226538032 [fontsize=10] - 1485226538128 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538032 -> 1485226538128 [fontsize=10] - 1485226539184 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538128 -> 1485226539184 [fontsize=10] - 1485226539856 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226539184 -> 1485226539856 [fontsize=10] - 1485226540384 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226539856 -> 1485226540384 [fontsize=10] - 1485226539472 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538032 -> 1485226539472 [fontsize=10] - 1485226540528 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226539472 -> 1485226540528 [fontsize=10] - 1485226540336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226540528 -> 1485226540336 [fontsize=10] - 1485226540144 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226538032 -> 1485226540144 [fontsize=10] - 1485226540624 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540144 -> 1485226540624 [fontsize=10] - 1485226540720 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540624 -> 1485226540720 [fontsize=10] - 1485226540816 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540720 -> 1485226540816 [fontsize=10] - 1485226655808 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540816 -> 1485226655808 [fontsize=10] - 1485226655952 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226655808 -> 1485226655952 [fontsize=10] - 1485226656096 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226655952 -> 1485226656096 [fontsize=10] - 1485226656240 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226656096 -> 1485226656240 [fontsize=10] - 1485226538512 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538224 -> 1485226538512 [fontsize=10] - 1485226540912 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538512 -> 1485226540912 [fontsize=10] - 1485226540960 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226540912 -> 1485226540960 [fontsize=10] - 1485226656432 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226540960 -> 1485226656432 [fontsize=10] - 1485226656384 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656432 -> 1485226656384 [fontsize=10] - 1485226656192 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656384 -> 1485226656192 [fontsize=10] - 1485226656624 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656192 -> 1485226656624 [fontsize=10] - 1485226656912 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226656624 -> 1485226656912 [fontsize=10] - 1485226657008 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656912 -> 1485226657008 [fontsize=10] - 1485226657152 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656912 -> 1485226657152 [fontsize=10] - 1485226657200 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656912 -> 1485226657200 [fontsize=10] - 1485226540864 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538512 -> 1485226540864 [fontsize=10] - 1485226655904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540864 -> 1485226655904 [fontsize=10] - 1485226656768 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226655904 -> 1485226656768 [fontsize=10] - 1485226656960 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226656768 -> 1485226656960 [fontsize=10] - 1485226657488 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226656960 -> 1485226657488 [fontsize=10] - 1485226656720 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540864 -> 1485226656720 [fontsize=10] - 1485226657632 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226656720 -> 1485226657632 [fontsize=10] - 1485226657440 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226657632 -> 1485226657440 [fontsize=10] - 1485226657248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226540864 -> 1485226657248 [fontsize=10] - 1485226657728 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226657248 -> 1485226657728 [fontsize=10] - 1485226657824 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226657728 -> 1485226657824 [fontsize=10] - 1485226657920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226657824 -> 1485226657920 [fontsize=10] - 1485226658160 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226657920 -> 1485226658160 [fontsize=10] - 1485226658304 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226658160 -> 1485226658304 [fontsize=10] - 1485226658448 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226658304 -> 1485226658448 [fontsize=10] - 1485226658592 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226658448 -> 1485226658592 [fontsize=10] - 1485226538368 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538224 -> 1485226538368 [fontsize=10] - 1485226656048 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538368 -> 1485226656048 [fontsize=10] - 1485226657968 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656048 -> 1485226657968 [fontsize=10] - 1485226658256 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226657968 -> 1485226658256 [fontsize=10] - 1485226658544 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658256 -> 1485226658544 [fontsize=10] - 1485226658928 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658544 -> 1485226658928 [fontsize=10] - 1485226659168 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658928 -> 1485226659168 [fontsize=10] - 1485226658976 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226659168 -> 1485226658976 [fontsize=10] - 1485226659312 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658976 -> 1485226659312 [fontsize=10] - 1485226659408 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658976 -> 1485226659408 [fontsize=10] - 1485226659504 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658976 -> 1485226659504 [fontsize=10] - 1485226658064 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538368 -> 1485226658064 [fontsize=10] - 1485226658400 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226658064 -> 1485226658400 [fontsize=10] - 1485226659120 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226658400 -> 1485226659120 [fontsize=10] - 1485226659264 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226659120 -> 1485226659264 [fontsize=10] - 1485226659792 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226659264 -> 1485226659792 [fontsize=10] - 1485226659072 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226658064 -> 1485226659072 [fontsize=10] - 1485226659936 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226659072 -> 1485226659936 [fontsize=10] - 1485226659744 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226659936 -> 1485226659744 [fontsize=10] - 1485226538464 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538224 -> 1485226538464 [fontsize=10] - 1485226658016 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538464 -> 1485226658016 [fontsize=10] - 1485226660128 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226658016 -> 1485226660128 [fontsize=10] - 1485226539280 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226538224 -> 1485226539280 [fontsize=10] - 1485226660416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539280 -> 1485226660416 [fontsize=10] - 1485226660320 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660416 -> 1485226660320 [fontsize=10] - 1485226660464 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660320 -> 1485226660464 [fontsize=10] - 1485226660224 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660464 -> 1485226660224 [fontsize=10] - 1485226660656 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660224 -> 1485226660656 [fontsize=10] - 1485226660752 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660656 -> 1485226660752 [fontsize=10] - 1485226660992 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226660752 -> 1485226660992 [fontsize=10] - 1485226660944 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660992 -> 1485226660944 [fontsize=10] - 1485226661184 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660992 -> 1485226661184 [fontsize=10] - 1485226661280 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660992 -> 1485226661280 [fontsize=10] - 1485226660272 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226539280 -> 1485226660272 [fontsize=10] - 1485226660560 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660272 -> 1485226660560 [fontsize=10] - 1485226660896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660560 -> 1485226660896 [fontsize=10] - 1485226661088 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660896 -> 1485226661088 [fontsize=10] - 1485226661568 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226661088 -> 1485226661568 [fontsize=10] - 1485226660512 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660272 -> 1485226660512 [fontsize=10] - 1485226661712 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660512 -> 1485226661712 [fontsize=10] - 1485226661520 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226661712 -> 1485226661520 [fontsize=10] - 1485226661328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226660272 -> 1485226661328 [fontsize=10] - 1485226661904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226661328 -> 1485226661904 [fontsize=10] - 1485226661952 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226661904 -> 1485226661952 [fontsize=10] - 1485226661808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226661952 -> 1485226661808 [fontsize=10] - 1485226662192 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226661808 -> 1485226662192 [fontsize=10] - 1485226662336 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226662192 -> 1485226662336 [fontsize=10] - 1485226662480 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226662336 -> 1485226662480 [fontsize=10] - 1485226662624 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226662480 -> 1485226662624 [fontsize=10] - 1485226539424 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226538608 -> 1485226539424 [fontsize=10] - 1485226539040 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226539424 -> 1485226539040 [fontsize=10] - 1485226660032 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226539040 -> 1485226660032 [fontsize=10] - 1485226656480 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226660032 -> 1485226656480 [fontsize=10] - 1485226662576 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656480 -> 1485226662576 [fontsize=10] - 1485226663056 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226662576 -> 1485226663056 [fontsize=10] - 1485226662288 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226656480 -> 1485226662288 [fontsize=10] - 1485226662096 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226660032 -> 1485226662096 [fontsize=10] - 1485226528336 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226536976 -> 1485226528336 [fontsize=10] - 1485226538416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528336 -> 1485226538416 [fontsize=10] - 1485226537360 [label=section color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226535680 -> 1485226537360 [fontsize=10] - 1485226528576 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226537360 -> 1485226528576 [fontsize=10] - 1485226662960 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226528576 -> 1485226662960 [fontsize=10] - 1485226663248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226662960 -> 1485226663248 [fontsize=10] - 1485226663008 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663248 -> 1485226663008 [fontsize=10] - 1485226663488 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663008 -> 1485226663488 [fontsize=10] - 1485226663392 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663488 -> 1485226663392 [fontsize=10] - 1485226663632 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663392 -> 1485226663632 [fontsize=10] - 1485226663728 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663632 -> 1485226663728 [fontsize=10] - 1485226663536 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663728 -> 1485226663536 [fontsize=10] - 1485226663584 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663536 -> 1485226663584 [fontsize=10] - 1485226664256 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663584 -> 1485226664256 [fontsize=10] - 1485226664304 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226664256 -> 1485226664304 [fontsize=10] - 1485226664448 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226664304 -> 1485226664448 [fontsize=10] - 1485226664496 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226664304 -> 1485226664496 [fontsize=10] - 1485226664640 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226664304 -> 1485226664640 [fontsize=10] - 1485226663440 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663488 -> 1485226663440 [fontsize=10] - 1485226663920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226663440 -> 1485226663920 [fontsize=10] - 1485226664016 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226663920 -> 1485226664016 [fontsize=10] - 1485226664352 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226664016 -> 1485226664352 [fontsize=10] - 1485226664928 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226664352 -> 1485226664928 [fontsize=10] - 1485226664160 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226663440 -> 1485226664160 [fontsize=10] - 1485226665072 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226664160 -> 1485226665072 [fontsize=10] - 1485226664880 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226665072 -> 1485226664880 [fontsize=10] - 1485226664688 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226663440 -> 1485226664688 [fontsize=10] - 1485226665168 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226664688 -> 1485226665168 [fontsize=10] - 1485226665264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665168 -> 1485226665264 [fontsize=10] - 1485226665360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665264 -> 1485226665360 [fontsize=10] - 1485226665600 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665360 -> 1485226665600 [fontsize=10] - 1485226665744 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665600 -> 1485226665744 [fontsize=10] - 1485226665888 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665744 -> 1485226665888 [fontsize=10] - 1485226666032 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226665888 -> 1485226666032 [fontsize=10] - 1485226663776 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663008 -> 1485226663776 [fontsize=10] - 1485226663824 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663776 -> 1485226663824 [fontsize=10] - 1485226665408 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663824 -> 1485226665408 [fontsize=10] - 1485226665504 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226665408 -> 1485226665504 [fontsize=10] - 1485226666320 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226665504 -> 1485226666320 [fontsize=10] - 1485226666176 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226666320 -> 1485226666176 [fontsize=10] - 1485226666560 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226666176 -> 1485226666560 [fontsize=10] - 1485226666512 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226666560 -> 1485226666512 [fontsize=10] - 1485226666752 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226666512 -> 1485226666752 [fontsize=10] - 1485226666848 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226666512 -> 1485226666848 [fontsize=10] - 1485226666896 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226666512 -> 1485226666896 [fontsize=10] - 1485226665840 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663776 -> 1485226665840 [fontsize=10] - 1485226665456 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665840 -> 1485226665456 [fontsize=10] - 1485226666464 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665456 -> 1485226666464 [fontsize=10] - 1485226666656 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226666464 -> 1485226666656 [fontsize=10] - 1485226667232 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226666656 -> 1485226667232 [fontsize=10] - 1485226666608 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665840 -> 1485226666608 [fontsize=10] - 1485226667376 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226666608 -> 1485226667376 [fontsize=10] - 1485226667184 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226667376 -> 1485226667184 [fontsize=10] - 1485226666992 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226665840 -> 1485226666992 [fontsize=10] - 1485226667472 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226666992 -> 1485226667472 [fontsize=10] - 1485226667568 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667472 -> 1485226667568 [fontsize=10] - 1485226667664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667568 -> 1485226667664 [fontsize=10] - 1485226667904 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667664 -> 1485226667904 [fontsize=10] - 1485226668048 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667904 -> 1485226668048 [fontsize=10] - 1485226668192 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226668048 -> 1485226668192 [fontsize=10] - 1485226668336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226668192 -> 1485226668336 [fontsize=10] - 1485226663200 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663008 -> 1485226663200 [fontsize=10] - 1485226667808 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663200 -> 1485226667808 [fontsize=10] - 1485226667760 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226667808 -> 1485226667760 [fontsize=10] - 1485226668432 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226667760 -> 1485226668432 [fontsize=10] - 1485226668624 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668432 -> 1485226668624 [fontsize=10] - 1485226668576 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668624 -> 1485226668576 [fontsize=10] - 1485226668720 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668576 -> 1485226668720 [fontsize=10] - 1485226668912 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226668720 -> 1485226668912 [fontsize=10] - 1485226669056 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668912 -> 1485226669056 [fontsize=10] - 1485226669152 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668912 -> 1485226669152 [fontsize=10] - 1485226669248 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668912 -> 1485226669248 [fontsize=10] - 1485226667712 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663200 -> 1485226667712 [fontsize=10] - 1485226668000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667712 -> 1485226668000 [fontsize=10] - 1485226668864 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226668000 -> 1485226668864 [fontsize=10] - 1485226669008 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226668864 -> 1485226669008 [fontsize=10] - 1485226669536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226669008 -> 1485226669536 [fontsize=10] - 1485226668672 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667712 -> 1485226668672 [fontsize=10] - 1485226669680 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226668672 -> 1485226669680 [fontsize=10] - 1485226669488 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226669680 -> 1485226669488 [fontsize=10] - 1485226669296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226667712 -> 1485226669296 [fontsize=10] - 1485226669776 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226669296 -> 1485226669776 [fontsize=10] - 1485226669872 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226669776 -> 1485226669872 [fontsize=10] - 1485226669968 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226669872 -> 1485226669968 [fontsize=10] - 1485226670208 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226669968 -> 1485226670208 [fontsize=10] - 1485226670352 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670208 -> 1485226670352 [fontsize=10] - 1485226670496 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670352 -> 1485226670496 [fontsize=10] - 1485226670640 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226670496 -> 1485226670640 [fontsize=10] - 1485226665696 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663008 -> 1485226665696 [fontsize=10] - 1485226668144 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226665696 -> 1485226668144 [fontsize=10] - 1485226670016 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226668144 -> 1485226670016 [fontsize=10] - 1485226663968 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663008 -> 1485226663968 [fontsize=10] - 1485226670304 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663968 -> 1485226670304 [fontsize=10] - 1485226670880 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226670304 -> 1485226670880 [fontsize=10] - 1485226670832 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226670880 -> 1485226670832 [fontsize=10] - 1485226671168 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226670832 -> 1485226671168 [fontsize=10] - 1485226671120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226671168 -> 1485226671120 [fontsize=10] - 1485226671360 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226671120 -> 1485226671360 [fontsize=10] - 1485226671264 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226671360 -> 1485226671264 [fontsize=10] - 1485226671600 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226671264 -> 1485226671600 [fontsize=10] - 1485226671696 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226671264 -> 1485226671696 [fontsize=10] - 1485226671744 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226671264 -> 1485226671744 [fontsize=10] - 1485226670784 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663968 -> 1485226670784 [fontsize=10] - 1485226670928 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670784 -> 1485226670928 [fontsize=10] - 1485226671456 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670928 -> 1485226671456 [fontsize=10] - 1485226671552 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226671456 -> 1485226671552 [fontsize=10] - 1485226672080 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226671552 -> 1485226672080 [fontsize=10] - 1485226671312 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670784 -> 1485226671312 [fontsize=10] - 1485226671792 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226671312 -> 1485226671792 [fontsize=10] - 1485226754208 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226671792 -> 1485226754208 [fontsize=10] - 1485226671840 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226670784 -> 1485226671840 [fontsize=10] - 1485226754304 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226671840 -> 1485226754304 [fontsize=10] - 1485226754400 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754304 -> 1485226754400 [fontsize=10] - 1485226754496 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754400 -> 1485226754496 [fontsize=10] - 1485226754736 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754496 -> 1485226754736 [fontsize=10] - 1485226754880 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754736 -> 1485226754880 [fontsize=10] - 1485226755024 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754880 -> 1485226755024 [fontsize=10] - 1485226755168 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226755024 -> 1485226755168 [fontsize=10] - 1485226662912 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226528576 -> 1485226662912 [fontsize=10] - 1485226671216 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226662912 -> 1485226671216 [fontsize=10] - 1485226665984 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226671216 -> 1485226665984 [fontsize=10] - 1485226754592 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226665984 -> 1485226754592 [fontsize=10] - 1485226754832 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226754592 -> 1485226754832 [fontsize=10] - 1485226755264 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226754832 -> 1485226755264 [fontsize=10] - 1485226755120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226754592 -> 1485226755120 [fontsize=10] - 1485226755312 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226665984 -> 1485226755312 [fontsize=10] - 1485226663296 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226537360 -> 1485226663296 [fontsize=10] - 1485226755600 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663296 -> 1485226755600 [fontsize=10] - 1485226537792 [label=section color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226535680 -> 1485226537792 [fontsize=10] - 1485226755792 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226537792 -> 1485226755792 [fontsize=10] - 1485226755744 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226755792 -> 1485226755744 [fontsize=10] - 1485226755552 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226755744 -> 1485226755552 [fontsize=10] - 1485226756128 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226755552 -> 1485226756128 [fontsize=10] - 1485226756032 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756128 -> 1485226756032 [fontsize=10] - 1485226756464 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756032 -> 1485226756464 [fontsize=10] - 1485226756272 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756464 -> 1485226756272 [fontsize=10] - 1485226756704 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756272 -> 1485226756704 [fontsize=10] - 1485226756752 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756704 -> 1485226756752 [fontsize=10] - 1485226756368 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756752 -> 1485226756368 [fontsize=10] - 1485226756848 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756368 -> 1485226756848 [fontsize=10] - 1485226756992 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756848 -> 1485226756992 [fontsize=10] - 1485226757040 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756992 -> 1485226757040 [fontsize=10] - 1485226757232 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756992 -> 1485226757232 [fontsize=10] - 1485226757328 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756992 -> 1485226757328 [fontsize=10] - 1485226756224 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756032 -> 1485226756224 [fontsize=10] - 1485226756560 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756224 -> 1485226756560 [fontsize=10] - 1485226756320 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756560 -> 1485226756320 [fontsize=10] - 1485226757184 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756320 -> 1485226757184 [fontsize=10] - 1485226757616 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226757184 -> 1485226757616 [fontsize=10] - 1485226756944 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756224 -> 1485226756944 [fontsize=10] - 1485226757760 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756944 -> 1485226757760 [fontsize=10] - 1485226757568 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226757760 -> 1485226757568 [fontsize=10] - 1485226757376 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226756224 -> 1485226757376 [fontsize=10] - 1485226757856 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226757376 -> 1485226757856 [fontsize=10] - 1485226757952 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226757856 -> 1485226757952 [fontsize=10] - 1485226758048 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226757952 -> 1485226758048 [fontsize=10] - 1485226758288 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758048 -> 1485226758288 [fontsize=10] - 1485226758432 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758288 -> 1485226758432 [fontsize=10] - 1485226758576 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758432 -> 1485226758576 [fontsize=10] - 1485226758720 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226758576 -> 1485226758720 [fontsize=10] - 1485226755888 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756128 -> 1485226755888 [fontsize=10] - 1485226758528 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226755888 -> 1485226758528 [fontsize=10] - 1485226758384 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758528 -> 1485226758384 [fontsize=10] - 1485226758912 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758384 -> 1485226758912 [fontsize=10] - 1485226758864 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758912 -> 1485226758864 [fontsize=10] - 1485226758672 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758864 -> 1485226758672 [fontsize=10] - 1485226759104 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758672 -> 1485226759104 [fontsize=10] - 1485226759392 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226759104 -> 1485226759392 [fontsize=10] - 1485226759488 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226759392 -> 1485226759488 [fontsize=10] - 1485226759632 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226759392 -> 1485226759632 [fontsize=10] - 1485226759680 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226759392 -> 1485226759680 [fontsize=10] - 1485226758096 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226755888 -> 1485226758096 [fontsize=10] - 1485226758192 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758096 -> 1485226758192 [fontsize=10] - 1485226759248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758192 -> 1485226759248 [fontsize=10] - 1485226759440 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226759248 -> 1485226759440 [fontsize=10] - 1485226759968 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226759440 -> 1485226759968 [fontsize=10] - 1485226759200 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758096 -> 1485226759200 [fontsize=10] - 1485226760112 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226759200 -> 1485226760112 [fontsize=10] - 1485226759920 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226760112 -> 1485226759920 [fontsize=10] - 1485226759728 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226758096 -> 1485226759728 [fontsize=10] - 1485226760208 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226759728 -> 1485226760208 [fontsize=10] - 1485226760304 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760208 -> 1485226760304 [fontsize=10] - 1485226760400 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760304 -> 1485226760400 [fontsize=10] - 1485226760640 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760400 -> 1485226760640 [fontsize=10] - 1485226760784 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760640 -> 1485226760784 [fontsize=10] - 1485226760928 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760784 -> 1485226760928 [fontsize=10] - 1485226761072 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226760928 -> 1485226761072 [fontsize=10] - 1485226756800 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756128 -> 1485226756800 [fontsize=10] - 1485226758144 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756800 -> 1485226758144 [fontsize=10] - 1485226760448 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758144 -> 1485226760448 [fontsize=10] - 1485226760736 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226760448 -> 1485226760736 [fontsize=10] - 1485226761024 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226760736 -> 1485226761024 [fontsize=10] - 1485226761408 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226761024 -> 1485226761408 [fontsize=10] - 1485226761648 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226761408 -> 1485226761648 [fontsize=10] - 1485226761456 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226761648 -> 1485226761456 [fontsize=10] - 1485226761792 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226761456 -> 1485226761792 [fontsize=10] - 1485226761888 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226761456 -> 1485226761888 [fontsize=10] - 1485226761984 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226761456 -> 1485226761984 [fontsize=10] - 1485226760544 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756800 -> 1485226760544 [fontsize=10] - 1485226760880 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760544 -> 1485226760880 [fontsize=10] - 1485226761600 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760880 -> 1485226761600 [fontsize=10] - 1485226761744 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226761600 -> 1485226761744 [fontsize=10] - 1485226762272 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226761744 -> 1485226762272 [fontsize=10] - 1485226761552 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760544 -> 1485226761552 [fontsize=10] - 1485226762032 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226761552 -> 1485226762032 [fontsize=10] - 1485226761936 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226762032 -> 1485226761936 [fontsize=10] - 1485226761264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226760544 -> 1485226761264 [fontsize=10] - 1485226762512 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226761264 -> 1485226762512 [fontsize=10] - 1485226762464 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226762512 -> 1485226762464 [fontsize=10] - 1485226762800 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226762464 -> 1485226762800 [fontsize=10] - 1485226762896 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226762800 -> 1485226762896 [fontsize=10] - 1485226763040 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226762896 -> 1485226763040 [fontsize=10] - 1485226763184 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763040 -> 1485226763184 [fontsize=10] - 1485226763328 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226763184 -> 1485226763328 [fontsize=10] - 1485226756416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756128 -> 1485226756416 [fontsize=10] - 1485226758960 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756416 -> 1485226758960 [fontsize=10] - 1485226762992 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226758960 -> 1485226762992 [fontsize=10] - 1485226756512 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756128 -> 1485226756512 [fontsize=10] - 1485226760496 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226756512 -> 1485226760496 [fontsize=10] - 1485226763520 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226760496 -> 1485226763520 [fontsize=10] - 1485226763616 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226763520 -> 1485226763616 [fontsize=10] - 1485226763808 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226763616 -> 1485226763808 [fontsize=10] - 1485226763904 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226763808 -> 1485226763904 [fontsize=10] - 1485226763952 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226763904 -> 1485226763952 [fontsize=10] - 1485226764000 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226763952 -> 1485226764000 [fontsize=10] - 1485226764192 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226764000 -> 1485226764192 [fontsize=10] - 1485226764336 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226764000 -> 1485226764336 [fontsize=10] - 1485226764384 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226764000 -> 1485226764384 [fontsize=10] - 1485226763568 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226756512 -> 1485226763568 [fontsize=10] - 1485226763664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763568 -> 1485226763664 [fontsize=10] - 1485226764096 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763664 -> 1485226764096 [fontsize=10] - 1485226764144 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226764096 -> 1485226764144 [fontsize=10] - 1485226764720 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226764144 -> 1485226764720 [fontsize=10] - 1485226763760 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763568 -> 1485226763760 [fontsize=10] - 1485226764864 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763760 -> 1485226764864 [fontsize=10] - 1485226764672 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226764864 -> 1485226764672 [fontsize=10] - 1485226764480 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226763568 -> 1485226764480 [fontsize=10] - 1485226764960 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226764480 -> 1485226764960 [fontsize=10] - 1485226765056 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226764960 -> 1485226765056 [fontsize=10] - 1485226765152 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226765056 -> 1485226765152 [fontsize=10] - 1485226765392 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226765152 -> 1485226765392 [fontsize=10] - 1485226765536 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226765392 -> 1485226765536 [fontsize=10] - 1485226765680 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226765536 -> 1485226765680 [fontsize=10] - 1485226765824 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226765680 -> 1485226765824 [fontsize=10] - 1485226755840 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226755792 -> 1485226755840 [fontsize=10] - 1485226755696 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226755840 -> 1485226755696 [fontsize=10] - 1485226762848 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226755696 -> 1485226762848 [fontsize=10] - 1485226762560 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226762848 -> 1485226762560 [fontsize=10] - 1485226766064 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226762560 -> 1485226766064 [fontsize=10] - 1485226765776 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766064 -> 1485226765776 [fontsize=10] - 1485226766304 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226762560 -> 1485226766304 [fontsize=10] - 1485226765296 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226762848 -> 1485226765296 [fontsize=10] - 1485226755504 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226537792 -> 1485226755504 [fontsize=10] - 1485226755984 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226755504 -> 1485226755984 [fontsize=10] - 1485226663104 [label=section color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226535680 -> 1485226663104 [fontsize=10] - 1485226754544 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226663104 -> 1485226754544 [fontsize=10] - 1485226766208 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226754544 -> 1485226766208 [fontsize=10] - 1485226766256 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226766208 -> 1485226766256 [fontsize=10] - 1485226766640 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766256 -> 1485226766640 [fontsize=10] - 1485226766928 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766640 -> 1485226766928 [fontsize=10] - 1485226767120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766928 -> 1485226767120 [fontsize=10] - 1485226766880 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767120 -> 1485226766880 [fontsize=10] - 1485226767072 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766880 -> 1485226767072 [fontsize=10] - 1485226767168 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767072 -> 1485226767168 [fontsize=10] - 1485226767024 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767168 -> 1485226767024 [fontsize=10] - 1485226767408 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767024 -> 1485226767408 [fontsize=10] - 1485226767456 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226767408 -> 1485226767456 [fontsize=10] - 1485226767648 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767456 -> 1485226767648 [fontsize=10] - 1485226767792 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767456 -> 1485226767792 [fontsize=10] - 1485226767888 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226767456 -> 1485226767888 [fontsize=10] - 1485226766736 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766928 -> 1485226766736 [fontsize=10] - 1485226767360 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226766736 -> 1485226767360 [fontsize=10] - 1485226767264 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226767360 -> 1485226767264 [fontsize=10] - 1485226767696 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226767264 -> 1485226767696 [fontsize=10] - 1485226768176 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226767696 -> 1485226768176 [fontsize=10] - 1485226767552 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226766736 -> 1485226767552 [fontsize=10] - 1485226768320 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226767552 -> 1485226768320 [fontsize=10] - 1485226768128 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226768320 -> 1485226768128 [fontsize=10] - 1485226767936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226766736 -> 1485226767936 [fontsize=10] - 1485226768416 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226767936 -> 1485226768416 [fontsize=10] - 1485226768512 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768416 -> 1485226768512 [fontsize=10] - 1485226768608 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768512 -> 1485226768608 [fontsize=10] - 1485226768848 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768608 -> 1485226768848 [fontsize=10] - 1485226768992 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768848 -> 1485226768992 [fontsize=10] - 1485226769136 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768992 -> 1485226769136 [fontsize=10] - 1485226769280 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226769136 -> 1485226769280 [fontsize=10] - 1485226766784 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766640 -> 1485226766784 [fontsize=10] - 1485226769088 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766784 -> 1485226769088 [fontsize=10] - 1485226768944 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769088 -> 1485226768944 [fontsize=10] - 1485226769472 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226768944 -> 1485226769472 [fontsize=10] - 1485226769424 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769472 -> 1485226769424 [fontsize=10] - 1485226769232 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769424 -> 1485226769232 [fontsize=10] - 1485226769664 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769232 -> 1485226769664 [fontsize=10] - 1485226769952 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226769664 -> 1485226769952 [fontsize=10] - 1485226770048 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769952 -> 1485226770048 [fontsize=10] - 1485226770192 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769952 -> 1485226770192 [fontsize=10] - 1485226770240 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226769952 -> 1485226770240 [fontsize=10] - 1485226768656 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766784 -> 1485226768656 [fontsize=10] - 1485226768752 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768656 -> 1485226768752 [fontsize=10] - 1485226769808 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768752 -> 1485226769808 [fontsize=10] - 1485226770000 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226769808 -> 1485226770000 [fontsize=10] - 1485232259184 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226770000 -> 1485232259184 [fontsize=10] - 1485226769760 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768656 -> 1485226769760 [fontsize=10] - 1485226770144 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226769760 -> 1485226770144 [fontsize=10] - 1485232259136 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485226770144 -> 1485232259136 [fontsize=10] - 1485226770288 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226768656 -> 1485226770288 [fontsize=10] - 1485232259472 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226770288 -> 1485232259472 [fontsize=10] - 1485232259568 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259472 -> 1485232259568 [fontsize=10] - 1485232259664 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259568 -> 1485232259664 [fontsize=10] - 1485232259904 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259664 -> 1485232259904 [fontsize=10] - 1485232260048 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259904 -> 1485232260048 [fontsize=10] - 1485232260192 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232260048 -> 1485232260192 [fontsize=10] - 1485232260336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232260192 -> 1485232260336 [fontsize=10] - 1485226766592 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766640 -> 1485226766592 [fontsize=10] - 1485226768704 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766592 -> 1485226768704 [fontsize=10] - 1485232259712 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226768704 -> 1485232259712 [fontsize=10] - 1485232260000 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232259712 -> 1485232260000 [fontsize=10] - 1485232260288 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260000 -> 1485232260288 [fontsize=10] - 1485232260672 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260288 -> 1485232260672 [fontsize=10] - 1485232260912 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260672 -> 1485232260912 [fontsize=10] - 1485232260720 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232260912 -> 1485232260720 [fontsize=10] - 1485232261056 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260720 -> 1485232261056 [fontsize=10] - 1485232261152 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260720 -> 1485232261152 [fontsize=10] - 1485232261248 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232260720 -> 1485232261248 [fontsize=10] - 1485232259808 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766592 -> 1485232259808 [fontsize=10] - 1485232260144 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259808 -> 1485232260144 [fontsize=10] - 1485232260864 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232260144 -> 1485232260864 [fontsize=10] - 1485232261008 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232260864 -> 1485232261008 [fontsize=10] - 1485232261536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232261008 -> 1485232261536 [fontsize=10] - 1485232260816 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259808 -> 1485232260816 [fontsize=10] - 1485232261680 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232260816 -> 1485232261680 [fontsize=10] - 1485232261488 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232261680 -> 1485232261488 [fontsize=10] - 1485232261296 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232259808 -> 1485232261296 [fontsize=10] - 1485232261200 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232261296 -> 1485232261200 [fontsize=10] - 1485232262016 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232261200 -> 1485232262016 [fontsize=10] - 1485232262064 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262016 -> 1485232262064 [fontsize=10] - 1485232262112 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262064 -> 1485232262112 [fontsize=10] - 1485232262304 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262112 -> 1485232262304 [fontsize=10] - 1485232262448 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262304 -> 1485232262448 [fontsize=10] - 1485232262592 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232262448 -> 1485232262592 [fontsize=10] - 1485226766688 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766640 -> 1485226766688 [fontsize=10] - 1485232259760 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766688 -> 1485232259760 [fontsize=10] - 1485232261776 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232259760 -> 1485232261776 [fontsize=10] - 1485226766832 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766640 -> 1485226766832 [fontsize=10] - 1485232262256 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766832 -> 1485232262256 [fontsize=10] - 1485232262832 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232262256 -> 1485232262832 [fontsize=10] - 1485232262784 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232262832 -> 1485232262784 [fontsize=10] - 1485232263120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232262784 -> 1485232263120 [fontsize=10] - 1485232263072 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232263120 -> 1485232263072 [fontsize=10] - 1485232263312 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232263072 -> 1485232263312 [fontsize=10] - 1485232263216 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232263312 -> 1485232263216 [fontsize=10] - 1485232263552 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232263216 -> 1485232263552 [fontsize=10] - 1485232263648 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232263216 -> 1485232263648 [fontsize=10] - 1485232263696 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232263216 -> 1485232263696 [fontsize=10] - 1485232262736 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226766832 -> 1485232262736 [fontsize=10] - 1485232262880 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262736 -> 1485232262880 [fontsize=10] - 1485232263408 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262880 -> 1485232263408 [fontsize=10] - 1485232263504 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232263408 -> 1485232263504 [fontsize=10] - 1485232264032 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232263504 -> 1485232264032 [fontsize=10] - 1485232263264 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262736 -> 1485232263264 [fontsize=10] - 1485232264176 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232263264 -> 1485232264176 [fontsize=10] - 1485232263984 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232264176 -> 1485232263984 [fontsize=10] - 1485232263792 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232262736 -> 1485232263792 [fontsize=10] - 1485232264272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232263792 -> 1485232264272 [fontsize=10] - 1485232264368 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232264272 -> 1485232264368 [fontsize=10] - 1485232264464 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232264368 -> 1485232264464 [fontsize=10] - 1485232264704 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232264464 -> 1485232264704 [fontsize=10] - 1485232264848 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232264704 -> 1485232264848 [fontsize=10] - 1485232264992 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232264848 -> 1485232264992 [fontsize=10] - 1485232265136 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232264992 -> 1485232265136 [fontsize=10] - 1485226766112 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226754544 -> 1485226766112 [fontsize=10] - 1485226769520 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766112 -> 1485226769520 [fontsize=10] - 1485232261920 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226769520 -> 1485232261920 [fontsize=10] - 1485232264560 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232261920 -> 1485232264560 [fontsize=10] - 1485232264800 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232264560 -> 1485232264800 [fontsize=10] - 1485232265280 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232264800 -> 1485232265280 [fontsize=10] - 1485232265088 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232264560 -> 1485232265088 [fontsize=10] - 1485232265376 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232261920 -> 1485232265376 [fontsize=10] - 1485226765968 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226663104 -> 1485226765968 [fontsize=10] - 1485232265616 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226765968 -> 1485232265616 [fontsize=10] - 1485226539136 [label=section color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226535680 -> 1485226539136 [fontsize=10] - 1485226766160 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485226539136 -> 1485226766160 [fontsize=10] - 1485232265520 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226766160 -> 1485232265520 [fontsize=10] - 1485232265856 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232265520 -> 1485232265856 [fontsize=10] - 1485232266000 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232265856 -> 1485232266000 [fontsize=10] - 1485232266240 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266000 -> 1485232266240 [fontsize=10] - 1485232266480 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266240 -> 1485232266480 [fontsize=10] - 1485232266096 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266480 -> 1485232266096 [fontsize=10] - 1485232266336 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266096 -> 1485232266336 [fontsize=10] - 1485232266720 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266336 -> 1485232266720 [fontsize=10] - 1485232266672 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266720 -> 1485232266672 [fontsize=10] - 1485232266528 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266672 -> 1485232266528 [fontsize=10] - 1485232267008 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266528 -> 1485232267008 [fontsize=10] - 1485232267056 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232267008 -> 1485232267056 [fontsize=10] - 1485232267248 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232267008 -> 1485232267248 [fontsize=10] - 1485232267296 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232267008 -> 1485232267296 [fontsize=10] - 1485232265904 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266240 -> 1485232265904 [fontsize=10] - 1485232266432 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232265904 -> 1485232266432 [fontsize=10] - 1485232266384 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232266432 -> 1485232266384 [fontsize=10] - 1485232267104 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232266384 -> 1485232267104 [fontsize=10] - 1485232267584 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232267104 -> 1485232267584 [fontsize=10] - 1485232266624 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232265904 -> 1485232266624 [fontsize=10] - 1485232267728 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232266624 -> 1485232267728 [fontsize=10] - 1485232267536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232267728 -> 1485232267536 [fontsize=10] - 1485232267344 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232265904 -> 1485232267344 [fontsize=10] - 1485232267824 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232267344 -> 1485232267824 [fontsize=10] - 1485232267920 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232267824 -> 1485232267920 [fontsize=10] - 1485232268016 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232267920 -> 1485232268016 [fontsize=10] - 1485232268256 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268016 -> 1485232268256 [fontsize=10] - 1485232268400 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268256 -> 1485232268400 [fontsize=10] - 1485232268544 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268400 -> 1485232268544 [fontsize=10] - 1485232268688 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232268544 -> 1485232268688 [fontsize=10] - 1485232265952 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266000 -> 1485232265952 [fontsize=10] - 1485232268496 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232265952 -> 1485232268496 [fontsize=10] - 1485232268352 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268496 -> 1485232268352 [fontsize=10] - 1485232268880 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268352 -> 1485232268880 [fontsize=10] - 1485232268832 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268880 -> 1485232268832 [fontsize=10] - 1485232268640 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268832 -> 1485232268640 [fontsize=10] - 1485232269072 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268640 -> 1485232269072 [fontsize=10] - 1485232269360 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232269072 -> 1485232269360 [fontsize=10] - 1485232269456 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232269360 -> 1485232269456 [fontsize=10] - 1485232269600 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232269360 -> 1485232269600 [fontsize=10] - 1485232269648 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232269360 -> 1485232269648 [fontsize=10] - 1485232268064 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232265952 -> 1485232268064 [fontsize=10] - 1485232268160 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268064 -> 1485232268160 [fontsize=10] - 1485232269216 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268160 -> 1485232269216 [fontsize=10] - 1485232269408 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232269216 -> 1485232269408 [fontsize=10] - 1485232269936 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232269408 -> 1485232269936 [fontsize=10] - 1485232269168 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268064 -> 1485232269168 [fontsize=10] - 1485232270080 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232269168 -> 1485232270080 [fontsize=10] - 1485232269888 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232270080 -> 1485232269888 [fontsize=10] - 1485232269696 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268064 -> 1485232269696 [fontsize=10] - 1485232270176 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232269696 -> 1485232270176 [fontsize=10] - 1485232270272 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270176 -> 1485232270272 [fontsize=10] - 1485232270368 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270272 -> 1485232270368 [fontsize=10] - 1485232270608 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270368 -> 1485232270608 [fontsize=10] - 1485232270752 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270608 -> 1485232270752 [fontsize=10] - 1485232270896 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270752 -> 1485232270896 [fontsize=10] - 1485232271040 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232270896 -> 1485232271040 [fontsize=10] - 1485232266576 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266000 -> 1485232266576 [fontsize=10] - 1485232266288 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266576 -> 1485232266288 [fontsize=10] - 1485232270512 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266288 -> 1485232270512 [fontsize=10] - 1485232270848 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232270512 -> 1485232270848 [fontsize=10] - 1485232271280 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232270848 -> 1485232271280 [fontsize=10] - 1485232270992 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232271280 -> 1485232270992 [fontsize=10] - 1485232271568 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232270992 -> 1485232271568 [fontsize=10] - 1485232271520 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232271568 -> 1485232271520 [fontsize=10] - 1485232271712 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232271520 -> 1485232271712 [fontsize=10] - 1485232271808 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232271520 -> 1485232271808 [fontsize=10] - 1485232271904 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232271520 -> 1485232271904 [fontsize=10] - 1485232268112 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266576 -> 1485232268112 [fontsize=10] - 1485232270464 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268112 -> 1485232270464 [fontsize=10] - 1485232271328 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232270464 -> 1485232271328 [fontsize=10] - 1485232271664 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232271328 -> 1485232271664 [fontsize=10] - 1485232272192 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232271664 -> 1485232272192 [fontsize=10] - 1485232271472 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268112 -> 1485232271472 [fontsize=10] - 1485232272336 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232271472 -> 1485232272336 [fontsize=10] - 1485232272144 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232272336 -> 1485232272144 [fontsize=10] - 1485232271952 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232268112 -> 1485232271952 [fontsize=10] - 1485232272432 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232271952 -> 1485232272432 [fontsize=10] - 1485232272528 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232272432 -> 1485232272528 [fontsize=10] - 1485232272624 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232272528 -> 1485232272624 [fontsize=10] - 1485232272864 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232272624 -> 1485232272864 [fontsize=10] - 1485232273008 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232272864 -> 1485232273008 [fontsize=10] - 1485232273152 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273008 -> 1485232273152 [fontsize=10] - 1485232273296 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232273152 -> 1485232273296 [fontsize=10] - 1485232266192 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266000 -> 1485232266192 [fontsize=10] - 1485232272960 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232266192 -> 1485232272960 [fontsize=10] - 1485232273104 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232272960 -> 1485232273104 [fontsize=10] - 1485232270416 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232266000 -> 1485232270416 [fontsize=10] - 1485232272672 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232270416 -> 1485232272672 [fontsize=10] - 1485232273440 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232272672 -> 1485232273440 [fontsize=10] - 1485232273536 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232273440 -> 1485232273536 [fontsize=10] - 1485232273680 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232273536 -> 1485232273680 [fontsize=10] - 1485232273824 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232273680 -> 1485232273824 [fontsize=10] - 1485232274064 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232273824 -> 1485232274064 [fontsize=10] - 1485232274016 [label=noscript color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232274064 -> 1485232274016 [fontsize=10] - 1485232274304 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232274016 -> 1485232274304 [fontsize=10] - 1485232274400 [label=source color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232274016 -> 1485232274400 [fontsize=10] - 1485232274448 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232274016 -> 1485232274448 [fontsize=10] - 1485232273248 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232270416 -> 1485232273248 [fontsize=10] - 1485232273488 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273248 -> 1485232273488 [fontsize=10] - 1485232274208 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273488 -> 1485232274208 [fontsize=10] - 1485232274160 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232274208 -> 1485232274160 [fontsize=10] - 1485232274784 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232274160 -> 1485232274784 [fontsize=10] - 1485232273920 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273248 -> 1485232273920 [fontsize=10] - 1485232274544 [label=h3 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273920 -> 1485232274544 [fontsize=10] - 1485232274496 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232274544 -> 1485232274496 [fontsize=10] - 1485232273776 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273248 -> 1485232273776 [fontsize=10] - 1485232275024 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273776 -> 1485232275024 [fontsize=10] - 1485232274976 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232275024 -> 1485232274976 [fontsize=10] - 1485232275312 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232274976 -> 1485232275312 [fontsize=10] - 1485232275408 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232275312 -> 1485232275408 [fontsize=10] - 1485232373920 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232275408 -> 1485232373920 [fontsize=10] - 1485232374064 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232373920 -> 1485232374064 [fontsize=10] - 1485232374208 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232374064 -> 1485232374208 [fontsize=10] - 1485232265568 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485226766160 -> 1485232265568 [fontsize=10] - 1485232275072 [label=aside color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232265568 -> 1485232275072 [fontsize=10] - 1485232268928 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232275072 -> 1485232268928 [fontsize=10] - 1485232275168 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232268928 -> 1485232275168 [fontsize=10] - 1485232373872 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232275168 -> 1485232373872 [fontsize=10] - 1485232374352 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232373872 -> 1485232374352 [fontsize=10] - 1485232374160 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232275168 -> 1485232374160 [fontsize=10] - 1485232374448 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232268928 -> 1485232374448 [fontsize=10] - 1485226278816 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226278816 [fontsize=10] - 1485226376448 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226376448 [fontsize=10] - 1485226370352 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838624 -> 1485226370352 [fontsize=10] - 1485232266144 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485226370352 -> 1485232266144 [fontsize=10] - 1485232273632 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232266144 -> 1485232273632 [fontsize=10] - 1485232374928 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232273632 -> 1485232374928 [fontsize=10] - 1485232375312 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232374928 -> 1485232375312 [fontsize=10] - 1485225839392 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225825216 -> 1485225839392 [fontsize=10] - 1485232375120 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225839392 -> 1485232375120 [fontsize=10] - 1485232375792 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232375120 -> 1485232375792 [fontsize=10] - 1485225829056 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225829056 [fontsize=10] - 1485225835968 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225835968 [fontsize=10] - 1485232376032 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485225835968 -> 1485232376032 [fontsize=10] - 1485232375168 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376032 -> 1485232375168 [fontsize=10] - 1485232376368 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376032 -> 1485232376368 [fontsize=10] - 1485225838336 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225663152 -> 1485225838336 [fontsize=10] - 1485232376128 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485225838336 -> 1485232376128 [fontsize=10] - 1485232374976 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232376128 -> 1485232374976 [fontsize=10] - 1485232375552 [label=footer color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232374976 -> 1485232375552 [fontsize=10] - 1485232376608 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232375552 -> 1485232376608 [fontsize=10] - 1485232375696 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232375696 [fontsize=10] - 1485232376656 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232375696 -> 1485232376656 [fontsize=10] - 1485232377136 [label=a color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376656 -> 1485232377136 [fontsize=10] - 1485232377952 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232377136 -> 1485232377952 [fontsize=10] - 1485232375600 [label=picture color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232377952 -> 1485232375600 [fontsize=10] - 1485232376896 [label=img color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232375600 -> 1485232376896 [fontsize=10] - 1485232375456 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232375696 -> 1485232375456 [fontsize=10] - 1485232375936 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232375456 -> 1485232375936 [fontsize=10] - 1485232377568 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232375936 -> 1485232377568 [fontsize=10] - 1485232376416 [label=nav color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232376416 [fontsize=10] - 1485232376320 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232376416 -> 1485232376320 [fontsize=10] - 1485232377424 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376320 -> 1485232377424 [fontsize=10] - 1485232376752 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232377424 -> 1485232376752 [fontsize=10] - 1485232377856 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232377424 -> 1485232377856 [fontsize=10] - 1485232377808 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376416 -> 1485232377808 [fontsize=10] - 1485232377376 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232377376 [fontsize=10] - 1485232375840 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377376 -> 1485232375840 [fontsize=10] - 1485232377232 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232375840 -> 1485232377232 [fontsize=10] - 1485232375408 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232375408 [fontsize=10] - 1485232378144 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232375408 -> 1485232378144 [fontsize=10] - 1485232378000 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232378144 -> 1485232378000 [fontsize=10] - 1485232378096 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232378096 [fontsize=10] - 1485232377904 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378096 -> 1485232377904 [fontsize=10] - 1485232378336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232377904 -> 1485232378336 [fontsize=10] - 1485232377712 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232377712 [fontsize=10] - 1485232375888 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377712 -> 1485232375888 [fontsize=10] - 1485232378480 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232375888 -> 1485232378480 [fontsize=10] - 1485232375504 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232375504 [fontsize=10] - 1485232378192 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232375504 -> 1485232378192 [fontsize=10] - 1485232378672 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232378192 -> 1485232378672 [fontsize=10] - 1485232378288 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232378288 [fontsize=10] - 1485232378528 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378288 -> 1485232378528 [fontsize=10] - 1485232378960 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232378528 -> 1485232378960 [fontsize=10] - 1485232377664 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232377664 [fontsize=10] - 1485232379152 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377664 -> 1485232379152 [fontsize=10] - 1485232379248 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232379152 -> 1485232379248 [fontsize=10] - 1485232378384 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232377808 -> 1485232378384 [fontsize=10] - 1485232379200 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378384 -> 1485232379200 [fontsize=10] - 1485232379536 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232379200 -> 1485232379536 [fontsize=10] - 1485232376272 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232376272 [fontsize=10] - 1485232376224 [label=nav color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232376224 [fontsize=10] - 1485232377520 [label=p color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232376224 -> 1485232377520 [fontsize=10] - 1485232379776 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232377520 -> 1485232379776 [fontsize=10] - 1485232379680 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232379776 -> 1485232379680 [fontsize=10] - 1485232380208 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232379776 -> 1485232380208 [fontsize=10] - 1485232378240 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232376224 -> 1485232378240 [fontsize=10] - 1485232380352 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232380352 [fontsize=10] - 1485232380256 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232380352 -> 1485232380256 [fontsize=10] - 1485232379824 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232380256 -> 1485232379824 [fontsize=10] - 1485232379872 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232379872 [fontsize=10] - 1485232380592 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379872 -> 1485232380592 [fontsize=10] - 1485232380496 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232380592 -> 1485232380496 [fontsize=10] - 1485232380064 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232380064 [fontsize=10] - 1485232380400 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232380064 -> 1485232380400 [fontsize=10] - 1485232380928 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232380400 -> 1485232380928 [fontsize=10] - 1485232379920 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232379920 [fontsize=10] - 1485232381168 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379920 -> 1485232381168 [fontsize=10] - 1485232381312 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232381168 -> 1485232381312 [fontsize=10] - 1485232380544 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232380544 [fontsize=10] - 1485232381264 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232380544 -> 1485232381264 [fontsize=10] - 1485232381600 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232381264 -> 1485232381600 [fontsize=10] - 1485232380736 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232380736 [fontsize=10] - 1485232381504 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232380736 -> 1485232381504 [fontsize=10] - 1485232381888 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232381504 -> 1485232381888 [fontsize=10] - 1485232380832 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232378240 -> 1485232380832 [fontsize=10] - 1485232382080 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232380832 -> 1485232382080 [fontsize=10] - 1485232382176 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232382080 -> 1485232382176 [fontsize=10] - 1485232378864 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232378864 [fontsize=10] - 1485232374784 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232376608 -> 1485232374784 [fontsize=10] - 1485232379440 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232374784 -> 1485232379440 [fontsize=10] - 1485232382128 [label=nav color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379440 -> 1485232382128 [fontsize=10] - 1485232382464 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232382128 -> 1485232382464 [fontsize=10] - 1485232382416 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232382416 [fontsize=10] - 1485232382992 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382416 -> 1485232382992 [fontsize=10] - 1485232382704 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232382992 -> 1485232382704 [fontsize=10] - 1485232382752 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232382752 [fontsize=10] - 1485232383136 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382752 -> 1485232383136 [fontsize=10] - 1485232382944 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232383136 -> 1485232382944 [fontsize=10] - 1485232382800 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232382800 [fontsize=10] - 1485232383088 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382800 -> 1485232383088 [fontsize=10] - 1485232383568 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232383088 -> 1485232383568 [fontsize=10] - 1485232382848 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232382848 [fontsize=10] - 1485232383472 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382848 -> 1485232383472 [fontsize=10] - 1485232383856 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232383472 -> 1485232383856 [fontsize=10] - 1485232381840 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232381840 [fontsize=10] - 1485232383760 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232381840 -> 1485232383760 [fontsize=10] - 1485232384144 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232383760 -> 1485232384144 [fontsize=10] - 1485232383280 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232383280 [fontsize=10] - 1485232384048 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232383280 -> 1485232384048 [fontsize=10] - 1485232384432 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232384048 -> 1485232384432 [fontsize=10] - 1485232383616 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232383616 [fontsize=10] - 1485232384624 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232383616 -> 1485232384624 [fontsize=10] - 1485232384720 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232384624 -> 1485232384720 [fontsize=10] - 1485232383664 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232383664 [fontsize=10] - 1485232384672 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232383664 -> 1485232384672 [fontsize=10] - 1485232385008 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232384672 -> 1485232385008 [fontsize=10] - 1485232384336 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232382464 -> 1485232384336 [fontsize=10] - 1485232384384 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232384336 -> 1485232384384 [fontsize=10] - 1485232384960 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232384384 -> 1485232384960 [fontsize=10] - 1485232382320 [label=span color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232379440 -> 1485232382320 [fontsize=10] - 1485232382368 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379440 -> 1485232382368 [fontsize=10] - 1485232385536 [label=p color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232382368 -> 1485232385536 [fontsize=10] - 1485232385584 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232385584 [fontsize=10] - 1485232385824 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232385824 [fontsize=10] - 1485232384000 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232384000 [fontsize=10] - 1485232385920 [label=em color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232385920 [fontsize=10] - 1485232385968 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385920 -> 1485232385968 [fontsize=10] - 1485232386016 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232386016 [fontsize=10] - 1485232385248 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232385536 -> 1485232385248 [fontsize=10] - 1485232385296 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385248 -> 1485232385296 [fontsize=10] - 1485232382896 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379440 -> 1485232382896 [fontsize=10] - 1485232385632 [label=div color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232382896 -> 1485232385632 [fontsize=10] - 1485232385728 [label=h6 color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232385632 -> 1485232385728 [fontsize=10] - 1485232386064 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232385728 -> 1485232386064 [fontsize=10] - 1485232386160 [label=button color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232385632 -> 1485232386160 [fontsize=10] - 1485232386544 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386160 -> 1485232386544 [fontsize=10] - 1485232386736 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232386544 -> 1485232386736 [fontsize=10] - 1485232386784 [label=span color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386160 -> 1485232386784 [fontsize=10] - 1485232386928 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232386784 -> 1485232386928 [fontsize=10] - 1485232387024 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386928 -> 1485232387024 [fontsize=10] - 1485232386976 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232387024 -> 1485232386976 [fontsize=10] - 1485232387072 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232386928 -> 1485232387072 [fontsize=10] - 1485232387360 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232387072 -> 1485232387360 [fontsize=10] - 1485232387216 [label=defs color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232386928 -> 1485232387216 [fontsize=10] - 1485232387264 [label=clippath color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232387216 -> 1485232387264 [fontsize=10] - 1485232387552 [label=rect color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232387264 -> 1485232387552 [fontsize=10] - 1485232386592 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232385632 -> 1485232386592 [fontsize=10] - 1485232386304 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386592 -> 1485232386304 [fontsize=10] - 1485232387648 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386304 -> 1485232387648 [fontsize=10] - 1485232387120 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232387648 -> 1485232387120 [fontsize=10] - 1485232387600 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386592 -> 1485232387600 [fontsize=10] - 1485232388176 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232387600 -> 1485232388176 [fontsize=10] - 1485232387936 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232388176 -> 1485232387936 [fontsize=10] - 1485232386880 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386592 -> 1485232386880 [fontsize=10] - 1485232387984 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232386880 -> 1485232387984 [fontsize=10] - 1485232388512 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232387984 -> 1485232388512 [fontsize=10] - 1485232384576 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232379440 -> 1485232384576 [fontsize=10] - 1485232388560 [label=ul color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232384576 -> 1485232388560 [fontsize=10] - 1485232388752 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232388752 [fontsize=10] - 1485232387696 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388752 -> 1485232387696 [fontsize=10] - 1485232389040 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232387696 -> 1485232389040 [fontsize=10] - 1485232388656 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232389040 -> 1485232388656 [fontsize=10] - 1485232388896 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388656 -> 1485232388896 [fontsize=10] - 1485232389280 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232388896 -> 1485232389280 [fontsize=10] - 1485232389376 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232388656 -> 1485232389376 [fontsize=10] - 1485232388608 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232388608 [fontsize=10] - 1485232389568 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388608 -> 1485232389568 [fontsize=10] - 1485232388992 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232389568 -> 1485232388992 [fontsize=10] - 1485232389472 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232388992 -> 1485232389472 [fontsize=10] - 1485232389760 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232389472 -> 1485232389760 [fontsize=10] - 1485232389952 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232389760 -> 1485232389952 [fontsize=10] - 1485232389808 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232389472 -> 1485232389808 [fontsize=10] - 1485232389088 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232389088 [fontsize=10] - 1485232390000 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232389088 -> 1485232390000 [fontsize=10] - 1485232389904 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232390000 -> 1485232389904 [fontsize=10] - 1485232521280 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232389904 -> 1485232521280 [fontsize=10] - 1485232521520 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232521280 -> 1485232521520 [fontsize=10] - 1485232521664 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232521520 -> 1485232521664 [fontsize=10] - 1485232521472 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232521280 -> 1485232521472 [fontsize=10] - 1485232388944 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232388944 [fontsize=10] - 1485232390096 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388944 -> 1485232390096 [fontsize=10] - 1485232522000 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232390096 -> 1485232522000 [fontsize=10] - 1485232521376 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232522000 -> 1485232521376 [fontsize=10] - 1485232522192 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232521376 -> 1485232522192 [fontsize=10] - 1485232522336 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232522192 -> 1485232522336 [fontsize=10] - 1485232522288 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232521376 -> 1485232522288 [fontsize=10] - 1485232389424 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232389424 [fontsize=10] - 1485232521328 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232389424 -> 1485232521328 [fontsize=10] - 1485232522528 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232521328 -> 1485232522528 [fontsize=10] - 1485232522720 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232522528 -> 1485232522720 [fontsize=10] - 1485232522816 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232522720 -> 1485232522816 [fontsize=10] - 1485232522576 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232522816 -> 1485232522576 [fontsize=10] - 1485232522912 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232522720 -> 1485232522912 [fontsize=10] - 1485232389664 [label=li color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232388560 -> 1485232389664 [fontsize=10] - 1485232523104 [label=a color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232389664 -> 1485232523104 [fontsize=10] - 1485232523248 [label=div color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232523104 -> 1485232523248 [fontsize=10] - 1485232522768 [label=svg color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232523248 -> 1485232522768 [fontsize=10] - 1485232523056 [label=title color=lightblue2 fontcolor=black fontsize=12 shape=ellipse] - 1485232522768 -> 1485232523056 [fontsize=10] - 1485232523584 [label=text color=red fontcolor=black fontsize=12 shape=ellipse] - 1485232523056 -> 1485232523584 [fontsize=10] - 1485232523152 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232522768 -> 1485232523152 [fontsize=10] - 1485232376704 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232375552 -> 1485232376704 [fontsize=10] - 1485232388416 [label=div color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232376704 -> 1485232388416 [fontsize=10] - 1485232523200 [label=svg color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232388416 -> 1485232523200 [fontsize=10] - 1485232523392 [label=g color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232523200 -> 1485232523392 [fontsize=10] - 1485232521904 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232523392 -> 1485232521904 [fontsize=10] - 1485232523824 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232521904 -> 1485232523824 [fontsize=10] - 1485232524352 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232523824 -> 1485232524352 [fontsize=10] - 1485232523872 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232524352 -> 1485232523872 [fontsize=10] - 1485232524160 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232523392 -> 1485232524160 [fontsize=10] - 1485232523968 [label=g color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232524160 -> 1485232523968 [fontsize=10] - 1485232524448 [label=g color=green fontcolor=black fontsize=12 shape=ellipse] - 1485232523968 -> 1485232524448 [fontsize=10] - 1485232524736 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232524448 -> 1485232524736 [fontsize=10] - 1485232524496 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232524448 -> 1485232524496 [fontsize=10] - 1485232524304 [label=path color=white fontcolor=black fontsize=12 shape=ellipse] - 1485232524448 -> 1485232524304 [fontsize=10] -} diff --git a/tree_visualization.png b/tree_visualization.png deleted file mode 100644 index a72bd1e9e3bd6c7d5af7ca4f4684b21e5b8c6056..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 80605 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
Ku*!>sWh=qR;va949Ieg++9Xax$>!TZ`$Gcv& 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 HX8->IKE%06 diff --git a/tree_visualization.svg b/tree_visualization.svg deleted file mode 100644 index b75e2c77..00000000 --- a/tree_visualization.svg +++ /dev/null @@ -1,26070 +0,0 @@ - - - - - - - - - -1485214057040 - -document - - - -1485214072448 - -text - - - -1485214057040->1485214072448 - - - - - -1485225388704 - -html - - - -1485214057040->1485225388704 - - - - - -1485225388752 - -head - - - -1485225388704->1485225388752 - - - - - -1485225388896 - -body - - - -1485225388704->1485225388896 - - - - - -1485225388992 - -title - - - -1485225388752->1485225388992 - - - - - -1485225389184 - -text - - - -1485225388992->1485225389184 - - - - - -1485225661616 - -noscript - - - -1485225388896->1485225661616 - - - - - -1485225657872 - -div - - - -1485225388896->1485225657872 - - - - - -1485225662288 - -iframe - - - -1485225661616->1485225662288 - - - - - -1485225658448 - -div - - - -1485225657872->1485225658448 - - - - - -1485225663152 - -div - - - -1485225658448->1485225663152 - - - - - -1485225663680 - -div - - - -1485225663152->1485225663680 - - - - - -1485225663776 - -div - - - -1485225663152->1485225663776 - - - - - -1485225664112 - -div - - - -1485225663152->1485225664112 - - - - - -1485225664448 - -div - - - -1485225663152->1485225664448 - - - - - -1485225664400 - -a - - - -1485225663152->1485225664400 - - - - - -1485225665120 - -div - - - -1485225663152->1485225665120 - - - - - -1485225666416 - -div - - - -1485225663152->1485225666416 - - - - - -1485225665936 - -div - - - -1485225663152->1485225665936 - - - - - -1485225665216 - -div - - - -1485225663152->1485225665216 - - - - - -1485225667040 - -div - - - -1485225663152->1485225667040 - - - - - -1485225763712 - -div - - - -1485225663152->1485225763712 - - - - - -1485225825216 - -main - - - -1485225663152->1485225825216 - - - - - -1485225829056 - -div - - - -1485225663152->1485225829056 - - - - - -1485225835968 - -div - - - -1485225663152->1485225835968 - - - - - -1485225838336 - -div - - - -1485225663152->1485225838336 - - - - - -1485225659696 - -div - - - -1485225663776->1485225659696 - - - - - -1485225664784 - -div - - - -1485225664112->1485225664784 - - - - - -1485225664976 - -div - - - -1485225664448->1485225664976 - - - - - -1485225665264 - -text - - - -1485225664400->1485225665264 - - - - - -1485225666560 - -aside - - - -1485225665120->1485225666560 - - - - - -1485225667088 - -div - - - -1485225666560->1485225667088 - - - - - -1485225667184 - -div - - - -1485225667088->1485225667184 - - - - - -1485225667232 - -div - - - -1485225667088->1485225667232 - - - - - -1485225666704 - -header - - - -1485225666416->1485225666704 - - - - - -1485225667376 - -div - - - -1485225666416->1485225667376 - - - - - -1485225671936 - -div - - - -1485225666416->1485225671936 - - - - - -1485225667664 - -div - - - -1485225666704->1485225667664 - - - - - -1485225667760 - -div - - - -1485225666704->1485225667760 - - - - - -1485225667952 - -div - - - -1485225666704->1485225667952 - - - - - -1485225670352 - -div - - - -1485225666704->1485225670352 - - - - - -1485225673152 - -a - - - -1485225666704->1485225673152 - - - - - -1485225667328 - -button - - - -1485225667664->1485225667328 - - - - - -1485225668096 - -div - - - -1485225667664->1485225668096 - - - - - -1485225668048 - -span - - - -1485225667328->1485225668048 - - - - - -1485225668192 - -div - - - -1485225667328->1485225668192 - - - - - -1485225668336 - -text - - - -1485225668048->1485225668336 - - - - - -1485225668720 - -svg - - - -1485225668192->1485225668720 - - - - - -1485225668816 - -title - - - -1485225668720->1485225668816 - - - - - -1485225668864 - -path - - - -1485225668720->1485225668864 - - - - - -1485225669008 - -text - - - -1485225668816->1485225669008 - - - - - -1485225669056 - -div - - - -1485225668096->1485225669056 - - - - - -1485225669296 - -div - - - -1485225668096->1485225669296 - - - - - -1485225669344 - -div - - - -1485225668096->1485225669344 - - - - - -1485225669584 - -button - - - -1485225668096->1485225669584 - - - - - -1485225669440 - -svg - - - -1485225669296->1485225669440 - - - - - -1485225669488 - -title - - - -1485225669440->1485225669488 - - - - - -1485225669728 - -path - - - -1485225669440->1485225669728 - - - - - -1485225669824 - -path - - - -1485225669440->1485225669824 - - - - - -1485225669872 - -text - - - -1485225669488->1485225669872 - - - - - -1485225670304 - -p - - - -1485225669344->1485225670304 - - - - - -1485225670544 - -text - - - -1485225670304->1485225670544 - - - - - -1485225670640 - -a - - - -1485225670304->1485225670640 - - - - - -1485225670496 - -text - - - -1485225670304->1485225670496 - - - - - -1485225670688 - -text - - - -1485225670640->1485225670688 - - - - - -1485225671072 - -span - - - -1485225669584->1485225671072 - - - - - -1485225671216 - -div - - - -1485225669584->1485225671216 - - - - - -1485225671264 - -text - - - -1485225671072->1485225671264 - - - - - -1485225671792 - -svg - - - -1485225671216->1485225671792 - - - - - -1485225671888 - -path - - - -1485225671792->1485225671888 - - - - - -1485225668528 - -a - - - -1485225667760->1485225668528 - - - - - -1485225671648 - -span - - - -1485225668528->1485225671648 - - - - - -1485225672656 - -picture - - - -1485225671648->1485225672656 - - - - - -1485225672864 - -img - - - -1485225672656->1485225672864 - - - - - -1485225672080 - -div - - - -1485225667952->1485225672080 - - - - - -1485225672368 - -div - - - -1485225667952->1485225672368 - - - - - -1485225673440 - -text - - - -1485225672080->1485225673440 - - - - - -1485225673920 - -div - - - -1485225672368->1485225673920 - - - - - -1485225674256 - -nav - - - -1485225673920->1485225674256 - - - - - -1485225674304 - -span - - - -1485225673920->1485225674304 - - - - - -1485225674496 - -div - - - -1485225673920->1485225674496 - - - - - -1485225674448 - -ul - - - -1485225674256->1485225674448 - - - - - -1485225674640 - -li - - - -1485225674448->1485225674640 - - - - - -1485225674688 - -li - - - -1485225674448->1485225674688 - - - - - -1485225674880 - -li - - - -1485225674448->1485225674880 - - - - - -1485225674784 - -li - - - -1485225674448->1485225674784 - - - - - -1485225675216 - -li - - - -1485225674448->1485225675216 - - - - - -1485225675744 - -li - - - -1485225674448->1485225675744 - - - - - -1485225676464 - -li - - - -1485225674448->1485225676464 - - - - - -1485225676992 - -li - - - -1485225674448->1485225676992 - - - - - -1485225678000 - -li - - - -1485225674448->1485225678000 - - - - - -1485225674832 - -a - - - -1485225674640->1485225674832 - - - - - -1485225675024 - -text - - - -1485225674832->1485225675024 - - - - - -1485225675360 - -a - - - -1485225674688->1485225675360 - - - - - -1485225675552 - -text - - - -1485225675360->1485225675552 - - - - - -1485225675456 - -a - - - -1485225674880->1485225675456 - - - - - -1485225675792 - -text - - - -1485225675456->1485225675792 - - - - - -1485225675888 - -a - - - -1485225674784->1485225675888 - - - - - -1485225676848 - -text - - - -1485225675888->1485225676848 - - - - - -1485225676320 - -a - - - -1485225675216->1485225676320 - - - - - -1485225677424 - -text - - - -1485225676320->1485225677424 - - - - - -1485225677856 - -a - - - -1485225675744->1485225677856 - - - - - -1485225678432 - -text - - - -1485225677856->1485225678432 - - - - - -1485225678672 - -a - - - -1485225676464->1485225678672 - - - - - -1485225679248 - -text - - - -1485225678672->1485225679248 - - - - - -1485225678816 - -a - - - -1485225676992->1485225678816 - - - - - -1485225680112 - -text - - - -1485225678816->1485225680112 - - - - - -1485225679536 - -a - - - -1485225678000->1485225679536 - - - - - -1485225681024 - -text - - - -1485225679536->1485225681024 - - - - - -1485225681744 - -div - - - -1485225674496->1485225681744 - - - - - -1485225679680 - -button - - - -1485225681744->1485225679680 - - - - - -1485225683088 - -div - - - -1485225681744->1485225683088 - - - - - -1485225683520 - -text - - - -1485225679680->1485225683520 - - - - - -1485225684096 - -i - - - -1485225679680->1485225684096 - - - - - -1485225682368 - -svg - - - -1485225684096->1485225682368 - - - - - -1485225684384 - -title - - - -1485225682368->1485225684384 - - - - - -1485225684432 - -path - - - -1485225682368->1485225684432 - - - - - -1485225684576 - -text - - - -1485225684384->1485225684576 - - - - - -1485225685056 - -div - - - -1485225670352->1485225685056 - - - - - -1485225683376 - -nav - - - -1485225670352->1485225683376 - - - - - -1485225674400 - -span - - - -1485225670352->1485225674400 - - - - - -1485225685104 - -div - - - -1485225670352->1485225685104 - - - - - -1485225685920 - -div - - - -1485225670352->1485225685920 - - - - - -1485225685728 - -ul - - - -1485225683376->1485225685728 - - - - - -1485225687264 - -div - - - -1485225685104->1485225687264 - - - - - -1485225685824 - -div - - - -1485225685104->1485225685824 - - - - - -1485225686832 - -div - - - -1485225685104->1485225686832 - - - - - -1485225686544 - -div - - - -1485225687264->1485225686544 - - - - - -1485225686016 - -div - - - -1485225687264->1485225686016 - - - - - -1485225687360 - -div - - - -1485225685824->1485225687360 - - - - - -1485225687600 - -div - - - -1485225685824->1485225687600 - - - - - -1485225687744 - -div - - - -1485225686832->1485225687744 - - - - - -1485225687888 - -div - - - -1485225686832->1485225687888 - - - - - -1485225687456 - -div - - - -1485225685920->1485225687456 - - - - - -1485225688032 - -div - - - -1485225685920->1485225688032 - - - - - -1485225686400 - -span - - - -1485225673152->1485225686400 - - - - - -1485225688272 - -div - - - -1485225673152->1485225688272 - - - - - -1485225688128 - -text - - - -1485225686400->1485225688128 - - - - - -1485225754928 - -svg - - - -1485225688272->1485225754928 - - - - - -1485225755936 - -title - - - -1485225754928->1485225755936 - - - - - -1485225755648 - -path - - - -1485225754928->1485225755648 - - - - - -1485225756464 - -text - - - -1485225755936->1485225756464 - - - - - -1485225756944 - -ul - - - -1485225667376->1485225756944 - - - - - -1485225757088 - -li - - - -1485225756944->1485225757088 - - - - - -1485225756560 - -li - - - -1485225756944->1485225756560 - - - - - -1485225759200 - -li - - - -1485225756944->1485225759200 - - - - - -1485225758192 - -li - - - -1485225756944->1485225758192 - - - - - -1485225759440 - -li - - - -1485225756944->1485225759440 - - - - - -1485225759872 - -li - - - -1485225756944->1485225759872 - - - - - -1485225760592 - -li - - - -1485225756944->1485225760592 - - - - - -1485225761120 - -li - - - -1485225756944->1485225761120 - - - - - -1485225762128 - -li - - - -1485225756944->1485225762128 - - - - - -1485225757856 - -a - - - -1485225757088->1485225757856 - - - - - -1485225758480 - -text - - - -1485225757856->1485225758480 - - - - - -1485225759488 - -a - - - -1485225756560->1485225759488 - - - - - -1485225759680 - -text - - - -1485225759488->1485225759680 - - - - - -1485225759584 - -a - - - -1485225759200->1485225759584 - - - - - -1485225759920 - -text - - - -1485225759584->1485225759920 - - - - - -1485225760016 - -a - - - -1485225758192->1485225760016 - - - - - -1485225760976 - -text - - - -1485225760016->1485225760976 - - - - - -1485225760448 - -a - - - -1485225759440->1485225760448 - - - - - -1485225761552 - -text - - - -1485225760448->1485225761552 - - - - - -1485225761984 - -a - - - -1485225759872->1485225761984 - - - - - -1485225762560 - -text - - - -1485225761984->1485225762560 - - - - - -1485225762800 - -a - - - -1485225760592->1485225762800 - - - - - -1485225763376 - -text - - - -1485225762800->1485225763376 - - - - - -1485225762944 - -a - - - -1485225761120->1485225762944 - - - - - -1485225764240 - -text - - - -1485225762944->1485225764240 - - - - - -1485225763664 - -a - - - -1485225762128->1485225763664 - - - - - -1485225765152 - -text - - - -1485225763664->1485225765152 - - - - - -1485225756224 - -ul - - - -1485225671936->1485225756224 - - - - - -1485225765872 - -li - - - -1485225756224->1485225765872 - - - - - -1485225768416 - -li - - - -1485225756224->1485225768416 - - - - - -1485225768800 - -li - - - -1485225756224->1485225768800 - - - - - -1485225767168 - -li - - - -1485225756224->1485225767168 - - - - - -1485225769424 - -li - - - -1485225756224->1485225769424 - - - - - -1485225769952 - -li - - - -1485225756224->1485225769952 - - - - - -1485225820416 - -li - - - -1485225756224->1485225820416 - - - - - -1485225770672 - -li - - - -1485225756224->1485225770672 - - - - - -1485225821424 - -li - - - -1485225756224->1485225821424 - - - - - -1485225768608 - -a - - - -1485225765872->1485225768608 - - - - - -1485225769232 - -text - - - -1485225768608->1485225769232 - - - - - -1485225769568 - -a - - - -1485225768416->1485225769568 - - - - - -1485225769760 - -text - - - -1485225769568->1485225769760 - - - - - -1485225769664 - -a - - - -1485225768800->1485225769664 - - - - - -1485225770000 - -text - - - -1485225769664->1485225770000 - - - - - -1485225770096 - -a - - - -1485225767168->1485225770096 - - - - - -1485225770576 - -text - - - -1485225770096->1485225770576 - - - - - -1485225770528 - -a - - - -1485225769424->1485225770528 - - - - - -1485225820848 - -text - - - -1485225770528->1485225820848 - - - - - -1485225821280 - -a - - - -1485225769952->1485225821280 - - - - - -1485225821856 - -text - - - -1485225821280->1485225821856 - - - - - -1485225822144 - -a - - - -1485225820416->1485225822144 - - - - - -1485225822720 - -text - - - -1485225822144->1485225822720 - - - - - -1485225822288 - -a - - - -1485225770672->1485225822288 - - - - - -1485225823584 - -text - - - -1485225822288->1485225823584 - - - - - -1485225823008 - -a - - - -1485225821424->1485225823008 - - - - - -1485225824496 - -text - - - -1485225823008->1485225824496 - - - - - -1485225667472 - -aside - - - -1485225665936->1485225667472 - - - - - -1485225823056 - -div - - - -1485225667472->1485225823056 - - - - - -1485225825600 - -div - - - -1485225823056->1485225825600 - - - - - -1485225825936 - -div - - - -1485225823056->1485225825936 - - - - - -1485225825696 - -div - - - -1485225667040->1485225825696 - - - - - -1485225829440 - -div - - - -1485225667040->1485225829440 - - - - - -1485225833568 - -div - - - -1485225825696->1485225833568 - - - - - -1485225832896 - -div - - - -1485225829440->1485225832896 - - - - - -1485225835104 - -div - - - -1485225829440->1485225835104 - - - - - -1485225830352 - -header - - - -1485225825216->1485225830352 - - - - - -1485225838624 - -div - - - -1485225825216->1485225838624 - - - - - -1485225839392 - -div - - - -1485225825216->1485225839392 - - - - - -1485225842704 - -div - - - -1485225830352->1485225842704 - - - - - -1485225843808 - -div - - - -1485225842704->1485225843808 - - - - - -1485225837808 - -div - - - -1485225843808->1485225837808 - - - - - -1485225847552 - -h1 - - - -1485225837808->1485225847552 - - - - - -1485225848224 - -text - - - -1485225847552->1485225848224 - - - - - -1485225837280 - -div - - - -1485225838624->1485225837280 - - - - - -1485225848272 - -div - - - -1485225838624->1485225848272 - - - - - -1485225848656 - -div - - - -1485225838624->1485225848656 - - - - - -1485225847696 - -div - - - -1485225838624->1485225847696 - - - - - -1485225848896 - -div - - - -1485225838624->1485225848896 - - - - - -1485225881712 - -div - - - -1485225838624->1485225881712 - - - - - -1485225994816 - -div - - - -1485225838624->1485225994816 - - - - - -1485226041808 - -div - - - -1485225838624->1485226041808 - - - - - -1485226042192 - -div - - - -1485225838624->1485226042192 - - - - - -1485226043248 - -div - - - -1485225838624->1485226043248 - - - - - -1485226167360 - -div - - - -1485225838624->1485226167360 - - - - - -1485226177824 - -div - - - -1485225838624->1485226177824 - - - - - -1485226178160 - -div - - - -1485225838624->1485226178160 - - - - - -1485226278816 - -div - - - -1485225838624->1485226278816 - - - - - -1485226376448 - -div - - - -1485225838624->1485226376448 - - - - - -1485226370352 - -div - - - -1485225838624->1485226370352 - - - - - -1485225848560 - -div - - - -1485225837280->1485225848560 - - - - - -1485225848848 - -div - - - -1485225848560->1485225848848 - - - - - -1485225849040 - -div - - - -1485225848848->1485225849040 - - - - - -1485225849232 - -div - - - -1485225849040->1485225849232 - - - - - -1485225849280 - -div - - - -1485225849040->1485225849280 - - - - - -1485225849376 - -div - - - -1485225849040->1485225849376 - - - - - -1485225849424 - -div - - - -1485225849232->1485225849424 - - - - - -1485225849616 - -div - - - -1485225849424->1485225849616 - - - - - -1485225849664 - -div - - - -1485225849424->1485225849664 - - - - - -1485225849808 - -a - - - -1485225849616->1485225849808 - - - - - -1485225850000 - -span - - - -1485225849808->1485225850000 - - - - - -1485225850192 - -div - - - -1485225850000->1485225850192 - - - - - -1485225850336 - -div - - - -1485225850192->1485225850336 - - - - - -1485225850528 - -picture - - - -1485225850336->1485225850528 - - - - - -1485225850720 - -noscript - - - -1485225850528->1485225850720 - - - - - -1485225850912 - -source - - - -1485225850720->1485225850912 - - - - - -1485225850960 - -source - - - -1485225850720->1485225850960 - - - - - -1485225851056 - -img - - - -1485225850720->1485225851056 - - - - - -1485225849856 - -div - - - -1485225849664->1485225849856 - - - - - -1485225850576 - -a - - - -1485225849664->1485225850576 - - - - - -1485225851392 - -div - - - -1485225849664->1485225851392 - - - - - -1485225850144 - -div - - - -1485225849664->1485225850144 - - - - - -1485225851200 - -div - - - -1485225849856->1485225851200 - - - - - -1485225851584 - -span - - - -1485225851200->1485225851584 - - - - - -1485225851632 - -text - - - -1485225851584->1485225851632 - - - - - -1485225851968 - -h3 - - - -1485225850576->1485225851968 - - - - - -1485225852208 - -text - - - -1485225851968->1485225852208 - - - - - -1485225851680 - -text - - - -1485225851392->1485225851680 - - - - - -1485225852880 - -div - - - -1485225850144->1485225852880 - - - - - -1485225869808 - -div - - - -1485225852880->1485225869808 - - - - - -1485225870000 - -div - - - -1485225869808->1485225870000 - - - - - -1485225870192 - -p - - - -1485225870000->1485225870192 - - - - - -1485225870384 - -span - - - -1485225870192->1485225870384 - - - - - -1485225870576 - -span - - - -1485225870384->1485225870576 - - - - - -1485225870768 - -text - - - -1485225870576->1485225870768 - - - - - -1485225849472 - -div - - - -1485225849280->1485225849472 - - - - - -1485225870624 - -div - - - -1485225849472->1485225870624 - - - - - -1485225870912 - -div - - - -1485225849472->1485225870912 - - - - - -1485225871584 - -a - - - -1485225870624->1485225871584 - - - - - -1485225871920 - -span - - - -1485225871584->1485225871920 - - - - - -1485225872112 - -div - - - -1485225871920->1485225872112 - - - - - -1485225872400 - -div - - - -1485225872112->1485225872400 - - - - - -1485225872592 - -picture - - - -1485225872400->1485225872592 - - - - - -1485225872784 - -noscript - - - -1485225872592->1485225872784 - - - - - -1485225872976 - -source - - - -1485225872784->1485225872976 - - - - - -1485225873024 - -source - - - -1485225872784->1485225873024 - - - - - -1485225873120 - -img - - - -1485225872784->1485225873120 - - - - - -1485225871632 - -div - - - -1485225870912->1485225871632 - - - - - -1485225872640 - -a - - - -1485225870912->1485225872640 - - - - - -1485225872208 - -div - - - -1485225870912->1485225872208 - - - - - -1485225873264 - -div - - - -1485225871632->1485225873264 - - - - - -1485225873648 - -span - - - -1485225873264->1485225873648 - - - - - -1485225873696 - -text - - - -1485225873648->1485225873696 - - - - - -1485225873456 - -h3 - - - -1485225872640->1485225873456 - - - - - -1485225874080 - -text - - - -1485225873456->1485225874080 - - - - - -1485225874704 - -div - - - -1485225872208->1485225874704 - - - - - -1485225874848 - -div - - - -1485225874704->1485225874848 - - - - - -1485225875040 - -div - - - -1485225874848->1485225875040 - - - - - -1485225875232 - -p - - - -1485225875040->1485225875232 - - - - - -1485225875424 - -span - - - -1485225875232->1485225875424 - - - - - -1485225875616 - -span - - - -1485225875424->1485225875616 - - - - - -1485225875808 - -text - - - -1485225875616->1485225875808 - - - - - -1485225874896 - -div - - - -1485225849376->1485225874896 - - - - - -1485225876768 - -div - - - -1485225874896->1485225876768 - - - - - -1485225875952 - -div - - - -1485225874896->1485225875952 - - - - - -1485225877632 - -a - - - -1485225876768->1485225877632 - - - - - -1485225877776 - -span - - - -1485225877632->1485225877776 - - - - - -1485225878304 - -div - - - -1485225877776->1485225878304 - - - - - -1485225878400 - -div - - - -1485225878304->1485225878400 - - - - - -1485225878592 - -picture - - - -1485225878400->1485225878592 - - - - - -1485225878784 - -noscript - - - -1485225878592->1485225878784 - - - - - -1485225878976 - -source - - - -1485225878784->1485225878976 - - - - - -1485225879024 - -source - - - -1485225878784->1485225879024 - - - - - -1485225879120 - -img - - - -1485225878784->1485225879120 - - - - - -1485225877680 - -div - - - -1485225875952->1485225877680 - - - - - -1485225878640 - -a - - - -1485225875952->1485225878640 - - - - - -1485225879456 - -div - - - -1485225875952->1485225879456 - - - - - -1485225879264 - -div - - - -1485225877680->1485225879264 - - - - - -1485225879648 - -span - - - -1485225879264->1485225879648 - - - - - -1485225879696 - -text - - - -1485225879648->1485225879696 - - - - - -1485225880032 - -h3 - - - -1485225878640->1485225880032 - - - - - -1485225880272 - -text - - - -1485225880032->1485225880272 - - - - - -1485225880560 - -div - - - -1485225879456->1485225880560 - - - - - -1485225880896 - -div - - - -1485225880560->1485225880896 - - - - - -1485225881088 - -div - - - -1485225880896->1485225881088 - - - - - -1485225881280 - -p - - - -1485225881088->1485225881280 - - - - - -1485225881472 - -span - - - -1485225881280->1485225881472 - - - - - -1485225881664 - -span - - - -1485225881472->1485225881664 - - - - - -1485225881856 - -text - - - -1485225881664->1485225881856 - - - - - -1485225849088 - -div - - - -1485225848272->1485225849088 - - - - - -1485225881136 - -div - - - -1485225849088->1485225881136 - - - - - -1485225881328 - -div - - - -1485225881136->1485225881328 - - - - - -1485225882000 - -div - - - -1485225881328->1485225882000 - - - - - -1485225884016 - -div - - - -1485225882000->1485225884016 - - - - - -1485225885072 - -div - - - -1485225882000->1485225885072 - - - - - -1485225885264 - -div - - - -1485225882000->1485225885264 - - - - - -1485225885360 - -h2 - - - -1485225884016->1485225885360 - - - - - -1485225885552 - -a - - - -1485225885360->1485225885552 - - - - - -1485225934960 - -text - - - -1485225885552->1485225934960 - - - - - -1485225935344 - -div - - - -1485225885072->1485225935344 - - - - - -1485225935152 - -div - - - -1485225885072->1485225935152 - - - - - -1485225935632 - -div - - - -1485225885072->1485225935632 - - - - - -1485225935440 - -div - - - -1485225885072->1485225935440 - - - - - -1485225936016 - -div - - - -1485225885072->1485225936016 - - - - - -1485225935488 - -div - - - -1485225935344->1485225935488 - - - - - -1485225935536 - -div - - - -1485225935344->1485225935536 - - - - - -1485225935680 - -a - - - -1485225935488->1485225935680 - - - - - -1485225935872 - -span - - - -1485225935680->1485225935872 - - - - - -1485225936064 - -div - - - -1485225935872->1485225936064 - - - - - -1485225936208 - -div - - - -1485225936064->1485225936208 - - - - - -1485225936400 - -picture - - - -1485225936208->1485225936400 - - - - - -1485225936592 - -noscript - - - -1485225936400->1485225936592 - - - - - -1485225936784 - -source - - - -1485225936592->1485225936784 - - - - - -1485225936832 - -source - - - -1485225936592->1485225936832 - - - - - -1485225936928 - -img - - - -1485225936592->1485225936928 - - - - - -1485225935728 - -a - - - -1485225935536->1485225935728 - - - - - -1485225936448 - -div - - - -1485225935536->1485225936448 - - - - - -1485225937264 - -div - - - -1485225935536->1485225937264 - - - - - -1485225937072 - -h3 - - - -1485225935728->1485225937072 - - - - - -1485225937456 - -text - - - -1485225937072->1485225937456 - - - - - -1485225937792 - -text - - - -1485225936448->1485225937792 - - - - - -1485225937984 - -div - - - -1485225937264->1485225937984 - - - - - -1485225938032 - -div - - - -1485225937984->1485225938032 - - - - - -1485225938512 - -div - - - -1485225938032->1485225938512 - - - - - -1485225938704 - -p - - - -1485225938512->1485225938704 - - - - - -1485225938896 - -span - - - -1485225938704->1485225938896 - - - - - -1485225939088 - -span - - - -1485225938896->1485225939088 - - - - - -1485225939280 - -text - - - -1485225939088->1485225939280 - - - - - -1485225938080 - -div - - - -1485225935152->1485225938080 - - - - - -1485225938944 - -div - - - -1485225935152->1485225938944 - - - - - -1485225938560 - -a - - - -1485225938080->1485225938560 - - - - - -1485225939520 - -span - - - -1485225938560->1485225939520 - - - - - -1485225940480 - -div - - - -1485225939520->1485225940480 - - - - - -1485225940576 - -div - - - -1485225940480->1485225940576 - - - - - -1485225940816 - -picture - - - -1485225940576->1485225940816 - - - - - -1485225941008 - -noscript - - - -1485225940816->1485225941008 - - - - - -1485225941200 - -source - - - -1485225941008->1485225941200 - - - - - -1485225941248 - -source - - - -1485225941008->1485225941248 - - - - - -1485225941344 - -img - - - -1485225941008->1485225941344 - - - - - -1485225939808 - -a - - - -1485225938944->1485225939808 - - - - - -1485225940864 - -div - - - -1485225938944->1485225940864 - - - - - -1485225941680 - -div - - - -1485225938944->1485225941680 - - - - - -1485225941488 - -h3 - - - -1485225939808->1485225941488 - - - - - -1485225941872 - -text - - - -1485225941488->1485225941872 - - - - - -1485225942208 - -text - - - -1485225940864->1485225942208 - - - - - -1485225941920 - -div - - - -1485225941680->1485225941920 - - - - - -1485225942784 - -div - - - -1485225941920->1485225942784 - - - - - -1485225942880 - -div - - - -1485225942784->1485225942880 - - - - - -1485225943072 - -p - - - -1485225942880->1485225943072 - - - - - -1485225943264 - -span - - - -1485225943072->1485225943264 - - - - - -1485225943456 - -span - - - -1485225943264->1485225943456 - - - - - -1485225943648 - -text - - - -1485225943456->1485225943648 - - - - - -1485225939472 - -div - - - -1485225935632->1485225939472 - - - - - -1485225942448 - -div - - - -1485225935632->1485225942448 - - - - - -1485225940288 - -a - - - -1485225939472->1485225940288 - - - - - -1485225944944 - -span - - - -1485225940288->1485225944944 - - - - - -1485225945376 - -div - - - -1485225944944->1485225945376 - - - - - -1485225945664 - -div - - - -1485225945376->1485225945664 - - - - - -1485225945856 - -picture - - - -1485225945664->1485225945856 - - - - - -1485225946048 - -noscript - - - -1485225945856->1485225946048 - - - - - -1485225946240 - -source - - - -1485225946048->1485225946240 - - - - - -1485225946288 - -source - - - -1485225946048->1485225946288 - - - - - -1485225946384 - -img - - - -1485225946048->1485225946384 - - - - - -1485225942400 - -a - - - -1485225942448->1485225942400 - - - - - -1485225945904 - -div - - - -1485225942448->1485225945904 - - - - - -1485225946720 - -div - - - -1485225942448->1485225946720 - - - - - -1485225946528 - -h3 - - - -1485225942400->1485225946528 - - - - - -1485225946912 - -text - - - -1485225946528->1485225946912 - - - - - -1485225947248 - -text - - - -1485225945904->1485225947248 - - - - - -1485225947440 - -div - - - -1485225946720->1485225947440 - - - - - -1485225947488 - -div - - - -1485225947440->1485225947488 - - - - - -1485225947968 - -div - - - -1485225947488->1485225947968 - - - - - -1485225948160 - -p - - - -1485225947968->1485225948160 - - - - - -1485225948352 - -span - - - -1485225948160->1485225948352 - - - - - -1485225948544 - -span - - - -1485225948352->1485225948544 - - - - - -1485225948736 - -text - - - -1485225948544->1485225948736 - - - - - -1485225947536 - -div - - - -1485225935440->1485225947536 - - - - - -1485225948400 - -div - - - -1485225936016->1485225948400 - - - - - -1485225949504 - -div - - - -1485225936016->1485225949504 - - - - - -1485225950320 - -a - - - -1485225948400->1485225950320 - - - - - -1485225986416 - -span - - - -1485225950320->1485225986416 - - - - - -1485225986560 - -div - - - -1485225986416->1485225986560 - - - - - -1485225986848 - -div - - - -1485225986560->1485225986848 - - - - - -1485225987184 - -picture - - - -1485225986848->1485225987184 - - - - - -1485225987376 - -noscript - - - -1485225987184->1485225987376 - - - - - -1485225987568 - -source - - - -1485225987376->1485225987568 - - - - - -1485225987616 - -source - - - -1485225987376->1485225987616 - - - - - -1485225987712 - -img - - - -1485225987376->1485225987712 - - - - - -1485225985696 - -a - - - -1485225949504->1485225985696 - - - - - -1485225987232 - -div - - - -1485225949504->1485225987232 - - - - - -1485225988048 - -div - - - -1485225949504->1485225988048 - - - - - -1485225987856 - -h3 - - - -1485225985696->1485225987856 - - - - - -1485225988240 - -text - - - -1485225987856->1485225988240 - - - - - -1485225988576 - -text - - - -1485225987232->1485225988576 - - - - - -1485225988768 - -em - - - -1485225987232->1485225988768 - - - - - -1485225988672 - -text - - - -1485225987232->1485225988672 - - - - - -1485225988816 - -text - - - -1485225988768->1485225988816 - - - - - -1485225988720 - -div - - - -1485225988048->1485225988720 - - - - - -1485225989152 - -div - - - -1485225988720->1485225989152 - - - - - -1485225989632 - -div - - - -1485225989152->1485225989632 - - - - - -1485225989824 - -p - - - -1485225989632->1485225989824 - - - - - -1485225990016 - -span - - - -1485225989824->1485225990016 - - - - - -1485225990208 - -span - - - -1485225990016->1485225990208 - - - - - -1485225990400 - -text - - - -1485225990208->1485225990400 - - - - - -1485225875664 - -div - - - -1485225848656->1485225875664 - - - - - -1485225991360 - -div - - - -1485225875664->1485225991360 - - - - - -1485225995680 - -div - - - -1485225991360->1485225995680 - - - - - -1485225996880 - -div - - - -1485225995680->1485225996880 - - - - - -1485225997648 - -div - - - -1485225996880->1485225997648 - - - - - -1485225997888 - -div - - - -1485225996880->1485225997888 - - - - - -1485225999232 - -div - - - -1485225996880->1485225999232 - - - - - -1485225996400 - -h2 - - - -1485225997648->1485225996400 - - - - - -1485226000192 - -a - - - -1485225996400->1485226000192 - - - - - -1485225999664 - -text - - - -1485226000192->1485225999664 - - - - - -1485226033696 - -div - - - -1485225997888->1485226033696 - - - - - -1485226033264 - -div - - - -1485225997888->1485226033264 - - - - - -1485226033888 - -div - - - -1485225997888->1485226033888 - - - - - -1485226033600 - -div - - - -1485225997888->1485226033600 - - - - - -1485226034272 - -div - - - -1485225997888->1485226034272 - - - - - -1485226033792 - -div - - - -1485226033696->1485226033792 - - - - - -1485226033840 - -div - - - -1485226033696->1485226033840 - - - - - -1485226033936 - -a - - - -1485226033792->1485226033936 - - - - - -1485226034032 - -span - - - -1485226033936->1485226034032 - - - - - -1485226034176 - -div - - - -1485226034032->1485226034176 - - - - - -1485226034224 - -div - - - -1485226034176->1485226034224 - - - - - -1485226034416 - -picture - - - -1485226034224->1485226034416 - - - - - -1485226034560 - -noscript - - - -1485226034416->1485226034560 - - - - - -1485226034704 - -source - - - -1485226034560->1485226034704 - - - - - -1485226034800 - -source - - - -1485226034560->1485226034800 - - - - - -1485226034896 - -img - - - -1485226034560->1485226034896 - - - - - -1485226033984 - -a - - - -1485226033840->1485226033984 - - - - - -1485226034512 - -div - - - -1485226033840->1485226034512 - - - - - -1485226034944 - -div - - - -1485226033840->1485226034944 - - - - - -1485226034368 - -h3 - - - -1485226033984->1485226034368 - - - - - -1485226034656 - -text - - - -1485226034368->1485226034656 - - - - - -1485226035232 - -text - - - -1485226034512->1485226035232 - - - - - -1485226035088 - -div - - - -1485226034944->1485226035088 - - - - - -1485226035616 - -div - - - -1485226035088->1485226035616 - - - - - -1485226035472 - -div - - - -1485226035616->1485226035472 - - - - - -1485226035712 - -p - - - -1485226035472->1485226035712 - - - - - -1485226035856 - -span - - - -1485226035712->1485226035856 - - - - - -1485226036000 - -span - - - -1485226035856->1485226036000 - - - - - -1485226036144 - -text - - - -1485226036000->1485226036144 - - - - - -1485226035376 - -div - - - -1485226033264->1485226035376 - - - - - -1485226035952 - -div - - - -1485226033264->1485226035952 - - - - - -1485226035568 - -a - - - -1485226035376->1485226035568 - - - - - -1485226036336 - -span - - - -1485226035568->1485226036336 - - - - - -1485226036288 - -div - - - -1485226036336->1485226036288 - - - - - -1485226036096 - -div - - - -1485226036288->1485226036096 - - - - - -1485226036672 - -picture - - - -1485226036096->1485226036672 - - - - - -1485226036816 - -noscript - - - -1485226036672->1485226036816 - - - - - -1485226036912 - -source - - - -1485226036816->1485226036912 - - - - - -1485226037056 - -source - - - -1485226036816->1485226037056 - - - - - -1485226037104 - -img - - - -1485226036816->1485226037104 - - - - - -1485226035664 - -a - - - -1485226035952->1485226035664 - - - - - -1485226036624 - -div - - - -1485226035952->1485226036624 - - - - - -1485226036432 - -div - - - -1485226035952->1485226036432 - - - - - -1485226036528 - -h3 - - - -1485226035664->1485226036528 - - - - - -1485226036864 - -text - - - -1485226036528->1485226036864 - - - - - -1485226037152 - -text - - - -1485226036624->1485226037152 - - - - - -1485226037680 - -div - - - -1485226036432->1485226037680 - - - - - -1485226037584 - -div - - - -1485226037680->1485226037584 - - - - - -1485226037728 - -div - - - -1485226037584->1485226037728 - - - - - -1485226037872 - -p - - - -1485226037728->1485226037872 - - - - - -1485226038016 - -span - - - -1485226037872->1485226038016 - - - - - -1485226038160 - -span - - - -1485226038016->1485226038160 - - - - - -1485226038304 - -text - - - -1485226038160->1485226038304 - - - - - -1485226035808 - -div - - - -1485226033888->1485226035808 - - - - - -1485226037440 - -div - - - -1485226033888->1485226037440 - - - - - -1485226038112 - -a - - - -1485226035808->1485226038112 - - - - - -1485226037776 - -span - - - -1485226038112->1485226037776 - - - - - -1485226038256 - -div - - - -1485226037776->1485226038256 - - - - - -1485226038736 - -div - - - -1485226038256->1485226038736 - - - - - -1485226038592 - -picture - - - -1485226038736->1485226038592 - - - - - -1485226038784 - -noscript - - - -1485226038592->1485226038784 - - - - - -1485226039024 - -source - - - -1485226038784->1485226039024 - - - - - -1485226039072 - -source - - - -1485226038784->1485226039072 - - - - - -1485226039216 - -img - - - -1485226038784->1485226039216 - - - - - -1485226037296 - -a - - - -1485226037440->1485226037296 - - - - - -1485226038688 - -div - - - -1485226037440->1485226038688 - - - - - -1485226039264 - -div - - - -1485226037440->1485226039264 - - - - - -1485226038640 - -h3 - - - -1485226037296->1485226038640 - - - - - -1485226038880 - -text - - - -1485226038640->1485226038880 - - - - - -1485226039504 - -text - - - -1485226038688->1485226039504 - - - - - -1485226039600 - -div - - - -1485226039264->1485226039600 - - - - - -1485226039696 - -div - - - -1485226039600->1485226039696 - - - - - -1485226039552 - -div - - - -1485226039696->1485226039552 - - - - - -1485226039936 - -p - - - -1485226039552->1485226039936 - - - - - -1485226040080 - -span - - - -1485226039936->1485226040080 - - - - - -1485226040224 - -span - - - -1485226040080->1485226040224 - - - - - -1485226040368 - -text - - - -1485226040224->1485226040368 - - - - - -1485226039360 - -div - - - -1485226033600->1485226039360 - - - - - -1485226040176 - -div - - - -1485226034272->1485226040176 - - - - - -1485226040032 - -div - - - -1485226034272->1485226040032 - - - - - -1485226040848 - -a - - - -1485226040176->1485226040848 - - - - - -1485226040512 - -span - - - -1485226040848->1485226040512 - - - - - -1485226040704 - -div - - - -1485226040512->1485226040704 - - - - - -1485226041088 - -div - - - -1485226040704->1485226041088 - - - - - -1485226040800 - -picture - - - -1485226041088->1485226040800 - - - - - -1485226040944 - -noscript - - - -1485226040800->1485226040944 - - - - - -1485226041328 - -source - - - -1485226040944->1485226041328 - - - - - -1485226041184 - -source - - - -1485226040944->1485226041184 - - - - - -1485226041472 - -img - - - -1485226040944->1485226041472 - - - - - -1485226040656 - -a - - - -1485226040032->1485226040656 - - - - - -1485226040896 - -div - - - -1485226040032->1485226040896 - - - - - -1485226041520 - -div - - - -1485226040032->1485226041520 - - - - - -1485226041040 - -h3 - - - -1485226040656->1485226041040 - - - - - -1485226041232 - -text - - - -1485226041040->1485226041232 - - - - - -1485226041760 - -text - - - -1485226040896->1485226041760 - - - - - -1485226041616 - -div - - - -1485226041520->1485226041616 - - - - - -1485226042144 - -div - - - -1485226041616->1485226042144 - - - - - -1485226042000 - -div - - - -1485226042144->1485226042000 - - - - - -1485226042240 - -p - - - -1485226042000->1485226042240 - - - - - -1485226042384 - -span - - - -1485226042240->1485226042384 - - - - - -1485226042528 - -span - - - -1485226042384->1485226042528 - - - - - -1485226042624 - -text - - - -1485226042384->1485226042624 - - - - - -1485226042816 - -span - - - -1485226042384->1485226042816 - - - - - -1485226042672 - -text - - - -1485226042528->1485226042672 - - - - - -1485226042960 - -text - - - -1485226042816->1485226042960 - - - - - -1485225885168 - -div - - - -1485225847696->1485225885168 - - - - - -1485225997168 - -div - - - -1485225885168->1485225997168 - - - - - -1485225999520 - -div - - - -1485225848896->1485225999520 - - - - - -1485226043152 - -div - - - -1485225999520->1485226043152 - - - - - -1485226038496 - -div - - - -1485226043152->1485226038496 - - - - - -1485226040752 - -div - - - -1485226038496->1485226040752 - - - - - -1485226043200 - -div - - - -1485226040752->1485226043200 - - - - - -1485226044016 - -div - - - -1485226040752->1485226044016 - - - - - -1485226043680 - -div - - - -1485226040752->1485226043680 - - - - - -1485226043584 - -h2 - - - -1485226043200->1485226043584 - - - - - -1485226042720 - -a - - - -1485226043584->1485226042720 - - - - - -1485226044352 - -text - - - -1485226042720->1485226044352 - - - - - -1485226043536 - -div - - - -1485226044016->1485226043536 - - - - - -1485226043632 - -div - - - -1485226044016->1485226043632 - - - - - -1485226043776 - -div - - - -1485226044016->1485226043776 - - - - - -1485226045744 - -div - - - -1485226044016->1485226045744 - - - - - -1485226044592 - -div - - - -1485226044016->1485226044592 - - - - - -1485226043344 - -div - - - -1485226043536->1485226043344 - - - - - -1485226043488 - -div - - - -1485226043536->1485226043488 - - - - - -1485226043104 - -a - - - -1485226043344->1485226043104 - - - - - -1485226044448 - -span - - - -1485226043104->1485226044448 - - - - - -1485226044112 - -div - - - -1485226044448->1485226044112 - - - - - -1485226044496 - -div - - - -1485226044112->1485226044496 - - - - - -1485226044640 - -picture - - - -1485226044496->1485226044640 - - - - - -1485226044736 - -noscript - - - -1485226044640->1485226044736 - - - - - -1485226044880 - -source - - - -1485226044736->1485226044880 - - - - - -1485226044976 - -source - - - -1485226044736->1485226044976 - - - - - -1485226045072 - -img - - - -1485226044736->1485226045072 - - - - - -1485226044160 - -a - - - -1485226043488->1485226044160 - - - - - -1485226044544 - -div - - - -1485226043488->1485226044544 - - - - - -1485226045120 - -div - - - -1485226043488->1485226045120 - - - - - -1485226044400 - -h3 - - - -1485226044160->1485226044400 - - - - - -1485226044832 - -text - - - -1485226044400->1485226044832 - - - - - -1485226045408 - -text - - - -1485226044544->1485226045408 - - - - - -1485226045264 - -div - - - -1485226045120->1485226045264 - - - - - -1485226045792 - -div - - - -1485226045264->1485226045792 - - - - - -1485226045648 - -div - - - -1485226045792->1485226045648 - - - - - -1485226045888 - -p - - - -1485226045648->1485226045888 - - - - - -1485226046032 - -span - - - -1485226045888->1485226046032 - - - - - -1485226046176 - -span - - - -1485226046032->1485226046176 - - - - - -1485226046320 - -text - - - -1485226046176->1485226046320 - - - - - -1485226044208 - -div - - - -1485226043632->1485226044208 - - - - - -1485226045456 - -div - - - -1485226043632->1485226045456 - - - - - -1485226046128 - -a - - - -1485226044208->1485226046128 - - - - - -1485226045840 - -span - - - -1485226046128->1485226045840 - - - - - -1485226046464 - -div - - - -1485226045840->1485226046464 - - - - - -1485226046416 - -div - - - -1485226046464->1485226046416 - - - - - -1485226046656 - -picture - - - -1485226046416->1485226046656 - - - - - -1485226046752 - -noscript - - - -1485226046656->1485226046752 - - - - - -1485226046992 - -source - - - -1485226046752->1485226046992 - - - - - -1485226047088 - -source - - - -1485226046752->1485226047088 - - - - - -1485226047136 - -img - - - -1485226046752->1485226047136 - - - - - -1485226045984 - -a - - - -1485226045456->1485226045984 - - - - - -1485226046848 - -div - - - -1485226045456->1485226046848 - - - - - -1485226047232 - -div - - - -1485226045456->1485226047232 - - - - - -1485226046704 - -h3 - - - -1485226045984->1485226046704 - - - - - -1485226046896 - -text - - - -1485226046704->1485226046896 - - - - - -1485226047520 - -text - - - -1485226046848->1485226047520 - - - - - -1485226047376 - -div - - - -1485226047232->1485226047376 - - - - - -1485226047904 - -div - - - -1485226047376->1485226047904 - - - - - -1485226047760 - -div - - - -1485226047904->1485226047760 - - - - - -1485226048000 - -p - - - -1485226047760->1485226048000 - - - - - -1485226048144 - -span - - - -1485226048000->1485226048144 - - - - - -1485226048288 - -span - - - -1485226048144->1485226048288 - - - - - -1485226048432 - -text - - - -1485226048288->1485226048432 - - - - - -1485226047568 - -div - - - -1485226043776->1485226047568 - - - - - -1485226048240 - -div - - - -1485226043776->1485226048240 - - - - - -1485226048624 - -a - - - -1485226047568->1485226048624 - - - - - -1485226047952 - -span - - - -1485226048624->1485226047952 - - - - - -1485226048864 - -div - - - -1485226047952->1485226048864 - - - - - -1485226048576 - -div - - - -1485226048864->1485226048576 - - - - - -1485226048960 - -picture - - - -1485226048576->1485226048960 - - - - - -1485226049104 - -noscript - - - -1485226048960->1485226049104 - - - - - -1485226049056 - -source - - - -1485226049104->1485226049056 - - - - - -1485226049248 - -source - - - -1485226049104->1485226049248 - - - - - -1485226049392 - -img - - - -1485226049104->1485226049392 - - - - - -1485226047856 - -a - - - -1485226048240->1485226047856 - - - - - -1485226048912 - -div - - - -1485226048240->1485226048912 - - - - - -1485226049296 - -div - - - -1485226048240->1485226049296 - - - - - -1485226048720 - -h3 - - - -1485226047856->1485226048720 - - - - - -1485226049152 - -text - - - -1485226048720->1485226049152 - - - - - -1485226164432 - -text - - - -1485226048912->1485226164432 - - - - - -1485226164384 - -div - - - -1485226049296->1485226164384 - - - - - -1485226164816 - -div - - - -1485226164384->1485226164816 - - - - - -1485226164672 - -div - - - -1485226164816->1485226164672 - - - - - -1485226164912 - -p - - - -1485226164672->1485226164912 - - - - - -1485226165056 - -span - - - -1485226164912->1485226165056 - - - - - -1485226165200 - -span - - - -1485226165056->1485226165200 - - - - - -1485226165344 - -text - - - -1485226165200->1485226165344 - - - - - -1485226164480 - -div - - - -1485226045744->1485226164480 - - - - - -1485226165152 - -div - - - -1485226044592->1485226165152 - - - - - -1485226165008 - -div - - - -1485226044592->1485226165008 - - - - - -1485226165872 - -a - - - -1485226165152->1485226165872 - - - - - -1485226165584 - -span - - - -1485226165872->1485226165584 - - - - - -1485226165728 - -div - - - -1485226165584->1485226165728 - - - - - -1485226166112 - -div - - - -1485226165728->1485226166112 - - - - - -1485226165824 - -picture - - - -1485226166112->1485226165824 - - - - - -1485226165968 - -noscript - - - -1485226165824->1485226165968 - - - - - -1485226166352 - -source - - - -1485226165968->1485226166352 - - - - - -1485226166208 - -source - - - -1485226165968->1485226166208 - - - - - -1485226166496 - -img - - - -1485226165968->1485226166496 - - - - - -1485226165680 - -a - - - -1485226165008->1485226165680 - - - - - -1485226165920 - -div - - - -1485226165008->1485226165920 - - - - - -1485226166544 - -div - - - -1485226165008->1485226166544 - - - - - -1485226166064 - -h3 - - - -1485226165680->1485226166064 - - - - - -1485226166256 - -text - - - -1485226166064->1485226166256 - - - - - -1485226166784 - -text - - - -1485226165920->1485226166784 - - - - - -1485226166640 - -div - - - -1485226166544->1485226166640 - - - - - -1485226167168 - -div - - - -1485226166640->1485226167168 - - - - - -1485226167024 - -div - - - -1485226167168->1485226167024 - - - - - -1485226167264 - -p - - - -1485226167024->1485226167264 - - - - - -1485226167408 - -span - - - -1485226167264->1485226167408 - - - - - -1485226167552 - -span - - - -1485226167408->1485226167552 - - - - - -1485226167696 - -text - - - -1485226167552->1485226167696 - - - - - -1485226043440 - -div - - - -1485225881712->1485226043440 - - - - - -1485226046272 - -div - - - -1485226043440->1485226046272 - - - - - -1485226165776 - -div - - - -1485226046272->1485226165776 - - - - - -1485226166832 - -div - - - -1485226165776->1485226166832 - - - - - -1485226167936 - -div - - - -1485226166832->1485226167936 - - - - - -1485226167648 - -div - - - -1485226166832->1485226167648 - - - - - -1485226168272 - -div - - - -1485226166832->1485226168272 - - - - - -1485226168128 - -h2 - - - -1485226167936->1485226168128 - - - - - -1485226168464 - -a - - - -1485226168128->1485226168464 - - - - - -1485226168512 - -text - - - -1485226168464->1485226168512 - - - - - -1485226167984 - -div - - - -1485226167648->1485226167984 - - - - - -1485226168656 - -div - - - -1485226167648->1485226168656 - - - - - -1485226168368 - -div - - - -1485226167648->1485226168368 - - - - - -1485226168560 - -div - - - -1485226167648->1485226168560 - - - - - -1485226169616 - -div - - - -1485226167648->1485226169616 - - - - - -1485226168800 - -div - - - -1485226167984->1485226168800 - - - - - -1485226167888 - -div - - - -1485226167984->1485226167888 - - - - - -1485226168608 - -a - - - -1485226168800->1485226168608 - - - - - -1485226168896 - -span - - - -1485226168608->1485226168896 - - - - - -1485226168752 - -div - - - -1485226168896->1485226168752 - - - - - -1485226168704 - -div - - - -1485226168752->1485226168704 - - - - - -1485226169280 - -picture - - - -1485226168704->1485226169280 - - - - - -1485226169136 - -noscript - - - -1485226169280->1485226169136 - - - - - -1485226169472 - -source - - - -1485226169136->1485226169472 - - - - - -1485226169568 - -source - - - -1485226169136->1485226169568 - - - - - -1485226169664 - -img - - - -1485226169136->1485226169664 - - - - - -1485226168320 - -a - - - -1485226167888->1485226168320 - - - - - -1485226169328 - -div - - - -1485226167888->1485226169328 - - - - - -1485226168944 - -div - - - -1485226167888->1485226168944 - - - - - -1485226169232 - -h3 - - - -1485226168320->1485226169232 - - - - - -1485226169424 - -text - - - -1485226169232->1485226169424 - - - - - -1485226169712 - -text - - - -1485226169328->1485226169712 - - - - - -1485226169856 - -div - - - -1485226168944->1485226169856 - - - - - -1485226170336 - -div - - - -1485226169856->1485226170336 - - - - - -1485226170000 - -div - - - -1485226170336->1485226170000 - - - - - -1485226170384 - -p - - - -1485226170000->1485226170384 - - - - - -1485226170528 - -span - - - -1485226170384->1485226170528 - - - - - -1485226170672 - -span - - - -1485226170528->1485226170672 - - - - - -1485226170816 - -text - - - -1485226170672->1485226170816 - - - - - -1485226170048 - -div - - - -1485226168656->1485226170048 - - - - - -1485226170624 - -div - - - -1485226168656->1485226170624 - - - - - -1485226170240 - -a - - - -1485226170048->1485226170240 - - - - - -1485226171008 - -span - - - -1485226170240->1485226171008 - - - - - -1485226170960 - -div - - - -1485226171008->1485226170960 - - - - - -1485226170768 - -div - - - -1485226170960->1485226170768 - - - - - -1485226171344 - -picture - - - -1485226170768->1485226171344 - - - - - -1485226171488 - -noscript - - - -1485226171344->1485226171488 - - - - - -1485226171584 - -source - - - -1485226171488->1485226171584 - - - - - -1485226171728 - -source - - - -1485226171488->1485226171728 - - - - - -1485226171776 - -img - - - -1485226171488->1485226171776 - - - - - -1485226170192 - -a - - - -1485226170624->1485226170192 - - - - - -1485226171296 - -div - - - -1485226170624->1485226171296 - - - - - -1485226171824 - -div - - - -1485226170624->1485226171824 - - - - - -1485226171200 - -h3 - - - -1485226170192->1485226171200 - - - - - -1485226171536 - -text - - - -1485226171200->1485226171536 - - - - - -1485226172112 - -text - - - -1485226171296->1485226172112 - - - - - -1485226171968 - -div - - - -1485226171824->1485226171968 - - - - - -1485226172496 - -div - - - -1485226171968->1485226172496 - - - - - -1485226172352 - -div - - - -1485226172496->1485226172352 - - - - - -1485226172592 - -p - - - -1485226172352->1485226172592 - - - - - -1485226172736 - -span - - - -1485226172592->1485226172736 - - - - - -1485226172880 - -span - - - -1485226172736->1485226172880 - - - - - -1485226173024 - -text - - - -1485226172880->1485226173024 - - - - - -1485226170480 - -div - - - -1485226168368->1485226170480 - - - - - -1485226172160 - -div - - - -1485226168368->1485226172160 - - - - - -1485226172832 - -a - - - -1485226170480->1485226172832 - - - - - -1485226172448 - -span - - - -1485226172832->1485226172448 - - - - - -1485226172976 - -div - - - -1485226172448->1485226172976 - - - - - -1485226173408 - -div - - - -1485226172976->1485226173408 - - - - - -1485226173216 - -picture - - - -1485226173408->1485226173216 - - - - - -1485226173456 - -noscript - - - -1485226173216->1485226173456 - - - - - -1485226173696 - -source - - - -1485226173456->1485226173696 - - - - - -1485226173744 - -source - - - -1485226173456->1485226173744 - - - - - -1485226173888 - -img - - - -1485226173456->1485226173888 - - - - - -1485226171104 - -a - - - -1485226172160->1485226171104 - - - - - -1485226173360 - -div - - - -1485226172160->1485226173360 - - - - - -1485226173936 - -div - - - -1485226172160->1485226173936 - - - - - -1485226173312 - -h3 - - - -1485226171104->1485226173312 - - - - - -1485226173552 - -text - - - -1485226173312->1485226173552 - - - - - -1485226174176 - -text - - - -1485226173360->1485226174176 - - - - - -1485226174032 - -div - - - -1485226173936->1485226174032 - - - - - -1485226174560 - -div - - - -1485226174032->1485226174560 - - - - - -1485226174416 - -div - - - -1485226174560->1485226174416 - - - - - -1485226174656 - -p - - - -1485226174416->1485226174656 - - - - - -1485226174800 - -span - - - -1485226174656->1485226174800 - - - - - -1485226174944 - -span - - - -1485226174800->1485226174944 - - - - - -1485226175088 - -text - - - -1485226174944->1485226175088 - - - - - -1485226174224 - -div - - - -1485226168560->1485226174224 - - - - - -1485226174896 - -div - - - -1485226169616->1485226174896 - - - - - -1485226174752 - -div - - - -1485226169616->1485226174752 - - - - - -1485226175616 - -a - - - -1485226174896->1485226175616 - - - - - -1485226175328 - -span - - - -1485226175616->1485226175328 - - - - - -1485226175472 - -div - - - -1485226175328->1485226175472 - - - - - -1485226175856 - -div - - - -1485226175472->1485226175856 - - - - - -1485226175568 - -picture - - - -1485226175856->1485226175568 - - - - - -1485226175712 - -noscript - - - -1485226175568->1485226175712 - - - - - -1485226176096 - -source - - - -1485226175712->1485226176096 - - - - - -1485226175952 - -source - - - -1485226175712->1485226175952 - - - - - -1485226176240 - -img - - - -1485226175712->1485226176240 - - - - - -1485226175424 - -a - - - -1485226174752->1485226175424 - - - - - -1485226175664 - -div - - - -1485226174752->1485226175664 - - - - - -1485226176288 - -div - - - -1485226174752->1485226176288 - - - - - -1485226175808 - -h3 - - - -1485226175424->1485226175808 - - - - - -1485226176000 - -text - - - -1485226175808->1485226176000 - - - - - -1485226176528 - -text - - - -1485226175664->1485226176528 - - - - - -1485226176384 - -div - - - -1485226176288->1485226176384 - - - - - -1485226176912 - -div - - - -1485226176384->1485226176912 - - - - - -1485226176768 - -div - - - -1485226176912->1485226176768 - - - - - -1485226177008 - -p - - - -1485226176768->1485226177008 - - - - - -1485226177152 - -span - - - -1485226177008->1485226177152 - - - - - -1485226177296 - -span - - - -1485226177152->1485226177296 - - - - - -1485226177440 - -text - - - -1485226177296->1485226177440 - - - - - -1485226043008 - -div - - - -1485225994816->1485226043008 - - - - - -1485226176864 - -div - - - -1485226043008->1485226176864 - - - - - -1485226168032 - -div - - - -1485226041808->1485226168032 - - - - - -1485226173264 - -div - - - -1485226168032->1485226173264 - - - - - -1485226178544 - -div - - - -1485226173264->1485226178544 - - - - - -1485226167840 - -div - - - -1485226178544->1485226167840 - - - - - -1485226177536 - -div - - - -1485226167840->1485226177536 - - - - - -1485226178352 - -div - - - -1485226167840->1485226178352 - - - - - -1485226177680 - -div - - - -1485226167840->1485226177680 - - - - - -1485226177728 - -h2 - - - -1485226177536->1485226177728 - - - - - -1485226178448 - -a - - - -1485226177728->1485226178448 - - - - - -1485226178400 - -text - - - -1485226178448->1485226178400 - - - - - -1485226178976 - -div - - - -1485226178352->1485226178976 - - - - - -1485226178304 - -div - - - -1485226178352->1485226178304 - - - - - -1485226178784 - -div - - - -1485226178352->1485226178784 - - - - - -1485226178208 - -div - - - -1485226178352->1485226178208 - - - - - -1485226178640 - -div - - - -1485226178352->1485226178640 - - - - - -1485226177776 - -div - - - -1485226178976->1485226177776 - - - - - -1485226178496 - -div - - - -1485226178976->1485226178496 - - - - - -1485226178112 - -a - - - -1485226177776->1485226178112 - - - - - -1485226178064 - -span - - - -1485226178112->1485226178064 - - - - - -1485226178736 - -div - - - -1485226178064->1485226178736 - - - - - -1485226179072 - -div - - - -1485226178736->1485226179072 - - - - - -1485226178928 - -picture - - - -1485226179072->1485226178928 - - - - - -1485226179312 - -noscript - - - -1485226178928->1485226179312 - - - - - -1485226179408 - -source - - - -1485226179312->1485226179408 - - - - - -1485226179504 - -source - - - -1485226179312->1485226179504 - - - - - -1485226179600 - -img - - - -1485226179312->1485226179600 - - - - - -1485226177392 - -a - - - -1485226178496->1485226177392 - - - - - -1485226179168 - -div - - - -1485226178496->1485226179168 - - - - - -1485226179648 - -div - - - -1485226178496->1485226179648 - - - - - -1485226179120 - -h3 - - - -1485226177392->1485226179120 - - - - - -1485226179360 - -text - - - -1485226179120->1485226179360 - - - - - -1485226179936 - -text - - - -1485226179168->1485226179936 - - - - - -1485226180032 - -div - - - -1485226179648->1485226180032 - - - - - -1485226180128 - -div - - - -1485226180032->1485226180128 - - - - - -1485226179984 - -div - - - -1485226180128->1485226179984 - - - - - -1485226180368 - -p - - - -1485226179984->1485226180368 - - - - - -1485226180512 - -span - - - -1485226180368->1485226180512 - - - - - -1485226262640 - -span - - - -1485226180512->1485226262640 - - - - - -1485226262784 - -text - - - -1485226262640->1485226262784 - - - - - -1485226179792 - -div - - - -1485226178304->1485226179792 - - - - - -1485226180464 - -div - - - -1485226178304->1485226180464 - - - - - -1485226180224 - -a - - - -1485226179792->1485226180224 - - - - - -1485226262976 - -span - - - -1485226180224->1485226262976 - - - - - -1485226262928 - -div - - - -1485226262976->1485226262928 - - - - - -1485226262736 - -div - - - -1485226262928->1485226262736 - - - - - -1485226263312 - -picture - - - -1485226262736->1485226263312 - - - - - -1485226263456 - -noscript - - - -1485226263312->1485226263456 - - - - - -1485226263552 - -source - - - -1485226263456->1485226263552 - - - - - -1485226263696 - -source - - - -1485226263456->1485226263696 - - - - - -1485226263744 - -img - - - -1485226263456->1485226263744 - - - - - -1485226262592 - -a - - - -1485226180464->1485226262592 - - - - - -1485226263264 - -div - - - -1485226180464->1485226263264 - - - - - -1485226263792 - -div - - - -1485226180464->1485226263792 - - - - - -1485226263168 - -h3 - - - -1485226262592->1485226263168 - - - - - -1485226263504 - -text - - - -1485226263168->1485226263504 - - - - - -1485226264080 - -text - - - -1485226263264->1485226264080 - - - - - -1485226263936 - -div - - - -1485226263792->1485226263936 - - - - - -1485226264464 - -div - - - -1485226263936->1485226264464 - - - - - -1485226264320 - -div - - - -1485226264464->1485226264320 - - - - - -1485226264560 - -p - - - -1485226264320->1485226264560 - - - - - -1485226264704 - -span - - - -1485226264560->1485226264704 - - - - - -1485226264848 - -span - - - -1485226264704->1485226264848 - - - - - -1485226264992 - -text - - - -1485226264848->1485226264992 - - - - - -1485226180320 - -div - - - -1485226178784->1485226180320 - - - - - -1485226264128 - -div - - - -1485226178784->1485226264128 - - - - - -1485226264800 - -a - - - -1485226180320->1485226264800 - - - - - -1485226264416 - -span - - - -1485226264800->1485226264416 - - - - - -1485226264944 - -div - - - -1485226264416->1485226264944 - - - - - -1485226265424 - -div - - - -1485226264944->1485226265424 - - - - - -1485226265280 - -picture - - - -1485226265424->1485226265280 - - - - - -1485226265472 - -noscript - - - -1485226265280->1485226265472 - - - - - -1485226265712 - -source - - - -1485226265472->1485226265712 - - - - - -1485226265760 - -source - - - -1485226265472->1485226265760 - - - - - -1485226265904 - -img - - - -1485226265472->1485226265904 - - - - - -1485226263072 - -a - - - -1485226264128->1485226263072 - - - - - -1485226265376 - -div - - - -1485226264128->1485226265376 - - - - - -1485226265952 - -div - - - -1485226264128->1485226265952 - - - - - -1485226265328 - -h3 - - - -1485226263072->1485226265328 - - - - - -1485226265568 - -text - - - -1485226265328->1485226265568 - - - - - -1485226266192 - -text - - - -1485226265376->1485226266192 - - - - - -1485226266048 - -div - - - -1485226265952->1485226266048 - - - - - -1485226266576 - -div - - - -1485226266048->1485226266576 - - - - - -1485226266432 - -div - - - -1485226266576->1485226266432 - - - - - -1485226266672 - -p - - - -1485226266432->1485226266672 - - - - - -1485226266816 - -span - - - -1485226266672->1485226266816 - - - - - -1485226266960 - -span - - - -1485226266816->1485226266960 - - - - - -1485226267104 - -text - - - -1485226266960->1485226267104 - - - - - -1485226265184 - -div - - - -1485226178208->1485226265184 - - - - - -1485226266240 - -div - - - -1485226178640->1485226266240 - - - - - -1485226266528 - -div - - - -1485226178640->1485226266528 - - - - - -1485226267440 - -a - - - -1485226266240->1485226267440 - - - - - -1485226267632 - -span - - - -1485226267440->1485226267632 - - - - - -1485226267584 - -div - - - -1485226267632->1485226267584 - - - - - -1485226267776 - -div - - - -1485226267584->1485226267776 - - - - - -1485226267392 - -picture - - - -1485226267776->1485226267392 - - - - - -1485226267872 - -noscript - - - -1485226267392->1485226267872 - - - - - -1485226268064 - -source - - - -1485226267872->1485226268064 - - - - - -1485226268112 - -source - - - -1485226267872->1485226268112 - - - - - -1485226268208 - -img - - - -1485226267872->1485226268208 - - - - - -1485226266624 - -a - - - -1485226266528->1485226266624 - - - - - -1485226267488 - -div - - - -1485226266528->1485226267488 - - - - - -1485226268256 - -div - - - -1485226266528->1485226268256 - - - - - -1485226267680 - -h3 - - - -1485226266624->1485226267680 - - - - - -1485226267920 - -text - - - -1485226267680->1485226267920 - - - - - -1485226268496 - -text - - - -1485226267488->1485226268496 - - - - - -1485226268352 - -div - - - -1485226268256->1485226268352 - - - - - -1485226268880 - -div - - - -1485226268352->1485226268880 - - - - - -1485226268736 - -div - - - -1485226268880->1485226268736 - - - - - -1485226268976 - -p - - - -1485226268736->1485226268976 - - - - - -1485226269120 - -span - - - -1485226268976->1485226269120 - - - - - -1485226269264 - -span - - - -1485226269120->1485226269264 - - - - - -1485226269408 - -text - - - -1485226269264->1485226269408 - - - - - -1485226177248 - -div - - - -1485226042192->1485226177248 - - - - - -1485226177920 - -div - - - -1485226177248->1485226177920 - - - - - -1485226268832 - -div - - - -1485226177920->1485226268832 - - - - - -1485226269072 - -div - - - -1485226268832->1485226269072 - - - - - -1485226268928 - -div - - - -1485226269072->1485226268928 - - - - - -1485226265136 - -div - - - -1485226269072->1485226265136 - - - - - -1485226270176 - -div - - - -1485226269072->1485226270176 - - - - - -1485226269360 - -h2 - - - -1485226268928->1485226269360 - - - - - -1485226269744 - -a - - - -1485226269360->1485226269744 - - - - - -1485226270272 - -text - - - -1485226269744->1485226270272 - - - - - -1485226270512 - -div - - - -1485226265136->1485226270512 - - - - - -1485226270080 - -div - - - -1485226265136->1485226270080 - - - - - -1485226269936 - -div - - - -1485226265136->1485226269936 - - - - - -1485226270368 - -div - - - -1485226265136->1485226270368 - - - - - -1485226275936 - -div - - - -1485226265136->1485226275936 - - - - - -1485226269792 - -div - - - -1485226270512->1485226269792 - - - - - -1485226270704 - -div - - - -1485226270512->1485226270704 - - - - - -1485226270320 - -a - - - -1485226269792->1485226270320 - - - - - -1485226270032 - -span - - - -1485226270320->1485226270032 - - - - - -1485226270416 - -div - - - -1485226270032->1485226270416 - - - - - -1485226270992 - -div - - - -1485226270416->1485226270992 - - - - - -1485226270464 - -picture - - - -1485226270992->1485226270464 - - - - - -1485226271088 - -noscript - - - -1485226270464->1485226271088 - - - - - -1485226271184 - -source - - - -1485226271088->1485226271184 - - - - - -1485226271232 - -source - - - -1485226271088->1485226271232 - - - - - -1485226271328 - -img - - - -1485226271088->1485226271328 - - - - - -1485226269696 - -a - - - -1485226270704->1485226269696 - - - - - -1485226270752 - -div - - - -1485226270704->1485226270752 - - - - - -1485226271376 - -div - - - -1485226270704->1485226271376 - - - - - -1485226270800 - -h3 - - - -1485226269696->1485226270800 - - - - - -1485226271040 - -text - - - -1485226270800->1485226271040 - - - - - -1485226271664 - -text - - - -1485226270752->1485226271664 - - - - - -1485226271520 - -div - - - -1485226271376->1485226271520 - - - - - -1485226272048 - -div - - - -1485226271520->1485226272048 - - - - - -1485226271904 - -div - - - -1485226272048->1485226271904 - - - - - -1485226272144 - -p - - - -1485226271904->1485226272144 - - - - - -1485226272288 - -span - - - -1485226272144->1485226272288 - - - - - -1485226272432 - -span - - - -1485226272288->1485226272432 - - - - - -1485226272576 - -text - - - -1485226272432->1485226272576 - - - - - -1485226271712 - -div - - - -1485226270080->1485226271712 - - - - - -1485226272384 - -div - - - -1485226270080->1485226272384 - - - - - -1485226272000 - -a - - - -1485226271712->1485226272000 - - - - - -1485226272768 - -span - - - -1485226272000->1485226272768 - - - - - -1485226272720 - -div - - - -1485226272768->1485226272720 - - - - - -1485226272528 - -div - - - -1485226272720->1485226272528 - - - - - -1485226273104 - -picture - - - -1485226272528->1485226273104 - - - - - -1485226273248 - -noscript - - - -1485226273104->1485226273248 - - - - - -1485226273344 - -source - - - -1485226273248->1485226273344 - - - - - -1485226273488 - -source - - - -1485226273248->1485226273488 - - - - - -1485226273536 - -img - - - -1485226273248->1485226273536 - - - - - -1485226272096 - -a - - - -1485226272384->1485226272096 - - - - - -1485226273056 - -div - - - -1485226272384->1485226273056 - - - - - -1485226273584 - -div - - - -1485226272384->1485226273584 - - - - - -1485226272960 - -h3 - - - -1485226272096->1485226272960 - - - - - -1485226273296 - -text - - - -1485226272960->1485226273296 - - - - - -1485226273872 - -text - - - -1485226273056->1485226273872 - - - - - -1485226273968 - -div - - - -1485226273584->1485226273968 - - - - - -1485226274064 - -div - - - -1485226273968->1485226274064 - - - - - -1485226273920 - -div - - - -1485226274064->1485226273920 - - - - - -1485226274304 - -p - - - -1485226273920->1485226274304 - - - - - -1485226274448 - -span - - - -1485226274304->1485226274448 - - - - - -1485226274592 - -span - - - -1485226274448->1485226274592 - - - - - -1485226274736 - -text - - - -1485226274592->1485226274736 - - - - - -1485226270656 - -div - - - -1485226269936->1485226270656 - - - - - -1485226272240 - -div - - - -1485226269936->1485226272240 - - - - - -1485226273728 - -a - - - -1485226270656->1485226273728 - - - - - -1485226272864 - -span - - - -1485226273728->1485226272864 - - - - - -1485226274400 - -div - - - -1485226272864->1485226274400 - - - - - -1485226274688 - -div - - - -1485226274400->1485226274688 - - - - - -1485226275072 - -picture - - - -1485226274688->1485226275072 - - - - - -1485226275120 - -noscript - - - -1485226275072->1485226275120 - - - - - -1485226275312 - -source - - - -1485226275120->1485226275312 - - - - - -1485226275360 - -source - - - -1485226275120->1485226275360 - - - - - -1485226275552 - -img - - - -1485226275120->1485226275552 - - - - - -1485226274928 - -a - - - -1485226272240->1485226274928 - - - - - -1485226275264 - -div - - - -1485226272240->1485226275264 - - - - - -1485226275648 - -div - - - -1485226272240->1485226275648 - - - - - -1485226274976 - -h3 - - - -1485226274928->1485226274976 - - - - - -1485226275408 - -text - - - -1485226274976->1485226275408 - - - - - -1485226275888 - -text - - - -1485226275264->1485226275888 - - - - - -1485226275744 - -div - - - -1485226275648->1485226275744 - - - - - -1485226276272 - -div - - - -1485226275744->1485226276272 - - - - - -1485226276128 - -div - - - -1485226276272->1485226276128 - - - - - -1485226276368 - -p - - - -1485226276128->1485226276368 - - - - - -1485226276512 - -span - - - -1485226276368->1485226276512 - - - - - -1485226276656 - -span - - - -1485226276512->1485226276656 - - - - - -1485226276800 - -text - - - -1485226276656->1485226276800 - - - - - -1485226276608 - -div - - - -1485226270368->1485226276608 - - - - - -1485226277040 - -div - - - -1485226275936->1485226277040 - - - - - -1485226276320 - -div - - - -1485226275936->1485226276320 - - - - - -1485226276944 - -a - - - -1485226277040->1485226276944 - - - - - -1485226276896 - -span - - - -1485226276944->1485226276896 - - - - - -1485226277328 - -div - - - -1485226276896->1485226277328 - - - - - -1485226277376 - -div - - - -1485226277328->1485226277376 - - - - - -1485226277136 - -picture - - - -1485226277376->1485226277136 - - - - - -1485226277568 - -noscript - - - -1485226277136->1485226277568 - - - - - -1485226277616 - -source - - - -1485226277568->1485226277616 - - - - - -1485226277808 - -source - - - -1485226277568->1485226277808 - - - - - -1485226277952 - -img - - - -1485226277568->1485226277952 - - - - - -1485226277280 - -a - - - -1485226276320->1485226277280 - - - - - -1485226277472 - -div - - - -1485226276320->1485226277472 - - - - - -1485226278000 - -div - - - -1485226276320->1485226278000 - - - - - -1485226277424 - -h3 - - - -1485226277280->1485226277424 - - - - - -1485226277712 - -text - - - -1485226277424->1485226277712 - - - - - -1485226278240 - -text - - - -1485226277472->1485226278240 - - - - - -1485226278096 - -div - - - -1485226278000->1485226278096 - - - - - -1485226278624 - -div - - - -1485226278096->1485226278624 - - - - - -1485226278480 - -div - - - -1485226278624->1485226278480 - - - - - -1485226278720 - -p - - - -1485226278480->1485226278720 - - - - - -1485226278864 - -span - - - -1485226278720->1485226278864 - - - - - -1485226360992 - -span - - - -1485226278864->1485226360992 - - - - - -1485226361136 - -text - - - -1485226360992->1485226361136 - - - - - -1485226269840 - -div - - - -1485226043248->1485226269840 - - - - - -1485226276992 - -div - - - -1485226269840->1485226276992 - - - - - -1485226278288 - -div - - - -1485226276992->1485226278288 - - - - - -1485226269216 - -div - - - -1485226278288->1485226269216 - - - - - -1485226361328 - -div - - - -1485226269216->1485226361328 - - - - - -1485226361856 - -div - - - -1485226269216->1485226361856 - - - - - -1485226361424 - -div - - - -1485226269216->1485226361424 - - - - - -1485226361520 - -h2 - - - -1485226361328->1485226361520 - - - - - -1485226361808 - -a - - - -1485226361520->1485226361808 - - - - - -1485226361952 - -text - - - -1485226361808->1485226361952 - - - - - -1485226362288 - -div - - - -1485226361856->1485226362288 - - - - - -1485226362048 - -div - - - -1485226361856->1485226362048 - - - - - -1485226361280 - -div - - - -1485226361856->1485226361280 - - - - - -1485226362672 - -div - - - -1485226361856->1485226362672 - - - - - -1485226362624 - -div - - - -1485226361856->1485226362624 - - - - - -1485226361760 - -div - - - -1485226362288->1485226361760 - - - - - -1485226361712 - -div - - - -1485226362288->1485226361712 - - - - - -1485226361568 - -a - - - -1485226361760->1485226361568 - - - - - -1485226361472 - -span - - - -1485226361568->1485226361472 - - - - - -1485226362144 - -div - - - -1485226361472->1485226362144 - - - - - -1485226362336 - -div - - - -1485226362144->1485226362336 - - - - - -1485226362528 - -picture - - - -1485226362336->1485226362528 - - - - - -1485226362864 - -noscript - - - -1485226362528->1485226362864 - - - - - -1485226362816 - -source - - - -1485226362864->1485226362816 - - - - - -1485226363008 - -source - - - -1485226362864->1485226363008 - - - - - -1485226363104 - -img - - - -1485226362864->1485226363104 - - - - - -1485226361376 - -a - - - -1485226361712->1485226361376 - - - - - -1485226362720 - -div - - - -1485226361712->1485226362720 - - - - - -1485226363152 - -div - - - -1485226361712->1485226363152 - - - - - -1485226362480 - -h3 - - - -1485226361376->1485226362480 - - - - - -1485226362912 - -text - - - -1485226362480->1485226362912 - - - - - -1485226363440 - -text - - - -1485226362720->1485226363440 - - - - - -1485226363296 - -div - - - -1485226363152->1485226363296 - - - - - -1485226363824 - -div - - - -1485226363296->1485226363824 - - - - - -1485226363680 - -div - - - -1485226363824->1485226363680 - - - - - -1485226363920 - -p - - - -1485226363680->1485226363920 - - - - - -1485226364064 - -span - - - -1485226363920->1485226364064 - - - - - -1485226364208 - -span - - - -1485226364064->1485226364208 - - - - - -1485226364352 - -text - - - -1485226364208->1485226364352 - - - - - -1485226363488 - -div - - - -1485226362048->1485226363488 - - - - - -1485226364160 - -div - - - -1485226362048->1485226364160 - - - - - -1485226363776 - -a - - - -1485226363488->1485226363776 - - - - - -1485226364544 - -span - - - -1485226363776->1485226364544 - - - - - -1485226364496 - -div - - - -1485226364544->1485226364496 - - - - - -1485226364304 - -div - - - -1485226364496->1485226364304 - - - - - -1485226364880 - -picture - - - -1485226364304->1485226364880 - - - - - -1485226365024 - -noscript - - - -1485226364880->1485226365024 - - - - - -1485226365120 - -source - - - -1485226365024->1485226365120 - - - - - -1485226365264 - -source - - - -1485226365024->1485226365264 - - - - - -1485226365312 - -img - - - -1485226365024->1485226365312 - - - - - -1485226363872 - -a - - - -1485226364160->1485226363872 - - - - - -1485226364832 - -div - - - -1485226364160->1485226364832 - - - - - -1485226364640 - -div - - - -1485226364160->1485226364640 - - - - - -1485226364736 - -h3 - - - -1485226363872->1485226364736 - - - - - -1485226365072 - -text - - - -1485226364736->1485226365072 - - - - - -1485226365360 - -text - - - -1485226364832->1485226365360 - - - - - -1485226365504 - -div - - - -1485226364640->1485226365504 - - - - - -1485226365984 - -div - - - -1485226365504->1485226365984 - - - - - -1485226365648 - -div - - - -1485226365984->1485226365648 - - - - - -1485226366032 - -p - - - -1485226365648->1485226366032 - - - - - -1485226366176 - -span - - - -1485226366032->1485226366176 - - - - - -1485226366320 - -span - - - -1485226366176->1485226366320 - - - - - -1485226366464 - -text - - - -1485226366320->1485226366464 - - - - - -1485226364016 - -div - - - -1485226361280->1485226364016 - - - - - -1485226365696 - -div - - - -1485226361280->1485226365696 - - - - - -1485226366272 - -a - - - -1485226364016->1485226366272 - - - - - -1485226365888 - -span - - - -1485226366272->1485226365888 - - - - - -1485226366416 - -div - - - -1485226365888->1485226366416 - - - - - -1485226366896 - -div - - - -1485226366416->1485226366896 - - - - - -1485226366752 - -picture - - - -1485226366896->1485226366752 - - - - - -1485226366944 - -noscript - - - -1485226366752->1485226366944 - - - - - -1485226367184 - -source - - - -1485226366944->1485226367184 - - - - - -1485226367232 - -source - - - -1485226366944->1485226367232 - - - - - -1485226367376 - -img - - - -1485226366944->1485226367376 - - - - - -1485226365216 - -a - - - -1485226365696->1485226365216 - - - - - -1485226366848 - -div - - - -1485226365696->1485226366848 - - - - - -1485226367424 - -div - - - -1485226365696->1485226367424 - - - - - -1485226366800 - -h3 - - - -1485226365216->1485226366800 - - - - - -1485226367040 - -text - - - -1485226366800->1485226367040 - - - - - -1485226367664 - -text - - - -1485226366848->1485226367664 - - - - - -1485226367520 - -div - - - -1485226367424->1485226367520 - - - - - -1485226368048 - -div - - - -1485226367520->1485226368048 - - - - - -1485226367904 - -div - - - -1485226368048->1485226367904 - - - - - -1485226368144 - -p - - - -1485226367904->1485226368144 - - - - - -1485226368288 - -span - - - -1485226368144->1485226368288 - - - - - -1485226368432 - -span - - - -1485226368288->1485226368432 - - - - - -1485226368576 - -text - - - -1485226368432->1485226368576 - - - - - -1485226367712 - -div - - - -1485226362672->1485226367712 - - - - - -1485226368384 - -div - - - -1485226362624->1485226368384 - - - - - -1485226368240 - -div - - - -1485226362624->1485226368240 - - - - - -1485226369104 - -a - - - -1485226368384->1485226369104 - - - - - -1485226368816 - -span - - - -1485226369104->1485226368816 - - - - - -1485226368960 - -div - - - -1485226368816->1485226368960 - - - - - -1485226369344 - -div - - - -1485226368960->1485226369344 - - - - - -1485226369056 - -picture - - - -1485226369344->1485226369056 - - - - - -1485226369200 - -noscript - - - -1485226369056->1485226369200 - - - - - -1485226369584 - -source - - - -1485226369200->1485226369584 - - - - - -1485226369440 - -source - - - -1485226369200->1485226369440 - - - - - -1485226369728 - -img - - - -1485226369200->1485226369728 - - - - - -1485226368912 - -a - - - -1485226368240->1485226368912 - - - - - -1485226369152 - -div - - - -1485226368240->1485226369152 - - - - - -1485226369776 - -div - - - -1485226368240->1485226369776 - - - - - -1485226369296 - -h3 - - - -1485226368912->1485226369296 - - - - - -1485226369488 - -text - - - -1485226369296->1485226369488 - - - - - -1485226370016 - -text - - - -1485226369152->1485226370016 - - - - - -1485226369872 - -div - - - -1485226369776->1485226369872 - - - - - -1485226370400 - -div - - - -1485226369872->1485226370400 - - - - - -1485226370256 - -div - - - -1485226370400->1485226370256 - - - - - -1485226370496 - -p - - - -1485226370256->1485226370496 - - - - - -1485226370640 - -span - - - -1485226370496->1485226370640 - - - - - -1485226370784 - -span - - - -1485226370640->1485226370784 - - - - - -1485226370928 - -text - - - -1485226370784->1485226370928 - - - - - -1485226278576 - -div - - - -1485226167360->1485226278576 - - - - - -1485226269552 - -div - - - -1485226278576->1485226269552 - - - - - -1485226369008 - -div - - - -1485226269552->1485226369008 - - - - - -1485226370064 - -div - - - -1485226369008->1485226370064 - - - - - -1485226371168 - -div - - - -1485226370064->1485226371168 - - - - - -1485226361232 - -div - - - -1485226370064->1485226361232 - - - - - -1485226372080 - -div - - - -1485226370064->1485226372080 - - - - - -1485226371696 - -h2 - - - -1485226371168->1485226371696 - - - - - -1485226371360 - -a - - - -1485226371696->1485226371360 - - - - - -1485226371504 - -text - - - -1485226371360->1485226371504 - - - - - -1485226371216 - -div - - - -1485226361232->1485226371216 - - - - - -1485226371744 - -div - - - -1485226361232->1485226371744 - - - - - -1485226371984 - -div - - - -1485226361232->1485226371984 - - - - - -1485226372128 - -div - - - -1485226361232->1485226372128 - - - - - -1485226371936 - -div - - - -1485226361232->1485226371936 - - - - - -1485226371888 - -div - - - -1485226371216->1485226371888 - - - - - -1485226372512 - -div - - - -1485226371216->1485226372512 - - - - - -1485226371120 - -a - - - -1485226371888->1485226371120 - - - - - -1485226371408 - -span - - - -1485226371120->1485226371408 - - - - - -1485226371552 - -div - - - -1485226371408->1485226371552 - - - - - -1485226371600 - -div - - - -1485226371552->1485226371600 - - - - - -1485226372368 - -picture - - - -1485226371600->1485226372368 - - - - - -1485226372704 - -noscript - - - -1485226372368->1485226372704 - - - - - -1485226372752 - -source - - - -1485226372704->1485226372752 - - - - - -1485226372800 - -source - - - -1485226372704->1485226372800 - - - - - -1485226372848 - -img - - - -1485226372704->1485226372848 - - - - - -1485226371840 - -a - - - -1485226372512->1485226371840 - - - - - -1485226372416 - -div - - - -1485226372512->1485226372416 - - - - - -1485226372896 - -div - - - -1485226372512->1485226372896 - - - - - -1485226372176 - -h3 - - - -1485226371840->1485226372176 - - - - - -1485226372608 - -text - - - -1485226372176->1485226372608 - - - - - -1485226373184 - -text - - - -1485226372416->1485226373184 - - - - - -1485226373040 - -div - - - -1485226372896->1485226373040 - - - - - -1485226373568 - -div - - - -1485226373040->1485226373568 - - - - - -1485226373424 - -div - - - -1485226373568->1485226373424 - - - - - -1485226373664 - -p - - - -1485226373424->1485226373664 - - - - - -1485226373808 - -span - - - -1485226373664->1485226373808 - - - - - -1485226373952 - -span - - - -1485226373808->1485226373952 - - - - - -1485226374096 - -text - - - -1485226373952->1485226374096 - - - - - -1485226373232 - -div - - - -1485226371744->1485226373232 - - - - - -1485226373904 - -div - - - -1485226371744->1485226373904 - - - - - -1485226373520 - -a - - - -1485226373232->1485226373520 - - - - - -1485226374288 - -span - - - -1485226373520->1485226374288 - - - - - -1485226374240 - -div - - - -1485226374288->1485226374240 - - - - - -1485226374048 - -div - - - -1485226374240->1485226374048 - - - - - -1485226374624 - -picture - - - -1485226374048->1485226374624 - - - - - -1485226374768 - -noscript - - - -1485226374624->1485226374768 - - - - - -1485226374864 - -source - - - -1485226374768->1485226374864 - - - - - -1485226375008 - -source - - - -1485226374768->1485226375008 - - - - - -1485226375056 - -img - - - -1485226374768->1485226375056 - - - - - -1485226373616 - -a - - - -1485226373904->1485226373616 - - - - - -1485226374576 - -div - - - -1485226373904->1485226374576 - - - - - -1485226375104 - -div - - - -1485226373904->1485226375104 - - - - - -1485226374480 - -h3 - - - -1485226373616->1485226374480 - - - - - -1485226374816 - -text - - - -1485226374480->1485226374816 - - - - - -1485226375392 - -text - - - -1485226374576->1485226375392 - - - - - -1485226375344 - -div - - - -1485226375104->1485226375344 - - - - - -1485226375728 - -div - - - -1485226375344->1485226375728 - - - - - -1485226375440 - -div - - - -1485226375728->1485226375440 - - - - - -1485226375824 - -p - - - -1485226375440->1485226375824 - - - - - -1485226375968 - -span - - - -1485226375824->1485226375968 - - - - - -1485226376112 - -span - - - -1485226375968->1485226376112 - - - - - -1485226376256 - -text - - - -1485226376112->1485226376256 - - - - - -1485226373760 - -div - - - -1485226371984->1485226373760 - - - - - -1485226375680 - -div - - - -1485226371984->1485226375680 - - - - - -1485226376064 - -a - - - -1485226373760->1485226376064 - - - - - -1485226375248 - -span - - - -1485226376064->1485226375248 - - - - - -1485226376208 - -div - - - -1485226375248->1485226376208 - - - - - -1485226376688 - -div - - - -1485226376208->1485226376688 - - - - - -1485226376544 - -picture - - - -1485226376688->1485226376544 - - - - - -1485226376736 - -noscript - - - -1485226376544->1485226376736 - - - - - -1485226376976 - -source - - - -1485226376736->1485226376976 - - - - - -1485226377024 - -source - - - -1485226376736->1485226377024 - - - - - -1485226377168 - -img - - - -1485226376736->1485226377168 - - - - - -1485226374384 - -a - - - -1485226375680->1485226374384 - - - - - -1485226376640 - -div - - - -1485226375680->1485226376640 - - - - - -1485226377120 - -div - - - -1485226375680->1485226377120 - - - - - -1485226376592 - -h3 - - - -1485226374384->1485226376592 - - - - - -1485226376832 - -text - - - -1485226376592->1485226376832 - - - - - -1485226524976 - -text - - - -1485226376640->1485226524976 - - - - - -1485226524832 - -div - - - -1485226377120->1485226524832 - - - - - -1485226525360 - -div - - - -1485226524832->1485226525360 - - - - - -1485226525216 - -div - - - -1485226525360->1485226525216 - - - - - -1485226525456 - -p - - - -1485226525216->1485226525456 - - - - - -1485226525600 - -span - - - -1485226525456->1485226525600 - - - - - -1485226525744 - -span - - - -1485226525600->1485226525744 - - - - - -1485226525888 - -text - - - -1485226525744->1485226525888 - - - - - -1485226525024 - -div - - - -1485226372128->1485226525024 - - - - - -1485226525696 - -div - - - -1485226371936->1485226525696 - - - - - -1485226525552 - -div - - - -1485226371936->1485226525552 - - - - - -1485226526368 - -a - - - -1485226525696->1485226526368 - - - - - -1485226526032 - -span - - - -1485226526368->1485226526032 - - - - - -1485226526224 - -div - - - -1485226526032->1485226526224 - - - - - -1485226526608 - -div - - - -1485226526224->1485226526608 - - - - - -1485226526320 - -picture - - - -1485226526608->1485226526320 - - - - - -1485226526464 - -noscript - - - -1485226526320->1485226526464 - - - - - -1485226526848 - -source - - - -1485226526464->1485226526848 - - - - - -1485226526704 - -source - - - -1485226526464->1485226526704 - - - - - -1485226526992 - -img - - - -1485226526464->1485226526992 - - - - - -1485226526176 - -a - - - -1485226525552->1485226526176 - - - - - -1485226526416 - -div - - - -1485226525552->1485226526416 - - - - - -1485226527040 - -div - - - -1485226525552->1485226527040 - - - - - -1485226526560 - -h3 - - - -1485226526176->1485226526560 - - - - - -1485226526752 - -text - - - -1485226526560->1485226526752 - - - - - -1485226527280 - -text - - - -1485226526416->1485226527280 - - - - - -1485226527136 - -div - - - -1485226527040->1485226527136 - - - - - -1485226527664 - -div - - - -1485226527136->1485226527664 - - - - - -1485226527520 - -div - - - -1485226527664->1485226527520 - - - - - -1485226527760 - -p - - - -1485226527520->1485226527760 - - - - - -1485226527904 - -span - - - -1485226527760->1485226527904 - - - - - -1485226528048 - -span - - - -1485226527904->1485226528048 - - - - - -1485226528192 - -text - - - -1485226528048->1485226528192 - - - - - -1485226366656 - -div - - - -1485226177824->1485226366656 - - - - - -1485226371264 - -div - - - -1485226366656->1485226371264 - - - - - -1485226370592 - -div - - - -1485226371264->1485226370592 - - - - - -1485226527616 - -div - - - -1485226370592->1485226527616 - - - - - -1485226528672 - -div - - - -1485226527616->1485226528672 - - - - - -1485226528720 - -div - - - -1485226527616->1485226528720 - - - - - -1485226528864 - -div - - - -1485226527616->1485226528864 - - - - - -1485226529104 - -h2 - - - -1485226528672->1485226529104 - - - - - -1485226528528 - -a - - - -1485226529104->1485226528528 - - - - - -1485226529152 - -text - - - -1485226528528->1485226529152 - - - - - -1485226528624 - -div - - - -1485226528720->1485226528624 - - - - - -1485226529344 - -div - - - -1485226528720->1485226529344 - - - - - -1485226529536 - -div - - - -1485226528720->1485226529536 - - - - - -1485226528912 - -div - - - -1485226528720->1485226528912 - - - - - -1485226530544 - -div - - - -1485226528720->1485226530544 - - - - - -1485226529296 - -div - - - -1485226528624->1485226529296 - - - - - -1485226529200 - -div - - - -1485226528624->1485226529200 - - - - - -1485226528384 - -a - - - -1485226529296->1485226528384 - - - - - -1485226528768 - -span - - - -1485226528384->1485226528768 - - - - - -1485226528432 - -div - - - -1485226528768->1485226528432 - - - - - -1485226529248 - -div - - - -1485226528432->1485226529248 - - - - - -1485226529920 - -picture - - - -1485226529248->1485226529920 - - - - - -1485226529968 - -noscript - - - -1485226529920->1485226529968 - - - - - -1485226530016 - -source - - - -1485226529968->1485226530016 - - - - - -1485226530064 - -source - - - -1485226529968->1485226530064 - - - - - -1485226530112 - -img - - - -1485226529968->1485226530112 - - - - - -1485226528000 - -a - - - -1485226529200->1485226528000 - - - - - -1485226529680 - -div - - - -1485226529200->1485226529680 - - - - - -1485226529056 - -div - - - -1485226529200->1485226529056 - - - - - -1485226529392 - -h3 - - - -1485226528000->1485226529392 - - - - - -1485226529776 - -text - - - -1485226529392->1485226529776 - - - - - -1485226530160 - -text - - - -1485226529680->1485226530160 - - - - - -1485226530592 - -div - - - -1485226529056->1485226530592 - - - - - -1485226530448 - -div - - - -1485226530592->1485226530448 - - - - - -1485226530688 - -div - - - -1485226530448->1485226530688 - - - - - -1485226530832 - -p - - - -1485226530688->1485226530832 - - - - - -1485226530976 - -span - - - -1485226530832->1485226530976 - - - - - -1485226531120 - -span - - - -1485226530976->1485226531120 - - - - - -1485226531264 - -text - - - -1485226531120->1485226531264 - - - - - -1485226530496 - -div - - - -1485226529344->1485226530496 - - - - - -1485226531072 - -div - - - -1485226529344->1485226531072 - - - - - -1485226530736 - -a - - - -1485226530496->1485226530736 - - - - - -1485226531456 - -span - - - -1485226530736->1485226531456 - - - - - -1485226531408 - -div - - - -1485226531456->1485226531408 - - - - - -1485226531216 - -div - - - -1485226531408->1485226531216 - - - - - -1485226531792 - -picture - - - -1485226531216->1485226531792 - - - - - -1485226531936 - -noscript - - - -1485226531792->1485226531936 - - - - - -1485226532032 - -source - - - -1485226531936->1485226532032 - - - - - -1485226532176 - -source - - - -1485226531936->1485226532176 - - - - - -1485226532224 - -img - - - -1485226531936->1485226532224 - - - - - -1485226530640 - -a - - - -1485226531072->1485226530640 - - - - - -1485226531744 - -div - - - -1485226531072->1485226531744 - - - - - -1485226532272 - -div - - - -1485226531072->1485226532272 - - - - - -1485226531648 - -h3 - - - -1485226530640->1485226531648 - - - - - -1485226531984 - -text - - - -1485226531648->1485226531984 - - - - - -1485226532560 - -text - - - -1485226531744->1485226532560 - - - - - -1485226532416 - -div - - - -1485226532272->1485226532416 - - - - - -1485226532944 - -div - - - -1485226532416->1485226532944 - - - - - -1485226532800 - -div - - - -1485226532944->1485226532800 - - - - - -1485226533040 - -p - - - -1485226532800->1485226533040 - - - - - -1485226533184 - -span - - - -1485226533040->1485226533184 - - - - - -1485226533328 - -span - - - -1485226533184->1485226533328 - - - - - -1485226533472 - -text - - - -1485226533328->1485226533472 - - - - - -1485226530928 - -div - - - -1485226529536->1485226530928 - - - - - -1485226532608 - -div - - - -1485226529536->1485226532608 - - - - - -1485226533280 - -a - - - -1485226530928->1485226533280 - - - - - -1485226532896 - -span - - - -1485226533280->1485226532896 - - - - - -1485226533424 - -div - - - -1485226532896->1485226533424 - - - - - -1485226533904 - -div - - - -1485226533424->1485226533904 - - - - - -1485226533760 - -picture - - - -1485226533904->1485226533760 - - - - - -1485226533952 - -noscript - - - -1485226533760->1485226533952 - - - - - -1485226534192 - -source - - - -1485226533952->1485226534192 - - - - - -1485226534240 - -source - - - -1485226533952->1485226534240 - - - - - -1485226534384 - -img - - - -1485226533952->1485226534384 - - - - - -1485226531552 - -a - - - -1485226532608->1485226531552 - - - - - -1485226533856 - -div - - - -1485226532608->1485226533856 - - - - - -1485226534432 - -div - - - -1485226532608->1485226534432 - - - - - -1485226533808 - -h3 - - - -1485226531552->1485226533808 - - - - - -1485226534048 - -text - - - -1485226533808->1485226534048 - - - - - -1485226534672 - -text - - - -1485226533856->1485226534672 - - - - - -1485226534768 - -div - - - -1485226534432->1485226534768 - - - - - -1485226534864 - -div - - - -1485226534768->1485226534864 - - - - - -1485226534720 - -div - - - -1485226534864->1485226534720 - - - - - -1485226535104 - -p - - - -1485226534720->1485226535104 - - - - - -1485226535248 - -span - - - -1485226535104->1485226535248 - - - - - -1485226535392 - -span - - - -1485226535248->1485226535392 - - - - - -1485226535536 - -text - - - -1485226535392->1485226535536 - - - - - -1485226533664 - -div - - - -1485226528912->1485226533664 - - - - - -1485226534528 - -div - - - -1485226530544->1485226534528 - - - - - -1485226534960 - -div - - - -1485226530544->1485226534960 - - - - - -1485226535872 - -a - - - -1485226534528->1485226535872 - - - - - -1485226536064 - -span - - - -1485226535872->1485226536064 - - - - - -1485226536016 - -div - - - -1485226536064->1485226536016 - - - - - -1485226536208 - -div - - - -1485226536016->1485226536208 - - - - - -1485226535824 - -picture - - - -1485226536208->1485226535824 - - - - - -1485226536304 - -noscript - - - -1485226535824->1485226536304 - - - - - -1485226536496 - -source - - - -1485226536304->1485226536496 - - - - - -1485226536544 - -source - - - -1485226536304->1485226536544 - - - - - -1485226536640 - -img - - - -1485226536304->1485226536640 - - - - - -1485226535056 - -a - - - -1485226534960->1485226535056 - - - - - -1485226535920 - -div - - - -1485226534960->1485226535920 - - - - - -1485226536688 - -div - - - -1485226534960->1485226536688 - - - - - -1485226536112 - -h3 - - - -1485226535056->1485226536112 - - - - - -1485226536352 - -text - - - -1485226536112->1485226536352 - - - - - -1485226536928 - -text - - - -1485226535920->1485226536928 - - - - - -1485226536784 - -div - - - -1485226536688->1485226536784 - - - - - -1485226537312 - -div - - - -1485226536784->1485226537312 - - - - - -1485226537168 - -div - - - -1485226537312->1485226537168 - - - - - -1485226537408 - -p - - - -1485226537168->1485226537408 - - - - - -1485226537552 - -span - - - -1485226537408->1485226537552 - - - - - -1485226537696 - -span - - - -1485226537552->1485226537696 - - - - - -1485226537840 - -text - - - -1485226537696->1485226537840 - - - - - -1485226527328 - -div - - - -1485226178160->1485226527328 - - - - - -1485226535680 - -div - - - -1485226527328->1485226535680 - - - - - -1485226536976 - -section - - - -1485226535680->1485226536976 - - - - - -1485226537360 - -section - - - -1485226535680->1485226537360 - - - - - -1485226537792 - -section - - - -1485226535680->1485226537792 - - - - - -1485226663104 - -section - - - -1485226535680->1485226663104 - - - - - -1485226539136 - -section - - - -1485226535680->1485226539136 - - - - - -1485226538080 - -div - - - -1485226536976->1485226538080 - - - - - -1485226538608 - -div - - - -1485226536976->1485226538608 - - - - - -1485226528336 - -div - - - -1485226536976->1485226528336 - - - - - -1485226538992 - -div - - - -1485226538080->1485226538992 - - - - - -1485226538560 - -h2 - - - -1485226538992->1485226538560 - - - - - -1485226538272 - -text - - - -1485226538560->1485226538272 - - - - - -1485226538944 - -div - - - -1485226538608->1485226538944 - - - - - -1485226539424 - -div - - - -1485226538608->1485226539424 - - - - - -1485226538656 - -div - - - -1485226538944->1485226538656 - - - - - -1485226538224 - -div - - - -1485226538656->1485226538224 - - - - - -1485226538800 - -div - - - -1485226538224->1485226538800 - - - - - -1485226538512 - -div - - - -1485226538224->1485226538512 - - - - - -1485226538368 - -div - - - -1485226538224->1485226538368 - - - - - -1485226538464 - -div - - - -1485226538224->1485226538464 - - - - - -1485226539280 - -div - - - -1485226538224->1485226539280 - - - - - -1485226538320 - -div - - - -1485226538800->1485226538320 - - - - - -1485226538032 - -div - - - -1485226538800->1485226538032 - - - - - -1485226538752 - -a - - - -1485226538320->1485226538752 - - - - - -1485226538848 - -span - - - -1485226538752->1485226538848 - - - - - -1485226539664 - -div - - - -1485226538848->1485226539664 - - - - - -1485226539616 - -div - - - -1485226539664->1485226539616 - - - - - -1485226539520 - -picture - - - -1485226539616->1485226539520 - - - - - -1485226539808 - -noscript - - - -1485226539520->1485226539808 - - - - - -1485226539904 - -source - - - -1485226539808->1485226539904 - - - - - -1485226540000 - -source - - - -1485226539808->1485226540000 - - - - - -1485226540096 - -img - - - -1485226539808->1485226540096 - - - - - -1485226538128 - -div - - - -1485226538032->1485226538128 - - - - - -1485226539472 - -a - - - -1485226538032->1485226539472 - - - - - -1485226540144 - -div - - - -1485226538032->1485226540144 - - - - - -1485226539184 - -div - - - -1485226538128->1485226539184 - - - - - -1485226539856 - -span - - - -1485226539184->1485226539856 - - - - - -1485226540384 - -text - - - -1485226539856->1485226540384 - - - - - -1485226540528 - -h3 - - - -1485226539472->1485226540528 - - - - - -1485226540336 - -text - - - -1485226540528->1485226540336 - - - - - -1485226540624 - -div - - - -1485226540144->1485226540624 - - - - - -1485226540720 - -div - - - -1485226540624->1485226540720 - - - - - -1485226540816 - -div - - - -1485226540720->1485226540816 - - - - - -1485226655808 - -p - - - -1485226540816->1485226655808 - - - - - -1485226655952 - -span - - - -1485226655808->1485226655952 - - - - - -1485226656096 - -span - - - -1485226655952->1485226656096 - - - - - -1485226656240 - -text - - - -1485226656096->1485226656240 - - - - - -1485226540912 - -div - - - -1485226538512->1485226540912 - - - - - -1485226540864 - -div - - - -1485226538512->1485226540864 - - - - - -1485226540960 - -a - - - -1485226540912->1485226540960 - - - - - -1485226656432 - -span - - - -1485226540960->1485226656432 - - - - - -1485226656384 - -div - - - -1485226656432->1485226656384 - - - - - -1485226656192 - -div - - - -1485226656384->1485226656192 - - - - - -1485226656624 - -picture - - - -1485226656192->1485226656624 - - - - - -1485226656912 - -noscript - - - -1485226656624->1485226656912 - - - - - -1485226657008 - -source - - - -1485226656912->1485226657008 - - - - - -1485226657152 - -source - - - -1485226656912->1485226657152 - - - - - -1485226657200 - -img - - - -1485226656912->1485226657200 - - - - - -1485226655904 - -div - - - -1485226540864->1485226655904 - - - - - -1485226656720 - -a - - - -1485226540864->1485226656720 - - - - - -1485226657248 - -div - - - -1485226540864->1485226657248 - - - - - -1485226656768 - -div - - - -1485226655904->1485226656768 - - - - - -1485226656960 - -span - - - -1485226656768->1485226656960 - - - - - -1485226657488 - -text - - - -1485226656960->1485226657488 - - - - - -1485226657632 - -h3 - - - -1485226656720->1485226657632 - - - - - -1485226657440 - -text - - - -1485226657632->1485226657440 - - - - - -1485226657728 - -div - - - -1485226657248->1485226657728 - - - - - -1485226657824 - -div - - - -1485226657728->1485226657824 - - - - - -1485226657920 - -div - - - -1485226657824->1485226657920 - - - - - -1485226658160 - -p - - - -1485226657920->1485226658160 - - - - - -1485226658304 - -span - - - -1485226658160->1485226658304 - - - - - -1485226658448 - -span - - - -1485226658304->1485226658448 - - - - - -1485226658592 - -text - - - -1485226658448->1485226658592 - - - - - -1485226656048 - -div - - - -1485226538368->1485226656048 - - - - - -1485226658064 - -div - - - -1485226538368->1485226658064 - - - - - -1485226657968 - -a - - - -1485226656048->1485226657968 - - - - - -1485226658256 - -span - - - -1485226657968->1485226658256 - - - - - -1485226658544 - -div - - - -1485226658256->1485226658544 - - - - - -1485226658928 - -div - - - -1485226658544->1485226658928 - - - - - -1485226659168 - -picture - - - -1485226658928->1485226659168 - - - - - -1485226658976 - -noscript - - - -1485226659168->1485226658976 - - - - - -1485226659312 - -source - - - -1485226658976->1485226659312 - - - - - -1485226659408 - -source - - - -1485226658976->1485226659408 - - - - - -1485226659504 - -img - - - -1485226658976->1485226659504 - - - - - -1485226658400 - -div - - - -1485226658064->1485226658400 - - - - - -1485226659072 - -a - - - -1485226658064->1485226659072 - - - - - -1485226659120 - -div - - - -1485226658400->1485226659120 - - - - - -1485226659264 - -span - - - -1485226659120->1485226659264 - - - - - -1485226659792 - -text - - - -1485226659264->1485226659792 - - - - - -1485226659936 - -h3 - - - -1485226659072->1485226659936 - - - - - -1485226659744 - -text - - - -1485226659936->1485226659744 - - - - - -1485226658016 - -div - - - -1485226538464->1485226658016 - - - - - -1485226660128 - -div - - - -1485226658016->1485226660128 - - - - - -1485226660416 - -div - - - -1485226539280->1485226660416 - - - - - -1485226660272 - -div - - - -1485226539280->1485226660272 - - - - - -1485226660320 - -a - - - -1485226660416->1485226660320 - - - - - -1485226660464 - -span - - - -1485226660320->1485226660464 - - - - - -1485226660224 - -div - - - -1485226660464->1485226660224 - - - - - -1485226660656 - -div - - - -1485226660224->1485226660656 - - - - - -1485226660752 - -picture - - - -1485226660656->1485226660752 - - - - - -1485226660992 - -noscript - - - -1485226660752->1485226660992 - - - - - -1485226660944 - -source - - - -1485226660992->1485226660944 - - - - - -1485226661184 - -source - - - -1485226660992->1485226661184 - - - - - -1485226661280 - -img - - - -1485226660992->1485226661280 - - - - - -1485226660560 - -div - - - -1485226660272->1485226660560 - - - - - -1485226660512 - -a - - - -1485226660272->1485226660512 - - - - - -1485226661328 - -div - - - -1485226660272->1485226661328 - - - - - -1485226660896 - -div - - - -1485226660560->1485226660896 - - - - - -1485226661088 - -span - - - -1485226660896->1485226661088 - - - - - -1485226661568 - -text - - - -1485226661088->1485226661568 - - - - - -1485226661712 - -h3 - - - -1485226660512->1485226661712 - - - - - -1485226661520 - -text - - - -1485226661712->1485226661520 - - - - - -1485226661904 - -div - - - -1485226661328->1485226661904 - - - - - -1485226661952 - -div - - - -1485226661904->1485226661952 - - - - - -1485226661808 - -div - - - -1485226661952->1485226661808 - - - - - -1485226662192 - -p - - - -1485226661808->1485226662192 - - - - - -1485226662336 - -span - - - -1485226662192->1485226662336 - - - - - -1485226662480 - -span - - - -1485226662336->1485226662480 - - - - - -1485226662624 - -text - - - -1485226662480->1485226662624 - - - - - -1485226539040 - -aside - - - -1485226539424->1485226539040 - - - - - -1485226660032 - -div - - - -1485226539040->1485226660032 - - - - - -1485226656480 - -div - - - -1485226660032->1485226656480 - - - - - -1485226662096 - -div - - - -1485226660032->1485226662096 - - - - - -1485226662576 - -div - - - -1485226656480->1485226662576 - - - - - -1485226662288 - -div - - - -1485226656480->1485226662288 - - - - - -1485226663056 - -div - - - -1485226662576->1485226663056 - - - - - -1485226538416 - -div - - - -1485226528336->1485226538416 - - - - - -1485226528576 - -div - - - -1485226537360->1485226528576 - - - - - -1485226663296 - -div - - - -1485226537360->1485226663296 - - - - - -1485226662960 - -div - - - -1485226528576->1485226662960 - - - - - -1485226662912 - -div - - - -1485226528576->1485226662912 - - - - - -1485226663248 - -div - - - -1485226662960->1485226663248 - - - - - -1485226663008 - -div - - - -1485226663248->1485226663008 - - - - - -1485226663488 - -div - - - -1485226663008->1485226663488 - - - - - -1485226663776 - -div - - - -1485226663008->1485226663776 - - - - - -1485226663200 - -div - - - -1485226663008->1485226663200 - - - - - -1485226665696 - -div - - - -1485226663008->1485226665696 - - - - - -1485226663968 - -div - - - -1485226663008->1485226663968 - - - - - -1485226663392 - -div - - - -1485226663488->1485226663392 - - - - - -1485226663440 - -div - - - -1485226663488->1485226663440 - - - - - -1485226663632 - -a - - - -1485226663392->1485226663632 - - - - - -1485226663728 - -span - - - -1485226663632->1485226663728 - - - - - -1485226663536 - -div - - - -1485226663728->1485226663536 - - - - - -1485226663584 - -div - - - -1485226663536->1485226663584 - - - - - -1485226664256 - -picture - - - -1485226663584->1485226664256 - - - - - -1485226664304 - -noscript - - - -1485226664256->1485226664304 - - - - - -1485226664448 - -source - - - -1485226664304->1485226664448 - - - - - -1485226664496 - -source - - - -1485226664304->1485226664496 - - - - - -1485226664640 - -img - - - -1485226664304->1485226664640 - - - - - -1485226663920 - -div - - - -1485226663440->1485226663920 - - - - - -1485226664160 - -a - - - -1485226663440->1485226664160 - - - - - -1485226664688 - -div - - - -1485226663440->1485226664688 - - - - - -1485226664016 - -div - - - -1485226663920->1485226664016 - - - - - -1485226664352 - -span - - - -1485226664016->1485226664352 - - - - - -1485226664928 - -text - - - -1485226664352->1485226664928 - - - - - -1485226665072 - -h3 - - - -1485226664160->1485226665072 - - - - - -1485226664880 - -text - - - -1485226665072->1485226664880 - - - - - -1485226665168 - -div - - - -1485226664688->1485226665168 - - - - - -1485226665264 - -div - - - -1485226665168->1485226665264 - - - - - -1485226665360 - -div - - - -1485226665264->1485226665360 - - - - - -1485226665600 - -p - - - -1485226665360->1485226665600 - - - - - -1485226665744 - -span - - - -1485226665600->1485226665744 - - - - - -1485226665888 - -span - - - -1485226665744->1485226665888 - - - - - -1485226666032 - -text - - - -1485226665888->1485226666032 - - - - - -1485226663824 - -div - - - -1485226663776->1485226663824 - - - - - -1485226665840 - -div - - - -1485226663776->1485226665840 - - - - - -1485226665408 - -a - - - -1485226663824->1485226665408 - - - - - -1485226665504 - -span - - - -1485226665408->1485226665504 - - - - - -1485226666320 - -div - - - -1485226665504->1485226666320 - - - - - -1485226666176 - -div - - - -1485226666320->1485226666176 - - - - - -1485226666560 - -picture - - - -1485226666176->1485226666560 - - - - - -1485226666512 - -noscript - - - -1485226666560->1485226666512 - - - - - -1485226666752 - -source - - - -1485226666512->1485226666752 - - - - - -1485226666848 - -source - - - -1485226666512->1485226666848 - - - - - -1485226666896 - -img - - - -1485226666512->1485226666896 - - - - - -1485226665456 - -div - - - -1485226665840->1485226665456 - - - - - -1485226666608 - -a - - - -1485226665840->1485226666608 - - - - - -1485226666992 - -div - - - -1485226665840->1485226666992 - - - - - -1485226666464 - -div - - - -1485226665456->1485226666464 - - - - - -1485226666656 - -span - - - -1485226666464->1485226666656 - - - - - -1485226667232 - -text - - - -1485226666656->1485226667232 - - - - - -1485226667376 - -h3 - - - -1485226666608->1485226667376 - - - - - -1485226667184 - -text - - - -1485226667376->1485226667184 - - - - - -1485226667472 - -div - - - -1485226666992->1485226667472 - - - - - -1485226667568 - -div - - - -1485226667472->1485226667568 - - - - - -1485226667664 - -div - - - -1485226667568->1485226667664 - - - - - -1485226667904 - -p - - - -1485226667664->1485226667904 - - - - - -1485226668048 - -span - - - -1485226667904->1485226668048 - - - - - -1485226668192 - -span - - - -1485226668048->1485226668192 - - - - - -1485226668336 - -text - - - -1485226668192->1485226668336 - - - - - -1485226667808 - -div - - - -1485226663200->1485226667808 - - - - - -1485226667712 - -div - - - -1485226663200->1485226667712 - - - - - -1485226667760 - -a - - - -1485226667808->1485226667760 - - - - - -1485226668432 - -span - - - -1485226667760->1485226668432 - - - - - -1485226668624 - -div - - - -1485226668432->1485226668624 - - - - - -1485226668576 - -div - - - -1485226668624->1485226668576 - - - - - -1485226668720 - -picture - - - -1485226668576->1485226668720 - - - - - -1485226668912 - -noscript - - - -1485226668720->1485226668912 - - - - - -1485226669056 - -source - - - -1485226668912->1485226669056 - - - - - -1485226669152 - -source - - - -1485226668912->1485226669152 - - - - - -1485226669248 - -img - - - -1485226668912->1485226669248 - - - - - -1485226668000 - -div - - - -1485226667712->1485226668000 - - - - - -1485226668672 - -a - - - -1485226667712->1485226668672 - - - - - -1485226669296 - -div - - - -1485226667712->1485226669296 - - - - - -1485226668864 - -div - - - -1485226668000->1485226668864 - - - - - -1485226669008 - -span - - - -1485226668864->1485226669008 - - - - - -1485226669536 - -text - - - -1485226669008->1485226669536 - - - - - -1485226669680 - -h3 - - - -1485226668672->1485226669680 - - - - - -1485226669488 - -text - - - -1485226669680->1485226669488 - - - - - -1485226669776 - -div - - - -1485226669296->1485226669776 - - - - - -1485226669872 - -div - - - -1485226669776->1485226669872 - - - - - -1485226669968 - -div - - - -1485226669872->1485226669968 - - - - - -1485226670208 - -p - - - -1485226669968->1485226670208 - - - - - -1485226670352 - -span - - - -1485226670208->1485226670352 - - - - - -1485226670496 - -span - - - -1485226670352->1485226670496 - - - - - -1485226670640 - -text - - - -1485226670496->1485226670640 - - - - - -1485226668144 - -div - - - -1485226665696->1485226668144 - - - - - -1485226670016 - -div - - - -1485226668144->1485226670016 - - - - - -1485226670304 - -div - - - -1485226663968->1485226670304 - - - - - -1485226670784 - -div - - - -1485226663968->1485226670784 - - - - - -1485226670880 - -a - - - -1485226670304->1485226670880 - - - - - -1485226670832 - -span - - - -1485226670880->1485226670832 - - - - - -1485226671168 - -div - - - -1485226670832->1485226671168 - - - - - -1485226671120 - -div - - - -1485226671168->1485226671120 - - - - - -1485226671360 - -picture - - - -1485226671120->1485226671360 - - - - - -1485226671264 - -noscript - - - -1485226671360->1485226671264 - - - - - -1485226671600 - -source - - - -1485226671264->1485226671600 - - - - - -1485226671696 - -source - - - -1485226671264->1485226671696 - - - - - -1485226671744 - -img - - - -1485226671264->1485226671744 - - - - - -1485226670928 - -div - - - -1485226670784->1485226670928 - - - - - -1485226671312 - -a - - - -1485226670784->1485226671312 - - - - - -1485226671840 - -div - - - -1485226670784->1485226671840 - - - - - -1485226671456 - -div - - - -1485226670928->1485226671456 - - - - - -1485226671552 - -span - - - -1485226671456->1485226671552 - - - - - -1485226672080 - -text - - - -1485226671552->1485226672080 - - - - - -1485226671792 - -h3 - - - -1485226671312->1485226671792 - - - - - -1485226754208 - -text - - - -1485226671792->1485226754208 - - - - - -1485226754304 - -div - - - -1485226671840->1485226754304 - - - - - -1485226754400 - -div - - - -1485226754304->1485226754400 - - - - - -1485226754496 - -div - - - -1485226754400->1485226754496 - - - - - -1485226754736 - -p - - - -1485226754496->1485226754736 - - - - - -1485226754880 - -span - - - -1485226754736->1485226754880 - - - - - -1485226755024 - -span - - - -1485226754880->1485226755024 - - - - - -1485226755168 - -text - - - -1485226755024->1485226755168 - - - - - -1485226671216 - -aside - - - -1485226662912->1485226671216 - - - - - -1485226665984 - -div - - - -1485226671216->1485226665984 - - - - - -1485226754592 - -div - - - -1485226665984->1485226754592 - - - - - -1485226755312 - -div - - - -1485226665984->1485226755312 - - - - - -1485226754832 - -div - - - -1485226754592->1485226754832 - - - - - -1485226755120 - -div - - - -1485226754592->1485226755120 - - - - - -1485226755264 - -div - - - -1485226754832->1485226755264 - - - - - -1485226755600 - -div - - - -1485226663296->1485226755600 - - - - - -1485226755792 - -div - - - -1485226537792->1485226755792 - - - - - -1485226755504 - -div - - - -1485226537792->1485226755504 - - - - - -1485226755744 - -div - - - -1485226755792->1485226755744 - - - - - -1485226755840 - -div - - - -1485226755792->1485226755840 - - - - - -1485226755552 - -div - - - -1485226755744->1485226755552 - - - - - -1485226756128 - -div - - - -1485226755552->1485226756128 - - - - - -1485226756032 - -div - - - -1485226756128->1485226756032 - - - - - -1485226755888 - -div - - - -1485226756128->1485226755888 - - - - - -1485226756800 - -div - - - -1485226756128->1485226756800 - - - - - -1485226756416 - -div - - - -1485226756128->1485226756416 - - - - - -1485226756512 - -div - - - -1485226756128->1485226756512 - - - - - -1485226756464 - -div - - - -1485226756032->1485226756464 - - - - - -1485226756224 - -div - - - -1485226756032->1485226756224 - - - - - -1485226756272 - -a - - - -1485226756464->1485226756272 - - - - - -1485226756704 - -span - - - -1485226756272->1485226756704 - - - - - -1485226756752 - -div - - - -1485226756704->1485226756752 - - - - - -1485226756368 - -div - - - -1485226756752->1485226756368 - - - - - -1485226756848 - -picture - - - -1485226756368->1485226756848 - - - - - -1485226756992 - -noscript - - - -1485226756848->1485226756992 - - - - - -1485226757040 - -source - - - -1485226756992->1485226757040 - - - - - -1485226757232 - -source - - - -1485226756992->1485226757232 - - - - - -1485226757328 - -img - - - -1485226756992->1485226757328 - - - - - -1485226756560 - -div - - - -1485226756224->1485226756560 - - - - - -1485226756944 - -a - - - -1485226756224->1485226756944 - - - - - -1485226757376 - -div - - - -1485226756224->1485226757376 - - - - - -1485226756320 - -div - - - -1485226756560->1485226756320 - - - - - -1485226757184 - -span - - - -1485226756320->1485226757184 - - - - - -1485226757616 - -text - - - -1485226757184->1485226757616 - - - - - -1485226757760 - -h3 - - - -1485226756944->1485226757760 - - - - - -1485226757568 - -text - - - -1485226757760->1485226757568 - - - - - -1485226757856 - -div - - - -1485226757376->1485226757856 - - - - - -1485226757952 - -div - - - -1485226757856->1485226757952 - - - - - -1485226758048 - -div - - - -1485226757952->1485226758048 - - - - - -1485226758288 - -p - - - -1485226758048->1485226758288 - - - - - -1485226758432 - -span - - - -1485226758288->1485226758432 - - - - - -1485226758576 - -span - - - -1485226758432->1485226758576 - - - - - -1485226758720 - -text - - - -1485226758576->1485226758720 - - - - - -1485226758528 - -div - - - -1485226755888->1485226758528 - - - - - -1485226758096 - -div - - - -1485226755888->1485226758096 - - - - - -1485226758384 - -a - - - -1485226758528->1485226758384 - - - - - -1485226758912 - -span - - - -1485226758384->1485226758912 - - - - - -1485226758864 - -div - - - -1485226758912->1485226758864 - - - - - -1485226758672 - -div - - - -1485226758864->1485226758672 - - - - - -1485226759104 - -picture - - - -1485226758672->1485226759104 - - - - - -1485226759392 - -noscript - - - -1485226759104->1485226759392 - - - - - -1485226759488 - -source - - - -1485226759392->1485226759488 - - - - - -1485226759632 - -source - - - -1485226759392->1485226759632 - - - - - -1485226759680 - -img - - - -1485226759392->1485226759680 - - - - - -1485226758192 - -div - - - -1485226758096->1485226758192 - - - - - -1485226759200 - -a - - - -1485226758096->1485226759200 - - - - - -1485226759728 - -div - - - -1485226758096->1485226759728 - - - - - -1485226759248 - -div - - - -1485226758192->1485226759248 - - - - - -1485226759440 - -span - - - -1485226759248->1485226759440 - - - - - -1485226759968 - -text - - - -1485226759440->1485226759968 - - - - - -1485226760112 - -h3 - - - -1485226759200->1485226760112 - - - - - -1485226759920 - -text - - - -1485226760112->1485226759920 - - - - - -1485226760208 - -div - - - -1485226759728->1485226760208 - - - - - -1485226760304 - -div - - - -1485226760208->1485226760304 - - - - - -1485226760400 - -div - - - -1485226760304->1485226760400 - - - - - -1485226760640 - -p - - - -1485226760400->1485226760640 - - - - - -1485226760784 - -span - - - -1485226760640->1485226760784 - - - - - -1485226760928 - -span - - - -1485226760784->1485226760928 - - - - - -1485226761072 - -text - - - -1485226760928->1485226761072 - - - - - -1485226758144 - -div - - - -1485226756800->1485226758144 - - - - - -1485226760544 - -div - - - -1485226756800->1485226760544 - - - - - -1485226760448 - -a - - - -1485226758144->1485226760448 - - - - - -1485226760736 - -span - - - -1485226760448->1485226760736 - - - - - -1485226761024 - -div - - - -1485226760736->1485226761024 - - - - - -1485226761408 - -div - - - -1485226761024->1485226761408 - - - - - -1485226761648 - -picture - - - -1485226761408->1485226761648 - - - - - -1485226761456 - -noscript - - - -1485226761648->1485226761456 - - - - - -1485226761792 - -source - - - -1485226761456->1485226761792 - - - - - -1485226761888 - -source - - - -1485226761456->1485226761888 - - - - - -1485226761984 - -img - - - -1485226761456->1485226761984 - - - - - -1485226760880 - -div - - - -1485226760544->1485226760880 - - - - - -1485226761552 - -a - - - -1485226760544->1485226761552 - - - - - -1485226761264 - -div - - - -1485226760544->1485226761264 - - - - - -1485226761600 - -div - - - -1485226760880->1485226761600 - - - - - -1485226761744 - -span - - - -1485226761600->1485226761744 - - - - - -1485226762272 - -text - - - -1485226761744->1485226762272 - - - - - -1485226762032 - -h3 - - - -1485226761552->1485226762032 - - - - - -1485226761936 - -text - - - -1485226762032->1485226761936 - - - - - -1485226762512 - -div - - - -1485226761264->1485226762512 - - - - - -1485226762464 - -div - - - -1485226762512->1485226762464 - - - - - -1485226762800 - -div - - - -1485226762464->1485226762800 - - - - - -1485226762896 - -p - - - -1485226762800->1485226762896 - - - - - -1485226763040 - -span - - - -1485226762896->1485226763040 - - - - - -1485226763184 - -span - - - -1485226763040->1485226763184 - - - - - -1485226763328 - -text - - - -1485226763184->1485226763328 - - - - - -1485226758960 - -div - - - -1485226756416->1485226758960 - - - - - -1485226762992 - -div - - - -1485226758960->1485226762992 - - - - - -1485226760496 - -div - - - -1485226756512->1485226760496 - - - - - -1485226763568 - -div - - - -1485226756512->1485226763568 - - - - - -1485226763520 - -a - - - -1485226760496->1485226763520 - - - - - -1485226763616 - -span - - - -1485226763520->1485226763616 - - - - - -1485226763808 - -div - - - -1485226763616->1485226763808 - - - - - -1485226763904 - -div - - - -1485226763808->1485226763904 - - - - - -1485226763952 - -picture - - - -1485226763904->1485226763952 - - - - - -1485226764000 - -noscript - - - -1485226763952->1485226764000 - - - - - -1485226764192 - -source - - - -1485226764000->1485226764192 - - - - - -1485226764336 - -source - - - -1485226764000->1485226764336 - - - - - -1485226764384 - -img - - - -1485226764000->1485226764384 - - - - - -1485226763664 - -div - - - -1485226763568->1485226763664 - - - - - -1485226763760 - -a - - - -1485226763568->1485226763760 - - - - - -1485226764480 - -div - - - -1485226763568->1485226764480 - - - - - -1485226764096 - -div - - - -1485226763664->1485226764096 - - - - - -1485226764144 - -span - - - -1485226764096->1485226764144 - - - - - -1485226764720 - -text - - - -1485226764144->1485226764720 - - - - - -1485226764864 - -h3 - - - -1485226763760->1485226764864 - - - - - -1485226764672 - -text - - - -1485226764864->1485226764672 - - - - - -1485226764960 - -div - - - -1485226764480->1485226764960 - - - - - -1485226765056 - -div - - - -1485226764960->1485226765056 - - - - - -1485226765152 - -div - - - -1485226765056->1485226765152 - - - - - -1485226765392 - -p - - - -1485226765152->1485226765392 - - - - - -1485226765536 - -span - - - -1485226765392->1485226765536 - - - - - -1485226765680 - -span - - - -1485226765536->1485226765680 - - - - - -1485226765824 - -text - - - -1485226765680->1485226765824 - - - - - -1485226755696 - -aside - - - -1485226755840->1485226755696 - - - - - -1485226762848 - -div - - - -1485226755696->1485226762848 - - - - - -1485226762560 - -div - - - -1485226762848->1485226762560 - - - - - -1485226765296 - -div - - - -1485226762848->1485226765296 - - - - - -1485226766064 - -div - - - -1485226762560->1485226766064 - - - - - -1485226766304 - -div - - - -1485226762560->1485226766304 - - - - - -1485226765776 - -div - - - -1485226766064->1485226765776 - - - - - -1485226755984 - -div - - - -1485226755504->1485226755984 - - - - - -1485226754544 - -div - - - -1485226663104->1485226754544 - - - - - -1485226765968 - -div - - - -1485226663104->1485226765968 - - - - - -1485226766208 - -div - - - -1485226754544->1485226766208 - - - - - -1485226766112 - -div - - - -1485226754544->1485226766112 - - - - - -1485226766256 - -div - - - -1485226766208->1485226766256 - - - - - -1485226766640 - -div - - - -1485226766256->1485226766640 - - - - - -1485226766928 - -div - - - -1485226766640->1485226766928 - - - - - -1485226766784 - -div - - - -1485226766640->1485226766784 - - - - - -1485226766592 - -div - - - -1485226766640->1485226766592 - - - - - -1485226766688 - -div - - - -1485226766640->1485226766688 - - - - - -1485226766832 - -div - - - -1485226766640->1485226766832 - - - - - -1485226767120 - -div - - - -1485226766928->1485226767120 - - - - - -1485226766736 - -div - - - -1485226766928->1485226766736 - - - - - -1485226766880 - -a - - - -1485226767120->1485226766880 - - - - - -1485226767072 - -span - - - -1485226766880->1485226767072 - - - - - -1485226767168 - -div - - - -1485226767072->1485226767168 - - - - - -1485226767024 - -div - - - -1485226767168->1485226767024 - - - - - -1485226767408 - -picture - - - -1485226767024->1485226767408 - - - - - -1485226767456 - -noscript - - - -1485226767408->1485226767456 - - - - - -1485226767648 - -source - - - -1485226767456->1485226767648 - - - - - -1485226767792 - -source - - - -1485226767456->1485226767792 - - - - - -1485226767888 - -img - - - -1485226767456->1485226767888 - - - - - -1485226767360 - -div - - - -1485226766736->1485226767360 - - - - - -1485226767552 - -a - - - -1485226766736->1485226767552 - - - - - -1485226767936 - -div - - - -1485226766736->1485226767936 - - - - - -1485226767264 - -div - - - -1485226767360->1485226767264 - - - - - -1485226767696 - -span - - - -1485226767264->1485226767696 - - - - - -1485226768176 - -text - - - -1485226767696->1485226768176 - - - - - -1485226768320 - -h3 - - - -1485226767552->1485226768320 - - - - - -1485226768128 - -text - - - -1485226768320->1485226768128 - - - - - -1485226768416 - -div - - - -1485226767936->1485226768416 - - - - - -1485226768512 - -div - - - -1485226768416->1485226768512 - - - - - -1485226768608 - -div - - - -1485226768512->1485226768608 - - - - - -1485226768848 - -p - - - -1485226768608->1485226768848 - - - - - -1485226768992 - -span - - - -1485226768848->1485226768992 - - - - - -1485226769136 - -span - - - -1485226768992->1485226769136 - - - - - -1485226769280 - -text - - - -1485226769136->1485226769280 - - - - - -1485226769088 - -div - - - -1485226766784->1485226769088 - - - - - -1485226768656 - -div - - - -1485226766784->1485226768656 - - - - - -1485226768944 - -a - - - -1485226769088->1485226768944 - - - - - -1485226769472 - -span - - - -1485226768944->1485226769472 - - - - - -1485226769424 - -div - - - -1485226769472->1485226769424 - - - - - -1485226769232 - -div - - - -1485226769424->1485226769232 - - - - - -1485226769664 - -picture - - - -1485226769232->1485226769664 - - - - - -1485226769952 - -noscript - - - -1485226769664->1485226769952 - - - - - -1485226770048 - -source - - - -1485226769952->1485226770048 - - - - - -1485226770192 - -source - - - -1485226769952->1485226770192 - - - - - -1485226770240 - -img - - - -1485226769952->1485226770240 - - - - - -1485226768752 - -div - - - -1485226768656->1485226768752 - - - - - -1485226769760 - -a - - - -1485226768656->1485226769760 - - - - - -1485226770288 - -div - - - -1485226768656->1485226770288 - - - - - -1485226769808 - -div - - - -1485226768752->1485226769808 - - - - - -1485226770000 - -span - - - -1485226769808->1485226770000 - - - - - -1485232259184 - -text - - - -1485226770000->1485232259184 - - - - - -1485226770144 - -h3 - - - -1485226769760->1485226770144 - - - - - -1485232259136 - -text - - - -1485226770144->1485232259136 - - - - - -1485232259472 - -div - - - -1485226770288->1485232259472 - - - - - -1485232259568 - -div - - - -1485232259472->1485232259568 - - - - - -1485232259664 - -div - - - -1485232259568->1485232259664 - - - - - -1485232259904 - -p - - - -1485232259664->1485232259904 - - - - - -1485232260048 - -span - - - -1485232259904->1485232260048 - - - - - -1485232260192 - -span - - - -1485232260048->1485232260192 - - - - - -1485232260336 - -text - - - -1485232260192->1485232260336 - - - - - -1485226768704 - -div - - - -1485226766592->1485226768704 - - - - - -1485232259808 - -div - - - -1485226766592->1485232259808 - - - - - -1485232259712 - -a - - - -1485226768704->1485232259712 - - - - - -1485232260000 - -span - - - -1485232259712->1485232260000 - - - - - -1485232260288 - -div - - - -1485232260000->1485232260288 - - - - - -1485232260672 - -div - - - -1485232260288->1485232260672 - - - - - -1485232260912 - -picture - - - -1485232260672->1485232260912 - - - - - -1485232260720 - -noscript - - - -1485232260912->1485232260720 - - - - - -1485232261056 - -source - - - -1485232260720->1485232261056 - - - - - -1485232261152 - -source - - - -1485232260720->1485232261152 - - - - - -1485232261248 - -img - - - -1485232260720->1485232261248 - - - - - -1485232260144 - -div - - - -1485232259808->1485232260144 - - - - - -1485232260816 - -a - - - -1485232259808->1485232260816 - - - - - -1485232261296 - -div - - - -1485232259808->1485232261296 - - - - - -1485232260864 - -div - - - -1485232260144->1485232260864 - - - - - -1485232261008 - -span - - - -1485232260864->1485232261008 - - - - - -1485232261536 - -text - - - -1485232261008->1485232261536 - - - - - -1485232261680 - -h3 - - - -1485232260816->1485232261680 - - - - - -1485232261488 - -text - - - -1485232261680->1485232261488 - - - - - -1485232261200 - -div - - - -1485232261296->1485232261200 - - - - - -1485232262016 - -div - - - -1485232261200->1485232262016 - - - - - -1485232262064 - -div - - - -1485232262016->1485232262064 - - - - - -1485232262112 - -p - - - -1485232262064->1485232262112 - - - - - -1485232262304 - -span - - - -1485232262112->1485232262304 - - - - - -1485232262448 - -span - - - -1485232262304->1485232262448 - - - - - -1485232262592 - -text - - - -1485232262448->1485232262592 - - - - - -1485232259760 - -div - - - -1485226766688->1485232259760 - - - - - -1485232261776 - -div - - - -1485232259760->1485232261776 - - - - - -1485232262256 - -div - - - -1485226766832->1485232262256 - - - - - -1485232262736 - -div - - - -1485226766832->1485232262736 - - - - - -1485232262832 - -a - - - -1485232262256->1485232262832 - - - - - -1485232262784 - -span - - - -1485232262832->1485232262784 - - - - - -1485232263120 - -div - - - -1485232262784->1485232263120 - - - - - -1485232263072 - -div - - - -1485232263120->1485232263072 - - - - - -1485232263312 - -picture - - - -1485232263072->1485232263312 - - - - - -1485232263216 - -noscript - - - -1485232263312->1485232263216 - - - - - -1485232263552 - -source - - - -1485232263216->1485232263552 - - - - - -1485232263648 - -source - - - -1485232263216->1485232263648 - - - - - -1485232263696 - -img - - - -1485232263216->1485232263696 - - - - - -1485232262880 - -div - - - -1485232262736->1485232262880 - - - - - -1485232263264 - -a - - - -1485232262736->1485232263264 - - - - - -1485232263792 - -div - - - -1485232262736->1485232263792 - - - - - -1485232263408 - -div - - - -1485232262880->1485232263408 - - - - - -1485232263504 - -span - - - -1485232263408->1485232263504 - - - - - -1485232264032 - -text - - - -1485232263504->1485232264032 - - - - - -1485232264176 - -h3 - - - -1485232263264->1485232264176 - - - - - -1485232263984 - -text - - - -1485232264176->1485232263984 - - - - - -1485232264272 - -div - - - -1485232263792->1485232264272 - - - - - -1485232264368 - -div - - - -1485232264272->1485232264368 - - - - - -1485232264464 - -div - - - -1485232264368->1485232264464 - - - - - -1485232264704 - -p - - - -1485232264464->1485232264704 - - - - - -1485232264848 - -span - - - -1485232264704->1485232264848 - - - - - -1485232264992 - -span - - - -1485232264848->1485232264992 - - - - - -1485232265136 - -text - - - -1485232264992->1485232265136 - - - - - -1485226769520 - -aside - - - -1485226766112->1485226769520 - - - - - -1485232261920 - -div - - - -1485226769520->1485232261920 - - - - - -1485232264560 - -div - - - -1485232261920->1485232264560 - - - - - -1485232265376 - -div - - - -1485232261920->1485232265376 - - - - - -1485232264800 - -div - - - -1485232264560->1485232264800 - - - - - -1485232265088 - -div - - - -1485232264560->1485232265088 - - - - - -1485232265280 - -div - - - -1485232264800->1485232265280 - - - - - -1485232265616 - -div - - - -1485226765968->1485232265616 - - - - - -1485226766160 - -div - - - -1485226539136->1485226766160 - - - - - -1485232265520 - -div - - - -1485226766160->1485232265520 - - - - - -1485232265568 - -div - - - -1485226766160->1485232265568 - - - - - -1485232265856 - -div - - - -1485232265520->1485232265856 - - - - - -1485232266000 - -div - - - -1485232265856->1485232266000 - - - - - -1485232266240 - -div - - - -1485232266000->1485232266240 - - - - - -1485232265952 - -div - - - -1485232266000->1485232265952 - - - - - -1485232266576 - -div - - - -1485232266000->1485232266576 - - - - - -1485232266192 - -div - - - -1485232266000->1485232266192 - - - - - -1485232270416 - -div - - - -1485232266000->1485232270416 - - - - - -1485232266480 - -div - - - -1485232266240->1485232266480 - - - - - -1485232265904 - -div - - - -1485232266240->1485232265904 - - - - - -1485232266096 - -a - - - -1485232266480->1485232266096 - - - - - -1485232266336 - -span - - - -1485232266096->1485232266336 - - - - - -1485232266720 - -div - - - -1485232266336->1485232266720 - - - - - -1485232266672 - -div - - - -1485232266720->1485232266672 - - - - - -1485232266528 - -picture - - - -1485232266672->1485232266528 - - - - - -1485232267008 - -noscript - - - -1485232266528->1485232267008 - - - - - -1485232267056 - -source - - - -1485232267008->1485232267056 - - - - - -1485232267248 - -source - - - -1485232267008->1485232267248 - - - - - -1485232267296 - -img - - - -1485232267008->1485232267296 - - - - - -1485232266432 - -div - - - -1485232265904->1485232266432 - - - - - -1485232266624 - -a - - - -1485232265904->1485232266624 - - - - - -1485232267344 - -div - - - -1485232265904->1485232267344 - - - - - -1485232266384 - -div - - - -1485232266432->1485232266384 - - - - - -1485232267104 - -span - - - -1485232266384->1485232267104 - - - - - -1485232267584 - -text - - - -1485232267104->1485232267584 - - - - - -1485232267728 - -h3 - - - -1485232266624->1485232267728 - - - - - -1485232267536 - -text - - - -1485232267728->1485232267536 - - - - - -1485232267824 - -div - - - -1485232267344->1485232267824 - - - - - -1485232267920 - -div - - - -1485232267824->1485232267920 - - - - - -1485232268016 - -div - - - -1485232267920->1485232268016 - - - - - -1485232268256 - -p - - - -1485232268016->1485232268256 - - - - - -1485232268400 - -span - - - -1485232268256->1485232268400 - - - - - -1485232268544 - -span - - - -1485232268400->1485232268544 - - - - - -1485232268688 - -text - - - -1485232268544->1485232268688 - - - - - -1485232268496 - -div - - - -1485232265952->1485232268496 - - - - - -1485232268064 - -div - - - -1485232265952->1485232268064 - - - - - -1485232268352 - -a - - - -1485232268496->1485232268352 - - - - - -1485232268880 - -span - - - -1485232268352->1485232268880 - - - - - -1485232268832 - -div - - - -1485232268880->1485232268832 - - - - - -1485232268640 - -div - - - -1485232268832->1485232268640 - - - - - -1485232269072 - -picture - - - -1485232268640->1485232269072 - - - - - -1485232269360 - -noscript - - - -1485232269072->1485232269360 - - - - - -1485232269456 - -source - - - -1485232269360->1485232269456 - - - - - -1485232269600 - -source - - - -1485232269360->1485232269600 - - - - - -1485232269648 - -img - - - -1485232269360->1485232269648 - - - - - -1485232268160 - -div - - - -1485232268064->1485232268160 - - - - - -1485232269168 - -a - - - -1485232268064->1485232269168 - - - - - -1485232269696 - -div - - - -1485232268064->1485232269696 - - - - - -1485232269216 - -div - - - -1485232268160->1485232269216 - - - - - -1485232269408 - -span - - - -1485232269216->1485232269408 - - - - - -1485232269936 - -text - - - -1485232269408->1485232269936 - - - - - -1485232270080 - -h3 - - - -1485232269168->1485232270080 - - - - - -1485232269888 - -text - - - -1485232270080->1485232269888 - - - - - -1485232270176 - -div - - - -1485232269696->1485232270176 - - - - - -1485232270272 - -div - - - -1485232270176->1485232270272 - - - - - -1485232270368 - -div - - - -1485232270272->1485232270368 - - - - - -1485232270608 - -p - - - -1485232270368->1485232270608 - - - - - -1485232270752 - -span - - - -1485232270608->1485232270752 - - - - - -1485232270896 - -span - - - -1485232270752->1485232270896 - - - - - -1485232271040 - -text - - - -1485232270896->1485232271040 - - - - - -1485232266288 - -div - - - -1485232266576->1485232266288 - - - - - -1485232268112 - -div - - - -1485232266576->1485232268112 - - - - - -1485232270512 - -a - - - -1485232266288->1485232270512 - - - - - -1485232270848 - -span - - - -1485232270512->1485232270848 - - - - - -1485232271280 - -div - - - -1485232270848->1485232271280 - - - - - -1485232270992 - -div - - - -1485232271280->1485232270992 - - - - - -1485232271568 - -picture - - - -1485232270992->1485232271568 - - - - - -1485232271520 - -noscript - - - -1485232271568->1485232271520 - - - - - -1485232271712 - -source - - - -1485232271520->1485232271712 - - - - - -1485232271808 - -source - - - -1485232271520->1485232271808 - - - - - -1485232271904 - -img - - - -1485232271520->1485232271904 - - - - - -1485232270464 - -div - - - -1485232268112->1485232270464 - - - - - -1485232271472 - -a - - - -1485232268112->1485232271472 - - - - - -1485232271952 - -div - - - -1485232268112->1485232271952 - - - - - -1485232271328 - -div - - - -1485232270464->1485232271328 - - - - - -1485232271664 - -span - - - -1485232271328->1485232271664 - - - - - -1485232272192 - -text - - - -1485232271664->1485232272192 - - - - - -1485232272336 - -h3 - - - -1485232271472->1485232272336 - - - - - -1485232272144 - -text - - - -1485232272336->1485232272144 - - - - - -1485232272432 - -div - - - -1485232271952->1485232272432 - - - - - -1485232272528 - -div - - - -1485232272432->1485232272528 - - - - - -1485232272624 - -div - - - -1485232272528->1485232272624 - - - - - -1485232272864 - -p - - - -1485232272624->1485232272864 - - - - - -1485232273008 - -span - - - -1485232272864->1485232273008 - - - - - -1485232273152 - -span - - - -1485232273008->1485232273152 - - - - - -1485232273296 - -text - - - -1485232273152->1485232273296 - - - - - -1485232272960 - -div - - - -1485232266192->1485232272960 - - - - - -1485232273104 - -div - - - -1485232272960->1485232273104 - - - - - -1485232272672 - -div - - - -1485232270416->1485232272672 - - - - - -1485232273248 - -div - - - -1485232270416->1485232273248 - - - - - -1485232273440 - -a - - - -1485232272672->1485232273440 - - - - - -1485232273536 - -span - - - -1485232273440->1485232273536 - - - - - -1485232273680 - -div - - - -1485232273536->1485232273680 - - - - - -1485232273824 - -div - - - -1485232273680->1485232273824 - - - - - -1485232274064 - -picture - - - -1485232273824->1485232274064 - - - - - -1485232274016 - -noscript - - - -1485232274064->1485232274016 - - - - - -1485232274304 - -source - - - -1485232274016->1485232274304 - - - - - -1485232274400 - -source - - - -1485232274016->1485232274400 - - - - - -1485232274448 - -img - - - -1485232274016->1485232274448 - - - - - -1485232273488 - -div - - - -1485232273248->1485232273488 - - - - - -1485232273920 - -a - - - -1485232273248->1485232273920 - - - - - -1485232273776 - -div - - - -1485232273248->1485232273776 - - - - - -1485232274208 - -div - - - -1485232273488->1485232274208 - - - - - -1485232274160 - -span - - - -1485232274208->1485232274160 - - - - - -1485232274784 - -text - - - -1485232274160->1485232274784 - - - - - -1485232274544 - -h3 - - - -1485232273920->1485232274544 - - - - - -1485232274496 - -text - - - -1485232274544->1485232274496 - - - - - -1485232275024 - -div - - - -1485232273776->1485232275024 - - - - - -1485232274976 - -div - - - -1485232275024->1485232274976 - - - - - -1485232275312 - -div - - - -1485232274976->1485232275312 - - - - - -1485232275408 - -p - - - -1485232275312->1485232275408 - - - - - -1485232373920 - -span - - - -1485232275408->1485232373920 - - - - - -1485232374064 - -span - - - -1485232373920->1485232374064 - - - - - -1485232374208 - -text - - - -1485232374064->1485232374208 - - - - - -1485232275072 - -aside - - - -1485232265568->1485232275072 - - - - - -1485232268928 - -div - - - -1485232275072->1485232268928 - - - - - -1485232275168 - -div - - - -1485232268928->1485232275168 - - - - - -1485232374448 - -div - - - -1485232268928->1485232374448 - - - - - -1485232373872 - -div - - - -1485232275168->1485232373872 - - - - - -1485232374160 - -div - - - -1485232275168->1485232374160 - - - - - -1485232374352 - -div - - - -1485232373872->1485232374352 - - - - - -1485232266144 - -div - - - -1485226370352->1485232266144 - - - - - -1485232273632 - -a - - - -1485232266144->1485232273632 - - - - - -1485232374928 - -span - - - -1485232273632->1485232374928 - - - - - -1485232375312 - -text - - - -1485232374928->1485232375312 - - - - - -1485232375120 - -div - - - -1485225839392->1485232375120 - - - - - -1485232375792 - -div - - - -1485232375120->1485232375792 - - - - - -1485232376032 - -div - - - -1485225835968->1485232376032 - - - - - -1485232375168 - -div - - - -1485232376032->1485232375168 - - - - - -1485232376368 - -div - - - -1485232376032->1485232376368 - - - - - -1485232376128 - -div - - - -1485225838336->1485232376128 - - - - - -1485232374976 - -div - - - -1485232376128->1485232374976 - - - - - -1485232375552 - -footer - - - -1485232374976->1485232375552 - - - - - -1485232376608 - -div - - - -1485232375552->1485232376608 - - - - - -1485232376704 - -div - - - -1485232375552->1485232376704 - - - - - -1485232375696 - -div - - - -1485232376608->1485232375696 - - - - - -1485232376416 - -nav - - - -1485232376608->1485232376416 - - - - - -1485232376272 - -span - - - -1485232376608->1485232376272 - - - - - -1485232376224 - -nav - - - -1485232376608->1485232376224 - - - - - -1485232378864 - -span - - - -1485232376608->1485232378864 - - - - - -1485232374784 - -div - - - -1485232376608->1485232374784 - - - - - -1485232376656 - -div - - - -1485232375696->1485232376656 - - - - - -1485232375456 - -div - - - -1485232375696->1485232375456 - - - - - -1485232377136 - -a - - - -1485232376656->1485232377136 - - - - - -1485232377952 - -span - - - -1485232377136->1485232377952 - - - - - -1485232375600 - -picture - - - -1485232377952->1485232375600 - - - - - -1485232376896 - -img - - - -1485232375600->1485232376896 - - - - - -1485232375936 - -div - - - -1485232375456->1485232375936 - - - - - -1485232377568 - -text - - - -1485232375936->1485232377568 - - - - - -1485232376320 - -p - - - -1485232376416->1485232376320 - - - - - -1485232377808 - -ul - - - -1485232376416->1485232377808 - - - - - -1485232377424 - -button - - - -1485232376320->1485232377424 - - - - - -1485232376752 - -text - - - -1485232377424->1485232376752 - - - - - -1485232377856 - -span - - - -1485232377424->1485232377856 - - - - - -1485232377376 - -li - - - -1485232377808->1485232377376 - - - - - -1485232375408 - -li - - - -1485232377808->1485232375408 - - - - - -1485232378096 - -li - - - -1485232377808->1485232378096 - - - - - -1485232377712 - -li - - - -1485232377808->1485232377712 - - - - - -1485232375504 - -li - - - -1485232377808->1485232375504 - - - - - -1485232378288 - -li - - - -1485232377808->1485232378288 - - - - - -1485232377664 - -li - - - -1485232377808->1485232377664 - - - - - -1485232378384 - -li - - - -1485232377808->1485232378384 - - - - - -1485232375840 - -a - - - -1485232377376->1485232375840 - - - - - -1485232377232 - -text - - - -1485232375840->1485232377232 - - - - - -1485232378144 - -a - - - -1485232375408->1485232378144 - - - - - -1485232378000 - -text - - - -1485232378144->1485232378000 - - - - - -1485232377904 - -a - - - -1485232378096->1485232377904 - - - - - -1485232378336 - -text - - - -1485232377904->1485232378336 - - - - - -1485232375888 - -a - - - -1485232377712->1485232375888 - - - - - -1485232378480 - -text - - - -1485232375888->1485232378480 - - - - - -1485232378192 - -a - - - -1485232375504->1485232378192 - - - - - -1485232378672 - -text - - - -1485232378192->1485232378672 - - - - - -1485232378528 - -a - - - -1485232378288->1485232378528 - - - - - -1485232378960 - -text - - - -1485232378528->1485232378960 - - - - - -1485232379152 - -a - - - -1485232377664->1485232379152 - - - - - -1485232379248 - -text - - - -1485232379152->1485232379248 - - - - - -1485232379200 - -a - - - -1485232378384->1485232379200 - - - - - -1485232379536 - -text - - - -1485232379200->1485232379536 - - - - - -1485232377520 - -p - - - -1485232376224->1485232377520 - - - - - -1485232378240 - -ul - - - -1485232376224->1485232378240 - - - - - -1485232379776 - -button - - - -1485232377520->1485232379776 - - - - - -1485232379680 - -text - - - -1485232379776->1485232379680 - - - - - -1485232380208 - -span - - - -1485232379776->1485232380208 - - - - - -1485232380352 - -li - - - -1485232378240->1485232380352 - - - - - -1485232379872 - -li - - - -1485232378240->1485232379872 - - - - - -1485232380064 - -li - - - -1485232378240->1485232380064 - - - - - -1485232379920 - -li - - - -1485232378240->1485232379920 - - - - - -1485232380544 - -li - - - -1485232378240->1485232380544 - - - - - -1485232380736 - -li - - - -1485232378240->1485232380736 - - - - - -1485232380832 - -li - - - -1485232378240->1485232380832 - - - - - -1485232380256 - -a - - - -1485232380352->1485232380256 - - - - - -1485232379824 - -text - - - -1485232380256->1485232379824 - - - - - -1485232380592 - -a - - - -1485232379872->1485232380592 - - - - - -1485232380496 - -text - - - -1485232380592->1485232380496 - - - - - -1485232380400 - -a - - - -1485232380064->1485232380400 - - - - - -1485232380928 - -text - - - -1485232380400->1485232380928 - - - - - -1485232381168 - -a - - - -1485232379920->1485232381168 - - - - - -1485232381312 - -text - - - -1485232381168->1485232381312 - - - - - -1485232381264 - -a - - - -1485232380544->1485232381264 - - - - - -1485232381600 - -text - - - -1485232381264->1485232381600 - - - - - -1485232381504 - -a - - - -1485232380736->1485232381504 - - - - - -1485232381888 - -text - - - -1485232381504->1485232381888 - - - - - -1485232382080 - -a - - - -1485232380832->1485232382080 - - - - - -1485232382176 - -text - - - -1485232382080->1485232382176 - - - - - -1485232379440 - -div - - - -1485232374784->1485232379440 - - - - - -1485232382128 - -nav - - - -1485232379440->1485232382128 - - - - - -1485232382320 - -span - - - -1485232379440->1485232382320 - - - - - -1485232382368 - -div - - - -1485232379440->1485232382368 - - - - - -1485232382896 - -div - - - -1485232379440->1485232382896 - - - - - -1485232384576 - -div - - - -1485232379440->1485232384576 - - - - - -1485232382464 - -ul - - - -1485232382128->1485232382464 - - - - - -1485232382416 - -li - - - -1485232382464->1485232382416 - - - - - -1485232382752 - -li - - - -1485232382464->1485232382752 - - - - - -1485232382800 - -li - - - -1485232382464->1485232382800 - - - - - -1485232382848 - -li - - - -1485232382464->1485232382848 - - - - - -1485232381840 - -li - - - -1485232382464->1485232381840 - - - - - -1485232383280 - -li - - - -1485232382464->1485232383280 - - - - - -1485232383616 - -li - - - -1485232382464->1485232383616 - - - - - -1485232383664 - -li - - - -1485232382464->1485232383664 - - - - - -1485232384336 - -li - - - -1485232382464->1485232384336 - - - - - -1485232382992 - -a - - - -1485232382416->1485232382992 - - - - - -1485232382704 - -text - - - -1485232382992->1485232382704 - - - - - -1485232383136 - -a - - - -1485232382752->1485232383136 - - - - - -1485232382944 - -text - - - -1485232383136->1485232382944 - - - - - -1485232383088 - -a - - - -1485232382800->1485232383088 - - - - - -1485232383568 - -text - - - -1485232383088->1485232383568 - - - - - -1485232383472 - -a - - - -1485232382848->1485232383472 - - - - - -1485232383856 - -text - - - -1485232383472->1485232383856 - - - - - -1485232383760 - -a - - - -1485232381840->1485232383760 - - - - - -1485232384144 - -text - - - -1485232383760->1485232384144 - - - - - -1485232384048 - -a - - - -1485232383280->1485232384048 - - - - - -1485232384432 - -text - - - -1485232384048->1485232384432 - - - - - -1485232384624 - -a - - - -1485232383616->1485232384624 - - - - - -1485232384720 - -text - - - -1485232384624->1485232384720 - - - - - -1485232384672 - -a - - - -1485232383664->1485232384672 - - - - - -1485232385008 - -text - - - -1485232384672->1485232385008 - - - - - -1485232384384 - -a - - - -1485232384336->1485232384384 - - - - - -1485232384960 - -text - - - -1485232384384->1485232384960 - - - - - -1485232385536 - -p - - - -1485232382368->1485232385536 - - - - - -1485232385584 - -text - - - -1485232385536->1485232385584 - - - - - -1485232385824 - -text - - - -1485232385536->1485232385824 - - - - - -1485232384000 - -text - - - -1485232385536->1485232384000 - - - - - -1485232385920 - -em - - - -1485232385536->1485232385920 - - - - - -1485232386016 - -text - - - -1485232385536->1485232386016 - - - - - -1485232385248 - -a - - - -1485232385536->1485232385248 - - - - - -1485232385968 - -text - - - -1485232385920->1485232385968 - - - - - -1485232385296 - -text - - - -1485232385248->1485232385296 - - - - - -1485232385632 - -div - - - -1485232382896->1485232385632 - - - - - -1485232385728 - -h6 - - - -1485232385632->1485232385728 - - - - - -1485232386160 - -button - - - -1485232385632->1485232386160 - - - - - -1485232386592 - -ul - - - -1485232385632->1485232386592 - - - - - -1485232386064 - -text - - - -1485232385728->1485232386064 - - - - - -1485232386544 - -span - - - -1485232386160->1485232386544 - - - - - -1485232386784 - -span - - - -1485232386160->1485232386784 - - - - - -1485232386736 - -text - - - -1485232386544->1485232386736 - - - - - -1485232386928 - -svg - - - -1485232386784->1485232386928 - - - - - -1485232387024 - -title - - - -1485232386928->1485232387024 - - - - - -1485232387072 - -g - - - -1485232386928->1485232387072 - - - - - -1485232387216 - -defs - - - -1485232386928->1485232387216 - - - - - -1485232386976 - -text - - - -1485232387024->1485232386976 - - - - - -1485232387360 - -path - - - -1485232387072->1485232387360 - - - - - -1485232387264 - -clippath - - - -1485232387216->1485232387264 - - - - - -1485232387552 - -rect - - - -1485232387264->1485232387552 - - - - - -1485232386304 - -li - - - -1485232386592->1485232386304 - - - - - -1485232387600 - -li - - - -1485232386592->1485232387600 - - - - - -1485232386880 - -li - - - -1485232386592->1485232386880 - - - - - -1485232387648 - -a - - - -1485232386304->1485232387648 - - - - - -1485232387120 - -text - - - -1485232387648->1485232387120 - - - - - -1485232388176 - -a - - - -1485232387600->1485232388176 - - - - - -1485232387936 - -text - - - -1485232388176->1485232387936 - - - - - -1485232387984 - -a - - - -1485232386880->1485232387984 - - - - - -1485232388512 - -text - - - -1485232387984->1485232388512 - - - - - -1485232388560 - -ul - - - -1485232384576->1485232388560 - - - - - -1485232388752 - -li - - - -1485232388560->1485232388752 - - - - - -1485232388608 - -li - - - -1485232388560->1485232388608 - - - - - -1485232389088 - -li - - - -1485232388560->1485232389088 - - - - - -1485232388944 - -li - - - -1485232388560->1485232388944 - - - - - -1485232389424 - -li - - - -1485232388560->1485232389424 - - - - - -1485232389664 - -li - - - -1485232388560->1485232389664 - - - - - -1485232387696 - -a - - - -1485232388752->1485232387696 - - - - - -1485232389040 - -div - - - -1485232387696->1485232389040 - - - - - -1485232388656 - -svg - - - -1485232389040->1485232388656 - - - - - -1485232388896 - -title - - - -1485232388656->1485232388896 - - - - - -1485232389376 - -path - - - -1485232388656->1485232389376 - - - - - -1485232389280 - -text - - - -1485232388896->1485232389280 - - - - - -1485232389568 - -a - - - -1485232388608->1485232389568 - - - - - -1485232388992 - -div - - - -1485232389568->1485232388992 - - - - - -1485232389472 - -svg - - - -1485232388992->1485232389472 - - - - - -1485232389760 - -title - - - -1485232389472->1485232389760 - - - - - -1485232389808 - -path - - - -1485232389472->1485232389808 - - - - - -1485232389952 - -text - - - -1485232389760->1485232389952 - - - - - -1485232390000 - -a - - - -1485232389088->1485232390000 - - - - - -1485232389904 - -div - - - -1485232390000->1485232389904 - - - - - -1485232521280 - -svg - - - -1485232389904->1485232521280 - - - - - -1485232521520 - -title - - - -1485232521280->1485232521520 - - - - - -1485232521472 - -path - - - -1485232521280->1485232521472 - - - - - -1485232521664 - -text - - - -1485232521520->1485232521664 - - - - - -1485232390096 - -a - - - -1485232388944->1485232390096 - - - - - -1485232522000 - -div - - - -1485232390096->1485232522000 - - - - - -1485232521376 - -svg - - - -1485232522000->1485232521376 - - - - - -1485232522192 - -title - - - -1485232521376->1485232522192 - - - - - -1485232522288 - -path - - - -1485232521376->1485232522288 - - - - - -1485232522336 - -text - - - -1485232522192->1485232522336 - - - - - -1485232521328 - -a - - - -1485232389424->1485232521328 - - - - - -1485232522528 - -div - - - -1485232521328->1485232522528 - - - - - -1485232522720 - -svg - - - -1485232522528->1485232522720 - - - - - -1485232522816 - -title - - - -1485232522720->1485232522816 - - - - - -1485232522912 - -path - - - -1485232522720->1485232522912 - - - - - -1485232522576 - -text - - - -1485232522816->1485232522576 - - - - - -1485232523104 - -a - - - -1485232389664->1485232523104 - - - - - -1485232523248 - -div - - - -1485232523104->1485232523248 - - - - - -1485232522768 - -svg - - - -1485232523248->1485232522768 - - - - - -1485232523056 - -title - - - -1485232522768->1485232523056 - - - - - -1485232523152 - -path - - - -1485232522768->1485232523152 - - - - - -1485232523584 - -text - - - -1485232523056->1485232523584 - - - - - -1485232388416 - -div - - - -1485232376704->1485232388416 - - - - - -1485232523200 - -svg - - - -1485232388416->1485232523200 - - - - - -1485232523392 - -g - - - -1485232523200->1485232523392 - - - - - -1485232521904 - -g - - - -1485232523392->1485232521904 - - - - - -1485232524160 - -g - - - -1485232523392->1485232524160 - - - - - -1485232523824 - -g - - - -1485232521904->1485232523824 - - - - - -1485232524352 - -g - - - -1485232523824->1485232524352 - - - - - -1485232523872 - -path - - - -1485232524352->1485232523872 - - - - - -1485232523968 - -g - - - -1485232524160->1485232523968 - - - - - -1485232524448 - -g - - - -1485232523968->1485232524448 - - - - - -1485232524736 - -path - - - -1485232524448->1485232524736 - - - - - -1485232524496 - -path - - - -1485232524448->1485232524496 - - - - - -1485232524304 - -path - - - -1485232524448->1485232524304 - - - - -