id
int32
0
12.9k
code
sequencelengths
2
264k
8,500
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ".", "PopupControl", ".", "PopupUIs", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "NewTreeUI", "{", "static", "String", "newTreeTitle", ";", "static", "void", "init", "(", "Panel", "parent", ")", "{", "PopupControl", ".", "panelScrollableExist", "=", "false", ";", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "parent", ".", "add", "(", "panel", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "panel", ".", "setSize", "(", "\"100%\"", ",", "\"100%\"", ")", ";", "}", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "description", ")", ";", "HTML", "header", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "header", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "header", ".", "setHTML", "(", "PopupElements", ".", "DOWN_TRIANGLE", "+", "\"\"", ")", ";", "header", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "PopupElements", ".", "setMarginBottom", "(", "header", ",", "5", ")", ";", "}", "else", "{", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "false", ",", "\"\"", ",", "false", ")", ";", "Label", "backToList", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "description", ".", "add", "(", "backToList", ")", ";", "backToList", ".", "setText", "(", "\"Go", "back\"", ")", ";", "backToList", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_TREETITLE", ")", ";", "backToList", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BACKTOLIST", ")", ";", "backToList", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onBackToList", "(", ")", ";", "}", "}", ")", ";", "}", "FlowPanel", "newTreePanel", "=", "new", "FlowPanel", "(", ")", ";", "newTreePanel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_INPUT", ")", ";", "final", "TextBox", "name", "=", "PopupElements", ".", "createTextBox", "(", ")", ";", "name", ".", "setMaxLength", "(", "64", ")", ";", "name", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NEWFIELD", ")", ";", "name", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_INPUTBOX_DEFAULT", ")", ";", "name", ".", "addFocusHandler", "(", "new", "FocusHandler", "(", ")", "{", "@", "Override", "public", "void", "onFocus", "(", "FocusEvent", "event", ")", "{", "if", "(", "\"\"", ".", "equals", "(", "name", ".", "getText", "(", ")", ")", ")", "{", "name", ".", "setText", "(", "\"\"", ")", ";", "name", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_INPUTBOX_DEFAULT", ")", ";", "}", "}", "}", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "FlowPanel", "newTreePanelBox", "=", "new", "FlowPanel", "(", ")", ";", "newTreePanelBox", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_INPUTBOX_IPAD", ")", ";", "panel", ".", "add", "(", "newTreePanelBox", ")", ";", "newTreePanel", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_INPUT_IPAD", ")", ";", "newTreePanelBox", ".", "add", "(", "newTreePanel", ")", ";", "name", ".", "setText", "(", "\"\"", ")", ";", "newTreePanel", ".", "add", "(", "name", ")", ";", "HTML", "ok", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "ok", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NEWTREE_BUTTONS_IPAD", ")", ";", "ok", ".", "setHTML", "(", "PopupElements", ".", "OK", ")", ";", "newTreePanelBox", ".", "add", "(", "ok", ")", ";", "ok", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onValidate", "(", "name", ")", ";", "}", "}", ")", ";", "}", "else", "{", "panel", ".", "add", "(", "newTreePanel", ")", ";", "newTreePanel", ".", "add", "(", "name", ")", ";", "}", "name", ".", "addKeyPressHandler", "(", "new", "KeyPressHandler", "(", ")", "{", "@", "Override", "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "if", "(", "event", ".", "getCharCode", "(", ")", "==", "13", ")", "{", "onValidate", "(", "name", ")", ";", "}", "}", "}", ")", ";", "header", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onValidate", "(", "name", ")", ";", "}", "}", ")", ";", "PopupElements", ".", "setMarginBottom", "(", "header", ",", "5", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "FlowPanel", "buttons", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "buttons", ")", ";", "Label", "cancel", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "newTreePanel", ".", "add", "(", "cancel", ")", ";", "cancel", ".", "setText", "(", "\"cancel\"", ")", ";", "cancel", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_THINLINK", ")", ";", "cancel", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LEFT", ")", ";", "cancel", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "Label", "ok", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "buttons", ".", "add", "(", "ok", ")", ";", "ok", ".", "setText", "(", "\"ok\"", ")", ";", "ok", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "ok", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_RIGHT", ")", ";", "ok", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onValidate", "(", "name", ")", ";", "}", "}", ")", ";", "}", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "name", ".", "setFocus", "(", "true", ")", ";", "}", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "static", "void", "onValidate", "(", "TextBox", "name", ")", "{", "newTreeTitle", "=", "name", ".", "getText", "(", ")", ".", "trim", "(", ")", ";", "if", "(", "newTreeTitle", ".", "isEmpty", "(", ")", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "name", ".", "setText", "(", "\"\"", ")", ";", "name", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_INPUTBOX_DEFAULT", ")", ";", "}", "return", ";", "}", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "ChooseParent", ")", ";", "}", "}", "</s>" ]
8,501
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ".", "PopupControl", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "LoginFailedUI", "{", "static", "void", "init", "(", "Panel", "parent", ")", "{", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "parent", ".", "add", "(", "panel", ")", ";", "InlineLabel", "l2", "=", "PopupElements", ".", "createInlineLabel", "(", ")", ";", "l2", ".", "setText", "(", "\"\"", ")", ";", "l2", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGRIGHT", ")", ";", "InlineLabel", "log", "=", "PopupElements", ".", "createInlineLabel", "(", ")", ";", "log", ".", "setText", "(", "\"log", "in\"", ")", ";", "log", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "log", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGLEFT", ")", ";", "log", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGRIGHT", ")", ";", "log", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "Login", ")", ";", "}", "}", ")", ";", "InlineLabel", "l3", "=", "PopupElements", ".", "createInlineLabel", "(", ")", ";", "l3", ".", "setText", "(", "\"", "or", "\"", ")", ";", "l3", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGLEFT", ")", ";", "l3", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGRIGHT", ")", ";", "InlineLabel", "create", "=", "PopupElements", ".", "createInlineLabel", "(", ")", ";", "create", ".", "setText", "(", "\"\"", ")", ";", "create", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "create", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGLEFT", ")", ";", "create", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOPADDINGRIGHT", ")", ";", "create", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "goCreate", "(", ")", ";", "}", "}", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "Label", "l1", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "panel", ".", "add", "(", "l1", ")", ";", "l1", ".", "setText", "(", "\"\"", ")", ";", "l1", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BOLD", ")", ";", "PopupElements", ".", "setMarginBottom", "(", "l1", ",", "15", ")", ";", "l2", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BOLD", ")", ";", "panel", ".", "add", "(", "l2", ")", ";", "panel", ".", "add", "(", "log", ")", ";", "l3", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BOLD", ")", ";", "panel", ".", "add", "(", "l3", ")", ";", "panel", ".", "add", "(", "create", ")", ";", "}", "else", "{", "FlowPanel", "line", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "line", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "line", ",", "false", ",", "\"\"", ",", "false", ")", ";", "FlowPanel", "wrapp", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "wrapp", ")", ";", "wrapp", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_LOGIN_IPAD", ")", ";", "wrapp", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_GREY", ")", ";", "wrapp", ".", "add", "(", "l2", ")", ";", "wrapp", ".", "add", "(", "log", ")", ";", "wrapp", ".", "add", "(", "l3", ")", ";", "wrapp", ".", "add", "(", "create", ")", ";", "}", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "static", "void", "goCreate", "(", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "WebContent", ".", "openInNewTab", "(", "WebContent", ".", "getCollectorUrl", "(", ")", "+", "\"\"", ")", ";", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "else", "{", "TreeListUI", ".", "goBackToPT", "(", "null", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "1000", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "}", "}", "</s>" ]
8,502
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ".", "PopupControl", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "dom", ".", "client", ".", "Style", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "PopupElements", "{", "static", "final", "String", "RIGHT_TRIANGLE", ";", "static", "final", "String", "DOWN_TRIANGLE", ";", "static", "final", "String", "AVATAR_CACHE", ";", "static", "final", "String", "PUZZLE", ";", "static", "final", "String", "DROPZONE", ";", "static", "final", "String", "NEW_PEARLTREE", ";", "static", "final", "String", "DESCRIPTION", ";", "static", "final", "String", "GOBACK", ";", "static", "final", "String", "OK", ";", "static", "final", "String", "TEXTBOX", ";", "static", "final", "String", "LOADINGMESSAGE", ";", "static", "final", "String", "BUTTON_GO_TO_APP", ";", "static", "final", "String", "COOKIES", ";", "static", "final", "String", "PEARLED", ";", "static", "final", "String", "PRELOADED_PEARLED", ";", "static", "final", "String", "PRIMARY_STYLE_TEXT", "=", "\"pt-text\"", ";", "static", "final", "String", "PRIMARY_STYLE_AVATARBOX", "=", "\"pt-avatarbox\"", ";", "static", "final", "String", "PRIMARY_STYLE_TEXTBOX", "=", "\"pt-textbox\"", ";", "static", "final", "String", "PRIMARY_STYLE_INPUT", "=", "\"pt-input\"", ";", "static", "final", "String", "PRIMARY_STYLE_INDENTBLOCK", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_FOCUS", "=", "\"pt-focus\"", ";", "static", "final", "String", "PRIMARY_STYLE_TREELIST", "=", "\"pt-treelist\"", ";", "static", "final", "String", "PRIMARY_STYLE_TREENODEPANEL", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_CHILDRENPANEL", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_FLOATWRAPPER", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_DESCRIPTION", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_NEWPEARLTREE", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_NONSCROLLABLE", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_SCROLLABLE", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_NEWTREE_BUTTONS_IPAD", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_INPUTBOX_IPAD", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_LOGIN_IPAD", "=", "\"\"", ";", "static", "final", "String", "PRIMARY_STYLE_INVISIBLE", "=", "\"pt-invisible\"", ";", "static", "final", "String", "PRIMARY_STYLE_CENTERED", "=", "\"pt-centered\"", ";", "static", "final", "String", "PRIMARY_STYLE_PEARLED_IPAD", "=", "\"\"", ";", "static", "final", "String", "STYLE_GREY", "=", "\"grey\"", ";", "static", "final", "String", "STYLE_REALLY_UNDER_MESSAGE", "=", "\"reallyunder\"", ";", "static", "final", "String", "STYLE_UNDER_MESSAGE", "=", "\"under\"", ";", "static", "final", "String", "STYLE_DESCRIPTION_UP", "=", "\"up\"", ";", "static", "final", "String", "STYLE_DESCRIPTION_DOWN", "=", "\"down\"", ";", "static", "final", "String", "STYLE_LIST_REVEALED", "=", "\"revealed\"", ";", "static", "final", "String", "STYLE_LIST_COLLAPSED", "=", "\"collapsed\"", ";", "static", "final", "String", "STYLE_PADDING", "=", "\"padding\"", ";", "static", "final", "String", "STYLE_SPECIAL_PADDING", "=", "\"\"", ";", "static", "final", "String", "STYLE_NEW_PEARLTREE", "=", "\"newpearltree\"", ";", "static", "final", "String", "STYLE_NOPADDINGLEFT", "=", "\"\"", ";", "static", "final", "String", "STYLE_NOPADDINGRIGHT", "=", "\"\"", ";", "static", "final", "String", "STYLE_ITEM", "=", "\"item\"", ";", "static", "final", "String", "STYLE_ESCAPE", "=", "\"escape\"", ";", "static", "final", "String", "STYLE_BACKTOLIST", "=", "\"backtolist\"", ";", "static", "final", "String", "STYLE_SELECTABLE", "=", "\"selectable\"", ";", "static", "final", "String", "STYLE_SELECTBOX_IPAD", "=", "\"\"", ";", "static", "final", "String", "STYLE_SELECTED", "=", "\"selected\"", ";", "static", "final", "String", "STYLE_SELECTED_TIMER", "=", "\"\"", ";", "static", "final", "String", "STYLE_INACTIVE", "=", "\"inactive\"", ";", "static", "final", "String", "STYLE_FULL", "=", "\"full\"", ";", "static", "final", "String", "STYLE_LINK", "=", "\"link\"", ";", "static", "final", "String", "STYLE_THINLINK", "=", "\"thinlink\"", ";", "static", "final", "String", "STYLE_BOLD", "=", "\"bold\"", ";", "static", "final", "String", "STYLE_BLUEBOLD", "=", "\"bluebold\"", ";", "static", "final", "String", "STYLE_BLUEHOVER", "=", "\"bluehover\"", ";", "static", "final", "String", "STYLE_LINKBLACK", "=", "\"linkblack\"", ";", "static", "final", "String", "STYLE_LEFT", "=", "\"left\"", ";", "static", "final", "String", "STYLE_RIGHT", "=", "\"right\"", ";", "static", "final", "String", "STYLE_ERROR", "=", "\"error\"", ";", "static", "final", "String", "STYLE_LOGIN", "=", "\"login\"", ";", "static", "final", "String", "STYLE_NEWFIELD", "=", "\"newfield\"", ";", "static", "final", "String", "STYLE_INPUT_IPAD", "=", "\"ipad\"", ";", "static", "final", "String", "STYLE_TREETITLE", "=", "\"treetitle\"", ";", "static", "final", "String", "STYLE_TREEAVATAR", "=", "\"treeavatar\"", ";", "static", "final", "String", "STYLE_DEPTH", "=", "\"depth\"", ";", "static", "final", "String", "STYLE_ARROW", "=", "\"arrow\"", ";", "static", "final", "String", "STYLE_NOARROW", "=", "\"noarrow\"", ";", "static", "final", "String", "STYLE_ARROW_HIGHLIGHT", "=", "\"\"", ";", "static", "final", "String", "STYLE_COLLAPSED", "=", "\"collapsed\"", ";", "static", "final", "String", "STYLE_HUGE", "=", "\"huge\"", ";", "static", "final", "String", "STYLE_SMALL", "=", "\"small\"", ";", "static", "final", "String", "STYLE_MARGIN", "=", "\"margin\"", ";", "static", "final", "String", "STYLE_FOCUS_IPAD", "=", "\"ipad\"", ";", "static", "final", "String", "STYLE_INPUTBOX_DEFAULT", "=", "\"default\"", ";", "static", "{", "RIGHT_TRIANGLE", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "DOWN_TRIANGLE", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "AVATAR_CACHE", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "PUZZLE", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "DROPZONE", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "NEW_PEARLTREE", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "DESCRIPTION", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "GOBACK", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "OK", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\">", "\"", ";", "TEXTBOX", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\">", "\"", ";", "LOADINGMESSAGE", "=", "\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "BUTTON_GO_TO_APP", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "COOKIES", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "PEARLED", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\\\"/>", "\"", ";", "PRELOADED_PEARLED", "=", "\"<img", "src=\\\"\"", "+", "getUrl", "(", "\"\"", ")", "+", "\"\"", ";", "}", "public", "static", "String", "credentials", "=", "\"\"", ";", "static", "HTML", "createHtml", "(", ")", "{", "HTML", "item", "=", "new", "HTML", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXT", ")", ";", "return", "item", ";", "}", "static", "Label", "createLabel", "(", ")", "{", "Label", "item", "=", "new", "Label", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXT", ")", ";", "return", "item", ";", "}", "static", "InlineLabel", "createInlineLabel", "(", ")", "{", "InlineLabel", "item", "=", "new", "InlineLabel", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXT", ")", ";", "return", "item", ";", "}", "static", "InlineHTML", "createInlineHTML", "(", ")", "{", "InlineHTML", "item", "=", "new", "InlineHTML", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXT", ")", ";", "return", "item", ";", "}", "static", "TextBox", "createTextBox", "(", ")", "{", "TextBox", "item", "=", "new", "TextBox", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXTBOX", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "item", ".", "getElement", "(", ")", ".", "setAttribute", "(", "\"autocorrect\"", ",", "\"off\"", ")", ";", "item", ".", "getElement", "(", ")", ".", "setAttribute", "(", "\"\"", ",", "\"off\"", ")", ";", "}", "return", "item", ";", "}", "static", "PasswordTextBox", "createPasswordTextBox", "(", ")", "{", "PasswordTextBox", "item", "=", "new", "PasswordTextBox", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXTBOX", ")", ";", "return", "item", ";", "}", "static", "TreeListItem", "createTreeListItem", "(", ")", "{", "TreeListItem", "panel", "=", "new", "TreeListItem", "(", ")", ";", "panel", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_TEXT", ")", ";", "return", "panel", ";", "}", "static", "Label", "createIndentBlock", "(", ")", "{", "Label", "item", "=", "new", "Label", "(", ")", ";", "item", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_INDENTBLOCK", ")", ";", "return", "item", ";", "}", "static", "void", "createGoAccount", "(", "Panel", "panel", ",", "boolean", "active", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "return", ";", "}", "HTML", "item", "=", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "item", ")", ";", "item", ".", "setHTML", "(", "RIGHT_TRIANGLE", "+", "\"\"", ")", ";", "if", "(", "active", ")", "{", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onGoAccount", "(", ")", ";", "}", "}", ")", ";", "}", "item", ".", "addStyleDependentName", "(", "active", "?", "STYLE_LINK", ":", "STYLE_INACTIVE", ")", ";", "setMarginBottom", "(", "item", ",", "10", ")", ";", "}", "static", "void", "createConnectAccount", "(", "Panel", "panel", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "return", ";", "}", "HTML", "item", "=", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "item", ")", ";", "item", ".", "setHTML", "(", "RIGHT_TRIANGLE", "+", "\"\"", ")", ";", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onGoToSyncAccount", "(", ")", ";", "}", "}", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_LINK", ")", ";", "setMarginBottom", "(", "item", ",", "10", ")", ";", "}", "static", "void", "createSwitchMode", "(", "Panel", "panel", ",", "boolean", "active", ",", "boolean", "currentIsGoDirectly", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "return", ";", "}", "HTML", "item", "=", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "item", ")", ";", "item", ".", "setHTML", "(", "currentIsGoDirectly", "?", "RIGHT_TRIANGLE", "+", "\"\"", ":", "RIGHT_TRIANGLE", "+", "\"\"", ")", ";", "if", "(", "active", ")", "{", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onSwichModeClicked", "(", ")", ";", "}", "}", ")", ";", "}", "item", ".", "addStyleDependentName", "(", "active", "?", "STYLE_LINK", ":", "STYLE_INACTIVE", ")", ";", "setMarginBottom", "(", "item", ",", "10", ")", ";", "}", "static", "void", "createAvatar", "(", "Panel", "panel", ")", "{", "InlineHTML", "item", "=", "new", "InlineHTML", "(", ")", ";", "panel", ".", "add", "(", "item", ")", ";", "item", ".", "setHTML", "(", "AVATAR_CACHE", ")", ";", "}", "static", "void", "createDescription", "(", "Panel", "panel", ",", "final", "FlowPanel", "description", ",", "boolean", "active", ",", "String", "label", ",", "final", "boolean", "begin", ")", "{", "description", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_DESCRIPTION", ")", ";", "description", ".", "addStyleDependentName", "(", "STYLE_DESCRIPTION_UP", ")", ";", "panel", ".", "add", "(", "description", ")", ";", "HTML", "descriptionBox", "=", "createHtml", "(", ")", ";", "descriptionBox", ".", "setHTML", "(", "DESCRIPTION", ")", ";", "descriptionBox", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_AVATARBOX", ")", ";", "descriptionBox", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SPECIAL_PADDING", ")", ";", "description", ".", "add", "(", "descriptionBox", ")", ";", "Label", "item", "=", "createLabel", "(", ")", ";", "description", ".", "add", "(", "item", ")", ";", "item", ".", "setText", "(", "label", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_TREETITLE", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_ITEM", ")", ";", "if", "(", "active", ")", "{", "descriptionBox", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "if", "(", "begin", ")", "{", "description", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED_TIMER", ")", ";", "TreeListUI", ".", "onClickedDirectly", "(", ")", ";", "}", "else", "{", "TreeListUI", ".", "onDefaultItemClicked", "(", ")", ";", "}", "}", "}", ")", ";", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "if", "(", "begin", ")", "{", "description", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED_TIMER", ")", ";", "TreeListUI", ".", "onClickedDirectly", "(", ")", ";", "}", "else", "{", "TreeListUI", ".", "onDefaultItemClicked", "(", ")", ";", "}", "}", "}", ")", ";", "}", "}", "static", "void", "createGoBackToApp", "(", "Panel", "panel", ",", "boolean", "active", ")", "{", "FlowPanel", "goBack", "=", "new", "FlowPanel", "(", ")", ";", "goBack", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_DESCRIPTION", ")", ";", "goBack", ".", "addStyleDependentName", "(", "STYLE_DESCRIPTION_DOWN", ")", ";", "panel", ".", "add", "(", "goBack", ")", ";", "HTML", "goBackBox", "=", "createHtml", "(", ")", ";", "goBackBox", ".", "setHTML", "(", "GOBACK", ")", ";", "goBackBox", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_AVATARBOX", ")", ";", "goBackBox", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SPECIAL_PADDING", ")", ";", "goBack", ".", "add", "(", "goBackBox", ")", ";", "Label", "item", "=", "createLabel", "(", ")", ";", "goBack", ".", "add", "(", "item", ")", ";", "item", ".", "setText", "(", "\"\"", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_TREETITLE", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_ITEM", ")", ";", "Label", "escape", "=", "createLabel", "(", ")", ";", "goBack", ".", "add", "(", "escape", ")", ";", "escape", ".", "setText", "(", "\"Exit\"", ")", ";", "escape", ".", "addStyleDependentName", "(", "STYLE_TREETITLE", ")", ";", "escape", ".", "addStyleDependentName", "(", "STYLE_ESCAPE", ")", ";", "HTML", "preload", "=", "createHtml", "(", ")", ";", "preload", ".", "setHTML", "(", "PRELOADED_PEARLED", ")", ";", "goBack", ".", "add", "(", "preload", ")", ";", "if", "(", "active", ")", "{", "goBackBox", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onSwichModeClicked", "(", ")", ";", "}", "}", ")", ";", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onSwichModeClicked", "(", ")", ";", "}", "}", ")", ";", "escape", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onEscapeItemClicked", "(", ")", ";", "}", "}", ")", ";", "}", "}", "static", "void", "createDirectAction", "(", "Panel", "panel", ",", "boolean", "active", ",", "boolean", "currentIsGoDirectly", ")", "{", "HTML", "item", "=", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "item", ")", ";", "item", ".", "setHTML", "(", "currentIsGoDirectly", "?", "DOWN_TRIANGLE", "+", "\"\"", ":", "DOWN_TRIANGLE", "+", "\"\"", ")", ";", "item", ".", "addStyleDependentName", "(", "active", "?", "STYLE_LINK", ":", "STYLE_INACTIVE", ")", ";", "if", "(", "active", ")", "{", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "TreeListUI", ".", "onDefaultItemClicked", "(", ")", ";", "}", "}", ")", ";", "}", "setMarginBottom", "(", "item", ",", "5", ")", ";", "}", "static", "void", "createNewPearltree", "(", "Panel", "panel", ",", "boolean", "active", ")", "{", "final", "Label", "item", "=", "createLabel", "(", ")", ";", "final", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "item", ".", "setText", "(", "\"\"", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "description", ".", "setStylePrimaryName", "(", "PRIMARY_STYLE_NEWPEARLTREE", ")", ";", "panel", ".", "add", "(", "description", ")", ";", "HTML", "newPearltreeBox", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "newPearltreeBox", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_AVATARBOX", ")", ";", "newPearltreeBox", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SPECIAL_PADDING", ")", ";", "newPearltreeBox", ".", "setHTML", "(", "NEW_PEARLTREE", ")", ";", "description", ".", "add", "(", "newPearltreeBox", ")", ";", "description", ".", "add", "(", "item", ")", ";", "}", "else", "{", "panel", ".", "add", "(", "item", ")", ";", "}", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "item", ".", "addStyleDependentName", "(", "STYLE_SELECTABLE", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_BOLD", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_PADDING", ")", ";", "}", "item", ".", "addStyleDependentName", "(", "STYLE_SELECTABLE", ")", ";", "item", ".", "addStyleDependentName", "(", "STYLE_ITEM", ")", ";", "if", "(", "active", ")", "{", "item", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "description", ".", "addStyleDependentName", "(", "STYLE_SELECTED_TIMER", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "DOM", ".", "removeElementAttribute", "(", "TreeListUI", ".", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ")", ";", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "NewTree", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "120", ")", ";", "}", "else", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "NewTree", ")", ";", "}", "}", "}", ")", ";", "}", "else", "{", "item", ".", "addStyleDependentName", "(", "STYLE_INACTIVE", ")", ";", "}", "}", "static", "void", "setMarginBottom", "(", "Widget", "w", ",", "double", "px", ")", "{", "w", ".", "getElement", "(", ")", ".", "getStyle", "(", ")", ".", "setMarginBottom", "(", "px", ",", "Unit", ".", "PX", ")", ";", "}", "static", "void", "setMarginTop", "(", "Widget", "w", ",", "double", "px", ")", "{", "w", ".", "getElement", "(", ")", ".", "getStyle", "(", ")", ".", "setMarginTop", "(", "px", ",", "Unit", ".", "PX", ")", ";", "}", "private", "static", "native", "String", "getUrl", "(", "String", "file", ")", ";", "static", "void", "createCredentials", "(", "Panel", "panel", ",", "UserTrees", "userTrees", ")", "{", "if", "(", "credentials", ".", "isEmpty", "(", ")", ")", "{", "return", ";", "}", "int", "n", "=", "0", ";", "Label", "l", "=", "null", ";", "String", "[", "]", "c", "=", "credentials", ".", "split", "(", "\":\"", ")", ";", "for", "(", "int", "i", "=", "1", ";", "i", "<", "c", ".", "length", ";", "i", "+=", "2", ")", "{", "final", "String", "user", "=", "c", "[", "i", "-", "1", "]", ".", "trim", "(", ")", ";", "if", "(", "userTrees", ".", "getStatus", "(", ")", "==", "UserTrees", ".", "LOADED", "&&", "user", ".", "equals", "(", "userTrees", ".", "getTreeTitle", "(", "UserTrees", ".", "ROOTTREE_INDEX", ")", ")", ")", "{", "continue", ";", "}", "final", "String", "pass", "=", "c", "[", "i", "]", ".", "trim", "(", ")", ";", "l", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "panel", ".", "add", "(", "l", ")", ";", "l", ".", "setText", "(", "\"Log", "in", "as", "\"", "+", "user", ")", ";", "l", ".", "addStyleDependentName", "(", "STYLE_LINK", ")", ";", "l", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "LoginUI", ".", "sendLogin", "(", "user", ",", "pass", ")", ";", "}", "}", ")", ";", "n", "++", ";", "}", "if", "(", "n", "!=", "0", ")", "{", "setMarginBottom", "(", "l", ",", "10", ")", ";", "}", "}", "}", "</s>" ]
8,503
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "google", ".", "gwt", ".", "core", ".", "client", ".", "*", ";", "public", "class", "PopupMain", "implements", "EntryPoint", "{", "@", "Override", "public", "void", "onModuleLoad", "(", ")", "{", "PopupControl", ".", "onModuleLoad", "(", ")", ";", "}", "}", "</s>" ]
8,504
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "shared", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "PearledUI", "{", "private", "static", "HandlerRegistration", "clickListener", ";", "private", "static", "HandlerRegistration", "keyPressListener", ";", "private", "static", "HandlerRegistration", "blurListener", ";", "static", "void", "init", "(", "Panel", "parent", ",", "boolean", "hasCreatedNewTree", ",", "boolean", "isPearlable", ")", "{", "PopupControl", ".", "panelScrollableExist", "=", "false", ";", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "FocusPanel", "focus", "=", "new", "FocusPanel", "(", "panel", ")", ";", "parent", ".", "add", "(", "focus", ")", ";", "focus", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_FOCUS", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "focus", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_FOCUS_IPAD", ")", ";", "}", "focus", ".", "setFocus", "(", "true", ")", ";", "String", "text", ";", "if", "(", "hasCreatedNewTree", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "text", "=", "\"\"", ";", "}", "else", "{", "text", "=", "\"Done!\"", ";", "}", "}", "else", "if", "(", "!", "isPearlable", ")", "{", "text", "=", "\"\"", ";", "}", "else", "{", "text", "=", "\"Pearled!\"", ";", "}", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "Label", "label", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "label", ".", "setText", "(", "text", ")", ";", "label", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "panel", ".", "add", "(", "label", ")", ";", "}", "else", "{", "HTML", "message", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "message", ".", "setHTML", "(", "text", ")", ";", "message", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_PEARLED_IPAD", ")", ";", "panel", ".", "add", "(", "message", ")", ";", "HTML", "logo", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "logo", ".", "setHTML", "(", "PopupElements", ".", "PEARLED", ")", ";", "logo", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_PEARLED_IPAD", ")", ";", "if", "(", "hasCreatedNewTree", ")", "{", "logo", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_REALLY_UNDER_MESSAGE", ")", ";", "}", "else", "{", "logo", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_UNDER_MESSAGE", ")", ";", "}", "panel", ".", "add", "(", "logo", ")", ";", "}", "clickListener", "=", "focus", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "keyPressListener", "=", "focus", ".", "addKeyPressHandler", "(", "new", "KeyPressHandler", "(", ")", "{", "@", "Override", "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "blurListener", "=", "focus", ".", "addBlurHandler", "(", "new", "BlurHandler", "(", ")", "{", "@", "Override", "public", "void", "onBlur", "(", "BlurEvent", "event", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "1000", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "public", "static", "final", "void", "closeWindow", "(", ")", "{", "if", "(", "clickListener", "!=", "null", ")", "{", "clickListener", ".", "removeHandler", "(", ")", ";", "}", "if", "(", "keyPressListener", "!=", "null", ")", "{", "keyPressListener", ".", "removeHandler", "(", ")", ";", "}", "if", "(", "blurListener", "!=", "null", ")", "{", "blurListener", ".", "removeHandler", "(", ")", ";", "}", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", "</s>" ]
8,505
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "TreeCreatedUI", "{", "static", "void", "init", "(", "Panel", "parent", ")", "{", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "FocusPanel", "focus", "=", "new", "FocusPanel", "(", "panel", ")", ";", "parent", ".", "add", "(", "focus", ")", ";", "focus", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_FOCUS", ")", ";", "focus", ".", "setFocus", "(", "true", ")", ";", "HTML", "header", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "header", ")", ";", "header", ".", "setHTML", "(", "PopupElements", ".", "DOWN_TRIANGLE", "+", "\"\"", ")", ";", "header", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BLUEBOLD", ")", ";", "PopupElements", ".", "setMarginBottom", "(", "header", ",", "20", ")", ";", "FlowPanel", "buttons", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "buttons", ")", ";", "Label", "ok", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "buttons", ".", "add", "(", "ok", ")", ";", "ok", ".", "setText", "(", "\"ok\"", ")", ";", "ok", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "ok", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_RIGHT", ")", ";", "focus", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "focus", ".", "addKeyPressHandler", "(", "new", "KeyPressHandler", "(", ")", "{", "@", "Override", "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "focus", ".", "addBlurHandler", "(", "new", "BlurHandler", "(", ")", "{", "@", "Override", "public", "void", "onBlur", "(", "BlurEvent", "event", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "}", "</s>" ]
8,506
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "LoadingUI", "{", "static", "void", "init", "(", "Panel", "parent", ",", "UserTrees", "userTrees", ")", "{", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "parent", ".", "add", "(", "panel", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "Label", "header", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "header", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "panel", ".", "add", "(", "header", ")", ";", "header", ".", "setText", "(", "\"Loading\"", ")", ";", "}", "else", "{", "PopupControl", ".", "panelScrollableExist", "=", "false", ";", "panel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NONSCROLLABLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panel", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "true", ",", "\"\"", ",", "true", ")", ";", "FlowPanel", "panelInside", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "panelInside", ")", ";", "FlowPanel", "scroller", "=", "new", "FlowPanel", "(", ")", ";", "panelInside", ".", "add", "(", "scroller", ")", ";", "DOM", ".", "setElementAttribute", "(", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "DOM", ".", "setElementAttribute", "(", "scroller", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"scroller\"", ")", ";", "PopupControl", ".", "onResize", "(", ")", ";", "HTML", "message", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "message", ".", "setHTML", "(", "PopupElements", ".", "LOADINGMESSAGE", ")", ";", "message", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_CENTERED", ")", ";", "panel", ".", "add", "(", "message", ")", ";", "PopupElements", ".", "createGoBackToApp", "(", "panel", ",", "false", ")", ";", "}", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "}", "</s>" ]
8,507
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ".", "PopupControl", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "shared", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "public", "class", "InactiveUI", "{", "private", "static", "HandlerRegistration", "clickListener", ";", "private", "static", "HandlerRegistration", "keyPressListener", ";", "static", "void", "init", "(", "Panel", "parent", ",", "PopupUIs", "ui", ")", "{", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "FocusPanel", "focus", "=", "new", "FocusPanel", "(", "panel", ")", ";", "parent", ".", "add", "(", "focus", ")", ";", "focus", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_FOCUS", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "focus", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_FOCUS_IPAD", ")", ";", "}", "focus", ".", "setFocus", "(", "true", ")", ";", "HTML", "label1", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "HTML", "label1bis", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "label1", ")", ";", "label1", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BLUEHOVER", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "label1", ".", "setHTML", "(", "\"\"", "+", "\"<br", "/>\"", "+", "\"\"", "+", "\"<br", "/>\"", "+", "\"<br", "/>\"", "+", "\"\"", "+", "\"<br", "/>\"", "+", "\"\"", "+", "\"<br", "/>\"", "+", "\"\"", ")", ";", "label1", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_FOCUS_IPAD", ")", ";", "label1", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "}", "else", "{", "label1", ".", "setHTML", "(", "\"Your", "\"", "+", "(", "WebContent", ".", "bookmarklet", "?", "\"bookmarklet\"", ":", "\"extension\"", ")", "+", "\"\"", ")", ";", "label1", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "}", "if", "(", "WebContent", ".", "onIpad", ")", "{", "panel", ".", "add", "(", "label1bis", ")", ";", "label1bis", ".", "setHTML", "(", "PopupElements", ".", "BUTTON_GO_TO_APP", ")", ";", "label1bis", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "}", "Label", "label2", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "panel", ".", "add", "(", "label2", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "label2", ".", "setText", "(", "\"\"", ")", ";", "label2", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SMALL", ")", ";", "}", "else", "{", "label2", ".", "setText", "(", "\"\"", ")", ";", "label2", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_HUGE", ")", ";", "label2", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BLUEHOVER", ")", ";", "}", "clickListener", "=", "label2", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "keyPressListener", "=", "focus", ".", "addKeyPressHandler", "(", "new", "KeyPressHandler", "(", ")", "{", "@", "Override", "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "closeWindow", "(", ")", ";", "}", "}", ")", ";", "}", "else", "{", "keyPressListener", "=", "label1bis", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "if", "(", "WebContent", ".", "onIpad", ")", "{", "TreeListUI", ".", "goBackToPT", "(", "null", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "1000", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "else", "{", "closeWindow", "(", ")", ";", "}", "}", "}", ")", ";", "}", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "public", "static", "final", "void", "closeWindow", "(", ")", "{", "if", "(", "clickListener", "!=", "null", ")", "{", "clickListener", ".", "removeHandler", "(", ")", ";", "}", "if", "(", "keyPressListener", "!=", "null", ")", "{", "keyPressListener", ".", "removeHandler", "(", ")", ";", "}", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", "</s>" ]
8,508
[ "<s>", "package", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ";", "import", "java", ".", "util", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "*", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "common", ".", "WebContent", ".", "PearltreesState", ";", "import", "com", ".", "broceliand", ".", "pearlbar", ".", "chrome", ".", "client", ".", "popup", ".", "PopupControl", ".", "PopupUIs", ";", "import", "com", ".", "google", ".", "gwt", ".", "core", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "event", ".", "dom", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "*", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "Timer", ";", "import", "com", ".", "google", ".", "gwt", ".", "user", ".", "client", ".", "ui", ".", "*", ";", "class", "TreeListUI", "{", "public", "static", "int", "currentTabId", ";", "public", "static", "String", "currentUrl", ";", "public", "static", "String", "currentTitle", ";", "public", "static", "boolean", "PearledDirect", "=", "false", ";", "private", "static", "Map", "<", "String", ",", "Integer", ">", "assoIds2Index", "=", "new", "HashMap", "<", "String", ",", "Integer", ">", "(", ")", ";", "public", "static", "FlowPanel", "panelInside", ";", "private", "static", "FlowPanel", "front", ";", "private", "static", "Panel", "parent", ";", "private", "static", "FlowPanel", "list", ";", "private", "static", "boolean", "listdisplayed", ";", "private", "static", "UserTrees", "userTrees", ";", "public", "static", "boolean", "isPearlable", ";", "private", "static", "boolean", "isInited", "=", "false", ";", "public", "static", "boolean", "treeListInited", "=", "false", ";", "public", "static", "boolean", "goDirectly", ";", "public", "static", "boolean", "chooseParent", ";", "public", "static", "boolean", "defaultItemClicked", "=", "false", ";", "static", "boolean", "isClosing", ";", "private", "static", "ArrayList", "<", "TreeNode", ">", "trees", ";", "private", "static", "int", "selectedIndex", ";", "private", "static", "String", "selectedId", ";", "private", "static", "Widget", "selectedWidget", ";", "private", "static", "TreeNode", "rootNode", ";", "private", "static", "TreeNode", "selectedTreeNode", ";", "static", "void", "init", "(", "Panel", "p", ",", "UserTrees", "ut", ")", "{", "parent", "=", "p", ";", "userTrees", "=", "ut", ";", "getTab", "(", ")", ";", "}", "private", "static", "void", "init", "(", ")", "{", "PearltreesState", "s", "=", "WebContent", ".", "getPearltreesState", "(", "currentUrl", ")", ";", "if", "(", "s", "==", "PearltreesState", ".", "Settings", ")", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "InSettings", ")", ";", "return", ";", "}", "else", "if", "(", "s", "==", "PearltreesState", ".", "Tunnel", "||", "s", "==", "PearltreesState", ".", "GetStarted", ")", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "InTunnel", ")", ";", "return", ";", "}", "else", "if", "(", "s", "==", "PearltreesState", ".", "BookmarkletTunnel", ")", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "InBookmarkletTunnel", ")", ";", "return", ";", "}", "if", "(", "!", "isInited", ")", "{", "chooseParent", "=", "false", ";", "if", "(", "!", "chooseParent", ")", "{", "isPearlable", "=", "WebContent", ".", "isWebUrl", "(", "currentUrl", ")", "&&", "!", "WebContent", ".", "isInPearltrees", "(", "currentUrl", ")", ";", "goDirectly", "=", "!", "isPearlable", ";", "if", "(", "goDirectly", ")", "{", "}", "}", "isInited", "=", "true", ";", "}", "initUI", "(", ")", ";", "}", "private", "static", "void", "initUI", "(", ")", "{", "isClosing", "=", "false", ";", "trees", "=", "new", "ArrayList", "<", "TreeNode", ">", "(", ")", ";", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "FocusPanel", "focus", "=", "new", "FocusPanel", "(", "panel", ")", ";", "parent", ".", "add", "(", "focus", ")", ";", "focus", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_FOCUS", ")", ";", "focus", ".", "setFocus", "(", "true", ")", ";", "selectedIndex", "=", "obtainSelectedTree", "(", "!", "chooseParent", "&&", "isPearlable", "&&", "!", "goDirectly", ")", ";", "selectedId", "=", "userTrees", ".", "getTreeId", "(", "selectedIndex", ")", ";", "selectedWidget", "=", "null", ";", "rootNode", "=", "buildTreeHierarchy", "(", ")", ";", "if", "(", "chooseParent", ")", "{", "initChooseParentUI", "(", "panel", ")", ";", "}", "else", "if", "(", "!", "isPearlable", ")", "{", "initUnpearlableUI", "(", "panel", ")", ";", "}", "else", "if", "(", "goDirectly", ")", "{", "initGoDireclyUI", "(", "panel", ")", ";", "}", "else", "{", "initPearlDirectlyUI", "(", "panel", ")", ";", "}", "focus", ".", "addKeyPressHandler", "(", "new", "KeyPressHandler", "(", ")", "{", "@", "Override", "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "if", "(", "event", ".", "getCharCode", "(", ")", "==", "13", ")", "{", "onDefaultItemClicked", "(", ")", ";", "}", "}", "}", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "private", "static", "void", "initTreeList", "(", "Panel", "panel", ")", "{", "addTreeItem", "(", "panel", ",", "UserTrees", ".", "ROOTTREE_INDEX", ",", "selectedIndex", ",", "true", ")", ";", "int", "size", "=", "userTrees", ".", "getTreeCount", "(", ")", ";", "if", "(", "size", ">", "UserTrees", ".", "ROOTTREE_INDEX", "+", "1", ")", "{", "listdisplayed", "=", "true", ";", "list", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "list", ")", ";", "list", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_TREELIST", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "list", ".", "setHeight", "(", "(", "PopupControl", ".", "height", "-", "list", ".", "getAbsoluteTop", "(", ")", ")", "+", "\"px\"", ")", ";", "}", "addChildrenToPanel", "(", "rootNode", ".", "getChildren", "(", ")", ",", "list", ")", ";", "DOM", ".", "setElementAttribute", "(", "selectedWidget", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"selected\"", ")", ";", "if", "(", "selectedIndex", ">", "UserTrees", ".", "ROOTTREE_INDEX", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "selectedWidget", ".", "getElement", "(", ")", ".", "scrollIntoView", "(", ")", ";", "}", "}", "}", "}", "private", "static", "TreeNode", "buildTreeHierarchy", "(", ")", "{", "int", "size", "=", "userTrees", ".", "getTreeCount", "(", ")", ";", "TreeNode", "dropZoneNode", "=", "new", "TreeNode", "(", "null", ")", ";", "trees", ".", "add", "(", "dropZoneNode", ")", ";", "TreeNode", "rootNode", "=", "new", "TreeNode", "(", "null", ")", ";", "trees", ".", "add", "(", "rootNode", ")", ";", "assoIds2Index", ".", "put", "(", "userTrees", ".", "getTreeId", "(", "UserTrees", ".", "ROOTTREE_INDEX", ")", ",", "new", "Integer", "(", "UserTrees", ".", "ROOTTREE_INDEX", ")", ")", ";", "if", "(", "size", ">", "UserTrees", ".", "ROOTTREE_INDEX", "+", "1", ")", "{", "int", "currentDepth", "=", "0", ";", "TreeNode", "currentParentNode", "=", "rootNode", ";", "for", "(", "int", "i", "=", "UserTrees", ".", "ROOTTREE_INDEX", "+", "1", ";", "i", "<", "size", ";", "i", "++", ")", "{", "int", "treeDepth", "=", "userTrees", ".", "getTreeDepth", "(", "i", ")", ";", "int", "difference", "=", "currentDepth", "-", "treeDepth", ";", "if", "(", "difference", ">=", "0", ")", "{", "for", "(", "int", "j", "=", "0", ";", "j", "<=", "difference", ";", "j", "++", ")", "{", "currentParentNode", "=", "currentParentNode", ".", "getParent", "(", ")", ";", "}", "}", "if", "(", "userTrees", ".", "getTreeId", "(", "i", ")", ".", "equals", "(", "userTrees", ".", "getTreeAssoId", "(", "i", ")", ")", ")", "{", "assoIds2Index", ".", "put", "(", "userTrees", ".", "getTreeId", "(", "i", ")", ",", "new", "Integer", "(", "i", ")", ")", ";", "}", "TreeNode", "treeNode", "=", "new", "TreeNode", "(", "currentParentNode", ")", ";", "trees", ".", "add", "(", "treeNode", ")", ";", "if", "(", "i", "==", "selectedIndex", ")", "{", "selectedTreeNode", "=", "treeNode", ";", "}", "currentParentNode", ".", "addChild", "(", "treeNode", ")", ";", "currentParentNode", "=", "treeNode", ";", "currentDepth", "=", "treeDepth", ";", "}", "}", "return", "rootNode", ";", "}", "private", "static", "boolean", "isInSelectedParentPath", "(", "int", "index", ")", "{", "if", "(", "selectedTreeNode", "!=", "null", ")", "{", "TreeNode", "currentNode", "=", "selectedTreeNode", ";", "while", "(", "currentNode", "!=", "null", ")", "{", "if", "(", "trees", ".", "indexOf", "(", "currentNode", ")", "==", "index", ")", "{", "return", "true", ";", "}", "currentNode", "=", "currentNode", ".", "getParent", "(", ")", ";", "}", "}", "return", "false", ";", "}", "private", "static", "void", "addChildrenToPanel", "(", "ArrayList", "<", "TreeNode", ">", "children", ",", "Panel", "panel", ")", "{", "if", "(", "children", "!=", "null", "&&", "!", "children", ".", "isEmpty", "(", ")", ")", "{", "for", "(", "TreeNode", "child", ":", "children", ")", "{", "FlowPanel", "wrapper", "=", "new", "FlowPanel", "(", ")", ";", "int", "index", "=", "trees", ".", "indexOf", "(", "child", ")", ";", "wrapper", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_TREENODEPANEL", ")", ";", "panel", ".", "add", "(", "wrapper", ")", ";", "ArrayList", "<", "TreeNode", ">", "children2", "=", "child", ".", "getChildren", "(", ")", ";", "Boolean", "hasChildren", "=", "(", "children2", "!=", "null", "&&", "!", "children2", ".", "isEmpty", "(", ")", ")", ";", "addTreeItem", "(", "wrapper", ",", "index", ",", "selectedIndex", ",", "hasChildren", ")", ";", "int", "collapsed", "=", "userTrees", ".", "getTreeCollapsed", "(", "index", ")", ";", "if", "(", "collapsed", "==", "1", "&&", "!", "isInSelectedParentPath", "(", "index", ")", "||", "collapsed", "==", "0", "&&", "userTrees", ".", "getTreeCollapsed", "(", "trees", ".", "indexOf", "(", "child", ".", "getParent", "(", ")", ")", ")", "==", "1", "&&", "child", ".", "getParent", "(", ")", "==", "selectedTreeNode", ")", "{", "wrapper", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "}", "else", "if", "(", "hasChildren", ")", "{", "FlowPanel", "childrenPanel", "=", "new", "FlowPanel", "(", ")", ";", "wrapper", ".", "add", "(", "childrenPanel", ")", ";", "childrenPanel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_CHILDRENPANEL", ")", ";", "addChildrenToPanel", "(", "children2", ",", "childrenPanel", ")", ";", "}", "}", "}", "}", "private", "static", "void", "removeChildrenFromPanel", "(", "FlowPanel", "panel", ")", "{", "panel", ".", "remove", "(", "1", ")", ";", "}", "private", "static", "void", "initChooseParentUI", "(", "Panel", "panel", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "HTML", "choose", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "panel", ".", "add", "(", "choose", ")", ";", "choose", ".", "setHTML", "(", "PopupElements", ".", "DOWN_TRIANGLE", "+", "\"\"", ")", ";", "choose", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LINK", ")", ";", "PopupElements", ".", "setMarginBottom", "(", "choose", ",", "5", ")", ";", "choose", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onDefaultItemClicked", "(", ")", ";", "}", "}", ")", ";", "initTreeList", "(", "panel", ")", ";", "}", "else", "{", "PopupControl", ".", "panelScrollableExist", "=", "true", ";", "panel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NONSCROLLABLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panel", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "false", ",", "\"\"", ",", "false", ")", ";", "panelInside", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "panelInside", ")", ";", "FlowPanel", "scroller", "=", "new", "FlowPanel", "(", ")", ";", "panelInside", ".", "add", "(", "scroller", ")", ";", "DOM", ".", "setElementAttribute", "(", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "DOM", ".", "setElementAttribute", "(", "scroller", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"scroller\"", ")", ";", "PopupControl", ".", "onResize", "(", ")", ";", "initTreeList", "(", "scroller", ")", ";", "PopupControl", ".", "setNewScroll", "(", "\"\"", ")", ";", "}", "}", "private", "static", "void", "initUnpearlableUI", "(", "Panel", "panel", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "PopupElements", ".", "createCredentials", "(", "panel", ",", "userTrees", ")", ";", "PopupElements", ".", "createConnectAccount", "(", "panel", ")", ";", "PopupElements", ".", "createDirectAction", "(", "panel", ",", "true", ",", "goDirectly", ")", ";", "initTreeList", "(", "panel", ")", ";", "}", "else", "{", "PopupControl", ".", "panelScrollableExist", "=", "false", ";", "panel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NONSCROLLABLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panel", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "false", ",", "\"\"", ",", "false", ")", ";", "panelInside", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "panelInside", ")", ";", "FlowPanel", "scroller", "=", "new", "FlowPanel", "(", ")", ";", "panelInside", ".", "add", "(", "scroller", ")", ";", "DOM", ".", "setElementAttribute", "(", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "DOM", ".", "setElementAttribute", "(", "scroller", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"scroller\"", ")", ";", "PopupControl", ".", "onResize", "(", ")", ";", "PopupElements", ".", "createGoBackToApp", "(", "panel", ",", "true", ")", ";", "}", "}", "private", "static", "void", "initGoDireclyUI", "(", "Panel", "panel", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "PopupElements", ".", "createCredentials", "(", "panel", ",", "userTrees", ")", ";", "PopupElements", ".", "createGoAccount", "(", "panel", ",", "true", ")", ";", "PopupElements", ".", "createSwitchMode", "(", "panel", ",", "true", ",", "goDirectly", ")", ";", "PopupElements", ".", "createConnectAccount", "(", "panel", ")", ";", "PopupElements", ".", "createDirectAction", "(", "panel", ",", "true", ",", "goDirectly", ")", ";", "initTreeList", "(", "panel", ")", ";", "}", "else", "{", "PopupControl", ".", "panelScrollableExist", "=", "true", ";", "panel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NONSCROLLABLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panel", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "true", ",", "\"\"", ",", "false", ")", ";", "Label", "backToList", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "description", ".", "add", "(", "backToList", ")", ";", "backToList", ".", "setText", "(", "\"Go", "back\"", ")", ";", "backToList", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_TREETITLE", ")", ";", "backToList", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BACKTOLIST", ")", ";", "backToList", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onSwichModeClicked", "(", ")", ";", "}", "}", ")", ";", "panelInside", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "panelInside", ")", ";", "FlowPanel", "scroller", "=", "new", "FlowPanel", "(", ")", ";", "panelInside", ".", "add", "(", "scroller", ")", ";", "DOM", ".", "setElementAttribute", "(", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "DOM", ".", "setElementAttribute", "(", "scroller", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"scroller\"", ")", ";", "PopupControl", ".", "onResize", "(", ")", ";", "initTreeList", "(", "scroller", ")", ";", "PopupControl", ".", "setNewScroll", "(", "\"\"", ")", ";", "}", "}", "private", "static", "void", "initPearlDirectlyUI", "(", "Panel", "panel", ")", "{", "PopupElements", ".", "createCredentials", "(", "panel", ",", "userTrees", ")", ";", "PopupElements", ".", "createGoAccount", "(", "panel", ",", "true", ")", ";", "PopupElements", ".", "createSwitchMode", "(", "panel", ",", "true", ",", "goDirectly", ")", ";", "PopupElements", ".", "createConnectAccount", "(", "panel", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "PopupElements", ".", "createDirectAction", "(", "panel", ",", "true", ",", "goDirectly", ")", ";", "PopupElements", ".", "createNewPearltree", "(", "panel", ",", "true", ")", ";", "addTreeItem", "(", "panel", ",", "UserTrees", ".", "DROPZONE_INDEX", ",", "selectedIndex", ",", "false", ")", ";", "Label", "existing", "=", "PopupElements", ".", "createLabel", "(", ")", ";", "existing", ".", "setText", "(", "\"\"", ")", ";", "existing", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BOLD", ")", ";", "existing", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_PADDING", ")", ";", "existing", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_ITEM", ")", ";", "panel", ".", "add", "(", "existing", ")", ";", "initTreeList", "(", "panel", ")", ";", "}", "else", "{", "PopupControl", ".", "panelScrollableExist", "=", "true", ";", "panel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_NONSCROLLABLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panel", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "FlowPanel", "description", "=", "new", "FlowPanel", "(", ")", ";", "PopupElements", ".", "createDescription", "(", "panel", ",", "description", ",", "true", ",", "\"\"", ",", "false", ")", ";", "panelInside", "=", "new", "FlowPanel", "(", ")", ";", "panel", ".", "add", "(", "panelInside", ")", ";", "FlowPanel", "scroller", "=", "new", "FlowPanel", "(", ")", ";", "panelInside", ".", "add", "(", "scroller", ")", ";", "panelInside", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_INVISIBLE", ")", ";", "DOM", ".", "setElementAttribute", "(", "panelInside", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"\"", ")", ";", "DOM", ".", "setElementAttribute", "(", "scroller", ".", "getElement", "(", ")", ",", "\"id\"", ",", "\"scroller\"", ")", ";", "PopupControl", ".", "onResize", "(", ")", ";", "addTreeItem", "(", "scroller", ",", "UserTrees", ".", "DROPZONE_INDEX", ",", "selectedIndex", ",", "false", ")", ";", "PopupElements", ".", "createNewPearltree", "(", "scroller", ",", "true", ")", ";", "initTreeList", "(", "scroller", ")", ";", "PopupElements", ".", "createGoBackToApp", "(", "panel", ",", "true", ")", ";", "PopupControl", ".", "setNewScroll", "(", "\"\"", ")", ";", "scrollToSelected", "(", ")", ";", "}", "}", "private", "static", "void", "addTreeItem", "(", "Panel", "panel", ",", "final", "int", "index", ",", "int", "selectedIndex", ",", "boolean", "hasChildren", ")", "{", "final", "TreeListItem", "treeListItem", "=", "PopupElements", ".", "createTreeListItem", "(", ")", ";", "panel", ".", "add", "(", "treeListItem", ")", ";", "String", "avatarcache", "=", "PopupElements", ".", "AVATAR_CACHE", ";", "String", "title", ";", "if", "(", "index", "==", "UserTrees", ".", "DROPZONE_INDEX", ")", "{", "title", "=", "\"\"", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_BOLD", ")", ";", "}", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_PADDING", ")", ";", "}", "else", "{", "if", "(", "index", "==", "UserTrees", ".", "ROOTTREE_INDEX", ")", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_PADDING", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_MARGIN", ")", ";", "}", "}", "title", "=", "userTrees", ".", "getTreeTitle", "(", "index", ")", ";", "}", "if", "(", "index", ">", "UserTrees", ".", "ROOTTREE_INDEX", "&&", "userTrees", ".", "isTeam", "(", "index", ")", ")", "{", "title", "=", "\"team", "\"", "+", "title", ";", "avatarcache", "=", "PopupElements", ".", "PUZZLE", "+", "avatarcache", ";", "}", "boolean", "isFull", "=", "(", "chooseParent", "||", "!", "goDirectly", ")", "&&", "index", ">", "UserTrees", ".", "ROOTTREE_INDEX", "&&", "userTrees", ".", "isTreeFull", "(", "index", ")", ";", "if", "(", "isFull", ")", "{", "title", "+=", "\"", "(full)\"", ";", "}", "final", "int", "depth", "=", "userTrees", ".", "getTreeDepth", "(", "index", ")", ";", "panel", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_DEPTH", "+", "depth", ")", ";", "FlowPanel", "wrapper", "=", "new", "FlowPanel", "(", ")", ";", "wrapper", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_FLOATWRAPPER", ")", ";", "treeListItem", ".", "add", "(", "wrapper", ")", ";", "int", "u", "=", "(", "WebContent", ".", "onIpad", "?", "0", ":", "1", ")", ";", "for", "(", "int", "i", "=", "u", ";", "i", "<=", "Math", ".", "min", "(", "depth", ",", "12", ")", ";", "i", "++", ")", "{", "boolean", "isLast", "=", "(", "i", "==", "Math", ".", "min", "(", "depth", ",", "12", ")", ")", ";", "Label", "indentBlock", "=", "PopupElements", ".", "createIndentBlock", "(", ")", ";", "indentBlock", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_DEPTH", "+", "i", ")", ";", "if", "(", "!", "isFull", ")", "{", "if", "(", "isLast", "&&", "hasChildren", ")", "{", "indentBlock", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_ARROW", ")", ";", "indentBlock", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onArrowClicked", "(", "index", ")", ";", "event", ".", "stopPropagation", "(", ")", ";", "}", "}", ")", ";", "indentBlock", ".", "addMouseOverHandler", "(", "new", "MouseOverHandler", "(", ")", "{", "@", "Override", "public", "void", "onMouseOver", "(", "MouseOverEvent", "event", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "getParent", "(", ")", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_ARROW_HIGHLIGHT", ")", ";", "}", "}", "}", ")", ";", "indentBlock", ".", "addMouseOutHandler", "(", "new", "MouseOutHandler", "(", ")", "{", "@", "Override", "public", "void", "onMouseOut", "(", "MouseOutEvent", "event", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "getParent", "(", ")", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_ARROW_HIGHLIGHT", ")", ";", "}", "}", "}", ")", ";", "}", "else", "{", "if", "(", "isLast", ")", "{", "indentBlock", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_NOARROW", ")", ";", "}", "}", "}", "wrapper", ".", "add", "(", "indentBlock", ")", ";", "}", "HTML", "avatarBox", "=", "null", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "String", "avatar", "=", "\"\"", "+", "getTreeAvatarURL", "(", "index", ")", "+", "\"\\\"/>", "\"", ";", "avatarBox", "=", "PopupElements", ".", "createHtml", "(", ")", ";", "avatarBox", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_AVATARBOX", ")", ";", "if", "(", "index", "==", "UserTrees", ".", "DROPZONE_INDEX", ")", "{", "avatarBox", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SPECIAL_PADDING", ")", ";", "avatar", "=", "PopupElements", ".", "DROPZONE", ";", "avatarBox", ".", "setHTML", "(", "avatar", ")", ";", "}", "else", "{", "avatarBox", ".", "setHTML", "(", "avatar", "+", "avatarcache", ")", ";", "}", "treeListItem", ".", "add", "(", "avatarBox", ")", ";", "}", "InlineHTML", "titleBox", "=", "PopupElements", ".", "createInlineHTML", "(", ")", ";", "titleBox", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_TREETITLE", ")", ";", "titleBox", ".", "setHTML", "(", "Alerts", ".", "escapeHtml", "(", "title", ")", ")", ";", "treeListItem", ".", "add", "(", "titleBox", ")", ";", "if", "(", "!", "isFull", ")", "{", "TreeNode", "treeNode", "=", "trees", ".", "get", "(", "index", ")", ";", "treeNode", ".", "setTreeListItem", "(", "treeListItem", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "titleBox", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onItemClicked", "(", "index", ")", ";", "}", "}", ")", ";", "if", "(", "avatarBox", "!=", "null", ")", "{", "avatarBox", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onItemClicked", "(", "index", ")", ";", "}", "}", ")", ";", "}", "if", "(", "index", "==", "selectedIndex", ")", "{", "treeListItem", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onDefaultItemClicked", "(", ")", ";", "}", "}", ")", ";", "}", "}", "else", "{", "if", "(", "treeListItem", "!=", "null", ")", "{", "treeListItem", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onItemClicked", "(", "index", ")", ";", "}", "}", ")", ";", "}", "}", "}", "boolean", "selected", "=", "index", "==", "selectedIndex", ";", "treeListItem", ".", "addStyleDependentName", "(", "isFull", "?", "PopupElements", ".", "STYLE_FULL", ":", "PopupElements", ".", "STYLE_SELECTABLE", ")", ";", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_ITEM", ")", ";", "if", "(", "selected", ")", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "selectedWidget", "=", "treeListItem", ";", "}", "}", "public", "static", "void", "onBackToList", "(", ")", "{", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "BackToList", ")", ";", "}", "static", "void", "onGoAccount", "(", ")", "{", "goDirectly", "=", "true", ";", "onDefaultItemClicked", "(", ")", ";", "}", "static", "void", "onGoToSyncAccount", "(", ")", "{", "goToAccountSync", "(", "currentTabId", ",", "currentUrl", ")", ";", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "static", "void", "onClickedDirectly", "(", ")", "{", "if", "(", "isClosing", ")", "{", "return", ";", "}", "isClosing", "=", "true", ";", "PearledDirect", "=", "true", ";", "pearlContent", "(", "currentTabId", ",", "currentUrl", ",", "currentTitle", ",", "getSelectedTree", "(", ")", ",", "null", ",", "null", ")", ";", "}", "static", "void", "onDefaultItemClicked", "(", ")", "{", "onItemClicked", "(", "selectedIndex", ")", ";", "}", "static", "void", "onGoBackItemClicked", "(", ")", "{", "String", "assoId", "=", "userTrees", ".", "getTreeAssoId", "(", "selectedIndex", ")", ";", "String", "hash", "=", "AppClient", ".", "buildRevealHash", "(", "userTrees", ",", "selectedId", ",", "assoId", ")", ";", "goBackToPT", "(", "hash", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "100", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "static", "void", "onEscapeItemClicked", "(", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "static", "void", "onItemClicked", "(", "final", "int", "index", ")", "{", "if", "(", "isClosing", ")", "{", "return", ";", "}", "isClosing", "=", "true", ";", "for", "(", "TreeNode", "tree", ":", "trees", ")", "{", "TreeListItem", "treeListItem", "=", "tree", ".", "getTreeListItem", "(", ")", ";", "if", "(", "treeListItem", "!=", "null", ")", "{", "treeListItem", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "treeListItem", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED_TIMER", ")", ";", "treeListItem", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTABLE", ")", ";", "}", "}", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "onSelectionTimer1", "(", "index", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "120", ")", ";", "}", "static", "void", "onArrowClicked", "(", "final", "int", "index", ")", "{", "TreeNode", "treeNode", "=", "trees", ".", "get", "(", "index", ")", ";", "TreeListItem", "treeListItem", "=", "treeNode", ".", "getTreeListItem", "(", ")", ";", "FlowPanel", "wrapper", "=", "(", "FlowPanel", ")", "treeListItem", ".", "getParent", "(", ")", ";", "ArrayList", "<", "Integer", ">", "treesToClose", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "ArrayList", "<", "Integer", ">", "treesToOpen", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "ArrayList", "<", "TreeNode", ">", "children", "=", "treeNode", ".", "getChildren", "(", ")", ";", "if", "(", "index", "==", "UserTrees", ".", "ROOTTREE_INDEX", ")", "{", "if", "(", "listdisplayed", ")", "{", "list", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_LIST_REVEALED", ")", ";", "list", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LIST_COLLAPSED", ")", ";", "wrapper", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "listdisplayed", "=", "false", ";", "selectedTreeNode", "=", "treeNode", ";", "selectedIndex", "=", "index", ";", "selectedId", "=", "userTrees", ".", "getTreeId", "(", "index", ")", ";", "selectedWidget", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "selectedWidget", "=", "treeListItem", ";", "selectedWidget", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "for", "(", "TreeNode", "child", ":", "children", ")", "{", "TreeListItem", "childTreeListItem", "=", "child", ".", "getTreeListItem", "(", ")", ";", "FlowPanel", "childWrapper", "=", "(", "FlowPanel", ")", "childTreeListItem", ".", "getParent", "(", ")", ";", "boolean", "isOpen", "=", "!", "childWrapper", ".", "getStyleName", "(", ")", ".", "contains", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "ArrayList", "<", "TreeNode", ">", "children2", "=", "child", ".", "getChildren", "(", ")", ";", "boolean", "hasChildren", "=", "(", "children2", "!=", "null", "&&", "!", "children2", ".", "isEmpty", "(", ")", ")", ";", "if", "(", "hasChildren", "&&", "isOpen", ")", "{", "onArrowClicked", "(", "trees", ".", "indexOf", "(", "child", ")", ")", ";", "}", "}", "if", "(", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onDefaultItemClicked", "(", ")", ";", "}", "}", ")", ";", "}", "}", "else", "{", "list", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_LIST_REVEALED", ")", ";", "list", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_LIST_COLLAPSED", ")", ";", "wrapper", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "FlowPanel", "childrenPanel", "=", "new", "FlowPanel", "(", ")", ";", "wrapper", ".", "add", "(", "childrenPanel", ")", ";", "childrenPanel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_CHILDRENPANEL", ")", ";", "listdisplayed", "=", "true", ";", "}", "PopupControl", ".", "refreshScroll", "(", ")", ";", "}", "else", "{", "if", "(", "isInSelectedParentPath", "(", "index", ")", ")", "{", "selectedTreeNode", "=", "treeNode", ";", "selectedIndex", "=", "index", ";", "selectedId", "=", "userTrees", ".", "getTreeId", "(", "index", ")", ";", "selectedWidget", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "selectedWidget", "=", "treeListItem", ";", "selectedWidget", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "if", "(", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "addClickHandler", "(", "new", "ClickHandler", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "ClickEvent", "event", ")", "{", "onDefaultItemClicked", "(", ")", ";", "}", "}", ")", ";", "}", "}", "if", "(", "!", "wrapper", ".", "getStyleName", "(", ")", ".", "contains", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ")", "{", "wrapper", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "treesToClose", ".", "add", "(", "index", ")", ";", "removeChildrenFromPanel", "(", "wrapper", ")", ";", "for", "(", "TreeNode", "child", ":", "children", ")", "{", "ArrayList", "<", "TreeNode", ">", "children2", "=", "child", ".", "getChildren", "(", ")", ";", "Boolean", "hasChildren", "=", "(", "children2", "!=", "null", "&&", "!", "children2", ".", "isEmpty", "(", ")", ")", ";", "if", "(", "hasChildren", ")", "{", "treesToClose", ".", "add", "(", "trees", ".", "indexOf", "(", "child", ")", ")", ";", "}", "}", "userTrees", ".", "updateTreeCollapsed", "(", "treesToClose", ",", "treesToOpen", ")", ";", "}", "else", "{", "wrapper", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_COLLAPSED", ")", ";", "treesToOpen", ".", "add", "(", "index", ")", ";", "FlowPanel", "childrenPanel", "=", "new", "FlowPanel", "(", ")", ";", "wrapper", ".", "add", "(", "childrenPanel", ")", ";", "childrenPanel", ".", "setStylePrimaryName", "(", "PopupElements", ".", "PRIMARY_STYLE_CHILDRENPANEL", ")", ";", "for", "(", "TreeNode", "child", ":", "children", ")", "{", "ArrayList", "<", "TreeNode", ">", "children2", "=", "child", ".", "getChildren", "(", ")", ";", "Boolean", "hasChildren", "=", "(", "children2", "!=", "null", "&&", "!", "children2", ".", "isEmpty", "(", ")", ")", ";", "if", "(", "hasChildren", ")", "{", "treesToClose", ".", "add", "(", "trees", ".", "indexOf", "(", "child", ")", ")", ";", "}", "}", "userTrees", ".", "updateTreeCollapsed", "(", "treesToClose", ",", "treesToOpen", ")", ";", "addChildrenToPanel", "(", "children", ",", "childrenPanel", ")", ";", "}", "PopupControl", ".", "refreshScroll", "(", ")", ";", "}", "}", "public", "static", "String", "buildAvatarUrl", "(", "String", "avatarHash", ")", "{", "String", "twoFirst", "=", "avatarHash", ".", "substring", "(", "0", ",", "2", ")", ";", "String", "twoFollowing", "=", "avatarHash", ".", "substring", "(", "2", ",", "4", ")", ";", "return", "WebContent", ".", "getCDNLocations", "(", ")", ".", "substring", "(", "0", ",", "WebContent", ".", "getCDNLocations", "(", ")", ".", "length", "(", ")", "-", "1", ")", "+", "twoFirst", "+", "\"/\"", "+", "twoFollowing", "+", "\"/\"", "+", "avatarHash", "+", "\"\"", ";", "}", "public", "static", "String", "getTreeAvatarURL", "(", "int", "i", ")", "{", "String", "avatarHash", "=", "userTrees", ".", "getTreeAvatarHash", "(", "i", ")", ";", "if", "(", "avatarHash", "!=", "null", ")", "{", "return", "buildAvatarUrl", "(", "avatarHash", ")", ";", "}", "Integer", "assoIndex", "=", "assoIds2Index", ".", "get", "(", "userTrees", ".", "getTreeAssoId", "(", "i", ")", ")", ";", "if", "(", "assoIndex", "!=", "null", ")", "{", "String", "avatarHashParent", "=", "userTrees", ".", "getTreeAvatarHash", "(", "assoIndex", ")", ";", "if", "(", "avatarHashParent", "!=", "null", ")", "{", "return", "buildAvatarUrl", "(", "avatarHashParent", ")", ";", "}", "}", "return", "WebContent", ".", "getCDNLocations", "(", ")", ".", "substring", "(", "0", ",", "WebContent", ".", "getCDNLocations", "(", ")", ".", "length", "(", ")", "-", "1", ")", "+", "\"\"", ";", "}", "static", "void", "onSelectionTimer1", "(", "final", "int", "index", ")", "{", "TreeNode", "treeNode", "=", "trees", ".", "get", "(", "index", ")", ";", "TreeListItem", "treeListItem", "=", "treeNode", ".", "getTreeListItem", "(", ")", ";", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "}", "else", "{", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED_TIMER", ")", ";", "}", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "onSelectionTimer2", "(", "index", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "120", ")", ";", "}", "static", "void", "onSelectionTimer2", "(", "final", "int", "index", ")", "{", "onTreeSelected", "(", "index", ")", ";", "}", "private", "static", "void", "onTreeSelected", "(", "final", "int", "index", ")", "{", "String", "id", "=", "userTrees", ".", "getTreeId", "(", "index", ")", ";", "String", "assoId", "=", "userTrees", ".", "getTreeAssoId", "(", "index", ")", ";", "if", "(", "chooseParent", ")", "{", "pearlContent", "(", "currentTabId", ",", "currentUrl", ",", "currentTitle", ",", "null", ",", "id", ",", "NewTreeUI", ".", "newTreeTitle", ")", ";", "if", "(", "!", "WebContent", ".", "bookmarklet", ")", "{", "Alerts", ".", "setButtonIcon", "(", "false", ",", "true", ")", ";", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "TreeCreated", ")", ";", "}", "}", "else", "if", "(", "goDirectly", ")", "{", "if", "(", "!", "WebContent", ".", "onIpad", ")", "{", "setSelectedTree", "(", "id", ",", "assoId", ")", ";", "reveal", "(", "id", ",", "assoId", ",", "currentTabId", ",", "currentUrl", ")", ";", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "else", "{", "isClosing", "=", "false", ";", "setSelectedTree", "(", "id", ",", "assoId", ")", ";", "TreeNode", "treeNode", "=", "trees", ".", "get", "(", "index", ")", ";", "TreeListItem", "treeListItem", "=", "treeNode", ".", "getTreeListItem", "(", ")", ";", "treeListItem", ".", "addStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED", ")", ";", "treeListItem", ".", "removeStyleDependentName", "(", "PopupElements", ".", "STYLE_SELECTED_TIMER", ")", ";", "String", "hash", "=", "AppClient", ".", "buildRevealHash", "(", "userTrees", ",", "id", ",", "assoId", ")", ";", "goBackToPT", "(", "hash", ")", ";", "Timer", "t", "=", "new", "Timer", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", ";", "t", ".", "schedule", "(", "1000", ")", ";", "PopupControl", ".", "onViewCreated", "(", ")", ";", "}", "}", "else", "{", "setSelectedTree", "(", "id", ",", "assoId", ")", ";", "pearlContent", "(", "currentTabId", ",", "currentUrl", ",", "currentTitle", ",", "id", ",", "null", ",", "null", ")", ";", "if", "(", "!", "WebContent", ".", "bookmarklet", ")", "{", "Alerts", ".", "setButtonIcon", "(", "false", ",", "true", ")", ";", "Alerts", ".", "closeWindow", "(", ")", ";", "}", "}", "}", "static", "void", "onSwichModeClicked", "(", ")", "{", "goDirectly", "=", "!", "goDirectly", ";", "PopupControl", ".", "changeUI", "(", "PopupUIs", ".", "TreeList", ")", ";", "}", "static", "void", "onTab", "(", "JavaScriptObject", "tab", ",", "int", "tabId", ",", "String", "url", ",", "String", "title", ")", "{", "currentTabId", "=", "tabId", ";", "currentUrl", "=", "url", ";", "currentTitle", "=", "title", ";", "init", "(", ")", ";", "}", "private", "static", "native", "void", "scrollToSelected", "(", ")", ";", "public", "static", "native", "void", "goBackToPT", "(", "String", "hash", ")", ";", "public", "static", "native", "void", "getTab", "(", ")", ";", "private", "static", "native", "void", "pearlContent", "(", "int", "tab", ",", "String", "url", ",", "String", "title", ",", "String", "treeId", ",", "String", "parentTreeId", ",", "String", "newTreeName", ")", ";", "private", "static", "native", "void", "reveal", "(", "String", "treeId", ",", "String", "assoId", ",", "int", "tabId", ",", "String", "url", ")", ";", "private", "static", "native", "void", "goToAccountSync", "(", "int", "tabId", ",", "String", "currentUrl", ")", ";", "private", "static", "int", "obtainSelectedTree", "(", "boolean", "includeDropzone", ")", "{", "String", "sel", "=", "getSelectedTree", "(", ")", ";", "if", "(", "sel", "!=", "null", ")", "{", "for", "(", "int", "i", "=", "userTrees", ".", "getTreeCount", "(", ")", ";", "i", "--", ">", "0", ";", ")", "{", "if", "(", "!", "userTrees", ".", "getTreeId", "(", "i", ")", ".", "equals", "(", "sel", ")", ")", "{", "continue", ";", "}", "if", "(", "(", "chooseParent", "||", "!", "goDirectly", ")", "&&", "i", ">", "UserTrees", ".", "ROOTTREE_INDEX", "&&", "userTrees", ".", "isTreeFull", "(", "i", ")", ")", "{", "break", ";", "}", "if", "(", "includeDropzone", "||", "i", "!=", "UserTrees", ".", "DROPZONE_INDEX", ")", "{", "return", "i", ";", "}", "break", ";", "}", "}", "return", "UserTrees", ".", "ROOTTREE_INDEX", ";", "}", "private", "static", "native", "String", "getSelectedTree", "(", ")", ";", "private", "static", "native", "void", "setSelectedTree", "(", "String", "id", ",", "String", "assoId", ")", ";", "public", "static", "boolean", "isGoMode", "(", ")", "{", "return", "goDirectly", "&&", "!", "chooseParent", ";", "}", "}", "</s>" ]
8,509
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "public", "final", "class", "R", "{", "public", "static", "final", "class", "anim", "{", "public", "static", "final", "int", "grow_fade_in", "=", "0x7f040000", ";", "public", "static", "final", "int", "grow_fade_in_from_bottom", "=", "0x7f040001", ";", "public", "static", "final", "int", "shrink_fade_out", "=", "0x7f040002", ";", "public", "static", "final", "int", "shrink_fade_out_from_bottom", "=", "0x7f040003", ";", "}", "public", "static", "final", "class", "array", "{", "public", "static", "final", "int", "languageCodes", "=", "0x7f070001", ";", "public", "static", "final", "int", "languages", "=", "0x7f070000", ";", "}", "public", "static", "final", "class", "attr", "{", "}", "public", "static", "final", "class", "color", "{", "public", "static", "final", "int", "themeColor", "=", "0x7f080000", ";", "}", "public", "static", "final", "class", "dimen", "{", "public", "static", "final", "int", "homescreen_vert_space", "=", "0x7f090000", ";", "}", "public", "static", "final", "class", "drawable", "{", "public", "static", "final", "int", "area_switcher", "=", "0x7f020000", ";", "public", "static", "final", "int", "area_switcher_focused", "=", "0x7f020001", ";", "public", "static", "final", "int", "area_switcher_normal", "=", "0x7f020002", ";", "public", "static", "final", "int", "area_switcher_pressed", "=", "0x7f020003", ";", "public", "static", "final", "int", "arrow_right", "=", "0x7f020004", ";", "public", "static", "final", "int", "arrow_white", "=", "0x7f020005", ";", "public", "static", "final", "int", "bg_bottom_dark", "=", "0x7f020006", ";", "public", "static", "final", "int", "bg_highlighted_journey", "=", "0x7f020007", ";", "public", "static", "final", "int", "bg_highlighted_journey_selector", "=", "0x7f020008", ";", "public", "static", "final", "int", "bottom_shadow", "=", "0x7f020009", ";", "public", "static", "final", "int", "btn_zoom_in", "=", "0x7f02000a", ";", "public", "static", "final", "int", "btn_zoom_in_disabled", "=", "0x7f02000b", ";", "public", "static", "final", "int", "btn_zoom_in_normal", "=", "0x7f02000c", ";", "public", "static", "final", "int", "btn_zoom_in_pressed", "=", "0x7f02000d", ";", "public", "static", "final", "int", "btn_zoom_out", "=", "0x7f02000e", ";", "public", "static", "final", "int", "btn_zoom_out_disabled", "=", "0x7f02000f", ";", "public", "static", "final", "int", "btn_zoom_out_normal", "=", "0x7f020010", ";", "public", "static", "final", "int", "btn_zoom_out_pressed", "=", "0x7f020011", ";", "public", "static", "final", "int", "delete_input", "=", "0x7f020012", ";", "public", "static", "final", "int", "direct", "=", "0x7f020013", ";", "public", "static", "final", "int", "empty_tile", "=", "0x7f020014", ";", "public", "static", "final", "int", "ic_calendar", "=", "0x7f020015", ";", "public", "static", "final", "int", "ic_departures", "=", "0x7f020016", ";", "public", "static", "final", "int", "ic_disruptions", "=", "0x7f020017", ";", "public", "static", "final", "int", "ic_history", "=", "0x7f020018", ";", "public", "static", "final", "int", "ic_map", "=", "0x7f020019", ";", "public", "static", "final", "int", "ic_menu_star", "=", "0x7f02001a", ";", "public", "static", "final", "int", "ic_popup", "=", "0x7f02001b", ";", "public", "static", "final", "int", "ic_search_options", "=", "0x7f02001c", ";", "public", "static", "final", "int", "ic_settings", "=", "0x7f02001d", ";", "public", "static", "final", "int", "ic_share", "=", "0x7f02001e", ";", "public", "static", "final", "int", "ic_show_dropdown", "=", "0x7f02001f", ";", "public", "static", "final", "int", "ic_star", "=", "0x7f020020", ";", "public", "static", "final", "int", "ic_stat_watch", "=", "0x7f020021", ";", "public", "static", "final", "int", "ic_ticket", "=", "0x7f020022", ";", "public", "static", "final", "int", "ic_watch", "=", "0x7f020023", ";", "public", "static", "final", "int", "icon", "=", "0x7f020024", ";", "public", "static", "final", "int", "icon_bar", "=", "0x7f020025", ";", "public", "static", "final", "int", "icon_bar_dark", "=", "0x7f020026", ";", "public", "static", "final", "int", "low_deck", "=", "0x7f020027", ";", "public", "static", "final", "int", "map_popup", "=", "0x7f020028", ";", "public", "static", "final", "int", "pin", "=", "0x7f020029", ";", "public", "static", "final", "int", "popup_arrow", "=", "0x7f02002a", ";", "public", "static", "final", "int", "popup_bottom", "=", "0x7f02002b", ";", "public", "static", "final", "int", "popup_top", "=", "0x7f02002c", ";", "public", "static", "final", "int", "simple_btn", "=", "0x7f02002d", ";", "public", "static", "final", "int", "simple_btn_normal", "=", "0x7f02002e", ";", "public", "static", "final", "int", "simple_btn_pressed", "=", "0x7f02002f", ";", "public", "static", "final", "int", "spinner_dropdown_background_down", "=", "0x7f020030", ";", "public", "static", "final", "int", "spinner_dropdown_background_up", "=", "0x7f020031", ";", "public", "static", "final", "int", "swap", "=", "0x7f020032", ";", "public", "static", "final", "int", "switch_left", "=", "0x7f020033", ";", "public", "static", "final", "int", "switch_right", "=", "0x7f020034", ";", "public", "static", "final", "int", "title_bar", "=", "0x7f020035", ";", "public", "static", "final", "int", "title_bar_shadow", "=", "0x7f020036", ";", "public", "static", "final", "int", "unknown", "=", "0x7f020037", ";", "}", "public", "static", "final", "class", "id", "{", "public", "static", "final", "int", "acFrom", "=", "0x7f0c0020", ";", "public", "static", "final", "int", "acTo", "=", "0x7f0c0023", ";", "public", "static", "final", "int", "btArrowFrom", "=", "0x7f0c0021", ";", "public", "static", "final", "int", "btArrowTo", "=", "0x7f0c0024", ";", "public", "static", "final", "int", "btCancel", "=", "0x7f0c003c", ";", "public", "static", "final", "int", "btCancelWatch", "=", "0x7f0c0045", ";", "public", "static", "final", "int", "btDate", "=", "0x7f0c0029", ";", "public", "static", "final", "int", "btDownloadMap", "=", "0x7f0c0038", ";", "public", "static", "final", "int", "btSearchOptions", "=", "0x7f0c002a", ";", "public", "static", "final", "int", "btSetAsArrival", "=", "0x7f0c0036", ";", "public", "static", "final", "int", "btSetAsDeparture", "=", "0x7f0c0035", ";", "public", "static", "final", "int", "btSwap", "=", "0x7f0c0022", ";", "public", "static", "final", "int", "btTime", "=", "0x7f0c0028", ";", "public", "static", "final", "int", "btZoomIn", "=", "0x7f0c0032", ";", "public", "static", "final", "int", "btZoomOut", "=", "0x7f0c0031", ";", "public", "static", "final", "int", "cbOnlyDirect", "=", "0x7f0c003f", ";", "public", "static", "final", "int", "cbOnlyLowDeck", "=", "0x7f0c0040", ";", "public", "static", "final", "int", "favouritesEmpty", "=", "0x7f0c000b", ";", "public", "static", "final", "int", "historyEmpty", "=", "0x7f0c000e", ";", "public", "static", "final", "int", "icon", "=", "0x7f0c003e", ";", "public", "static", "final", "int", "ivArrow", "=", "0x7f0c0042", ";", "public", "static", "final", "int", "ivDirect", "=", "0x7f0c002c", ";", "public", "static", "final", "int", "ivLowDeck", "=", "0x7f0c002d", ";", "public", "static", "final", "int", "ivSwitch", "=", "0x7f0c0027", ";", "public", "static", "final", "int", "llAreaSwitcher", "=", "0x7f0c001e", ";", "public", "static", "final", "int", "llBottom", "=", "0x7f0c0041", ";", "public", "static", "final", "int", "llBottomBar", "=", "0x7f0c0044", ";", "public", "static", "final", "int", "llClickToLoad", "=", "0x7f0c001b", ";", "public", "static", "final", "int", "llError", "=", "0x7f0c001d", ";", "public", "static", "final", "int", "llFavourites", "=", "0x7f0c000c", ";", "public", "static", "final", "int", "llFindJourney", "=", "0x7f0c002b", ";", "public", "static", "final", "int", "llHistory", "=", "0x7f0c000d", ";", "public", "static", "final", "int", "llJourneyParts", "=", "0x7f0c0012", ";", "public", "static", "final", "int", "llLoading", "=", "0x7f0c0019", ";", "public", "static", "final", "int", "llMapContainer", "=", "0x7f0c002f", ";", "public", "static", "final", "int", "llMenu", "=", "0x7f0c0016", ";", "public", "static", "final", "int", "llNoMap", "=", "0x7f0c0037", ";", "public", "static", "final", "int", "llProgress", "=", "0x7f0c0039", ";", "public", "static", "final", "int", "llSwitch", "=", "0x7f0c0025", ";", "public", "static", "final", "int", "llZoom", "=", "0x7f0c0030", ";", "public", "static", "final", "int", "lvLanguages", "=", "0x7f0c0017", ";", "public", "static", "final", "int", "lvResults", "=", "0x7f0c0043", ";", "public", "static", "final", "int", "pbLoading", "=", "0x7f0c001a", ";", "public", "static", "final", "int", "popup", "=", "0x7f0c0033", ";", "public", "static", "final", "int", "progressBar", "=", "0x7f0c003d", ";", "public", "static", "final", "int", "scollView", "=", "0x7f0c0015", ";", "public", "static", "final", "int", "seekBar", "=", "0x7f0c0004", ";", "public", "static", "final", "int", "showPopup", "=", "0x7f0c000a", ";", "public", "static", "final", "int", "spWhenNotify", "=", "0x7f0c0007", ";", "public", "static", "final", "int", "spWhichMap", "=", "0x7f0c002e", ";", "public", "static", "final", "int", "tvArea", "=", "0x7f0c001f", ";", "public", "static", "final", "int", "tvAutocompleteItem", "=", "0x7f0c0000", ";", "public", "static", "final", "int", "tvChangelogItemBody", "=", "0x7f0c0003", ";", "public", "static", "final", "int", "tvChangelogItemDate", "=", "0x7f0c0002", ";", "public", "static", "final", "int", "tvChangelogItemTitle", "=", "0x7f0c0001", ";", "public", "static", "final", "int", "tvConnInfo", "=", "0x7f0c0013", ";", "public", "static", "final", "int", "tvDuration", "=", "0x7f0c0011", ";", "public", "static", "final", "int", "tvEmail", "=", "0x7f0c0005", ";", "public", "static", "final", "int", "tvFrom", "=", "0x7f0c0008", ";", "public", "static", "final", "int", "tvLanguage", "=", "0x7f0c0018", ";", "public", "static", "final", "int", "tvLeavesIn", "=", "0x7f0c0010", ";", "public", "static", "final", "int", "tvLoadJourney", "=", "0x7f0c001c", ";", "public", "static", "final", "int", "tvProgress", "=", "0x7f0c003b", ";", "public", "static", "final", "int", "tvProgressTitle", "=", "0x7f0c003a", ";", "public", "static", "final", "int", "tvRouteStop", "=", "0x7f0c0047", ";", "public", "static", "final", "int", "tvRouteTime", "=", "0x7f0c0046", ";", "public", "static", "final", "int", "tvSearchTime", "=", "0x7f0c000f", ";", "public", "static", "final", "int", "tvSms", "=", "0x7f0c0006", ";", "public", "static", "final", "int", "tvStopName", "=", "0x7f0c0034", ";", "public", "static", "final", "int", "tvSwitch", "=", "0x7f0c0026", ";", "public", "static", "final", "int", "tvTitle", "=", "0x7f0c0014", ";", "public", "static", "final", "int", "tvTo", "=", "0x7f0c0009", ";", "}", "public", "static", "final", "class", "layout", "{", "public", "static", "final", "int", "autocomplete_item", "=", "0x7f030000", ";", "public", "static", "final", "int", "changelog_item", "=", "0x7f030001", ";", "public", "static", "final", "int", "dialog_share", "=", "0x7f030002", ";", "public", "static", "final", "int", "dialog_watch_journey", "=", "0x7f030003", ";", "public", "static", "final", "int", "favourite_item", "=", "0x7f030004", ";", "public", "static", "final", "int", "favourites", "=", "0x7f030005", ";", "public", "static", "final", "int", "favourites_divider", "=", "0x7f030006", ";", "public", "static", "final", "int", "history_item", "=", "0x7f030007", ";", "public", "static", "final", "int", "journey", "=", "0x7f030008", ";", "public", "static", "final", "int", "journey_detail", "=", "0x7f030009", ";", "public", "static", "final", "int", "language", "=", "0x7f03000a", ";", "public", "static", "final", "int", "language_item", "=", "0x7f03000b", ";", "public", "static", "final", "int", "load_journey_item", "=", "0x7f03000c", ";", "public", "static", "final", "int", "main", "=", "0x7f03000d", ";", "public", "static", "final", "int", "map", "=", "0x7f03000e", ";", "public", "static", "final", "int", "menu_item", "=", "0x7f03000f", ";", "public", "static", "final", "int", "quick_settings", "=", "0x7f030010", ";", "public", "static", "final", "int", "results", "=", "0x7f030011", ";", "public", "static", "final", "int", "route_item", "=", "0x7f030012", ";", "}", "public", "static", "final", "class", "raw", "{", "public", "static", "final", "int", "areas", "=", "0x7f060000", ";", "}", "public", "static", "final", "class", "string", "{", "public", "static", "final", "int", "about", "=", "0x7f0a0008", ";", "public", "static", "final", "int", "addToCalendar", "=", "0x7f0a000a", ";", "public", "static", "final", "int", "addToFavourites", "=", "0x7f0a0007", ";", "public", "static", "final", "int", "airlines", "=", "0x7f0a000b", ";", "public", "static", "final", "int", "androidMarketMissing", "=", "0x7f0a0009", ";", "public", "static", "final", "int", "appName", "=", "0x7f0a000c", ";", "public", "static", "final", "int", "arriveAt", "=", "0x7f0a000d", ";", "public", "static", "final", "int", "arrivesAt", "=", "0x7f0a006e", ";", "public", "static", "final", "int", "buses", "=", "0x7f0a000e", ";", "public", "static", "final", "int", "calendarEventTitle", "=", "0x7f0a000f", ";", "public", "static", "final", "int", "cancel", "=", "0x7f0a0011", ";", "public", "static", "final", "int", "cancelJourneyNotification", "=", "0x7f0a0070", ";", "public", "static", "final", "int", "chooseAsArrival", "=", "0x7f0a0012", ";", "public", "static", "final", "int", "chooseAsDeparture", "=", "0x7f0a0013", ";", "public", "static", "final", "int", "closeInfo", "=", "0x7f0a0010", ";", "public", "static", "final", "int", "date", "=", "0x7f0a0014", ";", "public", "static", "final", "int", "delay", "=", "0x7f0a0015", ";", "public", "static", "final", "int", "departAt", "=", "0x7f0a0016", ";", "public", "static", "final", "int", "departsAt", "=", "0x7f0a006f", ";", "public", "static", "final", "int", "departsInXMins", "=", "0x7f0a006d", ";", "public", "static", "final", "int", "directAndLowDeckNotFound", "=", "0x7f0a0018", ";", "public", "static", "final", "int", "directNotFound", "=", "0x7f0a0017", ";", "public", "static", "final", "int", "downloadMap", "=", "0x7f0a001b", ";", "public", "static", "final", "int", "downloadMapDisabled", "=", "0x7f0a001c", ";", "public", "static", "final", "int", "downloadProgressInfo", "=", "0x7f0a0019", ";", "public", "static", "final", "int", "downloading", "=", "0x7f0a001a", ";", "public", "static", "final", "int", "duration", "=", "0x7f0a001d", ";", "public", "static", "final", "int", "enableGps", "=", "0x7f0a001e", ";", "public", "static", "final", "int", "enableGpsSummary", "=", "0x7f0a001f", ";", "public", "static", "final", "int", "findJourney", "=", "0x7f0a0021", ";", "public", "static", "final", "int", "findingJourney", "=", "0x7f0a0020", ";", "public", "static", "final", "int", "friday", "=", "0x7f0a0004", ";", "public", "static", "final", "int", "from", "=", "0x7f0a0022", ";", "public", "static", "final", "int", "googleCalendarNotInstalled", "=", "0x7f0a0025", ";", "public", "static", "final", "int", "googleMap", "=", "0x7f0a0023", ";", "public", "static", "final", "int", "gpsLocationKnown", "=", "0x7f0a0024", ";", "public", "static", "final", "int", "hours", "=", "0x7f0a0026", ";", "public", "static", "final", "int", "inTime", "=", "0x7f0a0028", ";", "public", "static", "final", "int", "installing", "=", "0x7f0a0027", ";", "public", "static", "final", "int", "journeyDetails", "=", "0x7f0a0029", ";", "public", "static", "final", "int", "journeyDetailsTitle", "=", "0x7f0a002a", ";", "public", "static", "final", "int", "journeyNotFound", "=", "0x7f0a002b", ";", "public", "static", "final", "int", "journeyNotificationCancelled", "=", "0x7f0a0067", ";", "public", "static", "final", "int", "languageChanged", "=", "0x7f0a002c", ";", "public", "static", "final", "int", "languagePreference", "=", "0x7f0a002d", ";", "public", "static", "final", "int", "languagePreferenceSummary", "=", "0x7f0a0071", ";", "public", "static", "final", "int", "leavesIn", "=", "0x7f0a002e", ";", "public", "static", "final", "int", "loadMoreError", "=", "0x7f0a0037", ";", "public", "static", "final", "int", "loadNextJourney", "=", "0x7f0a0038", ";", "public", "static", "final", "int", "loadPrevJourney", "=", "0x7f0a0039", ";", "public", "static", "final", "int", "loadingDelay", "=", "0x7f0a002f", ";", "public", "static", "final", "int", "loadingDelayError", "=", "0x7f0a0030", ";", "public", "static", "final", "int", "loadingIntermediate", "=", "0x7f0a0031", ";", "public", "static", "final", "int", "loadingIntermediateError", "=", "0x7f0a0032", ";", "public", "static", "final", "int", "loadingJourney", "=", "0x7f0a0033", ";", "public", "static", "final", "int", "loadingJourneyIOException", "=", "0x7f0a0034", ";", "public", "static", "final", "int", "loadingJourneyInputEmpty", "=", "0x7f0a0035", ";", "public", "static", "final", "int", "loadingLocation", "=", "0x7f0a0036", ";", "public", "static", "final", "int", "locationAge", "=", "0x7f0a003a", ";", "public", "static", "final", "int", "lowDeckNotFound", "=", "0x7f0a003b", ";", "public", "static", "final", "int", "map", "=", "0x7f0a003d", ";", "public", "static", "final", "int", "mapError", "=", "0x7f0a003e", ";", "public", "static", "final", "int", "mapErrorTitle", "=", "0x7f0a003f", ";", "public", "static", "final", "int", "mapHideZoom", "=", "0x7f0a0041", ";", "public", "static", "final", "int", "mapInfo", "=", "0x7f0a0040", ";", "public", "static", "final", "int", "mapShowZoom", "=", "0x7f0a0042", ";", "public", "static", "final", "int", "mapUnavailable", "=", "0x7f0a0045", ";", "public", "static", "final", "int", "mapXoutOfY", "=", "0x7f0a0044", ";", "public", "static", "final", "int", "menuMyLocation", "=", "0x7f0a0043", ";", "public", "static", "final", "int", "minutes", "=", "0x7f0a0046", ";", "public", "static", "final", "int", "monday", "=", "0x7f0a0000", ";", "public", "static", "final", "int", "myLocation", "=", "0x7f0a0047", ";", "public", "static", "final", "int", "networkLocationKnown", "=", "0x7f0a003c", ";", "public", "static", "final", "int", "notificationTitle", "=", "0x7f0a0048", ";", "public", "static", "final", "int", "now", "=", "0x7f0a0049", ";", "public", "static", "final", "int", "ok", "=", "0x7f0a004a", ";", "public", "static", "final", "int", "oneDayAgo", "=", "0x7f0a0065", ";", "public", "static", "final", "int", "oneHourAgo", "=", "0x7f0a0063", ";", "public", "static", "final", "int", "oneHourBeforeDeparture", "=", "0x7f0a006b", ";", "public", "static", "final", "int", "onlyDirect", "=", "0x7f0a004b", ";", "public", "static", "final", "int", "onlyLowDeck", "=", "0x7f0a004c", ";", "public", "static", "final", "int", "parseError", "=", "0x7f0a004d", ";", "public", "static", "final", "int", "platform", "=", "0x7f0a004e", ";", "public", "static", "final", "int", "prague", "=", "0x7f0a004f", ";", "public", "static", "final", "int", "saturday", "=", "0x7f0a0005", ";", "public", "static", "final", "int", "searchHistory", "=", "0x7f0a0050", ";", "public", "static", "final", "int", "searchHistoryEmpty", "=", "0x7f0a0051", ";", "public", "static", "final", "int", "sendByEmail", "=", "0x7f0a0053", ";", "public", "static", "final", "int", "sendBySms", "=", "0x7f0a0054", ";", "public", "static", "final", "int", "sendJourney", "=", "0x7f0a0052", ";", "public", "static", "final", "int", "setNotification", "=", "0x7f0a0068", ";", "public", "static", "final", "int", "settings", "=", "0x7f0a0055", ";", "public", "static", "final", "int", "spotOnMap", "=", "0x7f0a0057", ";", "public", "static", "final", "int", "startingDownload", "=", "0x7f0a0056", ";", "public", "static", "final", "int", "stopAmbiguous", "=", "0x7f0a0058", ";", "public", "static", "final", "int", "stopDoesntExist", "=", "0x7f0a0059", ";", "public", "static", "final", "int", "sunday", "=", "0x7f0a0006", ";", "public", "static", "final", "int", "thursday", "=", "0x7f0a0003", ";", "public", "static", "final", "int", "time", "=", "0x7f0a005a", ";", "public", "static", "final", "int", "timetable", "=", "0x7f0a005b", ";", "public", "static", "final", "int", "to", "=", "0x7f0a005c", ";", "public", "static", "final", "int", "today", "=", "0x7f0a005d", ";", "public", "static", "final", "int", "tomorrow", "=", "0x7f0a0060", ";", "public", "static", "final", "int", "trains", "=", "0x7f0a005e", ";", "public", "static", "final", "int", "trainsAndBuses", "=", "0x7f0a005f", ";", "public", "static", "final", "int", "tuesday", "=", "0x7f0a0001", ";", "public", "static", "final", "int", "watchJourney", "=", "0x7f0a0072", ";", "public", "static", "final", "int", "watchJourneyCancel", "=", "0x7f0a0073", ";", "public", "static", "final", "int", "wednesday", "=", "0x7f0a0002", ";", "public", "static", "final", "int", "when", "=", "0x7f0a0061", ";", "public", "static", "final", "int", "whenShowNotification", "=", "0x7f0a0069", ";", "public", "static", "final", "int", "xDaysAgo", "=", "0x7f0a0066", ";", "public", "static", "final", "int", "xHoursAgo", "=", "0x7f0a0064", ";", "public", "static", "final", "int", "xHoursBeforeDeparture", "=", "0x7f0a006c", ";", "public", "static", "final", "int", "xMinutesAgo", "=", "0x7f0a0062", ";", "public", "static", "final", "int", "xMinutesBeforeDeparture", "=", "0x7f0a006a", ";", "}", "public", "static", "final", "class", "style", "{", "public", "static", "final", "int", "Animation", "=", "0x7f0b0002", ";", "public", "static", "final", "int", "Animation_DropDownDown", "=", "0x7f0b0003", ";", "public", "static", "final", "int", "Animation_DropDownUp", "=", "0x7f0b0004", ";", "public", "static", "final", "int", "Theme_Pubtran", "=", "0x7f0b0000", ";", "public", "static", "final", "int", "label", "=", "0x7f0b0001", ";", "public", "static", "final", "int", "londonTransportDestination", "=", "0x7f0b0007", ";", "public", "static", "final", "int", "londonTransportName", "=", "0x7f0b0005", ";", "public", "static", "final", "int", "londonTransportNameOr", "=", "0x7f0b0006", ";", "}", "public", "static", "final", "class", "xml", "{", "public", "static", "final", "int", "preferences", "=", "0x7f050000", ";", "}", "}", "</s>" ]
8,510
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "ObjectInputStream", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "java", ".", "util", ".", "Random", ";", "import", "android", ".", "app", ".", "AlarmManager", ";", "import", "android", ".", "app", ".", "Notification", ";", "import", "android", ".", "app", ".", "NotificationManager", ";", "import", "android", ".", "app", ".", "PendingIntent", ";", "import", "android", ".", "app", ".", "Service", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "os", ".", "IBinder", ";", "public", "class", "JourneyNotifsService", "extends", "Service", "{", "public", "static", "String", "EXTRA_CANCEL", "=", "\"cancel\"", ";", "private", "static", "final", "int", "MINUTE", "=", "60", "*", "1000", ";", "private", "int", "highestNotificationId", "=", "0", ";", "private", "HashMap", "<", "String", ",", "Integer", ">", "notificationIds", "=", "new", "HashMap", "<", "String", ",", "Integer", ">", "(", ")", ";", "private", "HashMap", "<", "String", ",", "JourneyNotification", ">", "notifications", "=", "new", "HashMap", "<", "String", ",", "JourneyNotification", ">", "(", ")", ";", "private", "NotificationManager", "notificationManager", ";", "private", "String", "getTitle", "(", "AbstractJourney", "journey", ")", "{", "String", "title", ";", "long", "departureTime", "=", "journey", ".", "getDepartureTime", "(", ")", ".", "getTimeInMillis", "(", ")", ";", "long", "minutesToDeparture", "=", "(", "departureTime", "-", "System", ".", "currentTimeMillis", "(", ")", "+", "MINUTE", ")", "/", "MINUTE", ";", "if", "(", "departureTime", "-", "System", ".", "currentTimeMillis", "(", ")", "<", "-", "MINUTE", ")", "minutesToDeparture", "=", "-", "1", ";", "if", "(", "minutesToDeparture", ">", "60", ")", "{", "title", "=", "getString", "(", "R", ".", "string", ".", "departsAt", ",", "Utils", ".", "formatTime", "(", "journey", ".", "getDepartureTime", "(", ")", ")", ")", ";", "}", "else", "if", "(", "minutesToDeparture", ">=", "0", ")", "{", "title", "=", "getString", "(", "R", ".", "string", ".", "departsInXMins", ",", "minutesToDeparture", ")", ";", "}", "else", "{", "title", "=", "getString", "(", "R", ".", "string", ".", "arrivesAt", ",", "Utils", ".", "formatTime", "(", "journey", ".", "getArrivalTime", "(", ")", ")", ")", ";", "}", "return", "title", ";", "}", "public", "void", "handleCommand", "(", "Intent", "intent", ")", "{", "if", "(", "intent", ".", "hasExtra", "(", "EXTRA_CANCEL", ")", ")", "{", "String", "fileName", "=", "intent", ".", "getStringExtra", "(", "EXTRA_CANCEL", ")", ";", "if", "(", "notifications", ".", "containsKey", "(", "fileName", ")", ")", "{", "notificationManager", ".", "cancel", "(", "notificationIds", ".", "get", "(", "fileName", ")", ")", ";", "notificationIds", ".", "remove", "(", "fileName", ")", ";", "notifications", ".", "remove", "(", "fileName", ")", ";", "}", "JourneyNotifs", ".", "remove", "(", "this", ",", "fileName", ")", ";", "}", "else", "{", "updateNotifications", "(", ")", ";", "}", "if", "(", "notifications", ".", "size", "(", ")", "==", "0", ")", "stopSelf", "(", ")", ";", "}", "@", "Override", "public", "IBinder", "onBind", "(", "Intent", "intent", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "void", "onCreate", "(", ")", "{", "notificationManager", "=", "(", "NotificationManager", ")", "getSystemService", "(", "NOTIFICATION_SERVICE", ")", ";", "}", "@", "Override", "public", "void", "onDestroy", "(", ")", "{", "notificationManager", ".", "cancelAll", "(", ")", ";", "}", "@", "Override", "public", "void", "onStart", "(", "Intent", "intent", ",", "int", "startId", ")", "{", "handleCommand", "(", "intent", ")", ";", "}", "@", "Override", "public", "int", "onStartCommand", "(", "Intent", "intent", ",", "int", "flags", ",", "int", "startId", ")", "{", "handleCommand", "(", "intent", ")", ";", "return", "START_REDELIVER_INTENT", ";", "}", "private", "void", "updateNotification", "(", "String", "fileName", ",", "ObjectInputStream", "ois", ")", "throws", "Exception", "{", "if", "(", "!", "notifications", ".", "containsKey", "(", "fileName", ")", ")", "{", "AbstractJourney", "journey", "=", "(", "AbstractJourney", ")", "ois", ".", "readObject", "(", ")", ";", "AbstractResults", "results", "=", "(", "AbstractResults", ")", "ois", ".", "readObject", "(", ")", ";", "Intent", "notificationIntent", "=", "Utils", ".", "getIntent", "(", "this", ",", "\"\"", ")", ";", "notificationIntent", ".", "addFlags", "(", "Intent", ".", "FLAG_ACTIVITY_CLEAR_TOP", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"results\"", ",", "results", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"\"", ",", "journey", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"\"", ",", "fileName", ")", ";", "int", "requestCode", "=", "new", "Random", "(", ")", ".", "nextInt", "(", ")", ";", "PendingIntent", "pendingIntent", "=", "PendingIntent", ".", "getActivity", "(", "this", ",", "requestCode", ",", "notificationIntent", ",", "0", ")", ";", "Notification", "notification", "=", "new", "Notification", "(", "R", ".", "drawable", ".", "ic_stat_watch", ",", "getTitle", "(", "journey", ")", ",", "0", ")", ";", "notification", ".", "flags", "|=", "Notification", ".", "FLAG_ONGOING_EVENT", "|", "Notification", ".", "FLAG_NO_CLEAR", ";", "notifications", ".", "put", "(", "fileName", ",", "new", "JourneyNotification", "(", "notification", ",", "pendingIntent", ",", "journey", ")", ")", ";", "highestNotificationId", "++", ";", "notificationIds", ".", "put", "(", "fileName", ",", "highestNotificationId", ")", ";", "}", "JourneyNotification", "jn", "=", "notifications", ".", "get", "(", "fileName", ")", ";", "Notification", "notification", "=", "jn", ".", "getNotification", "(", ")", ";", "PendingIntent", "intent", "=", "jn", ".", "getIntent", "(", ")", ";", "AbstractJourney", "journey", "=", "jn", ".", "getJourney", "(", ")", ";", "String", "text", "=", "journey", ".", "getNotificationContent", "(", ")", ";", "notification", ".", "setLatestEventInfo", "(", "this", ",", "getTitle", "(", "journey", ")", ",", "text", ",", "intent", ")", ";", "notificationManager", ".", "notify", "(", "notificationIds", ".", "get", "(", "fileName", ")", ",", "notification", ")", ";", "}", "private", "void", "updateNotifications", "(", ")", "{", "Long", "alarmTime", "=", "null", ";", "for", "(", "String", "fileName", ":", "JourneyNotifs", ".", "getFileNames", "(", "this", ")", ")", "{", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "openFileInput", "(", "fileName", ")", ";", "ObjectInputStream", "ois", "=", "new", "ObjectInputStream", "(", "fis", ")", ";", "ois", ".", "readInt", "(", ")", ";", "long", "whenNotify", "=", "ois", ".", "readLong", "(", ")", ";", "if", "(", "whenNotify", "<", "System", ".", "currentTimeMillis", "(", ")", ")", "{", "updateNotification", "(", "fileName", ",", "ois", ")", ";", "long", "departureTime", "=", "notifications", ".", "get", "(", "fileName", ")", ".", "getJourney", "(", ")", ".", "getDepartureTime", "(", ")", ".", "getTimeInMillis", "(", ")", ";", "if", "(", "departureTime", "+", "MINUTE", ">", "System", ".", "currentTimeMillis", "(", ")", ")", "{", "int", "minutes", "=", "(", "int", ")", "(", "(", "departureTime", "+", "MINUTE", "-", "System", ".", "currentTimeMillis", "(", ")", ")", "/", "1000", "/", "60", ")", ";", "if", "(", "minutes", ">", "61", ")", "minutes", "=", "61", ";", "long", "newAlarmTime", "=", "departureTime", "+", "MINUTE", "-", "minutes", "*", "MINUTE", ";", "if", "(", "alarmTime", "==", "null", "||", "newAlarmTime", "<", "alarmTime", ")", "alarmTime", "=", "newAlarmTime", ";", "}", "}", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "}", "if", "(", "alarmTime", "!=", "null", ")", "{", "Intent", "broadcastIntent", "=", "new", "Intent", "(", "this", ",", "JourneyNotifsReceiver", ".", "class", ")", ";", "PendingIntent", "pendingIntent", "=", "PendingIntent", ".", "getBroadcast", "(", "this", ",", "1", ",", "broadcastIntent", ",", "0", ")", ";", "AlarmManager", "alarmManager", "=", "(", "AlarmManager", ")", "getSystemService", "(", "Context", ".", "ALARM_SERVICE", ")", ";", "alarmManager", ".", "set", "(", "AlarmManager", ".", "RTC", ",", "alarmTime", ",", "pendingIntent", ")", ";", "}", "}", "private", "static", "class", "JourneyNotification", "{", "private", "AbstractJourney", "journey", ";", "private", "PendingIntent", "intent", ";", "private", "Notification", "notification", ";", "public", "JourneyNotification", "(", "Notification", "notification", ",", "PendingIntent", "intent", ",", "AbstractJourney", "journey", ")", "{", "this", ".", "notification", "=", "notification", ";", "this", ".", "intent", "=", "intent", ";", "this", ".", "journey", "=", "journey", ";", "}", "public", "AbstractJourney", "getJourney", "(", ")", "{", "return", "journey", ";", "}", "public", "PendingIntent", "getIntent", "(", ")", "{", "return", "intent", ";", "}", "public", "Notification", "getNotification", "(", ")", "{", "return", "notification", ";", "}", "}", "}", "</s>" ]
8,511
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "pm", ".", "PackageManager", ";", "import", "android", ".", "location", ".", "Location", ";", "import", "android", ".", "location", ".", "LocationListener", ";", "import", "android", ".", "location", ".", "LocationManager", ";", "import", "android", ".", "os", ".", "Build", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "public", "class", "LocationTool", "implements", "LocationListener", "{", "private", "static", "final", "int", "MAX_AGE", "=", "10", "*", "60", "*", "1000", ";", "private", "static", "final", "int", "TWO_MINUTES", "=", "1000", "*", "60", "*", "2", ";", "private", "boolean", "enabled", "=", "false", ";", "private", "BestLocationListener", "listener", ";", "private", "Context", "context", ";", "private", "Location", "currentBestLocation", "=", "null", ";", "private", "LocationManager", "locationManager", ";", "public", "LocationTool", "(", "final", "Context", "context", ",", "BestLocationListener", "listener", ")", "{", "this", ".", "context", "=", "context", ";", "this", ".", "listener", "=", "listener", ";", "if", "(", "Build", ".", "VERSION", ".", "SDK_INT", ">=", "Build", ".", "VERSION_CODES", ".", "ECLAIR", ")", "{", "class", "DeviceCompatible", "{", "public", "boolean", "testIfCompatible", "(", ")", "{", "PackageManager", "pm", "=", "context", ".", "getPackageManager", "(", ")", ";", "if", "(", "!", "pm", ".", "hasSystemFeature", "(", "PackageManager", ".", "FEATURE_LOCATION_GPS", ")", ")", "return", "false", ";", "if", "(", "!", "pm", ".", "hasSystemFeature", "(", "PackageManager", ".", "FEATURE_LOCATION_NETWORK", ")", ")", "return", "false", ";", "return", "true", ";", "}", "}", "if", "(", "new", "DeviceCompatible", "(", ")", ".", "testIfCompatible", "(", ")", "==", "false", ")", "return", ";", "}", "enabled", "=", "true", ";", "locationManager", "=", "(", "LocationManager", ")", "context", ".", "getSystemService", "(", "Context", ".", "LOCATION_SERVICE", ")", ";", "}", "public", "Location", "getLastKnownLocation", "(", ")", "{", "if", "(", "!", "enabled", ")", "return", "null", ";", "Location", "lastGpsLocation", "=", "locationManager", ".", "getLastKnownLocation", "(", "LocationManager", ".", "GPS_PROVIDER", ")", ";", "Location", "lastNetworkLocation", "=", "locationManager", ".", "getLastKnownLocation", "(", "LocationManager", ".", "NETWORK_PROVIDER", ")", ";", "if", "(", "lastGpsLocation", "==", "null", ")", "return", "lastNetworkLocation", ";", "if", "(", "lastNetworkLocation", "==", "null", ")", "return", "lastGpsLocation", ";", "if", "(", "lastGpsLocation", ".", "getTime", "(", ")", ">", "lastNetworkLocation", ".", "getTime", "(", ")", ")", "return", "lastGpsLocation", ";", "else", "return", "lastNetworkLocation", ";", "}", "private", "boolean", "isBetterLocation", "(", "Location", "location", ",", "Location", "currentBestLocation", ")", "{", "if", "(", "location", "==", "null", ")", "return", "false", ";", "if", "(", "isTooOld", "(", "location", ")", ")", "return", "false", ";", "if", "(", "currentBestLocation", "==", "null", ")", "return", "true", ";", "long", "timeDelta", "=", "location", ".", "getTime", "(", ")", "-", "currentBestLocation", ".", "getTime", "(", ")", ";", "boolean", "isSignificantlyNewer", "=", "timeDelta", ">", "TWO_MINUTES", ";", "boolean", "isSignificantlyOlder", "=", "timeDelta", "<", "-", "TWO_MINUTES", ";", "boolean", "isNewer", "=", "timeDelta", ">", "0", ";", "if", "(", "isSignificantlyNewer", ")", "return", "true", ";", "else", "if", "(", "isSignificantlyOlder", ")", "return", "false", ";", "int", "accuracyDelta", "=", "(", "int", ")", "(", "location", ".", "getAccuracy", "(", ")", "-", "currentBestLocation", ".", "getAccuracy", "(", ")", ")", ";", "boolean", "isLessAccurate", "=", "accuracyDelta", ">", "0", ";", "boolean", "isMoreAccurate", "=", "accuracyDelta", "<", "0", ";", "boolean", "isSignificantlyLessAccurate", "=", "accuracyDelta", ">", "400", ";", "boolean", "isFromSameProvider", "=", "isSameProvider", "(", "location", ".", "getProvider", "(", ")", ",", "currentBestLocation", ".", "getProvider", "(", ")", ")", ";", "if", "(", "isMoreAccurate", ")", "return", "true", ";", "else", "if", "(", "isNewer", "&&", "!", "isLessAccurate", ")", "return", "true", ";", "else", "if", "(", "isNewer", "&&", "!", "isSignificantlyLessAccurate", "&&", "isFromSameProvider", ")", "return", "true", ";", "else", "return", "false", ";", "}", "public", "boolean", "differsOnlyInTime", "(", "Location", "location1", ",", "Location", "location2", ")", "{", "if", "(", "location1", "==", "null", "||", "location2", "==", "null", ")", "return", "false", ";", "if", "(", "location1", ".", "getLatitude", "(", ")", "==", "location2", ".", "getLatitude", "(", ")", "&&", "location1", ".", "getLongitude", "(", ")", "==", "location2", ".", "getLongitude", "(", ")", "&&", "location1", ".", "getAccuracy", "(", ")", "==", "location2", ".", "getAccuracy", "(", ")", ")", "return", "true", ";", "else", "return", "false", ";", "}", "private", "boolean", "isSameProvider", "(", "String", "provider1", ",", "String", "provider2", ")", "{", "if", "(", "provider1", "==", "null", ")", "return", "provider2", "==", "null", ";", "else", "return", "provider1", ".", "equals", "(", "provider2", ")", ";", "}", "public", "boolean", "isTooOld", "(", "Location", "location", ")", "{", "if", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "location", ".", "getTime", "(", ")", ">", "MAX_AGE", ")", "return", "true", ";", "else", "return", "false", ";", "}", "public", "void", "onPause", "(", ")", "{", "if", "(", "!", "enabled", ")", "return", ";", "locationManager", ".", "removeUpdates", "(", "this", ")", ";", "}", "public", "void", "onResume", "(", ")", "{", "Common", ".", "logd", "(", "\"\"", ")", ";", "if", "(", "!", "enabled", ")", "return", ";", "currentBestLocation", "=", "null", ";", "boolean", "bestLocationUpdated", "=", "false", ";", "Location", "lastGpsLocation", "=", "locationManager", ".", "getLastKnownLocation", "(", "LocationManager", ".", "GPS_PROVIDER", ")", ";", "if", "(", "isBetterLocation", "(", "lastGpsLocation", ",", "currentBestLocation", ")", ")", "{", "Common", ".", "logd", "(", "\"\"", ")", ";", "currentBestLocation", "=", "lastGpsLocation", ";", "bestLocationUpdated", "=", "true", ";", "}", "Location", "lastNetworkLocation", "=", "locationManager", ".", "getLastKnownLocation", "(", "LocationManager", ".", "NETWORK_PROVIDER", ")", ";", "if", "(", "isBetterLocation", "(", "lastNetworkLocation", ",", "currentBestLocation", ")", ")", "{", "Common", ".", "logd", "(", "\"\"", ")", ";", "currentBestLocation", "=", "lastNetworkLocation", ";", "bestLocationUpdated", "=", "true", ";", "}", "if", "(", "bestLocationUpdated", ")", "listener", ".", "onBestLocationUpdated", "(", "currentBestLocation", ")", ";", "boolean", "gpsEnabled", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "context", ")", ".", "getBoolean", "(", "Common", ".", "PREF_GPS_ENABLED", ",", "false", ")", ";", "if", "(", "gpsEnabled", ")", "locationManager", ".", "requestLocationUpdates", "(", "LocationManager", ".", "GPS_PROVIDER", ",", "1500", ",", "25", ",", "this", ")", ";", "locationManager", ".", "requestLocationUpdates", "(", "LocationManager", ".", "NETWORK_PROVIDER", ",", "500", ",", "100", ",", "this", ")", ";", "Common", ".", "logd", "(", "\"\"", ")", ";", "}", "@", "Override", "public", "void", "onLocationChanged", "(", "Location", "location", ")", "{", "Common", ".", "logd", "(", "\"\"", ")", ";", "Common", ".", "logd", "(", "location", ".", "getAccuracy", "(", ")", "+", "\"", "\"", "+", "location", ".", "getTime", "(", ")", ")", ";", "if", "(", "isBetterLocation", "(", "location", ",", "currentBestLocation", ")", ")", "{", "currentBestLocation", "=", "location", ";", "listener", ".", "onBestLocationUpdated", "(", "currentBestLocation", ")", ";", "}", "Common", ".", "logd", "(", "\"\"", ")", ";", "}", "@", "Override", "public", "void", "onProviderDisabled", "(", "String", "provider", ")", "{", "}", "@", "Override", "public", "void", "onProviderEnabled", "(", "String", "provider", ")", "{", "}", "@", "Override", "public", "void", "onStatusChanged", "(", "String", "provider", ",", "int", "status", ",", "Bundle", "extras", ")", "{", "}", "public", "static", "interface", "BestLocationListener", "{", "public", "void", "onBestLocationUpdated", "(", "Location", "location", ")", ";", "}", "}", "</s>" ]
8,512
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Arrays", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "DatePickerDialog", ";", "import", "android", ".", "app", ".", "DatePickerDialog", ".", "OnDateSetListener", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "app", ".", "ProgressDialog", ";", "import", "android", ".", "app", ".", "TimePickerDialog", ";", "import", "android", ".", "app", ".", "TimePickerDialog", ".", "OnTimeSetListener", ";", "import", "android", ".", "content", ".", "BroadcastReceiver", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "DialogInterface", ".", "OnCancelListener", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "IntentFilter", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "location", ".", "Location", ";", "import", "android", ".", "os", ".", "Build", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "os", ".", "StrictMode", ";", "import", "android", ".", "os", ".", "SystemClock", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "text", ".", "Editable", ";", "import", "android", ".", "text", ".", "Spannable", ";", "import", "android", ".", "text", ".", "TextWatcher", ";", "import", "android", ".", "text", ".", "style", ".", "ForegroundColorSpan", ";", "import", "android", ".", "util", ".", "DisplayMetrics", ";", "import", "android", ".", "view", ".", "KeyEvent", ";", "import", "android", ".", "view", ".", "LayoutInflater", ";", "import", "android", ".", "view", ".", "MotionEvent", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "view", ".", "View", ".", "OnTouchListener", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "view", ".", "inputmethod", ".", "InputMethodManager", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemClickListener", ";", "import", "android", ".", "widget", ".", "BaseAdapter", ";", "import", "android", ".", "widget", ".", "Button", ";", "import", "android", ".", "widget", ".", "DatePicker", ";", "import", "android", ".", "widget", ".", "Filter", ";", "import", "android", ".", "widget", ".", "Filterable", ";", "import", "android", ".", "widget", ".", "ImageButton", ";", "import", "android", ".", "widget", ".", "ImageView", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "LinearLayout", ".", "LayoutParams", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "android", ".", "widget", ".", "TextView", ".", "OnEditorActionListener", ";", "import", "android", ".", "widget", ".", "TimePicker", ";", "import", "android", ".", "widget", ".", "Toast", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "InputEmptyException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyFinderException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyNotFoundException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "ParseException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "StopAmbiguousException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "UnknownStopException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Areas", ".", "Area", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Favourites", ".", "Favourite", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "LocationTool", ".", "BestLocationListener", ";", "public", "class", "MainActivity", "extends", "AbstractActivity", "implements", "OnTimeSetListener", ",", "OnDateSetListener", ",", "BestLocationListener", "{", "public", "static", "final", "int", "REQUEST_PREFERENCES", "=", "0", ";", "public", "static", "final", "int", "REQUEST_MAP", "=", "1", ";", "public", "static", "final", "int", "REQUEST_SEARCH_OPTIONS", "=", "2", ";", "public", "static", "final", "int", "REQUEST_FAVOURITES", "=", "3", ";", "private", "static", "final", "int", "DIALOG_DATE", "=", "0", ";", "private", "static", "final", "int", "DIALOG_TIME", "=", "1", ";", "private", "static", "final", "int", "DIALOG_FINDING_JOURNEY", "=", "2", ";", "private", "static", "final", "int", "MAX_AREA_LOCATION_AGE", "=", "2", "*", "60", "*", "60", "*", "1000", ";", "private", "static", "final", "int", "MAX_DROPDOWN_ITEMS", "=", "7", ";", "private", "static", "final", "int", "RESET_INTERVAL", "=", "10", "*", "60", "*", "1000", ";", "private", "static", "final", "int", "FROM", "=", "0", ";", "private", "static", "final", "int", "TO", "=", "1", ";", "protected", "boolean", "depArrSwitchEnabled", "=", "false", ";", "protected", "boolean", "languageSelectionEnabled", "=", "false", ";", "protected", "ImageButton", "btSearchOptions", ";", "private", "boolean", "bonusToRanksJustUpdated", "=", "false", ";", "private", "boolean", "timeIsDeparture", "=", "true", ";", "private", "boolean", "timeManuallyChanged", "=", "false", ";", "private", "long", "lastOnPause", "=", "-", "1", ";", "private", "AbstractSearchOptions", "searchOptions", ";", "private", "Area", "area", ";", "private", "Areas", "areas", ";", "private", "AreasAdapter", "areasAdapter", "=", "new", "AreasAdapter", "(", ")", ";", "private", "Button", "btArrowFrom", ";", "private", "Button", "btArrowTo", ";", "private", "Button", "btDate", ";", "private", "Button", "btTime", ";", "private", "Calendar", "calendar", ";", "private", "DatePickerDialog", "datePickerDialog", ";", "private", "Drawable", "arrow", ";", "private", "Drawable", "deleteInput", ";", "private", "ImageView", "ivSwitch", ";", "private", "Integer", "mapMenuItemPosition", ";", "private", "LinearLayout", "llMenu", ";", "private", "Location", "location", ";", "private", "LocationTool", "locationTool", ";", "private", "MyAutoComplete", "acFrom", ";", "private", "MyAutoComplete", "acTo", ";", "private", "Stops", "stops", ";", "private", "String", "fromHint", "=", "\"\"", ";", "private", "String", "toHint", "=", "\"\"", ";", "private", "TextView", "tvArea", ";", "private", "TextView", "tvSwitch", ";", "private", "TimePickerDialog", "timePickerDialog", ";", "private", "View", "btSwap", ";", "private", "BroadcastReceiver", "timeTickReceiver", "=", "new", "BroadcastReceiver", "(", ")", "{", "@", "Override", "public", "void", "onReceive", "(", "Context", "context", ",", "Intent", "intent", ")", "{", "boolean", "timeOrDateDialogOpen", "=", "(", "timePickerDialog", "!=", "null", "&&", "timePickerDialog", ".", "isShowing", "(", ")", ")", "||", "(", "datePickerDialog", "!=", "null", "&&", "datePickerDialog", ".", "isShowing", "(", ")", ")", ";", "if", "(", "!", "timeManuallyChanged", "&&", "!", "timeOrDateDialogOpen", ")", "{", "if", "(", "calendar", ".", "getTimeInMillis", "(", ")", "<", "System", ".", "currentTimeMillis", "(", ")", ")", "{", "calendar", "=", "Calendar", ".", "getInstance", "(", ")", ";", "updateTimeDateViews", "(", ")", ";", "}", "}", "}", "}", ";", "protected", "void", "addFavouritesMenuItem", "(", ")", "{", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_star", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "arg0", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "getApplicationContext", "(", ")", ",", "FavouritesActivity", ".", "class", ")", ";", "startActivityForResult", "(", "intent", ",", "REQUEST_FAVOURITES", ")", ";", "}", "}", ")", ";", "}", "protected", "void", "addMapMenuItem", "(", ")", "{", "mapMenuItemPosition", "=", "llMenu", ".", "getChildCount", "(", ")", ";", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_map", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "arg0", ")", "{", "if", "(", "Build", ".", "VERSION", ".", "SDK_INT", ">=", "Build", ".", "VERSION_CODES", ".", "ECLAIR_MR1", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "getBaseContext", "(", ")", ",", "MapActivity", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "\"area\"", ",", "area", ")", ";", "startActivityForResult", "(", "intent", ",", "REQUEST_MAP", ")", ";", "}", "else", "{", "Toast", ".", "makeText", "(", "getApplicationContext", "(", ")", ",", "R", ".", "string", ".", "mapUnavailable", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "}", "}", ")", ";", "}", "protected", "void", "addMenuItem", "(", "int", "icon", ",", "OnClickListener", "listener", ")", "{", "LinearLayout", "llMenuItem", "=", "(", "LinearLayout", ")", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "menu_item", ",", "null", ")", ";", "llMenuItem", ".", "setOnClickListener", "(", "listener", ")", ";", "(", "(", "ImageView", ")", "llMenuItem", ".", "findViewById", "(", "R", ".", "id", ".", "icon", ")", ")", ".", "setImageResource", "(", "icon", ")", ";", "LinearLayout", ".", "LayoutParams", "params", "=", "new", "LinearLayout", ".", "LayoutParams", "(", "LayoutParams", ".", "FILL_PARENT", ",", "LayoutParams", ".", "FILL_PARENT", ",", "1", ")", ";", "llMenu", ".", "addView", "(", "llMenuItem", ",", "params", ")", ";", "}", "private", "void", "autofill", "(", ")", "{", "int", "stopId", "=", "stops", ".", "listFrom", ".", "get", "(", "0", ")", ";", "double", "rank", "=", "stops", ".", "ranksFrom", "[", "stopId", "]", "+", "stops", ".", "getDistanceRank", "(", "location", ",", "stops", ".", "latitudes", "[", "stopId", "]", ",", "stops", ".", "longitudes", "[", "stopId", "]", ")", ";", "if", "(", "rank", "<", "17", ")", "fromHint", "=", "\"\"", ";", "else", "fromHint", "=", "stops", ".", "names", "[", "stops", ".", "listFrom", ".", "get", "(", "0", ")", "]", ";", "acFrom", ".", "setHint", "(", "fromHint", ")", ";", "if", "(", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "if", "(", "fromHint", ".", "equals", "(", "\"\"", ")", ")", "{", "toHint", "=", "\"\"", ";", "acTo", ".", "setHint", "(", "toHint", ")", ";", "}", "else", "{", "fromEntered", "(", ")", ";", "}", "}", "}", "private", "void", "findJourney", "(", ")", "{", "String", "from", "=", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "from", ".", "equals", "(", "\"\"", ")", ")", "from", "=", "fromHint", ";", "String", "to", "=", "acTo", ".", "getText", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "to", ".", "equals", "(", "\"\"", ")", ")", "to", "=", "toHint", ";", "findJourney", "(", "from", ",", "to", ".", "toString", "(", ")", ",", "area", ".", "id", ")", ";", "}", "private", "void", "findJourney", "(", "String", "from", ",", "String", "to", ",", "String", "areaId", ")", "{", "searchOptions", ".", "setBasicOptions", "(", "from", ",", "to", ",", "calendar", ",", "timeIsDeparture", ",", "areaId", ")", ";", "startTask", "(", "new", "FindJourneyTask", "(", "searchOptions", ",", "getProvider", "(", ")", ",", "stops", ",", "location", ")", ")", ";", "}", "private", "void", "fromEntered", "(", ")", "{", "String", "from", "=", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "from", ".", "equals", "(", "\"\"", ")", ")", "from", "=", "fromHint", ";", "if", "(", "from", ".", "equals", "(", "\"\"", ")", ")", "return", ";", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "this", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "updateToRanks", "(", "from", ",", "stops", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "bonusToRanksJustUpdated", "=", "true", ";", "int", "stopId", "=", "stops", ".", "listTo", ".", "get", "(", "0", ")", ";", "double", "rank", "=", "stops", ".", "baseRanksTo", "[", "stopId", "]", "+", "stops", ".", "bonusRanksTo", "[", "stopId", "]", ";", "if", "(", "rank", ">", "100", ")", "toHint", "=", "stops", ".", "names", "[", "stops", ".", "listTo", ".", "get", "(", "0", ")", "]", ";", "else", "toHint", "=", "\"\"", ";", "acTo", ".", "setHint", "(", "toHint", ")", ";", "}", "public", "Area", "getArea", "(", ")", "{", "return", "area", ";", "}", "protected", "AbstractSearchOptions", "getSearchOptions", "(", "SharedPreferences", "preferences", ")", "{", "return", "null", ";", "}", "protected", "AbstractProvider", "getProvider", "(", ")", "{", "return", "null", ";", "}", "private", "void", "hideOrShowSwap", "(", ")", "{", "if", "(", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", "&&", "acTo", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "btSwap", ".", "setVisibility", "(", "View", ".", "INVISIBLE", ")", ";", "}", "else", "{", "btSwap", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "}", "@", "Override", "protected", "void", "onActivityResult", "(", "int", "requestCode", ",", "int", "resultCode", ",", "Intent", "data", ")", "{", "if", "(", "requestCode", "==", "REQUEST_MAP", ")", "{", "if", "(", "resultCode", "==", "MapActivity", ".", "RESULT_STOP_FROM", ")", "{", "acFrom", ".", "setTextNoDropdown", "(", "data", ".", "getStringExtra", "(", "\"stop_name\"", ")", ")", ";", "}", "else", "if", "(", "resultCode", "==", "MapActivity", ".", "RESULT_STOP_TO", ")", "{", "acTo", ".", "setTextNoDropdown", "(", "data", ".", "getStringExtra", "(", "\"stop_name\"", ")", ")", ";", "}", "}", "else", "if", "(", "requestCode", "==", "REQUEST_SEARCH_OPTIONS", ")", "{", "searchOptions", ".", "loadFromSharedPreferences", "(", "preferences", ",", "this", ")", ";", "}", "else", "if", "(", "requestCode", "==", "REQUEST_FAVOURITES", "&&", "resultCode", "==", "RESULT_OK", ")", "{", "Favourite", "favourite", "=", "(", "Favourite", ")", "data", ".", "getSerializableExtra", "(", "\"favourite\"", ")", ";", "String", "from", "=", "favourite", ".", "getDeparture", "(", ")", ";", "String", "to", "=", "favourite", ".", "getArrival", "(", ")", ";", "if", "(", "data", ".", "getBooleanExtra", "(", "\"\"", ",", "false", ")", ")", "{", "from", "=", "favourite", ".", "getArrival", "(", ")", ";", "to", "=", "favourite", ".", "getDeparture", "(", ")", ";", "}", "if", "(", "area", ".", "className", ".", "equals", "(", "favourite", ".", "getAreaClass", "(", ")", ")", ")", "{", "acFrom", ".", "setTextNoDropdown", "(", "from", ")", ";", "acTo", ".", "setTextNoDropdown", "(", "to", ")", ";", "}", "findJourney", "(", "from", ",", "to", ",", "Areas", ".", "getInstance", "(", "this", ")", ".", "findByClass", "(", "favourite", ".", "getAreaClass", "(", ")", ")", ".", "id", ")", ";", "}", "}", "@", "Override", "public", "void", "onBestLocationUpdated", "(", "Location", "newLocation", ")", "{", "Location", "prevLocation", "=", "location", ";", "location", "=", "newLocation", ";", "if", "(", "!", "locationTool", ".", "differsOnlyInTime", "(", "prevLocation", ",", "newLocation", ")", ")", "{", "stops", ".", "sortFrom", "(", "newLocation", ")", ";", "autofill", "(", ")", ";", "setNearestArea", "(", ")", ";", "}", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "strictMode", "(", ")", ";", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "if", "(", "!", "preferences", ".", "contains", "(", "Common", ".", "PREF_LANGUAGE", ")", ")", "{", "if", "(", "languageSelectionEnabled", "&&", "Locale", ".", "getDefault", "(", ")", ".", "getLanguage", "(", ")", ".", "equals", "(", "\"en\"", ")", ")", "{", "startActivity", "(", "new", "Intent", "(", "this", ",", "LanguageActivity", ".", "class", ")", ")", ";", "finish", "(", ")", ";", "}", "else", "{", "SharedPreferences", "prefs", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "Editor", "editor", "=", "prefs", ".", "edit", "(", ")", ";", "editor", ".", "putString", "(", "Common", ".", "PREF_LANGUAGE", ",", "\"\"", ")", ";", "editor", ".", "commit", "(", ")", ";", "}", "}", "setContentView", "(", "R", ".", "layout", ".", "main", ")", ";", "areas", "=", "Areas", ".", "getInstance", "(", "this", ")", ";", "setUpArea", "(", ")", ";", "stops", "=", "Stops", ".", "getInstance", "(", "this", ",", "area", ".", "className", ")", ";", "calendar", "=", "Calendar", ".", "getInstance", "(", ")", ";", "locationTool", "=", "new", "LocationTool", "(", "this", ",", "this", ")", ";", "arrow", "=", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "ic_show_dropdown", ")", ";", "deleteInput", "=", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "delete_input", ")", ";", "View", "llAreaSwitcher", "=", "findViewById", "(", "R", ".", "id", ".", "llAreaSwitcher", ")", ";", "if", "(", "areas", ".", "size", "(", ")", "==", "1", ")", "llAreaSwitcher", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llAreaSwitcher", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "showAreas", "(", ")", ";", "}", "}", ")", ";", "tvArea", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvArea", ")", ";", "tvArea", ".", "setText", "(", "area", ".", "name", ")", ";", "acFrom", "=", "(", "MyAutoComplete", ")", "findViewById", "(", "R", ".", "id", ".", "acFrom", ")", ";", "acFrom", ".", "activity", "=", "this", ";", "acFrom", ".", "setAdapter", "(", "new", "StopsAdapter", "(", "FROM", ")", ")", ";", "acFrom", ".", "setOnEditorActionListener", "(", "new", "OnEditorActionListener", "(", ")", "{", "@", "Override", "public", "boolean", "onEditorAction", "(", "TextView", "v", ",", "int", "actionId", ",", "KeyEvent", "event", ")", "{", "return", "false", ";", "}", "}", ")", ";", "acFrom", ".", "setOnTouchListener", "(", "new", "OnTouchListener", "(", ")", "{", "@", "Override", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "{", "if", "(", "SystemClock", ".", "uptimeMillis", "(", ")", "-", "acFrom", ".", "lastDismissTime", ">", "80", ")", "{", "acFrom", ".", "setText", "(", "acFrom", ".", "getText", "(", ")", ")", ";", "acFrom", ".", "showDropDown", "(", ")", ";", "}", "}", "return", "false", ";", "}", "}", ")", ";", "acFrom", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "fromEntered", "(", ")", ";", "acFrom", ".", "setSelection", "(", "0", ")", ";", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "getSystemService", "(", "Context", ".", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "hideSoftInputFromWindow", "(", "acFrom", ".", "getWindowToken", "(", ")", ",", "0", ")", ";", "}", "}", ")", ";", "acFrom", ".", "addTextChangedListener", "(", "new", "TextWatcher", "(", ")", "{", "@", "Override", "public", "void", "afterTextChanged", "(", "Editable", "s", ")", "{", "hideOrShowSwap", "(", ")", ";", "}", "@", "Override", "public", "void", "onTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "before", ",", "int", "count", ")", "{", "if", "(", "before", "==", "0", "&&", "count", "==", "0", ")", "{", "}", "else", "if", "(", "!", "s", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "if", "(", "bonusToRanksJustUpdated", ")", "{", "bonusToRanksJustUpdated", "=", "false", ";", "Arrays", ".", "fill", "(", "stops", ".", "bonusRanksTo", ",", "0", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "}", "toHint", "=", "\"\"", ";", "acTo", ".", "setHint", "(", "toHint", ")", ";", "}", "else", "if", "(", "s", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", "&&", "before", ">", "0", ")", "{", "if", "(", "bonusToRanksJustUpdated", ")", "{", "bonusToRanksJustUpdated", "=", "false", ";", "Arrays", ".", "fill", "(", "stops", ".", "bonusRanksTo", ",", "0", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "}", "if", "(", "fromHint", ".", "equals", "(", "\"\"", ")", ")", "{", "toHint", "=", "\"\"", ";", "acTo", ".", "setHint", "(", "toHint", ")", ";", "}", "else", "fromEntered", "(", ")", ";", "}", "if", "(", "s", ".", "length", "(", ")", "==", "0", ")", "btArrowFrom", ".", "setBackgroundDrawable", "(", "arrow", ")", ";", "else", "btArrowFrom", ".", "setBackgroundDrawable", "(", "deleteInput", ")", ";", "}", "@", "Override", "public", "void", "beforeTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "count", ",", "int", "after", ")", "{", "}", "}", ")", ";", "btSwap", "=", "findViewById", "(", "R", ".", "id", ".", "btSwap", ")", ";", "btSwap", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "String", "from", "=", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ";", "String", "to", "=", "acTo", ".", "getText", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "!", "from", ".", "equals", "(", "\"\"", ")", "||", "!", "to", ".", "equals", "(", "\"\"", ")", ")", "{", "if", "(", "from", ".", "equals", "(", "\"\"", ")", ")", "from", "=", "fromHint", ";", "if", "(", "to", ".", "equals", "(", "\"\"", ")", ")", "to", "=", "toHint", ";", "acFrom", ".", "setTextNoDropdown", "(", "to", ")", ";", "acTo", ".", "setTextNoDropdown", "(", "from", ")", ";", "fromEntered", "(", ")", ";", "}", "}", "}", ")", ";", "acTo", "=", "(", "MyAutoComplete", ")", "findViewById", "(", "R", ".", "id", ".", "acTo", ")", ";", "acTo", ".", "activity", "=", "this", ";", "acTo", ".", "setAdapter", "(", "new", "StopsAdapter", "(", "TO", ")", ")", ";", "acTo", ".", "setOnEditorActionListener", "(", "new", "OnEditorActionListener", "(", ")", "{", "@", "Override", "public", "boolean", "onEditorAction", "(", "TextView", "v", ",", "int", "actionId", ",", "KeyEvent", "event", ")", "{", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "getSystemService", "(", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "hideSoftInputFromWindow", "(", "acTo", ".", "getWindowToken", "(", ")", ",", "0", ")", ";", "findJourney", "(", ")", ";", "return", "true", ";", "}", "}", ")", ";", "acTo", ".", "setOnTouchListener", "(", "new", "OnTouchListener", "(", ")", "{", "@", "Override", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "{", "if", "(", "SystemClock", ".", "uptimeMillis", "(", ")", "-", "acTo", ".", "lastDismissTime", ">", "80", ")", "{", "acTo", ".", "setText", "(", "acTo", ".", "getText", "(", ")", ")", ";", "acTo", ".", "showDropDown", "(", ")", ";", "}", "}", "return", "false", ";", "}", "}", ")", ";", "acTo", ".", "addTextChangedListener", "(", "new", "TextWatcher", "(", ")", "{", "@", "Override", "public", "void", "afterTextChanged", "(", "Editable", "s", ")", "{", "hideOrShowSwap", "(", ")", ";", "if", "(", "s", ".", "length", "(", ")", "==", "0", ")", "btArrowTo", ".", "setBackgroundDrawable", "(", "arrow", ")", ";", "else", "btArrowTo", ".", "setBackgroundDrawable", "(", "deleteInput", ")", ";", "}", "@", "Override", "public", "void", "onTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "before", ",", "int", "count", ")", "{", "}", "@", "Override", "public", "void", "beforeTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "count", ",", "int", "after", ")", "{", "}", "}", ")", ";", "acTo", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "acTo", ".", "setSelection", "(", "0", ")", ";", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "getSystemService", "(", "Context", ".", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "hideSoftInputFromWindow", "(", "acTo", ".", "getWindowToken", "(", ")", ",", "0", ")", ";", "}", "}", ")", ";", "btArrowFrom", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btArrowFrom", ")", ";", "btArrowFrom", ".", "setOnTouchListener", "(", "new", "OnTouchListener", "(", ")", "{", "@", "Override", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "{", "if", "(", "SystemClock", ".", "uptimeMillis", "(", ")", "-", "acFrom", ".", "lastDismissTime", ">", "80", "||", "!", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "acFrom", ".", "requestFocus", "(", ")", ";", "if", "(", "!", "acFrom", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "getSystemService", "(", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "showSoftInput", "(", "acFrom", ",", "0", ")", ";", "}", "acFrom", ".", "setText", "(", "\"\"", ")", ";", "}", "}", "return", "false", ";", "}", "}", ")", ";", "btArrowTo", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btArrowTo", ")", ";", "btArrowTo", ".", "setOnTouchListener", "(", "new", "OnTouchListener", "(", ")", "{", "@", "Override", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "{", "if", "(", "SystemClock", ".", "uptimeMillis", "(", ")", "-", "acTo", ".", "lastDismissTime", ">", "80", "||", "!", "acTo", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "boolean", "forceAboveCopy", "=", "acTo", ".", "mPopup", ".", "forceDropDownAbove", ";", "acTo", ".", "mPopup", ".", "forceDropDownAbove", "=", "false", ";", "acTo", ".", "requestFocus", "(", ")", ";", "if", "(", "!", "acTo", ".", "getText", "(", ")", ".", "toString", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "getSystemService", "(", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "showSoftInput", "(", "acTo", ",", "0", ")", ";", "}", "acTo", ".", "setText", "(", "\"\"", ")", ";", "acTo", ".", "mPopup", ".", "forceDropDownAbove", "=", "forceAboveCopy", ";", "}", "}", "return", "false", ";", "}", "}", ")", ";", "DisplayMetrics", "metrics", "=", "new", "DisplayMetrics", "(", ")", ";", "getWindowManager", "(", ")", ".", "getDefaultDisplay", "(", ")", ".", "getMetrics", "(", "metrics", ")", ";", "if", "(", "metrics", ".", "heightPixels", "<=", "480", ")", "acTo", ".", "mPopup", ".", "forceDropDownAbove", "=", "true", ";", "else", "acTo", ".", "mPopup", ".", "forceDropDownBelow", "=", "true", ";", "tvSwitch", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvSwitch", ")", ";", "ivSwitch", "=", "(", "ImageView", ")", "findViewById", "(", "R", ".", "id", ".", "ivSwitch", ")", ";", "if", "(", "depArrSwitchEnabled", ")", "{", "tvSwitch", ".", "setText", "(", "R", ".", "string", ".", "departAt", ")", ";", "ivSwitch", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "LinearLayout", "llSwitch", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llSwitch", ")", ";", "llSwitch", ".", "setOnTouchListener", "(", "new", "OnTouchListener", "(", ")", "{", "@", "Override", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "switchDepArr", "(", ")", ";", "return", "true", ";", "}", "}", ")", ";", "if", "(", "savedInstanceState", "!=", "null", "&&", "!", "savedInstanceState", ".", "getBoolean", "(", "\"\"", ")", ")", "switchDepArr", "(", ")", ";", "}", "else", "{", "tvSwitch", ".", "setPadding", "(", "tvSwitch", ".", "getPaddingLeft", "(", ")", ",", "0", ",", "0", ",", "0", ")", ";", "}", "btTime", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btTime", ")", ";", "btTime", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "showDialog", "(", "DIALOG_TIME", ")", ";", "}", "}", ")", ";", "btDate", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btDate", ")", ";", "btDate", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "showDialog", "(", "DIALOG_DATE", ")", ";", "}", "}", ")", ";", "searchOptions", "=", "getSearchOptions", "(", "preferences", ")", ";", "btSearchOptions", "=", "(", "ImageButton", ")", "findViewById", "(", "R", ".", "id", ".", "btSearchOptions", ")", ";", "btSearchOptions", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "searchOptions", ".", "show", "(", "MainActivity", ".", "this", ",", "btSearchOptions", ")", ";", "}", "}", ")", ";", "if", "(", "searchOptions", "!=", "null", ")", "{", "btSearchOptions", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "searchOptions", ".", "loadFromSharedPreferences", "(", "preferences", ",", "this", ")", ";", "}", "findViewById", "(", "R", ".", "id", ".", "llFindJourney", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "findJourney", "(", ")", ";", "}", "}", ")", ";", "llMenu", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llMenu", ")", ";", "onCreateMenu", "(", ")", ";", "updateMapMenuItem", "(", ")", ";", "}", "@", "Override", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "switch", "(", "id", ")", "{", "case", "DIALOG_DATE", ":", "datePickerDialog", "=", "new", "DatePickerDialog", "(", "this", ",", "this", ",", "calendar", ".", "get", "(", "Calendar", ".", "YEAR", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "MONTH", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "DAY_OF_MONTH", ")", ")", ";", "return", "datePickerDialog", ";", "case", "DIALOG_TIME", ":", "timePickerDialog", "=", "new", "TimePickerDialog", "(", "this", ",", "this", ",", "calendar", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ",", "true", ")", ";", "return", "timePickerDialog", ";", "case", "DIALOG_FINDING_JOURNEY", ":", "ProgressDialog", "progressDialog", "=", "new", "ProgressDialog", "(", "this", ")", ";", "progressDialog", ".", "setIndeterminate", "(", "true", ")", ";", "progressDialog", ".", "setMessage", "(", "getString", "(", "R", ".", "string", ".", "findingJourney", ")", ")", ";", "progressDialog", ".", "setCancelable", "(", "true", ")", ";", "progressDialog", ".", "setOnCancelListener", "(", "new", "OnCancelListener", "(", ")", "{", "@", "Override", "public", "void", "onCancel", "(", "DialogInterface", "dialog", ")", "{", "cancelTasksOfThisClass", "(", "FindJourneyTask", ".", "class", ")", ";", "try", "{", "removeDialog", "(", "DIALOG_FINDING_JOURNEY", ")", ";", "}", "catch", "(", "IllegalArgumentException", "e", ")", "{", "}", "}", "}", ")", ";", "return", "progressDialog", ";", "}", "throw", "new", "AssertionError", "(", ")", ";", "}", "protected", "void", "onCreateMenu", "(", ")", "{", "}", "@", "Override", "public", "void", "onDateSet", "(", "DatePicker", "view", ",", "int", "year", ",", "int", "monthOfYear", ",", "int", "dayOfMonth", ")", "{", "timeManuallyChanged", "=", "true", ";", "calendar", ".", "set", "(", "Calendar", ".", "YEAR", ",", "year", ")", ";", "calendar", ".", "set", "(", "Calendar", ".", "MONTH", ",", "monthOfYear", ")", ";", "calendar", ".", "set", "(", "Calendar", ".", "DAY_OF_MONTH", ",", "dayOfMonth", ")", ";", "updateTimeDateViews", "(", ")", ";", "}", "protected", "void", "handleUnknownJourneyFinderException", "(", "JourneyFinderException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "@", "Override", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "searchOptions", ".", "onPause", "(", "preferences", ")", ";", "locationTool", ".", "onPause", "(", ")", ";", "unregisterReceiver", "(", "timeTickReceiver", ")", ";", "lastOnPause", "=", "SystemClock", ".", "elapsedRealtime", "(", ")", ";", "}", "protected", "void", "onRestoreInstanceState", "(", "Bundle", "savedInstanceState", ")", "{", "acFrom", ".", "setThreshold", "(", "1000", ")", ";", "acTo", ".", "setThreshold", "(", "1000", ")", ";", "super", ".", "onRestoreInstanceState", "(", "savedInstanceState", ")", ";", "acFrom", ".", "setThreshold", "(", "0", ")", ";", "acTo", ".", "setThreshold", "(", "0", ")", ";", "calendar", "=", "(", "Calendar", ")", "savedInstanceState", ".", "getSerializable", "(", "\"calendar\"", ")", ";", "fromHint", "=", "savedInstanceState", ".", "getString", "(", "\"fromHint\"", ")", ";", "toHint", "=", "savedInstanceState", ".", "getString", "(", "\"toHint\"", ")", ";", "if", "(", "depArrSwitchEnabled", ")", "{", "if", "(", "!", "savedInstanceState", ".", "getBoolean", "(", "\"\"", ")", ")", "switchDepArr", "(", ")", ";", "}", "lastOnPause", "=", "savedInstanceState", ".", "getLong", "(", "\"lastOnPause\"", ")", ";", "}", "@", "Override", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "searchOptions", ".", "onResume", "(", ")", ";", "location", "=", "null", ";", "locationTool", ".", "onResume", "(", ")", ";", "setNearestArea", "(", ")", ";", "if", "(", "calendar", ".", "getTimeInMillis", "(", ")", "<", "System", ".", "currentTimeMillis", "(", ")", ")", "calendar", "=", "Calendar", ".", "getInstance", "(", ")", ";", "if", "(", "lastOnPause", "!=", "-", "1", "&&", "(", "SystemClock", ".", "elapsedRealtime", "(", ")", "-", "lastOnPause", ")", ">", "RESET_INTERVAL", ")", "{", "calendar", "=", "Calendar", ".", "getInstance", "(", ")", ";", "acFrom", ".", "setTextNoDropdown", "(", "\"\"", ")", ";", "acTo", ".", "setTextNoDropdown", "(", "\"\"", ")", ";", "}", "updateTimeDateViews", "(", ")", ";", "stops", ".", "sortFrom", "(", "location", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "autofill", "(", ")", ";", "timeManuallyChanged", "=", "false", ";", "registerReceiver", "(", "timeTickReceiver", ",", "new", "IntentFilter", "(", "Intent", ".", "ACTION_TIME_TICK", ")", ")", ";", "if", "(", "getTasksByClass", "(", "FindJourneyTask", ".", "class", ")", ".", "size", "(", ")", "==", "0", ")", "{", "try", "{", "dismissDialog", "(", "DIALOG_FINDING_JOURNEY", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "}", "}", "}", "@", "Override", "public", "void", "onTimeSet", "(", "TimePicker", "view", ",", "int", "hourOfDay", ",", "int", "minute", ")", "{", "timeManuallyChanged", "=", "true", ";", "calendar", ".", "set", "(", "Calendar", ".", "HOUR_OF_DAY", ",", "hourOfDay", ")", ";", "calendar", ".", "set", "(", "Calendar", ".", "MINUTE", ",", "minute", ")", ";", "updateTimeDateViews", "(", ")", ";", "}", "@", "Override", "public", "void", "onSaveInstanceState", "(", "Bundle", "bundle", ")", "{", "super", ".", "onSaveInstanceState", "(", "bundle", ")", ";", "bundle", ".", "putSerializable", "(", "\"calendar\"", ",", "calendar", ")", ";", "bundle", ".", "putString", "(", "\"fromHint\"", ",", "fromHint", ")", ";", "bundle", ".", "putString", "(", "\"toHint\"", ",", "toHint", ")", ";", "bundle", ".", "putBoolean", "(", "\"\"", ",", "timeIsDeparture", ")", ";", "bundle", ".", "putLong", "(", "\"lastOnPause\"", ",", "SystemClock", ".", "elapsedRealtime", "(", ")", ")", ";", "}", "private", "void", "setNearestArea", "(", ")", "{", "Location", "locLocation", ";", "if", "(", "location", "==", "null", ")", "{", "Location", "lastNetworkLocation", "=", "locationTool", ".", "getLastKnownLocation", "(", ")", ";", "if", "(", "lastNetworkLocation", "!=", "null", "&&", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "lastNetworkLocation", ".", "getTime", "(", ")", ")", "<", "MAX_AREA_LOCATION_AGE", ")", "locLocation", "=", "lastNetworkLocation", ";", "else", "return", ";", "}", "else", "locLocation", "=", "location", ";", "int", "nearestAreaId", "=", "-", "1", ";", "double", "minDistance", "=", "0", ";", "for", "(", "int", "i", "=", "3", ";", "i", "<", "areas", ".", "size", "(", ")", ";", "i", "++", ")", "{", "double", "d1", "=", "(", "locLocation", ".", "getLatitude", "(", ")", "-", "areas", ".", "get", "(", "i", ")", ".", "latitude", ")", "*", "111308.5", ";", "double", "d2", "=", "(", "locLocation", ".", "getLongitude", "(", ")", "-", "areas", ".", "get", "(", "i", ")", ".", "longitude", ")", "*", "71556.2", ";", "double", "meters", "=", "(", "Math", ".", "sqrt", "(", "d1", "*", "d1", "+", "d2", "*", "d2", ")", ")", ";", "double", "distance", "=", "meters", "-", "areas", ".", "get", "(", "i", ")", ".", "radius", ";", "if", "(", "distance", "<", "minDistance", ")", "{", "nearestAreaId", "=", "i", ";", "minDistance", "=", "distance", ";", "}", "}", "areasAdapter", ".", "nearestAreaId", "=", "nearestAreaId", ";", "areasAdapter", ".", "notifyDataSetChanged", "(", ")", ";", "}", "private", "void", "setUpArea", "(", ")", "{", "String", "area", "=", "preferences", ".", "getString", "(", "Common", ".", "PREF_AREA", ",", "\"pid\"", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "areas", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "area", ".", "equals", "(", "areas", ".", "get", "(", "i", ")", ".", "id", ")", ")", "{", "this", ".", "area", "=", "areas", ".", "get", "(", "i", ")", ";", "return", ";", "}", "}", "for", "(", "int", "i", "=", "0", ";", "i", "<", "areas", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "area", ".", "equals", "(", "areas", ".", "get", "(", "i", ")", ".", "className", ")", ")", "{", "this", ".", "area", "=", "areas", ".", "get", "(", "i", ")", ";", "return", ";", "}", "}", "this", ".", "area", "=", "areas", ".", "get", "(", "0", ")", ";", "}", "public", "void", "showAreas", "(", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setAdapter", "(", "areasAdapter", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "position", ")", "{", "String", "prevAreaClass", "=", "area", ".", "className", ";", "int", "areaId", "=", "position", ";", "if", "(", "areasAdapter", ".", "nearestAreaId", "!=", "-", "1", ")", "{", "if", "(", "position", "==", "0", ")", "areaId", "=", "areasAdapter", ".", "nearestAreaId", ";", "else", "areaId", "=", "position", "-", "1", ";", "}", "tvArea", ".", "setText", "(", "areas", ".", "get", "(", "areaId", ")", ".", "name", ")", ";", "area", "=", "areas", ".", "get", "(", "areaId", ")", ";", "updateMapMenuItem", "(", ")", ";", "if", "(", "!", "prevAreaClass", ".", "equals", "(", "\"CR1\"", ")", "||", "!", "areas", ".", "get", "(", "areaId", ")", ".", "className", ".", "equals", "(", "\"CR1\"", ")", ")", "{", "stops", "=", "Stops", ".", "getInstance", "(", "getApplicationContext", "(", ")", ",", "areas", ".", "get", "(", "areaId", ")", ".", "className", ")", ";", "stops", ".", "sortFrom", "(", "location", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "acFrom", ".", "setTextNoDropdown", "(", "\"\"", ")", ";", "acTo", ".", "setTextNoDropdown", "(", "\"\"", ")", ";", "fromHint", "=", "\"\"", ";", "acFrom", ".", "setHint", "(", "fromHint", ")", ";", "toHint", "=", "\"\"", ";", "acTo", ".", "setHint", "(", "toHint", ")", ";", "autofill", "(", ")", ";", "searchOptions", ".", "reset", "(", "MainActivity", ".", "this", ")", ";", "}", "Editor", "editor", "=", "preferences", ".", "edit", "(", ")", ";", "editor", ".", "putString", "(", "Common", ".", "PREF_AREA", ",", "area", ".", "id", ")", ";", "editor", ".", "commit", "(", ")", ";", "}", "}", ")", ";", "builder", ".", "create", "(", ")", ".", "show", "(", ")", ";", "}", "private", "void", "switchDepArr", "(", ")", "{", "timeIsDeparture", "=", "!", "timeIsDeparture", ";", "if", "(", "timeIsDeparture", ")", "{", "tvSwitch", ".", "setText", "(", "getText", "(", "R", ".", "string", ".", "departAt", ")", ")", ";", "ivSwitch", ".", "setImageDrawable", "(", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "switch_left", ")", ")", ";", "}", "else", "{", "tvSwitch", ".", "setText", "(", "getText", "(", "R", ".", "string", ".", "arriveAt", ")", ")", ";", "ivSwitch", ".", "setImageDrawable", "(", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "switch_right", ")", ")", ";", "}", "}", "private", "void", "strictMode", "(", ")", "{", "if", "(", "Build", ".", "VERSION", ".", "SDK_INT", ">=", "Build", ".", "VERSION_CODES", ".", "GINGERBREAD", "&&", "Common", ".", "DEVELOPER_MODE", ")", "{", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "StrictMode", ".", "enableDefaults", "(", ")", ";", "}", "}", ".", "run", "(", ")", ";", "}", "}", "private", "void", "updateMapMenuItem", "(", ")", "{", "boolean", "enabled", "=", "area", ".", "maps", ".", "length", ">", "0", ";", "if", "(", "mapMenuItemPosition", "!=", "null", ")", "{", "Drawable", "d", "=", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "ic_map", ")", ";", "d", ".", "setAlpha", "(", "enabled", "?", "255", ":", "128", ")", ";", "LinearLayout", "llMenuItem", "=", "(", "LinearLayout", ")", "llMenu", ".", "getChildAt", "(", "mapMenuItemPosition", ")", ";", "llMenuItem", ".", "setClickable", "(", "enabled", "?", "true", ":", "false", ")", ";", "ImageView", "iv", "=", "(", "(", "ImageView", ")", "llMenuItem", ".", "findViewById", "(", "R", ".", "id", ".", "icon", ")", ")", ";", "iv", ".", "setImageDrawable", "(", "d", ")", ";", "}", "}", "private", "void", "updateTimeDateViews", "(", ")", "{", "btTime", ".", "setText", "(", "Utils", ".", "formatTime", "(", "calendar", ")", ")", ";", "if", "(", "timePickerDialog", "!=", "null", ")", "timePickerDialog", ".", "updateTime", "(", "calendar", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ")", ";", "btDate", ".", "setText", "(", "Utils", ".", "formatDate", "(", "calendar", ",", "this", ")", ")", ";", "if", "(", "datePickerDialog", "!=", "null", ")", "datePickerDialog", ".", "updateDate", "(", "calendar", ".", "get", "(", "Calendar", ".", "YEAR", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "MONTH", ")", ",", "calendar", ".", "get", "(", "Calendar", ".", "DAY_OF_MONTH", ")", ")", ";", "}", "private", "class", "AreasAdapter", "extends", "BaseAdapter", "{", "public", "int", "nearestAreaId", "=", "-", "1", ";", "@", "Override", "public", "int", "getCount", "(", ")", "{", "int", "returnedCount", "=", "areas", ".", "size", "(", ")", ";", "if", "(", "nearestAreaId", "!=", "-", "1", ")", "returnedCount", "++", ";", "return", "returnedCount", ";", "}", "@", "Override", "public", "Object", "getItem", "(", "int", "position", ")", "{", "return", "position", ";", "}", "@", "Override", "public", "long", "getItemId", "(", "int", "position", ")", "{", "return", "position", ";", "}", "@", "Override", "public", "View", "getView", "(", "int", "position", ",", "View", "convertView", ",", "ViewGroup", "parent", ")", "{", "ViewHolder", "holder", ";", "if", "(", "convertView", "==", "null", ")", "{", "convertView", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "android", ".", "R", ".", "layout", ".", "select_dialog_item", ",", "null", ")", ";", "holder", "=", "new", "ViewHolder", "(", ")", ";", "holder", ".", "text", "=", "(", "TextView", ")", "convertView", ".", "findViewById", "(", "android", ".", "R", ".", "id", ".", "text1", ")", ";", "convertView", ".", "setTag", "(", "holder", ")", ";", "}", "else", "{", "holder", "=", "(", "ViewHolder", ")", "convertView", ".", "getTag", "(", ")", ";", "}", "int", "areaId", "=", "position", "-", "1", ";", "if", "(", "nearestAreaId", "==", "-", "1", ")", "areaId", "=", "position", ";", "if", "(", "position", "==", "0", "&&", "nearestAreaId", "!=", "-", "1", ")", "{", "String", "areaName", "=", "areas", ".", "get", "(", "nearestAreaId", ")", ".", "name", ";", "holder", ".", "text", ".", "setText", "(", "areaName", "+", "\"", "\"", "+", "getString", "(", "R", ".", "string", ".", "myLocation", ")", ",", "TextView", ".", "BufferType", ".", "SPANNABLE", ")", ";", "holder", ".", "text", ".", "setTextColor", "(", "0xFF2562A8", ")", ";", "Spannable", "spannable", "=", "(", "Spannable", ")", "holder", ".", "text", ".", "getText", "(", ")", ";", "spannable", ".", "setSpan", "(", "new", "ForegroundColorSpan", "(", "0xffaaaaaa", ")", ",", "areaName", ".", "length", "(", ")", ",", "spannable", ".", "length", "(", ")", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "holder", ".", "text", ".", "setText", "(", "spannable", ")", ";", "}", "else", "{", "holder", ".", "text", ".", "setText", "(", "areas", ".", "get", "(", "areaId", ")", ".", "name", ")", ";", "if", "(", "areas", ".", "get", "(", "areaId", ")", ".", "className", ".", "equals", "(", "\"CR1\"", ")", "||", "areas", ".", "get", "(", "areaId", ")", ".", "className", ".", "equals", "(", "\"Letadla\"", ")", ")", "holder", ".", "text", ".", "setTextColor", "(", "0xFF008000", ")", ";", "else", "holder", ".", "text", ".", "setTextColor", "(", "0xFF000000", ")", ";", "}", "return", "convertView", ";", "}", "class", "ViewHolder", "{", "TextView", "text", ";", "}", "}", "private", "static", "class", "FindJourneyTask", "extends", "Task", "<", "MainActivity", ",", "Void", ",", "Object", ">", "{", "private", "AbstractProvider", "provider", ";", "private", "AbstractSearchOptions", "options", ";", "private", "Context", "context", ";", "private", "Location", "location", ";", "private", "Stops", "stops", ";", "public", "FindJourneyTask", "(", "AbstractSearchOptions", "searchOptions", ",", "AbstractProvider", "provider", ",", "Stops", "stops", ",", "Location", "location", ")", "{", "this", ".", "options", "=", "searchOptions", ";", "this", ".", "provider", "=", "provider", ";", "this", ".", "stops", "=", "stops", ";", "this", ".", "location", "=", "location", ";", "}", "@", "Override", "protected", "void", "runBefore", "(", ")", "{", "activity", ".", "showDialog", "(", "DIALOG_FINDING_JOURNEY", ")", ";", "context", "=", "activity", ".", "getApplicationContext", "(", ")", ";", "}", "@", "Override", "protected", "Object", "runInBackground", "(", ")", "{", "try", "{", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "saveSearch", "(", "options", ".", "getFrom", "(", ")", ",", "options", ".", "getTo", "(", ")", ",", "stops", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "stops", ".", "sortFrom", "(", "location", ")", ";", "stops", ".", "sortTo", "(", ")", ";", "return", "provider", ".", "findJourneys", "(", "options", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "return", "e", ";", "}", "catch", "(", "JourneyFinderException", "e", ")", "{", "return", "e", ";", "}", "}", "@", "Override", "protected", "void", "runAfter", "(", "Object", "result", ")", "{", "activity", ".", "removeDialog", "(", "DIALOG_FINDING_JOURNEY", ")", ";", "if", "(", "result", "instanceof", "JourneyFinderException", ")", "{", "if", "(", "result", "instanceof", "StopAmbiguousException", ")", "{", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "stopAmbiguous", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "if", "(", "result", "instanceof", "InputEmptyException", ")", "{", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "loadingJourneyInputEmpty", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "if", "(", "result", "instanceof", "JourneyNotFoundException", ")", "{", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "journeyNotFound", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "if", "(", "result", "instanceof", "ParseException", ")", "{", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "parseError", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "if", "(", "result", "instanceof", "UnknownStopException", ")", "{", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "stopDoesntExist", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "{", "activity", ".", "handleUnknownJourneyFinderException", "(", "(", "JourneyFinderException", ")", "result", ")", ";", "}", "}", "else", "if", "(", "result", "instanceof", "IOException", ")", "{", "IOException", "e", "=", "(", "IOException", ")", "result", ";", "e", ".", "printStackTrace", "(", ")", ";", "Toast", ".", "makeText", "(", "context", ",", "R", ".", "string", ".", "loadingJourneyIOException", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "else", "{", "AbstractResults", "results", "=", "(", "AbstractResults", ")", "result", ";", "Intent", "intent", "=", "Utils", ".", "getIntent", "(", "context", ",", "\"\"", ")", ";", "intent", ".", "putExtra", "(", "\"results\"", ",", "results", ")", ";", "activity", ".", "startActivity", "(", "intent", ")", ";", "}", "}", "}", "private", "class", "StopsAdapter", "extends", "BaseAdapter", "implements", "Filterable", "{", "private", "int", "fromOrTo", ";", "private", "ArrayList", "<", "String", ">", "filteredStops", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "private", "LayoutInflater", "inflater", ";", "@", "Override", "public", "Filter", "getFilter", "(", ")", "{", "return", "new", "Filter", "(", ")", "{", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "@", "Override", "protected", "void", "publishResults", "(", "CharSequence", "constraint", ",", "FilterResults", "results", ")", "{", "if", "(", "results", ".", "values", "!=", "null", ")", "filteredStops", "=", "(", "ArrayList", "<", "String", ">", ")", "results", ".", "values", ";", "notifyDataSetChanged", "(", ")", ";", "}", "@", "Override", "protected", "FilterResults", "performFiltering", "(", "CharSequence", "constraint", ")", "{", "if", "(", "constraint", "==", "null", ")", "constraint", "=", "\"\"", ";", "String", "str", "=", "constraint", ".", "toString", "(", ")", ";", "str", "=", "str", ".", "toLowerCase", "(", "Locale", ".", "getDefault", "(", ")", ")", ";", "str", "=", "Utils", ".", "simplify", "(", "str", ")", ";", "ArrayList", "<", "String", ">", "locFilteredStops", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "ArrayList", "<", "Integer", ">", "stopsList", "=", "stops", ".", "listFrom", ";", "if", "(", "fromOrTo", "==", "TO", ")", "stopsList", "=", "stops", ".", "listTo", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stopsList", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "id", "=", "stopsList", ".", "get", "(", "i", ")", ";", "if", "(", "stops", ".", "simpleNames", "[", "id", "]", ".", "startsWith", "(", "str", ")", ")", "{", "locFilteredStops", ".", "add", "(", "stops", ".", "names", "[", "id", "]", ")", ";", "if", "(", "locFilteredStops", ".", "size", "(", ")", "==", "MAX_DROPDOWN_ITEMS", ")", "break", ";", "}", "}", "if", "(", "locFilteredStops", ".", "size", "(", ")", "<", "MAX_DROPDOWN_ITEMS", ")", "{", "str", "=", "\"", "\"", "+", "str", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stopsList", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "id", "=", "stopsList", ".", "get", "(", "i", ")", ";", "if", "(", "stops", ".", "simpleNames", "[", "id", "]", ".", "indexOf", "(", "str", ")", "!=", "-", "1", ")", "{", "locFilteredStops", ".", "add", "(", "stops", ".", "names", "[", "id", "]", ")", ";", "if", "(", "locFilteredStops", ".", "size", "(", ")", "==", "MAX_DROPDOWN_ITEMS", ")", "break", ";", "}", "}", "}", "FilterResults", "filterResults", "=", "new", "FilterResults", "(", ")", ";", "filterResults", ".", "count", "=", "locFilteredStops", ".", "size", "(", ")", ";", "filterResults", ".", "values", "=", "locFilteredStops", ";", "return", "filterResults", ";", "}", "}", ";", "}", "@", "Override", "public", "int", "getCount", "(", ")", "{", "return", "filteredStops", ".", "size", "(", ")", ";", "}", "@", "Override", "public", "Object", "getItem", "(", "int", "position", ")", "{", "return", "filteredStops", ".", "get", "(", "position", ")", ";", "}", "@", "Override", "public", "long", "getItemId", "(", "int", "position", ")", "{", "return", "position", ";", "}", "public", "StopsAdapter", "(", "int", "fromOrTo", ")", "{", "super", "(", ")", ";", "this", ".", "fromOrTo", "=", "fromOrTo", ";", "inflater", "=", "getLayoutInflater", "(", ")", ";", "}", "@", "Override", "public", "View", "getView", "(", "int", "position", ",", "View", "convertView", ",", "ViewGroup", "parent", ")", "{", "View", "view", "=", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "autocomplete_item", ",", "null", ")", ";", "TextView", "tvAutocompleteItem", "=", "(", "TextView", ")", "view", ".", "findViewById", "(", "R", ".", "id", ".", "tvAutocompleteItem", ")", ";", "tvAutocompleteItem", ".", "setText", "(", "filteredStops", ".", "get", "(", "position", ")", ")", ";", "return", "view", ";", "}", "}", "}", "</s>" ]
8,513
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "BroadcastReceiver", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "IntentFilter", ";", "import", "android", ".", "graphics", ".", "Color", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "view", ".", "LayoutInflater", ";", "import", "android", ".", "view", ".", "Menu", ";", "import", "android", ".", "view", ".", "MenuItem", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "widget", ".", "AbsListView", ";", "import", "android", ".", "widget", ".", "AbsListView", ".", "OnScrollListener", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemClickListener", ";", "import", "android", ".", "widget", ".", "BaseAdapter", ";", "import", "android", ".", "widget", ".", "Button", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "ListView", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "android", ".", "widget", ".", "Toast", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyFinderException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyNotFoundException", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Favourites", ".", "Favourite", ";", "public", "class", "ResultsActivity", "extends", "AbstractActivity", "implements", "OnScrollListener", "{", "public", "static", "final", "int", "NEXT", "=", "0", ";", "public", "static", "final", "int", "PREV", "=", "1", ";", "protected", "static", "final", "int", "DIALOG_OPTIONS", "=", "0", ";", "private", "static", "final", "int", "ITEM_ID_LOAD_NEXT", "=", "-", "1", ";", "private", "static", "final", "int", "ITEM_ID_LOAD_PREV", "=", "-", "2", ";", "protected", "ResultsAdapter", "adapter", ";", "private", "AbstractResults", "results", ";", "private", "BroadcastReceiver", "timeTickReceiver", ";", "private", "LinearLayout", "llBottomBar", ";", "private", "ListView", "listView", ";", "protected", "void", "cancelJourneyWatch", "(", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "this", ",", "JourneyNotifsService", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "\"cancel\"", ",", "getIntent", "(", ")", ".", "getStringExtra", "(", "\"\"", ")", ")", ";", "startService", "(", "intent", ")", ";", "llBottomBar", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "if", "(", "getIntent", "(", ")", ".", "hasExtra", "(", "\"\"", ")", ")", "{", "AbstractJourney", "journey", "=", "(", "AbstractJourney", ")", "getIntent", "(", ")", ".", "getSerializableExtra", "(", "\"\"", ")", ";", "View", "view", "=", "adapter", ".", "findView", "(", "journey", ")", ";", "if", "(", "view", "!=", "null", ")", "view", ".", "setBackgroundColor", "(", "Color", ".", "TRANSPARENT", ")", ";", "}", "}", "protected", "Dialog", "createJourneyMenu", "(", ")", "{", "return", "null", ";", "}", "private", "boolean", "isLoadingPrev", "(", ")", "{", "for", "(", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", "task", ":", "getTasksByClass", "(", "LoadMoreTask", ".", "class", ")", ")", "{", "LoadMoreTask", "loadMoreTask", "=", "(", "LoadMoreTask", ")", "task", ";", "if", "(", "loadMoreTask", ".", "nextOrPrev", "==", "PREV", ")", "return", "true", ";", "}", "return", "false", ";", "}", "private", "boolean", "isLoadingNext", "(", ")", "{", "for", "(", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", "task", ":", "getTasksByClass", "(", "LoadMoreTask", ".", "class", ")", ")", "{", "LoadMoreTask", "loadMoreTask", "=", "(", "LoadMoreTask", ")", "task", ";", "if", "(", "loadMoreTask", ".", "nextOrPrev", "==", "NEXT", ")", "return", "true", ";", "}", "return", "false", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "results", ")", ";", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "results", "=", "(", "AbstractResults", ")", "getNonConfigurationData", "(", "\"results\"", ")", ";", "if", "(", "results", "==", "null", ")", "{", "if", "(", "savedInstanceState", "!=", "null", ")", "{", "results", "=", "(", "AbstractResults", ")", "savedInstanceState", ".", "getSerializable", "(", "\"results\"", ")", ";", "}", "else", "{", "results", "=", "(", "AbstractResults", ")", "getIntent", "(", ")", ".", "getSerializableExtra", "(", "\"results\"", ")", ";", "}", "}", "setUpListView", "(", ")", ";", "llBottomBar", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llBottomBar", ")", ";", "Button", "btCancelWatch", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btCancelWatch", ")", ";", "btCancelWatch", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "cancelJourneyWatch", "(", ")", ";", "}", "}", ")", ";", "timeTickReceiver", "=", "new", "BroadcastReceiver", "(", ")", "{", "@", "Override", "public", "void", "onReceive", "(", "Context", "context", ",", "Intent", "intent", ")", "{", "updateJourneys", "(", ")", ";", "}", "}", ";", "}", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "boolean", "onCreateOptionsMenu", "(", "Menu", "menu", ")", "{", "menu", ".", "add", "(", "\"\"", ")", ".", "setIcon", "(", "R", ".", "drawable", ".", "ic_menu_star", ")", ";", "return", "true", ";", "}", "protected", "void", "onJourneyClick", "(", "AbstractJourney", "journey", ")", "{", "JourneyActivity", ".", "sentResults", "=", "results", ";", "Intent", "intent", "=", "Utils", ".", "getIntent", "(", "this", ",", "\"\"", ")", ";", "intent", ".", "putExtra", "(", "\"journeyIndex\"", ",", "results", ".", "getJourneys", "(", ")", ".", "indexOf", "(", "journey", ")", ")", ";", "startActivity", "(", "intent", ")", ";", "}", "@", "Override", "protected", "void", "onNewIntent", "(", "Intent", "intent", ")", "{", "finish", "(", ")", ";", "startActivity", "(", "intent", ")", ";", "}", "@", "Override", "public", "boolean", "onOptionsItemSelected", "(", "MenuItem", "item", ")", "{", "AbstractSearchOptions", "options", "=", "results", ".", "getOptions", "(", ")", ";", "Areas", "areas", "=", "Areas", ".", "getInstance", "(", "this", ")", ";", "String", "areaClass", "=", "areas", ".", "findById", "(", "options", ".", "getAreaIdentifier", "(", ")", ")", ".", "className", ";", "Favourite", "favourite", "=", "new", "Favourite", "(", "options", ".", "getFrom", "(", ")", ",", "options", ".", "getTo", "(", ")", ",", "areaClass", ")", ";", "Favourites", ".", "add", "(", "favourite", ",", "this", ")", ";", "Toast", ".", "makeText", "(", "this", ",", "\"\"", ",", "Toast", ".", "LENGTH_SHORT", ")", ".", "show", "(", ")", ";", "return", "true", ";", "}", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "unregisterReceiver", "(", "timeTickReceiver", ")", ";", "SavedResults", ".", "saveResults", "(", "this", ",", "results", ")", ";", "}", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "updateJourneys", "(", ")", ";", "registerReceiver", "(", "timeTickReceiver", ",", "new", "IntentFilter", "(", "Intent", ".", "ACTION_TIME_TICK", ")", ")", ";", "if", "(", "getIntent", "(", ")", ".", "hasExtra", "(", "\"\"", ")", ")", "{", "AbstractJourney", "journey", "=", "(", "AbstractJourney", ")", "getIntent", "(", ")", ".", "getSerializableExtra", "(", "\"\"", ")", ";", "View", "view", "=", "adapter", ".", "findView", "(", "journey", ")", ";", "if", "(", "JourneyNotifs", ".", "isJourneyWatched", "(", "journey", ",", "this", ")", ")", "{", "llBottomBar", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "if", "(", "view", "!=", "null", ")", "view", ".", "setBackgroundResource", "(", "R", ".", "drawable", ".", "bg_highlighted_journey_selector", ")", ";", "}", "else", "{", "llBottomBar", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "if", "(", "view", "!=", "null", ")", "view", ".", "setBackgroundColor", "(", "Color", ".", "TRANSPARENT", ")", ";", "}", "}", "}", "public", "void", "onSaveInstanceState", "(", "Bundle", "bundle", ")", "{", "super", ".", "onSaveInstanceState", "(", "bundle", ")", ";", "bundle", ".", "putSerializable", "(", "\"results\"", ",", "results", ")", ";", "}", "@", "Override", "protected", "void", "onSaveNonConfigurationData", "(", "HashMap", "<", "String", ",", "Object", ">", "nonConfigurationData", ")", "{", "nonConfigurationData", ".", "put", "(", "\"results\"", ",", "results", ")", ";", "}", "@", "Override", "public", "void", "onScroll", "(", "AbsListView", "view", ",", "int", "firstVisibleItem", ",", "int", "visibleItemCount", ",", "int", "totalItemCount", ")", "{", "results", ".", "setFirstVisibleItem", "(", "firstVisibleItem", ")", ";", "if", "(", "firstVisibleItem", "+", "visibleItemCount", ">=", "totalItemCount", "&&", "!", "isLoadingNext", "(", ")", ")", "{", "if", "(", "adapter", ".", "loadNextState", "!=", "LoadMoreState", ".", "ERROR", ")", "tryLoadNext", "(", ")", ";", "}", "}", "@", "Override", "public", "void", "onScrollStateChanged", "(", "AbsListView", "view", ",", "int", "scrollState", ")", "{", "}", "private", "void", "setUpListView", "(", ")", "{", "adapter", "=", "new", "ResultsAdapter", "(", ")", ";", "listView", "=", "(", "ListView", ")", "findViewById", "(", "R", ".", "id", ".", "lvResults", ")", ";", "listView", ".", "setAdapter", "(", "adapter", ")", ";", "listView", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "if", "(", "id", "==", "ITEM_ID_LOAD_PREV", ")", "{", "tryLoadPrev", "(", ")", ";", "}", "else", "if", "(", "id", "==", "ITEM_ID_LOAD_NEXT", ")", "{", "tryLoadNext", "(", ")", ";", "}", "else", "{", "onJourneyClick", "(", "(", "AbstractJourney", ")", "adapter", ".", "journeys", ".", "get", "(", "(", "int", ")", "adapter", ".", "getItemId", "(", "position", ")", ")", ")", ";", "}", "}", "}", ")", ";", "listView", ".", "setSelection", "(", "results", ".", "getFirstVisibleItem", "(", ")", ")", ";", "listView", ".", "setOnScrollListener", "(", "this", ")", ";", "}", "private", "void", "tryLoadPrev", "(", ")", "{", "if", "(", "results", ".", "isLoadPrevEnabled", "(", ")", "&&", "!", "isLoadingPrev", "(", ")", ")", "{", "startTask", "(", "new", "LoadMoreTask", "(", "PREV", ")", ")", ";", "}", "}", "private", "void", "tryLoadNext", "(", ")", "{", "if", "(", "results", ".", "isLoadNextEnabled", "(", ")", "&&", "!", "isLoadingNext", "(", ")", ")", "{", "startTask", "(", "new", "LoadMoreTask", "(", "NEXT", ")", ")", ";", "}", "}", "private", "void", "updateJourneys", "(", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "adapter", ".", "views", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "adapter", ".", "getItemId", "(", "i", ")", ">=", "0", ")", "adapter", ".", "journeys", ".", "get", "(", "(", "int", ")", "adapter", ".", "getItemId", "(", "i", ")", ")", ".", "update", "(", "this", ",", "adapter", ".", "views", ".", "get", "(", "i", ")", ")", ";", "}", "}", "protected", "class", "ResultsAdapter", "extends", "BaseAdapter", "{", "protected", "LoadMoreState", "loadPrevState", "=", "LoadMoreState", ".", "ENABLED", ";", "protected", "LoadMoreState", "loadNextState", "=", "LoadMoreState", ".", "ENABLED", ";", "protected", "ArrayList", "<", "View", ">", "views", "=", "new", "ArrayList", "<", "View", ">", "(", ")", ";", "protected", "ArrayList", "<", "AbstractJourney", ">", "journeys", "=", "new", "ArrayList", "<", "AbstractJourney", ">", "(", ")", ";", "protected", "LayoutInflater", "inflater", "=", "getLayoutInflater", "(", ")", ";", "public", "ResultsAdapter", "(", ")", "{", "views", ".", "add", "(", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "load_journey_item", ",", "null", ")", ")", ";", "setLoadMoreItem", "(", "PREV", ",", "LoadMoreState", ".", "ENABLED", ")", ";", "views", ".", "add", "(", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "load_journey_item", ",", "null", ")", ")", ";", "setLoadMoreItem", "(", "NEXT", ",", "LoadMoreState", ".", "ENABLED", ")", ";", "for", "(", "AbstractJourney", "journey", ":", "results", ".", "getVisibleJourneys", "(", ")", ")", "{", "addJourney", "(", "journey", ",", "false", ")", ";", "}", "if", "(", "!", "results", ".", "isLoadNextEnabled", "(", ")", ")", "setLoadMoreItem", "(", "NEXT", ",", "LoadMoreState", ".", "DISABLED", ")", ";", "if", "(", "!", "results", ".", "isLoadPrevEnabled", "(", ")", ")", "setLoadMoreItem", "(", "PREV", ",", "LoadMoreState", ".", "DISABLED", ")", ";", "}", "public", "void", "addJourney", "(", "AbstractJourney", "journey", ",", "boolean", "atBeginning", ")", "{", "View", "view", "=", "journey", ".", "inflateView", "(", "ResultsActivity", ".", "this", ",", "false", ")", ";", "if", "(", "atBeginning", ")", "{", "int", "index", "=", "isPrevDisabled", "(", ")", "?", "0", ":", "1", ";", "views", ".", "add", "(", "index", ",", "view", ")", ";", "journeys", ".", "add", "(", "0", ",", "journey", ")", ";", "}", "else", "{", "int", "index", "=", "isNextDisabled", "(", ")", "?", "views", ".", "size", "(", ")", ":", "views", ".", "size", "(", ")", "-", "1", ";", "views", ".", "add", "(", "index", ",", "view", ")", ";", "journeys", ".", "add", "(", "journey", ")", ";", "}", "}", "@", "Override", "public", "int", "getCount", "(", ")", "{", "return", "views", ".", "size", "(", ")", ";", "}", "@", "Override", "public", "Object", "getItem", "(", "int", "position", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "long", "getItemId", "(", "int", "position", ")", "{", "boolean", "isLast", "=", "position", "==", "views", ".", "size", "(", ")", "-", "1", ";", "if", "(", "!", "isPrevDisabled", "(", ")", ")", "position", "--", ";", "if", "(", "position", "==", "-", "1", ")", "return", "ITEM_ID_LOAD_PREV", ";", "else", "if", "(", "isLast", "&&", "!", "isNextDisabled", "(", ")", ")", "return", "ITEM_ID_LOAD_NEXT", ";", "else", "return", "position", ";", "}", "@", "Override", "public", "View", "getView", "(", "int", "position", ",", "View", "convertView", ",", "ViewGroup", "parent", ")", "{", "return", "views", ".", "get", "(", "position", ")", ";", "}", "public", "View", "findView", "(", "AbstractJourney", "journey", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "journeys", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "journeys", ".", "get", "(", "i", ")", ".", "hashCode", "(", ")", "==", "journey", ".", "hashCode", "(", ")", ")", "{", "return", "views", ".", "get", "(", "isPrevDisabled", "(", ")", "?", "i", ":", "i", "+", "1", ")", ";", "}", "}", "return", "null", ";", "}", "private", "boolean", "isPrevDisabled", "(", ")", "{", "return", "loadPrevState", "==", "LoadMoreState", ".", "DISABLED", ";", "}", "private", "boolean", "isNextDisabled", "(", ")", "{", "return", "loadNextState", "==", "LoadMoreState", ".", "DISABLED", ";", "}", "public", "void", "setLoadMoreItem", "(", "int", "nextOrPrev", ",", "LoadMoreState", "state", ")", "{", "if", "(", "state", "==", "LoadMoreState", ".", "DISABLED", ")", "{", "if", "(", "nextOrPrev", "==", "NEXT", "&&", "!", "isNextDisabled", "(", ")", ")", "{", "loadNextState", "=", "LoadMoreState", ".", "DISABLED", ";", "views", ".", "remove", "(", "views", ".", "size", "(", ")", "-", "1", ")", ";", "}", "else", "if", "(", "nextOrPrev", "==", "PREV", "&&", "!", "isPrevDisabled", "(", ")", ")", "{", "loadPrevState", "=", "LoadMoreState", ".", "DISABLED", ";", "views", ".", "remove", "(", "0", ")", ";", "}", "notifyDataSetChanged", "(", ")", ";", "}", "else", "{", "if", "(", "nextOrPrev", "==", "NEXT", ")", "loadNextState", "=", "state", ";", "else", "if", "(", "nextOrPrev", "==", "PREV", ")", "loadPrevState", "=", "state", ";", "int", "index", "=", "nextOrPrev", "==", "PREV", "?", "0", ":", "views", ".", "size", "(", ")", "-", "1", ";", "View", "item", "=", "views", ".", "get", "(", "index", ")", ";", "TextView", "tvLoadJourney", "=", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvLoadJourney", ")", ";", "if", "(", "nextOrPrev", "==", "PREV", ")", "tvLoadJourney", ".", "setText", "(", "R", ".", "string", ".", "loadPrevJourney", ")", ";", "else", "if", "(", "nextOrPrev", "==", "NEXT", ")", "tvLoadJourney", ".", "setText", "(", "R", ".", "string", ".", "loadNextJourney", ")", ";", "LinearLayout", "llLoading", "=", "(", "LinearLayout", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "llLoading", ")", ";", "LinearLayout", "llClickToLoad", "=", "(", "LinearLayout", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "llClickToLoad", ")", ";", "LinearLayout", "llError", "=", "(", "LinearLayout", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "llError", ")", ";", "llLoading", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llClickToLoad", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llError", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "if", "(", "state", "==", "LoadMoreState", ".", "ENABLED", ")", "llClickToLoad", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "else", "if", "(", "state", "==", "LoadMoreState", ".", "LOADING", ")", "llLoading", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "else", "if", "(", "state", "==", "LoadMoreState", ".", "ERROR", ")", "llError", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "}", "}", "private", "static", "class", "LoadMoreTask", "extends", "Task", "<", "ResultsActivity", ",", "Void", ",", "Object", ">", "{", "private", "int", "nextOrPrev", ";", "private", "AbstractResults", "results", ";", "public", "LoadMoreTask", "(", "int", "nextOrPrev", ")", "{", "this", ".", "nextOrPrev", "=", "nextOrPrev", ";", "}", "@", "Override", "public", "void", "attachActivity", "(", "AbstractActivity", "activity", ")", "{", "super", ".", "attachActivity", "(", "activity", ")", ";", "if", "(", "results", "==", "null", ")", "results", "=", "this", ".", "activity", ".", "results", ";", "this", ".", "activity", ".", "adapter", ".", "setLoadMoreItem", "(", "nextOrPrev", ",", "LoadMoreState", ".", "LOADING", ")", ";", "}", "@", "Override", "protected", "Object", "runInBackground", "(", ")", "{", "try", "{", "if", "(", "nextOrPrev", "==", "NEXT", ")", "return", "results", ".", "loadNext", "(", ")", ";", "else", "return", "results", ".", "loadPrev", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "return", "e", ";", "}", "catch", "(", "JourneyFinderException", "e", ")", "{", "return", "e", ";", "}", "}", "@", "Override", "protected", "void", "runAfter", "(", "Object", "result", ")", "{", "ResultsAdapter", "adapter", "=", "activity", ".", "adapter", ";", "if", "(", "nextOrPrev", "==", "PREV", ")", "adapter", ".", "setLoadMoreItem", "(", "PREV", ",", "LoadMoreState", ".", "ENABLED", ")", ";", "if", "(", "result", "instanceof", "IOException", ")", "{", "IOException", "e", "=", "(", "IOException", ")", "result", ";", "e", ".", "printStackTrace", "(", ")", ";", "adapter", ".", "setLoadMoreItem", "(", "nextOrPrev", ",", "LoadMoreState", ".", "ERROR", ")", ";", "}", "else", "if", "(", "result", "instanceof", "JourneyFinderException", ")", "{", "if", "(", "result", "instanceof", "JourneyNotFoundException", "==", "false", ")", "{", "adapter", ".", "setLoadMoreItem", "(", "nextOrPrev", ",", "LoadMoreState", ".", "ERROR", ")", ";", "}", "}", "else", "{", "AbstractJourney", "journey", "=", "(", "AbstractJourney", ")", "result", ";", "adapter", ".", "addJourney", "(", "journey", ",", "nextOrPrev", "==", "PREV", ")", ";", "if", "(", "nextOrPrev", "==", "NEXT", ")", "{", "int", "max", "=", "3", ";", "while", "(", "results", ".", "getCachedJourneysCount", "(", "NEXT", ")", ">", "0", "&&", "max", ">", "0", ")", "{", "max", "--", ";", "try", "{", "journey", "=", "results", ".", "loadNext", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "assert", "false", ";", "}", "adapter", ".", "addJourney", "(", "journey", ",", "nextOrPrev", "==", "PREV", ")", ";", "}", "}", "adapter", ".", "notifyDataSetChanged", "(", ")", ";", "}", "if", "(", "!", "results", ".", "isLoadNextEnabled", "(", ")", ")", "adapter", ".", "setLoadMoreItem", "(", "NEXT", ",", "LoadMoreState", ".", "DISABLED", ")", ";", "if", "(", "!", "results", ".", "isLoadPrevEnabled", "(", ")", ")", "adapter", ".", "setLoadMoreItem", "(", "PREV", ",", "LoadMoreState", ".", "DISABLED", ")", ";", "}", "}", "private", "enum", "LoadMoreState", "{", "ENABLED", ",", "DISABLED", ",", "LOADING", ",", "ERROR", "}", "}", "</s>" ]
8,514
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "text", ".", "DateFormat", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "java", ".", "util", ".", "regex", ".", "Matcher", ";", "import", "java", ".", "util", ".", "regex", ".", "Pattern", ";", "import", "org", ".", "w3c", ".", "dom", ".", "DOMException", ";", "import", "org", ".", "w3c", ".", "dom", ".", "Node", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "res", ".", "Resources", ";", "public", "class", "Utils", "{", "private", "static", "Pattern", "timeRegex", "=", "Pattern", ".", "compile", "(", "\"(\\\\d+):(\\\\d+)\"", ")", ";", "public", "static", "String", "formatDate", "(", "Calendar", "cal", ",", "Context", "context", ")", "{", "cal", "=", "(", "Calendar", ")", "cal", ".", "clone", "(", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "HOUR_OF_DAY", ",", "0", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "MINUTE", ",", "0", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "SECOND", ",", "0", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "MILLISECOND", ",", "0", ")", ";", "Calendar", "today", "=", "Calendar", ".", "getInstance", "(", ")", ";", "today", ".", "set", "(", "Calendar", ".", "HOUR_OF_DAY", ",", "0", ")", ";", "today", ".", "set", "(", "Calendar", ".", "MINUTE", ",", "0", ")", ";", "today", ".", "set", "(", "Calendar", ".", "SECOND", ",", "0", ")", ";", "today", ".", "set", "(", "Calendar", ".", "MILLISECOND", ",", "0", ")", ";", "int", "days", "=", "(", "int", ")", "(", "(", "cal", ".", "getTimeInMillis", "(", ")", "-", "today", ".", "getTimeInMillis", "(", ")", ")", "/", "1000", "/", "60", "/", "60", "/", "24", ")", ";", "Resources", "res", "=", "context", ".", "getResources", "(", ")", ";", "if", "(", "days", "==", "0", ")", "{", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "today", ")", ";", "}", "else", "if", "(", "days", "==", "1", ")", "{", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "tomorrow", ")", ";", "}", "else", "if", "(", "days", ">=", "2", "&&", "days", "<=", "6", ")", "{", "switch", "(", "cal", ".", "get", "(", "Calendar", ".", "DAY_OF_WEEK", ")", ")", "{", "case", "Calendar", ".", "MONDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "monday", ")", ";", "case", "Calendar", ".", "TUESDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "tuesday", ")", ";", "case", "Calendar", ".", "WEDNESDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "wednesday", ")", ";", "case", "Calendar", ".", "THURSDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "thursday", ")", ";", "case", "Calendar", ".", "FRIDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "friday", ")", ";", "case", "Calendar", ".", "SATURDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "saturday", ")", ";", "case", "Calendar", ".", "SUNDAY", ":", "return", "res", ".", "getString", "(", "R", ".", "string", ".", "sunday", ")", ";", "default", ":", "return", "null", ";", "}", "}", "else", "{", "return", "DateFormat", ".", "getDateInstance", "(", "DateFormat", ".", "MEDIUM", ",", "Locale", ".", "getDefault", "(", ")", ")", ".", "format", "(", "cal", ".", "getTime", "(", ")", ")", ";", "}", "}", "public", "static", "String", "formatTime", "(", "Calendar", "calendar", ")", "{", "Locale", "locale", "=", "Locale", ".", "getDefault", "(", ")", ";", "if", "(", "locale", ".", "toString", "(", ")", ".", "equals", "(", "\"en_GB\"", ")", ")", "locale", "=", "new", "Locale", "(", "\"cs\"", ")", ";", "return", "DateFormat", ".", "getTimeInstance", "(", "DateFormat", ".", "SHORT", ",", "locale", ")", ".", "format", "(", "calendar", ".", "getTime", "(", ")", ")", ";", "}", "public", "static", "Intent", "getIntent", "(", "Context", "context", ",", "String", "action", ")", "{", "return", "new", "Intent", "(", "context", ".", "getPackageName", "(", ")", "+", "\".\"", "+", "action", ")", ";", "}", "public", "static", "String", "getTextContent", "(", "Node", "node", ")", "throws", "DOMException", "{", "String", "textContent", "=", "\"\"", ";", "if", "(", "node", ".", "getNodeType", "(", ")", "==", "Node", ".", "ATTRIBUTE_NODE", ")", "{", "textContent", "=", "node", ".", "getNodeValue", "(", ")", ";", "}", "else", "{", "Node", "child", "=", "node", ".", "getFirstChild", "(", ")", ";", "if", "(", "child", "!=", "null", ")", "{", "Node", "sibling", "=", "child", ".", "getNextSibling", "(", ")", ";", "if", "(", "sibling", "!=", "null", ")", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "getTextContent", "(", "node", ",", "sb", ")", ";", "textContent", "=", "sb", ".", "toString", "(", ")", ";", "}", "else", "{", "if", "(", "child", ".", "getNodeType", "(", ")", "==", "Node", ".", "TEXT_NODE", ")", "{", "textContent", "=", "child", ".", "getNodeValue", "(", ")", ";", "}", "else", "{", "textContent", "=", "getTextContent", "(", "child", ")", ";", "}", "}", "}", "}", "return", "textContent", ";", "}", "private", "static", "void", "getTextContent", "(", "Node", "node", ",", "StringBuffer", "sb", ")", "throws", "DOMException", "{", "Node", "child", "=", "node", ".", "getFirstChild", "(", ")", ";", "while", "(", "child", "!=", "null", ")", "{", "if", "(", "child", ".", "getNodeType", "(", ")", "==", "Node", ".", "TEXT_NODE", ")", "{", "sb", ".", "append", "(", "child", ".", "getNodeValue", "(", ")", ")", ";", "}", "else", "{", "getTextContent", "(", "child", ",", "sb", ")", ";", "}", "child", "=", "child", ".", "getNextSibling", "(", ")", ";", "}", "}", "public", "static", "int", "[", "]", "parseTime", "(", "String", "time", ")", "{", "Matcher", "m", "=", "timeRegex", ".", "matcher", "(", "time", ")", ";", "m", ".", "find", "(", ")", ";", "int", "hours", "=", "Integer", ".", "parseInt", "(", "m", ".", "group", "(", "1", ")", ")", ";", "int", "minutes", "=", "Integer", ".", "parseInt", "(", "m", ".", "group", "(", "2", ")", ")", ";", "return", "new", "int", "[", "]", "{", "minutes", ",", "hours", "}", ";", "}", "public", "static", "String", "removeDiacritics", "(", "String", "s", ")", "{", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'e'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'s'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'c'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'r'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'z'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'y'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'a'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'i'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'e'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'t'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'u'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'u'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'n'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'d'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'o'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'o'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'u'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'E'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'S'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'C'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'R'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'Z'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'Y'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'A'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'I'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'E'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'T'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'U'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'N'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'D'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-UNK-'", ",", "'O'", ")", ";", "return", "s", ";", "}", "public", "static", "String", "simplify", "(", "String", "s", ")", "{", "s", "=", "removeDiacritics", "(", "s", ")", ";", "s", "=", "s", ".", "replace", "(", "','", ",", "'", "'", ")", ";", "s", "=", "s", ".", "replace", "(", "'.'", ",", "'", "'", ")", ";", "s", "=", "s", ".", "replace", "(", "'('", ",", "'", "'", ")", ";", "s", "=", "s", ".", "replace", "(", "')'", ",", "'", "'", ")", ";", "s", "=", "s", ".", "replace", "(", "'-'", ",", "'", "'", ")", ";", "s", "=", "s", ".", "replace", "(", "\"", "\"", ",", "\"", "\"", ")", ";", "s", "=", "s", ".", "replace", "(", "\"", "\"", ",", "\"", "\"", ")", ";", "return", "s", ";", "}", "}", "</s>" ]
8,515
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "File", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "java", ".", "util", ".", "HashSet", ";", "import", "java", ".", "util", ".", "Set", ";", "import", "org", ".", "json", ".", "JSONException", ";", "import", "org", ".", "json", ".", "JSONObject", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "graphics", ".", "Bitmap", ";", "import", "android", ".", "graphics", ".", "Bitmap", ".", "Config", ";", "import", "android", ".", "graphics", ".", "BitmapFactory", ";", "import", "android", ".", "graphics", ".", "Canvas", ";", "import", "android", ".", "graphics", ".", "Paint", ";", "import", "android", ".", "graphics", ".", "Point", ";", "import", "android", ".", "graphics", ".", "Rect", ";", "public", "class", "OfflineMapSource", "{", "public", "static", "int", "READY", "=", "0", ";", "public", "static", "int", "NOT_READY", "=", "1", ";", "private", "boolean", "threadsShouldStop", ";", "private", "float", "minZoomMdpi", ";", "private", "int", "bitmapCacheSize", ";", "private", "int", "mapHeight", ";", "private", "int", "mapWidth", ";", "private", "int", "maxHardZoom", ";", "private", "int", "state", "=", "NOT_READY", ";", "private", "ArrayList", "<", "Tile", ">", "tilesToDraw", "=", "new", "ArrayList", "<", "OfflineMapSource", ".", "Tile", ">", "(", ")", ";", "private", "Bitmap", "emptyTileBitmap", ";", "private", "BitmapLoaderThread", "bitmapLoaderThread", ";", "private", "File", "mapsDir", ";", "private", "Paint", "bitmapPaint", "=", "new", "Paint", "(", "Paint", ".", "FILTER_BITMAP_FLAG", ")", ";", "private", "Pool", "<", "IntWrapper", ">", "intWrapperPool", "=", "new", "Pool", "<", "IntWrapper", ">", "(", "IntWrapper", ".", "class", ")", ";", "private", "Pool", "<", "Rect", ">", "rectPool", "=", "new", "Pool", "<", "Rect", ">", "(", "Rect", ".", "class", ")", ";", "private", "String", "mapId", ";", "private", "TileCache", "tileCache", "=", "new", "TileCache", "(", ")", ";", "private", "OfflineMapView", "mapView", ";", "public", "OfflineMapSource", "(", "OfflineMapView", "mapView", ")", "{", "this", ".", "mapView", "=", "mapView", ";", "Context", "context", "=", "mapView", ".", "getContext", "(", ")", ";", "emptyTileBitmap", "=", "BitmapFactory", ".", "decodeResource", "(", "context", ".", "getResources", "(", ")", ",", "R", ".", "drawable", ".", "empty_tile", ")", ";", "mapsDir", "=", "IOUtils", ".", "getMapsDirectory", "(", "context", ")", ";", "int", "heapSize", "=", "(", "int", ")", "(", "Runtime", ".", "getRuntime", "(", ")", ".", "maxMemory", "(", ")", "/", "(", "1024", "*", "1024", ")", ")", ";", "if", "(", "heapSize", "<", "24", ")", "bitmapCacheSize", "=", "40", ";", "else", "if", "(", "heapSize", "<", "32", ")", "bitmapCacheSize", "=", "80", ";", "else", "bitmapCacheSize", "=", "120", ";", "File", "nomedia", "=", "new", "File", "(", "mapsDir", ",", "\".nomedia\"", ")", ";", "nomedia", ".", "getParentFile", "(", ")", ".", "mkdirs", "(", ")", ";", "try", "{", "nomedia", ".", "createNewFile", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "private", "Rect", "borrowRect", "(", "int", "left", ",", "int", "top", ",", "int", "right", ",", "int", "bottom", ")", "{", "Rect", "rect", "=", "rectPool", ".", "borrow", "(", ")", ";", "rect", ".", "set", "(", "left", ",", "top", ",", "right", ",", "bottom", ")", ";", "return", "rect", ";", "}", "public", "void", "drawTiles", "(", "Canvas", "canvas", ",", "Point", "center", ",", "float", "zoom", ",", "int", "canvasWidth", ",", "int", "canvasHeight", ")", "{", "int", "hardZoom", ";", "if", "(", "zoom", "<", "2", ")", "hardZoom", "=", "0", ";", "else", "if", "(", "zoom", "<", "4", ")", "hardZoom", "=", "1", ";", "else", "if", "(", "zoom", "<", "8", ")", "hardZoom", "=", "2", ";", "else", "if", "(", "zoom", "<", "16", ")", "hardZoom", "=", "3", ";", "else", "if", "(", "zoom", "<", "32", ")", "hardZoom", "=", "4", ";", "else", "if", "(", "zoom", "<", "64", ")", "hardZoom", "=", "5", ";", "else", "hardZoom", "=", "6", ";", "int", "granulanity", "=", "(", "int", ")", "Math", ".", "pow", "(", "2", ",", "hardZoom", ")", ";", "int", "tileSize", "=", "256", "*", "granulanity", ";", "int", "scaledTileSize", "=", "(", "int", ")", "(", "256", "/", "(", "zoom", "/", "granulanity", ")", ")", ";", "float", "adjustedWidth", "=", "canvasWidth", "*", "zoom", ";", "float", "adjustedHeight", "=", "canvasHeight", "*", "zoom", ";", "int", "topLeftTileX", "=", "(", "int", ")", "(", "(", "center", ".", "x", "-", "adjustedWidth", "/", "2", ")", "/", "tileSize", ")", ";", "if", "(", "topLeftTileX", "<", "0", ")", "topLeftTileX", "=", "0", ";", "int", "topLeftTileY", "=", "(", "int", ")", "(", "(", "center", ".", "y", "-", "adjustedHeight", "/", "2", ")", "/", "tileSize", ")", ";", "if", "(", "topLeftTileY", "<", "0", ")", "topLeftTileY", "=", "0", ";", "int", "bottomRightTileX", "=", "(", "int", ")", "(", "(", "center", ".", "x", "+", "adjustedWidth", "/", "2", ")", "/", "tileSize", ")", ";", "if", "(", "bottomRightTileX", ">", "(", "mapWidth", "-", "1", ")", "/", "tileSize", ")", "bottomRightTileX", "=", "(", "mapWidth", "-", "1", ")", "/", "tileSize", ";", "int", "bottomRightTileY", "=", "(", "int", ")", "(", "(", "center", ".", "y", "+", "adjustedHeight", "/", "2", ")", "/", "tileSize", ")", ";", "if", "(", "bottomRightTileY", ">", "(", "mapHeight", "-", "1", ")", "/", "tileSize", ")", "bottomRightTileY", "=", "(", "mapHeight", "-", "1", ")", "/", "tileSize", ";", "int", "offsetX", "=", "(", "int", ")", "(", "(", "topLeftTileX", "*", "tileSize", "-", "(", "center", ".", "x", "-", "adjustedWidth", "/", "2", ")", ")", "/", "zoom", ")", ";", "int", "offsetY", "=", "(", "int", ")", "(", "(", "topLeftTileY", "*", "tileSize", "-", "(", "center", ".", "y", "-", "adjustedHeight", "/", "2", ")", ")", "/", "zoom", ")", ";", "bitmapLoaderThread", ".", "resetPriorities", "(", ")", ";", "for", "(", "int", "x", "=", "topLeftTileX", ";", "x", "<=", "bottomRightTileX", ";", "x", "++", ")", "{", "for", "(", "int", "y", "=", "topLeftTileY", ";", "y", "<=", "bottomRightTileY", ";", "y", "++", ")", "{", "int", "positionX", "=", "(", "x", "-", "topLeftTileX", ")", "*", "scaledTileSize", "+", "offsetX", ";", "int", "positionY", "=", "(", "y", "-", "topLeftTileY", ")", "*", "scaledTileSize", "+", "offsetY", ";", "Tile", "tile", "=", "tileCache", ".", "getTile", "(", "x", ",", "y", ",", "hardZoom", ",", "true", ",", "2", ")", ";", "if", "(", "tile", ".", "getBitmap", "(", ")", "==", "null", ")", "{", "Tile", "tile1", "=", "tileCache", ".", "getTile", "(", "x", "*", "2", ",", "y", "*", "2", ",", "hardZoom", "-", "1", ",", "false", ")", ";", "Tile", "tile2", "=", "tileCache", ".", "getTile", "(", "x", "*", "2", "+", "1", ",", "y", "*", "2", ",", "hardZoom", "-", "1", ",", "false", ")", ";", "Tile", "tile3", "=", "tileCache", ".", "getTile", "(", "x", "*", "2", ",", "y", "*", "2", "+", "1", ",", "hardZoom", "-", "1", ",", "false", ")", ";", "Tile", "tile4", "=", "tileCache", ".", "getTile", "(", "x", "*", "2", "+", "1", ",", "y", "*", "2", "+", "1", ",", "hardZoom", "-", "1", ",", "false", ")", ";", "if", "(", "tile1", ".", "getBitmap", "(", ")", "!=", "null", "&&", "tile2", ".", "getBitmap", "(", ")", "!=", "null", "&&", "tile3", ".", "getBitmap", "(", ")", "!=", "null", "&", "tile4", ".", "getBitmap", "(", ")", "!=", "null", ")", "{", "Rect", "src", "=", "borrowRect", "(", "0", ",", "0", ",", "256", ",", "256", ")", ";", "Rect", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", ",", "positionX", "+", "scaledTileSize", "/", "2", ",", "positionY", "+", "scaledTileSize", "/", "2", ")", ";", "tile1", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "tilesToDraw", ".", "add", "(", "tile1", ")", ";", "src", "=", "borrowRect", "(", "0", ",", "0", ",", "256", ",", "256", ")", ";", "dst", "=", "borrowRect", "(", "positionX", "+", "scaledTileSize", "/", "2", ",", "positionY", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", "/", "2", ")", ";", "tile2", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "tilesToDraw", ".", "add", "(", "tile2", ")", ";", "src", "=", "borrowRect", "(", "0", ",", "0", ",", "256", ",", "256", ")", ";", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", "+", "scaledTileSize", "/", "2", ",", "positionX", "+", "scaledTileSize", "/", "2", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile3", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "tilesToDraw", ".", "add", "(", "tile3", ")", ";", "src", "=", "borrowRect", "(", "0", ",", "0", ",", "256", ",", "256", ")", ";", "dst", "=", "borrowRect", "(", "positionX", "+", "scaledTileSize", "/", "2", ",", "positionY", "+", "scaledTileSize", "/", "2", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile4", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "tilesToDraw", ".", "add", "(", "tile4", ")", ";", "continue", ";", "}", "tile", "=", "tileCache", ".", "getTile", "(", "x", "/", "2", ",", "y", "/", "2", ",", "hardZoom", "+", "1", ",", "false", ")", ";", "if", "(", "tile", ".", "getBitmap", "(", ")", "!=", "null", ")", "{", "int", "x2", "=", "(", "x", "%", "2", ")", ";", "int", "y2", "=", "(", "y", "%", "2", ")", ";", "Rect", "src", "=", "borrowRect", "(", "x2", "*", "128", ",", "y2", "*", "128", ",", "(", "x2", "+", "1", ")", "*", "128", ",", "(", "y2", "+", "1", ")", "*", "128", ")", ";", "Rect", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "if", "(", "!", "tilesToDraw", ".", "contains", "(", "tile", ")", ")", "tilesToDraw", ".", "add", "(", "tile", ")", ";", "continue", ";", "}", "tile", "=", "tileCache", ".", "getTile", "(", "x", "/", "4", ",", "y", "/", "4", ",", "hardZoom", "+", "2", ",", "false", ")", ";", "if", "(", "tile", ".", "getBitmap", "(", ")", "!=", "null", ")", "{", "int", "x2", "=", "(", "x", "%", "4", ")", ";", "int", "y2", "=", "(", "y", "%", "4", ")", ";", "Rect", "src", "=", "borrowRect", "(", "x2", "*", "64", ",", "y2", "*", "64", ",", "(", "x2", "+", "1", ")", "*", "64", ",", "(", "y2", "+", "1", ")", "*", "64", ")", ";", "Rect", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "if", "(", "!", "tilesToDraw", ".", "contains", "(", "tile", ")", ")", "tilesToDraw", ".", "add", "(", "tile", ")", ";", "continue", ";", "}", "tile", "=", "tileCache", ".", "getTile", "(", "x", "/", "8", ",", "y", "/", "8", ",", "hardZoom", "+", "3", ",", "false", ")", ";", "if", "(", "tile", ".", "getBitmap", "(", ")", "!=", "null", ")", "{", "int", "x2", "=", "(", "x", "%", "8", ")", ";", "int", "y2", "=", "(", "y", "%", "8", ")", ";", "Rect", "src", "=", "borrowRect", "(", "x2", "*", "32", ",", "y2", "*", "32", ",", "(", "x2", "+", "1", ")", "*", "32", ",", "(", "y2", "+", "1", ")", "*", "32", ")", ";", "Rect", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "if", "(", "!", "tilesToDraw", ".", "contains", "(", "tile", ")", ")", "tilesToDraw", ".", "add", "(", "tile", ")", ";", "continue", ";", "}", "}", "Rect", "src", "=", "borrowRect", "(", "0", ",", "0", ",", "256", ",", "256", ")", ";", "Rect", "dst", "=", "borrowRect", "(", "positionX", ",", "positionY", ",", "positionX", "+", "scaledTileSize", ",", "positionY", "+", "scaledTileSize", ")", ";", "tile", ".", "setDrawInfo", "(", "src", ",", "dst", ")", ";", "tilesToDraw", ".", "add", "(", "tile", ")", ";", "}", "}", "for", "(", "int", "x", "=", "topLeftTileX", "-", "1", ";", "x", "<=", "bottomRightTileX", "+", "1", ";", "x", "++", ")", "{", "for", "(", "int", "y", "=", "topLeftTileY", "-", "1", ";", "y", "<=", "bottomRightTileY", "+", "1", ";", "y", "++", ")", "{", "if", "(", "x", "==", "topLeftTileX", "-", "1", "||", "x", "==", "bottomRightTileX", "+", "1", "||", "y", "==", "topLeftTileY", "-", "1", "||", "y", "==", "bottomRightTileY", "+", "1", ")", "tileCache", ".", "getTile", "(", "x", "/", "2", ",", "y", "/", "2", ",", "hardZoom", "+", "1", ",", "true", ",", "3", ")", ";", "}", "}", "for", "(", "int", "x", "=", "topLeftTileX", "-", "4", ";", "x", "<=", "bottomRightTileX", "+", "4", ";", "x", "++", ")", "{", "for", "(", "int", "y", "=", "topLeftTileY", "-", "4", ";", "y", "<=", "bottomRightTileY", "+", "4", ";", "y", "++", ")", "{", "if", "(", "hardZoom", "==", "maxHardZoom", ")", "tileCache", ".", "getTile", "(", "x", ",", "y", ",", "hardZoom", ",", "true", ",", "1", ")", ";", "else", "if", "(", "hardZoom", "==", "maxHardZoom", "-", "1", ")", "tileCache", ".", "getTile", "(", "x", "/", "2", ",", "y", "/", "2", ",", "hardZoom", "+", "1", ",", "true", ",", "1", ")", ";", "else", "tileCache", ".", "getTile", "(", "x", "/", "4", ",", "y", "/", "4", ",", "hardZoom", "+", "2", ",", "true", ",", "1", ")", ";", "}", "}", "for", "(", "int", "i", "=", "0", ";", "i", "<", "tilesToDraw", ".", "size", "(", ")", ";", "i", "++", ")", "{", "tilesToDraw", ".", "get", "(", "i", ")", ".", "draw", "(", "canvas", ")", ";", "}", "tilesToDraw", ".", "clear", "(", ")", ";", "}", "public", "int", "getMapHeight", "(", ")", "{", "return", "mapHeight", ";", "}", "public", "int", "getMapWidth", "(", ")", "{", "return", "mapWidth", ";", "}", "public", "float", "getMinZoomMdpi", "(", ")", "{", "return", "minZoomMdpi", ";", "}", "public", "int", "getState", "(", ")", "{", "return", "state", ";", "}", "private", "int", "getTileKey", "(", "int", "x", ",", "int", "y", ",", "int", "hardZoom", ")", "{", "return", "x", "+", "y", "*", "1000", "+", "hardZoom", "*", "1000000", ";", "}", "private", "boolean", "loadMapInfo", "(", ")", "{", "File", "file", "=", "new", "File", "(", "mapsDir", ".", "getAbsolutePath", "(", ")", "+", "\"/\"", "+", "mapId", "+", "\"\"", ")", ";", "String", "fileContent", "=", "null", ";", "try", "{", "fileContent", "=", "IOUtils", ".", "readFile", "(", "file", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "return", "false", ";", "}", "try", "{", "JSONObject", "json", "=", "new", "JSONObject", "(", "fileContent", ")", ";", "mapWidth", "=", "json", ".", "getInt", "(", "\"width\"", ")", ";", "mapHeight", "=", "json", ".", "getInt", "(", "\"height\"", ")", ";", "maxHardZoom", "=", "json", ".", "getInt", "(", "\"maxHardZoom\"", ")", ";", "minZoomMdpi", "=", "(", "float", ")", "json", ".", "getDouble", "(", "\"minZoomMdpi\"", ")", ";", "}", "catch", "(", "JSONException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "return", "false", ";", "}", "return", "true", ";", "}", "public", "void", "destroy", "(", ")", "{", "state", "=", "NOT_READY", ";", "stopThreads", "(", ")", ";", "tileCache", ".", "reset", "(", ")", ";", "}", "public", "boolean", "setMap", "(", "String", "mapId", ")", "{", "state", "=", "NOT_READY", ";", "stopThreads", "(", ")", ";", "this", ".", "mapId", "=", "mapId", ";", "tileCache", ".", "reset", "(", ")", ";", "startBitmapLoaderThread", "(", ")", ";", "boolean", "infoLoaded", "=", "loadMapInfo", "(", ")", ";", "if", "(", "infoLoaded", ")", "{", "state", "=", "READY", ";", "return", "true", ";", "}", "else", "{", "return", "false", ";", "}", "}", "public", "void", "stopThreads", "(", ")", "{", "boolean", "retry", "=", "true", ";", "threadsShouldStop", "=", "true", ";", "while", "(", "retry", ")", "{", "try", "{", "if", "(", "bitmapLoaderThread", "!=", "null", ")", "{", "bitmapLoaderThread", ".", "interrupt", "(", ")", ";", "bitmapLoaderThread", ".", "join", "(", ")", ";", "}", "retry", "=", "false", ";", "}", "catch", "(", "InterruptedException", "e", ")", "{", "}", "}", "}", "private", "void", "startBitmapLoaderThread", "(", ")", "{", "threadsShouldStop", "=", "false", ";", "bitmapLoaderThread", "=", "new", "BitmapLoaderThread", "(", ")", ";", "bitmapLoaderThread", ".", "start", "(", ")", ";", "}", "public", "class", "Tile", "{", "private", "boolean", "isValid", ";", "private", "int", "hardZoom", ";", "private", "int", "bitmapRequestPriority", ";", "private", "int", "x", ";", "private", "int", "y", ";", "private", "ArrayList", "<", "Rect", ">", "srcRects", "=", "new", "ArrayList", "<", "Rect", ">", "(", ")", ";", "private", "ArrayList", "<", "Rect", ">", "dstRects", "=", "new", "ArrayList", "<", "Rect", ">", "(", ")", ";", "private", "Bitmap", "bitmap", ";", "private", "String", "mapId", ";", "public", "Tile", "(", "int", "x", ",", "int", "y", ",", "int", "hardZoom", ")", "{", "this", ".", "x", "=", "x", ";", "this", ".", "y", "=", "y", ";", "this", ".", "hardZoom", "=", "hardZoom", ";", "this", ".", "mapId", "=", "OfflineMapSource", ".", "this", ".", "mapId", ";", "int", "tileSize", "=", "256", "*", "(", "int", ")", "Math", ".", "pow", "(", "2", ",", "hardZoom", ")", ";", "isValid", "=", "hardZoom", ">=", "0", "&&", "hardZoom", "<=", "maxHardZoom", "&&", "x", ">=", "0", "&&", "x", "<=", "(", "mapWidth", "-", "1", ")", "/", "tileSize", "&&", "y", ">=", "0", "&&", "y", "<=", "(", "mapHeight", "-", "1", ")", "/", "tileSize", ";", "}", "public", "synchronized", "void", "draw", "(", "Canvas", "canvas", ")", "{", "Bitmap", "bitmap", "=", "this", ".", "bitmap", "==", "null", "?", "emptyTileBitmap", ":", "this", ".", "bitmap", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "srcRects", ".", "size", "(", ")", ";", "i", "++", ")", "{", "canvas", ".", "drawBitmap", "(", "bitmap", ",", "srcRects", ".", "get", "(", "i", ")", ",", "dstRects", ".", "get", "(", "i", ")", ",", "bitmapPaint", ")", ";", "rectPool", ".", "giveBack", "(", "srcRects", ".", "get", "(", "i", ")", ")", ";", "rectPool", ".", "giveBack", "(", "dstRects", ".", "get", "(", "i", ")", ")", ";", "}", "srcRects", ".", "clear", "(", ")", ";", "dstRects", ".", "clear", "(", ")", ";", "}", "@", "Override", "public", "boolean", "equals", "(", "Object", "o", ")", "{", "if", "(", "this", "==", "o", ")", "{", "return", "true", ";", "}", "else", "if", "(", "o", "instanceof", "Tile", ")", "{", "Tile", "other", "=", "(", "Tile", ")", "o", ";", "return", "(", "other", ".", "hardZoom", "==", "hardZoom", "&&", "other", ".", "x", "==", "x", "&&", "other", ".", "y", "==", "y", ")", ";", "}", "return", "false", ";", "}", "public", "synchronized", "Bitmap", "getBitmap", "(", ")", "{", "return", "bitmap", ";", "}", "public", "File", "getBitmapFile", "(", ")", "{", "return", "new", "File", "(", "mapsDir", ".", "getAbsolutePath", "(", ")", "+", "\"/\"", "+", "mapId", "+", "\"/\"", "+", "hardZoom", "+", "\"/\"", "+", "x", "+", "\"/\"", "+", "y", "+", "\".png\"", ")", ";", "}", "public", "int", "getHardZoom", "(", ")", "{", "return", "hardZoom", ";", "}", "public", "String", "getMapId", "(", ")", "{", "return", "mapId", ";", "}", "public", "int", "getPriority", "(", ")", "{", "return", "bitmapRequestPriority", ";", "}", "public", "int", "getX", "(", ")", "{", "return", "x", ";", "}", "public", "int", "getY", "(", ")", "{", "return", "y", ";", "}", "@", "Override", "public", "int", "hashCode", "(", ")", "{", "return", "getTileKey", "(", "x", ",", "y", ",", "hardZoom", ")", ";", "}", "public", "synchronized", "void", "removeBitmap", "(", ")", "{", "if", "(", "bitmap", "!=", "null", ")", "{", "bitmap", ".", "recycle", "(", ")", ";", "bitmap", "=", "null", ";", "}", "}", "public", "synchronized", "void", "setBitmap", "(", "Bitmap", "bitmap", ")", "{", "removeBitmap", "(", ")", ";", "this", ".", "bitmap", "=", "bitmap", ";", "}", "public", "void", "setDrawInfo", "(", "Rect", "src", ",", "Rect", "dst", ")", "{", "srcRects", ".", "add", "(", "src", ")", ";", "dstRects", ".", "add", "(", "dst", ")", ";", "}", "}", "private", "class", "TileCache", "{", "private", "int", "loadBitmapCounter", "=", "0", ";", "private", "ArrayList", "<", "Tile", ">", "tilesWithBitmaps", "=", "new", "ArrayList", "<", "Tile", ">", "(", ")", ";", "private", "HashMap", "<", "IntWrapper", ",", "Tile", ">", "tiles", "=", "new", "HashMap", "<", "IntWrapper", ",", "OfflineMapSource", ".", "Tile", ">", "(", ")", ";", "public", "synchronized", "void", "bitmapLoaded", "(", "Tile", "tile", ",", "Bitmap", "bitmap", ")", "{", "tile", ".", "setBitmap", "(", "bitmap", ")", ";", "if", "(", "tilesWithBitmaps", ".", "contains", "(", "tile", ")", ")", "return", ";", "tilesWithBitmaps", ".", "add", "(", "0", ",", "tile", ")", ";", "if", "(", "tilesWithBitmaps", ".", "size", "(", ")", "==", "bitmapCacheSize", "+", "1", ")", "{", "Tile", "last", "=", "tilesWithBitmaps", ".", "get", "(", "tilesWithBitmaps", ".", "size", "(", ")", "-", "1", ")", ";", "last", ".", "removeBitmap", "(", ")", ";", "tilesWithBitmaps", ".", "remove", "(", "last", ")", ";", "}", "loadBitmapCounter", "++", ";", "if", "(", "bitmapLoaderThread", ".", "queueIsEmpty", "(", ")", "||", "loadBitmapCounter", "%", "3", "==", "0", ")", "{", "mapView", ".", "requestRedraw", "(", ")", ";", "}", "}", "public", "synchronized", "Tile", "getTile", "(", "int", "x", ",", "int", "y", ",", "int", "hardZoom", ",", "boolean", "loadBitmapIfNull", ")", "{", "return", "getTile", "(", "x", ",", "y", ",", "hardZoom", ",", "loadBitmapIfNull", ",", "0", ")", ";", "}", "public", "synchronized", "Tile", "getTile", "(", "int", "x", ",", "int", "y", ",", "int", "hardZoom", ",", "boolean", "loadBitmapIfNull", ",", "int", "priority", ")", "{", "Tile", "tile", "=", "null", ";", "IntWrapper", "key", "=", "intWrapperPool", ".", "borrow", "(", ")", ";", "key", ".", "setValue", "(", "getTileKey", "(", "x", ",", "y", ",", "hardZoom", ")", ")", ";", "if", "(", "tiles", ".", "containsKey", "(", "key", ")", ")", "{", "tile", "=", "tiles", ".", "get", "(", "key", ")", ";", "intWrapperPool", ".", "giveBack", "(", "key", ")", ";", "}", "else", "{", "tile", "=", "new", "Tile", "(", "x", ",", "y", ",", "hardZoom", ")", ";", "tiles", ".", "put", "(", "key", ",", "tile", ")", ";", "intWrapperPool", ".", "giveBack", "(", "new", "IntWrapper", "(", ")", ")", ";", "}", "if", "(", "tile", ".", "getBitmap", "(", ")", "==", "null", ")", "{", "if", "(", "loadBitmapIfNull", "&&", "tile", ".", "isValid", ")", "{", "tile", ".", "bitmapRequestPriority", "=", "priority", ";", "bitmapLoaderThread", ".", "requestBitmap", "(", "tile", ")", ";", "}", "}", "else", "{", "tilesWithBitmaps", ".", "remove", "(", "tile", ")", ";", "tilesWithBitmaps", ".", "add", "(", "0", ",", "tile", ")", ";", "}", "return", "tile", ";", "}", "public", "synchronized", "void", "reset", "(", ")", "{", "loadBitmapCounter", "=", "0", ";", "for", "(", "Tile", "tile", ":", "tilesWithBitmaps", ")", "{", "tile", ".", "removeBitmap", "(", ")", ";", "}", "tilesWithBitmaps", ".", "clear", "(", ")", ";", "tiles", ".", "clear", "(", ")", ";", "}", "}", "private", "class", "BitmapLoaderThread", "extends", "Thread", "{", "private", "ArrayList", "<", "Tile", ">", "requestedBitmaps", "=", "new", "ArrayList", "<", "Tile", ">", "(", ")", ";", "private", "Set", "<", "Tile", ">", "missingBitmaps", "=", "new", "HashSet", "<", "Tile", ">", "(", ")", ";", "private", "Tile", "currentTile", "=", "null", ";", "public", "synchronized", "void", "requestBitmap", "(", "Tile", "tile", ")", "{", "if", "(", "tile", ".", "equals", "(", "currentTile", ")", ")", "return", ";", "if", "(", "missingBitmaps", ".", "contains", "(", "tile", ")", ")", "{", "}", "else", "{", "if", "(", "requestedBitmaps", ".", "contains", "(", "tile", ")", ")", "requestedBitmaps", ".", "remove", "(", "tile", ")", ";", "int", "index", "=", "requestedBitmaps", ".", "size", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "requestedBitmaps", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "requestedBitmaps", ".", "get", "(", "i", ")", ".", "bitmapRequestPriority", "<=", "tile", ".", "bitmapRequestPriority", ")", "{", "index", "=", "i", ";", "break", ";", "}", "}", "requestedBitmaps", ".", "add", "(", "index", ",", "tile", ")", ";", "interrupt", "(", ")", ";", "}", "}", "public", "synchronized", "void", "resetPriorities", "(", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "requestedBitmaps", ".", "size", "(", ")", ";", "i", "++", ")", "{", "requestedBitmaps", ".", "get", "(", "i", ")", ".", "bitmapRequestPriority", "=", "0", ";", "}", "}", "@", "Override", "public", "void", "run", "(", ")", "{", "byte", "[", "]", "buffer", "=", "new", "byte", "[", "16400", "]", ";", "while", "(", "true", ")", "{", "synchronized", "(", "this", ")", "{", "currentTile", "=", "null", ";", "while", "(", "currentTile", "==", "null", ")", "{", "if", "(", "threadsShouldStop", ")", "return", ";", "if", "(", "requestedBitmaps", ".", "size", "(", ")", ">", "0", ")", "{", "currentTile", "=", "requestedBitmaps", ".", "get", "(", "0", ")", ";", "requestedBitmaps", ".", "remove", "(", "0", ")", ";", "}", "else", "{", "try", "{", "wait", "(", ")", ";", "}", "catch", "(", "InterruptedException", "e", ")", "{", "}", "}", "}", "}", "File", "file", "=", "currentTile", ".", "getBitmapFile", "(", ")", ";", "if", "(", "file", ".", "exists", "(", ")", ")", "{", "BitmapFactory", ".", "Options", "options", "=", "new", "BitmapFactory", ".", "Options", "(", ")", ";", "options", ".", "inPreferredConfig", "=", "Config", ".", "RGB_565", ";", "options", ".", "inTempStorage", "=", "buffer", ";", "Bitmap", "bitmap", "=", "BitmapFactory", ".", "decodeFile", "(", "file", ".", "getAbsolutePath", "(", ")", ",", "options", ")", ";", "if", "(", "bitmap", "==", "null", ")", "{", "Common", ".", "logd", "(", "currentTile", ".", "getBitmapFile", "(", ")", ".", "getAbsolutePath", "(", ")", ")", ";", "}", "else", "{", "tileCache", ".", "bitmapLoaded", "(", "currentTile", ",", "bitmap", ")", ";", "}", "}", "else", "{", "synchronized", "(", "this", ")", "{", "missingBitmaps", ".", "add", "(", "currentTile", ")", ";", "}", "}", "}", "}", "public", "synchronized", "boolean", "queueIsEmpty", "(", ")", "{", "return", "currentTile", "==", "null", "&&", "requestedBitmaps", ".", "size", "(", ")", "==", "0", ";", "}", "}", "private", "static", "class", "IntWrapper", "{", "private", "int", "value", ";", "public", "IntWrapper", "(", ")", "{", "}", "public", "void", "setValue", "(", "int", "value", ")", "{", "this", ".", "value", "=", "value", ";", "}", "@", "Override", "public", "boolean", "equals", "(", "Object", "o", ")", "{", "if", "(", "this", "==", "o", ")", "return", "true", ";", "if", "(", "!", "(", "o", "instanceof", "IntWrapper", ")", ")", "return", "false", ";", "return", "value", "==", "(", "(", "IntWrapper", ")", "o", ")", ".", "value", ";", "}", "@", "Override", "public", "int", "hashCode", "(", ")", "{", "return", "value", ";", "}", "}", "public", "static", "class", "Pool", "<", "T", ">", "{", "private", "ArrayList", "<", "T", ">", "objects", ";", "private", "Class", "<", "T", ">", "cls", ";", "public", "Pool", "(", "Class", "<", "T", ">", "cls", ")", "{", "this", ".", "cls", "=", "cls", ";", "this", ".", "objects", "=", "new", "ArrayList", "<", "T", ">", "(", ")", ";", "}", "public", "T", "borrow", "(", ")", "{", "if", "(", "objects", ".", "size", "(", ")", "==", "0", ")", "{", "try", "{", "objects", ".", "add", "(", "cls", ".", "newInstance", "(", ")", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "return", "objects", ".", "remove", "(", "objects", ".", "size", "(", ")", "-", "1", ")", ";", "}", "public", "void", "giveBack", "(", "T", "object", ")", "{", "this", ".", "objects", ".", "add", "(", "object", ")", ";", "}", "}", "}", "</s>" ]
8,516
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "ActivityNotFoundException", ";", "import", "android", ".", "content", ".", "BroadcastReceiver", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "IntentFilter", ";", "import", "android", ".", "graphics", ".", "Bitmap", ";", "import", "android", ".", "graphics", ".", "BitmapFactory", ";", "import", "android", ".", "graphics", ".", "LightingColorFilter", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "BitmapDrawable", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "net", ".", "Uri", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "text", ".", "format", ".", "Time", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemSelectedListener", ";", "import", "android", ".", "widget", ".", "ArrayAdapter", ";", "import", "android", ".", "widget", ".", "ImageView", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "LinearLayout", ".", "LayoutParams", ";", "import", "android", ".", "widget", ".", "ScrollView", ";", "import", "android", ".", "widget", ".", "Spinner", ";", "import", "android", ".", "widget", ".", "Toast", ";", "public", "class", "JourneyActivity", "extends", "AbstractActivity", "{", "public", "static", "AbstractResults", "sentResults", ";", "private", "static", "final", "int", "DIALOG_SHARE", "=", "0", ";", "private", "static", "final", "int", "DIALOG_WATCH", "=", "1", ";", "private", "static", "final", "int", "[", "]", "TIME_PERIODS_IN_MINUTES", "=", "{", "0", ",", "5", ",", "10", ",", "15", ",", "20", ",", "30", ",", "45", ",", "60", ",", "120", "}", ";", "protected", "AbstractJourney", "journey", ";", "protected", "View", "journeyView", ";", "private", "int", "journeyIndex", ";", "private", "int", "selectedTimePeriod", "=", "0", ";", "private", "int", "watchMenuItemPosition", ";", "private", "AbstractResults", "results", ";", "private", "BroadcastReceiver", "timeTickReceiver", ";", "private", "LinearLayout", "llMenu", ";", "protected", "void", "addCalendarMenuItem", "(", ")", "{", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_calendar", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "addToCalendar", "(", ")", ";", "}", "}", ")", ";", "}", "protected", "void", "addShareMenuItem", "(", ")", "{", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_share", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "showDialog", "(", "DIALOG_SHARE", ")", ";", "}", "}", ")", ";", "}", "protected", "void", "addWatchMenuItem", "(", ")", "{", "watchMenuItemPosition", "=", "llMenu", ".", "getChildCount", "(", ")", ";", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_watch", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "if", "(", "JourneyNotifs", ".", "isJourneyWatched", "(", "journey", ",", "getApplicationContext", "(", ")", ")", ")", "unWatchJourney", "(", ")", ";", "else", "showDialog", "(", "DIALOG_WATCH", ")", ";", "}", "}", ")", ";", "}", "protected", "void", "addMenuItem", "(", "int", "icon", ",", "OnClickListener", "listener", ")", "{", "LinearLayout", "llMenuItem", "=", "(", "LinearLayout", ")", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "menu_item", ",", "null", ")", ";", "llMenuItem", ".", "setOnClickListener", "(", "listener", ")", ";", "(", "(", "ImageView", ")", "llMenuItem", ".", "findViewById", "(", "R", ".", "id", ".", "icon", ")", ")", ".", "setImageResource", "(", "icon", ")", ";", "LinearLayout", ".", "LayoutParams", "params", "=", "new", "LinearLayout", ".", "LayoutParams", "(", "LayoutParams", ".", "FILL_PARENT", ",", "LayoutParams", ".", "FILL_PARENT", ",", "1", ")", ";", "llMenu", ".", "addView", "(", "llMenuItem", ",", "params", ")", ";", "}", "protected", "void", "addToCalendar", "(", ")", "{", "Calendar", "departure", "=", "journey", ".", "getDepartureTime", "(", ")", ";", "Time", "eventStart", "=", "new", "Time", "(", ")", ";", "eventStart", ".", "set", "(", "0", ",", "departure", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ",", "departure", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", ",", "departure", ".", "get", "(", "Calendar", ".", "DAY_OF_MONTH", ")", ",", "departure", ".", "get", "(", "Calendar", ".", "MONTH", ")", ",", "departure", ".", "get", "(", "Calendar", ".", "YEAR", ")", ")", ";", "Calendar", "arrival", "=", "journey", ".", "getArrivalTime", "(", ")", ";", "Time", "eventEnd", "=", "new", "Time", "(", ")", ";", "eventEnd", ".", "set", "(", "0", ",", "arrival", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ",", "arrival", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", ",", "arrival", ".", "get", "(", "Calendar", ".", "DAY_OF_MONTH", ")", ",", "arrival", ".", "get", "(", "Calendar", ".", "MONTH", ")", ",", "arrival", ".", "get", "(", "Calendar", ".", "YEAR", ")", ")", ";", "Intent", "intent", "=", "new", "Intent", "(", "Intent", ".", "ACTION_EDIT", ")", ";", "intent", ".", "setType", "(", "\"\"", ")", ";", "intent", ".", "putExtra", "(", "\"title\"", ",", "journey", ".", "getCalendarEventTitle", "(", "this", ")", ")", ";", "intent", ".", "putExtra", "(", "\"description\"", ",", "journey", ".", "toHumanReadableString", "(", "false", ")", ")", ";", "intent", ".", "putExtra", "(", "\"beginTime\"", ",", "eventStart", ".", "toMillis", "(", "true", ")", ")", ";", "intent", ".", "putExtra", "(", "\"endTime\"", ",", "eventEnd", ".", "toMillis", "(", "true", ")", ")", ";", "try", "{", "startActivity", "(", "intent", ")", ";", "}", "catch", "(", "ActivityNotFoundException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "Toast", ".", "makeText", "(", "this", ",", "R", ".", "string", ".", "googleCalendarNotInstalled", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "}", "private", "String", "[", "]", "createTimePeriods", "(", ")", "{", "String", "[", "]", "timePeriods", "=", "new", "String", "[", "TIME_PERIODS_IN_MINUTES", ".", "length", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "TIME_PERIODS_IN_MINUTES", ".", "length", ";", "i", "++", ")", "{", "String", "timePeriod", ";", "int", "minutes", "=", "TIME_PERIODS_IN_MINUTES", "[", "i", "]", ";", "if", "(", "minutes", "==", "0", ")", "timePeriod", "=", "getString", "(", "R", ".", "string", ".", "now", ")", ";", "else", "if", "(", "minutes", "<", "60", ")", "timePeriod", "=", "getString", "(", "R", ".", "string", ".", "xMinutesBeforeDeparture", ",", "minutes", ")", ";", "else", "if", "(", "minutes", "==", "60", ")", "timePeriod", "=", "getString", "(", "R", ".", "string", ".", "oneHourBeforeDeparture", ")", ";", "else", "timePeriod", "=", "getString", "(", "R", ".", "string", ".", "xHoursBeforeDeparture", ",", "minutes", "/", "60", ")", ";", "timePeriods", "[", "i", "]", "=", "timePeriod", ";", "}", "return", "timePeriods", ";", "}", "private", "Dialog", "createShareDialog", "(", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "R", ".", "string", ".", "sendJourney", ")", ";", "builder", ".", "setItems", "(", "new", "String", "[", "]", "{", "getString", "(", "R", ".", "string", ".", "sendByEmail", ")", ",", "getString", "(", "R", ".", "string", ".", "sendBySms", ")", "}", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "which", ")", "{", "switch", "(", "which", ")", "{", "case", "0", ":", "sendByEmail", "(", ")", ";", "break", ";", "case", "1", ":", "sendBySms", "(", ")", ";", "break", ";", "}", "}", "}", ")", ";", "builder", ".", "setNeutralButton", "(", "getString", "(", "R", ".", "string", ".", "cancel", ")", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "which", ")", "{", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "private", "Dialog", "createWatchDialog", "(", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "R", ".", "string", ".", "setNotification", ")", ";", "builder", ".", "setInverseBackgroundForced", "(", "true", ")", ";", "View", "view", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "dialog_watch_journey", ",", "null", ")", ";", "Spinner", "spWhenNotify", "=", "(", "Spinner", ")", "view", ".", "findViewById", "(", "R", ".", "id", ".", "spWhenNotify", ")", ";", "spWhenNotify", ".", "setOnItemSelectedListener", "(", "new", "OnItemSelectedListener", "(", ")", "{", "@", "Override", "public", "void", "onItemSelected", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "selectedTimePeriod", "=", "position", ";", "}", "@", "Override", "public", "void", "onNothingSelected", "(", "AdapterView", "<", "?", ">", "parent", ")", "{", "}", "}", ")", ";", "ArrayAdapter", "<", "String", ">", "adapter", "=", "new", "ArrayAdapter", "<", "String", ">", "(", "this", ",", "android", ".", "R", ".", "layout", ".", "simple_spinner_item", ",", "createTimePeriods", "(", ")", ")", ";", "adapter", ".", "setDropDownViewResource", "(", "android", ".", "R", ".", "layout", ".", "simple_spinner_dropdown_item", ")", ";", "spWhenNotify", ".", "setAdapter", "(", "adapter", ")", ";", "builder", ".", "setView", "(", "view", ")", ";", "builder", ".", "setPositiveButton", "(", "R", ".", "string", ".", "ok", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "which", ")", "{", "long", "depTime", "=", "journey", ".", "getDepartureTime", "(", ")", ".", "getTimeInMillis", "(", ")", ";", "int", "minutes", "=", "TIME_PERIODS_IN_MINUTES", "[", "selectedTimePeriod", "]", ";", "long", "whenNotify", "=", "depTime", "-", "minutes", "*", "60", "*", "1000", ";", "if", "(", "minutes", "==", "0", ")", "whenNotify", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "watchJourney", "(", "whenNotify", ")", ";", "}", "}", ")", ";", "builder", ".", "setNegativeButton", "(", "R", ".", "string", ".", "cancel", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "which", ")", "{", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "journey_detail", ")", ";", "if", "(", "savedInstanceState", "==", "null", ")", "{", "results", "=", "sentResults", ";", "sentResults", "=", "null", ";", "}", "else", "{", "selectedTimePeriod", "=", "savedInstanceState", ".", "getInt", "(", "\"\"", ")", ";", "results", "=", "(", "AbstractResults", ")", "savedInstanceState", ".", "getSerializable", "(", "\"results\"", ")", ";", "}", "journeyIndex", "=", "getIntent", "(", ")", ".", "getIntExtra", "(", "\"journeyIndex\"", ",", "-", "1", ")", ";", "journey", "=", "results", ".", "getJourneys", "(", ")", ".", "get", "(", "journeyIndex", ")", ";", "ScrollView", "scrollView", "=", "(", "ScrollView", ")", "findViewById", "(", "R", ".", "id", ".", "scollView", ")", ";", "journeyView", "=", "journey", ".", "inflateView", "(", "this", ",", "true", ")", ";", "scrollView", ".", "addView", "(", "journeyView", ")", ";", "timeTickReceiver", "=", "new", "BroadcastReceiver", "(", ")", "{", "@", "Override", "public", "void", "onReceive", "(", "Context", "context", ",", "Intent", "intent", ")", "{", "journey", ".", "update", "(", "JourneyActivity", ".", "this", ",", "journeyView", ")", ";", "}", "}", ";", "llMenu", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llMenu", ")", ";", "onCreateMenu", "(", ")", ";", "}", "@", "Override", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "if", "(", "id", "==", "DIALOG_SHARE", ")", "{", "return", "createShareDialog", "(", ")", ";", "}", "else", "if", "(", "id", "==", "DIALOG_WATCH", ")", "{", "return", "createWatchDialog", "(", ")", ";", "}", "return", "null", ";", "}", "protected", "void", "onCreateMenu", "(", ")", "{", "}", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "unregisterReceiver", "(", "timeTickReceiver", ")", ";", "}", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "journey", ".", "update", "(", "this", ",", "journeyView", ")", ";", "registerReceiver", "(", "timeTickReceiver", ",", "new", "IntentFilter", "(", "Intent", ".", "ACTION_TIME_TICK", ")", ")", ";", "setWatchIcon", "(", "JourneyNotifs", ".", "isJourneyWatched", "(", "journey", ",", "this", ")", ")", ";", "}", "@", "Override", "protected", "void", "onSaveInstanceState", "(", "Bundle", "outState", ")", "{", "super", ".", "onSaveInstanceState", "(", "outState", ")", ";", "outState", ".", "putSerializable", "(", "\"results\"", ",", "results", ")", ";", "outState", ".", "putSerializable", "(", "\"\"", ",", "selectedTimePeriod", ")", ";", "}", "protected", "void", "sendByEmail", "(", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "Intent", ".", "ACTION_SEND", ")", ";", "intent", ".", "putExtra", "(", "Intent", ".", "EXTRA_TEXT", ",", "journey", ".", "toHumanReadableString", "(", "false", ")", ")", ";", "intent", ".", "setType", "(", "\"\"", ")", ";", "startActivity", "(", "Intent", ".", "createChooser", "(", "intent", ",", "getString", "(", "R", ".", "string", ".", "sendByEmail", ")", ")", ")", ";", "}", "protected", "void", "sendBySms", "(", ")", "{", "String", "smsBody", "=", "journey", ".", "toHumanReadableString", "(", "true", ")", ";", "Intent", "intent", "=", "new", "Intent", "(", "Intent", ".", "ACTION_VIEW", ")", ";", "intent", ".", "setData", "(", "Uri", ".", "parse", "(", "\"sms:\"", ")", ")", ";", "intent", ".", "putExtra", "(", "\"sms_body\"", ",", "smsBody", ")", ";", "startActivity", "(", "intent", ")", ";", "}", "private", "void", "setWatchIcon", "(", "boolean", "isJourneyWatched", ")", "{", "Bitmap", "immutableBitmap", "=", "BitmapFactory", ".", "decodeResource", "(", "getResources", "(", ")", ",", "R", ".", "drawable", ".", "ic_watch", ")", ";", "Bitmap", "mutableBitmap", "=", "immutableBitmap", ".", "copy", "(", "Bitmap", ".", "Config", ".", "ARGB_8888", ",", "true", ")", ";", "immutableBitmap", ".", "recycle", "(", ")", ";", "Drawable", "d", "=", "new", "BitmapDrawable", "(", "mutableBitmap", ")", ";", "if", "(", "isJourneyWatched", ")", "{", "int", "color", "=", "getResources", "(", ")", ".", "getColor", "(", "R", ".", "color", ".", "themeColor", ")", ";", "int", "R", "=", "(", "color", "&", "0x00ff0000", ")", ">>", "16", ";", "int", "G", "=", "(", "color", "&", "0x0000ff00", ")", ">>", "8", ";", "int", "B", "=", "(", "color", "&", "0x000000ff", ")", ";", "float", "r", "=", "R", "/", "255f", ";", "float", "g", "=", "G", "/", "255f", ";", "float", "b", "=", "B", "/", "255f", ";", "int", "lightenFactor", "=", "130", ";", "int", "lightenR", "=", "(", "int", ")", "(", "r", "*", "lightenFactor", ")", ";", "int", "lightenG", "=", "(", "int", ")", "(", "g", "*", "lightenFactor", ")", ";", "int", "lightenB", "=", "(", "int", ")", "(", "b", "*", "lightenFactor", ")", ";", "int", "lightenColor", "=", "(", "lightenR", "*", "0x10000", ")", "+", "(", "lightenG", "*", "0x100", ")", "+", "lightenB", ";", "d", ".", "setColorFilter", "(", "new", "LightingColorFilter", "(", "color", ",", "lightenColor", ")", ")", ";", "}", "LinearLayout", "llMenuItem", "=", "(", "LinearLayout", ")", "llMenu", ".", "getChildAt", "(", "watchMenuItemPosition", ")", ";", "ImageView", "iv", "=", "(", "(", "ImageView", ")", "llMenuItem", ".", "findViewById", "(", "R", ".", "id", ".", "icon", ")", ")", ";", "iv", ".", "setImageDrawable", "(", "d", ")", ";", "}", "protected", "void", "unWatchJourney", "(", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "this", ",", "JourneyNotifsService", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "JourneyNotifsService", ".", "EXTRA_CANCEL", ",", "JourneyNotifs", ".", "getFileName", "(", "this", ",", "journey", ")", ")", ";", "startService", "(", "intent", ")", ";", "setWatchIcon", "(", "false", ")", ";", "Toast", ".", "makeText", "(", "this", ",", "R", ".", "string", ".", "journeyNotificationCancelled", ",", "Toast", ".", "LENGTH_SHORT", ")", ".", "show", "(", ")", ";", "}", "protected", "void", "watchJourney", "(", "long", "whenNotify", ")", "{", "JourneyNotifs", ".", "watchJourney", "(", "this", ",", "whenNotify", ",", "journey", ",", "results", ",", "journeyIndex", ")", ";", "setWatchIcon", "(", "true", ")", ";", "}", "}", "</s>" ]
8,517
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "public", "abstract", "class", "AbstractProvider", "{", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "JourneyFinderException", "extends", "Exception", "{", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "UnknownStopException", "extends", "JourneyFinderException", "{", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "StopAmbiguousException", "extends", "JourneyFinderException", "{", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "InputEmptyException", "extends", "JourneyFinderException", "{", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "ParseException", "extends", "JourneyFinderException", "{", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "JourneyNotFoundException", "extends", "JourneyFinderException", "{", "}", "public", "abstract", "AbstractResults", "findJourneys", "(", "AbstractSearchOptions", "options", ")", "throws", "IOException", ",", "JourneyFinderException", ";", "}", "</s>" ]
8,518
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "lang", ".", "ref", ".", "WeakReference", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "graphics", ".", "PixelFormat", ";", "import", "android", ".", "graphics", ".", "Rect", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "StateListDrawable", ";", "import", "android", ".", "os", ".", "IBinder", ";", "import", "android", ".", "util", ".", "AttributeSet", ";", "import", "android", ".", "view", ".", "Gravity", ";", "import", "android", ".", "view", ".", "KeyEvent", ";", "import", "android", ".", "view", ".", "MotionEvent", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnTouchListener", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "view", ".", "ViewTreeObserver", ";", "import", "android", ".", "view", ".", "ViewTreeObserver", ".", "OnScrollChangedListener", ";", "import", "android", ".", "view", ".", "WindowManager", ";", "import", "android", ".", "widget", ".", "FrameLayout", ";", "public", "class", "MyPopupWindow", "{", "public", "static", "final", "int", "INPUT_METHOD_FROM_FOCUSABLE", "=", "0", ";", "public", "static", "final", "int", "INPUT_METHOD_NEEDED", "=", "1", ";", "public", "static", "final", "int", "INPUT_METHOD_NOT_NEEDED", "=", "2", ";", "public", "boolean", "forceDropDownAbove", "=", "false", ";", "public", "boolean", "forceDropDownBelow", "=", "false", ";", "private", "final", "Context", "mContext", ";", "private", "final", "WindowManager", "mWindowManager", ";", "private", "boolean", "mIsShowing", ";", "private", "boolean", "mIsDropdown", ";", "private", "View", "mContentView", ";", "private", "View", "mPopupView", ";", "private", "boolean", "mFocusable", ";", "private", "int", "mInputMethodMode", "=", "INPUT_METHOD_FROM_FOCUSABLE", ";", "private", "boolean", "mTouchable", "=", "true", ";", "private", "boolean", "mOutsideTouchable", "=", "false", ";", "private", "boolean", "mClippingEnabled", "=", "true", ";", "private", "OnTouchListener", "mTouchInterceptor", ";", "private", "int", "mWidthMode", ";", "private", "int", "mWidth", ";", "private", "int", "mLastWidth", ";", "private", "int", "mHeightMode", ";", "private", "int", "mHeight", ";", "private", "int", "mLastHeight", ";", "private", "int", "mPopupWidth", ";", "private", "int", "mPopupHeight", ";", "private", "int", "[", "]", "mDrawingLocation", "=", "new", "int", "[", "2", "]", ";", "private", "int", "[", "]", "mScreenLocation", "=", "new", "int", "[", "2", "]", ";", "private", "Rect", "mTempRect", "=", "new", "Rect", "(", ")", ";", "private", "Drawable", "mBackground", ";", "private", "Drawable", "mAboveAnchorBackgroundDrawable", ";", "private", "Drawable", "mBelowAnchorBackgroundDrawable", ";", "private", "boolean", "mAboveAnchor", ";", "private", "OnDismissListener", "mOnDismissListener", ";", "private", "boolean", "mIgnoreCheekPress", "=", "false", ";", "private", "int", "mAnimationStyle", "=", "-", "1", ";", "private", "static", "final", "int", "[", "]", "ABOVE_ANCHOR_STATE_SET", "=", "new", "int", "[", "]", "{", "android", ".", "R", ".", "attr", ".", "state_above_anchor", "}", ";", "private", "WeakReference", "<", "View", ">", "mAnchor", ";", "private", "OnScrollChangedListener", "mOnScrollChangedListener", "=", "new", "OnScrollChangedListener", "(", ")", "{", "public", "void", "onScrollChanged", "(", ")", "{", "View", "anchor", "=", "mAnchor", ".", "get", "(", ")", ";", "if", "(", "anchor", "!=", "null", "&&", "mPopupView", "!=", "null", ")", "{", "WindowManager", ".", "LayoutParams", "p", "=", "(", "WindowManager", ".", "LayoutParams", ")", "mPopupView", ".", "getLayoutParams", "(", ")", ";", "mAboveAnchor", "=", "findDropDownPosition", "(", "anchor", ",", "p", ",", "mAnchorXoff", ",", "mAnchorYoff", ")", ";", "update", "(", "p", ".", "x", ",", "p", ".", "y", ",", "-", "1", ",", "-", "1", ",", "true", ")", ";", "}", "}", "}", ";", "private", "int", "mAnchorXoff", ",", "mAnchorYoff", ";", "public", "MyPopupWindow", "(", "Context", "context", ")", "{", "this", "(", "context", ",", "null", ")", ";", "}", "public", "MyPopupWindow", "(", "Context", "context", ",", "AttributeSet", "attrs", ")", "{", "this", "(", "context", ",", "attrs", ",", "android", ".", "R", ".", "attr", ".", "popupWindowStyle", ")", ";", "}", "public", "MyPopupWindow", "(", "Context", "context", ",", "AttributeSet", "attrs", ",", "int", "defStyle", ")", "{", "mContext", "=", "context", ";", "mWindowManager", "=", "(", "WindowManager", ")", "context", ".", "getSystemService", "(", "Context", ".", "WINDOW_SERVICE", ")", ";", "mBackground", "=", "context", ".", "getResources", "(", ")", ".", "getDrawable", "(", "android", ".", "R", ".", "drawable", ".", "spinner_dropdown_background", ")", ";", "StateListDrawable", "sld", "=", "(", "StateListDrawable", ")", "mBackground", ";", "sld", ".", "selectDrawable", "(", "0", ")", ";", "mAboveAnchorBackgroundDrawable", "=", "sld", ".", "getCurrent", "(", ")", ";", "sld", ".", "selectDrawable", "(", "1", ")", ";", "mBelowAnchorBackgroundDrawable", "=", "sld", ".", "getCurrent", "(", ")", ";", "}", "public", "MyPopupWindow", "(", ")", "{", "this", "(", "null", ",", "0", ",", "0", ")", ";", "}", "public", "MyPopupWindow", "(", "View", "contentView", ")", "{", "this", "(", "contentView", ",", "0", ",", "0", ")", ";", "}", "public", "MyPopupWindow", "(", "int", "width", ",", "int", "height", ")", "{", "this", "(", "null", ",", "width", ",", "height", ")", ";", "}", "public", "MyPopupWindow", "(", "View", "contentView", ",", "int", "width", ",", "int", "height", ")", "{", "this", "(", "contentView", ",", "width", ",", "height", ",", "false", ")", ";", "}", "public", "MyPopupWindow", "(", "View", "contentView", ",", "int", "width", ",", "int", "height", ",", "boolean", "focusable", ")", "{", "mContext", "=", "contentView", ".", "getContext", "(", ")", ";", "mWindowManager", "=", "(", "WindowManager", ")", "mContext", ".", "getSystemService", "(", "Context", ".", "WINDOW_SERVICE", ")", ";", "setContentView", "(", "contentView", ")", ";", "setWidth", "(", "width", ")", ";", "setHeight", "(", "height", ")", ";", "setFocusable", "(", "focusable", ")", ";", "}", "public", "Drawable", "getBackground", "(", ")", "{", "return", "mBackground", ";", "}", "public", "void", "setBackgroundDrawable", "(", "Drawable", "background", ")", "{", "mBackground", "=", "background", ";", "}", "public", "int", "getAnimationStyle", "(", ")", "{", "return", "mAnimationStyle", ";", "}", "public", "void", "setIgnoreCheekPress", "(", ")", "{", "mIgnoreCheekPress", "=", "true", ";", "}", "public", "void", "setAnimationStyle", "(", "int", "animationStyle", ")", "{", "mAnimationStyle", "=", "animationStyle", ";", "}", "public", "View", "getContentView", "(", ")", "{", "return", "mContentView", ";", "}", "public", "void", "setContentView", "(", "View", "contentView", ")", "{", "if", "(", "isShowing", "(", ")", ")", "{", "return", ";", "}", "mContentView", "=", "contentView", ";", "}", "public", "void", "setTouchInterceptor", "(", "OnTouchListener", "l", ")", "{", "mTouchInterceptor", "=", "l", ";", "}", "public", "boolean", "isFocusable", "(", ")", "{", "return", "mFocusable", ";", "}", "public", "void", "setFocusable", "(", "boolean", "focusable", ")", "{", "mFocusable", "=", "focusable", ";", "}", "public", "int", "getInputMethodMode", "(", ")", "{", "return", "mInputMethodMode", ";", "}", "public", "void", "setInputMethodMode", "(", "int", "mode", ")", "{", "mInputMethodMode", "=", "mode", ";", "}", "public", "boolean", "isTouchable", "(", ")", "{", "return", "mTouchable", ";", "}", "public", "void", "setTouchable", "(", "boolean", "touchable", ")", "{", "mTouchable", "=", "touchable", ";", "}", "public", "boolean", "isOutsideTouchable", "(", ")", "{", "return", "mOutsideTouchable", ";", "}", "public", "void", "setOutsideTouchable", "(", "boolean", "touchable", ")", "{", "mOutsideTouchable", "=", "touchable", ";", "}", "public", "boolean", "isClippingEnabled", "(", ")", "{", "return", "mClippingEnabled", ";", "}", "public", "void", "setClippingEnabled", "(", "boolean", "enabled", ")", "{", "mClippingEnabled", "=", "enabled", ";", "}", "public", "void", "setWindowLayoutMode", "(", "int", "widthSpec", ",", "int", "heightSpec", ")", "{", "mWidthMode", "=", "widthSpec", ";", "mHeightMode", "=", "heightSpec", ";", "}", "public", "int", "getHeight", "(", ")", "{", "return", "mHeight", ";", "}", "public", "void", "setHeight", "(", "int", "height", ")", "{", "mHeight", "=", "height", ";", "}", "public", "int", "getWidth", "(", ")", "{", "return", "mWidth", ";", "}", "public", "void", "setWidth", "(", "int", "width", ")", "{", "mWidth", "=", "width", ";", "}", "public", "boolean", "isShowing", "(", ")", "{", "return", "mIsShowing", ";", "}", "public", "void", "showAtLocation", "(", "View", "parent", ",", "int", "gravity", ",", "int", "x", ",", "int", "y", ")", "{", "if", "(", "isShowing", "(", ")", "||", "mContentView", "==", "null", ")", "{", "return", ";", "}", "unregisterForScrollChanged", "(", ")", ";", "mIsShowing", "=", "true", ";", "mIsDropdown", "=", "false", ";", "WindowManager", ".", "LayoutParams", "p", "=", "createPopupLayout", "(", "parent", ".", "getWindowToken", "(", ")", ")", ";", "p", ".", "windowAnimations", "=", "computeAnimationResource", "(", ")", ";", "preparePopup", "(", "p", ")", ";", "if", "(", "gravity", "==", "Gravity", ".", "NO_GRAVITY", ")", "{", "gravity", "=", "Gravity", ".", "TOP", "|", "Gravity", ".", "LEFT", ";", "}", "p", ".", "gravity", "=", "gravity", ";", "p", ".", "x", "=", "x", ";", "p", ".", "y", "=", "y", ";", "invokePopup", "(", "p", ")", ";", "}", "public", "void", "showAsDropDown", "(", "View", "anchor", ")", "{", "showAsDropDown", "(", "anchor", ",", "0", ",", "0", ")", ";", "}", "public", "void", "showAsDropDown", "(", "View", "anchor", ",", "int", "xoff", ",", "int", "yoff", ")", "{", "if", "(", "isShowing", "(", ")", "||", "mContentView", "==", "null", ")", "{", "return", ";", "}", "registerForScrollChanged", "(", "anchor", ",", "xoff", ",", "yoff", ")", ";", "mIsShowing", "=", "true", ";", "mIsDropdown", "=", "true", ";", "WindowManager", ".", "LayoutParams", "p", "=", "createPopupLayout", "(", "anchor", ".", "getWindowToken", "(", ")", ")", ";", "preparePopup", "(", "p", ")", ";", "mAboveAnchor", "=", "findDropDownPosition", "(", "anchor", ",", "p", ",", "xoff", ",", "yoff", ")", ";", "if", "(", "mBackground", "!=", "null", ")", "{", "if", "(", "mAboveAnchorBackgroundDrawable", "!=", "null", ")", "{", "if", "(", "mAboveAnchor", ")", "{", "mPopupView", ".", "setBackgroundDrawable", "(", "mAboveAnchorBackgroundDrawable", ")", ";", "}", "else", "{", "mPopupView", ".", "setBackgroundDrawable", "(", "mBelowAnchorBackgroundDrawable", ")", ";", "}", "}", "else", "{", "mPopupView", ".", "refreshDrawableState", "(", ")", ";", "}", "}", "if", "(", "mHeightMode", "<", "0", ")", "p", ".", "height", "=", "mLastHeight", "=", "mHeightMode", ";", "if", "(", "mWidthMode", "<", "0", ")", "p", ".", "width", "=", "mLastWidth", "=", "mWidthMode", ";", "p", ".", "windowAnimations", "=", "computeAnimationResource", "(", ")", ";", "invokePopup", "(", "p", ")", ";", "}", "public", "boolean", "isAboveAnchor", "(", ")", "{", "return", "mAboveAnchor", ";", "}", "private", "void", "preparePopup", "(", "WindowManager", ".", "LayoutParams", "p", ")", "{", "if", "(", "mBackground", "!=", "null", ")", "{", "final", "ViewGroup", ".", "LayoutParams", "layoutParams", "=", "mContentView", ".", "getLayoutParams", "(", ")", ";", "int", "height", "=", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ";", "if", "(", "layoutParams", "!=", "null", "&&", "layoutParams", ".", "height", "==", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ")", "{", "height", "=", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ";", "}", "PopupViewContainer", "popupViewContainer", "=", "new", "PopupViewContainer", "(", "mContext", ")", ";", "PopupViewContainer", ".", "LayoutParams", "listParams", "=", "new", "PopupViewContainer", ".", "LayoutParams", "(", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ",", "height", ")", ";", "popupViewContainer", ".", "setBackgroundDrawable", "(", "mBackground", ")", ";", "popupViewContainer", ".", "addView", "(", "mContentView", ",", "listParams", ")", ";", "mPopupView", "=", "popupViewContainer", ";", "}", "else", "{", "mPopupView", "=", "mContentView", ";", "}", "mPopupWidth", "=", "p", ".", "width", ";", "mPopupHeight", "=", "p", ".", "height", ";", "}", "private", "void", "invokePopup", "(", "WindowManager", ".", "LayoutParams", "p", ")", "{", "mWindowManager", ".", "addView", "(", "mPopupView", ",", "p", ")", ";", "}", "private", "WindowManager", ".", "LayoutParams", "createPopupLayout", "(", "IBinder", "token", ")", "{", "WindowManager", ".", "LayoutParams", "p", "=", "new", "WindowManager", ".", "LayoutParams", "(", ")", ";", "p", ".", "gravity", "=", "Gravity", ".", "LEFT", "|", "Gravity", ".", "TOP", ";", "p", ".", "width", "=", "mLastWidth", "=", "mWidth", ";", "p", ".", "height", "=", "mLastHeight", "=", "mHeight", ";", "if", "(", "mBackground", "!=", "null", ")", "{", "p", ".", "format", "=", "mBackground", ".", "getOpacity", "(", ")", ";", "}", "else", "{", "p", ".", "format", "=", "PixelFormat", ".", "TRANSLUCENT", ";", "}", "p", ".", "flags", "=", "computeFlags", "(", "p", ".", "flags", ")", ";", "p", ".", "type", "=", "WindowManager", ".", "LayoutParams", ".", "TYPE_APPLICATION_PANEL", ";", "p", ".", "token", "=", "token", ";", "p", ".", "setTitle", "(", "\"PopupWindow:\"", "+", "Integer", ".", "toHexString", "(", "hashCode", "(", ")", ")", ")", ";", "return", "p", ";", "}", "private", "int", "computeFlags", "(", "int", "curFlags", ")", "{", "curFlags", "&=", "~", "(", "WindowManager", ".", "LayoutParams", ".", "FLAG_IGNORE_CHEEK_PRESSES", "|", "WindowManager", ".", "LayoutParams", ".", "FLAG_NOT_FOCUSABLE", "|", "WindowManager", ".", "LayoutParams", ".", "FLAG_NOT_TOUCHABLE", "|", "WindowManager", ".", "LayoutParams", ".", "FLAG_WATCH_OUTSIDE_TOUCH", "|", "WindowManager", ".", "LayoutParams", ".", "FLAG_LAYOUT_NO_LIMITS", "|", "WindowManager", ".", "LayoutParams", ".", "FLAG_ALT_FOCUSABLE_IM", ")", ";", "if", "(", "mIgnoreCheekPress", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_IGNORE_CHEEK_PRESSES", ";", "}", "if", "(", "!", "mFocusable", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_NOT_FOCUSABLE", ";", "if", "(", "mInputMethodMode", "==", "INPUT_METHOD_NEEDED", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_ALT_FOCUSABLE_IM", ";", "}", "}", "else", "if", "(", "mInputMethodMode", "==", "INPUT_METHOD_NOT_NEEDED", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_ALT_FOCUSABLE_IM", ";", "}", "if", "(", "!", "mTouchable", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_NOT_TOUCHABLE", ";", "}", "if", "(", "mOutsideTouchable", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_WATCH_OUTSIDE_TOUCH", ";", "}", "if", "(", "!", "mClippingEnabled", ")", "{", "curFlags", "|=", "WindowManager", ".", "LayoutParams", ".", "FLAG_LAYOUT_NO_LIMITS", ";", "}", "return", "curFlags", ";", "}", "private", "int", "computeAnimationResource", "(", ")", "{", "if", "(", "mAnimationStyle", "==", "-", "1", ")", "{", "if", "(", "mIsDropdown", ")", "{", "return", "mAboveAnchor", "?", "R", ".", "style", ".", "Animation_DropDownUp", ":", "R", ".", "style", ".", "Animation_DropDownDown", ";", "}", "return", "0", ";", "}", "return", "mAnimationStyle", ";", "}", "private", "boolean", "findDropDownPosition", "(", "View", "anchor", ",", "WindowManager", ".", "LayoutParams", "p", ",", "int", "xoff", ",", "int", "yoff", ")", "{", "anchor", ".", "getLocationInWindow", "(", "mDrawingLocation", ")", ";", "p", ".", "x", "=", "mDrawingLocation", "[", "0", "]", "+", "xoff", ";", "p", ".", "y", "=", "mDrawingLocation", "[", "1", "]", "+", "anchor", ".", "getMeasuredHeight", "(", ")", "+", "yoff", ";", "boolean", "onTop", "=", "false", ";", "p", ".", "gravity", "=", "Gravity", ".", "LEFT", "|", "Gravity", ".", "TOP", ";", "anchor", ".", "getLocationOnScreen", "(", "mScreenLocation", ")", ";", "final", "Rect", "displayFrame", "=", "new", "Rect", "(", ")", ";", "anchor", ".", "getWindowVisibleDisplayFrame", "(", "displayFrame", ")", ";", "final", "View", "root", "=", "anchor", ".", "getRootView", "(", ")", ";", "if", "(", "true", ")", "{", "int", "scrollX", "=", "anchor", ".", "getScrollX", "(", ")", ";", "int", "scrollY", "=", "anchor", ".", "getScrollY", "(", ")", ";", "Rect", "r", "=", "new", "Rect", "(", "scrollX", ",", "scrollY", ",", "scrollX", "+", "mPopupWidth", ",", "scrollY", "+", "mPopupHeight", "+", "anchor", ".", "getMeasuredHeight", "(", ")", ")", ";", "anchor", ".", "requestRectangleOnScreen", "(", "r", ",", "true", ")", ";", "anchor", ".", "getLocationInWindow", "(", "mDrawingLocation", ")", ";", "p", ".", "x", "=", "mDrawingLocation", "[", "0", "]", "+", "xoff", ";", "p", ".", "y", "=", "mDrawingLocation", "[", "1", "]", "+", "anchor", ".", "getMeasuredHeight", "(", ")", "+", "yoff", ";", "anchor", ".", "getLocationOnScreen", "(", "mScreenLocation", ")", ";", "onTop", "=", "(", "displayFrame", ".", "bottom", "-", "mScreenLocation", "[", "1", "]", "-", "anchor", ".", "getMeasuredHeight", "(", ")", "-", "yoff", ")", "<", "(", "mScreenLocation", "[", "1", "]", "-", "yoff", "-", "displayFrame", ".", "top", ")", ";", "if", "(", "forceDropDownAbove", ")", "onTop", "=", "true", ";", "if", "(", "forceDropDownBelow", ")", "onTop", "=", "false", ";", "if", "(", "onTop", ")", "{", "p", ".", "gravity", "=", "Gravity", ".", "LEFT", "|", "Gravity", ".", "BOTTOM", ";", "p", ".", "y", "=", "root", ".", "getHeight", "(", ")", "-", "mDrawingLocation", "[", "1", "]", "+", "yoff", ";", "}", "else", "{", "p", ".", "y", "=", "mDrawingLocation", "[", "1", "]", "+", "anchor", ".", "getMeasuredHeight", "(", ")", "+", "yoff", ";", "}", "}", "p", ".", "gravity", "|=", "Gravity", ".", "DISPLAY_CLIP_VERTICAL", ";", "return", "onTop", ";", "}", "public", "int", "getMaxAvailableHeight", "(", "View", "anchor", ")", "{", "return", "getMaxAvailableHeight", "(", "anchor", ",", "0", ")", ";", "}", "public", "int", "getMaxAvailableHeight", "(", "View", "anchor", ",", "int", "yOffset", ")", "{", "final", "Rect", "displayFrame", "=", "new", "Rect", "(", ")", ";", "anchor", ".", "getWindowVisibleDisplayFrame", "(", "displayFrame", ")", ";", "final", "int", "[", "]", "anchorPos", "=", "mDrawingLocation", ";", "anchor", ".", "getLocationOnScreen", "(", "anchorPos", ")", ";", "final", "int", "distanceToBottom", "=", "displayFrame", ".", "bottom", "-", "(", "anchorPos", "[", "1", "]", "+", "anchor", ".", "getHeight", "(", ")", ")", "-", "yOffset", ";", "final", "int", "distanceToTop", "=", "anchorPos", "[", "1", "]", "-", "displayFrame", ".", "top", "+", "yOffset", ";", "int", "returnedHeight", "=", "Math", ".", "max", "(", "distanceToBottom", ",", "distanceToTop", ")", ";", "if", "(", "mBackground", "!=", "null", ")", "{", "mBackground", ".", "getPadding", "(", "mTempRect", ")", ";", "returnedHeight", "-=", "mTempRect", ".", "top", "+", "mTempRect", ".", "bottom", ";", "}", "return", "returnedHeight", ";", "}", "public", "void", "dismiss", "(", ")", "{", "if", "(", "isShowing", "(", ")", "&&", "mPopupView", "!=", "null", ")", "{", "unregisterForScrollChanged", "(", ")", ";", "mWindowManager", ".", "removeView", "(", "mPopupView", ")", ";", "if", "(", "mPopupView", "!=", "mContentView", "&&", "mPopupView", "instanceof", "ViewGroup", ")", "{", "(", "(", "ViewGroup", ")", "mPopupView", ")", ".", "removeView", "(", "mContentView", ")", ";", "}", "mPopupView", "=", "null", ";", "mIsShowing", "=", "false", ";", "if", "(", "mOnDismissListener", "!=", "null", ")", "{", "mOnDismissListener", ".", "onDismiss", "(", ")", ";", "}", "}", "}", "public", "void", "setOnDismissListener", "(", "OnDismissListener", "onDismissListener", ")", "{", "mOnDismissListener", "=", "onDismissListener", ";", "}", "public", "void", "update", "(", ")", "{", "if", "(", "!", "isShowing", "(", ")", "||", "mContentView", "==", "null", ")", "{", "return", ";", "}", "WindowManager", ".", "LayoutParams", "p", "=", "(", "WindowManager", ".", "LayoutParams", ")", "mPopupView", ".", "getLayoutParams", "(", ")", ";", "boolean", "update", "=", "false", ";", "final", "int", "newAnim", "=", "computeAnimationResource", "(", ")", ";", "if", "(", "newAnim", "!=", "p", ".", "windowAnimations", ")", "{", "p", ".", "windowAnimations", "=", "newAnim", ";", "update", "=", "true", ";", "}", "final", "int", "newFlags", "=", "computeFlags", "(", "p", ".", "flags", ")", ";", "if", "(", "newFlags", "!=", "p", ".", "flags", ")", "{", "p", ".", "flags", "=", "newFlags", ";", "update", "=", "true", ";", "}", "if", "(", "update", ")", "{", "mWindowManager", ".", "updateViewLayout", "(", "mPopupView", ",", "p", ")", ";", "}", "}", "public", "void", "update", "(", "int", "x", ",", "int", "y", ",", "int", "width", ",", "int", "height", ")", "{", "update", "(", "x", ",", "y", ",", "width", ",", "height", ",", "false", ")", ";", "}", "public", "void", "update", "(", "int", "x", ",", "int", "y", ",", "int", "width", ",", "int", "height", ",", "boolean", "force", ")", "{", "if", "(", "width", "!=", "-", "1", ")", "{", "mLastWidth", "=", "width", ";", "setWidth", "(", "width", ")", ";", "}", "if", "(", "height", "!=", "-", "1", ")", "{", "mLastHeight", "=", "height", ";", "setHeight", "(", "height", ")", ";", "}", "if", "(", "!", "isShowing", "(", ")", "||", "mContentView", "==", "null", ")", "{", "return", ";", "}", "WindowManager", ".", "LayoutParams", "p", "=", "(", "WindowManager", ".", "LayoutParams", ")", "mPopupView", ".", "getLayoutParams", "(", ")", ";", "boolean", "update", "=", "force", ";", "final", "int", "finalWidth", "=", "mWidthMode", "<", "0", "?", "mWidthMode", ":", "mLastWidth", ";", "if", "(", "width", "!=", "-", "1", "&&", "p", ".", "width", "!=", "finalWidth", ")", "{", "p", ".", "width", "=", "mLastWidth", "=", "finalWidth", ";", "update", "=", "true", ";", "}", "final", "int", "finalHeight", "=", "mHeightMode", "<", "0", "?", "mHeightMode", ":", "mLastHeight", ";", "if", "(", "height", "!=", "-", "1", "&&", "p", ".", "height", "!=", "finalHeight", ")", "{", "p", ".", "height", "=", "mLastHeight", "=", "finalHeight", ";", "update", "=", "true", ";", "}", "if", "(", "p", ".", "x", "!=", "x", ")", "{", "p", ".", "x", "=", "x", ";", "update", "=", "true", ";", "}", "if", "(", "p", ".", "y", "!=", "y", ")", "{", "p", ".", "y", "=", "y", ";", "update", "=", "true", ";", "}", "final", "int", "newAnim", "=", "computeAnimationResource", "(", ")", ";", "if", "(", "newAnim", "!=", "p", ".", "windowAnimations", ")", "{", "p", ".", "windowAnimations", "=", "newAnim", ";", "update", "=", "true", ";", "}", "final", "int", "newFlags", "=", "computeFlags", "(", "p", ".", "flags", ")", ";", "if", "(", "newFlags", "!=", "p", ".", "flags", ")", "{", "p", ".", "flags", "=", "newFlags", ";", "update", "=", "true", ";", "}", "if", "(", "update", ")", "{", "mWindowManager", ".", "updateViewLayout", "(", "mPopupView", ",", "p", ")", ";", "}", "}", "public", "void", "update", "(", "View", "anchor", ",", "int", "width", ",", "int", "height", ")", "{", "update", "(", "anchor", ",", "false", ",", "0", ",", "0", ",", "true", ",", "width", ",", "height", ")", ";", "}", "public", "void", "update", "(", "View", "anchor", ",", "int", "xoff", ",", "int", "yoff", ",", "int", "width", ",", "int", "height", ")", "{", "update", "(", "anchor", ",", "true", ",", "xoff", ",", "yoff", ",", "true", ",", "width", ",", "height", ")", ";", "}", "private", "void", "update", "(", "View", "anchor", ",", "boolean", "updateLocation", ",", "int", "xoff", ",", "int", "yoff", ",", "boolean", "updateDimension", ",", "int", "width", ",", "int", "height", ")", "{", "if", "(", "!", "isShowing", "(", ")", "||", "mContentView", "==", "null", ")", "{", "return", ";", "}", "WeakReference", "<", "View", ">", "oldAnchor", "=", "mAnchor", ";", "if", "(", "oldAnchor", "==", "null", "||", "oldAnchor", ".", "get", "(", ")", "!=", "anchor", "||", "(", "updateLocation", "&&", "(", "mAnchorXoff", "!=", "xoff", "||", "mAnchorYoff", "!=", "yoff", ")", ")", ")", "{", "registerForScrollChanged", "(", "anchor", ",", "xoff", ",", "yoff", ")", ";", "}", "WindowManager", ".", "LayoutParams", "p", "=", "(", "WindowManager", ".", "LayoutParams", ")", "mPopupView", ".", "getLayoutParams", "(", ")", ";", "if", "(", "updateDimension", ")", "{", "if", "(", "width", "==", "-", "1", ")", "{", "width", "=", "mPopupWidth", ";", "}", "else", "{", "mPopupWidth", "=", "width", ";", "}", "if", "(", "height", "==", "-", "1", ")", "{", "height", "=", "mPopupHeight", ";", "}", "else", "{", "mPopupHeight", "=", "height", ";", "}", "}", "if", "(", "updateLocation", ")", "{", "mAboveAnchor", "=", "findDropDownPosition", "(", "anchor", ",", "p", ",", "xoff", ",", "yoff", ")", ";", "}", "else", "{", "mAboveAnchor", "=", "findDropDownPosition", "(", "anchor", ",", "p", ",", "mAnchorXoff", ",", "mAnchorYoff", ")", ";", "}", "update", "(", "p", ".", "x", ",", "p", ".", "y", ",", "width", ",", "height", ")", ";", "}", "public", "interface", "OnDismissListener", "{", "public", "void", "onDismiss", "(", ")", ";", "}", "private", "void", "unregisterForScrollChanged", "(", ")", "{", "WeakReference", "<", "View", ">", "anchorRef", "=", "mAnchor", ";", "View", "anchor", "=", "null", ";", "if", "(", "anchorRef", "!=", "null", ")", "{", "anchor", "=", "anchorRef", ".", "get", "(", ")", ";", "}", "if", "(", "anchor", "!=", "null", ")", "{", "ViewTreeObserver", "vto", "=", "anchor", ".", "getViewTreeObserver", "(", ")", ";", "vto", ".", "removeOnScrollChangedListener", "(", "mOnScrollChangedListener", ")", ";", "}", "mAnchor", "=", "null", ";", "}", "private", "void", "registerForScrollChanged", "(", "View", "anchor", ",", "int", "xoff", ",", "int", "yoff", ")", "{", "unregisterForScrollChanged", "(", ")", ";", "mAnchor", "=", "new", "WeakReference", "<", "View", ">", "(", "anchor", ")", ";", "ViewTreeObserver", "vto", "=", "anchor", ".", "getViewTreeObserver", "(", ")", ";", "if", "(", "vto", "!=", "null", ")", "{", "vto", ".", "addOnScrollChangedListener", "(", "mOnScrollChangedListener", ")", ";", "}", "mAnchorXoff", "=", "xoff", ";", "mAnchorYoff", "=", "yoff", ";", "}", "private", "class", "PopupViewContainer", "extends", "FrameLayout", "{", "public", "PopupViewContainer", "(", "Context", "context", ")", "{", "super", "(", "context", ")", ";", "}", "@", "Override", "protected", "int", "[", "]", "onCreateDrawableState", "(", "int", "extraSpace", ")", "{", "if", "(", "mAboveAnchor", ")", "{", "final", "int", "[", "]", "drawableState", "=", "super", ".", "onCreateDrawableState", "(", "extraSpace", "+", "1", ")", ";", "View", ".", "mergeDrawableStates", "(", "drawableState", ",", "ABOVE_ANCHOR_STATE_SET", ")", ";", "return", "drawableState", ";", "}", "else", "{", "return", "super", ".", "onCreateDrawableState", "(", "extraSpace", ")", ";", "}", "}", "@", "Override", "public", "boolean", "dispatchKeyEvent", "(", "KeyEvent", "event", ")", "{", "if", "(", "event", ".", "getKeyCode", "(", ")", "==", "KeyEvent", ".", "KEYCODE_BACK", ")", "{", "dismiss", "(", ")", ";", "return", "true", ";", "}", "else", "{", "return", "super", ".", "dispatchKeyEvent", "(", "event", ")", ";", "}", "}", "@", "Override", "public", "boolean", "dispatchTouchEvent", "(", "MotionEvent", "ev", ")", "{", "if", "(", "mTouchInterceptor", "!=", "null", "&&", "mTouchInterceptor", ".", "onTouch", "(", "this", ",", "ev", ")", ")", "{", "return", "true", ";", "}", "return", "super", ".", "dispatchTouchEvent", "(", "ev", ")", ";", "}", "@", "Override", "public", "boolean", "onTouchEvent", "(", "MotionEvent", "event", ")", "{", "final", "int", "x", "=", "(", "int", ")", "event", ".", "getX", "(", ")", ";", "final", "int", "y", "=", "(", "int", ")", "event", ".", "getY", "(", ")", ";", "if", "(", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "&&", "(", "(", "x", "<", "0", ")", "||", "(", "x", ">=", "getWidth", "(", ")", ")", "||", "(", "y", "<", "0", ")", "||", "(", "y", ">=", "getHeight", "(", ")", ")", ")", ")", "{", "dismiss", "(", ")", ";", "return", "true", ";", "}", "else", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_OUTSIDE", ")", "{", "dismiss", "(", ")", ";", "return", "true", ";", "}", "else", "{", "return", "super", ".", "onTouchEvent", "(", "event", ")", ";", "}", "}", "}", "}", "</s>" ]
8,519
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "java", ".", "util", ".", "Timer", ";", "import", "java", ".", "util", ".", "TimerTask", ";", "import", "android", ".", "app", ".", "Activity", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "res", ".", "Configuration", ";", "import", "android", ".", "content", ".", "res", ".", "Resources", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "public", "class", "AbstractActivity", "extends", "Activity", "{", "protected", "SharedPreferences", "preferences", ";", "private", "int", "highestTaskId", "=", "0", ";", "private", "MyHashMap", "tasks", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "private", "static", "class", "MyHashMap", "extends", "HashMap", "<", "Class", "<", "?", "extends", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", ",", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", ">", "{", "}", "protected", "void", "cancelTasksOfThisClass", "(", "Class", "<", "?", "extends", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "cls", ")", "{", "for", "(", "Task", "<", "?", ",", "?", ",", "?", ">", "task", ":", "tasks", ".", "get", "(", "cls", ")", ")", "{", "if", "(", "!", "task", ".", "isCancelled", "(", ")", ")", "task", ".", "cancel", "(", "true", ")", ";", "}", "tasks", ".", "get", "(", "cls", ")", ";", "}", "protected", "Object", "getNonConfigurationData", "(", "String", "key", ")", "{", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "HashMap", "<", "String", ",", "Object", ">", "map", "=", "(", "HashMap", "<", "String", ",", "Object", ">", ")", "getLastNonConfigurationInstance", "(", ")", ";", "return", "map", "==", "null", "?", "null", ":", "map", ".", "get", "(", "key", ")", ";", "}", "public", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "getTasksByClass", "(", "Class", "<", "?", "extends", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "cls", ")", "{", "if", "(", "tasks", ".", "get", "(", "cls", ")", "==", "null", ")", "{", "tasks", ".", "put", "(", "cls", ",", "new", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "(", ")", ")", ";", "}", "return", "tasks", ".", "get", "(", "cls", ")", ";", "}", "public", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", "getTaskById", "(", "int", "id", ")", "{", "for", "(", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "list", ":", "tasks", ".", "values", "(", ")", ")", "{", "for", "(", "Task", "<", "?", ",", "?", ",", "?", ">", "task", ":", "list", ")", "{", "if", "(", "task", ".", "getId", "(", ")", "==", "id", ")", "return", "task", ";", "}", "}", "return", "null", ";", "}", "public", "static", "void", "handleCustomLocale", "(", "SharedPreferences", "preferences", ",", "Resources", "resources", ")", "{", "if", "(", "!", "preferences", ".", "contains", "(", "Common", ".", "PREF_LANGUAGE", ")", ")", "return", ";", "String", "langCode", "=", "preferences", ".", "getString", "(", "Common", ".", "PREF_LANGUAGE", ",", "\"\"", ")", ";", "if", "(", "!", "langCode", ".", "equals", "(", "\"\"", ")", ")", "{", "Locale", "locale", "=", "new", "Locale", "(", "langCode", ")", ";", "Configuration", "config", "=", "resources", ".", "getConfiguration", "(", ")", ";", "config", ".", "locale", "=", "locale", ";", "resources", ".", "updateConfiguration", "(", "config", ",", "resources", ".", "getDisplayMetrics", "(", ")", ")", ";", "Locale", ".", "setDefault", "(", "locale", ")", ";", "}", "}", "public", "static", "void", "localeWorkaround", "(", "final", "SharedPreferences", "preferences", ",", "final", "Resources", "resources", ")", "{", "Timer", "timer", "=", "new", "Timer", "(", ")", ";", "class", "SetLocaleTask", "extends", "TimerTask", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "handleCustomLocale", "(", "preferences", ",", "resources", ")", ";", "}", "}", "timer", ".", "schedule", "(", "new", "SetLocaleTask", "(", ")", ",", "200", ")", ";", "timer", ".", "schedule", "(", "new", "SetLocaleTask", "(", ")", ",", "500", ")", ";", "}", "@", "Override", "protected", "void", "onDestroy", "(", ")", "{", "super", ".", "onDestroy", "(", ")", ";", "for", "(", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "list", ":", "tasks", ".", "values", "(", ")", ")", "{", "for", "(", "Task", "<", "?", ",", "?", ",", "?", ">", "task", ":", "list", ")", "{", "task", ".", "detachActivity", "(", ")", ";", "}", "}", "}", "protected", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "handleCustomLocale", "(", "preferences", ",", "getResources", "(", ")", ")", ";", "tasks", "=", "(", "MyHashMap", ")", "getNonConfigurationData", "(", "\"tasks\"", ")", ";", "if", "(", "tasks", "==", "null", ")", "tasks", "=", "new", "MyHashMap", "(", ")", ";", "}", "protected", "void", "onSaveNonConfigurationData", "(", "HashMap", "<", "String", ",", "Object", ">", "nonConfigurationData", ")", "{", "}", "protected", "void", "onPostCreate", "(", "Bundle", "savedInstanceState", ")", "{", "for", "(", "ArrayList", "<", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", ">", "list", ":", "tasks", ".", "values", "(", ")", ")", "{", "for", "(", "Task", "<", "?", ",", "?", ",", "?", ">", "task", ":", "list", ")", "{", "task", ".", "attachActivity", "(", "this", ")", ";", "}", "}", "localeWorkaround", "(", "preferences", ",", "getResources", "(", ")", ")", ";", "super", ".", "onPostCreate", "(", "savedInstanceState", ")", ";", "}", "@", "Override", "public", "Object", "onRetainNonConfigurationInstance", "(", ")", "{", "HashMap", "<", "String", ",", "Object", ">", "nonConfigurationInstance", "=", "new", "HashMap", "<", "String", ",", "Object", ">", "(", ")", ";", "nonConfigurationInstance", ".", "put", "(", "\"tasks\"", ",", "tasks", ")", ";", "onSaveNonConfigurationData", "(", "nonConfigurationInstance", ")", ";", "return", "nonConfigurationInstance", ";", "}", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "void", "onTaskCompleted", "(", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", "task", ")", "{", "getTasksByClass", "(", "(", "Class", "<", "?", "extends", "Task", "<", "AbstractActivity", ",", "?", ",", "?", ">", ">", ")", "task", ".", "getClass", "(", ")", ")", ".", "remove", "(", "task", ")", ";", "}", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "protected", "int", "startTask", "(", "Task", "<", "?", "extends", "AbstractActivity", ",", "?", ",", "?", ">", "task", ")", "{", "getTasksByClass", "(", "(", "Class", "<", "?", "extends", "Task", "<", "AbstractActivity", ",", "?", ",", "?", ">", ">", ")", "task", ".", "getClass", "(", ")", ")", ".", "add", "(", "task", ")", ";", "task", ".", "setId", "(", "highestTaskId", ")", ";", "highestTaskId", "++", ";", "task", ".", "attachActivity", "(", "this", ")", ";", "task", ".", "execute", "(", ")", ";", "return", "task", ".", "getId", "(", ")", ";", "}", "}", "</s>" ]
8,520
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "BufferedReader", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "java", ".", "io", ".", "InputStreamReader", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "org", ".", "json", ".", "JSONArray", ";", "import", "org", ".", "json", ".", "JSONException", ";", "import", "org", ".", "json", ".", "JSONObject", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Areas", ".", "Area", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "Areas", "extends", "ArrayList", "<", "Area", ">", "{", "private", "static", "Areas", "areas", "=", "null", ";", "public", "static", "class", "Map", "implements", "Serializable", "{", "private", "String", "id", ";", "private", "String", "name", ";", "public", "Map", "(", "String", "id", ",", "String", "name", ")", "{", "this", ".", "id", "=", "id", ";", "this", ".", "name", "=", "name", ";", "}", "public", "String", "getId", "(", ")", "{", "return", "id", ";", "}", "public", "String", "getName", "(", ")", "{", "return", "name", ";", "}", "}", "public", "static", "class", "Area", "implements", "Serializable", "{", "public", "double", "latitude", ";", "public", "double", "longitude", ";", "public", "int", "radius", ";", "public", "Map", "[", "]", "maps", ";", "public", "String", "className", ";", "public", "String", "id", ";", "public", "String", "name", ";", "}", "private", "Areas", "(", "Context", "context", ")", "{", "BufferedReader", "br", "=", "null", ";", "try", "{", "InputStream", "is", "=", "context", ".", "getResources", "(", ")", ".", "openRawResource", "(", "R", ".", "raw", ".", "areas", ")", ";", "br", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "is", ")", ")", ";", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", ")", ";", "String", "line", ";", "while", "(", "(", "line", "=", "br", ".", "readLine", "(", ")", ")", "!=", "null", ")", "{", "sb", ".", "append", "(", "line", ")", ";", "}", "JSONArray", "json", "=", "new", "JSONArray", "(", "sb", ".", "toString", "(", ")", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "json", ".", "length", "(", ")", ";", "i", "++", ")", "{", "Area", "area", "=", "new", "Area", "(", ")", ";", "add", "(", "area", ")", ";", "JSONObject", "jsonArea", "=", "(", "JSONObject", ")", "json", ".", "get", "(", "i", ")", ";", "area", ".", "name", "=", "getString", "(", "context", ",", "(", "String", ")", "jsonArea", ".", "get", "(", "\"name\"", ")", ")", ";", "area", ".", "className", "=", "(", "String", ")", "jsonArea", ".", "get", "(", "\"class\"", ")", ";", "area", ".", "id", "=", "(", "String", ")", "jsonArea", ".", "get", "(", "\"id\"", ")", ";", "area", ".", "latitude", "=", "(", "Double", ")", "jsonArea", ".", "get", "(", "\"lat\"", ")", ";", "area", ".", "longitude", "=", "(", "Double", ")", "jsonArea", ".", "get", "(", "\"lon\"", ")", ";", "area", ".", "radius", "=", "(", "Integer", ")", "jsonArea", ".", "get", "(", "\"radius\"", ")", ";", "JSONArray", "jsonMaps", "=", "(", "JSONArray", ")", "jsonArea", ".", "get", "(", "\"maps\"", ")", ";", "area", ".", "maps", "=", "new", "Map", "[", "jsonMaps", ".", "length", "(", ")", "]", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "jsonMaps", ".", "length", "(", ")", ";", "j", "++", ")", "{", "JSONObject", "jsonMap", "=", "(", "JSONObject", ")", "jsonMaps", ".", "get", "(", "j", ")", ";", "area", ".", "maps", "[", "j", "]", "=", "new", "Map", "(", "jsonMap", ".", "getString", "(", "\"id\"", ")", ",", "getString", "(", "context", ",", "jsonMap", ".", "getString", "(", "\"name\"", ")", ")", ")", ";", "}", "}", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "catch", "(", "JSONException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "if", "(", "br", "!=", "null", ")", "IOUtils", ".", "close", "(", "br", ")", ";", "}", "}", "public", "Area", "findByClass", "(", "String", "cls", ")", "{", "for", "(", "Area", "area", ":", "this", ")", "{", "if", "(", "cls", ".", "equals", "(", "area", ".", "className", ")", ")", "return", "area", ";", "}", "return", "null", ";", "}", "public", "Area", "findById", "(", "String", "id", ")", "{", "for", "(", "Area", "area", ":", "this", ")", "{", "if", "(", "id", ".", "equals", "(", "area", ".", "id", ")", ")", "return", "area", ";", "}", "return", "null", ";", "}", "public", "static", "Areas", "getInstance", "(", "Context", "context", ")", "{", "if", "(", "areas", "==", "null", ")", "areas", "=", "new", "Areas", "(", "context", ")", ";", "return", "areas", ";", "}", "private", "String", "getString", "(", "Context", "c", ",", "String", "s", ")", "{", "if", "(", "s", ".", "startsWith", "(", "\"@\"", ")", ")", "{", "int", "resource", "=", "c", ".", "getResources", "(", ")", ".", "getIdentifier", "(", "s", ".", "substring", "(", "1", ")", ",", "\"string\"", ",", "\"\"", ")", ";", "return", "c", ".", "getResources", "(", ")", ".", "getString", "(", "resource", ")", ";", "}", "else", "{", "return", "s", ";", "}", "}", "public", "static", "void", "reset", "(", ")", "{", "areas", "=", "null", ";", "}", "}", "</s>" ]
8,521
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "os", ".", "Handler", ";", "import", "android", ".", "view", ".", "GestureDetector", ";", "import", "android", ".", "view", ".", "GestureDetector", ".", "OnDoubleTapListener", ";", "import", "android", ".", "view", ".", "GestureDetector", ".", "OnGestureListener", ";", "import", "android", ".", "view", ".", "MotionEvent", ";", "import", "com", ".", "google", ".", "android", ".", "maps", ".", "GeoPoint", ";", "import", "com", ".", "google", ".", "android", ".", "maps", ".", "ItemizedOverlay", ";", "import", "com", ".", "google", ".", "android", ".", "maps", ".", "MapView", ";", "import", "com", ".", "google", ".", "android", ".", "maps", ".", "MyLocationOverlay", ";", "import", "com", ".", "google", ".", "android", ".", "maps", ".", "OverlayItem", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Areas", ".", "Area", ";", "public", "class", "GoogleMapView", "extends", "MapView", "{", "private", "static", "final", "int", "MIN_ZOOM_TO_SHOW_PINS", "=", "15", ";", "private", "GeoPoint", "popupGeoPoint", ";", "private", "Handler", "handler", "=", "new", "Handler", "(", ")", ";", "private", "MapActivity", "activity", ";", "private", "MyLocationOverlay", "myLocationOverlay", ";", "private", "Stops", "stops", ";", "private", "StopsOverlay", "stopsOverlay", ";", "public", "GoogleMapView", "(", "MapActivity", "activity", ",", "String", "apiKey", ",", "Area", "area", ")", "{", "super", "(", "activity", ",", "apiKey", ")", ";", "this", ".", "activity", "=", "activity", ";", "stops", "=", "Stops", ".", "getInstance", "(", "getContext", "(", ")", ",", "area", ".", "className", ")", ";", "}", "private", "Drawable", "boundPin", "(", "Drawable", "pin", ")", "{", "int", "width", "=", "pin", ".", "getIntrinsicWidth", "(", ")", ";", "int", "height", "=", "pin", ".", "getIntrinsicHeight", "(", ")", ";", "int", "left", "=", "-", "width", "*", "11", "/", "38", ";", "int", "top", "=", "-", "height", "*", "43", "/", "48", ";", "pin", ".", "setBounds", "(", "left", ",", "top", ",", "left", "+", "width", ",", "top", "+", "height", ")", ";", "return", "pin", ";", "}", "private", "GeoPoint", "getGeoPoint", "(", "double", "latitude", ",", "double", "longitude", ")", "{", "return", "(", "new", "GeoPoint", "(", "(", "int", ")", "(", "latitude", "*", "1000000.0", ")", ",", "(", "int", ")", "(", "longitude", "*", "1000000.0", ")", ")", ")", ";", "}", "public", "void", "pause", "(", ")", "{", "myLocationOverlay", ".", "disableMyLocation", "(", ")", ";", "}", "public", "void", "resume", "(", ")", "{", "myLocationOverlay", ".", "enableMyLocation", "(", ")", ";", "}", "public", "void", "setZoom", "(", "int", "zoomLevel", ")", "{", "setClickable", "(", "true", ")", ";", "getController", "(", ")", ".", "setZoom", "(", "zoomLevel", ")", ";", "myLocationOverlay", "=", "new", "MyLocationOverlay", "(", "getContext", "(", ")", ",", "this", ")", ";", "myLocationOverlay", ".", "runOnFirstFix", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "getController", "(", ")", ".", "animateTo", "(", "myLocationOverlay", ".", "getMyLocation", "(", ")", ")", ";", "}", "}", ")", ";", "getOverlays", "(", ")", ".", "add", "(", "myLocationOverlay", ")", ";", "stopsOverlay", "=", "new", "StopsOverlay", "(", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "pin", ")", ")", ";", "getOverlays", "(", ")", ".", "add", "(", "stopsOverlay", ")", ";", "}", "public", "void", "zoomIn", "(", ")", "{", "getController", "(", ")", ".", "zoomIn", "(", ")", ";", "}", "public", "void", "zoomOut", "(", ")", "{", "getController", "(", ")", ".", "zoomOut", "(", ")", ";", "}", "private", "class", "StopsOverlay", "extends", "ItemizedOverlay", "<", "OverlayItem", ">", "implements", "OnGestureListener", ",", "OnDoubleTapListener", ",", "Runnable", "{", "private", "double", "rectLeft", ";", "private", "double", "rectRight", ";", "private", "double", "rectTop", ";", "private", "double", "rectBottom", ";", "private", "ArrayList", "<", "OverlayItem", ">", "items", "=", "new", "ArrayList", "<", "OverlayItem", ">", "(", ")", ";", "private", "GestureDetector", "gestureDetector", ";", "private", "Thread", "thread", ";", "public", "StopsOverlay", "(", "Drawable", "defaultMarker", ")", "{", "super", "(", "boundPin", "(", "defaultMarker", ")", ")", ";", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "gestureDetector", "=", "new", "GestureDetector", "(", "StopsOverlay", ".", "this", ")", ";", "gestureDetector", ".", "setOnDoubleTapListener", "(", "StopsOverlay", ".", "this", ")", ";", "}", "}", ")", ";", "double", "latitudeSpan", "=", "(", "double", ")", "getLatitudeSpan", "(", ")", "/", "1000000.0", ";", "double", "longitudeSpan", "=", "(", "double", ")", "getLongitudeSpan", "(", ")", "/", "1000000.0", ";", "rectLeft", "=", "(", "double", ")", "getMapCenter", "(", ")", ".", "getLongitudeE6", "(", ")", "/", "1000000.0", "-", "1.5", "*", "longitudeSpan", ";", "rectRight", "=", "(", "double", ")", "getMapCenter", "(", ")", ".", "getLongitudeE6", "(", ")", "/", "1000000.0", "+", "1.5", "*", "longitudeSpan", ";", "rectTop", "=", "(", "double", ")", "getMapCenter", "(", ")", ".", "getLatitudeE6", "(", ")", "/", "1000000.0", "+", "1.5", "*", "latitudeSpan", ";", "rectBottom", "=", "(", "double", ")", "getMapCenter", "(", ")", ".", "getLatitudeE6", "(", ")", "/", "1000000.0", "-", "1.5", "*", "latitudeSpan", ";", "ArrayList", "<", "Integer", ">", "stopIds", "=", "stops", ".", "getStopIdsInArea", "(", "rectBottom", ",", "rectTop", ",", "rectLeft", ",", "rectRight", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stopIds", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "stopIds", ".", "get", "(", "i", ")", ";", "double", "lat", "=", "stops", ".", "latitudes", "[", "index", "]", ";", "double", "lon", "=", "stops", ".", "longitudes", "[", "index", "]", ";", "OverlayItem", "item", "=", "new", "OverlayItem", "(", "getGeoPoint", "(", "lat", ",", "lon", ")", ",", "stops", ".", "names", "[", "index", "]", ",", "\"\"", ")", ";", "items", ".", "add", "(", "item", ")", ";", "}", "populate", "(", ")", ";", "}", "@", "Override", "protected", "OverlayItem", "createItem", "(", "int", "i", ")", "{", "return", "items", ".", "get", "(", "i", ")", ";", "}", "@", "Override", "public", "void", "draw", "(", "android", ".", "graphics", ".", "Canvas", "canvas", ",", "MapView", "mapView", ",", "boolean", "shadow", ")", "{", "activity", ".", "setZoomInEnabled", "(", "getZoomLevel", "(", ")", "!=", "getMaxZoomLevel", "(", ")", ")", ";", "activity", ".", "setZoomOutEnabled", "(", "getZoomLevel", "(", ")", "!=", "1", ")", ";", "if", "(", "!", "shadow", "&&", "mapView", ".", "getZoomLevel", "(", ")", ">=", "MIN_ZOOM_TO_SHOW_PINS", ")", "{", "super", ".", "draw", "(", "canvas", ",", "mapView", ",", "shadow", ")", ";", "if", "(", "activity", ".", "isPopupVisible", "(", ")", ")", "{", "activity", ".", "updatePopup", "(", "getProjection", "(", ")", ".", "toPixels", "(", "popupGeoPoint", ",", "null", ")", ")", ";", "}", "double", "latitudeSpanHalf", "=", "(", "double", ")", "mapView", ".", "getLatitudeSpan", "(", ")", "/", "1000000.0", "*", "0.5", ";", "double", "longitudeSpanHalf", "=", "(", "double", ")", "mapView", ".", "getLongitudeSpan", "(", ")", "/", "1000000.0", "*", "0.5", ";", "double", "viewportLeft", "=", "(", "double", ")", "mapView", ".", "getMapCenter", "(", ")", ".", "getLongitudeE6", "(", ")", "/", "1000000.0", "-", "longitudeSpanHalf", ";", "double", "viewportRight", "=", "(", "double", ")", "mapView", ".", "getMapCenter", "(", ")", ".", "getLongitudeE6", "(", ")", "/", "1000000.0", "+", "longitudeSpanHalf", ";", "double", "viewportTop", "=", "(", "double", ")", "mapView", ".", "getMapCenter", "(", ")", ".", "getLatitudeE6", "(", ")", "/", "1000000.0", "+", "latitudeSpanHalf", ";", "double", "viewportBottom", "=", "(", "double", ")", "mapView", ".", "getMapCenter", "(", ")", ".", "getLatitudeE6", "(", ")", "/", "1000000.0", "-", "latitudeSpanHalf", ";", "if", "(", "rectLeft", ">", "viewportLeft", "||", "rectRight", "<", "viewportRight", "||", "rectTop", "<", "viewportTop", "||", "rectBottom", ">", "viewportBottom", ")", "{", "if", "(", "thread", "==", "null", "||", "!", "thread", ".", "isAlive", "(", ")", ")", "{", "thread", "=", "new", "Thread", "(", "this", ")", ";", "thread", ".", "start", "(", ")", ";", "}", "}", "}", "}", "@", "Override", "public", "boolean", "onTouchEvent", "(", "MotionEvent", "event", ",", "MapView", "mapView", ")", "{", "if", "(", "gestureDetector", "==", "null", ")", "return", "false", ";", "else", "return", "gestureDetector", ".", "onTouchEvent", "(", "event", ")", ";", "}", "@", "Override", "protected", "boolean", "onTap", "(", "int", "i", ")", "{", "if", "(", "activity", ".", "isPopupVisible", "(", ")", ")", "{", "activity", ".", "hidePopup", "(", ")", ";", "}", "else", "if", "(", "getZoomLevel", "(", ")", ">=", "MIN_ZOOM_TO_SHOW_PINS", ")", "{", "popupGeoPoint", "=", "getItem", "(", "i", ")", ".", "getPoint", "(", ")", ";", "activity", ".", "showPopup", "(", "getItem", "(", "i", ")", ".", "getTitle", "(", ")", ",", "getProjection", "(", ")", ".", "toPixels", "(", "popupGeoPoint", ",", "null", ")", ")", ";", "}", "return", "true", ";", "}", "@", "Override", "public", "int", "size", "(", ")", "{", "return", "items", ".", "size", "(", ")", ";", "}", "@", "Override", "public", "boolean", "onDown", "(", "MotionEvent", "e", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "boolean", "onFling", "(", "MotionEvent", "e1", ",", "MotionEvent", "e2", ",", "float", "velocityX", ",", "float", "velocityY", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "void", "onLongPress", "(", "MotionEvent", "e", ")", "{", "}", "@", "Override", "public", "boolean", "onScroll", "(", "MotionEvent", "e1", ",", "MotionEvent", "e2", ",", "float", "distanceX", ",", "float", "distanceY", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "void", "onShowPress", "(", "MotionEvent", "e", ")", "{", "}", "@", "Override", "public", "boolean", "onSingleTapUp", "(", "MotionEvent", "e", ")", "{", "activity", ".", "hidePopup", "(", ")", ";", "return", "false", ";", "}", "@", "Override", "public", "boolean", "onDoubleTap", "(", "MotionEvent", "e", ")", "{", "getController", "(", ")", ".", "zoomInFixing", "(", "(", "int", ")", "e", ".", "getX", "(", ")", ",", "(", "int", ")", "e", ".", "getY", "(", ")", ")", ";", "return", "true", ";", "}", "@", "Override", "public", "boolean", "onDoubleTapEvent", "(", "MotionEvent", "e", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "boolean", "onSingleTapConfirmed", "(", "MotionEvent", "e", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "void", "run", "(", ")", "{", "final", "StopsOverlay", "newStopsOverlay", "=", "new", "StopsOverlay", "(", "getResources", "(", ")", ".", "getDrawable", "(", "R", ".", "drawable", ".", "pin", ")", ")", ";", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "getOverlays", "(", ")", ".", "add", "(", "newStopsOverlay", ")", ";", "getOverlays", "(", ")", ".", "remove", "(", "stopsOverlay", ")", ";", "stopsOverlay", "=", "newStopsOverlay", ";", "invalidate", "(", ")", ";", "}", "}", ")", ";", "}", "}", "}", "</s>" ]
8,522
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "java", ".", "util", ".", "GregorianCalendar", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "view", ".", "View", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "abstract", "class", "AbstractJourney", "implements", "Serializable", "{", "public", "int", "durationInMinutes", ";", "public", "GregorianCalendar", "date", ";", "public", "abstract", "Calendar", "getArrivalTime", "(", ")", ";", "public", "abstract", "String", "getCalendarEventTitle", "(", "Context", "context", ")", ";", "public", "abstract", "Calendar", "getDepartureTime", "(", ")", ";", "public", "abstract", "String", "getNotificationContent", "(", ")", ";", "public", "abstract", "View", "inflateView", "(", "AbstractActivity", "activity", ",", "boolean", "detailed", ")", ";", "public", "abstract", "String", "toHumanReadableString", "(", "boolean", "withoutDiacritics", ")", ";", "public", "abstract", "void", "update", "(", "AbstractActivity", "activity", ",", "View", "journeyView", ")", ";", "}", "</s>" ]
8,523
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "text", ".", "Collator", ";", "import", "java", ".", "text", ".", "ParseException", ";", "import", "java", ".", "text", ".", "RuleBasedCollator", ";", "import", "java", ".", "util", ".", "Comparator", ";", "public", "class", "CzechComparator", "implements", "Comparator", "<", "String", ">", "{", "private", "static", "final", "String", "RULES", "=", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", ";", "private", "RuleBasedCollator", "comparator", ";", "public", "CzechComparator", "(", ")", "{", "try", "{", "comparator", "=", "new", "RuleBasedCollator", "(", "RULES", ")", ";", "comparator", ".", "setStrength", "(", "Collator", ".", "IDENTICAL", ")", ";", "}", "catch", "(", "ParseException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "public", "int", "compare", "(", "String", "s1", ",", "String", "s2", ")", "{", "return", "comparator", ".", "compare", "(", "s1", ",", "s2", ")", ";", "}", "}", "</s>" ]
8,524
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Arrays", ";", "import", "java", ".", "util", ".", "concurrent", ".", "Semaphore", ";", "import", "android", ".", "content", ".", "ContentValues", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "database", ".", "Cursor", ";", "import", "android", ".", "database", ".", "sqlite", ".", "SQLiteDatabase", ";", "import", "android", ".", "database", ".", "sqlite", ".", "SQLiteOpenHelper", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Favourites", ".", "Favourite", ";", "public", "class", "DatabaseAdapter", "{", "private", "static", "final", "int", "DATABASE_VERSION", "=", "9", ";", "private", "static", "final", "String", "AREAS_AREA", "=", "\"area\"", ";", "private", "static", "final", "String", "AREAS_SEARCHES_COUNT", "=", "\"count\"", ";", "private", "static", "final", "String", "AREAS_DEPARTURES_COUNT", "=", "\"\"", ";", "private", "static", "final", "String", "FAVS_ID", "=", "\"id\"", ";", "private", "static", "final", "String", "FAVS_AREA", "=", "\"area\"", ";", "private", "static", "final", "String", "FAVS_ARRIVAL", "=", "\"arrival\"", ";", "private", "static", "final", "String", "FAVS_DEPARTURE", "=", "\"departure\"", ";", "private", "static", "final", "String", "FAVS_SWAPPED", "=", "\"swapped\"", ";", "private", "static", "final", "String", "FAVS_ORDER", "=", "\"position\"", ";", "private", "static", "final", "String", "SEARCHES_AREA", "=", "\"area\"", ";", "private", "static", "final", "String", "SEARCHES_COUNT", "=", "\"count\"", ";", "private", "static", "final", "String", "SEARCHES_ID", "=", "\"id\"", ";", "private", "static", "final", "String", "SEARCHES_FROM", "=", "\"from_stop\"", ";", "private", "static", "final", "String", "SEARCHES_TO", "=", "\"to_stop\"", ";", "private", "static", "final", "String", "STOPS_AREA", "=", "\"area\"", ";", "private", "static", "final", "String", "STOPS_DEPARTURES", "=", "\"departures\"", ";", "private", "static", "final", "String", "STOPS_FROM_SEARCHES", "=", "\"\"", ";", "private", "static", "final", "String", "STOPS_LAST_FROM", "=", "\"last_from\"", ";", "private", "static", "final", "String", "STOPS_LAST_TO", "=", "\"last_to\"", ";", "private", "static", "final", "String", "STOPS_LAST_DEPARTURE", "=", "\"\"", ";", "private", "static", "final", "String", "STOPS_STOP", "=", "\"stop_name\"", ";", "private", "static", "final", "String", "STOPS_TO_SEARCHES", "=", "\"to_searches\"", ";", "private", "static", "final", "String", "CREATE_AREAS_TABLE", "=", "\"\"", "+", "\"\"", ";", "private", "static", "final", "String", "CREATE_FAVS_TABLE", "=", "\"\"", "+", "\"\"", "+", "\"\"", ";", "private", "static", "final", "String", "CREATE_SEARCHES_TABLE", "=", "\"\"", "+", "\"\"", "+", "\"", "NOT", "NULL);\"", ";", "private", "static", "final", "String", "CREATE_STOPS_TABLE", "=", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", ";", "private", "static", "final", "String", "DATABASE_NAME", "=", "\"pubtran\"", ";", "private", "static", "final", "String", "TABLE_AREAS", "=", "\"areas\"", ";", "private", "static", "final", "String", "TABLE_FAVS", "=", "\"favs\"", ";", "private", "static", "final", "String", "TABLE_SEARCHES", "=", "\"searches\"", ";", "private", "static", "final", "String", "TABLE_STOPS", "=", "\"stops\"", ";", "private", "static", "Semaphore", "lock", "=", "new", "Semaphore", "(", "1", ",", "true", ")", ";", "private", "final", "Context", "context", ";", "private", "DatabaseHelper", "dbHelper", ";", "private", "SQLiteDatabase", "db", ";", "public", "void", "favouritesAdd", "(", "Favourite", "favourite", ")", "{", "Cursor", "cursor", "=", "db", ".", "rawQuery", "(", "\"\"", "+", "TABLE_FAVS", ",", "null", ")", ";", "cursor", ".", "moveToNext", "(", ")", ";", "int", "tableRows", "=", "cursor", ".", "getInt", "(", "0", ")", ";", "cursor", ".", "close", "(", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "FAVS_AREA", ",", "favourite", ".", "getAreaClass", "(", ")", ")", ";", "values", ".", "put", "(", "FAVS_ARRIVAL", ",", "favourite", ".", "getArrival", "(", ")", ")", ";", "values", ".", "put", "(", "FAVS_DEPARTURE", ",", "favourite", ".", "getDeparture", "(", ")", ")", ";", "values", ".", "put", "(", "FAVS_ORDER", ",", "tableRows", ")", ";", "values", ".", "put", "(", "FAVS_SWAPPED", ",", "favourite", ".", "isSwapped", "(", ")", "?", "1", ":", "0", ")", ";", "db", ".", "insert", "(", "TABLE_FAVS", ",", "\"\"", ",", "values", ")", ";", "}", "public", "ArrayList", "<", "Favourite", ">", "favouritesGetAll", "(", ")", "{", "ArrayList", "<", "Favourite", ">", "favourites", "=", "new", "ArrayList", "<", "Favourite", ">", "(", ")", ";", "String", "[", "]", "columns", "=", "new", "String", "[", "]", "{", "FAVS_AREA", ",", "FAVS_ARRIVAL", ",", "FAVS_DEPARTURE", ",", "FAVS_ORDER", ",", "FAVS_SWAPPED", ",", "FAVS_ID", "}", ";", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_FAVS", ",", "columns", ",", "null", ",", "null", ",", "null", ",", "null", ",", "FAVS_ORDER", ")", ";", "int", "columnArea", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_AREA", ")", ";", "int", "columnArrival", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_ARRIVAL", ")", ";", "int", "columnDeparture", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_DEPARTURE", ")", ";", "int", "columnOrder", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_ORDER", ")", ";", "int", "columnSwapped", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_SWAPPED", ")", ";", "int", "columnId", "=", "cursor", ".", "getColumnIndex", "(", "FAVS_ID", ")", ";", "while", "(", "cursor", ".", "moveToNext", "(", ")", ")", "{", "String", "area", "=", "cursor", ".", "getString", "(", "columnArea", ")", ";", "String", "arrival", "=", "cursor", ".", "getString", "(", "columnArrival", ")", ";", "String", "departure", "=", "cursor", ".", "getString", "(", "columnDeparture", ")", ";", "int", "order", "=", "cursor", ".", "getInt", "(", "columnOrder", ")", ";", "boolean", "swapped", "=", "cursor", ".", "getInt", "(", "columnSwapped", ")", "==", "1", "?", "true", ":", "false", ";", "int", "id", "=", "cursor", ".", "getInt", "(", "columnId", ")", ";", "Favourite", "favourite", "=", "new", "Favourite", "(", "departure", ",", "arrival", ",", "area", ",", "swapped", ",", "id", ",", "order", ")", ";", "favourites", ".", "add", "(", "favourite", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "return", "favourites", ";", "}", "public", "void", "favouritesDelete", "(", "Favourite", "favourite", ")", "{", "db", ".", "delete", "(", "TABLE_FAVS", ",", "FAVS_ID", "+", "\"=\"", "+", "favourite", ".", "getId", "(", ")", ",", "null", ")", ";", "}", "public", "void", "favouritesUpdate", "(", "Favourite", "favourite", ")", "{", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "FAVS_ORDER", ",", "favourite", ".", "getOrder", "(", ")", ")", ";", "db", ".", "update", "(", "TABLE_FAVS", ",", "values", ",", "FAVS_ID", "+", "\"=\"", "+", "favourite", ".", "getId", "(", ")", ",", "null", ")", ";", "}", "public", "void", "closeAndUnlock", "(", ")", "{", "dbHelper", ".", "close", "(", ")", ";", "lock", ".", "release", "(", ")", ";", "}", "public", "DatabaseAdapter", "(", "Context", "context", ")", "{", "this", ".", "context", "=", "context", ";", "}", "private", "int", "[", "]", "getCounts", "(", "String", "area", ")", "{", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_AREAS", ",", "new", "String", "[", "]", "{", "AREAS_SEARCHES_COUNT", ",", "AREAS_DEPARTURES_COUNT", "}", ",", "AREAS_AREA", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "int", "searchesCount", "=", "0", ";", "int", "departuresCount", "=", "0", ";", "if", "(", "cursor", ".", "moveToFirst", "(", ")", ")", "{", "searchesCount", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "AREAS_SEARCHES_COUNT", ")", ")", ";", "departuresCount", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "AREAS_DEPARTURES_COUNT", ")", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "return", "new", "int", "[", "]", "{", "searchesCount", ",", "departuresCount", "}", ";", "}", "public", "void", "loadStops", "(", "Stops", "stops", ")", "{", "int", "[", "]", "counts", "=", "getCounts", "(", "stops", ".", "area", ")", ";", "int", "searchesCount", "=", "counts", "[", "0", "]", ";", "int", "departuresCount", "=", "counts", "[", "1", "]", ";", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_STOPS", ",", "new", "String", "[", "]", "{", "STOPS_STOP", ",", "STOPS_FROM_SEARCHES", ",", "STOPS_TO_SEARCHES", ",", "STOPS_DEPARTURES", ",", "STOPS_LAST_FROM", ",", "STOPS_LAST_TO", ",", "STOPS_LAST_DEPARTURE", "}", ",", "STOPS_AREA", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "int", "columnStop", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_STOP", ")", ";", "int", "columnFromSearches", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_FROM_SEARCHES", ")", ";", "int", "columnToSearches", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_TO_SEARCHES", ")", ";", "int", "columnDepartures", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_DEPARTURES", ")", ";", "int", "columnLastFrom", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_LAST_FROM", ")", ";", "int", "columnLastTo", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_LAST_TO", ")", ";", "int", "columnLastDeparture", "=", "cursor", ".", "getColumnIndex", "(", "STOPS_LAST_DEPARTURE", ")", ";", "while", "(", "cursor", ".", "moveToNext", "(", ")", ")", "{", "String", "stop", "=", "cursor", ".", "getString", "(", "columnStop", ")", ";", "int", "fromSearches", "=", "cursor", ".", "getInt", "(", "columnFromSearches", ")", ";", "int", "departures", "=", "cursor", ".", "getInt", "(", "columnDepartures", ")", ";", "int", "toSearches", "=", "cursor", ".", "getInt", "(", "columnToSearches", ")", ";", "long", "lastFrom", "=", "cursor", ".", "getLong", "(", "columnLastFrom", ")", ";", "long", "lastTo", "=", "cursor", ".", "getLong", "(", "columnLastTo", ")", ";", "long", "lastDeparture", "=", "cursor", ".", "getLong", "(", "columnLastDeparture", ")", ";", "int", "index", "=", "stops", ".", "getIndex", "(", "stop", ")", ";", "if", "(", "index", "<", "0", ")", "{", "removeStop", "(", "stop", ",", "stops", ".", "area", ",", "(", "fromSearches", "+", "toSearches", ")", "/", "2", ",", "departures", ")", ";", "}", "else", "{", "stops", ".", "ranksFrom", "[", "index", "]", "=", "stops", ".", "computeBasicRank", "(", "fromSearches", ",", "searchesCount", ",", "toSearches", ",", "searchesCount", ",", "departures", ",", "departuresCount", ",", "lastFrom", ",", "lastTo", ",", "lastDeparture", ",", "stops", ".", "importances", "[", "index", "]", ",", "Stops", ".", "FROM", ")", ";", "stops", ".", "baseRanksTo", "[", "index", "]", "=", "stops", ".", "computeBasicRank", "(", "fromSearches", ",", "searchesCount", ",", "toSearches", ",", "searchesCount", ",", "departures", ",", "departuresCount", ",", "lastFrom", ",", "lastTo", ",", "lastDeparture", ",", "stops", ".", "importances", "[", "index", "]", ",", "Stops", ".", "TO", ")", ";", "stops", ".", "departureRanks", "[", "index", "]", "=", "stops", ".", "computeBasicRank", "(", "fromSearches", ",", "searchesCount", ",", "toSearches", ",", "searchesCount", ",", "departures", ",", "departuresCount", ",", "lastFrom", ",", "lastTo", ",", "lastDeparture", ",", "stops", ".", "importances", "[", "index", "]", ",", "Stops", ".", "DEPARTURES", ")", ";", "}", "}", "cursor", ".", "close", "(", ")", ";", "}", "public", "DatabaseAdapter", "openAndLock", "(", ")", "{", "lock", ".", "acquireUninterruptibly", "(", ")", ";", "dbHelper", "=", "new", "DatabaseHelper", "(", "context", ")", ";", "db", "=", "dbHelper", ".", "getWritableDatabase", "(", ")", ";", "return", "this", ";", "}", "private", "void", "removeStop", "(", "String", "stop", ",", "String", "area", ",", "int", "searchesCount", ",", "int", "departuresCount", ")", "{", "db", ".", "delete", "(", "TABLE_STOPS", ",", "STOPS_STOP", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "stop", "}", ")", ";", "db", ".", "delete", "(", "TABLE_SEARCHES", ",", "SEARCHES_FROM", "+", "\"=", "?", "OR", "\"", "+", "SEARCHES_TO", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "stop", ",", "stop", "}", ")", ";", "modifyCounts", "(", "area", ",", "-", "searchesCount", ",", "-", "departuresCount", ")", ";", "}", "public", "void", "saveDeparture", "(", "int", "stopId", ",", "Stops", "stops", ")", "{", "long", "time", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "String", "stopName", "=", "stops", ".", "names", "[", "stopId", "]", ";", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_STOPS", ",", "new", "String", "[", "]", "{", "STOPS_DEPARTURES", "}", ",", "STOPS_STOP", "+", "\"", "=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "stopName", ",", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "cursor", ".", "moveToFirst", "(", ")", ")", "{", "int", "departures", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "STOPS_DEPARTURES", ")", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_DEPARTURES", ",", "departures", "+", "1", ")", ";", "values", ".", "put", "(", "STOPS_LAST_DEPARTURE", ",", "time", ")", ";", "db", ".", "update", "(", "TABLE_STOPS", ",", "values", ",", "STOPS_STOP", "+", "\"=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "stopName", ",", "stops", ".", "area", "}", ")", ";", "}", "else", "{", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_STOP", ",", "stopName", ")", ";", "values", ".", "put", "(", "STOPS_AREA", ",", "stops", ".", "area", ")", ";", "values", ".", "put", "(", "STOPS_FROM_SEARCHES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_TO_SEARCHES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_DEPARTURES", ",", "1", ")", ";", "values", ".", "put", "(", "STOPS_LAST_FROM", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_TO", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_DEPARTURE", ",", "time", ")", ";", "db", ".", "insert", "(", "TABLE_STOPS", ",", "\"\"", ",", "values", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "modifyCounts", "(", "stops", ".", "area", ",", "0", ",", "1", ")", ";", "loadStops", "(", "stops", ")", ";", "}", "public", "void", "saveSearch", "(", "String", "from", ",", "String", "to", ",", "Stops", "stops", ")", "{", "long", "time", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "if", "(", "from", ".", "equals", "(", "to", ")", ")", "return", ";", "boolean", "foundFrom", "=", "false", ";", "boolean", "foundTo", "=", "false", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stops", ".", "names", ".", "length", ";", "i", "++", ")", "{", "if", "(", "!", "foundFrom", "&&", "stops", ".", "names", "[", "i", "]", ".", "equals", "(", "from", ")", ")", "{", "foundFrom", "=", "true", ";", "}", "if", "(", "!", "foundTo", "&&", "stops", ".", "names", "[", "i", "]", ".", "equals", "(", "to", ")", ")", "{", "foundTo", "=", "true", ";", "}", "}", "if", "(", "foundFrom", "&&", "foundTo", ")", "{", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_STOPS", ",", "new", "String", "[", "]", "{", "STOPS_FROM_SEARCHES", "}", ",", "STOPS_STOP", "+", "\"", "=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "from", ",", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "cursor", ".", "moveToFirst", "(", ")", ")", "{", "int", "fromSearches", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "STOPS_FROM_SEARCHES", ")", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_FROM_SEARCHES", ",", "fromSearches", "+", "1", ")", ";", "values", ".", "put", "(", "STOPS_LAST_FROM", ",", "time", ")", ";", "db", ".", "update", "(", "TABLE_STOPS", ",", "values", ",", "STOPS_STOP", "+", "\"=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "from", ",", "stops", ".", "area", "}", ")", ";", "}", "else", "{", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_STOP", ",", "from", ")", ";", "values", ".", "put", "(", "STOPS_AREA", ",", "stops", ".", "area", ")", ";", "values", ".", "put", "(", "STOPS_FROM_SEARCHES", ",", "1", ")", ";", "values", ".", "put", "(", "STOPS_TO_SEARCHES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_DEPARTURES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_FROM", ",", "time", ")", ";", "values", ".", "put", "(", "STOPS_LAST_TO", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_DEPARTURE", ",", "0", ")", ";", "db", ".", "insert", "(", "TABLE_STOPS", ",", "\"\"", ",", "values", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "cursor", "=", "db", ".", "query", "(", "TABLE_STOPS", ",", "new", "String", "[", "]", "{", "STOPS_TO_SEARCHES", "}", ",", "STOPS_STOP", "+", "\"", "=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "to", ",", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "cursor", ".", "moveToFirst", "(", ")", ")", "{", "int", "toSearches", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "STOPS_TO_SEARCHES", ")", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_TO_SEARCHES", ",", "toSearches", "+", "1", ")", ";", "values", ".", "put", "(", "STOPS_LAST_TO", ",", "time", ")", ";", "db", ".", "update", "(", "TABLE_STOPS", ",", "values", ",", "STOPS_STOP", "+", "\"=", "?", "AND", "\"", "+", "STOPS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "to", ",", "stops", ".", "area", "}", ")", ";", "}", "else", "{", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "STOPS_STOP", ",", "to", ")", ";", "values", ".", "put", "(", "STOPS_AREA", ",", "stops", ".", "area", ")", ";", "values", ".", "put", "(", "STOPS_FROM_SEARCHES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_TO_SEARCHES", ",", "1", ")", ";", "values", ".", "put", "(", "STOPS_DEPARTURES", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_FROM", ",", "0", ")", ";", "values", ".", "put", "(", "STOPS_LAST_TO", ",", "time", ")", ";", "values", ".", "put", "(", "STOPS_LAST_DEPARTURE", ",", "0", ")", ";", "db", ".", "insert", "(", "TABLE_STOPS", ",", "\"\"", ",", "values", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "modifyCounts", "(", "stops", ".", "area", ",", "1", ",", "0", ")", ";", "loadStops", "(", "stops", ")", ";", "cursor", "=", "db", ".", "query", "(", "TABLE_SEARCHES", ",", "new", "String", "[", "]", "{", "SEARCHES_ID", ",", "SEARCHES_COUNT", "}", ",", "SEARCHES_FROM", "+", "\"=", "?", "AND", "\"", "+", "SEARCHES_TO", "+", "\"=", "?", "AND", "\"", "+", "SEARCHES_AREA", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "from", ",", "to", ",", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "if", "(", "cursor", ".", "getCount", "(", ")", "==", "0", ")", "{", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "SEARCHES_FROM", ",", "from", ")", ";", "values", ".", "put", "(", "SEARCHES_TO", ",", "to", ")", ";", "values", ".", "put", "(", "SEARCHES_AREA", ",", "stops", ".", "area", ")", ";", "values", ".", "put", "(", "SEARCHES_COUNT", ",", "1", ")", ";", "db", ".", "insert", "(", "TABLE_SEARCHES", ",", "null", ",", "values", ")", ";", "}", "else", "if", "(", "cursor", ".", "getCount", "(", ")", "==", "1", ")", "{", "cursor", ".", "moveToFirst", "(", ")", ";", "long", "id", "=", "cursor", ".", "getLong", "(", "cursor", ".", "getColumnIndex", "(", "SEARCHES_ID", ")", ")", ";", "int", "count", "=", "cursor", ".", "getInt", "(", "cursor", ".", "getColumnIndex", "(", "SEARCHES_COUNT", ")", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "SEARCHES_COUNT", ",", "count", "+", "1", ")", ";", "db", ".", "update", "(", "TABLE_SEARCHES", ",", "values", ",", "SEARCHES_ID", "+", "\"=\"", "+", "id", ",", "null", ")", ";", "}", "cursor", ".", "close", "(", ")", ";", "}", "}", "private", "void", "modifyCounts", "(", "String", "area", ",", "int", "searchesCountChange", ",", "int", "departuresCountChange", ")", "{", "int", "[", "]", "counts", "=", "getCounts", "(", "area", ")", ";", "int", "newSearchesCount", "=", "counts", "[", "0", "]", "+", "searchesCountChange", ";", "int", "newDeparturesCount", "=", "counts", "[", "1", "]", "+", "departuresCountChange", ";", "db", ".", "delete", "(", "TABLE_AREAS", ",", "AREAS_AREA", "+", "\"", "=", "?\"", ",", "new", "String", "[", "]", "{", "area", "}", ")", ";", "ContentValues", "values", "=", "new", "ContentValues", "(", ")", ";", "values", ".", "put", "(", "AREAS_AREA", ",", "area", ")", ";", "values", ".", "put", "(", "AREAS_SEARCHES_COUNT", ",", "newSearchesCount", ")", ";", "values", ".", "put", "(", "AREAS_DEPARTURES_COUNT", ",", "newDeparturesCount", ")", ";", "db", ".", "insert", "(", "TABLE_AREAS", ",", "\"\"", ",", "values", ")", ";", "}", "public", "void", "updateToRanks", "(", "String", "from", ",", "Stops", "stops", ")", "{", "Arrays", ".", "fill", "(", "stops", ".", "bonusRanksTo", ",", "0", ")", ";", "int", "index", "=", "stops", ".", "getIndex", "(", "from", ")", ";", "if", "(", "index", ">=", "0", ")", "stops", ".", "bonusRanksTo", "[", "index", "]", "=", "-", "1000", ";", "Cursor", "cursor", "=", "db", ".", "query", "(", "TABLE_SEARCHES", ",", "new", "String", "[", "]", "{", "SEARCHES_COUNT", ",", "SEARCHES_TO", "}", ",", "SEARCHES_FROM", "+", "\"=", "?", "AND", "\"", "+", "SEARCHES_AREA", "+", "\"=", "?\"", ",", "new", "String", "[", "]", "{", "from", ",", "stops", ".", "area", "}", ",", "null", ",", "null", ",", "null", ")", ";", "int", "columnCount", "=", "cursor", ".", "getColumnIndex", "(", "SEARCHES_COUNT", ")", ";", "int", "columnTo", "=", "cursor", ".", "getColumnIndex", "(", "SEARCHES_TO", ")", ";", "while", "(", "cursor", ".", "moveToNext", "(", ")", ")", "{", "String", "to", "=", "cursor", ".", "getString", "(", "columnTo", ")", ";", "int", "count", "=", "cursor", ".", "getInt", "(", "columnCount", ")", ";", "index", "=", "stops", ".", "getIndex", "(", "to", ")", ";", "if", "(", "index", ">=", "0", ")", "{", "stops", ".", "bonusRanksTo", "[", "index", "]", "+=", "100", "+", "count", "*", "10", ";", "}", "}", "cursor", ".", "close", "(", ")", ";", "}", "private", "static", "class", "DatabaseHelper", "extends", "SQLiteOpenHelper", "{", "public", "DatabaseHelper", "(", "Context", "context", ")", "{", "super", "(", "context", ",", "DATABASE_NAME", ",", "null", ",", "DATABASE_VERSION", ")", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "SQLiteDatabase", "db", ")", "{", "db", ".", "execSQL", "(", "CREATE_STOPS_TABLE", ")", ";", "db", ".", "execSQL", "(", "CREATE_SEARCHES_TABLE", ")", ";", "db", ".", "execSQL", "(", "CREATE_AREAS_TABLE", ")", ";", "db", ".", "execSQL", "(", "CREATE_FAVS_TABLE", ")", ";", "}", "@", "Override", "public", "void", "onUpgrade", "(", "SQLiteDatabase", "db", ",", "int", "oldVersion", ",", "int", "newVersion", ")", "{", "if", "(", "oldVersion", "==", "newVersion", ")", "return", ";", "if", "(", "oldVersion", "<=", "6", ")", "{", "db", ".", "execSQL", "(", "\"\"", ")", ";", "db", ".", "execSQL", "(", "\"\"", ")", ";", "db", ".", "execSQL", "(", "\"\"", ")", ";", "onCreate", "(", "db", ")", ";", "}", "else", "if", "(", "oldVersion", "==", "7", ")", "{", "db", ".", "execSQL", "(", "\"\"", ")", ";", "db", ".", "execSQL", "(", "\"\"", ")", ";", "db", ".", "execSQL", "(", "\"\"", ")", ";", "onUpgrade", "(", "db", ",", "8", ",", "newVersion", ")", ";", "}", "else", "if", "(", "oldVersion", "==", "8", ")", "{", "db", ".", "execSQL", "(", "CREATE_FAVS_TABLE", ")", ";", "onUpgrade", "(", "db", ",", "9", ",", "newVersion", ")", ";", "}", "}", "}", "}", "</s>" ]
8,525
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "os", ".", "Handler", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Favourites", ".", "Favourite", ";", "public", "class", "FavouritesActivity", "extends", "AbstractActivity", "{", "private", "static", "final", "int", "DIALOG_FAVOURITE", "=", "0", ";", "private", "static", "final", "int", "REQUEST_RESULTS", "=", "0", ";", "private", "int", "selectedFavourite", ";", "private", "ArrayList", "<", "Favourite", ">", "favourites", ";", "private", "Handler", "handler", "=", "new", "Handler", "(", ")", ";", "private", "LinearLayout", "llHistory", ";", "private", "LinearLayout", "llFavourites", ";", "private", "void", "addFavouriteItem", "(", "final", "Favourite", "favourite", ")", "{", "final", "LinearLayout", "item", "=", "(", "LinearLayout", ")", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "favourite_item", ",", "null", ")", ";", "(", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvFrom", ")", ")", ".", "setText", "(", "favourite", ".", "getDeparture", "(", ")", ")", ";", "(", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvTo", ")", ")", ".", "setText", "(", "favourite", ".", "getArrival", "(", ")", ")", ";", "item", ".", "getChildAt", "(", "0", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "onFavouriteSelected", "(", "favourite", ",", "false", ")", ";", "}", "}", ")", ";", "item", ".", "findViewById", "(", "R", ".", "id", ".", "showPopup", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "llFavourites", ".", "getChildCount", "(", ")", ";", "i", "++", ")", "{", "if", "(", "v", "==", "llFavourites", ".", "getChildAt", "(", "i", ")", ".", "findViewById", "(", "R", ".", "id", ".", "showPopup", ")", ")", "{", "selectedFavourite", "=", "i", ";", "break", ";", "}", "}", "showDialog", "(", "DIALOG_FAVOURITE", ")", ";", "}", "}", ")", ";", "llFavourites", ".", "addView", "(", "item", ")", ";", "}", "private", "void", "addHistoryItem", "(", "AbstractSearchOptions", "options", ",", "final", "String", "fileName", ")", "{", "LinearLayout", "item", "=", "(", "LinearLayout", ")", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "history_item", ",", "null", ")", ";", "(", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvFrom", ")", ")", ".", "setText", "(", "options", ".", "getFrom", "(", ")", ")", ";", "(", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvTo", ")", ")", ".", "setText", "(", "options", ".", "getTo", "(", ")", ")", ";", "String", "searchTime", "=", "formatTime", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "SavedResults", ".", "getTime", "(", "fileName", ")", ")", ";", "(", "(", "TextView", ")", "item", ".", "findViewById", "(", "R", ".", "id", ".", "tvSearchTime", ")", ")", ".", "setText", "(", "searchTime", ")", ";", "item", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "Intent", "intent", "=", "Utils", ".", "getIntent", "(", "getBaseContext", "(", ")", ",", "\"\"", ")", ";", "intent", ".", "putExtra", "(", "\"results\"", ",", "SavedResults", ".", "loadResults", "(", "getApplicationContext", "(", ")", ",", "fileName", ")", ")", ";", "startActivityForResult", "(", "intent", ",", "REQUEST_RESULTS", ")", ";", "}", "}", ")", ";", "llHistory", ".", "addView", "(", "item", ")", ";", "View", "divider", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "favourites_divider", ",", "null", ")", ";", "llHistory", ".", "addView", "(", "divider", ")", ";", "}", "private", "void", "findReturnJourney", "(", ")", "{", "Favourite", "favourite", "=", "favourites", ".", "get", "(", "selectedFavourite", ")", ";", "onFavouriteSelected", "(", "favourite", ",", "true", ")", ";", "}", "private", "String", "formatTime", "(", "long", "milliseconds", ")", "{", "int", "minutes", "=", "(", "int", ")", "(", "milliseconds", "/", "1000", "/", "60", ")", ";", "if", "(", "minutes", "<", "60", ")", "return", "getString", "(", "R", ".", "string", ".", "xMinutesAgo", ",", "minutes", ")", ";", "int", "hours", "=", "minutes", "/", "60", ";", "if", "(", "hours", "==", "1", ")", "return", "getString", "(", "R", ".", "string", ".", "oneHourAgo", ")", ";", "else", "if", "(", "hours", "<", "24", ")", "return", "getString", "(", "R", ".", "string", ".", "xHoursAgo", ",", "hours", ")", ";", "int", "days", "=", "hours", "/", "24", ";", "if", "(", "days", "==", "1", ")", "return", "getString", "(", "R", ".", "string", ".", "oneDayAgo", ")", ";", "else", "return", "getString", "(", "R", ".", "string", ".", "xDaysAgo", ",", "days", ")", ";", "}", "private", "void", "loadFavourites", "(", ")", "{", "favourites", "=", "Favourites", ".", "getAll", "(", "getApplicationContext", "(", ")", ")", ";", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "for", "(", "Favourite", "favourite", ":", "favourites", ")", "{", "addFavouriteItem", "(", "favourite", ")", ";", "}", "}", "}", ")", ";", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "if", "(", "llFavourites", ".", "getChildCount", "(", ")", "==", "0", ")", "{", "findViewById", "(", "R", ".", "id", ".", "favouritesEmpty", ")", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "}", "}", ")", ";", "}", "private", "void", "loadHistory", "(", ")", "{", "ArrayList", "<", "String", ">", "fileNames", "=", "SavedResults", ".", "getFileNames", "(", "getApplicationContext", "(", ")", ")", ";", "for", "(", "final", "String", "fileName", ":", "fileNames", ")", "{", "final", "AbstractSearchOptions", "options", "=", "SavedResults", ".", "loadSearchOptions", "(", "getApplicationContext", "(", ")", ",", "fileName", ")", ";", "if", "(", "options", "==", "null", ")", "break", ";", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "addHistoryItem", "(", "options", ",", "fileName", ")", ";", "}", "}", ")", ";", "}", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "if", "(", "llHistory", ".", "getChildCount", "(", ")", "==", "0", ")", "{", "findViewById", "(", "R", ".", "id", ".", "historyEmpty", ")", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "}", "}", ")", ";", "}", "private", "void", "moveUp", "(", ")", "{", "if", "(", "selectedFavourite", "==", "0", ")", "return", ";", "Favourite", "favourite", "=", "favourites", ".", "get", "(", "selectedFavourite", ")", ";", "View", "v", "=", "llFavourites", ".", "getChildAt", "(", "selectedFavourite", ")", ";", "llFavourites", ".", "removeViewAt", "(", "selectedFavourite", ")", ";", "llFavourites", ".", "addView", "(", "v", ",", "selectedFavourite", "-", "1", ")", ";", "favourites", ".", "get", "(", "selectedFavourite", ")", ".", "setOrder", "(", "selectedFavourite", "-", "1", ")", ";", "favourites", ".", "get", "(", "selectedFavourite", "-", "1", ")", ".", "setOrder", "(", "selectedFavourite", ")", ";", "favourites", ".", "set", "(", "selectedFavourite", ",", "favourites", ".", "get", "(", "selectedFavourite", "-", "1", ")", ")", ";", "favourites", ".", "set", "(", "selectedFavourite", "-", "1", ",", "favourite", ")", ";", "Favourites", ".", "update", "(", "favourites", ".", "get", "(", "selectedFavourite", ")", ",", "this", ")", ";", "Favourites", ".", "update", "(", "favourites", ".", "get", "(", "selectedFavourite", "-", "1", ")", ",", "this", ")", ";", "}", "@", "Override", "protected", "void", "onActivityResult", "(", "int", "requestCode", ",", "int", "resultCode", ",", "Intent", "data", ")", "{", "finish", "(", ")", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "icicle", ")", "{", "super", ".", "onCreate", "(", "icicle", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "favourites", ")", ";", "llFavourites", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llFavourites", ")", ";", "llHistory", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llHistory", ")", ";", "if", "(", "icicle", "!=", "null", ")", "selectedFavourite", "=", "icicle", ".", "getInt", "(", "\"\"", ")", ";", "new", "Thread", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "loadFavourites", "(", ")", ";", "loadHistory", "(", ")", ";", "}", "}", ".", "start", "(", ")", ";", "}", "@", "Override", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setItems", "(", "new", "String", "[", "]", "{", "\"\"", ",", "\"\"", ",", "\"Smazat\"", "}", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "which", ")", "{", "switch", "(", "which", ")", "{", "case", "0", ":", "findReturnJourney", "(", ")", ";", "break", ";", "case", "1", ":", "moveUp", "(", ")", ";", "break", ";", "case", "2", ":", "remove", "(", ")", ";", "break", ";", "}", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "private", "void", "onFavouriteSelected", "(", "Favourite", "favourite", ",", "boolean", "returnJourney", ")", "{", "Intent", "data", "=", "new", "Intent", "(", ")", ";", "data", ".", "putExtra", "(", "\"favourite\"", ",", "favourite", ")", ";", "data", ".", "putExtra", "(", "\"\"", ",", "returnJourney", ")", ";", "setResult", "(", "RESULT_OK", ",", "data", ")", ";", "finish", "(", ")", ";", "}", "@", "Override", "protected", "void", "onSaveInstanceState", "(", "Bundle", "bundle", ")", "{", "bundle", ".", "putInt", "(", "\"\"", ",", "selectedFavourite", ")", ";", "super", ".", "onSaveInstanceState", "(", "bundle", ")", ";", "}", "private", "void", "remove", "(", ")", "{", "Favourite", "favourite", "=", "favourites", ".", "get", "(", "selectedFavourite", ")", ";", "favourites", ".", "remove", "(", "selectedFavourite", ")", ";", "for", "(", "int", "i", "=", "selectedFavourite", ";", "i", "<", "favourites", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "newOrder", "=", "favourites", ".", "get", "(", "i", ")", ".", "getOrder", "(", ")", "-", "1", ";", "favourites", ".", "get", "(", "i", ")", ".", "setOrder", "(", "newOrder", ")", ";", "}", "llFavourites", ".", "removeViewAt", "(", "selectedFavourite", ")", ";", "if", "(", "favourites", ".", "size", "(", ")", "==", "0", ")", "findViewById", "(", "R", ".", "id", ".", "favouritesEmpty", ")", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "Favourites", ".", "delete", "(", "favourite", ",", "this", ")", ";", "for", "(", "int", "i", "=", "selectedFavourite", ";", "i", "<", "favourites", ".", "size", "(", ")", ";", "i", "++", ")", "{", "Favourites", ".", "update", "(", "favourites", ".", "get", "(", "i", ")", ",", "this", ")", ";", "}", "}", "}", "</s>" ]
8,526
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "File", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "app", ".", "Notification", ";", "import", "android", ".", "app", ".", "NotificationManager", ";", "import", "android", ".", "app", ".", "PendingIntent", ";", "import", "android", ".", "app", ".", "Service", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "os", ".", "IBinder", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Areas", ".", "Area", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "IOUtils", ".", "ProgressListener", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "MapDownloaderService", ".", "Progress", ".", "State", ";", "public", "class", "MapDownloaderService", "extends", "Service", "implements", "Runnable", "{", "public", "static", "boolean", "isRunning", "=", "false", ";", "private", "static", "final", "int", "NOTIFICATION_PROGRESS", "=", "0", ";", "private", "static", "final", "int", "NOTIFICATION_ERROR", "=", "1", ";", "private", "boolean", "cancelRequest", "=", "false", ";", "private", "Area", "area", ";", "private", "Progress", "cancelProgress", ";", "private", "Progress", "progress", "=", "new", "Progress", "(", ")", ";", "private", "File", "mapsDir", ";", "private", "Notification", "progressNotification", ";", "private", "NotificationManager", "notificationManager", ";", "private", "Thread", "thread", ";", "private", "void", "cancel", "(", ")", "{", "cancelProgress", "=", "new", "Progress", "(", ")", ";", "cancelRequest", "=", "true", ";", "updateProgress", "(", ")", ";", "}", "public", "static", "void", "cancelErrorNotification", "(", "Context", "context", ")", "{", "NotificationManager", "notificationManager", "=", "(", "NotificationManager", ")", "context", ".", "getSystemService", "(", "Context", ".", "NOTIFICATION_SERVICE", ")", ";", "notificationManager", ".", "cancel", "(", "NOTIFICATION_ERROR", ")", ";", "}", "public", "static", "String", "getBroadcastIntentAction", "(", "Context", "c", ")", "{", "return", "c", ".", "getPackageName", "(", ")", "+", "\"\"", ";", "}", "private", "PendingIntent", "getContentIntent", "(", "boolean", "error", ")", "{", "Intent", "notificationIntent", "=", "new", "Intent", "(", "getApplicationContext", "(", ")", ",", "MapActivity", ".", "class", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"area\"", ",", "area", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"error\"", ",", "error", ")", ";", "notificationIntent", ".", "putExtra", "(", "\"mapId\"", ",", "progress", ".", "getCurrent", "(", ")", ")", ";", "notificationIntent", ".", "setFlags", "(", "Intent", ".", "FLAG_ACTIVITY_SINGLE_TOP", ")", ";", "return", "PendingIntent", ".", "getActivity", "(", "this", ",", "0", ",", "notificationIntent", ",", "PendingIntent", ".", "FLAG_UPDATE_CURRENT", ")", ";", "}", "private", "String", "getMapArchiveUrl", "(", "String", "mapId", ")", "{", "return", "\"\"", "+", "getPackageName", "(", ")", "+", "\"/\"", "+", "mapId", "+", "\".zip\"", ";", "}", "@", "Override", "public", "IBinder", "onBind", "(", "Intent", "intent", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "void", "onCreate", "(", ")", "{", "isRunning", "=", "true", ";", "mapsDir", "=", "IOUtils", ".", "getMapsDirectory", "(", "this", ")", ";", "notificationManager", "=", "(", "NotificationManager", ")", "getSystemService", "(", "Context", ".", "NOTIFICATION_SERVICE", ")", ";", "progressNotification", "=", "new", "Notification", "(", "android", ".", "R", ".", "drawable", ".", "stat_sys_download", ",", "\"\"", ",", "System", ".", "currentTimeMillis", "(", ")", ")", ";", "progressNotification", ".", "flags", "|=", "Notification", ".", "FLAG_ONGOING_EVENT", "|", "Notification", ".", "FLAG_NO_CLEAR", ";", "}", "@", "Override", "public", "void", "onDestroy", "(", ")", "{", "isRunning", "=", "false", ";", "}", "@", "Override", "public", "int", "onStartCommand", "(", "Intent", "intent", ",", "int", "flags", ",", "int", "startId", ")", "{", "area", "=", "(", "Area", ")", "intent", ".", "getSerializableExtra", "(", "\"area\"", ")", ";", "if", "(", "intent", ".", "getBooleanExtra", "(", "\"cancel\"", ",", "false", ")", ")", "{", "cancel", "(", ")", ";", "}", "else", "{", "String", "mapId", "=", "intent", ".", "getStringExtra", "(", "\"mapId\"", ")", ";", "Progress", "progress", "=", "cancelRequest", "?", "cancelProgress", ":", "this", ".", "progress", ";", "progress", ".", "addMap", "(", "mapId", ")", ";", "updateProgress", "(", ")", ";", "if", "(", "thread", "==", "null", ")", "{", "thread", "=", "new", "Thread", "(", "this", ")", ";", "thread", ".", "start", "(", ")", ";", "}", "}", "return", "START_REDELIVER_INTENT", ";", "}", "@", "Override", "public", "void", "run", "(", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "progress", ".", "maps", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "cancelRequest", ")", "break", ";", "String", "mapId", "=", "progress", ".", "getCurrent", "(", ")", ";", "progress", ".", "setState", "(", "State", ".", "STARTING", ")", ";", "updateProgress", "(", ")", ";", "String", "url", "=", "getMapArchiveUrl", "(", "mapId", ")", ";", "File", "archive", "=", "new", "File", "(", "mapsDir", ",", "mapId", "+", "\".zip\"", ")", ";", "boolean", "success", "=", "IOUtils", ".", "downloadFile", "(", "url", ",", "archive", ",", "new", "ProgressListener", "(", ")", "{", "@", "Override", "public", "void", "updateProgress", "(", "int", "completed", ",", "int", "total", ")", "{", "progress", ".", "setState", "(", "State", ".", "DOWNLOADING", ")", ";", "progress", ".", "setBytes", "(", "completed", ",", "total", ")", ";", "MapDownloaderService", ".", "this", ".", "updateProgress", "(", ")", ";", "}", "@", "Override", "public", "boolean", "isCancelRequested", "(", ")", "{", "return", "cancelRequest", ";", "}", "}", ")", ";", "if", "(", "!", "success", ")", "{", "progress", ".", "setState", "(", "State", ".", "ERROR", ")", ";", "break", ";", "}", "else", "{", "progress", ".", "setState", "(", "State", ".", "EXTRACTING", ")", ";", "progress", ".", "setBytes", "(", "0", ",", "1", ")", ";", "updateProgress", "(", ")", ";", "boolean", "unzipSuccess", "=", "IOUtils", ".", "unzip", "(", "archive", ",", "mapsDir", ",", "new", "ProgressListener", "(", ")", "{", "@", "Override", "public", "void", "updateProgress", "(", "int", "completed", ",", "int", "total", ")", "{", "progress", ".", "setBytes", "(", "completed", ",", "total", ")", ";", "MapDownloaderService", ".", "this", ".", "updateProgress", "(", ")", ";", "}", "@", "Override", "public", "boolean", "isCancelRequested", "(", ")", "{", "return", "false", ";", "}", "}", ")", ";", "if", "(", "!", "unzipSuccess", ")", "{", "progress", ".", "setState", "(", "State", ".", "ERROR", ")", ";", "break", ";", "}", "}", "archive", ".", "delete", "(", ")", ";", "progress", ".", "setCurrentFinished", "(", ")", ";", "}", "updateProgress", "(", ")", ";", "if", "(", "cancelRequest", "&&", "cancelProgress", ".", "maps", ".", "size", "(", ")", ">", "0", ")", "{", "cancelRequest", "=", "false", ";", "progress", "=", "cancelProgress", ";", "thread", "=", "new", "Thread", "(", "this", ")", ";", "thread", ".", "start", "(", ")", ";", "}", "else", "{", "thread", "=", "null", ";", "stopSelf", "(", ")", ";", "}", "}", "private", "void", "updateNotification", "(", "Progress", "progress", ")", "{", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "DOING_NOTHING", ")", "{", "notificationManager", ".", "cancel", "(", "NOTIFICATION_PROGRESS", ")", ";", "}", "else", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "ERROR", ")", "{", "notificationManager", ".", "cancel", "(", "NOTIFICATION_PROGRESS", ")", ";", "if", "(", "MapActivity", ".", "isResumed", ")", "return", ";", "Notification", "errorNotification", "=", "new", "Notification", "(", "android", ".", "R", ".", "drawable", ".", "stat_notify_error", ",", "getString", "(", "R", ".", "string", ".", "mapErrorTitle", ")", ",", "System", ".", "currentTimeMillis", "(", ")", ")", ";", "errorNotification", ".", "flags", "|=", "Notification", ".", "FLAG_AUTO_CANCEL", ";", "errorNotification", ".", "setLatestEventInfo", "(", "getApplicationContext", "(", ")", ",", "getString", "(", "R", ".", "string", ".", "mapErrorTitle", ")", ",", "\":-(\"", ",", "getContentIntent", "(", "true", ")", ")", ";", "notificationManager", ".", "notify", "(", "NOTIFICATION_ERROR", ",", "errorNotification", ")", ";", "}", "else", "{", "progressNotification", ".", "setLatestEventInfo", "(", "getApplicationContext", "(", ")", ",", "progress", ".", "getTitle", "(", "this", ",", "true", ")", ",", "progress", ".", "getDescription", "(", "this", ")", ",", "getContentIntent", "(", "false", ")", ")", ";", "notificationManager", ".", "notify", "(", "NOTIFICATION_PROGRESS", ",", "progressNotification", ")", ";", "}", "}", "public", "void", "updateProgress", "(", ")", "{", "Progress", "progress", "=", "cancelRequest", "?", "cancelProgress", ":", "this", ".", "progress", ";", "updateNotification", "(", "progress", ")", ";", "Intent", "intent", "=", "new", "Intent", "(", "getBroadcastIntentAction", "(", "this", ")", ")", ";", "intent", ".", "putExtra", "(", "\"progress\"", ",", "progress", ")", ";", "sendStickyBroadcast", "(", "intent", ")", ";", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "Progress", "implements", "Serializable", "{", "public", "static", "enum", "State", "{", "STARTING", ",", "DOWNLOADING", ",", "EXTRACTING", ",", "ERROR", ",", "DOING_NOTHING", "}", "private", "int", "completedBytes", ";", "private", "int", "currentMap", "=", "0", ";", "private", "int", "totalBytes", ";", "private", "ArrayList", "<", "String", ">", "maps", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "private", "State", "state", "=", "State", ".", "DOING_NOTHING", ";", "public", "void", "addMap", "(", "String", "mapId", ")", "{", "if", "(", "!", "maps", ".", "contains", "(", "mapId", ")", ")", "{", "maps", ".", "add", "(", "mapId", ")", ";", "}", "}", "public", "String", "getCurrent", "(", ")", "{", "return", "maps", ".", "get", "(", "currentMap", ")", ";", "}", "public", "String", "getDescription", "(", "Context", "c", ")", "{", "String", "s", "=", "c", ".", "getString", "(", "R", ".", "string", ".", "mapXoutOfY", ",", "currentMap", "+", "1", ",", "maps", ".", "size", "(", ")", ")", ";", "if", "(", "state", "==", "State", ".", "STARTING", ")", "{", "return", "s", ";", "}", "else", "if", "(", "state", "==", "State", ".", "DOWNLOADING", ")", "{", "return", "s", "+", "c", ".", "getString", "(", "R", ".", "string", ".", "downloadProgressInfo", ",", "getPercent", "(", ")", ",", "getSizeInMB", "(", ")", ")", ";", "}", "else", "if", "(", "state", "==", "State", ".", "EXTRACTING", ")", "{", "return", "s", ";", "}", "else", "if", "(", "state", "==", "State", ".", "ERROR", ")", "{", "return", "\"\"", ";", "}", "else", "{", "return", "\"\"", ";", "}", "}", "public", "int", "getPercent", "(", ")", "{", "return", "(", "int", ")", "(", "completedBytes", "*", "100L", "/", "totalBytes", ")", ";", "}", "public", "float", "getSizeInMB", "(", ")", "{", "return", "totalBytes", "*", "10", "/", "(", "1024", "*", "1024", ")", "/", "10f", ";", "}", "public", "State", "getState", "(", ")", "{", "return", "state", ";", "}", "public", "String", "getTitle", "(", "Context", "c", ",", "boolean", "isNotification", ")", "{", "if", "(", "state", "==", "State", ".", "STARTING", ")", "{", "return", "c", ".", "getString", "(", "R", ".", "string", ".", "startingDownload", ")", ";", "}", "else", "if", "(", "state", "==", "State", ".", "DOWNLOADING", ")", "{", "return", "c", ".", "getString", "(", "R", ".", "string", ".", "downloading", ")", ";", "}", "else", "if", "(", "state", "==", "State", ".", "EXTRACTING", ")", "{", "return", "c", ".", "getString", "(", "R", ".", "string", ".", "installing", ")", ";", "}", "else", "{", "return", "\"\"", ";", "}", "}", "public", "boolean", "isFinished", "(", "String", "mapId", ")", "{", "return", "maps", ".", "subList", "(", "0", ",", "currentMap", ")", ".", "contains", "(", "mapId", ")", ";", "}", "public", "boolean", "isNotYetFinished", "(", "String", "mapId", ")", "{", "if", "(", "state", "==", "State", ".", "ERROR", ")", "return", "false", ";", "return", "maps", ".", "subList", "(", "currentMap", ",", "maps", ".", "size", "(", ")", ")", ".", "contains", "(", "mapId", ")", ";", "}", "public", "void", "setBytes", "(", "int", "completed", ",", "int", "total", ")", "{", "completedBytes", "=", "completed", ";", "totalBytes", "=", "total", ";", "}", "public", "void", "setCurrentFinished", "(", ")", "{", "currentMap", "++", ";", "state", "=", "State", ".", "DOING_NOTHING", ";", "}", "public", "void", "setState", "(", "State", "state", ")", "{", "this", ".", "state", "=", "state", ";", "}", "}", "}", "</s>" ]
8,527
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "os", ".", "AsyncTask", ";", "public", "abstract", "class", "Task", "<", "A", "extends", "AbstractActivity", ",", "Progress", ",", "Result", ">", "extends", "AsyncTask", "<", "Void", ",", "Progress", ",", "Result", ">", "{", "protected", "A", "activity", ";", "private", "int", "id", ";", "protected", "abstract", "Result", "runInBackground", "(", ")", ";", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "void", "attachActivity", "(", "AbstractActivity", "activity", ")", "{", "this", ".", "activity", "=", "(", "A", ")", "activity", ";", "}", "public", "void", "detachActivity", "(", ")", "{", "activity", "=", "null", ";", "}", "public", "int", "getId", "(", ")", "{", "return", "id", ";", "}", "@", "Override", "protected", "void", "onPreExecute", "(", ")", "{", "runBefore", "(", ")", ";", "}", "@", "Override", "protected", "Result", "doInBackground", "(", "Void", "...", "nothing", ")", "{", "return", "runInBackground", "(", ")", ";", "}", "@", "Override", "protected", "void", "onPostExecute", "(", "Result", "result", ")", "{", "if", "(", "activity", "!=", "null", ")", "{", "runAfter", "(", "result", ")", ";", "activity", ".", "onTaskCompleted", "(", "this", ")", ";", "}", "}", "protected", "void", "runBefore", "(", ")", "{", "}", "protected", "void", "runAfter", "(", "Result", "result", ")", "{", "}", "public", "void", "setId", "(", "int", "id", ")", "{", "this", ".", "id", "=", "id", ";", "}", "}", "</s>" ]
8,528
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "OnSharedPreferenceChangeListener", ";", "import", "android", ".", "content", ".", "res", ".", "Configuration", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceActivity", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "widget", ".", "Toast", ";", "public", "class", "PreferencesActivity", "extends", "PreferenceActivity", "implements", "OnSharedPreferenceChangeListener", "{", "private", "SharedPreferences", "preferences", ";", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "addPreferencesFromResource", "(", "R", ".", "xml", ".", "preferences", ")", ";", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "}", "@", "Override", "protected", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "preferences", ".", "unregisterOnSharedPreferenceChangeListener", "(", "this", ")", ";", "}", "@", "Override", "protected", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "preferences", ".", "registerOnSharedPreferenceChangeListener", "(", "this", ")", ";", "}", "@", "Override", "public", "void", "onSharedPreferenceChanged", "(", "SharedPreferences", "sharedPreferences", ",", "String", "key", ")", "{", "if", "(", "key", ".", "equals", "(", "Common", ".", "PREF_LANGUAGE", ")", ")", "{", "String", "langCode", "=", "sharedPreferences", ".", "getString", "(", "key", ",", "\"\"", ")", ";", "Locale", "locale", "=", "Locale", ".", "getDefault", "(", ")", ";", "if", "(", "!", "langCode", ".", "equals", "(", "\"\"", ")", ")", "{", "locale", "=", "new", "Locale", "(", "langCode", ")", ";", "}", "Configuration", "config", "=", "getResources", "(", ")", ".", "getConfiguration", "(", ")", ";", "config", ".", "locale", "=", "locale", ";", "getResources", "(", ")", ".", "updateConfiguration", "(", "config", ",", "getResources", "(", ")", ".", "getDisplayMetrics", "(", ")", ")", ";", "Toast", ".", "makeText", "(", "this", ",", "R", ".", "string", ".", "languageChanged", ",", "Toast", ".", "LENGTH_LONG", ")", ".", "show", "(", ")", ";", "}", "}", "}", "</s>" ]
8,529
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "List", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyFinderException", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "abstract", "class", "AbstractResults", "implements", "Serializable", "{", "protected", "boolean", "loadNextEnabled", "=", "true", ";", "protected", "boolean", "loadPrevEnabled", "=", "true", ";", "protected", "int", "startIndex", "=", "0", ";", "protected", "int", "endIndex", "=", "0", ";", "private", "int", "firstVisibleItem", "=", "0", ";", "private", "long", "whenCreated", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "private", "AbstractSearchOptions", "options", ";", "public", "AbstractResults", "(", "AbstractSearchOptions", "options", ")", "{", "this", ".", "options", "=", "options", ";", "}", "public", "int", "getFirstVisibleItem", "(", ")", "{", "return", "firstVisibleItem", ";", "}", "public", "abstract", "int", "getCachedJourneysCount", "(", "int", "nextOrPrev", ")", ";", "public", "AbstractSearchOptions", "getOptions", "(", ")", "{", "return", "options", ";", "}", "public", "abstract", "List", "<", "?", "extends", "AbstractJourney", ">", "getJourneys", "(", ")", ";", "public", "abstract", "List", "<", "?", "extends", "AbstractJourney", ">", "getVisibleJourneys", "(", ")", ";", "public", "abstract", "boolean", "isLoadNextEnabled", "(", ")", ";", "public", "abstract", "boolean", "isLoadPrevEnabled", "(", ")", ";", "public", "abstract", "AbstractJourney", "loadNext", "(", ")", "throws", "IOException", ",", "JourneyFinderException", ";", "public", "abstract", "AbstractJourney", "loadPrev", "(", ")", "throws", "IOException", ",", "JourneyFinderException", ";", "public", "void", "setJourneyIndexes", "(", "int", "start", ",", "int", "end", ")", "{", "if", "(", "start", ">", "startIndex", ")", "loadPrevEnabled", "=", "true", ";", "if", "(", "end", "<", "endIndex", ")", "loadNextEnabled", "=", "true", ";", "startIndex", "=", "start", ";", "endIndex", "=", "end", ";", "}", "public", "void", "setFirstVisibleItem", "(", "int", "firstVisibleItem", ")", "{", "this", ".", "firstVisibleItem", "=", "firstVisibleItem", ";", "}", "public", "long", "whenCreated", "(", ")", "{", "return", "whenCreated", ";", "}", "}", "</s>" ]
8,530
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "BroadcastReceiver", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "IntentFilter", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "graphics", ".", "Point", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "os", ".", "Handler", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "view", ".", "Menu", ";", "import", "android", ".", "view", ".", "MenuItem", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemSelectedListener", ";", "import", "android", ".", "widget", ".", "ArrayAdapter", ";", "import", "android", ".", "widget", ".", "Button", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "ProgressBar", ";", "import", "android", ".", "widget", ".", "RelativeLayout", ";", "import", "android", ".", "widget", ".", "Spinner", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Areas", ".", "Area", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "MapDownloaderService", ".", "Progress", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "MapDownloaderService", ".", "Progress", ".", "State", ";", "public", "class", "MapActivity", "extends", "com", ".", "google", ".", "android", ".", "maps", ".", "MapActivity", "{", "public", "static", "final", "int", "RESULT_STOP_FROM", "=", "RESULT_FIRST_USER", "+", "0", ";", "public", "static", "final", "int", "RESULT_STOP_TO", "=", "RESULT_FIRST_USER", "+", "1", ";", "public", "static", "boolean", "isResumed", "=", "false", ";", "private", "static", "final", "int", "DIALOG_ERROR", "=", "0", ";", "private", "static", "final", "int", "MENU_TOGGLE_ZOOM", "=", "0", ";", "private", "static", "final", "String", "DEBUG_MAP_KEY", "=", "\"\"", ";", "private", "static", "final", "String", "RELEASE_MAP_KEY", "=", "\"\"", ";", "private", "boolean", "zoomVisible", ";", "private", "Area", "area", ";", "private", "Button", "btDownloadMap", ";", "private", "Button", "btZoomIn", ";", "private", "Button", "btZoomOut", ";", "private", "GoogleMapView", "googleMapView", ";", "private", "Handler", "handler", "=", "new", "Handler", "(", ")", ";", "private", "LinearLayout", "llMapContainer", ";", "private", "LinearLayout", "llNoMap", ";", "private", "LinearLayout", "llProgress", ";", "private", "MenuItem", "toggleZoomMenuItem", ";", "private", "OfflineMapView", "offlineMapView", ";", "private", "Progress", "lastProgress", "=", "new", "Progress", "(", ")", ";", "private", "ProgressBar", "progressBar", ";", "private", "SharedPreferences", "preferences", ";", "private", "Spinner", "spWhichMap", ";", "private", "String", "popupTitle", ";", "private", "String", "selectedMapId", "=", "\"\"", ";", "private", "TextView", "tvProgress", ";", "private", "TextView", "tvProgressTitle", ";", "private", "View", "popup", ";", "private", "BroadcastReceiver", "receiver", "=", "new", "BroadcastReceiver", "(", ")", "{", "@", "Override", "public", "void", "onReceive", "(", "Context", "context", ",", "Intent", "intent", ")", "{", "lastProgress", "=", "getProgressExtra", "(", "intent", ")", ";", "if", "(", "lastProgress", "==", "null", ")", "lastProgress", "=", "new", "Progress", "(", ")", ";", "if", "(", "lastProgress", ".", "getState", "(", ")", "!=", "State", ".", "DOING_NOTHING", "&&", "lastProgress", ".", "getState", "(", ")", "!=", "State", ".", "ERROR", "&&", "!", "MapDownloaderService", ".", "isRunning", ")", "{", "sendDefaultBroadcast", "(", ")", ";", "}", "updateProgress", "(", "lastProgress", ")", ";", "}", "}", ";", "private", "void", "addGoogleMapView", "(", ")", "{", "String", "key", "=", "Common", ".", "DEVELOPER_MODE", "?", "DEBUG_MAP_KEY", ":", "RELEASE_MAP_KEY", ";", "googleMapView", "=", "new", "GoogleMapView", "(", "this", ",", "key", ",", "area", ")", ";", "googleMapView", ".", "setZoom", "(", "17", ")", ";", "llMapContainer", ".", "addView", "(", "googleMapView", ")", ";", "}", "private", "int", "getMapIndex", "(", "String", "mapId", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "area", ".", "maps", ".", "length", ";", "i", "++", ")", "{", "if", "(", "area", ".", "maps", "[", "i", "]", ".", "getId", "(", ")", ".", "equals", "(", "mapId", ")", ")", "return", "i", ";", "}", "return", "-", "1", ";", "}", "private", "Progress", "getProgressExtra", "(", "Intent", "i", ")", "{", "Progress", "p", "=", "null", ";", "try", "{", "p", "=", "(", "Progress", ")", "i", ".", "getSerializableExtra", "(", "\"progress\"", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "}", "return", "p", ";", "}", "private", "Intent", "getServiceIntent", "(", "String", "mapId", ",", "boolean", "cancel", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "getApplicationContext", "(", ")", ",", "MapDownloaderService", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "\"mapId\"", ",", "mapId", ")", ";", "intent", ".", "putExtra", "(", "\"cancel\"", ",", "cancel", ")", ";", "intent", ".", "putExtra", "(", "\"area\"", ",", "area", ")", ";", "return", "intent", ";", "}", "public", "void", "hidePopup", "(", ")", "{", "popup", ".", "setVisibility", "(", "View", ".", "INVISIBLE", ")", ";", "}", "public", "boolean", "isPopupVisible", "(", ")", "{", "return", "popup", ".", "getVisibility", "(", ")", "==", "View", ".", "VISIBLE", ";", "}", "@", "Override", "protected", "boolean", "isRouteDisplayed", "(", ")", "{", "return", "false", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "AbstractActivity", ".", "handleCustomLocale", "(", "preferences", ",", "getResources", "(", ")", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "map", ")", ";", "area", "=", "(", "Area", ")", "getIntent", "(", ")", ".", "getSerializableExtra", "(", "\"area\"", ")", ";", "llMapContainer", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llMapContainer", ")", ";", "llNoMap", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llNoMap", ")", ";", "llProgress", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llProgress", ")", ";", "tvProgress", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvProgress", ")", ";", "tvProgressTitle", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvProgressTitle", ")", ";", "progressBar", "=", "(", "ProgressBar", ")", "findViewById", "(", "R", ".", "id", ".", "progressBar", ")", ";", "spWhichMap", "=", "(", "Spinner", ")", "findViewById", "(", "R", ".", "id", ".", "spWhichMap", ")", ";", "String", "[", "]", "mapNames", "=", "new", "String", "[", "area", ".", "maps", ".", "length", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "mapNames", ".", "length", ";", "i", "++", ")", "{", "mapNames", "[", "i", "]", "=", "area", ".", "maps", "[", "i", "]", ".", "getName", "(", ")", ";", "}", "ArrayAdapter", "<", "String", ">", "adapter", "=", "new", "ArrayAdapter", "<", "String", ">", "(", "this", ",", "android", ".", "R", ".", "layout", ".", "simple_spinner_item", ",", "mapNames", ")", ";", "adapter", ".", "setDropDownViewResource", "(", "android", ".", "R", ".", "layout", ".", "simple_spinner_dropdown_item", ")", ";", "spWhichMap", ".", "setAdapter", "(", "adapter", ")", ";", "Drawable", "d", "=", "getResources", "(", ")", ".", "getDrawable", "(", "android", ".", "R", ".", "drawable", ".", "btn_dropdown", ")", ";", "d", ".", "setAlpha", "(", "200", ")", ";", "spWhichMap", ".", "setBackgroundDrawable", "(", "d", ")", ";", "selectMapFromIntent", "(", "getIntent", "(", ")", ")", ";", "spWhichMap", ".", "setOnItemSelectedListener", "(", "new", "OnItemSelectedListener", "(", ")", "{", "@", "Override", "public", "void", "onItemSelected", "(", "AdapterView", "<", "?", ">", "arg0", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "selectMap", "(", "area", ".", "maps", "[", "position", "]", ".", "getId", "(", ")", ")", ";", "}", "@", "Override", "public", "void", "onNothingSelected", "(", "AdapterView", "<", "?", ">", "arg0", ")", "{", "}", "}", ")", ";", "popup", "=", "findViewById", "(", "R", ".", "id", ".", "popup", ")", ";", "findViewById", "(", "R", ".", "id", ".", "btSetAsDeparture", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "Intent", "data", "=", "new", "Intent", "(", ")", ";", "int", "resultCode", "=", "0", ";", "data", ".", "putExtra", "(", "\"stop_name\"", ",", "popupTitle", ")", ";", "resultCode", "=", "RESULT_STOP_FROM", ";", "setResult", "(", "resultCode", ",", "data", ")", ";", "finish", "(", ")", ";", "}", "}", ")", ";", "findViewById", "(", "R", ".", "id", ".", "btSetAsArrival", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "Intent", "data", "=", "new", "Intent", "(", ")", ";", "int", "resultCode", "=", "0", ";", "data", ".", "putExtra", "(", "\"stop_name\"", ",", "popupTitle", ")", ";", "resultCode", "=", "RESULT_STOP_TO", ";", "setResult", "(", "resultCode", ",", "data", ")", ";", "finish", "(", ")", ";", "}", "}", ")", ";", "addGoogleMapView", "(", ")", ";", "btZoomIn", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btZoomIn", ")", ";", "btZoomIn", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "if", "(", "googleMapView", "!=", "null", ")", "googleMapView", ".", "zoomIn", "(", ")", ";", "if", "(", "offlineMapView", "!=", "null", ")", "offlineMapView", ".", "zoomIn", "(", ")", ";", "}", "}", ")", ";", "btZoomOut", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btZoomOut", ")", ";", "btZoomOut", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "if", "(", "googleMapView", "!=", "null", ")", "googleMapView", ".", "zoomOut", "(", ")", ";", "if", "(", "offlineMapView", "!=", "null", ")", "offlineMapView", ".", "zoomOut", "(", ")", ";", "}", "}", ")", ";", "setZoomVisibility", "(", ")", ";", "btDownloadMap", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btDownloadMap", ")", ";", "btDownloadMap", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "view", ")", "{", "startService", "(", "getServiceIntent", "(", "selectedMapId", ",", "false", ")", ")", ";", "}", "}", ")", ";", "Button", "btCancel", "=", "(", "Button", ")", "findViewById", "(", "R", ".", "id", ".", "btCancel", ")", ";", "d", "=", "getResources", "(", ")", ".", "getDrawable", "(", "android", ".", "R", ".", "drawable", ".", "btn_default_small", ")", ";", "d", ".", "setAlpha", "(", "210", ")", ";", "btCancel", ".", "setBackgroundDrawable", "(", "d", ")", ";", "btCancel", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "startService", "(", "getServiceIntent", "(", "null", ",", "true", ")", ")", ";", "}", "}", ")", ";", "Intent", "i", "=", "registerReceiver", "(", "null", ",", "new", "IntentFilter", "(", "MapDownloaderService", ".", "getBroadcastIntentAction", "(", "this", ")", ")", ")", ";", "if", "(", "i", "!=", "null", "&&", "savedInstanceState", "==", "null", ")", "{", "if", "(", "!", "getIntent", "(", ")", ".", "getBooleanExtra", "(", "\"error\"", ",", "false", ")", ")", "{", "Progress", "p", "=", "getProgressExtra", "(", "i", ")", ";", "if", "(", "p", "!=", "null", "&&", "p", ".", "getState", "(", ")", "==", "State", ".", "ERROR", ")", "{", "sendDefaultBroadcast", "(", ")", ";", "}", "}", "}", "AbstractActivity", ".", "localeWorkaround", "(", "preferences", ",", "getResources", "(", ")", ")", ";", "}", "@", "Override", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "if", "(", "id", "==", "DIALOG_ERROR", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "getString", "(", "R", ".", "string", ".", "mapErrorTitle", ")", ")", ".", "setMessage", "(", "R", ".", "string", ".", "mapError", ")", ";", "builder", ".", "setPositiveButton", "(", "\"OK\"", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "arg0", ",", "int", "arg1", ")", "{", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "else", "{", "return", "null", ";", "}", "}", "@", "Override", "public", "boolean", "onCreateOptionsMenu", "(", "Menu", "menu", ")", "{", "int", "text", "=", "zoomVisible", "?", "R", ".", "string", ".", "mapHideZoom", ":", "R", ".", "string", ".", "mapShowZoom", ";", "toggleZoomMenuItem", "=", "menu", ".", "add", "(", "Menu", ".", "NONE", ",", "MENU_TOGGLE_ZOOM", ",", "0", ",", "text", ")", ";", "toggleZoomMenuItem", ".", "setIcon", "(", "android", ".", "R", ".", "drawable", ".", "ic_menu_zoom", ")", ";", "return", "true", ";", "}", "@", "Override", "public", "void", "onDestroy", "(", ")", "{", "super", ".", "onDestroy", "(", ")", ";", "if", "(", "offlineMapView", "!=", "null", ")", "offlineMapView", ".", "destroy", "(", ")", ";", "}", "@", "Override", "public", "void", "onNewIntent", "(", "Intent", "intent", ")", "{", "selectMapFromIntent", "(", "intent", ")", ";", "}", "@", "Override", "public", "boolean", "onOptionsItemSelected", "(", "MenuItem", "item", ")", "{", "if", "(", "item", ".", "getItemId", "(", ")", "==", "MENU_TOGGLE_ZOOM", ")", "{", "Editor", "editor", "=", "preferences", ".", "edit", "(", ")", ";", "editor", ".", "putBoolean", "(", "Common", ".", "PREF_MAP_ZOOM_CONTROLS", ",", "!", "zoomVisible", ")", ";", "editor", ".", "commit", "(", ")", ";", "setZoomVisibility", "(", ")", ";", "}", "return", "true", ";", "}", "@", "Override", "protected", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "isResumed", "=", "false", ";", "unregisterReceiver", "(", "receiver", ")", ";", "googleMapView", ".", "pause", "(", ")", ";", "}", "@", "Override", "protected", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "isResumed", "=", "true", ";", "registerReceiver", "(", "receiver", ",", "new", "IntentFilter", "(", "MapDownloaderService", ".", "getBroadcastIntentAction", "(", "this", ")", ")", ")", ";", "if", "(", "selectedMapId", ".", "equals", "(", "\"google\"", ")", ")", "googleMapView", ".", "resume", "(", ")", ";", "}", "private", "void", "selectMap", "(", "String", "id", ")", "{", "hidePopup", "(", ")", ";", "selectedMapId", "=", "id", ";", "if", "(", "id", ".", "equals", "(", "\"google\"", ")", ")", "{", "llNoMap", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "if", "(", "offlineMapView", "!=", "null", ")", "{", "llMapContainer", ".", "removeView", "(", "offlineMapView", ")", ";", "offlineMapView", ".", "destroy", "(", ")", ";", "offlineMapView", "=", "null", ";", "}", "googleMapView", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "googleMapView", ".", "resume", "(", ")", ";", "}", "else", "{", "googleMapView", ".", "pause", "(", ")", ";", "googleMapView", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "if", "(", "offlineMapView", "==", "null", ")", "{", "offlineMapView", "=", "new", "OfflineMapView", "(", "this", ")", ";", "llMapContainer", ".", "addView", "(", "offlineMapView", ")", ";", "}", "if", "(", "offlineMapView", ".", "setMap", "(", "id", ")", ")", "{", "llNoMap", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "}", "else", "{", "llNoMap", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "setDownloadButtonEnabled", "(", "true", ")", ";", "if", "(", "lastProgress", ".", "isNotYetFinished", "(", "id", ")", ")", "{", "setDownloadButtonEnabled", "(", "false", ")", ";", "}", "}", "}", "}", "private", "void", "selectMapFromIntent", "(", "Intent", "intent", ")", "{", "String", "mapId", "=", "intent", ".", "getStringExtra", "(", "\"mapId\"", ")", ";", "if", "(", "mapId", "!=", "null", ")", "{", "int", "index", "=", "getMapIndex", "(", "mapId", ")", ";", "if", "(", "index", "!=", "-", "1", ")", "spWhichMap", ".", "setSelection", "(", "index", ")", ";", "}", "}", "private", "void", "sendDefaultBroadcast", "(", ")", "{", "Intent", "i", "=", "new", "Intent", "(", "MapDownloaderService", ".", "getBroadcastIntentAction", "(", "getApplicationContext", "(", ")", ")", ")", ";", "i", ".", "putExtra", "(", "\"progress\"", ",", "new", "Progress", "(", ")", ")", ";", "sendStickyBroadcast", "(", "i", ")", ";", "}", "private", "void", "setDownloadButtonEnabled", "(", "boolean", "enabled", ")", "{", "btDownloadMap", ".", "setEnabled", "(", "enabled", ")", ";", "btDownloadMap", ".", "setText", "(", "enabled", "?", "getString", "(", "R", ".", "string", ".", "downloadMap", ")", ":", "getString", "(", "R", ".", "string", ".", "downloadMapDisabled", ")", ")", ";", "}", "public", "void", "setZoomInEnabled", "(", "final", "boolean", "enabled", ")", "{", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "btZoomIn", ".", "setEnabled", "(", "enabled", ")", ";", "}", "}", ")", ";", "}", "public", "void", "setZoomOutEnabled", "(", "final", "boolean", "enabled", ")", "{", "handler", ".", "post", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "btZoomOut", ".", "setEnabled", "(", "enabled", ")", ";", "}", "}", ")", ";", "}", "private", "void", "setZoomVisibility", "(", ")", "{", "LinearLayout", "llZoom", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llZoom", ")", ";", "zoomVisible", "=", "preferences", ".", "getBoolean", "(", "Common", ".", "PREF_MAP_ZOOM_CONTROLS", ",", "true", ")", ";", "llZoom", ".", "setVisibility", "(", "zoomVisible", "?", "View", ".", "VISIBLE", ":", "View", ".", "GONE", ")", ";", "if", "(", "toggleZoomMenuItem", "!=", "null", ")", "{", "toggleZoomMenuItem", ".", "setTitle", "(", "zoomVisible", "?", "R", ".", "string", ".", "mapHideZoom", ":", "R", ".", "string", ".", "mapShowZoom", ")", ";", "}", "}", "public", "void", "showPopup", "(", "String", "title", ",", "Point", "point", ")", "{", "popupTitle", "=", "title", ";", "(", "(", "TextView", ")", "popup", ".", "findViewById", "(", "R", ".", "id", ".", "tvStopName", ")", ")", ".", "setText", "(", "title", ")", ";", "updatePopup", "(", "point", ")", ";", "popup", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "public", "void", "updatePopup", "(", "Point", "point", ")", "{", "RelativeLayout", ".", "LayoutParams", "params", "=", "(", "RelativeLayout", ".", "LayoutParams", ")", "popup", ".", "getLayoutParams", "(", ")", ";", "int", "yOffset", "=", "0", ";", "yOffset", "=", "-", "43", ";", "params", ".", "setMargins", "(", "point", ".", "x", "-", "popup", ".", "getWidth", "(", ")", "/", "2", ",", "point", ".", "y", "-", "popup", ".", "getHeight", "(", ")", "+", "yOffset", ",", "-", "1000", ",", "-", "1000", ")", ";", "popup", ".", "setLayoutParams", "(", "params", ")", ";", "}", "private", "void", "updateProgress", "(", "Progress", "progress", ")", "{", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "STARTING", ")", "{", "llProgress", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvProgressTitle", ".", "setText", "(", "progress", ".", "getTitle", "(", "this", ",", "false", ")", ")", ";", "tvProgress", ".", "setText", "(", "progress", ".", "getDescription", "(", "this", ")", ")", ";", "progressBar", ".", "setIndeterminate", "(", "true", ")", ";", "}", "else", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "DOWNLOADING", ")", "{", "llProgress", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvProgressTitle", ".", "setText", "(", "progress", ".", "getTitle", "(", "this", ",", "false", ")", ")", ";", "tvProgress", ".", "setText", "(", "progress", ".", "getDescription", "(", "this", ")", ")", ";", "progressBar", ".", "setIndeterminate", "(", "false", ")", ";", "progressBar", ".", "setProgress", "(", "progress", ".", "getPercent", "(", ")", ")", ";", "}", "else", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "EXTRACTING", ")", "{", "llProgress", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvProgressTitle", ".", "setText", "(", "progress", ".", "getTitle", "(", "this", ",", "false", ")", ")", ";", "tvProgress", ".", "setText", "(", "progress", ".", "getDescription", "(", "this", ")", ")", ";", "progressBar", ".", "setIndeterminate", "(", "false", ")", ";", "progressBar", ".", "setProgress", "(", "progress", ".", "getPercent", "(", ")", ")", ";", "}", "else", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "ERROR", ")", "{", "llProgress", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "MapDownloaderService", ".", "cancelErrorNotification", "(", "this", ")", ";", "showDialog", "(", "DIALOG_ERROR", ")", ";", "sendDefaultBroadcast", "(", ")", ";", "}", "else", "if", "(", "progress", ".", "getState", "(", ")", "==", "State", ".", "DOING_NOTHING", ")", "{", "llProgress", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "}", "progressBar", ".", "invalidate", "(", ")", ";", "if", "(", "progress", ".", "isNotYetFinished", "(", "selectedMapId", ")", ")", "{", "setDownloadButtonEnabled", "(", "false", ")", ";", "}", "else", "{", "setDownloadButtonEnabled", "(", "true", ")", ";", "if", "(", "llNoMap", ".", "getVisibility", "(", ")", "==", "View", ".", "VISIBLE", "&&", "progress", ".", "isFinished", "(", "selectedMapId", ")", ")", "{", "selectMap", "(", "selectedMapId", ")", ";", "}", "}", "}", "}", "</s>" ]
8,531
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "graphics", ".", "Canvas", ";", "import", "android", ".", "graphics", ".", "Point", ";", "import", "android", ".", "graphics", ".", "PointF", ";", "import", "android", ".", "util", ".", "DisplayMetrics", ";", "import", "android", ".", "view", ".", "GestureDetector", ";", "import", "android", ".", "view", ".", "GestureDetector", ".", "SimpleOnGestureListener", ";", "import", "android", ".", "view", ".", "MotionEvent", ";", "import", "android", ".", "view", ".", "SurfaceHolder", ";", "import", "android", ".", "view", ".", "SurfaceView", ";", "import", "android", ".", "view", ".", "WindowManager", ";", "public", "class", "OfflineMapView", "extends", "SurfaceView", "implements", "SurfaceHolder", ".", "Callback", ",", "Runnable", "{", "private", "static", "final", "float", "SCROLL_FRICTION", "=", "5000f", ";", "private", "boolean", "dimensionsKnown", "=", "false", ";", "private", "boolean", "redrawIsRequested", ";", "private", "boolean", "screenTouched", "=", "false", ";", "private", "boolean", "threadShouldStop", "=", "false", ";", "private", "float", "biggest_zoom", ";", "private", "float", "smallest_zoom", ";", "private", "Animation", "animation", "=", "null", ";", "private", "Float", "zoom", ";", "private", "GestureDetector", "gestureDetector", ";", "private", "OfflineMapSource", "dataSource", ";", "private", "Point", "center", ";", "private", "PinchTracker", "pinchTracker", "=", "new", "PinchTracker", "(", ")", ";", "private", "MapActivity", "activity", ";", "private", "ScrollTracker", "scrollTracker", "=", "new", "ScrollTracker", "(", ")", ";", "private", "SurfaceHolder", "surfaceHolder", ";", "private", "Thread", "thread", ";", "public", "OfflineMapView", "(", "MapActivity", "activity", ")", "{", "super", "(", "activity", ")", ";", "this", ".", "activity", "=", "activity", ";", "dataSource", "=", "new", "OfflineMapSource", "(", "this", ")", ";", "GestureListener", "gestureListener", "=", "new", "GestureListener", "(", ")", ";", "gestureDetector", "=", "new", "GestureDetector", "(", "gestureListener", ")", ";", "gestureDetector", ".", "setOnDoubleTapListener", "(", "gestureListener", ")", ";", "surfaceHolder", "=", "getHolder", "(", ")", ";", "surfaceHolder", ".", "addCallback", "(", "this", ")", ";", "}", "private", "void", "adjustMapPosition", "(", ")", "{", "int", "horizontal", "=", "(", "int", ")", "(", "(", "float", ")", "getWidth", "(", ")", "/", "2", "*", "zoom", ")", ";", "int", "vertical", "=", "(", "int", ")", "(", "(", "float", ")", "getHeight", "(", ")", "/", "2", "*", "zoom", ")", ";", "if", "(", "center", ".", "x", "<", "horizontal", ")", "center", ".", "x", "=", "horizontal", ";", "else", "if", "(", "center", ".", "x", ">", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ")", "center", ".", "x", "=", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ";", "if", "(", "center", ".", "y", "<", "vertical", ")", "center", ".", "y", "=", "vertical", ";", "else", "if", "(", "center", ".", "y", ">", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ")", "center", ".", "y", "=", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ";", "}", "private", "void", "calculateMaxAndMinZoom", "(", ")", "{", "biggest_zoom", "=", "Math", ".", "min", "(", "dataSource", ".", "getMapHeight", "(", ")", "/", "(", "float", ")", "getHeight", "(", ")", ",", "dataSource", ".", "getMapWidth", "(", ")", "/", "(", "float", ")", "getWidth", "(", ")", ")", ";", "DisplayMetrics", "metrics", "=", "new", "DisplayMetrics", "(", ")", ";", "(", "(", "WindowManager", ")", "getContext", "(", ")", ".", "getSystemService", "(", "Context", ".", "WINDOW_SERVICE", ")", ")", ".", "getDefaultDisplay", "(", ")", ".", "getMetrics", "(", "metrics", ")", ";", "smallest_zoom", "=", "dataSource", ".", "getMinZoomMdpi", "(", ")", "/", "metrics", ".", "density", ";", "}", "public", "void", "destroy", "(", ")", "{", "dataSource", ".", "destroy", "(", ")", ";", "}", "private", "Point", "getMapCoord", "(", "PointF", "pointOnSreen", ")", "{", "return", "new", "Point", "(", "(", "int", ")", "(", "center", ".", "x", "+", "(", "pointOnSreen", ".", "x", "-", "getWidth", "(", ")", "/", "2f", ")", "*", "zoom", ")", ",", "(", "int", ")", "(", "center", ".", "y", "+", "(", "pointOnSreen", ".", "y", "-", "getHeight", "(", ")", "/", "2f", ")", "*", "zoom", ")", ")", ";", "}", "public", "boolean", "onTouchEvent", "(", "MotionEvent", "e", ")", "{", "if", "(", "!", "dimensionsKnown", ")", "return", "true", ";", "if", "(", "dataSource", ".", "getState", "(", ")", "!=", "OfflineMapSource", ".", "READY", ")", "return", "true", ";", "if", "(", "e", ".", "getPointerCount", "(", ")", "==", "1", ")", "gestureDetector", ".", "onTouchEvent", "(", "e", ")", ";", "switch", "(", "e", ".", "getAction", "(", ")", "&", "MotionEvent", ".", "ACTION_MASK", ")", "{", "case", "MotionEvent", ".", "ACTION_DOWN", ":", "{", "screenTouched", "=", "true", ";", "thread", ".", "interrupt", "(", ")", ";", "if", "(", "animation", "instanceof", "KineticScrollAnimation", ")", "animation", "=", "null", ";", "scrollTracker", ".", "start", "(", "e", ".", "getX", "(", ")", ",", "e", ".", "getY", "(", ")", ")", ";", "break", ";", "}", "case", "MotionEvent", ".", "ACTION_MOVE", ":", "{", "if", "(", "e", ".", "getPointerCount", "(", ")", "==", "1", ")", "{", "scrollTracker", ".", "update", "(", "e", ".", "getX", "(", ")", ",", "e", ".", "getY", "(", ")", ")", ";", "}", "else", "if", "(", "e", ".", "getPointerCount", "(", ")", "==", "2", ")", "{", "pinchTracker", ".", "update", "(", "e", ".", "getX", "(", "0", ")", ",", "e", ".", "getY", "(", "0", ")", ",", "e", ".", "getX", "(", "1", ")", ",", "e", ".", "getY", "(", "1", ")", ")", ";", "}", "break", ";", "}", "case", "MotionEvent", ".", "ACTION_UP", ":", "{", "screenTouched", "=", "false", ";", "break", ";", "}", "case", "MotionEvent", ".", "ACTION_POINTER_DOWN", ":", "{", "if", "(", "e", ".", "getPointerCount", "(", ")", "==", "2", ")", "{", "pinchTracker", ".", "start", "(", "e", ".", "getX", "(", "0", ")", ",", "e", ".", "getY", "(", "0", ")", ",", "e", ".", "getX", "(", "1", ")", ",", "e", ".", "getY", "(", "1", ")", ")", ";", "}", "break", ";", "}", "case", "MotionEvent", ".", "ACTION_POINTER_UP", ":", "{", "int", "upPointerIndex", "=", "(", "e", ".", "getAction", "(", ")", "&", "MotionEvent", ".", "ACTION_POINTER_ID_MASK", ")", ">>", "MotionEvent", ".", "ACTION_POINTER_ID_SHIFT", ";", "if", "(", "e", ".", "getPointerCount", "(", ")", "==", "2", ")", "{", "int", "index", "=", "1", "-", "upPointerIndex", ";", "scrollTracker", ".", "start", "(", "e", ".", "getX", "(", "index", ")", ",", "e", ".", "getY", "(", "index", ")", ")", ";", "}", "break", ";", "}", "}", "return", "true", ";", "}", "public", "void", "requestRedraw", "(", ")", "{", "redrawIsRequested", "=", "true", ";", "if", "(", "thread", "!=", "null", ")", "thread", ".", "interrupt", "(", ")", ";", "}", "@", "Override", "public", "void", "run", "(", ")", "{", "int", "c", "=", "0", ";", "long", "t", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "while", "(", "!", "threadShouldStop", ")", "{", "Canvas", "canvas", "=", "null", ";", "boolean", "redrawSuccessful", "=", "false", ";", "try", "{", "canvas", "=", "surfaceHolder", ".", "lockCanvas", "(", "null", ")", ";", "if", "(", "animation", "!=", "null", ")", "{", "long", "time", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "boolean", "isFinished", "=", "animation", ".", "update", "(", "time", ")", ";", "if", "(", "isFinished", ")", "animation", "=", "null", ";", "}", "canvas", ".", "drawRGB", "(", "255", ",", "255", ",", "255", ")", ";", "if", "(", "dataSource", ".", "getState", "(", ")", "==", "OfflineMapSource", ".", "READY", ")", "dataSource", ".", "drawTiles", "(", "canvas", ",", "center", ",", "zoom", ",", "getWidth", "(", ")", ",", "getHeight", "(", ")", ")", ";", "redrawSuccessful", "=", "true", ";", "}", "finally", "{", "if", "(", "canvas", "!=", "null", ")", "{", "surfaceHolder", ".", "unlockCanvasAndPost", "(", "canvas", ")", ";", "}", "}", "if", "(", "!", "redrawSuccessful", ")", "redrawIsRequested", "=", "true", ";", "c", "++", ";", "long", "d", "=", "System", ".", "currentTimeMillis", "(", ")", "-", "t", ";", "if", "(", "d", ">", "500", ")", "{", "c", "=", "0", ";", "t", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "}", "if", "(", "!", "redrawIsRequested", "&&", "animation", "==", "null", "&&", "screenTouched", "==", "false", ")", "{", "synchronized", "(", "this", ")", "{", "try", "{", "wait", "(", ")", ";", "}", "catch", "(", "InterruptedException", "e", ")", "{", "}", "}", "}", "redrawIsRequested", "=", "false", ";", "}", "}", "public", "boolean", "setMap", "(", "String", "mapId", ")", "{", "boolean", "success", "=", "dataSource", ".", "setMap", "(", "mapId", ")", ";", "if", "(", "success", ")", "{", "center", "=", "new", "Point", "(", "dataSource", ".", "getMapWidth", "(", ")", "/", "2", ",", "dataSource", ".", "getMapHeight", "(", ")", "/", "2", ")", ";", "activity", ".", "setZoomInEnabled", "(", "true", ")", ";", "activity", ".", "setZoomOutEnabled", "(", "false", ")", ";", "if", "(", "dimensionsKnown", ")", "{", "calculateMaxAndMinZoom", "(", ")", ";", "zoom", "=", "biggest_zoom", ";", "}", "}", "requestRedraw", "(", ")", ";", "return", "success", ";", "}", "@", "Override", "public", "void", "surfaceChanged", "(", "SurfaceHolder", "holder", ",", "int", "format", ",", "int", "width", ",", "int", "height", ")", "{", "if", "(", "dataSource", ".", "getState", "(", ")", "==", "OfflineMapSource", ".", "READY", ")", "calculateMaxAndMinZoom", "(", ")", ";", "if", "(", "!", "dimensionsKnown", ")", "{", "dimensionsKnown", "=", "true", ";", "if", "(", "zoom", "==", "null", ")", "zoom", "=", "biggest_zoom", ";", "}", "requestRedraw", "(", ")", ";", "}", "@", "Override", "public", "void", "surfaceCreated", "(", "SurfaceHolder", "holder", ")", "{", "threadShouldStop", "=", "false", ";", "thread", "=", "new", "Thread", "(", "this", ")", ";", "thread", ".", "start", "(", ")", ";", "thread", ".", "setPriority", "(", "10", ")", ";", "}", "@", "Override", "public", "void", "surfaceDestroyed", "(", "SurfaceHolder", "holder", ")", "{", "boolean", "retry", "=", "true", ";", "threadShouldStop", "=", "true", ";", "thread", ".", "interrupt", "(", ")", ";", "while", "(", "retry", ")", "{", "try", "{", "thread", ".", "join", "(", ")", ";", "retry", "=", "false", ";", "}", "catch", "(", "InterruptedException", "e", ")", "{", "}", "}", "}", "private", "void", "updateMapCenter", "(", "Point", "mapCoord", ",", "PointF", "correspondingScreenPoint", ")", "{", "center", ".", "x", "=", "(", "int", ")", "(", "mapCoord", ".", "x", "-", "correspondingScreenPoint", ".", "x", "*", "zoom", "+", "(", "getWidth", "(", ")", "/", "2", ")", "*", "zoom", ")", ";", "center", ".", "y", "=", "(", "int", ")", "(", "mapCoord", ".", "y", "-", "correspondingScreenPoint", ".", "y", "*", "zoom", "+", "(", "getHeight", "(", ")", "/", "2", ")", "*", "zoom", ")", ";", "}", "public", "void", "zoomIn", "(", ")", "{", "if", "(", "!", "dimensionsKnown", ")", "return", ";", "zoomIn", "(", "new", "PointF", "(", "getWidth", "(", ")", "/", "2", ",", "getHeight", "(", ")", "/", "2", ")", ")", ";", "}", "public", "void", "zoomIn", "(", "PointF", "focalPoint", ")", "{", "if", "(", "!", "dimensionsKnown", ")", "return", ";", "ZoomAnimation", "animation", "=", "new", "ZoomAnimation", "(", "System", ".", "currentTimeMillis", "(", ")", ",", "200", ",", "2", ",", "focalPoint", ",", "true", ")", ";", "this", ".", "animation", "=", "animation", ";", "thread", ".", "interrupt", "(", ")", ";", "}", "public", "void", "zoomOut", "(", ")", "{", "if", "(", "!", "dimensionsKnown", ")", "return", ";", "ZoomAnimation", "animation", "=", "new", "ZoomAnimation", "(", "System", ".", "currentTimeMillis", "(", ")", ",", "200", ",", "2", ",", "new", "PointF", "(", "getWidth", "(", ")", "/", "2", ",", "getHeight", "(", ")", "/", "2", ")", ",", "false", ")", ";", "this", ".", "animation", "=", "animation", ";", "thread", ".", "interrupt", "(", ")", ";", "}", "private", "class", "PinchTracker", "{", "private", "Point", "middleMapCoord", ";", "private", "PointF", "startMiddle", ";", "private", "float", "startDistance", ";", "private", "float", "startZoom", ";", "private", "float", "getDistance", "(", "PointF", "a", ",", "PointF", "b", ")", "{", "return", "(", "float", ")", "Math", ".", "sqrt", "(", "Math", ".", "pow", "(", "a", ".", "x", "-", "b", ".", "x", ",", "2", ")", "+", "Math", ".", "pow", "(", "a", ".", "y", "-", "b", ".", "y", ",", "2", ")", ")", ";", "}", "public", "void", "start", "(", "float", "x1", ",", "float", "y1", ",", "float", "x2", ",", "float", "y2", ")", "{", "startMiddle", "=", "new", "PointF", "(", "x1", "+", "(", "x2", "-", "x1", ")", "/", "2", ",", "y1", "+", "(", "y2", "-", "y1", ")", "/", "2", ")", ";", "startDistance", "=", "getDistance", "(", "new", "PointF", "(", "x1", ",", "y1", ")", ",", "new", "PointF", "(", "x2", ",", "y2", ")", ")", ";", "startZoom", "=", "zoom", ";", "middleMapCoord", "=", "getMapCoord", "(", "startMiddle", ")", ";", "}", "public", "void", "update", "(", "float", "x1", ",", "float", "y1", ",", "float", "x2", ",", "float", "y2", ")", "{", "float", "newZoom", "=", "startZoom", "/", "(", "getDistance", "(", "new", "PointF", "(", "x1", ",", "y1", ")", ",", "new", "PointF", "(", "x2", ",", "y2", ")", ")", "/", "startDistance", ")", ";", "if", "(", "zoom", "==", "smallest_zoom", "&&", "newZoom", ">", "zoom", ")", "activity", ".", "setZoomInEnabled", "(", "true", ")", ";", "if", "(", "zoom", "==", "biggest_zoom", "&&", "newZoom", "<", "zoom", ")", "activity", ".", "setZoomOutEnabled", "(", "true", ")", ";", "zoom", "=", "newZoom", ";", "if", "(", "zoom", "<=", "smallest_zoom", ")", "{", "zoom", "=", "smallest_zoom", ";", "activity", ".", "setZoomInEnabled", "(", "false", ")", ";", "}", "if", "(", "zoom", ">=", "biggest_zoom", ")", "{", "zoom", "=", "biggest_zoom", ";", "activity", ".", "setZoomOutEnabled", "(", "false", ")", ";", "}", "updateMapCenter", "(", "middleMapCoord", ",", "startMiddle", ")", ";", "adjustMapPosition", "(", ")", ";", "}", "}", "private", "class", "ScrollTracker", "{", "private", "PointF", "startTouch", ";", "private", "Point", "startCenter", ";", "public", "void", "start", "(", "float", "x", ",", "float", "y", ")", "{", "startTouch", "=", "new", "PointF", "(", "x", ",", "y", ")", ";", "startCenter", "=", "new", "Point", "(", "center", ")", ";", "}", "public", "void", "update", "(", "float", "x", ",", "float", "y", ")", "{", "center", ".", "x", "=", "(", "int", ")", "(", "startCenter", ".", "x", "-", "(", "x", "-", "startTouch", ".", "x", ")", "*", "zoom", ")", ";", "center", ".", "y", "=", "(", "int", ")", "(", "startCenter", ".", "y", "-", "(", "y", "-", "startTouch", ".", "y", ")", "*", "zoom", ")", ";", "int", "horizontal", "=", "(", "int", ")", "(", "(", "float", ")", "getWidth", "(", ")", "/", "2", "*", "zoom", ")", ";", "int", "vertical", "=", "(", "int", ")", "(", "(", "float", ")", "getHeight", "(", ")", "/", "2", "*", "zoom", ")", ";", "if", "(", "center", ".", "x", "<", "horizontal", ")", "center", ".", "x", "=", "horizontal", ";", "else", "if", "(", "center", ".", "x", ">", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ")", "center", ".", "x", "=", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ";", "if", "(", "center", ".", "y", "<", "vertical", ")", "center", ".", "y", "=", "vertical", ";", "else", "if", "(", "center", ".", "y", ">", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ")", "center", ".", "y", "=", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ";", "}", "}", "private", "abstract", "class", "Animation", "{", "protected", "int", "duration", ";", "protected", "long", "startTime", ";", "public", "Animation", "(", "long", "startTime", ")", "{", "this", ".", "startTime", "=", "startTime", ";", "}", "public", "Animation", "(", "long", "startTime", ",", "int", "duration", ")", "{", "this", ".", "startTime", "=", "startTime", ";", "this", ".", "duration", "=", "duration", ";", "}", "public", "abstract", "boolean", "update", "(", "long", "time", ")", ";", "}", "private", "class", "ZoomAnimation", "extends", "Animation", "{", "private", "boolean", "zoomIn", ";", "private", "float", "initialZoom", ";", "private", "float", "zoomMultiplier", ";", "private", "Point", "mapCoord", ";", "private", "PointF", "focalPoint", ";", "public", "ZoomAnimation", "(", "long", "startTime", ",", "int", "duration", ",", "float", "zoomMultiplier", ",", "PointF", "focalPoint", ",", "boolean", "zoomIn", ")", "{", "super", "(", "startTime", ",", "duration", ")", ";", "this", ".", "zoomIn", "=", "zoomIn", ";", "this", ".", "zoomMultiplier", "=", "zoomMultiplier", ";", "initialZoom", "=", "zoom", ";", "this", ".", "focalPoint", "=", "focalPoint", ";", "mapCoord", "=", "new", "Point", "(", "getMapCoord", "(", "focalPoint", ")", ")", ";", "if", "(", "zoomIn", ")", "activity", ".", "setZoomOutEnabled", "(", "true", ")", ";", "else", "activity", ".", "setZoomInEnabled", "(", "true", ")", ";", "}", "public", "boolean", "update", "(", "long", "time", ")", "{", "double", "a", "=", "Math", ".", "pow", "(", "zoomMultiplier", ",", "1", "/", "(", "(", "float", ")", "duration", "/", "(", "time", "-", "startTime", ")", ")", ")", ";", "boolean", "isFinished", "=", "false", ";", "if", "(", "zoomIn", ")", "{", "zoom", "=", "(", "float", ")", "(", "initialZoom", "/", "a", ")", ";", "if", "(", "zoom", "<=", "smallest_zoom", ")", "{", "zoom", "=", "smallest_zoom", ";", "activity", ".", "setZoomInEnabled", "(", "false", ")", ";", "isFinished", "=", "true", ";", "}", "else", "if", "(", "zoom", "<=", "initialZoom", "/", "zoomMultiplier", ")", "{", "zoom", "=", "initialZoom", "/", "zoomMultiplier", ";", "isFinished", "=", "true", ";", "}", "}", "else", "{", "zoom", "=", "(", "float", ")", "(", "initialZoom", "*", "a", ")", ";", "if", "(", "zoom", ">=", "biggest_zoom", ")", "{", "zoom", "=", "biggest_zoom", ";", "activity", ".", "setZoomOutEnabled", "(", "false", ")", ";", "isFinished", "=", "true", ";", "}", "else", "if", "(", "zoom", ">=", "initialZoom", "*", "zoomMultiplier", ")", "{", "zoom", "=", "initialZoom", "*", "zoomMultiplier", ";", "isFinished", "=", "true", ";", "}", "}", "updateMapCenter", "(", "mapCoord", ",", "focalPoint", ")", ";", "adjustMapPosition", "(", ")", ";", "return", "isFinished", ";", "}", "}", "private", "class", "KineticScrollAnimation", "extends", "Animation", "{", "private", "double", "startSpeed", ";", "private", "double", "xCoeff", ";", "private", "double", "yCoeff", ";", "private", "Point", "startCenter", ";", "public", "KineticScrollAnimation", "(", "long", "startTime", ",", "float", "velocityX", ",", "float", "velocityY", ")", "{", "super", "(", "startTime", ")", ";", "startCenter", "=", "new", "Point", "(", "center", ")", ";", "startSpeed", "=", "Math", ".", "sqrt", "(", "velocityX", "*", "velocityX", "+", "velocityY", "*", "velocityY", ")", ";", "xCoeff", "=", "velocityX", "/", "startSpeed", ";", "yCoeff", "=", "velocityY", "/", "startSpeed", ";", "}", "@", "Override", "public", "boolean", "update", "(", "long", "time", ")", "{", "double", "secondsSinceStart", "=", "(", "time", "-", "startTime", ")", "/", "1000.0", ";", "double", "speed", "=", "startSpeed", "-", "SCROLL_FRICTION", "*", "secondsSinceStart", ";", "if", "(", "speed", "<=", "0", ")", "return", "true", ";", "double", "distance", "=", "(", "startSpeed", "+", "speed", ")", "/", "2", "*", "secondsSinceStart", ";", "double", "xDelta", "=", "xCoeff", "*", "distance", ";", "double", "yDelta", "=", "yCoeff", "*", "distance", ";", "center", ".", "x", "=", "(", "int", ")", "(", "startCenter", ".", "x", "-", "xDelta", "*", "zoom", ")", ";", "center", ".", "y", "=", "(", "int", ")", "(", "startCenter", ".", "y", "-", "yDelta", "*", "zoom", ")", ";", "int", "horizontal", "=", "(", "int", ")", "(", "(", "float", ")", "getWidth", "(", ")", "/", "2", "*", "zoom", ")", ";", "int", "vertical", "=", "(", "int", ")", "(", "(", "float", ")", "getHeight", "(", ")", "/", "2", "*", "zoom", ")", ";", "if", "(", "center", ".", "x", "<", "horizontal", ")", "center", ".", "x", "=", "horizontal", ";", "else", "if", "(", "center", ".", "x", ">", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ")", "center", ".", "x", "=", "dataSource", ".", "getMapWidth", "(", ")", "-", "horizontal", ";", "if", "(", "center", ".", "y", "<", "vertical", ")", "center", ".", "y", "=", "vertical", ";", "else", "if", "(", "center", ".", "y", ">", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ")", "center", ".", "y", "=", "dataSource", ".", "getMapHeight", "(", ")", "-", "vertical", ";", "return", "false", ";", "}", "}", "private", "class", "GestureListener", "extends", "SimpleOnGestureListener", "{", "@", "Override", "public", "boolean", "onDoubleTap", "(", "MotionEvent", "e", ")", "{", "zoomIn", "(", "new", "PointF", "(", "e", ".", "getX", "(", ")", ",", "e", ".", "getY", "(", ")", ")", ")", ";", "return", "false", ";", "}", "@", "Override", "public", "boolean", "onFling", "(", "MotionEvent", "e1", ",", "MotionEvent", "e2", ",", "float", "velocityX", ",", "float", "velocityY", ")", "{", "KineticScrollAnimation", "animation", "=", "new", "KineticScrollAnimation", "(", "System", ".", "currentTimeMillis", "(", ")", ",", "velocityX", ",", "velocityY", ")", ";", "OfflineMapView", ".", "this", ".", "animation", "=", "animation", ";", "thread", ".", "interrupt", "(", ")", ";", "return", "false", ";", "}", "}", "}", "</s>" ]
8,532
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Arrays", ";", "import", "java", ".", "util", ".", "Collections", ";", "import", "java", ".", "util", ".", "Comparator", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "location", ".", "Location", ";", "public", "class", "Stops", "{", "public", "static", "final", "int", "FROM", "=", "0", ";", "public", "static", "final", "int", "TO", "=", "1", ";", "public", "static", "final", "int", "DEPARTURES", "=", "2", ";", "public", "double", "[", "]", "baseRanksTo", ";", "public", "double", "[", "]", "bonusRanksTo", ";", "public", "double", "[", "]", "importances", ";", "public", "double", "[", "]", "latitudes", ";", "public", "double", "[", "]", "longitudes", ";", "public", "double", "[", "]", "departureRanks", ";", "public", "double", "[", "]", "ranksFrom", ";", "public", "ArrayList", "<", "Integer", ">", "listDepartures", ";", "public", "ArrayList", "<", "Integer", ">", "listFrom", ";", "public", "ArrayList", "<", "Integer", ">", "listTo", ";", "public", "String", "area", ";", "public", "String", "[", "]", "extras", ";", "public", "String", "[", "]", "names", ";", "public", "String", "[", "]", "simpleNames", ";", "private", "static", "Stops", "instance", "=", "null", ";", "private", "CzechComparator", "czechComparator", "=", "new", "CzechComparator", "(", ")", ";", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "private", "Stops", "(", "Context", "context", ",", "String", "area", ")", "{", "this", ".", "area", "=", "area", ";", "loadClass", "(", "area", ")", ";", "ranksFrom", "=", "importances", ".", "clone", "(", ")", ";", "departureRanks", "=", "importances", ".", "clone", "(", ")", ";", "baseRanksTo", "=", "importances", ".", "clone", "(", ")", ";", "bonusRanksTo", "=", "new", "double", "[", "names", ".", "length", "]", ";", "Arrays", ".", "fill", "(", "bonusRanksTo", ",", "0", ")", ";", "listFrom", "=", "new", "ArrayList", "<", "Integer", ">", "(", "names", ".", "length", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", ";", "i", "++", ")", "{", "listFrom", ".", "add", "(", "i", ")", ";", "}", "listTo", "=", "(", "ArrayList", "<", "Integer", ">", ")", "listFrom", ".", "clone", "(", ")", ";", "listDepartures", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", ";", "i", "++", ")", "{", "if", "(", "extras", "[", "i", "]", "!=", "null", ")", "listDepartures", ".", "add", "(", "i", ")", ";", "}", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "loadStops", "(", "this", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "}", "public", "double", "getDistanceRank", "(", "Location", "location", ",", "double", "latitude", ",", "double", "longitude", ")", "{", "double", "distanceRank", "=", "0.0", ";", "if", "(", "location", "!=", "null", ")", "{", "double", "meters", "=", "computeDistance", "(", "location", ".", "getLatitude", "(", ")", ",", "location", ".", "getLongitude", "(", ")", ",", "latitude", ",", "longitude", ")", ";", "double", "accuracy", "=", "location", ".", "getAccuracy", "(", ")", ";", "if", "(", "meters", "<", "accuracy", "/", "2", ")", "meters", "=", "accuracy", "/", "2", ";", "if", "(", "meters", "<", "1000.0", ")", "{", "distanceRank", "=", "(", "2100", "-", "meters", ")", "/", "100", ";", "}", "}", "return", "distanceRank", ";", "}", "private", "double", "computeDistance", "(", "double", "lat1", ",", "double", "lon1", ",", "double", "lat2", ",", "double", "lon2", ")", "{", "int", "R", "=", "6371000", ";", "double", "dLat", "=", "(", "lat2", "-", "lat1", ")", "/", "360", "*", "2", "*", "Math", ".", "PI", ";", "double", "dLon", "=", "(", "lon2", "-", "lon1", ")", "/", "360", "*", "2", "*", "Math", ".", "PI", ";", "double", "a", "=", "Math", ".", "sin", "(", "dLat", "/", "2", ")", "*", "Math", ".", "sin", "(", "dLat", "/", "2", ")", "+", "Math", ".", "cos", "(", "lat1", "/", "360", "*", "2", "*", "Math", ".", "PI", ")", "*", "Math", ".", "cos", "(", "lat2", "/", "360", "*", "2", "*", "Math", ".", "PI", ")", "*", "Math", ".", "sin", "(", "dLon", "/", "2", ")", "*", "Math", ".", "sin", "(", "dLon", "/", "2", ")", ";", "double", "c", "=", "2", "*", "Math", ".", "atan2", "(", "Math", ".", "sqrt", "(", "a", ")", ",", "Math", ".", "sqrt", "(", "1", "-", "a", ")", ")", ";", "return", "R", "*", "c", ";", "}", "public", "int", "getIndex", "(", "String", "name", ")", "{", "int", "index", "=", "Arrays", ".", "binarySearch", "(", "names", ",", "name", ",", "czechComparator", ")", ";", "return", "index", ";", "}", "public", "static", "Stops", "getInstance", "(", "Context", "context", ",", "String", "area", ")", "{", "if", "(", "instance", "==", "null", "||", "!", "instance", ".", "area", ".", "equals", "(", "area", ")", ")", "{", "instance", "=", "new", "Stops", "(", "context", ",", "area", ")", ";", "}", "return", "instance", ";", "}", "public", "ArrayList", "<", "Integer", ">", "getStopIdsInArea", "(", "double", "latitudeMin", ",", "double", "latitudeMax", ",", "double", "longitudeMin", ",", "double", "longitudeMax", ")", "{", "ArrayList", "<", "Integer", ">", "stopIds", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "latitudes", ".", "length", ";", "i", "++", ")", "{", "if", "(", "latitudes", "[", "i", "]", ">=", "latitudeMin", "&&", "latitudes", "[", "i", "]", "<=", "latitudeMax", "&&", "longitudes", "[", "i", "]", ">=", "longitudeMin", "&&", "longitudes", "[", "i", "]", "<=", "longitudeMax", ")", "{", "stopIds", ".", "add", "(", "i", ")", ";", "}", "}", "return", "stopIds", ";", "}", "private", "void", "loadClass", "(", "String", "name", ")", "{", "boolean", "endsWithNum", "=", "false", ";", "char", "lastChar", "=", "name", ".", "charAt", "(", "name", ".", "length", "(", ")", "-", "1", ")", ";", "if", "(", "lastChar", ">=", "'0'", "&&", "lastChar", "<=", "'9'", ")", "{", "name", "=", "name", ".", "substring", "(", "0", ",", "name", ".", "length", "(", ")", "-", "1", ")", ";", "endsWithNum", "=", "true", ";", "}", "ArrayList", "<", "Object", ">", "data", "=", "new", "ArrayList", "<", "Object", ">", "(", ")", ";", "int", "stopsCount", "=", "0", ";", "int", "i", "=", "1", ";", "while", "(", "true", ")", "{", "String", "fullClassName", "=", "\"\"", "+", "name", ";", "if", "(", "endsWithNum", ")", "fullClassName", "+=", "i", ";", "try", "{", "Class", "<", "?", ">", "dataClass", "=", "Class", ".", "forName", "(", "fullClassName", ")", ";", "Object", "obj", "=", "dataClass", ".", "newInstance", "(", ")", ";", "stopsCount", "+=", "(", "(", "String", "[", "]", ")", "dataClass", ".", "getField", "(", "\"names\"", ")", ".", "get", "(", "obj", ")", ")", ".", "length", ";", "data", ".", "add", "(", "obj", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "break", ";", "}", "if", "(", "!", "endsWithNum", ")", "break", ";", "i", "++", ";", "}", "loadFields", "(", "data", ",", "stopsCount", ")", ";", "}", "private", "void", "loadFields", "(", "ArrayList", "<", "Object", ">", "data", ",", "int", "stopsCount", ")", "{", "extras", "=", "new", "String", "[", "stopsCount", "]", ";", "names", "=", "new", "String", "[", "stopsCount", "]", ";", "simpleNames", "=", "new", "String", "[", "stopsCount", "]", ";", "latitudes", "=", "new", "double", "[", "stopsCount", "]", ";", "longitudes", "=", "new", "double", "[", "stopsCount", "]", ";", "importances", "=", "new", "double", "[", "stopsCount", "]", ";", "int", "index", "=", "0", ";", "try", "{", "for", "(", "Object", "obj", ":", "data", ")", "{", "String", "[", "]", "extrasField", "=", "(", "String", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"extras\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "extrasField", ",", "0", ",", "extras", ",", "index", ",", "extrasField", ".", "length", ")", ";", "String", "[", "]", "namesField", "=", "(", "String", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"names\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "namesField", ",", "0", ",", "names", ",", "index", ",", "namesField", ".", "length", ")", ";", "String", "[", "]", "simpleNamesField", "=", "(", "String", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"simpleNames\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "simpleNamesField", ",", "0", ",", "simpleNames", ",", "index", ",", "simpleNamesField", ".", "length", ")", ";", "double", "[", "]", "latitudesField", "=", "(", "double", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"latitudes\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "latitudesField", ",", "0", ",", "latitudes", ",", "index", ",", "latitudesField", ".", "length", ")", ";", "double", "[", "]", "longitudesField", "=", "(", "double", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"longitudes\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "longitudesField", ",", "0", ",", "longitudes", ",", "index", ",", "longitudesField", ".", "length", ")", ";", "double", "[", "]", "importancesField", "=", "(", "double", "[", "]", ")", "obj", ".", "getClass", "(", ")", ".", "getField", "(", "\"importances\"", ")", ".", "get", "(", "obj", ")", ";", "System", ".", "arraycopy", "(", "importancesField", ",", "0", ",", "importances", ",", "index", ",", "importancesField", ".", "length", ")", ";", "index", "+=", "namesField", ".", "length", ";", "}", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "private", "int", "prepareSortDepartures", "(", "Location", "location", ")", "{", "int", "aboveZeroCount", "=", "0", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "listDepartures", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "listDepartures", ".", "get", "(", "i", ")", ";", "double", "rank", "=", "departureRanks", "[", "index", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "index", "]", ",", "longitudes", "[", "index", "]", ")", ";", "if", "(", "rank", ">", "0.1", ")", "{", "listDepartures", ".", "set", "(", "i", ",", "listDepartures", ".", "get", "(", "aboveZeroCount", ")", ")", ";", "listDepartures", ".", "set", "(", "aboveZeroCount", ",", "index", ")", ";", "aboveZeroCount", "++", ";", "}", "}", "return", "aboveZeroCount", ";", "}", "private", "int", "prepareSortFrom", "(", "Location", "location", ")", "{", "int", "aboveZeroCount", "=", "0", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "listFrom", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "listFrom", ".", "get", "(", "i", ")", ";", "double", "rank", "=", "ranksFrom", "[", "index", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "index", "]", ",", "longitudes", "[", "index", "]", ")", ";", "if", "(", "rank", ">", "0.1", ")", "{", "listFrom", ".", "set", "(", "i", ",", "listFrom", ".", "get", "(", "aboveZeroCount", ")", ")", ";", "listFrom", ".", "set", "(", "aboveZeroCount", ",", "index", ")", ";", "aboveZeroCount", "++", ";", "}", "}", "return", "aboveZeroCount", ";", "}", "private", "int", "prepareSortTo", "(", ")", "{", "int", "aboveZeroCount", "=", "0", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "listTo", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "listTo", ".", "get", "(", "i", ")", ";", "double", "rank", "=", "baseRanksTo", "[", "index", "]", "+", "bonusRanksTo", "[", "index", "]", ";", "if", "(", "rank", ">", "0.1", ")", "{", "listTo", ".", "set", "(", "i", ",", "listTo", ".", "get", "(", "aboveZeroCount", ")", ")", ";", "listTo", ".", "set", "(", "aboveZeroCount", ",", "index", ")", ";", "aboveZeroCount", "++", ";", "}", "else", "if", "(", "rank", "<", "-", "0.1", ")", "{", "listTo", ".", "set", "(", "i", ",", "listTo", ".", "get", "(", "listTo", ".", "size", "(", ")", "-", "1", ")", ")", ";", "listTo", ".", "set", "(", "listTo", ".", "size", "(", ")", "-", "1", ",", "index", ")", ";", "}", "}", "return", "aboveZeroCount", ";", "}", "public", "void", "sortDepartures", "(", "final", "Location", "location", ")", "{", "int", "nonZeroCount", "=", "prepareSortDepartures", "(", "location", ")", ";", "Collections", ".", "sort", "(", "listDepartures", ".", "subList", "(", "0", ",", "nonZeroCount", ")", ",", "new", "Comparator", "<", "Integer", ">", "(", ")", "{", "@", "Override", "public", "int", "compare", "(", "Integer", "id1", ",", "Integer", "id2", ")", "{", "double", "rank1", "=", "departureRanks", "[", "id1", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "id1", "]", ",", "longitudes", "[", "id1", "]", ")", ";", "double", "rank2", "=", "departureRanks", "[", "id2", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "id2", "]", ",", "longitudes", "[", "id2", "]", ")", ";", "if", "(", "rank1", ">", "rank2", ")", "return", "-", "1", ";", "else", "if", "(", "rank1", "<", "rank2", ")", "return", "1", ";", "else", "return", "0", ";", "}", "}", ")", ";", "}", "public", "void", "sortFrom", "(", "final", "Location", "location", ")", "{", "int", "nonZeroCount", "=", "prepareSortFrom", "(", "location", ")", ";", "Collections", ".", "sort", "(", "listFrom", ".", "subList", "(", "0", ",", "nonZeroCount", ")", ",", "new", "Comparator", "<", "Integer", ">", "(", ")", "{", "@", "Override", "public", "int", "compare", "(", "Integer", "id1", ",", "Integer", "id2", ")", "{", "double", "rank1", "=", "ranksFrom", "[", "id1", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "id1", "]", ",", "longitudes", "[", "id1", "]", ")", ";", "double", "rank2", "=", "ranksFrom", "[", "id2", "]", "+", "getDistanceRank", "(", "location", ",", "latitudes", "[", "id2", "]", ",", "longitudes", "[", "id2", "]", ")", ";", "if", "(", "rank1", ">", "rank2", ")", "return", "-", "1", ";", "else", "if", "(", "rank1", "<", "rank2", ")", "return", "1", ";", "else", "return", "0", ";", "}", "}", ")", ";", "}", "public", "void", "sortTo", "(", ")", "{", "int", "nonZeroCount", "=", "prepareSortTo", "(", ")", ";", "Collections", ".", "sort", "(", "listTo", ".", "subList", "(", "0", ",", "nonZeroCount", ")", ",", "new", "Comparator", "<", "Integer", ">", "(", ")", "{", "@", "Override", "public", "int", "compare", "(", "Integer", "id1", ",", "Integer", "id2", ")", "{", "double", "rank1", "=", "baseRanksTo", "[", "id1", "]", "+", "bonusRanksTo", "[", "id1", "]", ";", "double", "rank2", "=", "baseRanksTo", "[", "id2", "]", "+", "bonusRanksTo", "[", "id2", "]", ";", "if", "(", "rank1", ">", "rank2", ")", "return", "-", "1", ";", "else", "if", "(", "rank1", "<", "rank2", ")", "return", "1", ";", "else", "return", "0", ";", "}", "}", ")", ";", "}", "public", "double", "computeBasicRank", "(", "int", "fromSearches", ",", "int", "fromSearchesAll", ",", "int", "toSearches", ",", "int", "toSearchesAll", ",", "int", "departures", ",", "int", "departuresAll", ",", "long", "lastFrom", ",", "long", "lastTo", ",", "long", "lastDeparture", ",", "double", "importance", ",", "int", "type", ")", "{", "double", "rank", "=", "0.0", ";", "float", "coeff", "=", "1", ";", "if", "(", "type", "==", "TO", ")", "coeff", "=", "0.5f", ";", "else", "if", "(", "type", "==", "DEPARTURES", ")", "coeff", "=", "0.5f", ";", "double", "percent", "=", "0", ";", "if", "(", "fromSearchesAll", ">", "0", ")", "percent", "=", "(", "double", ")", "fromSearches", "*", "100.0", "/", "fromSearchesAll", ";", "if", "(", "percent", ">", "0.1", ")", "rank", "=", "(", "percent", "/", "10.0", "+", "1.0", ")", "*", "coeff", ";", "coeff", "=", "0.5f", ";", "if", "(", "type", "==", "TO", ")", "coeff", "=", "1", ";", "else", "if", "(", "type", "==", "DEPARTURES", ")", "coeff", "=", "0.5f", ";", "percent", "=", "0", ";", "if", "(", "toSearchesAll", ">", "0", ")", "percent", "=", "(", "double", ")", "toSearches", "*", "100.0", "/", "toSearchesAll", ";", "if", "(", "percent", ">", "0.1", ")", "rank", "+=", "(", "percent", "/", "10.0", "+", "1.0", ")", "*", "coeff", ";", "coeff", "=", "0.1f", ";", "if", "(", "type", "==", "DEPARTURES", ")", "coeff", "=", "0.5f", ";", "percent", "=", "0", ";", "if", "(", "departuresAll", ">", "0", ")", "percent", "=", "(", "double", ")", "departures", "*", "100.0", "/", "departuresAll", ";", "if", "(", "percent", ">", "0.1", ")", "rank", "+=", "(", "percent", "/", "10.0", "+", "1.0", ")", "*", "coeff", ";", "long", "lastUse", "=", "Math", ".", "max", "(", "Math", ".", "max", "(", "lastFrom", ",", "lastTo", ")", ",", "lastDeparture", ")", ";", "long", "minutes", "=", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "lastUse", ")", "/", "(", "1000", "*", "60", ")", ";", "if", "(", "minutes", "<=", "60", ")", "rank", "+=", "2", ";", "else", "if", "(", "minutes", "<=", "60", "*", "6", ")", "rank", "+=", "1.7", ";", "else", "if", "(", "minutes", "<=", "60", "*", "24", "*", "2", ")", "rank", "+=", "1.4", ";", "else", "if", "(", "minutes", "<=", "60", "*", "24", "*", "7", ")", "rank", "+=", "1", ";", "else", "if", "(", "minutes", "<=", "60", "*", "24", "*", "30", ")", "rank", "+=", "0.6", ";", "else", "if", "(", "minutes", "<=", "60", "*", "24", "*", "365", ")", "rank", "+=", "0.3", ";", "rank", "+=", "importance", ";", "return", "rank", ";", "}", "}", "</s>" ]
8,533
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "app", ".", "Activity", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "graphics", ".", "Rect", ";", "import", "android", ".", "graphics", ".", "drawable", ".", "Drawable", ";", "import", "android", ".", "os", ".", "SystemClock", ";", "import", "android", ".", "text", ".", "Editable", ";", "import", "android", ".", "text", ".", "Selection", ";", "import", "android", ".", "text", ".", "TextUtils", ";", "import", "android", ".", "text", ".", "TextWatcher", ";", "import", "android", ".", "util", ".", "AttributeSet", ";", "import", "android", ".", "util", ".", "Log", ";", "import", "android", ".", "view", ".", "KeyEvent", ";", "import", "android", ".", "view", ".", "MotionEvent", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "view", ".", "inputmethod", ".", "CompletionInfo", ";", "import", "android", ".", "view", ".", "inputmethod", ".", "EditorInfo", ";", "import", "android", ".", "view", ".", "inputmethod", ".", "InputMethodManager", ";", "import", "android", ".", "widget", ".", "Adapter", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "EditText", ";", "import", "android", ".", "widget", ".", "Filter", ";", "import", "android", ".", "widget", ".", "Filterable", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "ListAdapter", ";", "import", "android", ".", "widget", ".", "ListView", ";", "public", "class", "MyAutoComplete", "extends", "EditText", "implements", "Filter", ".", "FilterListener", "{", "public", "long", "lastDismissTime", "=", "0", ";", "public", "Activity", "activity", ";", "public", "MyPopupWindow", "mPopup", ";", "static", "final", "boolean", "DEBUG", "=", "false", ";", "static", "final", "String", "TAG", "=", "\"\"", ";", "private", "static", "final", "int", "HINT_VIEW_ID", "=", "0x17", ";", "private", "ListAdapter", "mAdapter", ";", "private", "Filter", "mFilter", ";", "private", "int", "mThreshold", "=", "0", ";", "private", "DropDownListView", "mDropDownList", ";", "private", "int", "mDropDownVerticalOffset", ";", "private", "int", "mDropDownHorizontalOffset", ";", "private", "int", "mDropDownAnchorId", ";", "private", "View", "mDropDownAnchorView", ";", "private", "int", "mDropDownWidth", ";", "private", "Drawable", "mDropDownListHighlight", ";", "private", "AdapterView", ".", "OnItemClickListener", "mItemClickListener", ";", "private", "AdapterView", ".", "OnItemSelectedListener", "mItemSelectedListener", ";", "private", "final", "DropDownItemClickListener", "mDropDownItemClickListener", "=", "new", "DropDownItemClickListener", "(", ")", ";", "private", "int", "mLastKeyCode", "=", "KeyEvent", ".", "KEYCODE_UNKNOWN", ";", "private", "boolean", "mOpenBefore", ";", "private", "Validator", "mValidator", "=", "null", ";", "private", "boolean", "mBlockCompletion", ";", "private", "MyAutoComplete", ".", "ListSelectorHider", "mHideSelector", ";", "private", "int", "mAttachCount", ";", "public", "MyAutoComplete", "(", "Context", "context", ")", "{", "this", "(", "context", ",", "null", ")", ";", "}", "public", "MyAutoComplete", "(", "Context", "context", ",", "AttributeSet", "attrs", ")", "{", "this", "(", "context", ",", "attrs", ",", "android", ".", "R", ".", "attr", ".", "autoCompleteTextViewStyle", ")", ";", "}", "public", "MyAutoComplete", "(", "Context", "context", ",", "AttributeSet", "attrs", ",", "int", "defStyle", ")", "{", "super", "(", "context", ",", "attrs", ",", "defStyle", ")", ";", "mPopup", "=", "new", "MyPopupWindow", "(", "context", ",", "attrs", ",", "android", ".", "R", ".", "attr", ".", "autoCompleteTextViewStyle", ")", ";", "mPopup", ".", "setOnDismissListener", "(", "new", "MyPopupWindow", ".", "OnDismissListener", "(", ")", "{", "@", "Override", "public", "void", "onDismiss", "(", ")", "{", "lastDismissTime", "=", "SystemClock", ".", "uptimeMillis", "(", ")", ";", "}", "}", ")", ";", "mDropDownListHighlight", "=", "getResources", "(", ")", ".", "getDrawable", "(", "android", ".", "R", ".", "drawable", ".", "list_selector_background", ")", ";", "mDropDownVerticalOffset", "=", "(", "int", ")", "(", "-", "6f", "*", "getResources", "(", ")", ".", "getDisplayMetrics", "(", ")", ".", "density", "+", "0.5f", ")", ";", "mDropDownHorizontalOffset", "=", "0", ";", "mDropDownAnchorId", "=", "View", ".", "NO_ID", ";", "mDropDownWidth", "=", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ";", "int", "inputType", "=", "getInputType", "(", ")", ";", "if", "(", "(", "inputType", "&", "EditorInfo", ".", "TYPE_MASK_CLASS", ")", "==", "EditorInfo", ".", "TYPE_CLASS_TEXT", ")", "{", "inputType", "|=", "EditorInfo", ".", "TYPE_TEXT_FLAG_AUTO_COMPLETE", ";", "setRawInputType", "(", "inputType", ")", ";", "}", "setFocusable", "(", "true", ")", ";", "addTextChangedListener", "(", "new", "MyWatcher", "(", ")", ")", ";", "}", "void", "finishInit", "(", ")", "{", "setSingleLine", "(", ")", ";", "}", "public", "void", "setCompletionHint", "(", "CharSequence", "hint", ")", "{", "}", "public", "int", "getDropDownWidth", "(", ")", "{", "return", "mDropDownWidth", ";", "}", "public", "void", "setDropDownWidth", "(", "int", "width", ")", "{", "mDropDownWidth", "=", "width", ";", "}", "public", "int", "getDropDownAnchor", "(", ")", "{", "return", "mDropDownAnchorId", ";", "}", "public", "void", "setDropDownAnchor", "(", "int", "id", ")", "{", "mDropDownAnchorId", "=", "id", ";", "mDropDownAnchorView", "=", "null", ";", "}", "public", "int", "getThreshold", "(", ")", "{", "return", "mThreshold", ";", "}", "public", "void", "setThreshold", "(", "int", "threshold", ")", "{", "mThreshold", "=", "threshold", ";", "}", "public", "void", "setOnItemClickListener", "(", "AdapterView", ".", "OnItemClickListener", "l", ")", "{", "mItemClickListener", "=", "l", ";", "}", "public", "void", "setOnItemSelectedListener", "(", "AdapterView", ".", "OnItemSelectedListener", "l", ")", "{", "mItemSelectedListener", "=", "l", ";", "}", "@", "Deprecated", "public", "AdapterView", ".", "OnItemClickListener", "getItemClickListener", "(", ")", "{", "return", "mItemClickListener", ";", "}", "@", "Deprecated", "public", "AdapterView", ".", "OnItemSelectedListener", "getItemSelectedListener", "(", ")", "{", "return", "mItemSelectedListener", ";", "}", "public", "AdapterView", ".", "OnItemClickListener", "getOnItemClickListener", "(", ")", "{", "return", "mItemClickListener", ";", "}", "public", "AdapterView", ".", "OnItemSelectedListener", "getOnItemSelectedListener", "(", ")", "{", "return", "mItemSelectedListener", ";", "}", "public", "ListAdapter", "getAdapter", "(", ")", "{", "return", "mAdapter", ";", "}", "public", "<", "T", "extends", "ListAdapter", "&", "Filterable", ">", "void", "setAdapter", "(", "T", "adapter", ")", "{", "mAdapter", "=", "adapter", ";", "if", "(", "mAdapter", "!=", "null", ")", "{", "mFilter", "=", "(", "(", "Filterable", ")", "mAdapter", ")", ".", "getFilter", "(", ")", ";", "}", "else", "{", "mFilter", "=", "null", ";", "}", "if", "(", "mDropDownList", "!=", "null", ")", "{", "mDropDownList", ".", "setAdapter", "(", "mAdapter", ")", ";", "}", "}", "@", "Override", "public", "boolean", "onKeyPreIme", "(", "int", "keyCode", ",", "KeyEvent", "event", ")", "{", "if", "(", "isPopupShowing", "(", ")", ")", "{", "if", "(", "keyCode", "==", "KeyEvent", ".", "KEYCODE_BACK", ")", "{", "dismissDropDown", "(", ")", ";", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "activity", ".", "getSystemService", "(", "Context", ".", "INPUT_METHOD_SERVICE", ")", ";", "imm", ".", "hideSoftInputFromWindow", "(", "getWindowToken", "(", ")", ",", "0", ")", ";", "return", "true", ";", "}", "}", "return", "super", ".", "onKeyPreIme", "(", "keyCode", ",", "event", ")", ";", "}", "@", "Override", "public", "boolean", "onKeyUp", "(", "int", "keyCode", ",", "KeyEvent", "event", ")", "{", "if", "(", "isPopupShowing", "(", ")", "&&", "mDropDownList", ".", "getSelectedItemPosition", "(", ")", ">=", "0", ")", "{", "boolean", "consumed", "=", "mDropDownList", ".", "onKeyUp", "(", "keyCode", ",", "event", ")", ";", "if", "(", "consumed", ")", "{", "switch", "(", "keyCode", ")", "{", "case", "KeyEvent", ".", "KEYCODE_ENTER", ":", "case", "KeyEvent", ".", "KEYCODE_DPAD_CENTER", ":", "performCompletion", "(", ")", ";", "return", "true", ";", "}", "}", "}", "return", "super", ".", "onKeyUp", "(", "keyCode", ",", "event", ")", ";", "}", "@", "Override", "public", "boolean", "onKeyDown", "(", "int", "keyCode", ",", "KeyEvent", "event", ")", "{", "if", "(", "isPopupShowing", "(", ")", ")", "{", "if", "(", "keyCode", "!=", "KeyEvent", ".", "KEYCODE_SPACE", "&&", "(", "mDropDownList", ".", "getSelectedItemPosition", "(", ")", ">=", "0", "||", "(", "keyCode", "!=", "KeyEvent", ".", "KEYCODE_ENTER", "&&", "keyCode", "!=", "KeyEvent", ".", "KEYCODE_DPAD_CENTER", ")", ")", ")", "{", "int", "curIndex", "=", "mDropDownList", ".", "getSelectedItemPosition", "(", ")", ";", "boolean", "consumed", ";", "final", "boolean", "below", "=", "!", "mPopup", ".", "isAboveAnchor", "(", ")", ";", "if", "(", "(", "below", "&&", "keyCode", "==", "KeyEvent", ".", "KEYCODE_DPAD_UP", "&&", "curIndex", "<=", "0", ")", "||", "(", "!", "below", "&&", "keyCode", "==", "KeyEvent", ".", "KEYCODE_DPAD_DOWN", "&&", "curIndex", ">=", "mDropDownList", ".", "getAdapter", "(", ")", ".", "getCount", "(", ")", "-", "1", ")", ")", "{", "mDropDownList", ".", "requestLayout", "(", ")", ";", "mPopup", ".", "setInputMethodMode", "(", "MyPopupWindow", ".", "INPUT_METHOD_NEEDED", ")", ";", "mPopup", ".", "update", "(", ")", ";", "return", "true", ";", "}", "consumed", "=", "mDropDownList", ".", "onKeyDown", "(", "keyCode", ",", "event", ")", ";", "if", "(", "DEBUG", ")", "Log", ".", "v", "(", "TAG", ",", "\"\"", "+", "keyCode", "+", "\"\"", "+", "consumed", ")", ";", "if", "(", "consumed", ")", "{", "mPopup", ".", "setInputMethodMode", "(", "MyPopupWindow", ".", "INPUT_METHOD_NOT_NEEDED", ")", ";", "mDropDownList", ".", "requestFocusFromTouch", "(", ")", ";", "mPopup", ".", "update", "(", ")", ";", "switch", "(", "keyCode", ")", "{", "case", "KeyEvent", ".", "KEYCODE_ENTER", ":", "case", "KeyEvent", ".", "KEYCODE_DPAD_CENTER", ":", "case", "KeyEvent", ".", "KEYCODE_DPAD_DOWN", ":", "case", "KeyEvent", ".", "KEYCODE_DPAD_UP", ":", "return", "true", ";", "}", "}", "else", "{", "if", "(", "below", "&&", "keyCode", "==", "KeyEvent", ".", "KEYCODE_DPAD_DOWN", ")", "{", "Adapter", "adapter", "=", "mDropDownList", ".", "getAdapter", "(", ")", ";", "if", "(", "adapter", "!=", "null", "&&", "curIndex", "==", "adapter", ".", "getCount", "(", ")", "-", "1", ")", "{", "return", "true", ";", "}", "}", "else", "if", "(", "!", "below", "&&", "keyCode", "==", "KeyEvent", ".", "KEYCODE_DPAD_UP", "&&", "curIndex", "==", "0", ")", "{", "return", "true", ";", "}", "}", "}", "}", "else", "{", "switch", "(", "keyCode", ")", "{", "case", "KeyEvent", ".", "KEYCODE_DPAD_DOWN", ":", "performValidation", "(", ")", ";", "}", "}", "mLastKeyCode", "=", "keyCode", ";", "boolean", "handled", "=", "super", ".", "onKeyDown", "(", "keyCode", ",", "event", ")", ";", "mLastKeyCode", "=", "KeyEvent", ".", "KEYCODE_UNKNOWN", ";", "if", "(", "handled", "&&", "isPopupShowing", "(", ")", "&&", "mDropDownList", "!=", "null", ")", "{", "clearListSelection", "(", ")", ";", "}", "return", "handled", ";", "}", "public", "boolean", "enoughToFilter", "(", ")", "{", "return", "getText", "(", ")", ".", "length", "(", ")", ">=", "mThreshold", ";", "}", "private", "class", "MyWatcher", "implements", "TextWatcher", "{", "public", "void", "afterTextChanged", "(", "Editable", "s", ")", "{", "doAfterTextChanged", "(", ")", ";", "}", "public", "void", "beforeTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "count", ",", "int", "after", ")", "{", "doBeforeTextChanged", "(", ")", ";", "}", "public", "void", "onTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "before", ",", "int", "count", ")", "{", "}", "}", "void", "doBeforeTextChanged", "(", ")", "{", "if", "(", "mBlockCompletion", ")", "return", ";", "mOpenBefore", "=", "isPopupShowing", "(", ")", ";", "if", "(", "DEBUG", ")", "Log", ".", "v", "(", "TAG", ",", "\"\"", "+", "mOpenBefore", ")", ";", "}", "void", "doAfterTextChanged", "(", ")", "{", "if", "(", "mBlockCompletion", ")", "return", ";", "if", "(", "DEBUG", ")", "Log", ".", "v", "(", "TAG", ",", "\"\"", "+", "mOpenBefore", "+", "\"", "open=\"", "+", "isPopupShowing", "(", ")", ")", ";", "if", "(", "mOpenBefore", "&&", "!", "isPopupShowing", "(", ")", ")", "{", "return", ";", "}", "if", "(", "enoughToFilter", "(", ")", ")", "{", "if", "(", "mFilter", "!=", "null", ")", "{", "performFiltering", "(", "getText", "(", ")", ",", "mLastKeyCode", ")", ";", "}", "}", "else", "{", "dismissDropDown", "(", ")", ";", "if", "(", "mFilter", "!=", "null", ")", "{", "mFilter", ".", "filter", "(", "null", ")", ";", "}", "}", "}", "public", "boolean", "isPopupShowing", "(", ")", "{", "return", "mPopup", ".", "isShowing", "(", ")", ";", "}", "protected", "CharSequence", "convertSelectionToString", "(", "Object", "selectedItem", ")", "{", "return", "mFilter", ".", "convertResultToString", "(", "selectedItem", ")", ";", "}", "public", "void", "clearListSelection", "(", ")", "{", "if", "(", "mDropDownList", "!=", "null", ")", "{", "mDropDownList", ".", "requestLayout", "(", ")", ";", "}", "}", "public", "void", "setListSelection", "(", "int", "position", ")", "{", "if", "(", "mPopup", ".", "isShowing", "(", ")", "&&", "(", "mDropDownList", "!=", "null", ")", ")", "{", "mDropDownList", ".", "setSelection", "(", "position", ")", ";", "}", "}", "public", "int", "getListSelection", "(", ")", "{", "if", "(", "mPopup", ".", "isShowing", "(", ")", "&&", "(", "mDropDownList", "!=", "null", ")", ")", "{", "return", "mDropDownList", ".", "getSelectedItemPosition", "(", ")", ";", "}", "return", "ListView", ".", "INVALID_POSITION", ";", "}", "protected", "void", "performFiltering", "(", "CharSequence", "text", ",", "int", "keyCode", ")", "{", "mFilter", ".", "filter", "(", "text", ",", "this", ")", ";", "}", "public", "void", "performCompletion", "(", ")", "{", "performCompletion", "(", "null", ",", "-", "1", ",", "-", "1", ")", ";", "}", "@", "Override", "public", "void", "onCommitCompletion", "(", "CompletionInfo", "completion", ")", "{", "if", "(", "isPopupShowing", "(", ")", ")", "{", "mBlockCompletion", "=", "true", ";", "replaceText", "(", "completion", ".", "getText", "(", ")", ")", ";", "mBlockCompletion", "=", "false", ";", "if", "(", "mItemClickListener", "!=", "null", ")", "{", "final", "DropDownListView", "list", "=", "mDropDownList", ";", "mItemClickListener", ".", "onItemClick", "(", "list", ",", "null", ",", "completion", ".", "getPosition", "(", ")", ",", "completion", ".", "getId", "(", ")", ")", ";", "}", "}", "}", "private", "void", "performCompletion", "(", "View", "selectedView", ",", "int", "position", ",", "long", "id", ")", "{", "if", "(", "isPopupShowing", "(", ")", ")", "{", "Object", "selectedItem", ";", "if", "(", "position", "<", "0", ")", "{", "selectedItem", "=", "mDropDownList", ".", "getSelectedItem", "(", ")", ";", "}", "else", "{", "selectedItem", "=", "mAdapter", ".", "getItem", "(", "position", ")", ";", "}", "if", "(", "selectedItem", "==", "null", ")", "{", "Log", ".", "w", "(", "TAG", ",", "\"\"", ")", ";", "return", ";", "}", "mBlockCompletion", "=", "true", ";", "replaceText", "(", "convertSelectionToString", "(", "selectedItem", ")", ")", ";", "mBlockCompletion", "=", "false", ";", "if", "(", "mItemClickListener", "!=", "null", ")", "{", "final", "DropDownListView", "list", "=", "mDropDownList", ";", "if", "(", "selectedView", "==", "null", "||", "position", "<", "0", ")", "{", "selectedView", "=", "list", ".", "getSelectedView", "(", ")", ";", "position", "=", "list", ".", "getSelectedItemPosition", "(", ")", ";", "id", "=", "list", ".", "getSelectedItemId", "(", ")", ";", "}", "mItemClickListener", ".", "onItemClick", "(", "list", ",", "selectedView", ",", "position", ",", "id", ")", ";", "}", "}", "dismissDropDown", "(", ")", ";", "}", "public", "boolean", "isPerformingCompletion", "(", ")", "{", "return", "mBlockCompletion", ";", "}", "protected", "void", "replaceText", "(", "CharSequence", "text", ")", "{", "setText", "(", "text", ")", ";", "Editable", "spannable", "=", "getText", "(", ")", ";", "Selection", ".", "setSelection", "(", "spannable", ",", "spannable", ".", "length", "(", ")", ")", ";", "}", "public", "void", "onFilterComplete", "(", "int", "count", ")", "{", "if", "(", "mAttachCount", "<=", "0", ")", "return", ";", "if", "(", "count", ">", "0", "&&", "enoughToFilter", "(", ")", ")", "{", "if", "(", "hasFocus", "(", ")", "&&", "hasWindowFocus", "(", ")", ")", "{", "showDropDown", "(", ")", ";", "}", "}", "else", "{", "dismissDropDown", "(", ")", ";", "}", "}", "@", "Override", "public", "void", "onWindowFocusChanged", "(", "boolean", "hasWindowFocus", ")", "{", "super", ".", "onWindowFocusChanged", "(", "hasWindowFocus", ")", ";", "performValidation", "(", ")", ";", "if", "(", "!", "hasWindowFocus", ")", "{", "dismissDropDown", "(", ")", ";", "}", "}", "@", "Override", "protected", "void", "onFocusChanged", "(", "boolean", "focused", ",", "int", "direction", ",", "Rect", "previouslyFocusedRect", ")", "{", "super", ".", "onFocusChanged", "(", "focused", ",", "direction", ",", "previouslyFocusedRect", ")", ";", "performValidation", "(", ")", ";", "if", "(", "!", "focused", ")", "{", "dismissDropDown", "(", ")", ";", "}", "}", "@", "Override", "protected", "void", "onAttachedToWindow", "(", ")", "{", "super", ".", "onAttachedToWindow", "(", ")", ";", "mAttachCount", "++", ";", "}", "@", "Override", "protected", "void", "onDetachedFromWindow", "(", ")", "{", "dismissDropDown", "(", ")", ";", "mAttachCount", "--", ";", "super", ".", "onDetachedFromWindow", "(", ")", ";", "}", "public", "void", "dismissDropDown", "(", ")", "{", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "activity", ".", "getSystemService", "(", "Context", ".", "INPUT_METHOD_SERVICE", ")", ";", "if", "(", "imm", "!=", "null", ")", "{", "imm", ".", "displayCompletions", "(", "this", ",", "null", ")", ";", "}", "mPopup", ".", "dismiss", "(", ")", ";", "mPopup", ".", "setContentView", "(", "null", ")", ";", "mDropDownList", "=", "null", ";", "}", "@", "Override", "protected", "boolean", "setFrame", "(", "int", "l", ",", "int", "t", ",", "int", "r", ",", "int", "b", ")", "{", "boolean", "result", "=", "super", ".", "setFrame", "(", "l", ",", "t", ",", "r", ",", "b", ")", ";", "if", "(", "mPopup", ".", "isShowing", "(", ")", ")", "{", "mPopup", ".", "update", "(", "this", ",", "r", "-", "l", ",", "-", "1", ")", ";", "}", "return", "result", ";", "}", "public", "void", "setDropDownHorizontalOffset", "(", "int", "horizontalOffset", ")", "{", "mDropDownHorizontalOffset", "=", "horizontalOffset", ";", "}", "public", "void", "setDropDownVerticalOffset", "(", "int", "verticalOffset", ")", "{", "mDropDownVerticalOffset", "=", "verticalOffset", ";", "}", "private", "View", "getDropDownAnchorView", "(", ")", "{", "if", "(", "mDropDownAnchorView", "==", "null", "&&", "mDropDownAnchorId", "!=", "View", ".", "NO_ID", ")", "{", "mDropDownAnchorView", "=", "getRootView", "(", ")", ".", "findViewById", "(", "mDropDownAnchorId", ")", ";", "}", "return", "mDropDownAnchorView", "==", "null", "?", "this", ":", "mDropDownAnchorView", ";", "}", "public", "void", "showDropDown", "(", ")", "{", "int", "height", "=", "buildDropDown", "(", ")", ";", "if", "(", "mPopup", ".", "isShowing", "(", ")", ")", "{", "int", "widthSpec", ";", "if", "(", "mDropDownWidth", "==", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ")", "{", "widthSpec", "=", "-", "1", ";", "}", "else", "if", "(", "mDropDownWidth", "==", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ")", "{", "widthSpec", "=", "getDropDownAnchorView", "(", ")", ".", "getWidth", "(", ")", ";", "}", "else", "{", "widthSpec", "=", "mDropDownWidth", ";", "}", "mPopup", ".", "update", "(", "getDropDownAnchorView", "(", ")", ",", "mDropDownHorizontalOffset", ",", "mDropDownVerticalOffset", ",", "widthSpec", ",", "height", ")", ";", "}", "else", "{", "if", "(", "mDropDownWidth", "==", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ")", "{", "mPopup", ".", "setWindowLayoutMode", "(", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ",", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ")", ";", "}", "else", "{", "mPopup", ".", "setWindowLayoutMode", "(", "0", ",", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ")", ";", "if", "(", "mDropDownWidth", "==", "ViewGroup", ".", "LayoutParams", ".", "WRAP_CONTENT", ")", "{", "mPopup", ".", "setWidth", "(", "getDropDownAnchorView", "(", ")", ".", "getWidth", "(", ")", ")", ";", "}", "else", "{", "mPopup", ".", "setWidth", "(", "mDropDownWidth", ")", ";", "}", "}", "mPopup", ".", "setHeight", "(", "height", ")", ";", "mPopup", ".", "setInputMethodMode", "(", "MyPopupWindow", ".", "INPUT_METHOD_NEEDED", ")", ";", "mPopup", ".", "setOutsideTouchable", "(", "true", ")", ";", "mPopup", ".", "setTouchInterceptor", "(", "new", "PopupTouchIntercepter", "(", ")", ")", ";", "mPopup", ".", "showAsDropDown", "(", "getDropDownAnchorView", "(", ")", ",", "mDropDownHorizontalOffset", ",", "mDropDownVerticalOffset", ")", ";", "mDropDownList", ".", "setSelection", "(", "ListView", ".", "INVALID_POSITION", ")", ";", "mDropDownList", ".", "requestFocus", "(", ")", ";", "post", "(", "mHideSelector", ")", ";", "}", "}", "private", "int", "buildDropDown", "(", ")", "{", "ViewGroup", "dropDownView", ";", "int", "otherHeights", "=", "0", ";", "if", "(", "mAdapter", "!=", "null", ")", "{", "InputMethodManager", "imm", "=", "(", "InputMethodManager", ")", "activity", ".", "getSystemService", "(", "Context", ".", "INPUT_METHOD_SERVICE", ")", ";", "if", "(", "imm", "!=", "null", ")", "{", "int", "N", "=", "mAdapter", ".", "getCount", "(", ")", ";", "if", "(", "N", ">", "20", ")", "N", "=", "20", ";", "CompletionInfo", "[", "]", "completions", "=", "new", "CompletionInfo", "[", "N", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "N", ";", "i", "++", ")", "{", "Object", "item", "=", "mAdapter", ".", "getItem", "(", "i", ")", ";", "long", "id", "=", "mAdapter", ".", "getItemId", "(", "i", ")", ";", "completions", "[", "i", "]", "=", "new", "CompletionInfo", "(", "id", ",", "i", ",", "convertSelectionToString", "(", "item", ")", ")", ";", "}", "imm", ".", "displayCompletions", "(", "this", ",", "completions", ")", ";", "}", "}", "if", "(", "mDropDownList", "==", "null", ")", "{", "Context", "context", "=", "getContext", "(", ")", ";", "mHideSelector", "=", "new", "ListSelectorHider", "(", ")", ";", "mDropDownList", "=", "new", "DropDownListView", "(", "context", ")", ";", "mDropDownList", ".", "setSelector", "(", "mDropDownListHighlight", ")", ";", "mDropDownList", ".", "setAdapter", "(", "mAdapter", ")", ";", "mDropDownList", ".", "setVerticalFadingEdgeEnabled", "(", "true", ")", ";", "mDropDownList", ".", "setOnItemClickListener", "(", "mDropDownItemClickListener", ")", ";", "mDropDownList", ".", "setFocusable", "(", "true", ")", ";", "mDropDownList", ".", "setFocusableInTouchMode", "(", "true", ")", ";", "if", "(", "mItemSelectedListener", "!=", "null", ")", "{", "mDropDownList", ".", "setOnItemSelectedListener", "(", "mItemSelectedListener", ")", ";", "}", "dropDownView", "=", "mDropDownList", ";", "View", "hintView", "=", "getHintView", "(", "context", ")", ";", "if", "(", "hintView", "!=", "null", ")", "{", "LinearLayout", "hintContainer", "=", "new", "LinearLayout", "(", "context", ")", ";", "hintContainer", ".", "setOrientation", "(", "LinearLayout", ".", "VERTICAL", ")", ";", "LinearLayout", ".", "LayoutParams", "hintParams", "=", "new", "LinearLayout", ".", "LayoutParams", "(", "ViewGroup", ".", "LayoutParams", ".", "FILL_PARENT", ",", "0", ",", "1.0f", ")", ";", "hintContainer", ".", "addView", "(", "dropDownView", ",", "hintParams", ")", ";", "hintContainer", ".", "addView", "(", "hintView", ")", ";", "int", "widthSpec", "=", "MeasureSpec", ".", "makeMeasureSpec", "(", "getWidth", "(", ")", ",", "MeasureSpec", ".", "AT_MOST", ")", ";", "int", "heightSpec", "=", "MeasureSpec", ".", "UNSPECIFIED", ";", "hintView", ".", "measure", "(", "widthSpec", ",", "heightSpec", ")", ";", "hintParams", "=", "(", "LinearLayout", ".", "LayoutParams", ")", "hintView", ".", "getLayoutParams", "(", ")", ";", "otherHeights", "=", "hintView", ".", "getMeasuredHeight", "(", ")", "+", "hintParams", ".", "topMargin", "+", "hintParams", ".", "bottomMargin", ";", "dropDownView", "=", "hintContainer", ";", "}", "mPopup", ".", "setContentView", "(", "dropDownView", ")", ";", "}", "else", "{", "dropDownView", "=", "(", "ViewGroup", ")", "mPopup", ".", "getContentView", "(", ")", ";", "final", "View", "view", "=", "dropDownView", ".", "findViewById", "(", "HINT_VIEW_ID", ")", ";", "if", "(", "view", "!=", "null", ")", "{", "LinearLayout", ".", "LayoutParams", "hintParams", "=", "(", "LinearLayout", ".", "LayoutParams", ")", "view", ".", "getLayoutParams", "(", ")", ";", "otherHeights", "=", "view", ".", "getMeasuredHeight", "(", ")", "+", "hintParams", ".", "topMargin", "+", "hintParams", ".", "bottomMargin", ";", "}", "}", "final", "int", "maxHeight", "=", "mPopup", ".", "getMaxAvailableHeight", "(", "this", ",", "mDropDownVerticalOffset", ")", ";", "return", "mDropDownList", ".", "measureHeightOfChildren2", "(", "MeasureSpec", ".", "UNSPECIFIED", ",", "0", ",", "-", "1", ",", "maxHeight", "-", "otherHeights", ",", "2", ")", "+", "otherHeights", ";", "}", "private", "View", "getHintView", "(", "Context", "context", ")", "{", "return", "null", ";", "}", "public", "void", "setValidator", "(", "Validator", "validator", ")", "{", "mValidator", "=", "validator", ";", "}", "public", "Validator", "getValidator", "(", ")", "{", "return", "mValidator", ";", "}", "public", "void", "performValidation", "(", ")", "{", "if", "(", "mValidator", "==", "null", ")", "return", ";", "CharSequence", "text", "=", "getText", "(", ")", ";", "if", "(", "!", "TextUtils", ".", "isEmpty", "(", "text", ")", "&&", "!", "mValidator", ".", "isValid", "(", "text", ")", ")", "{", "setText", "(", "mValidator", ".", "fixText", "(", "text", ")", ")", ";", "}", "}", "public", "void", "setTextNoDropdown", "(", "CharSequence", "text", ")", "{", "setThreshold", "(", "1000", ")", ";", "setText", "(", "text", ")", ";", "setThreshold", "(", "0", ")", ";", "}", "protected", "Filter", "getFilter", "(", ")", "{", "return", "mFilter", ";", "}", "private", "class", "ListSelectorHider", "implements", "Runnable", "{", "public", "void", "run", "(", ")", "{", "if", "(", "mDropDownList", "!=", "null", ")", "{", "mDropDownList", ".", "requestLayout", "(", ")", ";", "}", "}", "}", "private", "class", "PopupTouchIntercepter", "implements", "OnTouchListener", "{", "public", "boolean", "onTouch", "(", "View", "v", ",", "MotionEvent", "event", ")", "{", "if", "(", "event", ".", "getAction", "(", ")", "==", "MotionEvent", ".", "ACTION_DOWN", ")", "{", "mPopup", ".", "setInputMethodMode", "(", "MyPopupWindow", ".", "INPUT_METHOD_NOT_NEEDED", ")", ";", "mPopup", ".", "update", "(", ")", ";", "}", "return", "false", ";", "}", "}", "private", "class", "DropDownItemClickListener", "implements", "AdapterView", ".", "OnItemClickListener", "{", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "v", ",", "int", "position", ",", "long", "id", ")", "{", "performCompletion", "(", "v", ",", "position", ",", "id", ")", ";", "}", "}", "private", "static", "class", "DropDownListView", "extends", "ListView", "{", "public", "DropDownListView", "(", "Context", "context", ")", "{", "super", "(", "context", ",", "null", ",", "android", ".", "R", ".", "attr", ".", "dropDownListViewStyle", ")", ";", "}", "@", "SuppressWarnings", "(", "\"unused\"", ")", "public", "int", "getSelectionPaddingTop", "(", ")", "{", "return", "0", ";", "}", "@", "SuppressWarnings", "(", "\"unused\"", ")", "public", "int", "getSelectionPaddingBottom", "(", ")", "{", "return", "0", ";", "}", "@", "Override", "public", "boolean", "hasWindowFocus", "(", ")", "{", "return", "true", ";", "}", "@", "Override", "public", "boolean", "isFocused", "(", ")", "{", "return", "true", ";", "}", "@", "Override", "public", "boolean", "hasFocus", "(", ")", "{", "return", "true", ";", "}", "final", "int", "measureHeightOfChildren2", "(", "int", "widthMeasureSpec", ",", "int", "startPosition", ",", "int", "endPosition", ",", "final", "int", "maxHeight", ",", "int", "disallowPartialChildPosition", ")", "{", "endPosition", "=", "(", "endPosition", "==", "-", "1", ")", "?", "getAdapter", "(", ")", ".", "getCount", "(", ")", "-", "1", ":", "endPosition", ";", "int", "returnedHeight", "=", "0", ";", "final", "int", "dividerHeight", "=", "1", ";", "float", "scale", "=", "getResources", "(", ")", ".", "getDisplayMetrics", "(", ")", ".", "density", ";", "for", "(", "int", "i", "=", "startPosition", ";", "i", "<=", "endPosition", ";", "++", "i", ")", "{", "if", "(", "i", ">", "0", ")", "{", "returnedHeight", "+=", "dividerHeight", ";", "}", "returnedHeight", "+=", "(", "int", ")", "(", "41f", "*", "scale", "+", "0.5f", ")", ";", "if", "(", "returnedHeight", ">=", "maxHeight", ")", "return", "maxHeight", ";", "}", "return", "returnedHeight", ";", "}", "protected", "int", "[", "]", "onCreateDrawableState", "(", "int", "extraSpace", ")", "{", "int", "[", "]", "res", "=", "super", ".", "onCreateDrawableState", "(", "extraSpace", ")", ";", "return", "res", ";", "}", "}", "public", "interface", "Validator", "{", "boolean", "isValid", "(", "CharSequence", "text", ")", ";", "CharSequence", "fixText", "(", "CharSequence", "invalidText", ")", ";", "}", "}", "</s>" ]
8,534
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "BufferedOutputStream", ";", "import", "java", ".", "io", ".", "BufferedReader", ";", "import", "java", ".", "io", ".", "Closeable", ";", "import", "java", ".", "io", ".", "File", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "Flushable", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "java", ".", "io", ".", "InputStreamReader", ";", "import", "java", ".", "io", ".", "Reader", ";", "import", "java", ".", "net", ".", "HttpURLConnection", ";", "import", "java", ".", "net", ".", "URL", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Collections", ";", "import", "java", ".", "util", ".", "List", ";", "import", "java", ".", "util", ".", "zip", ".", "GZIPInputStream", ";", "import", "java", ".", "util", ".", "zip", ".", "ZipEntry", ";", "import", "java", ".", "util", ".", "zip", ".", "ZipFile", ";", "import", "org", ".", "apache", ".", "http", ".", "Header", ";", "import", "org", ".", "apache", ".", "http", ".", "HttpResponse", ";", "import", "org", ".", "apache", ".", "http", ".", "NameValuePair", ";", "import", "org", ".", "apache", ".", "http", ".", "client", ".", "HttpClient", ";", "import", "org", ".", "apache", ".", "http", ".", "client", ".", "entity", ".", "UrlEncodedFormEntity", ";", "import", "org", ".", "apache", ".", "http", ".", "client", ".", "methods", ".", "HttpGet", ";", "import", "org", ".", "apache", ".", "http", ".", "client", ".", "methods", ".", "HttpPost", ";", "import", "org", ".", "apache", ".", "http", ".", "entity", ".", "StringEntity", ";", "import", "org", ".", "apache", ".", "http", ".", "impl", ".", "client", ".", "DefaultHttpClient", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "os", ".", "Environment", ";", "public", "class", "IOUtils", "{", "private", "static", "final", "int", "PROGRESS_UPDATE_INTERVAL", "=", "700", ";", "public", "static", "void", "close", "(", "Closeable", "c", ")", "{", "if", "(", "c", "==", "null", ")", "return", ";", "try", "{", "c", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "public", "static", "String", "doGetRequest", "(", "String", "url", ")", "throws", "IOException", "{", "InputStream", "is", "=", "doGetRequestReturnStream", "(", "url", ")", ";", "BufferedReader", "br", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "is", ")", ")", ";", "String", "line", ";", "StringBuilder", "reply", "=", "new", "StringBuilder", "(", ")", ";", "while", "(", "(", "line", "=", "br", ".", "readLine", "(", ")", ")", "!=", "null", ")", "{", "reply", ".", "append", "(", "line", "+", "'\\n'", ")", ";", "}", "is", ".", "close", "(", ")", ";", "br", ".", "close", "(", ")", ";", "return", "reply", ".", "toString", "(", ")", ";", "}", "public", "static", "InputStream", "doGetRequestReturnStream", "(", "String", "url", ")", "throws", "IOException", "{", "HttpClient", "httpClient", "=", "new", "DefaultHttpClient", "(", ")", ";", "HttpGet", "httpGet", "=", "new", "HttpGet", "(", "url", ")", ";", "InputStream", "is", "=", "httpClient", ".", "execute", "(", "httpGet", ")", ".", "getEntity", "(", ")", ".", "getContent", "(", ")", ";", "return", "is", ";", "}", "public", "static", "String", "doPostRequest", "(", "String", "url", ",", "List", "<", "NameValuePair", ">", "nameValuePairs", ")", "throws", "IOException", "{", "InputStream", "is", "=", "doPostRequestGetStream", "(", "url", ",", "nameValuePairs", ")", ";", "BufferedReader", "br", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "is", ")", ")", ";", "StringBuilder", "reply", "=", "new", "StringBuilder", "(", ")", ";", "String", "line", "=", "null", ";", "while", "(", "(", "line", "=", "br", ".", "readLine", "(", ")", ")", "!=", "null", ")", "{", "reply", ".", "append", "(", "line", "+", "'\\n'", ")", ";", "}", "is", ".", "close", "(", ")", ";", "br", ".", "close", "(", ")", ";", "return", "reply", ".", "toString", "(", ")", ";", "}", "public", "static", "InputStream", "doPostRequestGetStream", "(", "String", "url", ",", "List", "<", "NameValuePair", ">", "nameValuePairs", ")", "throws", "IOException", "{", "HttpClient", "httpClient", "=", "new", "DefaultHttpClient", "(", ")", ";", "HttpPost", "postRequest", "=", "new", "HttpPost", "(", "url", ")", ";", "String", "userAgent", "=", "\"\"", ";", "postRequest", ".", "setHeader", "(", "\"User-Agent\"", ",", "userAgent", ")", ";", "String", "accept", "=", "\"\"", ";", "postRequest", ".", "setHeader", "(", "\"Accept\"", ",", "accept", ")", ";", "String", "acceptLanguage", "=", "\"\"", ";", "postRequest", ".", "setHeader", "(", "\"\"", ",", "acceptLanguage", ")", ";", "String", "acceptEncoding", "=", "\"gzip,deflate\"", ";", "postRequest", ".", "setHeader", "(", "\"\"", ",", "acceptEncoding", ")", ";", "String", "acceptCharset", "=", "\"\"", ";", "postRequest", ".", "setHeader", "(", "\"\"", ",", "acceptCharset", ")", ";", "String", "keepAlive", "=", "\"115\"", ";", "postRequest", ".", "setHeader", "(", "\"Keep-Alive\"", ",", "keepAlive", ")", ";", "String", "connection", "=", "\"keep-alive\"", ";", "postRequest", ".", "setHeader", "(", "\"Connection\"", ",", "connection", ")", ";", "String", "contentType", "=", "\"\"", ";", "postRequest", ".", "setHeader", "(", "\"Content-Type\"", ",", "contentType", ")", ";", "postRequest", ".", "setEntity", "(", "new", "UrlEncodedFormEntity", "(", "nameValuePairs", ",", "\"UTF-8\"", ")", ")", ";", "HttpResponse", "response", "=", "httpClient", ".", "execute", "(", "postRequest", ")", ";", "InputStream", "is", "=", "response", ".", "getEntity", "(", ")", ".", "getContent", "(", ")", ";", "Header", "contentEncoding", "=", "response", ".", "getFirstHeader", "(", "\"\"", ")", ";", "if", "(", "contentEncoding", "!=", "null", "&&", "contentEncoding", ".", "getValue", "(", ")", ".", "equalsIgnoreCase", "(", "\"gzip\"", ")", ")", "{", "is", "=", "new", "GZIPInputStream", "(", "is", ")", ";", "}", "return", "is", ";", "}", "public", "static", "boolean", "downloadFile", "(", "String", "url", ",", "File", "file", ",", "ProgressListener", "l", ")", "{", "FileOutputStream", "fos", "=", "null", ";", "InputStream", "is", "=", "null", ";", "try", "{", "HttpURLConnection", "connection", "=", "(", "HttpURLConnection", ")", "new", "URL", "(", "url", ")", ".", "openConnection", "(", ")", ";", "connection", ".", "connect", "(", ")", ";", "int", "completed", "=", "0", ";", "int", "total", "=", "connection", ".", "getContentLength", "(", ")", ";", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "file", ".", "getParentFile", "(", ")", ".", "mkdirs", "(", ")", ";", "fos", "=", "new", "FileOutputStream", "(", "file", ")", ";", "is", "=", "connection", ".", "getInputStream", "(", ")", ";", "long", "lastUpdate", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "byte", "[", "]", "buffer", "=", "new", "byte", "[", "8192", "]", ";", "int", "len", "=", "0", ";", "while", "(", "(", "len", "=", "is", ".", "read", "(", "buffer", ")", ")", ">", "0", ")", "{", "if", "(", "l", ".", "isCancelRequested", "(", ")", ")", "return", "false", ";", "fos", ".", "write", "(", "buffer", ",", "0", ",", "len", ")", ";", "completed", "+=", "len", ";", "if", "(", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "lastUpdate", ")", ">", "PROGRESS_UPDATE_INTERVAL", ")", "{", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "lastUpdate", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "}", "}", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "return", "true", ";", "}", "catch", "(", "IOException", "e", ")", "{", "if", "(", "file", ".", "exists", "(", ")", ")", "file", ".", "delete", "(", ")", ";", "return", "false", ";", "}", "finally", "{", "close", "(", "is", ")", ";", "flush", "(", "fos", ")", ";", "close", "(", "fos", ")", ";", "}", "}", "private", "static", "void", "flush", "(", "Flushable", "f", ")", "{", "if", "(", "f", "==", "null", ")", "return", ";", "try", "{", "f", ".", "flush", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "public", "static", "File", "getMapsDirectory", "(", "Context", "context", ")", "{", "File", "root", "=", "Environment", ".", "getExternalStorageDirectory", "(", ")", ";", "File", "dir", "=", "new", "File", "(", "root", ".", "getAbsolutePath", "(", ")", "+", "\"\"", "+", "context", ".", "getPackageName", "(", ")", "+", "\"/files/maps\"", ")", ";", "dir", ".", "mkdirs", "(", ")", ";", "return", "dir", ";", "}", "public", "static", "InputStream", "httpPostGetStream", "(", "String", "url", ",", "String", "body", ",", "Header", "...", "headers", ")", "throws", "IOException", "{", "HttpClient", "httpClient", "=", "new", "DefaultHttpClient", "(", ")", ";", "HttpPost", "postRequest", "=", "new", "HttpPost", "(", "url", ")", ";", "postRequest", ".", "setEntity", "(", "new", "StringEntity", "(", "body", ",", "\"UTF-8\"", ")", ")", ";", "for", "(", "Header", "header", ":", "headers", ")", "{", "postRequest", ".", "setHeader", "(", "header", ")", ";", "}", "HttpResponse", "response", "=", "httpClient", ".", "execute", "(", "postRequest", ")", ";", "InputStream", "is", "=", "response", ".", "getEntity", "(", ")", ".", "getContent", "(", ")", ";", "return", "is", ";", "}", "public", "static", "String", "readFile", "(", "File", "file", ")", "throws", "IOException", "{", "FileInputStream", "stream", "=", "new", "FileInputStream", "(", "file", ")", ";", "try", "{", "Reader", "reader", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "stream", ")", ")", ";", "StringBuilder", "builder", "=", "new", "StringBuilder", "(", ")", ";", "char", "[", "]", "buffer", "=", "new", "char", "[", "8192", "]", ";", "int", "read", ";", "while", "(", "(", "read", "=", "reader", ".", "read", "(", "buffer", ",", "0", ",", "buffer", ".", "length", ")", ")", ">", "0", ")", "{", "builder", ".", "append", "(", "buffer", ",", "0", ",", "read", ")", ";", "}", "return", "builder", ".", "toString", "(", ")", ";", "}", "finally", "{", "stream", ".", "close", "(", ")", ";", "}", "}", "public", "static", "boolean", "unzip", "(", "File", "archive", ",", "File", "dir", ",", "ProgressListener", "l", ")", "{", "final", "int", "BUFFER", "=", "2048", ";", "try", "{", "int", "completed", "=", "0", ";", "int", "total", "=", "0", ";", "ZipFile", "zipFile", "=", "new", "ZipFile", "(", "archive", ")", ";", "ArrayList", "<", "?", "extends", "ZipEntry", ">", "entries", "=", "Collections", ".", "list", "(", "zipFile", ".", "entries", "(", ")", ")", ";", "for", "(", "ZipEntry", "entry", ":", "entries", ")", "{", "total", "+=", "entry", ".", "getSize", "(", ")", ";", "}", "if", "(", "l", "!=", "null", ")", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "long", "lastUpdate", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "BufferedOutputStream", "bos", "=", "null", ";", "for", "(", "ZipEntry", "entry", ":", "entries", ")", "{", "File", "file", "=", "new", "File", "(", "dir", ",", "entry", ".", "getName", "(", ")", ")", ";", "if", "(", "entry", ".", "isDirectory", "(", ")", ")", "{", "file", ".", "mkdir", "(", ")", ";", "}", "else", "{", "InputStream", "is", "=", "zipFile", ".", "getInputStream", "(", "entry", ")", ";", "FileOutputStream", "fos", "=", "new", "FileOutputStream", "(", "file", ")", ";", "bos", "=", "new", "BufferedOutputStream", "(", "fos", ",", "BUFFER", ")", ";", "int", "count", ";", "byte", "data", "[", "]", "=", "new", "byte", "[", "BUFFER", "]", ";", "while", "(", "(", "count", "=", "is", ".", "read", "(", "data", ",", "0", ",", "BUFFER", ")", ")", "!=", "-", "1", ")", "{", "bos", ".", "write", "(", "data", ",", "0", ",", "count", ")", ";", "completed", "+=", "count", ";", "if", "(", "l", "!=", "null", "&&", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "lastUpdate", ")", ">", "PROGRESS_UPDATE_INTERVAL", ")", "{", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "lastUpdate", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "}", "}", "bos", ".", "flush", "(", ")", ";", "bos", ".", "close", "(", ")", ";", "is", ".", "close", "(", ")", ";", "}", "}", "if", "(", "l", "!=", "null", ")", "l", ".", "updateProgress", "(", "completed", ",", "total", ")", ";", "return", "true", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "return", "false", ";", "}", "}", "public", "static", "interface", "ProgressListener", "{", "public", "boolean", "isCancelRequested", "(", ")", ";", "public", "void", "updateProgress", "(", "int", "completed", ",", "int", "total", ")", ";", "}", "}", "</s>" ]
8,535
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemClickListener", ";", "import", "android", ".", "widget", ".", "ListView", ";", "import", "android", ".", "widget", ".", "SimpleAdapter", ";", "public", "class", "LanguageActivity", "extends", "AbstractActivity", "{", "private", "String", "[", "]", "languages", ";", "private", "String", "[", "]", "languageCodes", ";", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "language", ")", ";", "languages", "=", "getResources", "(", ")", ".", "getStringArray", "(", "R", ".", "array", ".", "languages", ")", ";", "languages", "[", "0", "]", "=", "\"English\"", ";", "languageCodes", "=", "getResources", "(", ")", ".", "getStringArray", "(", "R", ".", "array", ".", "languageCodes", ")", ";", "ArrayList", "<", "HashMap", "<", "String", ",", "String", ">", ">", "data", "=", "new", "ArrayList", "<", "HashMap", "<", "String", ",", "String", ">", ">", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "languages", ".", "length", ";", "i", "++", ")", "{", "HashMap", "<", "String", ",", "String", ">", "map", "=", "new", "HashMap", "<", "String", ",", "String", ">", "(", ")", ";", "map", ".", "put", "(", "\"language\"", ",", "languages", "[", "i", "]", ")", ";", "data", ".", "add", "(", "map", ")", ";", "}", "SimpleAdapter", "adapter", "=", "new", "SimpleAdapter", "(", "this", ",", "data", ",", "R", ".", "layout", ".", "language_item", ",", "new", "String", "[", "]", "{", "\"language\"", "}", ",", "new", "int", "[", "]", "{", "R", ".", "id", ".", "tvLanguage", "}", ")", ";", "ListView", "lvLanguages", "=", "(", "ListView", ")", "findViewById", "(", "R", ".", "id", ".", "lvLanguages", ")", ";", "lvLanguages", ".", "setAdapter", "(", "adapter", ")", ";", "lvLanguages", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "Editor", "editor", "=", "preferences", ".", "edit", "(", ")", ";", "editor", ".", "putString", "(", "Common", ".", "PREF_LANGUAGE", ",", "languageCodes", "[", "position", "]", ")", ";", "editor", ".", "commit", "(", ")", ";", "Areas", ".", "reset", "(", ")", ";", "startActivity", "(", "Utils", ".", "getIntent", "(", "LanguageActivity", ".", "this", ",", "\"\"", ")", ")", ";", "finish", "(", ")", ";", "}", "}", ")", ";", "}", "}", "</s>" ]
8,536
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "util", ".", "Log", ";", "public", "class", "Common", "{", "public", "static", "final", "boolean", "DEVELOPER_MODE", "=", "true", ";", "public", "static", "final", "String", "PREF_AREA", "=", "\"area\"", ";", "public", "static", "final", "String", "PREF_GPS_ENABLED", "=", "\"enableGps\"", ";", "public", "static", "final", "String", "PREF_LANGUAGE", "=", "\"language\"", ";", "public", "static", "final", "String", "PREF_MAP_ID", "=", "\"mapId\"", ";", "public", "static", "final", "String", "PREF_MAP_ZOOM_CONTROLS", "=", "\"\"", ";", "public", "static", "final", "String", "PREF_STATUS_LAST_UPDATE", "=", "\"\"", ";", "public", "static", "final", "String", "PREF_WATCHED_JOURNEY", "=", "\"\"", ";", "public", "static", "final", "String", "TAG", "=", "\"Pubtran\"", ";", "public", "static", "void", "logd", "(", "String", "message", ")", "{", "Log", ".", "d", "(", "TAG", ",", "message", ")", ";", "}", "public", "static", "void", "logd", "(", "int", "message", ")", "{", "Log", ".", "d", "(", "TAG", ",", "\"\"", "+", "message", ")", ";", "}", "public", "static", "void", "logd", "(", "long", "message", ")", "{", "Log", ".", "d", "(", "TAG", ",", "\"\"", "+", "message", ")", ";", "}", "public", "static", "void", "loge", "(", "String", "message", ")", "{", "Log", ".", "e", "(", "TAG", ",", "message", ")", ";", "}", "}", "</s>" ]
8,537
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "ObjectInputStream", ";", "import", "android", ".", "app", ".", "AlarmManager", ";", "import", "android", ".", "app", ".", "PendingIntent", ";", "import", "android", ".", "content", ".", "BroadcastReceiver", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "public", "class", "JourneyNotifsReceiver", "extends", "BroadcastReceiver", "{", "private", "Long", "getNotifyTime", "(", "String", "fileName", ",", "Context", "context", ")", "{", "Long", "whenNotify", "=", "null", ";", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "context", ".", "openFileInput", "(", "fileName", ")", ";", "ObjectInputStream", "ois", "=", "new", "ObjectInputStream", "(", "fis", ")", ";", "ois", ".", "readInt", "(", ")", ";", "whenNotify", "=", "ois", ".", "readLong", "(", ")", ";", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "return", "whenNotify", ";", "}", "@", "Override", "public", "void", "onReceive", "(", "Context", "context", ",", "Intent", "intent", ")", "{", "boolean", "atLeastOneActive", "=", "false", ";", "Long", "alarmTime", "=", "null", ";", "for", "(", "String", "fileName", ":", "JourneyNotifs", ".", "getFileNames", "(", "context", ")", ")", "{", "long", "whenNotify", "=", "getNotifyTime", "(", "fileName", ",", "context", ")", ";", "if", "(", "whenNotify", ">", "System", ".", "currentTimeMillis", "(", ")", ")", "{", "if", "(", "alarmTime", "==", "null", "||", "alarmTime", ">", "whenNotify", ")", "alarmTime", "=", "whenNotify", ";", "}", "else", "{", "atLeastOneActive", "=", "true", ";", "}", "}", "if", "(", "alarmTime", "!=", "null", ")", "{", "AlarmManager", "alarmManager", "=", "(", "AlarmManager", ")", "context", ".", "getSystemService", "(", "Context", ".", "ALARM_SERVICE", ")", ";", "Intent", "broadcastIntent", "=", "new", "Intent", "(", "context", ",", "JourneyNotifsReceiver", ".", "class", ")", ";", "PendingIntent", "pendingIntent", "=", "PendingIntent", ".", "getBroadcast", "(", "context", ",", "0", ",", "broadcastIntent", ",", "0", ")", ";", "alarmManager", ".", "set", "(", "AlarmManager", ".", "RTC", ",", "alarmTime", ",", "pendingIntent", ")", ";", "}", "if", "(", "atLeastOneActive", ")", "{", "Intent", "serviceIntent", "=", "new", "Intent", "(", "context", ",", "JourneyNotifsService", ".", "class", ")", ";", "context", ".", "startService", "(", "serviceIntent", ")", ";", "}", "}", "}", "</s>" ]
8,538
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "view", ".", "View", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "abstract", "class", "AbstractSearchOptions", "implements", "Serializable", "{", "private", "boolean", "timeIsDeparture", ";", "private", "Calendar", "when", ";", "private", "String", "from", ";", "private", "String", "to", ";", "private", "String", "areaIdentifier", ";", "public", "abstract", "void", "loadFromSharedPreferences", "(", "SharedPreferences", "preferences", ",", "MainActivity", "activity", ")", ";", "public", "abstract", "void", "onPause", "(", "SharedPreferences", "preferences", ")", ";", "public", "abstract", "void", "onResume", "(", ")", ";", "public", "abstract", "void", "reset", "(", "MainActivity", "activity", ")", ";", "public", "abstract", "void", "show", "(", "MainActivity", "activity", ",", "View", "button", ")", ";", "public", "String", "getFrom", "(", ")", "{", "return", "from", ";", "}", "public", "String", "getTo", "(", ")", "{", "return", "to", ";", "}", "public", "Calendar", "getWhen", "(", ")", "{", "return", "when", ";", "}", "public", "String", "getAreaIdentifier", "(", ")", "{", "return", "areaIdentifier", ";", "}", "public", "boolean", "isTimeDeparture", "(", ")", "{", "return", "timeIsDeparture", ";", "}", "public", "void", "setBasicOptions", "(", "String", "from", ",", "String", "to", ",", "Calendar", "when", ",", "boolean", "timeIsDeparture", ",", "String", "areaIdentifier", ")", "{", "this", ".", "from", "=", "from", ";", "this", ".", "to", "=", "to", ";", "this", ".", "when", "=", "when", ";", "this", ".", "timeIsDeparture", "=", "timeIsDeparture", ";", "this", ".", "areaIdentifier", "=", "areaIdentifier", ";", "}", "}", "</s>" ]
8,539
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "ObjectInputStream", ";", "import", "java", ".", "io", ".", "ObjectOutputStream", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "public", "class", "JourneyNotifs", "{", "private", "static", "final", "String", "FILENAME_START", "=", "\"\"", ";", "public", "static", "synchronized", "String", "getFileName", "(", "Context", "context", ",", "AbstractJourney", "journey", ")", "{", "String", "fileName", "=", "null", ";", "for", "(", "String", "f", ":", "getFileNames", "(", "context", ")", ")", "{", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "context", ".", "openFileInput", "(", "f", ")", ";", "int", "hashCode", "=", "new", "ObjectInputStream", "(", "fis", ")", ".", "readInt", "(", ")", ";", "if", "(", "hashCode", "==", "journey", ".", "hashCode", "(", ")", ")", "fileName", "=", "f", ";", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "}", "return", "fileName", ";", "}", "public", "static", "synchronized", "ArrayList", "<", "String", ">", "getFileNames", "(", "Context", "context", ")", "{", "ArrayList", "<", "String", ">", "files", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "for", "(", "String", "name", ":", "context", ".", "fileList", "(", ")", ")", "{", "if", "(", "name", ".", "startsWith", "(", "FILENAME_START", ")", ")", "files", ".", "add", "(", "name", ")", ";", "}", "return", "files", ";", "}", "public", "static", "synchronized", "boolean", "isJourneyWatched", "(", "AbstractJourney", "journey", ",", "Context", "context", ")", "{", "boolean", "isWatched", "=", "false", ";", "for", "(", "String", "fileName", ":", "getFileNames", "(", "context", ")", ")", "{", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "context", ".", "openFileInput", "(", "fileName", ")", ";", "int", "hashCode", "=", "new", "ObjectInputStream", "(", "fis", ")", ".", "readInt", "(", ")", ";", "if", "(", "hashCode", "==", "journey", ".", "hashCode", "(", ")", ")", "isWatched", "=", "true", ";", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "}", "return", "isWatched", ";", "}", "public", "static", "synchronized", "void", "remove", "(", "Context", "context", ",", "String", "fileName", ")", "{", "context", ".", "deleteFile", "(", "fileName", ")", ";", "}", "public", "synchronized", "static", "void", "watchJourney", "(", "Context", "context", ",", "long", "whenNotify", ",", "AbstractJourney", "journey", ",", "AbstractResults", "results", ",", "int", "journeyIndex", ")", "{", "int", "startIndex", "=", "results", ".", "startIndex", ";", "int", "endIndex", "=", "results", ".", "endIndex", ";", "boolean", "loadPrevEnabled", "=", "results", ".", "loadPrevEnabled", ";", "boolean", "loadNextEnabled", "=", "results", ".", "loadNextEnabled", ";", "results", ".", "setJourneyIndexes", "(", "journeyIndex", ",", "journeyIndex", "+", "1", ")", ";", "FileOutputStream", "fos", "=", "null", ";", "try", "{", "String", "fileName", "=", "FILENAME_START", "+", "System", ".", "currentTimeMillis", "(", ")", ";", "fos", "=", "context", ".", "openFileOutput", "(", "fileName", ",", "Context", ".", "MODE_PRIVATE", ")", ";", "ObjectOutputStream", "oos", "=", "new", "ObjectOutputStream", "(", "fos", ")", ";", "oos", ".", "writeInt", "(", "journey", ".", "hashCode", "(", ")", ")", ";", "oos", ".", "writeLong", "(", "whenNotify", ")", ";", "oos", ".", "writeObject", "(", "journey", ")", ";", "oos", ".", "writeObject", "(", "results", ")", ";", "fos", ".", "close", "(", ")", ";", "context", ".", "sendBroadcast", "(", "new", "Intent", "(", "context", ",", "JourneyNotifsReceiver", ".", "class", ")", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fos", ")", ";", "}", "results", ".", "startIndex", "=", "startIndex", ";", "results", ".", "endIndex", "=", "endIndex", ";", "results", ".", "loadPrevEnabled", "=", "loadPrevEnabled", ";", "results", ".", "loadNextEnabled", "=", "loadNextEnabled", ";", "}", "}", "</s>" ]
8,540
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "ObjectInputStream", ";", "import", "java", ".", "io", ".", "ObjectOutputStream", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Collections", ";", "import", "java", ".", "util", ".", "Comparator", ";", "import", "android", ".", "content", ".", "Context", ";", "public", "class", "SavedResults", "{", "private", "static", "final", "int", "MAX_SAVED_RESULTS", "=", "7", ";", "private", "static", "final", "String", "FILENAME_START", "=", "\"\"", ";", "private", "static", "void", "deleteOld", "(", "Context", "context", ")", "{", "ArrayList", "<", "String", ">", "files", "=", "getFileNames", "(", "context", ")", ";", "for", "(", "int", "i", "=", "files", ".", "size", "(", ")", "-", "1", ";", "i", ">=", "MAX_SAVED_RESULTS", ";", "i", "--", ")", "{", "context", ".", "deleteFile", "(", "files", ".", "get", "(", "i", ")", ")", ";", "files", ".", "remove", "(", "i", ")", ";", "}", "}", "public", "static", "ArrayList", "<", "String", ">", "getFileNames", "(", "Context", "context", ")", "{", "ArrayList", "<", "String", ">", "files", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "for", "(", "String", "name", ":", "context", ".", "fileList", "(", ")", ")", "{", "if", "(", "name", ".", "startsWith", "(", "FILENAME_START", ")", ")", "files", ".", "add", "(", "name", ")", ";", "}", "Collections", ".", "sort", "(", "files", ",", "new", "Comparator", "<", "String", ">", "(", ")", "{", "@", "Override", "public", "int", "compare", "(", "String", "s1", ",", "String", "s2", ")", "{", "long", "t1", "=", "getTime", "(", "s1", ")", ";", "long", "t2", "=", "getTime", "(", "s2", ")", ";", "if", "(", "t2", ">", "t1", ")", "return", "1", ";", "else", "if", "(", "t2", "<", "t1", ")", "return", "-", "1", ";", "else", "return", "0", ";", "}", "}", ")", ";", "return", "files", ";", "}", "public", "static", "long", "getTime", "(", "String", "fileName", ")", "{", "return", "new", "Long", "(", "fileName", ".", "substring", "(", "FILENAME_START", ".", "length", "(", ")", ")", ")", ";", "}", "public", "static", "AbstractSearchOptions", "loadSearchOptions", "(", "Context", "context", ",", "String", "fileName", ")", "{", "AbstractSearchOptions", "options", "=", "null", ";", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "context", ".", "openFileInput", "(", "fileName", ")", ";", "ObjectInputStream", "ois", "=", "new", "ObjectInputStream", "(", "fis", ")", ";", "options", "=", "(", "AbstractSearchOptions", ")", "ois", ".", "readObject", "(", ")", ";", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "catch", "(", "ClassNotFoundException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "return", "options", ";", "}", "public", "static", "AbstractResults", "loadResults", "(", "Context", "context", ",", "String", "fileName", ")", "{", "AbstractResults", "results", "=", "null", ";", "FileInputStream", "fis", "=", "null", ";", "try", "{", "fis", "=", "context", ".", "openFileInput", "(", "fileName", ")", ";", "ObjectInputStream", "ois", "=", "new", "ObjectInputStream", "(", "fis", ")", ";", "ois", ".", "readObject", "(", ")", ";", "results", "=", "(", "AbstractResults", ")", "ois", ".", "readObject", "(", ")", ";", "fis", ".", "close", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fis", ")", ";", "}", "return", "results", ";", "}", "public", "static", "void", "saveResults", "(", "final", "Context", "context", ",", "final", "AbstractResults", "results", ")", "{", "new", "Thread", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "FileOutputStream", "fos", "=", "null", ";", "try", "{", "fos", "=", "context", ".", "openFileOutput", "(", "FILENAME_START", "+", "results", ".", "whenCreated", "(", ")", ",", "Context", ".", "MODE_PRIVATE", ")", ";", "ObjectOutputStream", "oos", "=", "new", "ObjectOutputStream", "(", "fos", ")", ";", "oos", ".", "writeObject", "(", "results", ".", "getOptions", "(", ")", ")", ";", "oos", ".", "writeObject", "(", "results", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "finally", "{", "IOUtils", ".", "close", "(", "fos", ")", ";", "}", "deleteOld", "(", "context", ")", ";", "}", "}", ")", ".", "start", "(", ")", ";", "}", "}", "</s>" ]
8,541
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "content", ".", "Context", ";", "public", "class", "Favourites", "{", "public", "static", "void", "add", "(", "Favourite", "favourite", ",", "Context", "context", ")", "{", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "favouritesAdd", "(", "favourite", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "}", "public", "static", "void", "delete", "(", "Favourite", "favourite", ",", "Context", "context", ")", "{", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "favouritesDelete", "(", "favourite", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "}", "public", "static", "ArrayList", "<", "Favourite", ">", "getAll", "(", "Context", "context", ")", "{", "ArrayList", "<", "Favourite", ">", "favourites", ";", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "favourites", "=", "dbAdapter", ".", "favouritesGetAll", "(", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "return", "favourites", ";", "}", "public", "static", "void", "update", "(", "Favourite", "favourite", ",", "Context", "context", ")", "{", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "context", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "favouritesUpdate", "(", "favourite", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "Favourite", "implements", "Serializable", "{", "private", "boolean", "swapped", "=", "false", ";", "private", "Integer", "id", ";", "private", "Integer", "order", ";", "private", "String", "departure", ";", "private", "String", "arrival", ";", "private", "String", "areaClass", ";", "public", "Favourite", "(", "String", "departure", ",", "String", "arrival", ",", "String", "areaClass", ",", "boolean", "swapped", ",", "int", "id", ",", "int", "order", ")", "{", "this", ".", "departure", "=", "departure", ";", "this", ".", "arrival", "=", "arrival", ";", "this", ".", "areaClass", "=", "areaClass", ";", "this", ".", "swapped", "=", "swapped", ";", "this", ".", "id", "=", "id", ";", "this", ".", "order", "=", "order", ";", "}", "public", "Favourite", "(", "String", "departure", ",", "String", "arrival", ",", "String", "areaClass", ")", "{", "this", ".", "departure", "=", "departure", ";", "this", ".", "arrival", "=", "arrival", ";", "this", ".", "areaClass", "=", "areaClass", ";", "}", "public", "String", "getAreaClass", "(", ")", "{", "return", "areaClass", ";", "}", "public", "String", "getArrival", "(", ")", "{", "return", "arrival", ";", "}", "public", "String", "getDeparture", "(", ")", "{", "return", "departure", ";", "}", "public", "Integer", "getId", "(", ")", "{", "return", "id", ";", "}", "public", "Integer", "getOrder", "(", ")", "{", "return", "order", ";", "}", "public", "boolean", "isSwapped", "(", ")", "{", "return", "swapped", ";", "}", "public", "void", "setOrder", "(", "Integer", "order", ")", "{", "this", ".", "order", "=", "order", ";", "}", "public", "void", "swap", "(", ")", "{", "swapped", "=", "!", "swapped", ";", "}", "}", "}", "</s>" ]
8,542
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "london", ";", "public", "final", "class", "R", "{", "public", "static", "final", "class", "anim", "{", "public", "static", "final", "int", "grow_fade_in", "=", "0x7f040000", ";", "public", "static", "final", "int", "grow_fade_in_from_bottom", "=", "0x7f040001", ";", "public", "static", "final", "int", "shrink_fade_out", "=", "0x7f040002", ";", "public", "static", "final", "int", "shrink_fade_out_from_bottom", "=", "0x7f040003", ";", "}", "public", "static", "final", "class", "array", "{", "public", "static", "final", "int", "languageCodes", "=", "0x7f070001", ";", "public", "static", "final", "int", "languages", "=", "0x7f070000", ";", "}", "public", "static", "final", "class", "attr", "{", "}", "public", "static", "final", "class", "color", "{", "public", "static", "final", "int", "themeColor", "=", "0x7f080000", ";", "}", "public", "static", "final", "class", "dimen", "{", "public", "static", "final", "int", "homescreen_vert_space", "=", "0x7f090000", ";", "}", "public", "static", "final", "class", "drawable", "{", "public", "static", "final", "int", "area_switcher", "=", "0x7f020000", ";", "public", "static", "final", "int", "area_switcher_focused", "=", "0x7f020001", ";", "public", "static", "final", "int", "area_switcher_normal", "=", "0x7f020002", ";", "public", "static", "final", "int", "area_switcher_pressed", "=", "0x7f020003", ";", "public", "static", "final", "int", "arrow_right", "=", "0x7f020004", ";", "public", "static", "final", "int", "arrow_white", "=", "0x7f020005", ";", "public", "static", "final", "int", "bg_bottom_dark", "=", "0x7f020006", ";", "public", "static", "final", "int", "bg_highlighted_journey", "=", "0x7f020007", ";", "public", "static", "final", "int", "bg_highlighted_journey_selector", "=", "0x7f020008", ";", "public", "static", "final", "int", "bottom_shadow", "=", "0x7f020009", ";", "public", "static", "final", "int", "btn_flat", "=", "0x7f02000a", ";", "public", "static", "final", "int", "btn_flat_normal", "=", "0x7f02000b", ";", "public", "static", "final", "int", "btn_flat_pressed", "=", "0x7f02000c", ";", "public", "static", "final", "int", "btn_flat_selected", "=", "0x7f02000d", ";", "public", "static", "final", "int", "btn_zoom_in", "=", "0x7f02000e", ";", "public", "static", "final", "int", "btn_zoom_in_disabled", "=", "0x7f02000f", ";", "public", "static", "final", "int", "btn_zoom_in_normal", "=", "0x7f020010", ";", "public", "static", "final", "int", "btn_zoom_in_pressed", "=", "0x7f020011", ";", "public", "static", "final", "int", "btn_zoom_out", "=", "0x7f020012", ";", "public", "static", "final", "int", "btn_zoom_out_disabled", "=", "0x7f020013", ";", "public", "static", "final", "int", "btn_zoom_out_normal", "=", "0x7f020014", ";", "public", "static", "final", "int", "btn_zoom_out_pressed", "=", "0x7f020015", ";", "public", "static", "final", "int", "bus", "=", "0x7f020016", ";", "public", "static", "final", "int", "delete_input", "=", "0x7f020017", ";", "public", "static", "final", "int", "direct", "=", "0x7f020018", ";", "public", "static", "final", "int", "disruption", "=", "0x7f020019", ";", "public", "static", "final", "int", "dlr", "=", "0x7f02001a", ";", "public", "static", "final", "int", "empty_tile", "=", "0x7f02001b", ";", "public", "static", "final", "int", "end_circle", "=", "0x7f02001c", ";", "public", "static", "final", "int", "ic_calendar", "=", "0x7f02001d", ";", "public", "static", "final", "int", "ic_closed", "=", "0x7f02001e", ";", "public", "static", "final", "int", "ic_departures", "=", "0x7f02001f", ";", "public", "static", "final", "int", "ic_disruptions", "=", "0x7f020020", ";", "public", "static", "final", "int", "ic_good_service", "=", "0x7f020021", ";", "public", "static", "final", "int", "ic_history", "=", "0x7f020022", ";", "public", "static", "final", "int", "ic_map", "=", "0x7f020023", ";", "public", "static", "final", "int", "ic_menu_star", "=", "0x7f020024", ";", "public", "static", "final", "int", "ic_minor_delays", "=", "0x7f020025", ";", "public", "static", "final", "int", "ic_part_closure", "=", "0x7f020026", ";", "public", "static", "final", "int", "ic_popup", "=", "0x7f020027", ";", "public", "static", "final", "int", "ic_search_options", "=", "0x7f020028", ";", "public", "static", "final", "int", "ic_search_options_changed", "=", "0x7f020029", ";", "public", "static", "final", "int", "ic_settings", "=", "0x7f02002a", ";", "public", "static", "final", "int", "ic_severe_delays", "=", "0x7f02002b", ";", "public", "static", "final", "int", "ic_share", "=", "0x7f02002c", ";", "public", "static", "final", "int", "ic_show_dropdown", "=", "0x7f02002d", ";", "public", "static", "final", "int", "ic_star", "=", "0x7f02002e", ";", "public", "static", "final", "int", "ic_stat_watch", "=", "0x7f02002f", ";", "public", "static", "final", "int", "ic_ticket", "=", "0x7f020030", ";", "public", "static", "final", "int", "ic_watch", "=", "0x7f020031", ";", "public", "static", "final", "int", "icon", "=", "0x7f020032", ";", "public", "static", "final", "int", "icon_bar", "=", "0x7f020033", ";", "public", "static", "final", "int", "icon_bar_dark", "=", "0x7f020034", ";", "public", "static", "final", "int", "list_view_background", "=", "0x7f020035", ";", "public", "static", "final", "int", "low_deck", "=", "0x7f020036", ";", "public", "static", "final", "int", "map_popup", "=", "0x7f020037", ";", "public", "static", "final", "int", "options_tube", "=", "0x7f020038", ";", "public", "static", "final", "int", "overground", "=", "0x7f020039", ";", "public", "static", "final", "int", "pin", "=", "0x7f02003a", ";", "public", "static", "final", "int", "popup_arrow", "=", "0x7f02003b", ";", "public", "static", "final", "int", "popup_bottom", "=", "0x7f02003c", ";", "public", "static", "final", "int", "popup_top", "=", "0x7f02003d", ";", "public", "static", "final", "int", "rail", "=", "0x7f02003e", ";", "public", "static", "final", "int", "river", "=", "0x7f02003f", ";", "public", "static", "final", "int", "shadow_vertical", "=", "0x7f020040", ";", "public", "static", "final", "int", "simple_btn", "=", "0x7f020041", ";", "public", "static", "final", "int", "simple_btn_normal", "=", "0x7f020042", ";", "public", "static", "final", "int", "simple_btn_pressed", "=", "0x7f020043", ";", "public", "static", "final", "int", "spinner_dropdown_background_down", "=", "0x7f020044", ";", "public", "static", "final", "int", "spinner_dropdown_background_up", "=", "0x7f020045", ";", "public", "static", "final", "int", "start_circle", "=", "0x7f020046", ";", "public", "static", "final", "int", "swap", "=", "0x7f020047", ";", "public", "static", "final", "int", "switch_left", "=", "0x7f020048", ";", "public", "static", "final", "int", "switch_right", "=", "0x7f020049", ";", "public", "static", "final", "int", "title_bar", "=", "0x7f02004a", ";", "public", "static", "final", "int", "title_bar_shadow", "=", "0x7f02004b", ";", "public", "static", "final", "int", "tram", "=", "0x7f02004c", ";", "public", "static", "final", "int", "tube_bak", "=", "0x7f02004d", ";", "public", "static", "final", "int", "tube_cen", "=", "0x7f02004e", ";", "public", "static", "final", "int", "tube_cir", "=", "0x7f02004f", ";", "public", "static", "final", "int", "tube_dis", "=", "0x7f020050", ";", "public", "static", "final", "int", "tube_ham", "=", "0x7f020051", ";", "public", "static", "final", "int", "tube_jub", "=", "0x7f020052", ";", "public", "static", "final", "int", "tube_met", "=", "0x7f020053", ";", "public", "static", "final", "int", "tube_nor", "=", "0x7f020054", ";", "public", "static", "final", "int", "tube_pic", "=", "0x7f020055", ";", "public", "static", "final", "int", "tube_vic", "=", "0x7f020056", ";", "public", "static", "final", "int", "tube_wat", "=", "0x7f020057", ";", "public", "static", "final", "int", "unknown", "=", "0x7f020058", ";", "public", "static", "final", "int", "walk", "=", "0x7f020059", ";", "}", "public", "static", "final", "class", "id", "{", "public", "static", "final", "int", "acFrom", "=", "0x7f0c003e", ";", "public", "static", "final", "int", "acTo", "=", "0x7f0c0041", ";", "public", "static", "final", "int", "btArrowFrom", "=", "0x7f0c003f", ";", "public", "static", "final", "int", "btArrowTo", "=", "0x7f0c0042", ";", "public", "static", "final", "int", "btCancel", "=", "0x7f0c005a", ";", "public", "static", "final", "int", "btCancelWatch", "=", "0x7f0c0062", ";", "public", "static", "final", "int", "btDate", "=", "0x7f0c0047", ";", "public", "static", "final", "int", "btDirections", "=", "0x7f0c002e", ";", "public", "static", "final", "int", "btDisruption", "=", "0x7f0c002d", ";", "public", "static", "final", "int", "btDone", "=", "0x7f0c0067", ";", "public", "static", "final", "int", "btDownloadMap", "=", "0x7f0c0056", ";", "public", "static", "final", "int", "btReset", "=", "0x7f0c0068", ";", "public", "static", "final", "int", "btSearchOptions", "=", "0x7f0c0048", ";", "public", "static", "final", "int", "btSetAsArrival", "=", "0x7f0c0054", ";", "public", "static", "final", "int", "btSetAsDeparture", "=", "0x7f0c0053", ";", "public", "static", "final", "int", "btSwap", "=", "0x7f0c0040", ";", "public", "static", "final", "int", "btTime", "=", "0x7f0c0046", ";", "public", "static", "final", "int", "btZoomIn", "=", "0x7f0c0050", ";", "public", "static", "final", "int", "btZoomOut", "=", "0x7f0c004f", ";", "public", "static", "final", "int", "cbOnlyDirect", "=", "0x7f0c005c", ";", "public", "static", "final", "int", "cbOnlyLowDeck", "=", "0x7f0c005d", ";", "public", "static", "final", "int", "checkedTextView", "=", "0x7f0c006a", ";", "public", "static", "final", "int", "colorBar", "=", "0x7f0c0034", ";", "public", "static", "final", "int", "edFilter", "=", "0x7f0c000d", ";", "public", "static", "final", "int", "favouritesEmpty", "=", "0x7f0c001a", ";", "public", "static", "final", "int", "historyEmpty", "=", "0x7f0c001d", ";", "public", "static", "final", "int", "icon", "=", "0x7f0c0037", ";", "public", "static", "final", "int", "image", "=", "0x7f0c0069", ";", "public", "static", "final", "int", "ivArrow", "=", "0x7f0c005f", ";", "public", "static", "final", "int", "ivDirect", "=", "0x7f0c004a", ";", "public", "static", "final", "int", "ivDisruption", "=", "0x7f0c0031", ";", "public", "static", "final", "int", "ivIcon", "=", "0x7f0c002f", ";", "public", "static", "final", "int", "ivLowDeck", "=", "0x7f0c004b", ";", "public", "static", "final", "int", "ivSwitch", "=", "0x7f0c0045", ";", "public", "static", "final", "int", "llAreaSwitcher", "=", "0x7f0c003c", ";", "public", "static", "final", "int", "llBoards", "=", "0x7f0c0007", ";", "public", "static", "final", "int", "llBottom", "=", "0x7f0c005e", ";", "public", "static", "final", "int", "llBottomBar", "=", "0x7f0c0061", ";", "public", "static", "final", "int", "llClickToLoad", "=", "0x7f0c0039", ";", "public", "static", "final", "int", "llDisruptions", "=", "0x7f0c0016", ";", "public", "static", "final", "int", "llError", "=", "0x7f0c003b", ";", "public", "static", "final", "int", "llFavourites", "=", "0x7f0c001b", ";", "public", "static", "final", "int", "llFindJourney", "=", "0x7f0c0049", ";", "public", "static", "final", "int", "llFrom", "=", "0x7f0c0026", ";", "public", "static", "final", "int", "llHistory", "=", "0x7f0c001c", ";", "public", "static", "final", "int", "llJourneyParts", "=", "0x7f0c0021", ";", "public", "static", "final", "int", "llLines", "=", "0x7f0c0005", ";", "public", "static", "final", "int", "llLoading", "=", "0x7f0c0038", ";", "public", "static", "final", "int", "llMapContainer", "=", "0x7f0c004d", ";", "public", "static", "final", "int", "llMenu", "=", "0x7f0c0023", ";", "public", "static", "final", "int", "llNoMap", "=", "0x7f0c0055", ";", "public", "static", "final", "int", "llProgress", "=", "0x7f0c0057", ";", "public", "static", "final", "int", "llSwitch", "=", "0x7f0c0043", ";", "public", "static", "final", "int", "llTo", "=", "0x7f0c0029", ";", "public", "static", "final", "int", "llTransportModes", "=", "0x7f0c0025", ";", "public", "static", "final", "int", "llZoom", "=", "0x7f0c004e", ";", "public", "static", "final", "int", "lvDepartures", "=", "0x7f0c000e", ";", "public", "static", "final", "int", "lvLanguages", "=", "0x7f0c0032", ";", "public", "static", "final", "int", "lvResults", "=", "0x7f0c0060", ";", "public", "static", "final", "int", "lvTubeStatus", "=", "0x7f0c006c", ";", "public", "static", "final", "int", "pbLoading", "=", "0x7f0c0009", ";", "public", "static", "final", "int", "pbUpdating", "=", "0x7f0c006b", ";", "public", "static", "final", "int", "popup", "=", "0x7f0c0051", ";", "public", "static", "final", "int", "progressBar", "=", "0x7f0c005b", ";", "public", "static", "final", "int", "scollView", "=", "0x7f0c0015", ";", "public", "static", "final", "int", "seekBar", "=", "0x7f0c000f", ";", "public", "static", "final", "int", "showPopup", "=", "0x7f0c0019", ";", "public", "static", "final", "int", "spPreferredMode", "=", "0x7f0c0065", ";", "public", "static", "final", "int", "spWalkingSpeed", "=", "0x7f0c0066", ";", "public", "static", "final", "int", "spWhenNotify", "=", "0x7f0c0012", ";", "public", "static", "final", "int", "spWhichMap", "=", "0x7f0c004c", ";", "public", "static", "final", "int", "text", "=", "0x7f0c000c", ";", "public", "static", "final", "int", "tvArea", "=", "0x7f0c003d", ";", "public", "static", "final", "int", "tvAutocompleteItem", "=", "0x7f0c0000", ";", "public", "static", "final", "int", "tvChangelogItemBody", "=", "0x7f0c0003", ";", "public", "static", "final", "int", "tvChangelogItemDate", "=", "0x7f0c0002", ";", "public", "static", "final", "int", "tvChangelogItemTitle", "=", "0x7f0c0001", ";", "public", "static", "final", "int", "tvConnInfo", "=", "0x7f0c0022", ";", "public", "static", "final", "int", "tvDestination", "=", "0x7f0c000a", ";", "public", "static", "final", "int", "tvDivider", "=", "0x7f0c0024", ";", "public", "static", "final", "int", "tvDuration", "=", "0x7f0c0020", ";", "public", "static", "final", "int", "tvEmail", "=", "0x7f0c0010", ";", "public", "static", "final", "int", "tvFrequency", "=", "0x7f0c002c", ";", "public", "static", "final", "int", "tvFrom", "=", "0x7f0c0017", ";", "public", "static", "final", "int", "tvInfo", "=", "0x7f0c0013", ";", "public", "static", "final", "int", "tvJourneyFromStop", "=", "0x7f0c0027", ";", "public", "static", "final", "int", "tvJourneyFromTime", "=", "0x7f0c0028", ";", "public", "static", "final", "int", "tvJourneyToStop", "=", "0x7f0c002a", ";", "public", "static", "final", "int", "tvJourneyToTime", "=", "0x7f0c002b", ";", "public", "static", "final", "int", "tvLanguage", "=", "0x7f0c0033", ";", "public", "static", "final", "int", "tvLastUpdated", "=", "0x7f0c0014", ";", "public", "static", "final", "int", "tvLeavesIn", "=", "0x7f0c001f", ";", "public", "static", "final", "int", "tvLine", "=", "0x7f0c0006", ";", "public", "static", "final", "int", "tvLoadJourney", "=", "0x7f0c003a", ";", "public", "static", "final", "int", "tvName", "=", "0x7f0c0035", ";", "public", "static", "final", "int", "tvNoData", "=", "0x7f0c0008", ";", "public", "static", "final", "int", "tvOr", "=", "0x7f0c0030", ";", "public", "static", "final", "int", "tvProgress", "=", "0x7f0c0059", ";", "public", "static", "final", "int", "tvProgressTitle", "=", "0x7f0c0058", ";", "public", "static", "final", "int", "tvRouteStop", "=", "0x7f0c0064", ";", "public", "static", "final", "int", "tvRouteTime", "=", "0x7f0c0063", ";", "public", "static", "final", "int", "tvSearchTime", "=", "0x7f0c001e", ";", "public", "static", "final", "int", "tvSms", "=", "0x7f0c0011", ";", "public", "static", "final", "int", "tvStatus", "=", "0x7f0c0036", ";", "public", "static", "final", "int", "tvStopName", "=", "0x7f0c0052", ";", "public", "static", "final", "int", "tvSwitch", "=", "0x7f0c0044", ";", "public", "static", "final", "int", "tvTime", "=", "0x7f0c000b", ";", "public", "static", "final", "int", "tvTitle", "=", "0x7f0c0004", ";", "public", "static", "final", "int", "tvTo", "=", "0x7f0c0018", ";", "}", "public", "static", "final", "class", "layout", "{", "public", "static", "final", "int", "autocomplete_item", "=", "0x7f030000", ";", "public", "static", "final", "int", "changelog_item", "=", "0x7f030001", ";", "public", "static", "final", "int", "departure_board", "=", "0x7f030002", ";", "public", "static", "final", "int", "departure_boards", "=", "0x7f030003", ";", "public", "static", "final", "int", "departure_line", "=", "0x7f030004", ";", "public", "static", "final", "int", "departure_station_item", "=", "0x7f030005", ";", "public", "static", "final", "int", "departures", "=", "0x7f030006", ";", "public", "static", "final", "int", "dialog_share", "=", "0x7f030007", ";", "public", "static", "final", "int", "dialog_watch_journey", "=", "0x7f030008", ";", "public", "static", "final", "int", "disruption", "=", "0x7f030009", ";", "public", "static", "final", "int", "disruptions", "=", "0x7f03000a", ";", "public", "static", "final", "int", "favourite_item", "=", "0x7f03000b", ";", "public", "static", "final", "int", "favourites", "=", "0x7f03000c", ";", "public", "static", "final", "int", "favourites_divider", "=", "0x7f03000d", ";", "public", "static", "final", "int", "history_item", "=", "0x7f03000e", ";", "public", "static", "final", "int", "journey", "=", "0x7f03000f", ";", "public", "static", "final", "int", "journey_detail", "=", "0x7f030010", ";", "public", "static", "final", "int", "journey_part", "=", "0x7f030011", ";", "public", "static", "final", "int", "journey_part_or", "=", "0x7f030012", ";", "public", "static", "final", "int", "journey_part_transport", "=", "0x7f030013", ";", "public", "static", "final", "int", "language", "=", "0x7f030014", ";", "public", "static", "final", "int", "language_item", "=", "0x7f030015", ";", "public", "static", "final", "int", "line_status_item", "=", "0x7f030016", ";", "public", "static", "final", "int", "load_journey_item", "=", "0x7f030017", ";", "public", "static", "final", "int", "main", "=", "0x7f030018", ";", "public", "static", "final", "int", "map", "=", "0x7f030019", ";", "public", "static", "final", "int", "menu_item", "=", "0x7f03001a", ";", "public", "static", "final", "int", "notification_download", "=", "0x7f03001b", ";", "public", "static", "final", "int", "quick_settings", "=", "0x7f03001c", ";", "public", "static", "final", "int", "results", "=", "0x7f03001d", ";", "public", "static", "final", "int", "route_item", "=", "0x7f03001e", ";", "public", "static", "final", "int", "search_options", "=", "0x7f03001f", ";", "public", "static", "final", "int", "transport_mode_item", "=", "0x7f030020", ";", "public", "static", "final", "int", "tube_status", "=", "0x7f030021", ";", "}", "public", "static", "final", "class", "raw", "{", "public", "static", "final", "int", "areas", "=", "0x7f060000", ";", "}", "public", "static", "final", "class", "string", "{", "public", "static", "final", "int", "about", "=", "0x7f0a0008", ";", "public", "static", "final", "int", "addToCalendar", "=", "0x7f0a000a", ";", "public", "static", "final", "int", "addToFavourites", "=", "0x7f0a0007", ";", "public", "static", "final", "int", "airlines", "=", "0x7f0a000b", ";", "public", "static", "final", "int", "androidMarketMissing", "=", "0x7f0a0009", ";", "public", "static", "final", "int", "appName", "=", "0x7f0a000c", ";", "public", "static", "final", "int", "arriveAt", "=", "0x7f0a000d", ";", "public", "static", "final", "int", "arrivesAt", "=", "0x7f0a006e", ";", "public", "static", "final", "int", "buses", "=", "0x7f0a000e", ";", "public", "static", "final", "int", "calendarEventTitle", "=", "0x7f0a000f", ";", "public", "static", "final", "int", "cancel", "=", "0x7f0a0011", ";", "public", "static", "final", "int", "cancelJourneyNotification", "=", "0x7f0a0070", ";", "public", "static", "final", "int", "chooseAsArrival", "=", "0x7f0a0012", ";", "public", "static", "final", "int", "chooseAsDeparture", "=", "0x7f0a0013", ";", "public", "static", "final", "int", "closeInfo", "=", "0x7f0a0010", ";", "public", "static", "final", "int", "date", "=", "0x7f0a0014", ";", "public", "static", "final", "int", "delay", "=", "0x7f0a0015", ";", "public", "static", "final", "int", "departAt", "=", "0x7f0a0016", ";", "public", "static", "final", "int", "departsAt", "=", "0x7f0a006f", ";", "public", "static", "final", "int", "departsInXMins", "=", "0x7f0a006d", ";", "public", "static", "final", "int", "directAndLowDeckNotFound", "=", "0x7f0a0018", ";", "public", "static", "final", "int", "directNotFound", "=", "0x7f0a0017", ";", "public", "static", "final", "int", "downloadMap", "=", "0x7f0a001b", ";", "public", "static", "final", "int", "downloadMapDisabled", "=", "0x7f0a001c", ";", "public", "static", "final", "int", "downloadProgressInfo", "=", "0x7f0a0019", ";", "public", "static", "final", "int", "downloading", "=", "0x7f0a001a", ";", "public", "static", "final", "int", "duration", "=", "0x7f0a001d", ";", "public", "static", "final", "int", "enableGps", "=", "0x7f0a001e", ";", "public", "static", "final", "int", "enableGpsSummary", "=", "0x7f0a001f", ";", "public", "static", "final", "int", "findJourney", "=", "0x7f0a0021", ";", "public", "static", "final", "int", "findingJourney", "=", "0x7f0a0020", ";", "public", "static", "final", "int", "friday", "=", "0x7f0a0004", ";", "public", "static", "final", "int", "from", "=", "0x7f0a0022", ";", "public", "static", "final", "int", "googleCalendarNotInstalled", "=", "0x7f0a0025", ";", "public", "static", "final", "int", "googleMap", "=", "0x7f0a0023", ";", "public", "static", "final", "int", "gpsLocationKnown", "=", "0x7f0a0024", ";", "public", "static", "final", "int", "hours", "=", "0x7f0a0026", ";", "public", "static", "final", "int", "inTime", "=", "0x7f0a0028", ";", "public", "static", "final", "int", "installing", "=", "0x7f0a0027", ";", "public", "static", "final", "int", "journeyDetails", "=", "0x7f0a0029", ";", "public", "static", "final", "int", "journeyDetailsTitle", "=", "0x7f0a002a", ";", "public", "static", "final", "int", "journeyNotFound", "=", "0x7f0a002b", ";", "public", "static", "final", "int", "journeyNotificationCancelled", "=", "0x7f0a0067", ";", "public", "static", "final", "int", "languageChanged", "=", "0x7f0a002c", ";", "public", "static", "final", "int", "languagePreference", "=", "0x7f0a002d", ";", "public", "static", "final", "int", "languagePreferenceSummary", "=", "0x7f0a0071", ";", "public", "static", "final", "int", "leavesIn", "=", "0x7f0a002e", ";", "public", "static", "final", "int", "loadMoreError", "=", "0x7f0a0037", ";", "public", "static", "final", "int", "loadNextJourney", "=", "0x7f0a0038", ";", "public", "static", "final", "int", "loadPrevJourney", "=", "0x7f0a0039", ";", "public", "static", "final", "int", "loadingDelay", "=", "0x7f0a002f", ";", "public", "static", "final", "int", "loadingDelayError", "=", "0x7f0a0030", ";", "public", "static", "final", "int", "loadingIntermediate", "=", "0x7f0a0031", ";", "public", "static", "final", "int", "loadingIntermediateError", "=", "0x7f0a0032", ";", "public", "static", "final", "int", "loadingJourney", "=", "0x7f0a0033", ";", "public", "static", "final", "int", "loadingJourneyIOException", "=", "0x7f0a0034", ";", "public", "static", "final", "int", "loadingJourneyInputEmpty", "=", "0x7f0a0035", ";", "public", "static", "final", "int", "loadingLocation", "=", "0x7f0a0036", ";", "public", "static", "final", "int", "locationAge", "=", "0x7f0a003a", ";", "public", "static", "final", "int", "lowDeckNotFound", "=", "0x7f0a003b", ";", "public", "static", "final", "int", "map", "=", "0x7f0a003d", ";", "public", "static", "final", "int", "mapError", "=", "0x7f0a003e", ";", "public", "static", "final", "int", "mapErrorTitle", "=", "0x7f0a003f", ";", "public", "static", "final", "int", "mapHideZoom", "=", "0x7f0a0041", ";", "public", "static", "final", "int", "mapInfo", "=", "0x7f0a0040", ";", "public", "static", "final", "int", "mapShowZoom", "=", "0x7f0a0042", ";", "public", "static", "final", "int", "mapUnavailable", "=", "0x7f0a0045", ";", "public", "static", "final", "int", "mapXoutOfY", "=", "0x7f0a0044", ";", "public", "static", "final", "int", "menuMyLocation", "=", "0x7f0a0043", ";", "public", "static", "final", "int", "minutes", "=", "0x7f0a0046", ";", "public", "static", "final", "int", "monday", "=", "0x7f0a0000", ";", "public", "static", "final", "int", "myLocation", "=", "0x7f0a0047", ";", "public", "static", "final", "int", "networkLocationKnown", "=", "0x7f0a003c", ";", "public", "static", "final", "int", "notificationTitle", "=", "0x7f0a0048", ";", "public", "static", "final", "int", "now", "=", "0x7f0a0049", ";", "public", "static", "final", "int", "ok", "=", "0x7f0a004a", ";", "public", "static", "final", "int", "oneDayAgo", "=", "0x7f0a0065", ";", "public", "static", "final", "int", "oneHourAgo", "=", "0x7f0a0063", ";", "public", "static", "final", "int", "oneHourBeforeDeparture", "=", "0x7f0a006b", ";", "public", "static", "final", "int", "onlyDirect", "=", "0x7f0a004b", ";", "public", "static", "final", "int", "onlyLowDeck", "=", "0x7f0a004c", ";", "public", "static", "final", "int", "parseError", "=", "0x7f0a004d", ";", "public", "static", "final", "int", "platform", "=", "0x7f0a004e", ";", "public", "static", "final", "int", "prague", "=", "0x7f0a004f", ";", "public", "static", "final", "int", "saturday", "=", "0x7f0a0005", ";", "public", "static", "final", "int", "searchHistory", "=", "0x7f0a0050", ";", "public", "static", "final", "int", "searchHistoryEmpty", "=", "0x7f0a0051", ";", "public", "static", "final", "int", "sendByEmail", "=", "0x7f0a0053", ";", "public", "static", "final", "int", "sendBySms", "=", "0x7f0a0054", ";", "public", "static", "final", "int", "sendJourney", "=", "0x7f0a0052", ";", "public", "static", "final", "int", "setNotification", "=", "0x7f0a0068", ";", "public", "static", "final", "int", "settings", "=", "0x7f0a0055", ";", "public", "static", "final", "int", "spotOnMap", "=", "0x7f0a0057", ";", "public", "static", "final", "int", "startingDownload", "=", "0x7f0a0056", ";", "public", "static", "final", "int", "stopAmbiguous", "=", "0x7f0a0058", ";", "public", "static", "final", "int", "stopDoesntExist", "=", "0x7f0a0059", ";", "public", "static", "final", "int", "sunday", "=", "0x7f0a0006", ";", "public", "static", "final", "int", "thursday", "=", "0x7f0a0003", ";", "public", "static", "final", "int", "time", "=", "0x7f0a005a", ";", "public", "static", "final", "int", "timetable", "=", "0x7f0a005b", ";", "public", "static", "final", "int", "to", "=", "0x7f0a005c", ";", "public", "static", "final", "int", "today", "=", "0x7f0a005d", ";", "public", "static", "final", "int", "tomorrow", "=", "0x7f0a0060", ";", "public", "static", "final", "int", "trains", "=", "0x7f0a005e", ";", "public", "static", "final", "int", "trainsAndBuses", "=", "0x7f0a005f", ";", "public", "static", "final", "int", "tuesday", "=", "0x7f0a0001", ";", "public", "static", "final", "int", "watchJourney", "=", "0x7f0a0072", ";", "public", "static", "final", "int", "watchJourneyCancel", "=", "0x7f0a0073", ";", "public", "static", "final", "int", "wednesday", "=", "0x7f0a0002", ";", "public", "static", "final", "int", "when", "=", "0x7f0a0061", ";", "public", "static", "final", "int", "whenShowNotification", "=", "0x7f0a0069", ";", "public", "static", "final", "int", "xDaysAgo", "=", "0x7f0a0066", ";", "public", "static", "final", "int", "xHoursAgo", "=", "0x7f0a0064", ";", "public", "static", "final", "int", "xHoursBeforeDeparture", "=", "0x7f0a006c", ";", "public", "static", "final", "int", "xMinutesAgo", "=", "0x7f0a0062", ";", "public", "static", "final", "int", "xMinutesBeforeDeparture", "=", "0x7f0a006a", ";", "}", "public", "static", "final", "class", "style", "{", "public", "static", "final", "int", "Animation", "=", "0x7f0b0002", ";", "public", "static", "final", "int", "Animation_DropDownDown", "=", "0x7f0b0003", ";", "public", "static", "final", "int", "Animation_DropDownUp", "=", "0x7f0b0004", ";", "public", "static", "final", "int", "Theme_Pubtran", "=", "0x7f0b0000", ";", "public", "static", "final", "int", "label", "=", "0x7f0b0001", ";", "public", "static", "final", "int", "londonTransportDestination", "=", "0x7f0b0007", ";", "public", "static", "final", "int", "londonTransportName", "=", "0x7f0b0005", ";", "public", "static", "final", "int", "londonTransportNameOr", "=", "0x7f0b0006", ";", "}", "public", "static", "final", "class", "xml", "{", "public", "static", "final", "int", "preferences", "=", "0x7f050000", ";", "}", "}", "</s>" ]
8,543
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "public", "final", "class", "R", "{", "public", "static", "final", "class", "anim", "{", "public", "static", "final", "int", "grow_fade_in", "=", "0x7f040000", ";", "public", "static", "final", "int", "grow_fade_in_from_bottom", "=", "0x7f040001", ";", "public", "static", "final", "int", "shrink_fade_out", "=", "0x7f040002", ";", "public", "static", "final", "int", "shrink_fade_out_from_bottom", "=", "0x7f040003", ";", "}", "public", "static", "final", "class", "array", "{", "public", "static", "final", "int", "languageCodes", "=", "0x7f070001", ";", "public", "static", "final", "int", "languages", "=", "0x7f070000", ";", "}", "public", "static", "final", "class", "attr", "{", "}", "public", "static", "final", "class", "color", "{", "public", "static", "final", "int", "themeColor", "=", "0x7f080000", ";", "}", "public", "static", "final", "class", "dimen", "{", "public", "static", "final", "int", "homescreen_vert_space", "=", "0x7f090000", ";", "}", "public", "static", "final", "class", "drawable", "{", "public", "static", "final", "int", "area_switcher", "=", "0x7f020000", ";", "public", "static", "final", "int", "area_switcher_focused", "=", "0x7f020001", ";", "public", "static", "final", "int", "area_switcher_normal", "=", "0x7f020002", ";", "public", "static", "final", "int", "area_switcher_pressed", "=", "0x7f020003", ";", "public", "static", "final", "int", "arrow_right", "=", "0x7f020004", ";", "public", "static", "final", "int", "arrow_white", "=", "0x7f020005", ";", "public", "static", "final", "int", "bg_bottom_dark", "=", "0x7f020006", ";", "public", "static", "final", "int", "bg_highlighted_journey", "=", "0x7f020007", ";", "public", "static", "final", "int", "bg_highlighted_journey_selector", "=", "0x7f020008", ";", "public", "static", "final", "int", "bottom_shadow", "=", "0x7f020009", ";", "public", "static", "final", "int", "btn_flat", "=", "0x7f02000a", ";", "public", "static", "final", "int", "btn_flat_normal", "=", "0x7f02000b", ";", "public", "static", "final", "int", "btn_flat_pressed", "=", "0x7f02000c", ";", "public", "static", "final", "int", "btn_flat_selected", "=", "0x7f02000d", ";", "public", "static", "final", "int", "btn_zoom_in", "=", "0x7f02000e", ";", "public", "static", "final", "int", "btn_zoom_in_disabled", "=", "0x7f02000f", ";", "public", "static", "final", "int", "btn_zoom_in_normal", "=", "0x7f020010", ";", "public", "static", "final", "int", "btn_zoom_in_pressed", "=", "0x7f020011", ";", "public", "static", "final", "int", "btn_zoom_out", "=", "0x7f020012", ";", "public", "static", "final", "int", "btn_zoom_out_disabled", "=", "0x7f020013", ";", "public", "static", "final", "int", "btn_zoom_out_normal", "=", "0x7f020014", ";", "public", "static", "final", "int", "btn_zoom_out_pressed", "=", "0x7f020015", ";", "public", "static", "final", "int", "bus", "=", "0x7f020016", ";", "public", "static", "final", "int", "delete_input", "=", "0x7f020017", ";", "public", "static", "final", "int", "direct", "=", "0x7f020018", ";", "public", "static", "final", "int", "disruption", "=", "0x7f020019", ";", "public", "static", "final", "int", "dlr", "=", "0x7f02001a", ";", "public", "static", "final", "int", "empty_tile", "=", "0x7f02001b", ";", "public", "static", "final", "int", "end_circle", "=", "0x7f02001c", ";", "public", "static", "final", "int", "ic_calendar", "=", "0x7f02001d", ";", "public", "static", "final", "int", "ic_closed", "=", "0x7f02001e", ";", "public", "static", "final", "int", "ic_departures", "=", "0x7f02001f", ";", "public", "static", "final", "int", "ic_disruptions", "=", "0x7f020020", ";", "public", "static", "final", "int", "ic_good_service", "=", "0x7f020021", ";", "public", "static", "final", "int", "ic_history", "=", "0x7f020022", ";", "public", "static", "final", "int", "ic_map", "=", "0x7f020023", ";", "public", "static", "final", "int", "ic_menu_star", "=", "0x7f020024", ";", "public", "static", "final", "int", "ic_minor_delays", "=", "0x7f020025", ";", "public", "static", "final", "int", "ic_part_closure", "=", "0x7f020026", ";", "public", "static", "final", "int", "ic_popup", "=", "0x7f020027", ";", "public", "static", "final", "int", "ic_search_options", "=", "0x7f020028", ";", "public", "static", "final", "int", "ic_search_options_changed", "=", "0x7f020029", ";", "public", "static", "final", "int", "ic_settings", "=", "0x7f02002a", ";", "public", "static", "final", "int", "ic_severe_delays", "=", "0x7f02002b", ";", "public", "static", "final", "int", "ic_share", "=", "0x7f02002c", ";", "public", "static", "final", "int", "ic_show_dropdown", "=", "0x7f02002d", ";", "public", "static", "final", "int", "ic_star", "=", "0x7f02002e", ";", "public", "static", "final", "int", "ic_stat_watch", "=", "0x7f02002f", ";", "public", "static", "final", "int", "ic_ticket", "=", "0x7f020030", ";", "public", "static", "final", "int", "ic_watch", "=", "0x7f020031", ";", "public", "static", "final", "int", "icon", "=", "0x7f020032", ";", "public", "static", "final", "int", "icon_bar", "=", "0x7f020033", ";", "public", "static", "final", "int", "icon_bar_dark", "=", "0x7f020034", ";", "public", "static", "final", "int", "list_view_background", "=", "0x7f020035", ";", "public", "static", "final", "int", "low_deck", "=", "0x7f020036", ";", "public", "static", "final", "int", "map_popup", "=", "0x7f020037", ";", "public", "static", "final", "int", "options_tube", "=", "0x7f020038", ";", "public", "static", "final", "int", "overground", "=", "0x7f020039", ";", "public", "static", "final", "int", "pin", "=", "0x7f02003a", ";", "public", "static", "final", "int", "popup_arrow", "=", "0x7f02003b", ";", "public", "static", "final", "int", "popup_bottom", "=", "0x7f02003c", ";", "public", "static", "final", "int", "popup_top", "=", "0x7f02003d", ";", "public", "static", "final", "int", "rail", "=", "0x7f02003e", ";", "public", "static", "final", "int", "river", "=", "0x7f02003f", ";", "public", "static", "final", "int", "shadow_vertical", "=", "0x7f020040", ";", "public", "static", "final", "int", "simple_btn", "=", "0x7f020041", ";", "public", "static", "final", "int", "simple_btn_normal", "=", "0x7f020042", ";", "public", "static", "final", "int", "simple_btn_pressed", "=", "0x7f020043", ";", "public", "static", "final", "int", "spinner_dropdown_background_down", "=", "0x7f020044", ";", "public", "static", "final", "int", "spinner_dropdown_background_up", "=", "0x7f020045", ";", "public", "static", "final", "int", "start_circle", "=", "0x7f020046", ";", "public", "static", "final", "int", "swap", "=", "0x7f020047", ";", "public", "static", "final", "int", "switch_left", "=", "0x7f020048", ";", "public", "static", "final", "int", "switch_right", "=", "0x7f020049", ";", "public", "static", "final", "int", "title_bar", "=", "0x7f02004a", ";", "public", "static", "final", "int", "title_bar_shadow", "=", "0x7f02004b", ";", "public", "static", "final", "int", "tram", "=", "0x7f02004c", ";", "public", "static", "final", "int", "tube_bak", "=", "0x7f02004d", ";", "public", "static", "final", "int", "tube_cen", "=", "0x7f02004e", ";", "public", "static", "final", "int", "tube_cir", "=", "0x7f02004f", ";", "public", "static", "final", "int", "tube_dis", "=", "0x7f020050", ";", "public", "static", "final", "int", "tube_ham", "=", "0x7f020051", ";", "public", "static", "final", "int", "tube_jub", "=", "0x7f020052", ";", "public", "static", "final", "int", "tube_met", "=", "0x7f020053", ";", "public", "static", "final", "int", "tube_nor", "=", "0x7f020054", ";", "public", "static", "final", "int", "tube_pic", "=", "0x7f020055", ";", "public", "static", "final", "int", "tube_vic", "=", "0x7f020056", ";", "public", "static", "final", "int", "tube_wat", "=", "0x7f020057", ";", "public", "static", "final", "int", "unknown", "=", "0x7f020058", ";", "public", "static", "final", "int", "walk", "=", "0x7f020059", ";", "}", "public", "static", "final", "class", "id", "{", "public", "static", "final", "int", "acFrom", "=", "0x7f0c003e", ";", "public", "static", "final", "int", "acTo", "=", "0x7f0c0041", ";", "public", "static", "final", "int", "btArrowFrom", "=", "0x7f0c003f", ";", "public", "static", "final", "int", "btArrowTo", "=", "0x7f0c0042", ";", "public", "static", "final", "int", "btCancel", "=", "0x7f0c005a", ";", "public", "static", "final", "int", "btCancelWatch", "=", "0x7f0c0062", ";", "public", "static", "final", "int", "btDate", "=", "0x7f0c0047", ";", "public", "static", "final", "int", "btDirections", "=", "0x7f0c002e", ";", "public", "static", "final", "int", "btDisruption", "=", "0x7f0c002d", ";", "public", "static", "final", "int", "btDone", "=", "0x7f0c0067", ";", "public", "static", "final", "int", "btDownloadMap", "=", "0x7f0c0056", ";", "public", "static", "final", "int", "btReset", "=", "0x7f0c0068", ";", "public", "static", "final", "int", "btSearchOptions", "=", "0x7f0c0048", ";", "public", "static", "final", "int", "btSetAsArrival", "=", "0x7f0c0054", ";", "public", "static", "final", "int", "btSetAsDeparture", "=", "0x7f0c0053", ";", "public", "static", "final", "int", "btSwap", "=", "0x7f0c0040", ";", "public", "static", "final", "int", "btTime", "=", "0x7f0c0046", ";", "public", "static", "final", "int", "btZoomIn", "=", "0x7f0c0050", ";", "public", "static", "final", "int", "btZoomOut", "=", "0x7f0c004f", ";", "public", "static", "final", "int", "cbOnlyDirect", "=", "0x7f0c005c", ";", "public", "static", "final", "int", "cbOnlyLowDeck", "=", "0x7f0c005d", ";", "public", "static", "final", "int", "checkedTextView", "=", "0x7f0c006a", ";", "public", "static", "final", "int", "colorBar", "=", "0x7f0c0034", ";", "public", "static", "final", "int", "edFilter", "=", "0x7f0c000d", ";", "public", "static", "final", "int", "favouritesEmpty", "=", "0x7f0c001a", ";", "public", "static", "final", "int", "historyEmpty", "=", "0x7f0c001d", ";", "public", "static", "final", "int", "icon", "=", "0x7f0c0037", ";", "public", "static", "final", "int", "image", "=", "0x7f0c0069", ";", "public", "static", "final", "int", "ivArrow", "=", "0x7f0c005f", ";", "public", "static", "final", "int", "ivDirect", "=", "0x7f0c004a", ";", "public", "static", "final", "int", "ivDisruption", "=", "0x7f0c0031", ";", "public", "static", "final", "int", "ivIcon", "=", "0x7f0c002f", ";", "public", "static", "final", "int", "ivLowDeck", "=", "0x7f0c004b", ";", "public", "static", "final", "int", "ivSwitch", "=", "0x7f0c0045", ";", "public", "static", "final", "int", "llAreaSwitcher", "=", "0x7f0c003c", ";", "public", "static", "final", "int", "llBoards", "=", "0x7f0c0007", ";", "public", "static", "final", "int", "llBottom", "=", "0x7f0c005e", ";", "public", "static", "final", "int", "llBottomBar", "=", "0x7f0c0061", ";", "public", "static", "final", "int", "llClickToLoad", "=", "0x7f0c0039", ";", "public", "static", "final", "int", "llDisruptions", "=", "0x7f0c0016", ";", "public", "static", "final", "int", "llError", "=", "0x7f0c003b", ";", "public", "static", "final", "int", "llFavourites", "=", "0x7f0c001b", ";", "public", "static", "final", "int", "llFindJourney", "=", "0x7f0c0049", ";", "public", "static", "final", "int", "llFrom", "=", "0x7f0c0026", ";", "public", "static", "final", "int", "llHistory", "=", "0x7f0c001c", ";", "public", "static", "final", "int", "llJourneyParts", "=", "0x7f0c0021", ";", "public", "static", "final", "int", "llLines", "=", "0x7f0c0005", ";", "public", "static", "final", "int", "llLoading", "=", "0x7f0c0038", ";", "public", "static", "final", "int", "llMapContainer", "=", "0x7f0c004d", ";", "public", "static", "final", "int", "llMenu", "=", "0x7f0c0023", ";", "public", "static", "final", "int", "llNoMap", "=", "0x7f0c0055", ";", "public", "static", "final", "int", "llProgress", "=", "0x7f0c0057", ";", "public", "static", "final", "int", "llSwitch", "=", "0x7f0c0043", ";", "public", "static", "final", "int", "llTo", "=", "0x7f0c0029", ";", "public", "static", "final", "int", "llTransportModes", "=", "0x7f0c0025", ";", "public", "static", "final", "int", "llZoom", "=", "0x7f0c004e", ";", "public", "static", "final", "int", "lvDepartures", "=", "0x7f0c000e", ";", "public", "static", "final", "int", "lvLanguages", "=", "0x7f0c0032", ";", "public", "static", "final", "int", "lvResults", "=", "0x7f0c0060", ";", "public", "static", "final", "int", "lvTubeStatus", "=", "0x7f0c006c", ";", "public", "static", "final", "int", "pbLoading", "=", "0x7f0c0009", ";", "public", "static", "final", "int", "pbUpdating", "=", "0x7f0c006b", ";", "public", "static", "final", "int", "popup", "=", "0x7f0c0051", ";", "public", "static", "final", "int", "progressBar", "=", "0x7f0c005b", ";", "public", "static", "final", "int", "scollView", "=", "0x7f0c0015", ";", "public", "static", "final", "int", "seekBar", "=", "0x7f0c000f", ";", "public", "static", "final", "int", "showPopup", "=", "0x7f0c0019", ";", "public", "static", "final", "int", "spPreferredMode", "=", "0x7f0c0065", ";", "public", "static", "final", "int", "spWalkingSpeed", "=", "0x7f0c0066", ";", "public", "static", "final", "int", "spWhenNotify", "=", "0x7f0c0012", ";", "public", "static", "final", "int", "spWhichMap", "=", "0x7f0c004c", ";", "public", "static", "final", "int", "text", "=", "0x7f0c000c", ";", "public", "static", "final", "int", "tvArea", "=", "0x7f0c003d", ";", "public", "static", "final", "int", "tvAutocompleteItem", "=", "0x7f0c0000", ";", "public", "static", "final", "int", "tvChangelogItemBody", "=", "0x7f0c0003", ";", "public", "static", "final", "int", "tvChangelogItemDate", "=", "0x7f0c0002", ";", "public", "static", "final", "int", "tvChangelogItemTitle", "=", "0x7f0c0001", ";", "public", "static", "final", "int", "tvConnInfo", "=", "0x7f0c0022", ";", "public", "static", "final", "int", "tvDestination", "=", "0x7f0c000a", ";", "public", "static", "final", "int", "tvDivider", "=", "0x7f0c0024", ";", "public", "static", "final", "int", "tvDuration", "=", "0x7f0c0020", ";", "public", "static", "final", "int", "tvEmail", "=", "0x7f0c0010", ";", "public", "static", "final", "int", "tvFrequency", "=", "0x7f0c002c", ";", "public", "static", "final", "int", "tvFrom", "=", "0x7f0c0017", ";", "public", "static", "final", "int", "tvInfo", "=", "0x7f0c0013", ";", "public", "static", "final", "int", "tvJourneyFromStop", "=", "0x7f0c0027", ";", "public", "static", "final", "int", "tvJourneyFromTime", "=", "0x7f0c0028", ";", "public", "static", "final", "int", "tvJourneyToStop", "=", "0x7f0c002a", ";", "public", "static", "final", "int", "tvJourneyToTime", "=", "0x7f0c002b", ";", "public", "static", "final", "int", "tvLanguage", "=", "0x7f0c0033", ";", "public", "static", "final", "int", "tvLastUpdated", "=", "0x7f0c0014", ";", "public", "static", "final", "int", "tvLeavesIn", "=", "0x7f0c001f", ";", "public", "static", "final", "int", "tvLine", "=", "0x7f0c0006", ";", "public", "static", "final", "int", "tvLoadJourney", "=", "0x7f0c003a", ";", "public", "static", "final", "int", "tvName", "=", "0x7f0c0035", ";", "public", "static", "final", "int", "tvNoData", "=", "0x7f0c0008", ";", "public", "static", "final", "int", "tvOr", "=", "0x7f0c0030", ";", "public", "static", "final", "int", "tvProgress", "=", "0x7f0c0059", ";", "public", "static", "final", "int", "tvProgressTitle", "=", "0x7f0c0058", ";", "public", "static", "final", "int", "tvRouteStop", "=", "0x7f0c0064", ";", "public", "static", "final", "int", "tvRouteTime", "=", "0x7f0c0063", ";", "public", "static", "final", "int", "tvSearchTime", "=", "0x7f0c001e", ";", "public", "static", "final", "int", "tvSms", "=", "0x7f0c0011", ";", "public", "static", "final", "int", "tvStatus", "=", "0x7f0c0036", ";", "public", "static", "final", "int", "tvStopName", "=", "0x7f0c0052", ";", "public", "static", "final", "int", "tvSwitch", "=", "0x7f0c0044", ";", "public", "static", "final", "int", "tvTime", "=", "0x7f0c000b", ";", "public", "static", "final", "int", "tvTitle", "=", "0x7f0c0004", ";", "public", "static", "final", "int", "tvTo", "=", "0x7f0c0018", ";", "}", "public", "static", "final", "class", "layout", "{", "public", "static", "final", "int", "autocomplete_item", "=", "0x7f030000", ";", "public", "static", "final", "int", "changelog_item", "=", "0x7f030001", ";", "public", "static", "final", "int", "departure_board", "=", "0x7f030002", ";", "public", "static", "final", "int", "departure_boards", "=", "0x7f030003", ";", "public", "static", "final", "int", "departure_line", "=", "0x7f030004", ";", "public", "static", "final", "int", "departure_station_item", "=", "0x7f030005", ";", "public", "static", "final", "int", "departures", "=", "0x7f030006", ";", "public", "static", "final", "int", "dialog_share", "=", "0x7f030007", ";", "public", "static", "final", "int", "dialog_watch_journey", "=", "0x7f030008", ";", "public", "static", "final", "int", "disruption", "=", "0x7f030009", ";", "public", "static", "final", "int", "disruptions", "=", "0x7f03000a", ";", "public", "static", "final", "int", "favourite_item", "=", "0x7f03000b", ";", "public", "static", "final", "int", "favourites", "=", "0x7f03000c", ";", "public", "static", "final", "int", "favourites_divider", "=", "0x7f03000d", ";", "public", "static", "final", "int", "history_item", "=", "0x7f03000e", ";", "public", "static", "final", "int", "journey", "=", "0x7f03000f", ";", "public", "static", "final", "int", "journey_detail", "=", "0x7f030010", ";", "public", "static", "final", "int", "journey_part", "=", "0x7f030011", ";", "public", "static", "final", "int", "journey_part_or", "=", "0x7f030012", ";", "public", "static", "final", "int", "journey_part_transport", "=", "0x7f030013", ";", "public", "static", "final", "int", "language", "=", "0x7f030014", ";", "public", "static", "final", "int", "language_item", "=", "0x7f030015", ";", "public", "static", "final", "int", "line_status_item", "=", "0x7f030016", ";", "public", "static", "final", "int", "load_journey_item", "=", "0x7f030017", ";", "public", "static", "final", "int", "main", "=", "0x7f030018", ";", "public", "static", "final", "int", "map", "=", "0x7f030019", ";", "public", "static", "final", "int", "menu_item", "=", "0x7f03001a", ";", "public", "static", "final", "int", "notification_download", "=", "0x7f03001b", ";", "public", "static", "final", "int", "quick_settings", "=", "0x7f03001c", ";", "public", "static", "final", "int", "results", "=", "0x7f03001d", ";", "public", "static", "final", "int", "route_item", "=", "0x7f03001e", ";", "public", "static", "final", "int", "search_options", "=", "0x7f03001f", ";", "public", "static", "final", "int", "transport_mode_item", "=", "0x7f030020", ";", "public", "static", "final", "int", "tube_status", "=", "0x7f030021", ";", "}", "public", "static", "final", "class", "raw", "{", "public", "static", "final", "int", "areas", "=", "0x7f060000", ";", "}", "public", "static", "final", "class", "string", "{", "public", "static", "final", "int", "about", "=", "0x7f0a0008", ";", "public", "static", "final", "int", "addToCalendar", "=", "0x7f0a000a", ";", "public", "static", "final", "int", "addToFavourites", "=", "0x7f0a0007", ";", "public", "static", "final", "int", "airlines", "=", "0x7f0a000b", ";", "public", "static", "final", "int", "androidMarketMissing", "=", "0x7f0a0009", ";", "public", "static", "final", "int", "appName", "=", "0x7f0a000c", ";", "public", "static", "final", "int", "arriveAt", "=", "0x7f0a000d", ";", "public", "static", "final", "int", "arrivesAt", "=", "0x7f0a006e", ";", "public", "static", "final", "int", "buses", "=", "0x7f0a000e", ";", "public", "static", "final", "int", "calendarEventTitle", "=", "0x7f0a000f", ";", "public", "static", "final", "int", "cancel", "=", "0x7f0a0011", ";", "public", "static", "final", "int", "cancelJourneyNotification", "=", "0x7f0a0070", ";", "public", "static", "final", "int", "chooseAsArrival", "=", "0x7f0a0012", ";", "public", "static", "final", "int", "chooseAsDeparture", "=", "0x7f0a0013", ";", "public", "static", "final", "int", "closeInfo", "=", "0x7f0a0010", ";", "public", "static", "final", "int", "date", "=", "0x7f0a0014", ";", "public", "static", "final", "int", "delay", "=", "0x7f0a0015", ";", "public", "static", "final", "int", "departAt", "=", "0x7f0a0016", ";", "public", "static", "final", "int", "departsAt", "=", "0x7f0a006f", ";", "public", "static", "final", "int", "departsInXMins", "=", "0x7f0a006d", ";", "public", "static", "final", "int", "directAndLowDeckNotFound", "=", "0x7f0a0018", ";", "public", "static", "final", "int", "directNotFound", "=", "0x7f0a0017", ";", "public", "static", "final", "int", "downloadMap", "=", "0x7f0a001b", ";", "public", "static", "final", "int", "downloadMapDisabled", "=", "0x7f0a001c", ";", "public", "static", "final", "int", "downloadProgressInfo", "=", "0x7f0a0019", ";", "public", "static", "final", "int", "downloading", "=", "0x7f0a001a", ";", "public", "static", "final", "int", "duration", "=", "0x7f0a001d", ";", "public", "static", "final", "int", "enableGps", "=", "0x7f0a001e", ";", "public", "static", "final", "int", "enableGpsSummary", "=", "0x7f0a001f", ";", "public", "static", "final", "int", "findJourney", "=", "0x7f0a0021", ";", "public", "static", "final", "int", "findingJourney", "=", "0x7f0a0020", ";", "public", "static", "final", "int", "friday", "=", "0x7f0a0004", ";", "public", "static", "final", "int", "from", "=", "0x7f0a0022", ";", "public", "static", "final", "int", "googleCalendarNotInstalled", "=", "0x7f0a0025", ";", "public", "static", "final", "int", "googleMap", "=", "0x7f0a0023", ";", "public", "static", "final", "int", "gpsLocationKnown", "=", "0x7f0a0024", ";", "public", "static", "final", "int", "hours", "=", "0x7f0a0026", ";", "public", "static", "final", "int", "inTime", "=", "0x7f0a0028", ";", "public", "static", "final", "int", "installing", "=", "0x7f0a0027", ";", "public", "static", "final", "int", "journeyDetails", "=", "0x7f0a0029", ";", "public", "static", "final", "int", "journeyDetailsTitle", "=", "0x7f0a002a", ";", "public", "static", "final", "int", "journeyNotFound", "=", "0x7f0a002b", ";", "public", "static", "final", "int", "journeyNotificationCancelled", "=", "0x7f0a0067", ";", "public", "static", "final", "int", "languageChanged", "=", "0x7f0a002c", ";", "public", "static", "final", "int", "languagePreference", "=", "0x7f0a002d", ";", "public", "static", "final", "int", "languagePreferenceSummary", "=", "0x7f0a0071", ";", "public", "static", "final", "int", "leavesIn", "=", "0x7f0a002e", ";", "public", "static", "final", "int", "loadMoreError", "=", "0x7f0a0037", ";", "public", "static", "final", "int", "loadNextJourney", "=", "0x7f0a0038", ";", "public", "static", "final", "int", "loadPrevJourney", "=", "0x7f0a0039", ";", "public", "static", "final", "int", "loadingDelay", "=", "0x7f0a002f", ";", "public", "static", "final", "int", "loadingDelayError", "=", "0x7f0a0030", ";", "public", "static", "final", "int", "loadingIntermediate", "=", "0x7f0a0031", ";", "public", "static", "final", "int", "loadingIntermediateError", "=", "0x7f0a0032", ";", "public", "static", "final", "int", "loadingJourney", "=", "0x7f0a0033", ";", "public", "static", "final", "int", "loadingJourneyIOException", "=", "0x7f0a0034", ";", "public", "static", "final", "int", "loadingJourneyInputEmpty", "=", "0x7f0a0035", ";", "public", "static", "final", "int", "loadingLocation", "=", "0x7f0a0036", ";", "public", "static", "final", "int", "locationAge", "=", "0x7f0a003a", ";", "public", "static", "final", "int", "lowDeckNotFound", "=", "0x7f0a003b", ";", "public", "static", "final", "int", "map", "=", "0x7f0a003d", ";", "public", "static", "final", "int", "mapError", "=", "0x7f0a003e", ";", "public", "static", "final", "int", "mapErrorTitle", "=", "0x7f0a003f", ";", "public", "static", "final", "int", "mapHideZoom", "=", "0x7f0a0041", ";", "public", "static", "final", "int", "mapInfo", "=", "0x7f0a0040", ";", "public", "static", "final", "int", "mapShowZoom", "=", "0x7f0a0042", ";", "public", "static", "final", "int", "mapUnavailable", "=", "0x7f0a0045", ";", "public", "static", "final", "int", "mapXoutOfY", "=", "0x7f0a0044", ";", "public", "static", "final", "int", "menuMyLocation", "=", "0x7f0a0043", ";", "public", "static", "final", "int", "minutes", "=", "0x7f0a0046", ";", "public", "static", "final", "int", "monday", "=", "0x7f0a0000", ";", "public", "static", "final", "int", "myLocation", "=", "0x7f0a0047", ";", "public", "static", "final", "int", "networkLocationKnown", "=", "0x7f0a003c", ";", "public", "static", "final", "int", "notificationTitle", "=", "0x7f0a0048", ";", "public", "static", "final", "int", "now", "=", "0x7f0a0049", ";", "public", "static", "final", "int", "ok", "=", "0x7f0a004a", ";", "public", "static", "final", "int", "oneDayAgo", "=", "0x7f0a0065", ";", "public", "static", "final", "int", "oneHourAgo", "=", "0x7f0a0063", ";", "public", "static", "final", "int", "oneHourBeforeDeparture", "=", "0x7f0a006b", ";", "public", "static", "final", "int", "onlyDirect", "=", "0x7f0a004b", ";", "public", "static", "final", "int", "onlyLowDeck", "=", "0x7f0a004c", ";", "public", "static", "final", "int", "parseError", "=", "0x7f0a004d", ";", "public", "static", "final", "int", "platform", "=", "0x7f0a004e", ";", "public", "static", "final", "int", "prague", "=", "0x7f0a004f", ";", "public", "static", "final", "int", "saturday", "=", "0x7f0a0005", ";", "public", "static", "final", "int", "searchHistory", "=", "0x7f0a0050", ";", "public", "static", "final", "int", "searchHistoryEmpty", "=", "0x7f0a0051", ";", "public", "static", "final", "int", "sendByEmail", "=", "0x7f0a0053", ";", "public", "static", "final", "int", "sendBySms", "=", "0x7f0a0054", ";", "public", "static", "final", "int", "sendJourney", "=", "0x7f0a0052", ";", "public", "static", "final", "int", "setNotification", "=", "0x7f0a0068", ";", "public", "static", "final", "int", "settings", "=", "0x7f0a0055", ";", "public", "static", "final", "int", "spotOnMap", "=", "0x7f0a0057", ";", "public", "static", "final", "int", "startingDownload", "=", "0x7f0a0056", ";", "public", "static", "final", "int", "stopAmbiguous", "=", "0x7f0a0058", ";", "public", "static", "final", "int", "stopDoesntExist", "=", "0x7f0a0059", ";", "public", "static", "final", "int", "sunday", "=", "0x7f0a0006", ";", "public", "static", "final", "int", "thursday", "=", "0x7f0a0003", ";", "public", "static", "final", "int", "time", "=", "0x7f0a005a", ";", "public", "static", "final", "int", "timetable", "=", "0x7f0a005b", ";", "public", "static", "final", "int", "to", "=", "0x7f0a005c", ";", "public", "static", "final", "int", "today", "=", "0x7f0a005d", ";", "public", "static", "final", "int", "tomorrow", "=", "0x7f0a0060", ";", "public", "static", "final", "int", "trains", "=", "0x7f0a005e", ";", "public", "static", "final", "int", "trainsAndBuses", "=", "0x7f0a005f", ";", "public", "static", "final", "int", "tuesday", "=", "0x7f0a0001", ";", "public", "static", "final", "int", "watchJourney", "=", "0x7f0a0072", ";", "public", "static", "final", "int", "watchJourneyCancel", "=", "0x7f0a0073", ";", "public", "static", "final", "int", "wednesday", "=", "0x7f0a0002", ";", "public", "static", "final", "int", "when", "=", "0x7f0a0061", ";", "public", "static", "final", "int", "whenShowNotification", "=", "0x7f0a0069", ";", "public", "static", "final", "int", "xDaysAgo", "=", "0x7f0a0066", ";", "public", "static", "final", "int", "xHoursAgo", "=", "0x7f0a0064", ";", "public", "static", "final", "int", "xHoursBeforeDeparture", "=", "0x7f0a006c", ";", "public", "static", "final", "int", "xMinutesAgo", "=", "0x7f0a0062", ";", "public", "static", "final", "int", "xMinutesBeforeDeparture", "=", "0x7f0a006a", ";", "}", "public", "static", "final", "class", "style", "{", "public", "static", "final", "int", "Animation", "=", "0x7f0b0002", ";", "public", "static", "final", "int", "Animation_DropDownDown", "=", "0x7f0b0003", ";", "public", "static", "final", "int", "Animation_DropDownUp", "=", "0x7f0b0004", ";", "public", "static", "final", "int", "Theme_Pubtran", "=", "0x7f0b0000", ";", "public", "static", "final", "int", "label", "=", "0x7f0b0001", ";", "public", "static", "final", "int", "londonTransportDestination", "=", "0x7f0b0007", ";", "public", "static", "final", "int", "londonTransportName", "=", "0x7f0b0005", ";", "public", "static", "final", "int", "londonTransportNameOr", "=", "0x7f0b0006", ";", "}", "public", "static", "final", "class", "xml", "{", "public", "static", "final", "int", "preferences", "=", "0x7f050000", ";", "}", "}", "</s>" ]
8,544
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "DialogInterface", ".", "OnDismissListener", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemClickListener", ";", "import", "android", ".", "widget", ".", "BaseAdapter", ";", "import", "android", ".", "widget", ".", "ListView", ";", "import", "android", ".", "widget", ".", "ProgressBar", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "TubeStatus", ".", "Line", ";", "public", "class", "TubeStatusActivity", "extends", "AbstractActivity", "{", "private", "static", "final", "int", "DIALOG_DETAILS", "=", "0", ";", "private", "static", "final", "int", "DIALOG_ERROR", "=", "1", ";", "private", "static", "final", "int", "UPDATE_INTERVAL", "=", "6", "*", "60", "*", "1000", ";", "private", "Line", "selectedLine", ";", "private", "LineStatusAdapter", "adapter", ";", "private", "SharedPreferences", "preferences", ";", "private", "TextView", "tvInfo", ";", "private", "TubeStatus", "tubeStatus", ";", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "tube_status", ")", ";", "if", "(", "savedInstanceState", "!=", "null", ")", "selectedLine", "=", "(", "Line", ")", "savedInstanceState", ".", "getSerializable", "(", "\"selectedLine\"", ")", ";", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "tvInfo", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvInfo", ")", ";", "tubeStatus", "=", "TubeStatus", ".", "getTubeStatus", "(", "this", ")", ";", "adapter", "=", "new", "LineStatusAdapter", "(", ")", ";", "ListView", "lvTubeStatus", "=", "(", "ListView", ")", "findViewById", "(", "R", ".", "id", ".", "lvTubeStatus", ")", ";", "lvTubeStatus", ".", "setAdapter", "(", "adapter", ")", ";", "lvTubeStatus", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "Line", "line", "=", "tubeStatus", ".", "lines", ".", "get", "(", "position", ")", ";", "if", "(", "line", ".", "details", "!=", "null", ")", "{", "selectedLine", "=", "line", ";", "showDialog", "(", "DIALOG_DETAILS", ")", ";", "}", "}", "}", ")", ";", "}", "@", "Override", "public", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "if", "(", "id", "==", "DIALOG_DETAILS", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "selectedLine", ".", "name", ")", ".", "setMessage", "(", "selectedLine", ".", "details", ")", ";", "builder", ".", "setPositiveButton", "(", "\"OK\"", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "id", ")", "{", "}", "}", ")", ";", "Dialog", "dialog", "=", "builder", ".", "create", "(", ")", ";", "dialog", ".", "setOnDismissListener", "(", "new", "OnDismissListener", "(", ")", "{", "@", "Override", "public", "void", "onDismiss", "(", "DialogInterface", "dialog", ")", "{", "removeDialog", "(", "DIALOG_DETAILS", ")", ";", "}", "}", ")", ";", "return", "dialog", ";", "}", "else", "if", "(", "id", "==", "DIALOG_ERROR", ")", "{", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "\"\"", ")", ".", "setMessage", "(", "\"\"", ")", ";", "builder", ".", "setPositiveButton", "(", "\"Retry\"", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "arg0", ",", "int", "arg1", ")", "{", "if", "(", "getTasksByClass", "(", "DownloadStatusTask", ".", "class", ")", ".", "size", "(", ")", "==", "0", ")", "{", "startTask", "(", "new", "DownloadStatusTask", "(", ")", ")", ";", "}", "}", "}", ")", ";", "builder", ".", "setNegativeButton", "(", "\"Cancel\"", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "id", ")", "{", "finish", "(", ")", ";", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "else", "{", "return", "null", ";", "}", "}", "@", "Override", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "long", "sinceLastUpdate", "=", "System", ".", "currentTimeMillis", "(", ")", "-", "preferences", ".", "getLong", "(", "Common", ".", "PREF_STATUS_LAST_UPDATE", ",", "0", ")", ";", "if", "(", "sinceLastUpdate", ">", "UPDATE_INTERVAL", ")", "{", "if", "(", "getTasksByClass", "(", "DownloadStatusTask", ".", "class", ")", ".", "size", "(", ")", "==", "0", ")", "{", "startTask", "(", "new", "DownloadStatusTask", "(", ")", ")", ";", "}", "}", "setUpdateInfo", "(", "sinceLastUpdate", ",", "getTasksByClass", "(", "DownloadStatusTask", ".", "class", ")", ".", "size", "(", ")", "!=", "0", ")", ";", "}", "@", "Override", "public", "void", "onSaveInstanceState", "(", "Bundle", "bundle", ")", "{", "bundle", ".", "putSerializable", "(", "\"selectedLine\"", ",", "selectedLine", ")", ";", "}", "public", "void", "tubeStatusDownloaded", "(", "TubeStatus", "tubeStatus", ")", "{", "this", ".", "tubeStatus", "=", "tubeStatus", ";", "adapter", ".", "notifyDataSetChanged", "(", ")", ";", "setUpdateInfo", "(", "0", ",", "false", ")", ";", "}", "private", "void", "setUpdateInfo", "(", "long", "millisSinceLastUpdate", ",", "boolean", "loading", ")", "{", "ProgressBar", "pbUpdating", "=", "(", "ProgressBar", ")", "findViewById", "(", "R", ".", "id", ".", "pbUpdating", ")", ";", "if", "(", "loading", ")", "{", "pbUpdating", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvInfo", ".", "setText", "(", "\"Updating...\"", ")", ";", "}", "else", "{", "pbUpdating", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "int", "minutes", "=", "(", "int", ")", "(", "millisSinceLastUpdate", "/", "1000", "/", "60", ")", ";", "if", "(", "minutes", "==", "0", ")", "tvInfo", ".", "setText", "(", "\"Just", "updated\"", ")", ";", "else", "if", "(", "minutes", "==", "1", ")", "tvInfo", ".", "setText", "(", "minutes", "+", "\"", "min", "ago\"", ")", ";", "else", "if", "(", "minutes", "<=", "59", ")", "tvInfo", ".", "setText", "(", "minutes", "+", "\"", "mins", "ago\"", ")", ";", "}", "}", "private", "static", "class", "DownloadStatusTask", "extends", "Task", "<", "TubeStatusActivity", ",", "Void", ",", "Object", ">", "{", "private", "Context", "applicationContext", ";", "@", "Override", "public", "void", "attachActivity", "(", "AbstractActivity", "activity", ")", "{", "super", ".", "attachActivity", "(", "activity", ")", ";", "applicationContext", "=", "activity", ".", "getApplicationContext", "(", ")", ";", "}", "@", "Override", "protected", "Object", "runInBackground", "(", ")", "{", "try", "{", "TubeStatus", "tubeStatus", "=", "TubeStatus", ".", "downloadTubeStatus", "(", "applicationContext", ")", ";", "Editor", "editor", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "applicationContext", ")", ".", "edit", "(", ")", ";", "editor", ".", "putLong", "(", "Common", ".", "PREF_STATUS_LAST_UPDATE", ",", "System", ".", "currentTimeMillis", "(", ")", ")", ";", "editor", ".", "commit", "(", ")", ";", "return", "tubeStatus", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "return", "e", ";", "}", "}", "protected", "void", "runAfter", "(", "Object", "object", ")", "{", "if", "(", "object", "instanceof", "Exception", ")", "{", "activity", ".", "showDialog", "(", "DIALOG_ERROR", ")", ";", "}", "else", "{", "activity", ".", "tubeStatusDownloaded", "(", "(", "TubeStatus", ")", "object", ")", ";", "}", "}", "}", "private", "class", "LineStatusAdapter", "extends", "BaseAdapter", "{", "@", "Override", "public", "int", "getCount", "(", ")", "{", "return", "tubeStatus", ".", "lines", ".", "size", "(", ")", ";", "}", "@", "Override", "public", "Object", "getItem", "(", "int", "position", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "long", "getItemId", "(", "int", "position", ")", "{", "return", "position", ";", "}", "@", "Override", "public", "View", "getView", "(", "int", "position", ",", "View", "convertView", ",", "ViewGroup", "parent", ")", "{", "ViewHolder", "holder", ";", "if", "(", "convertView", "==", "null", ")", "{", "convertView", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "line_status_item", ",", "null", ")", ";", "holder", "=", "new", "ViewHolder", "(", ")", ";", "holder", ".", "name", "=", "(", "TextView", ")", "convertView", ".", "findViewById", "(", "R", ".", "id", ".", "tvName", ")", ";", "holder", ".", "status", "=", "(", "TextView", ")", "convertView", ".", "findViewById", "(", "R", ".", "id", ".", "tvStatus", ")", ";", "holder", ".", "colorBar", "=", "(", "View", ")", "convertView", ".", "findViewById", "(", "R", ".", "id", ".", "colorBar", ")", ";", "holder", ".", "icon", "=", "(", "View", ")", "convertView", ".", "findViewById", "(", "R", ".", "id", ".", "icon", ")", ";", "convertView", ".", "setTag", "(", "holder", ")", ";", "}", "else", "{", "holder", "=", "(", "ViewHolder", ")", "convertView", ".", "getTag", "(", ")", ";", "}", "Line", "line", "=", "TubeStatusActivity", ".", "this", ".", "tubeStatus", ".", "lines", ".", "get", "(", "position", ")", ";", "holder", ".", "name", ".", "setText", "(", "line", ".", "name", ")", ";", "holder", ".", "status", ".", "setText", "(", "line", ".", "status", ")", ";", "holder", ".", "colorBar", ".", "setBackgroundColor", "(", "line", ".", "color", ")", ";", "int", "image", "=", "0", ";", "switch", "(", "line", ".", "statusCode", ")", "{", "case", "TubeStatus", ".", "STATUS_CLOSED", ":", "image", "=", "R", ".", "drawable", ".", "ic_closed", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_GOOD_SERVICE", ":", "image", "=", "R", ".", "drawable", ".", "ic_good_service", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_MINOR_DELAYS", ":", "image", "=", "R", ".", "drawable", ".", "ic_minor_delays", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_PART_CLOSURE", ":", "image", "=", "R", ".", "drawable", ".", "ic_part_closure", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_PLANNED_CLOSURE", ":", "image", "=", "R", ".", "drawable", ".", "ic_closed", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_SEVERE_DELAYS", ":", "image", "=", "R", ".", "drawable", ".", "ic_severe_delays", ";", "break", ";", "case", "TubeStatus", ".", "STATUS_SUSPENDED", ":", "image", "=", "R", ".", "drawable", ".", "ic_closed", ";", "break", ";", "}", "if", "(", "image", "==", "0", ")", "holder", ".", "icon", ".", "setBackgroundColor", "(", "0xffffffff", ")", ";", "else", "holder", ".", "icon", ".", "setBackgroundResource", "(", "image", ")", ";", "return", "convertView", ";", "}", "class", "ViewHolder", "{", "TextView", "name", ";", "TextView", "status", ";", "View", "colorBar", ";", "View", "icon", ";", "}", "}", "}", "</s>" ]
8,545
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "app", ".", "Dialog", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "preference", ".", "PreferenceManager", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "public", "class", "CustomMainActivity", "extends", "MainActivity", "{", "private", "static", "int", "DIALOG_FISRT_START_INFO", "=", "101", ";", "{", "depArrSwitchEnabled", "=", "true", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "showFirstStartMessage", "(", ")", ";", "}", "@", "Override", "protected", "AbstractSearchOptions", "getSearchOptions", "(", "SharedPreferences", "preferences", ")", "{", "return", "new", "SearchOptions", "(", ")", ";", "}", "@", "Override", "protected", "AbstractProvider", "getProvider", "(", ")", "{", "return", "new", "Provider", "(", ")", ";", "}", "@", "Override", "protected", "Dialog", "onCreateDialog", "(", "int", "id", ")", "{", "if", "(", "id", "==", "DIALOG_FISRT_START_INFO", ")", "{", "String", "message", "=", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", ";", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setTitle", "(", "\"\"", ")", ";", "builder", ".", "setMessage", "(", "message", ")", ";", "builder", ".", "setPositiveButton", "(", "\"OK\"", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "id", ")", "{", "}", "}", ")", ";", "return", "builder", ".", "create", "(", ")", ";", "}", "else", "{", "return", "super", ".", "onCreateDialog", "(", "id", ")", ";", "}", "}", "@", "Override", "protected", "void", "onCreateMenu", "(", ")", "{", "addMapMenuItem", "(", ")", ";", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_disruptions", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "arg0", ")", "{", "startActivity", "(", "new", "Intent", "(", "getBaseContext", "(", ")", ",", "TubeStatusActivity", ".", "class", ")", ")", ";", "}", "}", ")", ";", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_departures", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "arg0", ")", "{", "startActivity", "(", "new", "Intent", "(", "getBaseContext", "(", ")", ",", "DeparturesActivity", ".", "class", ")", ")", ";", "}", "}", ")", ";", "addFavouritesMenuItem", "(", ")", ";", "addMenuItem", "(", "R", ".", "drawable", ".", "ic_settings", ",", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "arg0", ")", "{", "startActivityForResult", "(", "new", "Intent", "(", "CustomMainActivity", ".", "this", ",", "PreferencesActivity", ".", "class", ")", ",", "REQUEST_PREFERENCES", ")", ";", "}", "}", ")", ";", "}", "private", "void", "showFirstStartMessage", "(", ")", "{", "String", "FIRST_START", "=", "\"87936220976\"", ";", "SharedPreferences", "preferences", "=", "PreferenceManager", ".", "getDefaultSharedPreferences", "(", "this", ")", ";", "if", "(", "!", "preferences", ".", "getBoolean", "(", "FIRST_START", ",", "true", ")", ")", "return", ";", "showDialog", "(", "DIALOG_FISRT_START_INFO", ")", ";", "Editor", "editor", "=", "preferences", ".", "edit", "(", ")", ";", "editor", ".", "putBoolean", "(", "FIRST_START", ",", "false", ")", ";", "editor", ".", "commit", "(", ")", ";", "}", "}", "</s>" ]
8,546
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "view", ".", "ViewGroup", ".", "LayoutParams", ";", "import", "android", ".", "widget", ".", "ArrayAdapter", ";", "import", "android", ".", "widget", ".", "CheckedTextView", ";", "import", "android", ".", "widget", ".", "ImageView", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "Spinner", ";", "public", "class", "SearchOptionsActivity", "extends", "AbstractActivity", "{", "private", "static", "final", "int", "[", "]", "ICONS", "=", "{", "R", ".", "drawable", ".", "bus", ",", "R", ".", "drawable", ".", "options_tube", ",", "R", ".", "drawable", ".", "dlr", ",", "R", ".", "drawable", ".", "rail", ",", "R", ".", "drawable", ".", "tram", ",", "R", ".", "drawable", ".", "river", "}", ";", "private", "static", "final", "String", "[", "]", "TRANSPORT_MODES", "=", "{", "\"Bus", "or", "Coach\"", ",", "\"Tube\"", ",", "\"DLR\"", ",", "\"Rail\"", ",", "\"Tram\"", ",", "\"River\"", "}", ";", "private", "CheckedTextView", "[", "]", "transportModeCheckboxes", "=", "new", "CheckedTextView", "[", "TRANSPORT_MODES", ".", "length", "]", ";", "private", "SearchOptions", "searchOptions", ";", "private", "Spinner", "spPrefferedMode", ";", "private", "Spinner", "spWalkingSpeed", ";", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "search_options", ")", ";", "LinearLayout", "llTransportModes", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llTransportModes", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "TRANSPORT_MODES", ".", "length", ";", "i", "++", ")", "{", "View", "view", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "transport_mode_item", ",", "null", ")", ";", "CheckedTextView", "checkedTextView", "=", "(", "CheckedTextView", ")", "view", ".", "findViewById", "(", "R", ".", "id", ".", "checkedTextView", ")", ";", "view", ".", "setTag", "(", "checkedTextView", ")", ";", "ImageView", "imageView", "=", "(", "ImageView", ")", "view", ".", "findViewById", "(", "R", ".", "id", ".", "image", ")", ";", "imageView", ".", "setImageResource", "(", "ICONS", "[", "i", "]", ")", ";", "checkedTextView", ".", "setText", "(", "TRANSPORT_MODES", "[", "i", "]", ")", ";", "checkedTextView", ".", "setChecked", "(", "false", ")", ";", "transportModeCheckboxes", "[", "i", "]", "=", "checkedTextView", ";", "view", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "CheckedTextView", "checkedTextView", "=", "(", "CheckedTextView", ")", "v", ".", "findViewById", "(", "R", ".", "id", ".", "checkedTextView", ")", ";", "checkedTextView", ".", "toggle", "(", ")", ";", "}", "}", ")", ";", "llTransportModes", ".", "addView", "(", "view", ")", ";", "if", "(", "i", "!=", "TRANSPORT_MODES", ".", "length", "-", "1", ")", "{", "View", "divider", "=", "new", "View", "(", "this", ")", ";", "divider", ".", "setLayoutParams", "(", "new", "LayoutParams", "(", "LayoutParams", ".", "FILL_PARENT", ",", "1", ")", ")", ";", "divider", ".", "setBackgroundColor", "(", "0xffdddddd", ")", ";", "llTransportModes", ".", "addView", "(", "divider", ")", ";", "}", "}", "ArrayAdapter", "<", "String", ">", "adapter", "=", "new", "ArrayAdapter", "<", "String", ">", "(", "this", ",", "android", ".", "R", ".", "layout", ".", "simple_spinner_item", ",", "new", "String", "[", "]", "{", "\"Fastest\"", ",", "\"\"", ",", "\"\"", "}", ")", ";", "adapter", ".", "setDropDownViewResource", "(", "android", ".", "R", ".", "layout", ".", "simple_spinner_dropdown_item", ")", ";", "spPrefferedMode", "=", "(", "Spinner", ")", "findViewById", "(", "R", ".", "id", ".", "spPreferredMode", ")", ";", "spPrefferedMode", ".", "setAdapter", "(", "adapter", ")", ";", "adapter", "=", "new", "ArrayAdapter", "<", "String", ">", "(", "this", ",", "android", ".", "R", ".", "layout", ".", "simple_spinner_item", ",", "new", "String", "[", "]", "{", "\"Average\"", ",", "\"Fast\"", ",", "\"Slow\"", "}", ")", ";", "adapter", ".", "setDropDownViewResource", "(", "android", ".", "R", ".", "layout", ".", "simple_spinner_dropdown_item", ")", ";", "spWalkingSpeed", "=", "(", "Spinner", ")", "findViewById", "(", "R", ".", "id", ".", "spWalkingSpeed", ")", ";", "spWalkingSpeed", ".", "setAdapter", "(", "adapter", ")", ";", "findViewById", "(", "R", ".", "id", ".", "btReset", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "searchOptions", ".", "reset", "(", "null", ")", ";", "updateUI", "(", ")", ";", "finish", "(", ")", ";", "}", "}", ")", ";", "findViewById", "(", "R", ".", "id", ".", "btDone", ")", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "finish", "(", ")", ";", "}", "}", ")", ";", "searchOptions", "=", "new", "SearchOptions", "(", ")", ";", "searchOptions", ".", "loadFromSharedPreferences", "(", "preferences", ",", "null", ")", ";", "updateUI", "(", ")", ";", "}", "@", "Override", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "searchOptions", ".", "useBus", "=", "transportModeCheckboxes", "[", "0", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "useTube", "=", "transportModeCheckboxes", "[", "1", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "useDLR", "=", "transportModeCheckboxes", "[", "2", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "useRail", "=", "transportModeCheckboxes", "[", "3", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "useTram", "=", "transportModeCheckboxes", "[", "4", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "useRiver", "=", "transportModeCheckboxes", "[", "5", "]", ".", "isChecked", "(", ")", ";", "searchOptions", ".", "prefferedMode", "=", "spPrefferedMode", ".", "getSelectedItemPosition", "(", ")", ";", "searchOptions", ".", "walkingSpeed", "=", "spWalkingSpeed", ".", "getSelectedItemPosition", "(", ")", ";", "searchOptions", ".", "save", "(", "preferences", ")", ";", "}", "private", "void", "updateUI", "(", ")", "{", "if", "(", "searchOptions", ".", "useBus", ")", "transportModeCheckboxes", "[", "0", "]", ".", "setChecked", "(", "true", ")", ";", "if", "(", "searchOptions", ".", "useTube", ")", "transportModeCheckboxes", "[", "1", "]", ".", "setChecked", "(", "true", ")", ";", "if", "(", "searchOptions", ".", "useDLR", ")", "transportModeCheckboxes", "[", "2", "]", ".", "setChecked", "(", "true", ")", ";", "if", "(", "searchOptions", ".", "useRail", ")", "transportModeCheckboxes", "[", "3", "]", ".", "setChecked", "(", "true", ")", ";", "if", "(", "searchOptions", ".", "useTram", ")", "transportModeCheckboxes", "[", "4", "]", ".", "setChecked", "(", "true", ")", ";", "if", "(", "searchOptions", ".", "useRiver", ")", "transportModeCheckboxes", "[", "5", "]", ".", "setChecked", "(", "true", ")", ";", "spPrefferedMode", ".", "setSelection", "(", "searchOptions", ".", "prefferedMode", ")", ";", "spWalkingSpeed", ".", "setSelection", "(", "searchOptions", ".", "walkingSpeed", ")", ";", "}", "}", "</s>" ]
8,547
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "java", ".", "util", ".", "GregorianCalendar", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "android", ".", "content", ".", "Context", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "net", ".", "Uri", ";", "import", "android", ".", "text", ".", "Spannable", ";", "import", "android", ".", "text", ".", "SpannableStringBuilder", ";", "import", "android", ".", "text", ".", "TextUtils", ";", "import", "android", ".", "text", ".", "style", ".", "ForegroundColorSpan", ";", "import", "android", ".", "text", ".", "style", ".", "TextAppearanceSpan", ";", "import", "android", ".", "view", ".", "LayoutInflater", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "View", ".", "OnClickListener", ";", "import", "android", ".", "widget", ".", "Button", ";", "import", "android", ".", "widget", ".", "ImageView", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "TextView", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "Journey", "extends", "AbstractJourney", "{", "public", "static", "final", "int", "BUS", "=", "0", ";", "public", "static", "final", "int", "TRAM", "=", "1", ";", "public", "static", "final", "int", "TRAIN", "=", "2", ";", "public", "static", "final", "int", "METRO_A", "=", "3", ";", "public", "static", "final", "int", "METRO_B", "=", "4", ";", "public", "static", "final", "int", "METRO_C", "=", "5", ";", "public", "static", "final", "int", "TROLLEY", "=", "6", ";", "public", "static", "final", "int", "UNKNOWN", "=", "7", ";", "public", "static", "final", "int", "BOAT", "=", "8", ";", "public", "static", "final", "int", "ROPEWAY", "=", "9", ";", "public", "static", "final", "int", "PLANE", "=", "10", ";", "private", "int", "cachedHashCode", "=", "0", ";", "private", "ArrayList", "<", "JourneyPart", ">", "parts", ";", "public", "Journey", "(", "ArrayList", "<", "JourneyPart", ">", "parts", ")", "{", "this", ".", "parts", "=", "parts", ";", "}", "private", "String", "abbreviateTrainCompany", "(", "String", "s", ")", "{", "String", "company", ";", "String", "[", "]", "parts", "=", "s", ".", "split", "(", "\"", "\"", ",", "3", ")", ";", "if", "(", "parts", ".", "length", "==", "3", ")", "company", "=", "parts", "[", "2", "]", ";", "else", "company", "=", "parts", "[", "0", "]", ";", "if", "(", "company", ".", "equals", "(", "\"\"", ")", ")", "return", "\"\"", ";", "else", "return", "company", ";", "}", "private", "String", "formatTime", "(", "Context", "context", ",", "int", "hours", ",", "int", "minutes", ")", "{", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", "10", ")", ";", "if", "(", "hours", ">", "0", ")", "sb", ".", "append", "(", "hours", "+", "\"", "\"", "+", "context", ".", "getString", "(", "R", ".", "string", ".", "hours", ")", "+", "\"", "\"", ")", ";", "sb", ".", "append", "(", "minutes", "+", "\"", "\"", "+", "context", ".", "getString", "(", "R", ".", "string", ".", "minutes", ")", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "@", "Override", "public", "Calendar", "getArrivalTime", "(", ")", "{", "return", "parts", ".", "get", "(", "parts", ".", "size", "(", ")", "-", "1", ")", ".", "arrTime", ";", "}", "@", "Override", "public", "String", "getCalendarEventTitle", "(", "Context", "context", ")", "{", "return", "context", ".", "getString", "(", "R", ".", "string", ".", "calendarEventTitle", ",", "parts", ".", "get", "(", "0", ")", ".", "depStop", ",", "parts", ".", "get", "(", "parts", ".", "size", "(", ")", "-", "1", ")", ".", "arrStop", ")", ";", "}", "@", "Override", "public", "Calendar", "getDepartureTime", "(", ")", "{", "return", "parts", ".", "get", "(", "0", ")", ".", "depTime", ";", "}", "@", "Override", "public", "String", "getNotificationContent", "(", ")", "{", "String", "startTime", "=", "Utils", ".", "formatTime", "(", "parts", ".", "get", "(", "0", ")", ".", "depTime", ")", ";", "String", "endTime", "=", "Utils", ".", "formatTime", "(", "parts", ".", "get", "(", "parts", ".", "size", "(", ")", "-", "1", ")", ".", "arrTime", ")", ";", "JourneyPart", "dep", "=", "parts", ".", "get", "(", "0", ")", ";", "JourneyPart", "arr", "=", "parts", ".", "get", "(", "parts", ".", "size", "(", ")", "-", "1", ")", ";", "return", "startTime", "+", "\"", "\"", "+", "dep", ".", "depStop", "+", "\"", "-UNK-", "\"", "+", "endTime", "+", "\"", "\"", "+", "arr", ".", "arrStop", ";", "}", "private", "int", "getMinuteDiff", "(", "Calendar", "c1", ",", "Calendar", "c2", ")", "{", "return", "(", "int", ")", "(", "(", "c2", ".", "getTimeInMillis", "(", ")", "-", "c1", ".", "getTimeInMillis", "(", ")", ")", "/", "(", "1000", "*", "60", ")", ")", ";", "}", "public", "int", "hashCode", "(", ")", "{", "if", "(", "cachedHashCode", "==", "0", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "parts", ".", "size", "(", ")", ";", "i", "++", ")", "{", "cachedHashCode", "+=", "parts", ".", "get", "(", "i", ")", ".", "depStop", ".", "hashCode", "(", ")", ";", "cachedHashCode", "+=", "parts", ".", "get", "(", "i", ")", ".", "depTime", ".", "getTime", "(", ")", ".", "getTime", "(", ")", ";", "cachedHashCode", "+=", "parts", ".", "get", "(", "i", ")", ".", "arrStop", ".", "hashCode", "(", ")", ";", "cachedHashCode", "+=", "parts", ".", "get", "(", "i", ")", ".", "arrTime", ".", "getTime", "(", ")", ".", "getTime", "(", ")", ";", "}", "}", "return", "cachedHashCode", ";", "}", "@", "Override", "public", "View", "inflateView", "(", "AbstractActivity", "activity", ",", "boolean", "detailed", ")", "{", "LayoutInflater", "inflater", "=", "activity", ".", "getLayoutInflater", "(", ")", ";", "View", "journeyView", "=", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "journey", ",", "null", ")", ";", "update", "(", "activity", ",", "journeyView", ")", ";", "final", "Context", "context", "=", "inflater", ".", "getContext", "(", ")", ";", "int", "durationMinutes", "=", "getMinuteDiff", "(", "parts", ".", "get", "(", "0", ")", ".", "depTime", ",", "parts", ".", "get", "(", "parts", ".", "size", "(", ")", "-", "1", ")", ".", "arrTime", ")", ";", "(", "(", "TextView", ")", "journeyView", ".", "findViewById", "(", "R", ".", "id", ".", "tvDuration", ")", ")", ".", "setText", "(", "context", ".", "getString", "(", "R", ".", "string", ".", "duration", ",", "formatTime", "(", "context", ",", "durationMinutes", "/", "60", ",", "durationMinutes", "%", "60", ")", ")", ")", ";", "LinearLayout", "llJourneyParts", "=", "(", "LinearLayout", ")", "journeyView", ".", "findViewById", "(", "R", ".", "id", ".", "llJourneyParts", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "parts", ".", "size", "(", ")", ";", "i", "++", ")", "{", "final", "JourneyPart", "part", "=", "parts", ".", "get", "(", "i", ")", ";", "int", "transportType", "=", "part", ".", "transportModes", ".", "get", "(", "0", ")", ".", "type", ";", "LinearLayout", "llJourneyPart", "=", "(", "LinearLayout", ")", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "journey_part", ",", "null", ")", ";", "TextView", "tvJourneyFromStop", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvJourneyFromStop", ")", ";", "String", "depStop", "=", "part", ".", "depStop", ";", "String", "platform", "=", "part", ".", "transportModes", ".", "get", "(", "0", ")", ".", "depPlatform", ";", "if", "(", "transportType", "==", "TransportMode", ".", "BUS", "&&", "platform", "!=", "null", ")", "{", "tvJourneyFromStop", ".", "setEllipsize", "(", "TextUtils", ".", "TruncateAt", ".", "MIDDLE", ")", ";", "depStop", "+=", "\"", "(\"", "+", "platform", "+", "\")\"", ";", "tvJourneyFromStop", ".", "setText", "(", "depStop", ",", "TextView", ".", "BufferType", ".", "SPANNABLE", ")", ";", "Spannable", "spannable", "=", "(", "Spannable", ")", "tvJourneyFromStop", ".", "getText", "(", ")", ";", "int", "start", "=", "spannable", ".", "length", "(", ")", "-", "1", "-", "platform", ".", "length", "(", ")", ";", "int", "end", "=", "start", "+", "platform", ".", "length", "(", ")", ";", "spannable", ".", "setSpan", "(", "new", "ForegroundColorSpan", "(", "0xff0077CC", ")", ",", "start", ",", "end", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "tvJourneyFromStop", ".", "setText", "(", "spannable", ")", ";", "}", "else", "{", "tvJourneyFromStop", ".", "setText", "(", "depStop", ")", ";", "}", "TextView", "tvJourneyFromTime", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvJourneyFromTime", ")", ";", "tvJourneyFromTime", ".", "setText", "(", "Utils", ".", "formatTime", "(", "part", ".", "depTime", ")", ")", ";", "TextView", "tvJourneyToStop", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvJourneyToStop", ")", ";", "tvJourneyToStop", ".", "setText", "(", "part", ".", "arrStop", ")", ";", "TextView", "tvJourneyToTime", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvJourneyToTime", ")", ";", "tvJourneyToTime", ".", "setText", "(", "Utils", ".", "formatTime", "(", "part", ".", "arrTime", ")", ")", ";", "boolean", "highPriorityDisruption", "=", "false", ";", "for", "(", "DisruptionInfo", "disruptionInfo", ":", "part", ".", "disruptionInfos", ")", "{", "if", "(", "disruptionInfo", ".", "priority", "==", "DisruptionInfo", ".", "PRIORITY_HIGH", ")", "{", "highPriorityDisruption", "=", "true", ";", "break", ";", "}", "}", "if", "(", "detailed", ")", "{", "if", "(", "part", ".", "disruptionInfos", ".", "size", "(", ")", ">", "0", ")", "{", "Button", "btDisruption", "=", "(", "Button", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "btDisruption", ")", ";", "btDisruption", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "if", "(", "highPriorityDisruption", ")", "btDisruption", ".", "setTextColor", "(", "0xff990000", ")", ";", "btDisruption", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "context", ",", "DisruptionsActivity", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "\"disruptions\"", ",", "part", ".", "disruptionInfos", ")", ";", "context", ".", "startActivity", "(", "intent", ")", ";", "}", "}", ")", ";", "}", "if", "(", "transportType", "==", "TransportMode", ".", "WALK", "&&", "part", ".", "arrLat", "!=", "null", ")", "{", "Button", "btDirections", "=", "(", "Button", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "btDirections", ")", ";", "btDirections", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "btDirections", ".", "setOnClickListener", "(", "new", "OnClickListener", "(", ")", "{", "@", "Override", "public", "void", "onClick", "(", "View", "v", ")", "{", "showWalkingDirections", "(", "part", ",", "context", ")", ";", "}", "}", ")", ";", "}", "durationMinutes", "=", "getMinuteDiff", "(", "part", ".", "depTime", ",", "part", ".", "arrTime", ")", ";", "String", "duration", "=", "\"Duration", "\"", "+", "formatTime", "(", "context", ",", "durationMinutes", "/", "60", ",", "durationMinutes", "%", "60", ")", ";", "TextView", "tvDuration", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvDuration", ")", ";", "tvDuration", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvDuration", ".", "setText", "(", "duration", ")", ";", "}", "ArrayList", "<", "Integer", ">", "images", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "ArrayList", "<", "SpannableStringBuilder", ">", "texts", "=", "new", "ArrayList", "<", "SpannableStringBuilder", ">", "(", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "part", ".", "transportModes", ".", "size", "(", ")", ";", "j", "++", ")", "{", "TransportMode", "transportMode", "=", "part", ".", "transportModes", ".", "get", "(", "j", ")", ";", "if", "(", "transportType", "==", "TransportMode", ".", "TUBE", ")", "{", "images", ".", "add", "(", "TransportMode", ".", "getTubeImage", "(", "transportMode", ".", "symbol", ")", ")", ";", "}", "else", "if", "(", "transportType", "==", "TransportMode", ".", "RAIL", "&&", "transportMode", ".", "name", ".", "startsWith", "(", "\"LO", "\"", ")", ")", "{", "images", ".", "add", "(", "R", ".", "drawable", ".", "overground", ")", ";", "}", "else", "if", "(", "j", "==", "0", ")", "{", "images", ".", "add", "(", "TransportMode", ".", "getTypeImage", "(", "part", ".", "transportModes", ".", "get", "(", "0", ")", ".", "type", ")", ")", ";", "}", "else", "{", "images", ".", "add", "(", "null", ")", ";", "}", "if", "(", "transportType", "==", "TransportMode", ".", "BUS", ")", "{", "if", "(", "detailed", ")", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", "transportMode", ".", "symbol", ")", ")", ";", "}", "else", "{", "SpannableStringBuilder", "text", "=", "(", "j", "==", "0", "?", "new", "SpannableStringBuilder", "(", ")", ":", "texts", ".", "get", "(", "0", ")", ")", ";", "int", "startIndex", "=", "text", ".", "length", "(", ")", ";", "int", "orStart", "=", "-", "1", ";", "int", "orEnd", "=", "-", "1", ";", "if", "(", "j", ">", "0", "&&", "j", "==", "part", ".", "transportModes", ".", "size", "(", ")", "-", "1", ")", "{", "orStart", "=", "text", ".", "length", "(", ")", "+", "1", ";", "orEnd", "=", "orStart", "+", "2", ";", "text", ".", "append", "(", "\"", "or", "\"", ")", ";", "}", "else", "if", "(", "j", ">", "0", ")", "{", "orStart", "=", "text", ".", "length", "(", ")", ";", "orEnd", "=", "orStart", "+", "1", ";", "text", ".", "append", "(", "\",", "\"", ")", ";", "}", "text", ".", "append", "(", "transportMode", ".", "symbol", ")", ";", "text", ".", "setSpan", "(", "new", "TextAppearanceSpan", "(", "context", ",", "R", ".", "style", ".", "londonTransportName", ")", ",", "startIndex", ",", "text", ".", "length", "(", ")", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "if", "(", "orStart", "!=", "-", "1", ")", "{", "text", ".", "setSpan", "(", "new", "TextAppearanceSpan", "(", "context", ",", "R", ".", "style", ".", "londonTransportNameOr", ")", ",", "orStart", ",", "orEnd", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "}", "if", "(", "texts", ".", "size", "(", ")", "==", "0", ")", "texts", ".", "add", "(", "text", ")", ";", "}", "}", "else", "if", "(", "transportType", "==", "TransportMode", ".", "TUBE", "||", "transportType", "==", "TransportMode", ".", "DLR", "||", "transportType", "==", "TransportMode", ".", "WALK", ")", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", ")", ")", ";", "}", "else", "if", "(", "transportType", "==", "TransportMode", ".", "TRAM", ")", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", "transportMode", ".", "symbol", ")", ")", ";", "}", "else", "if", "(", "transportType", "==", "TransportMode", ".", "RAIL", "&&", "transportMode", ".", "name", ".", "startsWith", "(", "\"LO", "\"", ")", ")", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", ")", ")", ";", "}", "else", "if", "(", "transportType", "==", "TransportMode", ".", "RAIL", ")", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", "abbreviateTrainCompany", "(", "transportMode", ".", "name", ")", ")", ")", ";", "}", "else", "{", "texts", ".", "add", "(", "new", "SpannableStringBuilder", "(", "transportMode", ".", "name", ")", ")", ";", "}", "SpannableStringBuilder", "text", "=", "texts", ".", "get", "(", "texts", ".", "size", "(", ")", "-", "1", ")", ";", "if", "(", "text", ".", "length", "(", ")", ">", "0", ")", "{", "if", "(", "!", "(", "transportType", "==", "TransportMode", ".", "BUS", "&&", "!", "detailed", ")", ")", "{", "text", ".", "setSpan", "(", "new", "TextAppearanceSpan", "(", "context", ",", "R", ".", "style", ".", "londonTransportName", ")", ",", "0", ",", "text", ".", "length", "(", ")", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "text", ".", "append", "(", "\"", "\"", ")", ";", "}", "}", "if", "(", "transportType", "!=", "TransportMode", ".", "WALK", "&&", "!", "(", "transportType", "==", "TransportMode", ".", "BUS", "&&", "!", "detailed", ")", ")", "{", "int", "start", "=", "text", ".", "length", "(", ")", ";", "text", ".", "append", "(", "\"-UNK-", "\"", ")", ";", "ArrayList", "<", "Integer", ">", "orIndexes", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "for", "(", "int", "k", "=", "0", ";", "k", "<", "transportMode", ".", "destinations", ".", "size", "(", ")", ";", "k", "++", ")", "{", "if", "(", "k", ">", "0", ")", "{", "orIndexes", ".", "add", "(", "text", ".", "length", "(", ")", "+", "1", ")", ";", "text", ".", "append", "(", "\"", "or", "\"", ")", ";", "}", "text", ".", "append", "(", "transportMode", ".", "destinations", ".", "get", "(", "k", ")", ")", ";", "}", "text", ".", "setSpan", "(", "new", "TextAppearanceSpan", "(", "context", ",", "R", ".", "style", ".", "londonTransportDestination", ")", ",", "start", ",", "text", ".", "length", "(", ")", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "for", "(", "int", "index", ":", "orIndexes", ")", "{", "text", ".", "setSpan", "(", "new", "ForegroundColorSpan", "(", "0xffaaaaaa", ")", ",", "index", ",", "index", "+", "2", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "}", "}", "}", "LinearLayout", "llTransportModes", "=", "(", "LinearLayout", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "llTransportModes", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "texts", ".", "size", "(", ")", ";", "j", "++", ")", "{", "LinearLayout", "llTransportMode", "=", "(", "LinearLayout", ")", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "journey_part_transport", ",", "null", ")", ";", "ImageView", "ivIcon", "=", "(", "ImageView", ")", "llTransportMode", ".", "findViewById", "(", "R", ".", "id", ".", "ivIcon", ")", ";", "if", "(", "images", ".", "get", "(", "j", ")", "!=", "null", ")", "ivIcon", ".", "setImageResource", "(", "images", ".", "get", "(", "j", ")", ")", ";", "else", "{", "ivIcon", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llTransportMode", ".", "findViewById", "(", "R", ".", "id", ".", "tvOr", ")", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "}", "TextView", "tvLine", "=", "(", "TextView", ")", "llTransportMode", ".", "findViewById", "(", "R", ".", "id", ".", "tvLine", ")", ";", "tvLine", ".", "setText", "(", "texts", ".", "get", "(", "j", ")", ")", ";", "if", "(", "detailed", ")", "tvLine", ".", "setSingleLine", "(", "false", ")", ";", "if", "(", "j", "==", "0", "&&", "highPriorityDisruption", ")", "llTransportMode", ".", "findViewById", "(", "R", ".", "id", ".", "ivDisruption", ")", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "llTransportModes", ".", "addView", "(", "llTransportMode", ")", ";", "}", "if", "(", "part", ".", "frequency", "!=", "null", ")", "{", "TextView", "tvFrequency", "=", "(", "TextView", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvFrequency", ")", ";", "tvFrequency", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "tvFrequency", ".", "setText", "(", "\"Buses", "every", "\"", "+", "part", ".", "frequency", "+", "\"", "mins\"", ")", ";", "if", "(", "i", "!=", "0", ")", "tvJourneyFromTime", ".", "setVisibility", "(", "View", ".", "INVISIBLE", ")", ";", "if", "(", "i", "!=", "parts", ".", "size", "(", ")", "-", "1", ")", "tvJourneyToTime", ".", "setVisibility", "(", "View", ".", "INVISIBLE", ")", ";", "}", "if", "(", "i", "==", "0", ")", "llJourneyPart", ".", "findViewById", "(", "R", ".", "id", ".", "tvDivider", ")", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llJourneyParts", ".", "addView", "(", "llJourneyPart", ")", ";", "}", "return", "journeyView", ";", "}", "private", "void", "showWalkingDirections", "(", "JourneyPart", "part", ",", "Context", "context", ")", "{", "String", "start", "=", "part", ".", "depLat", "+", "\",\"", "+", "part", ".", "depLon", ";", "String", "end", "=", "part", ".", "arrLat", "+", "\",\"", "+", "part", ".", "arrLon", ";", "Uri", "uri", "=", "Uri", ".", "parse", "(", "\"\"", "+", "start", "+", "\"&daddr=\"", "+", "end", "+", "\"&dirflg=w\"", ")", ";", "Intent", "intent", "=", "new", "Intent", "(", "android", ".", "content", ".", "Intent", ".", "ACTION_VIEW", ",", "uri", ")", ";", "context", ".", "startActivity", "(", "intent", ")", ";", "}", "@", "Override", "public", "String", "toHumanReadableString", "(", "boolean", "withoutDiacritics", ")", "{", "Common", ".", "logd", "(", "Locale", ".", "getDefault", "(", ")", ".", "toString", "(", ")", ")", ";", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "parts", ".", "size", "(", ")", ";", "i", "++", ")", "{", "JourneyPart", "part", "=", "parts", ".", "get", "(", "i", ")", ";", "if", "(", "part", ".", "transportModes", ".", "get", "(", "0", ")", ".", "type", "==", "TransportMode", ".", "WALK", ")", "{", "sb", ".", "append", "(", "\"Walk", "from", "\"", ")", ".", "append", "(", "part", ".", "depStop", ")", ".", "append", "(", "\"", "to", "\"", ")", ".", "append", "(", "part", ".", "arrStop", ")", ".", "append", "(", "\".\"", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "Utils", ".", "formatTime", "(", "part", ".", "depTime", ")", ")", ".", "append", "(", "\"", "From", "\"", ")", ".", "append", "(", "part", ".", "depStop", "+", "\"", "take\"", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "part", ".", "transportModes", ".", "size", "(", ")", ";", "j", "++", ")", "{", "TransportMode", "mode", "=", "part", ".", "transportModes", ".", "get", "(", "j", ")", ";", "if", "(", "j", ">", "0", ")", "sb", ".", "append", "(", "\"", "or\"", ")", ";", "String", "name", "=", "mode", ".", "name", ";", "if", "(", "mode", ".", "type", "==", "TransportMode", ".", "RAIL", ")", "name", "=", "abbreviateTrainCompany", "(", "name", ")", ";", "else", "if", "(", "mode", ".", "type", "==", "TransportMode", ".", "TUBE", ")", "name", "=", "\"the", "\"", "+", "mode", ".", "shortname", "+", "\"", "line\"", ";", "sb", ".", "append", "(", "\"", "\"", "+", "name", ")", ";", "for", "(", "int", "k", "=", "0", ";", "k", "<", "mode", ".", "destinations", ".", "size", "(", ")", ";", "k", "++", ")", "{", "if", "(", "k", ">", "0", ")", "sb", ".", "append", "(", "\"", "or\"", ")", ";", "sb", ".", "append", "(", "\"", "towards", "\"", ")", ".", "append", "(", "mode", ".", "destinations", ".", "get", "(", "k", ")", ")", ";", "}", "}", "sb", ".", "append", "(", "\"\"", ")", ".", "append", "(", "part", ".", "arrStop", ")", ".", "append", "(", "\".\"", ")", ";", "}", "if", "(", "i", "!=", "parts", ".", "size", "(", ")", "-", "1", ")", "sb", ".", "append", "(", "\"nn\"", ")", ";", "}", "String", "returnedString", "=", "sb", ".", "toString", "(", ")", ";", "if", "(", "withoutDiacritics", ")", "returnedString", "=", "Utils", ".", "removeDiacritics", "(", "returnedString", ")", ";", "return", "returnedString", ";", "}", "@", "Override", "public", "String", "toString", "(", ")", "{", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", "\"\"", ")", ";", "for", "(", "JourneyPart", "part", ":", "parts", ")", "{", "sb", ".", "append", "(", "part", ".", "toString", "(", ")", "+", "\"n\"", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "@", "Override", "public", "void", "update", "(", "AbstractActivity", "activity", ",", "View", "journeyView", ")", "{", "Calendar", "now", "=", "Calendar", ".", "getInstance", "(", ")", ";", "now", ".", "set", "(", "Calendar", ".", "SECOND", ",", "0", ")", ";", "now", ".", "set", "(", "Calendar", ".", "MILLISECOND", ",", "0", ")", ";", "int", "minuteDifference", "=", "getMinuteDiff", "(", "now", ",", "parts", ".", "get", "(", "0", ")", ".", "depTime", ")", ";", "Context", "context", "=", "journeyView", ".", "getContext", "(", ")", ";", "TextView", "tvLeavesIn", "=", "(", "TextView", ")", "journeyView", ".", "findViewById", "(", "R", ".", "id", ".", "tvLeavesIn", ")", ";", "if", "(", "minuteDifference", "<", "0", ")", "{", "tvLeavesIn", ".", "setText", "(", "\"\"", ")", ";", "}", "else", "if", "(", "minuteDifference", "<", "6", "*", "60", ")", "{", "tvLeavesIn", ".", "setText", "(", "context", ".", "getString", "(", "R", ".", "string", ".", "leavesIn", ",", "formatTime", "(", "context", ",", "(", "int", ")", "minuteDifference", "/", "60", ",", "(", "int", ")", "minuteDifference", "%", "60", ")", ")", ")", ";", "}", "else", "{", "tvLeavesIn", ".", "setText", "(", "Utils", ".", "formatDate", "(", "parts", ".", "get", "(", "0", ")", ".", "depTime", ",", "context", ")", ")", ";", "}", "}", "protected", "static", "class", "TransportMode", "implements", "Serializable", "{", "public", "static", "int", "WALK", "=", "0", ";", "public", "static", "int", "TUBE", "=", "1", ";", "public", "static", "int", "BUS", "=", "2", ";", "public", "static", "int", "COACH", "=", "3", ";", "public", "static", "int", "DLR", "=", "4", ";", "public", "static", "int", "RIVER", "=", "5", ";", "public", "static", "int", "TRAM", "=", "6", ";", "public", "static", "int", "RAIL", "=", "7", ";", "public", "int", "type", ";", "public", "String", "depPlatform", ";", "public", "String", "name", ";", "public", "String", "shortname", ";", "public", "String", "symbol", ";", "public", "ArrayList", "<", "String", ">", "destinations", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "public", "TransportMode", "(", "int", "type", ",", "String", "name", ",", "String", "shortname", ",", "String", "symbol", ",", "String", "destination", ")", "{", "this", ".", "type", "=", "type", ";", "this", ".", "name", "=", "name", ";", "this", ".", "shortname", "=", "shortname", ";", "this", ".", "symbol", "=", "symbol", ";", "if", "(", "destination", "!=", "null", ")", "this", ".", "destinations", ".", "add", "(", "destination", ")", ";", "}", "public", "static", "int", "getTypeImage", "(", "int", "type", ")", "{", "if", "(", "type", "==", "WALK", ")", "return", "R", ".", "drawable", ".", "walk", ";", "else", "if", "(", "type", "==", "BUS", ")", "return", "R", ".", "drawable", ".", "bus", ";", "else", "if", "(", "type", "==", "COACH", ")", "return", "R", ".", "drawable", ".", "river", ";", "else", "if", "(", "type", "==", "DLR", ")", "return", "R", ".", "drawable", ".", "dlr", ";", "else", "if", "(", "type", "==", "RIVER", ")", "return", "R", ".", "drawable", ".", "river", ";", "else", "if", "(", "type", "==", "TRAM", ")", "return", "R", ".", "drawable", ".", "tram", ";", "else", "if", "(", "type", "==", "RAIL", ")", "return", "R", ".", "drawable", ".", "rail", ";", "return", "R", ".", "drawable", ".", "unknown", ";", "}", "public", "static", "int", "getTubeImage", "(", "String", "symbol", ")", "{", "if", "(", "symbol", ".", "startsWith", "(", "\"B\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_bak", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"CEN\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_cen", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"CIR\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_cir", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"D\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_dis", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"H\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_ham", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"J\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_jub", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"M\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_met", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"N\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_nor", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"P\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_pic", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"V\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_vic", ";", "else", "if", "(", "symbol", ".", "startsWith", "(", "\"W\"", ")", ")", "return", "R", ".", "drawable", ".", "tube_wat", ";", "return", "R", ".", "drawable", ".", "unknown", ";", "}", "@", "Override", "public", "String", "toString", "(", ")", "{", "String", "from", "=", "\"\"", ";", "if", "(", "depPlatform", "!=", "null", ")", "from", "=", "\"", "(stop", "\"", "+", "depPlatform", "+", "\")\"", ";", "return", "symbol", "+", "from", "+", "\"n\"", ";", "}", "}", "protected", "static", "class", "JourneyPart", "implements", "Serializable", "{", "public", "ArrayList", "<", "DisruptionInfo", ">", "disruptionInfos", ";", "public", "ArrayList", "<", "TransportMode", ">", "transportModes", ";", "public", "Double", "arrLat", ";", "public", "Double", "arrLon", ";", "public", "Double", "depLat", ";", "public", "Double", "depLon", ";", "public", "GregorianCalendar", "arrTime", ";", "public", "GregorianCalendar", "depTime", ";", "public", "String", "arrStop", ";", "public", "String", "depStop", ";", "public", "String", "frequency", ";", "private", "String", "simplifyStopName", "(", "String", "stop", ")", "{", "if", "(", "stop", ".", "matches", "(", "\"\"", ")", ")", "{", "return", "stop", ".", "replaceFirst", "(", "\"\"", ",", "\"\"", ")", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"\"", ")", ")", "{", "stop", "=", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "20", ")", ";", "if", "(", "stop", ".", "endsWith", "(", "\"Line)\"", ")", ")", "stop", "=", "stop", ".", "substring", "(", "0", ",", "stop", ".", "lastIndexOf", "(", "\"", "(\"", ")", ")", ";", "return", "stop", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"\"", ")", ")", "{", "return", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "13", ")", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"", "DLR", "Station\"", ")", ")", "{", "return", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "12", ")", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"", "Bus", "Station\"", ")", ")", "{", "return", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "12", ")", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"", "Station\"", ")", ")", "{", "return", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "8", ")", ";", "}", "else", "if", "(", "stop", ".", "endsWith", "(", "\"\"", ")", ")", "{", "return", "stop", ".", "substring", "(", "0", ",", "stop", ".", "length", "(", ")", "-", "21", ")", ";", "}", "else", "{", "return", "stop", ";", "}", "}", "public", "void", "simplifyStopNames", "(", ")", "{", "if", "(", "transportModes", ".", "get", "(", "0", ")", ".", "type", "==", "TransportMode", ".", "WALK", ")", "return", ";", "depStop", "=", "simplifyStopName", "(", "depStop", ")", ";", "arrStop", "=", "simplifyStopName", "(", "arrStop", ")", ";", "for", "(", "TransportMode", "transportMode", ":", "transportModes", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "transportMode", ".", "destinations", ".", "size", "(", ")", ";", "i", "++", ")", "{", "transportMode", ".", "destinations", ".", "set", "(", "i", ",", "simplifyStopName", "(", "transportMode", ".", "destinations", ".", "get", "(", "i", ")", ")", ")", ";", "}", "}", "}", "@", "Override", "public", "String", "toString", "(", ")", "{", "StringBuilder", "sb", "=", "new", "StringBuilder", "(", ")", ";", "String", "depTimeStr", "=", "depTime", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", "+", "\":\"", "+", "depTime", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ";", "String", "arrTimeStr", "=", "arrTime", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", "+", "\":\"", "+", "arrTime", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ";", "sb", ".", "append", "(", "depStop", "+", "\"", "\"", "+", "depTimeStr", "+", "\"n\"", ")", ";", "sb", ".", "append", "(", "arrStop", "+", "\"", "\"", "+", "arrTimeStr", "+", "\"n\"", ")", ";", "for", "(", "TransportMode", "transportMode", ":", "transportModes", ")", "{", "sb", ".", "append", "(", "transportMode", ".", "toString", "(", ")", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "}", "</s>" ]
8,548
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "Serializable", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "DisruptionInfo", "implements", "Serializable", "{", "public", "static", "int", "PRIORITY_NORMAL", "=", "0", ";", "public", "static", "int", "PRIORITY_HIGH", "=", "1", ";", "public", "int", "priority", ";", "public", "String", "info", ";", "public", "String", "lastUpdate", ";", "public", "DisruptionInfo", "(", "String", "info", ",", "String", "lastUpdate", ",", "int", "priority", ")", "{", "this", ".", "info", "=", "info", ";", "this", ".", "lastUpdate", "=", "lastUpdate", ";", "this", ".", "priority", "=", "priority", ";", "}", "}", "</s>" ]
8,549
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "text", ".", "ParseException", ";", "import", "java", ".", "text", ".", "SimpleDateFormat", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Date", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "java", ".", "util", ".", "TimeZone", ";", "import", "javax", ".", "xml", ".", "parsers", ".", "DocumentBuilderFactory", ";", "import", "org", ".", "w3c", ".", "dom", ".", "Document", ";", "import", "org", ".", "w3c", ".", "dom", ".", "Element", ";", "import", "org", ".", "w3c", ".", "dom", ".", "NodeList", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "DeparturesParser", ".", "Departures", ".", "Line", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "DeparturesParser", ".", "Departures", ".", "Platform", ";", "public", "class", "DeparturesParser", "{", "private", "static", "long", "parseTime", "(", "String", "s", ")", "{", "SimpleDateFormat", "sdf", "=", "new", "SimpleDateFormat", "(", "\"\"", ",", "Locale", ".", "US", ")", ";", "sdf", ".", "setTimeZone", "(", "TimeZone", ".", "getTimeZone", "(", "\"\"", ")", ")", ";", "Date", "date", "=", "null", ";", "try", "{", "date", "=", "sdf", ".", "parse", "(", "s", ")", ";", "}", "catch", "(", "ParseException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "return", "date", ".", "getTime", "(", ")", ";", "}", "public", "static", "Departures", "parse", "(", "InputStream", "is", ")", "throws", "Exception", "{", "Departures", "departures", "=", "new", "Departures", "(", ")", ";", "Document", "document", "=", "DocumentBuilderFactory", ".", "newInstance", "(", ")", ".", "newDocumentBuilder", "(", ")", ".", "parse", "(", "is", ")", ";", "Element", "root", "=", "document", ".", "getDocumentElement", "(", ")", ";", "Element", "whenCreatedElem", "=", "(", "Element", ")", "root", ".", "getElementsByTagName", "(", "\"WhenCreated\"", ")", ".", "item", "(", "0", ")", ";", "long", "whenCreated", "=", "parseTime", "(", "Utils", ".", "getTextContent", "(", "whenCreatedElem", ")", ")", ";", "NodeList", "platformElems", "=", "root", ".", "getElementsByTagName", "(", "\"P\"", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "platformElems", ".", "getLength", "(", ")", ";", "i", "++", ")", "{", "Element", "platformElem", "=", "(", "Element", ")", "platformElems", ".", "item", "(", "i", ")", ";", "Platform", "platform", "=", "new", "Platform", "(", ")", ";", "platform", ".", "name", "=", "platformElem", ".", "getAttribute", "(", "\"N\"", ")", ";", "departures", ".", "platforms", ".", "add", "(", "platform", ")", ";", "NodeList", "trainElems", "=", "platformElem", ".", "getElementsByTagName", "(", "\"T\"", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "trainElems", ".", "getLength", "(", ")", ";", "j", "++", ")", "{", "Element", "trainElem", "=", "(", "Element", ")", "trainElems", ".", "item", "(", "j", ")", ";", "Line", "line", "=", "new", "Line", "(", ")", ";", "line", ".", "destination", "=", "trainElem", ".", "getAttribute", "(", "\"Destination\"", ")", ";", "line", ".", "when", "=", "whenCreated", "+", "1000", "*", "new", "Integer", "(", "trainElem", ".", "getAttribute", "(", "\"SecondsTo\"", ")", ")", ";", "platform", ".", "lines", ".", "add", "(", "line", ")", ";", "}", "}", "return", "departures", ";", "}", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "static", "class", "Departures", "implements", "Serializable", "{", "public", "ArrayList", "<", "Platform", ">", "platforms", "=", "new", "ArrayList", "<", "Platform", ">", "(", ")", ";", "public", "static", "class", "Platform", "implements", "Serializable", "{", "public", "ArrayList", "<", "Line", ">", "lines", "=", "new", "ArrayList", "<", "Line", ">", "(", ")", ";", "public", "String", "name", ";", "}", "public", "static", "class", "Line", "implements", "Serializable", "{", "public", "long", "when", ";", "public", "String", "destination", ";", "}", "}", "}", "</s>" ]
8,550
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "graphics", ".", "Typeface", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "text", ".", "Spannable", ";", "import", "android", ".", "text", ".", "SpannableString", ";", "import", "android", ".", "text", ".", "style", ".", "StyleSpan", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "TextView", ";", "public", "class", "DisruptionsActivity", "extends", "AbstractActivity", "{", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "disruptions", ")", ";", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "ArrayList", "<", "DisruptionInfo", ">", "disruptions", "=", "(", "ArrayList", "<", "DisruptionInfo", ">", ")", "getIntent", "(", ")", ".", "getSerializableExtra", "(", "\"disruptions\"", ")", ";", "LinearLayout", "llDisruptions", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llDisruptions", ")", ";", "for", "(", "DisruptionInfo", "disruptionInfo", ":", "disruptions", ")", "{", "SpannableString", "text", "=", "new", "SpannableString", "(", "disruptionInfo", ".", "info", ")", ";", "if", "(", "disruptionInfo", ".", "info", ".", "indexOf", "(", "\":\"", ")", ">=", "0", ")", "{", "text", ".", "setSpan", "(", "new", "StyleSpan", "(", "Typeface", ".", "BOLD", ")", ",", "0", ",", "disruptionInfo", ".", "info", ".", "indexOf", "(", "\":\"", ")", "+", "1", ",", "Spannable", ".", "SPAN_INCLUSIVE_EXCLUSIVE", ")", ";", "}", "LinearLayout", "llDisruption", "=", "(", "LinearLayout", ")", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "disruption", ",", "null", ")", ";", "TextView", "tvInfo", "=", "(", "TextView", ")", "llDisruption", ".", "findViewById", "(", "R", ".", "id", ".", "tvInfo", ")", ";", "tvInfo", ".", "setText", "(", "text", ")", ";", "if", "(", "disruptionInfo", ".", "priority", "==", "DisruptionInfo", ".", "PRIORITY_HIGH", ")", "tvInfo", ".", "setTextColor", "(", "0xff990000", ")", ";", "TextView", "tvLastUpdated", "=", "(", "TextView", ")", "llDisruption", ".", "findViewById", "(", "R", ".", "id", ".", "tvLastUpdated", ")", ";", "tvLastUpdated", ".", "setText", "(", "\"\"", "+", "disruptionInfo", ".", "lastUpdate", ")", ";", "llDisruptions", ".", "addView", "(", "llDisruption", ")", ";", "}", "}", "}", "</s>" ]
8,551
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "content", ".", "SharedPreferences", ";", "import", "android", ".", "content", ".", "SharedPreferences", ".", "Editor", ";", "import", "android", ".", "view", ".", "View", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "SearchOptions", "extends", "AbstractSearchOptions", "{", "public", "static", "final", "int", "MODE_FASTEST", "=", "0", ";", "public", "static", "final", "int", "MODE_FEWEST_CHANGES", "=", "1", ";", "public", "static", "final", "int", "MODE_LEAST_WALKING", "=", "2", ";", "public", "static", "final", "int", "SPEED_AVERAGE", "=", "0", ";", "public", "static", "final", "int", "SPEED_FAST", "=", "1", ";", "public", "static", "final", "int", "SPEED_SLOW", "=", "2", ";", "private", "static", "final", "String", "PREF_PREFFERED_MODE", "=", "\"\"", ";", "private", "static", "final", "String", "PREF_USE_BUS", "=", "\"bus\"", ";", "private", "static", "final", "String", "PREF_USE_TUBE", "=", "\"tube\"", ";", "private", "static", "final", "String", "PREF_USE_DLR", "=", "\"dlr\"", ";", "private", "static", "final", "String", "PREF_USE_RAIL", "=", "\"rail\"", ";", "private", "static", "final", "String", "PREF_USE_TRAM", "=", "\"tram\"", ";", "private", "static", "final", "String", "PREF_USE_RIVER", "=", "\"river\"", ";", "private", "static", "final", "String", "PREF_WALKING_SPEED", "=", "\"walkingSpeed\"", ";", "public", "boolean", "useBus", ";", "public", "boolean", "useTube", ";", "public", "boolean", "useDLR", ";", "public", "boolean", "useRail", ";", "public", "boolean", "useTram", ";", "public", "boolean", "useRiver", ";", "public", "int", "prefferedMode", ";", "public", "int", "walkingSpeed", ";", "private", "boolean", "dummy1", ";", "@", "Override", "public", "void", "loadFromSharedPreferences", "(", "SharedPreferences", "preferences", ",", "MainActivity", "activity", ")", "{", "useBus", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_BUS", ",", "true", ")", ";", "useTube", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_TUBE", ",", "true", ")", ";", "useTram", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_TRAM", ",", "true", ")", ";", "useDLR", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_DLR", ",", "true", ")", ";", "useRail", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_RAIL", ",", "true", ")", ";", "useRiver", "=", "preferences", ".", "getBoolean", "(", "PREF_USE_RIVER", ",", "true", ")", ";", "prefferedMode", "=", "preferences", ".", "getInt", "(", "PREF_PREFFERED_MODE", ",", "MODE_FASTEST", ")", ";", "walkingSpeed", "=", "preferences", ".", "getInt", "(", "PREF_WALKING_SPEED", ",", "SPEED_AVERAGE", ")", ";", "if", "(", "activity", "!=", "null", ")", "{", "boolean", "modesOfTransportChanged", "=", "!", "(", "useBus", "==", "true", "&&", "useTube", "==", "true", "&&", "useTram", "==", "true", "&&", "useDLR", "==", "true", "&&", "useRail", "==", "true", "&&", "useRiver", "==", "true", ")", ";", "if", "(", "modesOfTransportChanged", "||", "prefferedMode", "!=", "MODE_FASTEST", "||", "walkingSpeed", "!=", "SPEED_AVERAGE", ")", "activity", ".", "btSearchOptions", ".", "setImageResource", "(", "R", ".", "drawable", ".", "ic_search_options_changed", ")", ";", "else", "activity", ".", "btSearchOptions", ".", "setImageResource", "(", "R", ".", "drawable", ".", "ic_search_options", ")", ";", "}", "}", "@", "Override", "public", "void", "onPause", "(", "SharedPreferences", "preferences", ")", "{", "}", "@", "Override", "public", "void", "onResume", "(", ")", "{", "}", "@", "Override", "public", "void", "reset", "(", "MainActivity", "activity", ")", "{", "useBus", "=", "true", ";", "useTube", "=", "true", ";", "useDLR", "=", "true", ";", "useRail", "=", "true", ";", "useTram", "=", "true", ";", "useRiver", "=", "true", ";", "prefferedMode", "=", "MODE_FASTEST", ";", "walkingSpeed", "=", "SPEED_AVERAGE", ";", "}", "public", "void", "save", "(", "SharedPreferences", "preferences", ")", "{", "Editor", "editor", "=", "preferences", ".", "edit", "(", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_BUS", ",", "useBus", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_TUBE", ",", "useTube", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_DLR", ",", "useDLR", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_RAIL", ",", "useRail", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_TRAM", ",", "useTram", ")", ";", "editor", ".", "putBoolean", "(", "PREF_USE_RIVER", ",", "useRiver", ")", ";", "editor", ".", "putInt", "(", "PREF_PREFFERED_MODE", ",", "prefferedMode", ")", ";", "editor", ".", "putInt", "(", "PREF_WALKING_SPEED", ",", "walkingSpeed", ")", ";", "editor", ".", "commit", "(", ")", ";", "}", "@", "Override", "public", "void", "show", "(", "MainActivity", "activity", ",", "View", "button", ")", "{", "activity", ".", "startActivityForResult", "(", "new", "Intent", "(", "activity", ",", "SearchOptionsActivity", ".", "class", ")", ",", "MainActivity", ".", "REQUEST_SEARCH_OPTIONS", ")", ";", "}", "}", "</s>" ]
8,552
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "public", "class", "ParseJourneysResult", "{", "int", "resultCode", ";", "public", "ArrayList", "<", "Journey", ">", "journeys", ";", "public", "String", "next", ";", "public", "String", "prev", ";", "}", "</s>" ]
8,553
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "android", ".", "app", ".", "AlertDialog", ";", "import", "android", ".", "content", ".", "DialogInterface", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "location", ".", "Location", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "text", ".", "Editable", ";", "import", "android", ".", "text", ".", "TextWatcher", ";", "import", "android", ".", "view", ".", "KeyEvent", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "view", ".", "ViewGroup", ";", "import", "android", ".", "widget", ".", "AdapterView", ";", "import", "android", ".", "widget", ".", "AdapterView", ".", "OnItemClickListener", ";", "import", "android", ".", "widget", ".", "BaseAdapter", ";", "import", "android", ".", "widget", ".", "EditText", ";", "import", "android", ".", "widget", ".", "ListView", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "android", ".", "widget", ".", "TextView", ".", "OnEditorActionListener", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "LocationTool", ".", "BestLocationListener", ";", "public", "class", "DeparturesActivity", "extends", "AbstractActivity", "implements", "BestLocationListener", "{", "private", "EditText", "edFilter", ";", "private", "Location", "location", "=", "null", ";", "private", "LocationTool", "locationTool", ";", "private", "Stops", "stops", ";", "private", "StopsAdapter", "adapter", ";", "public", "static", "String", "lineCodeToLineName", "(", "char", "code", ")", "{", "switch", "(", "code", ")", "{", "case", "'B'", ":", "return", "\"Bakerloo\"", ";", "case", "'C'", ":", "return", "\"Central\"", ";", "case", "'c'", ":", "return", "\"Circle\"", ";", "case", "'D'", ":", "return", "\"District\"", ";", "case", "'H'", ":", "return", "\"\"", ";", "case", "'J'", ":", "return", "\"Jubilee\"", ";", "case", "'M'", ":", "return", "\"Metropolitan\"", ";", "case", "'N'", ":", "return", "\"Northern\"", ";", "case", "'P'", ":", "return", "\"Piccadilly\"", ";", "case", "'V'", ":", "return", "\"Victoria\"", ";", "case", "'W'", ":", "return", "\"\"", ";", "default", ":", "return", "\"\"", ";", "}", "}", "@", "Override", "public", "void", "onBestLocationUpdated", "(", "Location", "location", ")", "{", "if", "(", "!", "locationTool", ".", "differsOnlyInTime", "(", "this", ".", "location", ",", "location", ")", ")", "{", "stops", ".", "sortDepartures", "(", "location", ")", ";", "adapter", ".", "filter", "(", "edFilter", ".", "getText", "(", ")", ".", "toString", "(", ")", ")", ";", "}", "this", ".", "location", "=", "location", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "departures", ")", ";", "locationTool", "=", "new", "LocationTool", "(", "this", ",", "this", ")", ";", "stops", "=", "Stops", ".", "getInstance", "(", "this", ",", "\"London1\"", ")", ";", "stops", ".", "sortDepartures", "(", "null", ")", ";", "adapter", "=", "new", "StopsAdapter", "(", ")", ";", "ListView", "lvDepartures", "=", "(", "ListView", ")", "findViewById", "(", "R", ".", "id", ".", "lvDepartures", ")", ";", "lvDepartures", ".", "setAdapter", "(", "adapter", ")", ";", "lvDepartures", ".", "setOnItemClickListener", "(", "new", "OnItemClickListener", "(", ")", "{", "@", "Override", "public", "void", "onItemClick", "(", "AdapterView", "<", "?", ">", "parent", ",", "View", "view", ",", "int", "position", ",", "long", "id", ")", "{", "stopSelected", "(", "(", "int", ")", "id", ")", ";", "}", "}", ")", ";", "adapter", ".", "filter", "(", "\"\"", ")", ";", "edFilter", "=", "(", "EditText", ")", "findViewById", "(", "R", ".", "id", ".", "edFilter", ")", ";", "edFilter", ".", "addTextChangedListener", "(", "new", "TextWatcher", "(", ")", "{", "@", "Override", "public", "void", "onTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "count", ",", "int", "after", ")", "{", "}", "@", "Override", "public", "void", "beforeTextChanged", "(", "CharSequence", "s", ",", "int", "start", ",", "int", "before", ",", "int", "count", ")", "{", "}", "@", "Override", "public", "void", "afterTextChanged", "(", "Editable", "s", ")", "{", "adapter", ".", "filter", "(", "s", ".", "toString", "(", ")", ")", ";", "}", "}", ")", ";", "edFilter", ".", "setOnEditorActionListener", "(", "new", "OnEditorActionListener", "(", ")", "{", "@", "Override", "public", "boolean", "onEditorAction", "(", "TextView", "v", ",", "int", "actionId", ",", "KeyEvent", "event", ")", "{", "if", "(", "adapter", ".", "items", ".", "size", "(", ")", ">", "0", ")", "stopSelected", "(", "adapter", ".", "items", ".", "get", "(", "0", ")", ")", ";", "return", "true", ";", "}", "}", ")", ";", "}", "@", "Override", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "locationTool", ".", "onPause", "(", ")", ";", "}", "@", "Override", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "locationTool", ".", "onResume", "(", ")", ";", "}", "private", "void", "saveToDatabase", "(", "final", "int", "stopId", ")", "{", "new", "Thread", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "DatabaseAdapter", "dbAdapter", "=", "new", "DatabaseAdapter", "(", "getApplicationContext", "(", ")", ")", ".", "openAndLock", "(", ")", ";", "dbAdapter", ".", "saveDeparture", "(", "stopId", ",", "stops", ")", ";", "dbAdapter", ".", "closeAndUnlock", "(", ")", ";", "}", "}", ")", ".", "start", "(", ")", ";", "}", "private", "void", "stopAndLineSelected", "(", "int", "stopId", ",", "String", "lineCode", ")", "{", "Intent", "intent", "=", "new", "Intent", "(", "getBaseContext", "(", ")", ",", "DepartureBoardsActivity", ".", "class", ")", ";", "intent", ".", "putExtra", "(", "\"stopId\"", ",", "stopId", ")", ";", "intent", ".", "putExtra", "(", "\"area\"", ",", "stops", ".", "area", ")", ";", "intent", ".", "putExtra", "(", "\"lineCode\"", ",", "lineCode", ")", ";", "startActivity", "(", "intent", ")", ";", "}", "private", "void", "stopSelected", "(", "final", "int", "stopId", ")", "{", "saveToDatabase", "(", "stopId", ")", ";", "final", "String", "lineCodes", "=", "stops", ".", "extras", "[", "stopId", "]", ".", "split", "(", "\":\"", ")", "[", "1", "]", ";", "if", "(", "lineCodes", ".", "length", "(", ")", "==", "1", ")", "{", "stopAndLineSelected", "(", "stopId", ",", "lineCodes", ")", ";", "}", "else", "{", "final", "String", "[", "]", "items", "=", "new", "String", "[", "lineCodes", ".", "length", "(", ")", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "lineCodes", ".", "length", "(", ")", ";", "i", "++", ")", "{", "items", "[", "i", "]", "=", "lineCodeToLineName", "(", "lineCodes", ".", "charAt", "(", "i", ")", ")", "+", "\"", "line\"", ";", "}", "AlertDialog", ".", "Builder", "builder", "=", "new", "AlertDialog", ".", "Builder", "(", "this", ")", ";", "builder", ".", "setItems", "(", "items", ",", "new", "DialogInterface", ".", "OnClickListener", "(", ")", "{", "public", "void", "onClick", "(", "DialogInterface", "dialog", ",", "int", "item", ")", "{", "stopAndLineSelected", "(", "stopId", ",", "lineCodes", ".", "charAt", "(", "item", ")", "+", "\"\"", ")", ";", "}", "}", ")", ";", "builder", ".", "create", "(", ")", ".", "show", "(", ")", ";", "}", "}", "private", "class", "StopsAdapter", "extends", "BaseAdapter", "{", "private", "ArrayList", "<", "Integer", ">", "items", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "public", "void", "filter", "(", "String", "s", ")", "{", "ArrayList", "<", "Integer", ">", "newItems", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "s", "=", "Utils", ".", "simplify", "(", "s", ".", "toLowerCase", "(", ")", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stops", ".", "listDepartures", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "stops", ".", "listDepartures", ".", "get", "(", "i", ")", ";", "if", "(", "stops", ".", "simpleNames", "[", "index", "]", ".", "startsWith", "(", "s", ")", ")", "{", "newItems", ".", "add", "(", "index", ")", ";", "}", "}", "s", "=", "\"", "\"", "+", "s", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "stops", ".", "listDepartures", ".", "size", "(", ")", ";", "i", "++", ")", "{", "int", "index", "=", "stops", ".", "listDepartures", ".", "get", "(", "i", ")", ";", "if", "(", "stops", ".", "simpleNames", "[", "index", "]", ".", "indexOf", "(", "s", ")", "!=", "-", "1", "&&", "!", "newItems", ".", "contains", "(", "index", ")", ")", "{", "newItems", ".", "add", "(", "index", ")", ";", "}", "}", "items", "=", "newItems", ";", "notifyDataSetChanged", "(", ")", ";", "}", "@", "Override", "public", "int", "getCount", "(", ")", "{", "return", "items", ".", "size", "(", ")", ";", "}", "@", "Override", "public", "Object", "getItem", "(", "int", "position", ")", "{", "return", "null", ";", "}", "@", "Override", "public", "long", "getItemId", "(", "int", "position", ")", "{", "return", "items", ".", "get", "(", "position", ")", ";", "}", "@", "Override", "public", "View", "getView", "(", "int", "position", ",", "View", "convertView", ",", "ViewGroup", "parent", ")", "{", "ViewHolder", "holder", ";", "if", "(", "convertView", "==", "null", ")", "{", "convertView", "=", "getLayoutInflater", "(", ")", ".", "inflate", "(", "R", ".", "layout", ".", "departure_station_item", ",", "null", ")", ";", "holder", "=", "new", "ViewHolder", "(", ")", ";", "holder", ".", "text", "=", "(", "TextView", ")", "convertView", ".", "findViewById", "(", "R", ".", "id", ".", "text", ")", ";", "convertView", ".", "setTag", "(", "holder", ")", ";", "}", "else", "{", "holder", "=", "(", "ViewHolder", ")", "convertView", ".", "getTag", "(", ")", ";", "}", "int", "index", "=", "items", ".", "get", "(", "position", ")", ";", "String", "stopName", "=", "stops", ".", "names", "[", "index", "]", ";", "if", "(", "stopName", ".", "endsWith", "(", "\"\"", ")", ")", "stopName", "=", "stopName", ".", "substring", "(", "0", ",", "stopName", ".", "length", "(", ")", "-", "\"\"", ".", "length", "(", ")", ")", ";", "holder", ".", "text", ".", "setText", "(", "stopName", ")", ";", "return", "convertView", ";", "}", "class", "ViewHolder", "{", "TextView", "text", ";", "}", "}", "}", "</s>" ]
8,554
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Calendar", ";", "import", "java", ".", "util", ".", "List", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "AbstractProvider", ".", "JourneyFinderException", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "Results", "extends", "AbstractResults", "{", "private", "ArrayList", "<", "Journey", ">", "journeys", ";", "public", "Results", "(", "SearchOptions", "options", ",", "ArrayList", "<", "Journey", ">", "journeys", ",", "Calendar", "when", ",", "boolean", "timeIsDeparture", ")", "{", "super", "(", "options", ")", ";", "this", ".", "journeys", "=", "journeys", ";", "if", "(", "timeIsDeparture", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "journeys", ".", "size", "(", ")", ";", "i", "++", ")", "{", "startIndex", "=", "endIndex", "=", "i", ";", "long", "departure", "=", "journeys", ".", "get", "(", "i", ")", ".", "getDepartureTime", "(", ")", ".", "getTimeInMillis", "(", ")", ";", "if", "(", "departure", "-", "when", ".", "getTimeInMillis", "(", ")", ">", "-", "120", "*", "1000", ")", "break", ";", "}", "}", "if", "(", "startIndex", ">", "0", ")", "loadPrevEnabled", "=", "true", ";", "if", "(", "endIndex", "<", "journeys", ".", "size", "(", ")", "-", "1", ")", "loadNextEnabled", "=", "true", ";", "}", "public", "List", "<", "Journey", ">", "getJourneys", "(", ")", "{", "return", "journeys", ";", "}", "public", "List", "<", "Journey", ">", "getVisibleJourneys", "(", ")", "{", "return", "journeys", ".", "subList", "(", "startIndex", ",", "endIndex", ")", ";", "}", "public", "int", "getCachedJourneysCount", "(", "int", "nextOrPrev", ")", "{", "if", "(", "nextOrPrev", "==", "ResultsActivity", ".", "NEXT", ")", "return", "journeys", ".", "size", "(", ")", "-", "endIndex", ";", "else", "return", "startIndex", ";", "}", "@", "Override", "public", "boolean", "isLoadNextEnabled", "(", ")", "{", "return", "loadNextEnabled", ";", "}", "@", "Override", "public", "boolean", "isLoadPrevEnabled", "(", ")", "{", "return", "loadPrevEnabled", ";", "}", "@", "Override", "public", "Journey", "loadNext", "(", ")", "throws", "IOException", ",", "JourneyFinderException", "{", "if", "(", "endIndex", "<", "journeys", ".", "size", "(", ")", ")", "{", "endIndex", "++", ";", "if", "(", "endIndex", "==", "journeys", ".", "size", "(", ")", ")", "loadNextEnabled", "=", "false", ";", "return", "journeys", ".", "get", "(", "endIndex", "-", "1", ")", ";", "}", "else", "{", "return", "null", ";", "}", "}", "@", "Override", "public", "Journey", "loadPrev", "(", ")", "throws", "IOException", ",", "JourneyFinderException", "{", "if", "(", "startIndex", ">", "0", ")", "{", "startIndex", "--", ";", "if", "(", "startIndex", "==", "0", ")", "loadPrevEnabled", "=", "false", ";", "return", "journeys", ".", "get", "(", "startIndex", ")", ";", "}", "else", "{", "return", "null", ";", "}", "}", "}", "</s>" ]
8,555
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "public", "class", "CustomJourneyActivity", "extends", "JourneyActivity", "{", "@", "Override", "protected", "void", "onCreateMenu", "(", ")", "{", "addWatchMenuItem", "(", ")", ";", "addShareMenuItem", "(", ")", ";", "addCalendarMenuItem", "(", ")", ";", "}", "}", "</s>" ]
8,556
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "public", "class", "CustomResultsActivity", "extends", "ResultsActivity", "{", "}", "</s>" ]
8,557
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "android", ".", "content", ".", "Intent", ";", "import", "android", ".", "os", ".", "Bundle", ";", "import", "android", ".", "os", ".", "Handler", ";", "import", "android", ".", "view", ".", "LayoutInflater", ";", "import", "android", ".", "view", ".", "View", ";", "import", "android", ".", "widget", ".", "LinearLayout", ";", "import", "android", ".", "widget", ".", "ProgressBar", ";", "import", "android", ".", "widget", ".", "TextView", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "DeparturesParser", ".", "Departures", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "DeparturesParser", ".", "Departures", ".", "Line", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "DeparturesParser", ".", "Departures", ".", "Platform", ";", "public", "class", "DepartureBoardsActivity", "extends", "AbstractActivity", "{", "private", "static", "final", "int", "DOWNLOAD_INTERVAL", "=", "40", "*", "1000", ";", "private", "static", "final", "int", "UI_UPDATE_INTERVAL", "=", "5", "*", "1000", ";", "private", "long", "lastDownload", "=", "0", ";", "private", "Departures", "departures", ";", "private", "Handler", "handler", "=", "new", "Handler", "(", ")", ";", "private", "LinearLayout", "llBoards", ";", "private", "ProgressBar", "pbLoading", ";", "private", "String", "lineCode", ";", "private", "String", "stationCode", ";", "private", "Runnable", "updateTask", "=", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "updateDepartureBoards", "(", "departures", ")", ";", "if", "(", "System", ".", "currentTimeMillis", "(", ")", "-", "lastDownload", ">", "DOWNLOAD_INTERVAL", ")", "{", "startTask", "(", "new", "DownloadDeparturesTask", "(", "lineCode", ",", "stationCode", ")", ")", ";", "}", "handler", ".", "postDelayed", "(", "this", ",", "UI_UPDATE_INTERVAL", ")", ";", "}", "}", ";", "public", "void", "departuresDownloaded", "(", "Departures", "departures", ")", "{", "lastDownload", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "this", ".", "departures", "=", "departures", ";", "updateDepartureBoards", "(", "departures", ")", ";", "}", "@", "Override", "public", "void", "onCreate", "(", "Bundle", "savedInstanceState", ")", "{", "super", ".", "onCreate", "(", "savedInstanceState", ")", ";", "setContentView", "(", "R", ".", "layout", ".", "departure_boards", ")", ";", "pbLoading", "=", "(", "ProgressBar", ")", "findViewById", "(", "R", ".", "id", ".", "pbLoading", ")", ";", "llBoards", "=", "(", "LinearLayout", ")", "findViewById", "(", "R", ".", "id", ".", "llBoards", ")", ";", "Intent", "intent", "=", "getIntent", "(", ")", ";", "int", "stopId", "=", "intent", ".", "getIntExtra", "(", "\"stopId\"", ",", "0", ")", ";", "String", "area", "=", "intent", ".", "getStringExtra", "(", "\"area\"", ")", ";", "lineCode", "=", "intent", ".", "getStringExtra", "(", "\"lineCode\"", ")", ";", "Stops", "stops", "=", "Stops", ".", "getInstance", "(", "this", ",", "area", ")", ";", "TextView", "tvTitle", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvTitle", ")", ";", "String", "stationName", "=", "stops", ".", "names", "[", "stopId", "]", ";", "if", "(", "stationName", ".", "endsWith", "(", "\"\"", ")", ")", "stationName", "=", "stationName", ".", "substring", "(", "0", ",", "stationName", ".", "length", "(", ")", "-", "\"\"", ".", "length", "(", ")", ")", ";", "tvTitle", ".", "setText", "(", "stationName", ")", ";", "TextView", "tvLine", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvLine", ")", ";", "tvLine", ".", "setText", "(", "\"", "-", "\"", "+", "DeparturesActivity", ".", "lineCodeToLineName", "(", "lineCode", ".", "charAt", "(", "0", ")", ")", "+", "\"", "line\"", ")", ";", "if", "(", "lineCode", ".", "equals", "(", "\"c\"", ")", ")", "lineCode", "=", "\"H\"", ";", "String", "extra", "=", "stops", ".", "extras", "[", "stopId", "]", ";", "stationCode", "=", "extra", ".", "split", "(", "\":\"", ")", "[", "0", "]", ";", "if", "(", "savedInstanceState", "!=", "null", ")", "{", "departures", "=", "(", "Departures", ")", "savedInstanceState", ".", "getSerializable", "(", "\"departures\"", ")", ";", "lastDownload", "=", "savedInstanceState", ".", "getLong", "(", "\"lastDownload\"", ")", ";", "}", "}", "public", "void", "onPause", "(", ")", "{", "super", ".", "onPause", "(", ")", ";", "handler", ".", "removeCallbacks", "(", "updateTask", ")", ";", "}", "public", "void", "onResume", "(", ")", "{", "super", ".", "onResume", "(", ")", ";", "updateTask", ".", "run", "(", ")", ";", "}", "@", "Override", "public", "void", "onSaveInstanceState", "(", "Bundle", "bundle", ")", "{", "bundle", ".", "putSerializable", "(", "\"departures\"", ",", "departures", ")", ";", "bundle", ".", "putLong", "(", "\"lastDownload\"", ",", "lastDownload", ")", ";", "}", "private", "void", "updateDepartureBoards", "(", "Departures", "departures", ")", "{", "if", "(", "departures", "==", "null", ")", "return", ";", "pbLoading", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "llBoards", ".", "removeViews", "(", "0", ",", "llBoards", ".", "getChildCount", "(", ")", ")", ";", "LayoutInflater", "inflater", "=", "getLayoutInflater", "(", ")", ";", "TextView", "tvNoData", "=", "(", "TextView", ")", "findViewById", "(", "R", ".", "id", ".", "tvNoData", ")", ";", "if", "(", "departures", ".", "platforms", ".", "size", "(", ")", "==", "0", ")", "tvNoData", ".", "setVisibility", "(", "View", ".", "VISIBLE", ")", ";", "else", "tvNoData", ".", "setVisibility", "(", "View", ".", "GONE", ")", ";", "for", "(", "Platform", "platform", ":", "departures", ".", "platforms", ")", "{", "LinearLayout", "board", "=", "(", "LinearLayout", ")", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "departure_board", ",", "null", ")", ";", "TextView", "tvTitle", "=", "(", "TextView", ")", "board", ".", "findViewById", "(", "R", ".", "id", ".", "tvTitle", ")", ";", "tvTitle", ".", "setText", "(", "platform", ".", "name", ")", ";", "LinearLayout", "lines", "=", "(", "LinearLayout", ")", "board", ".", "findViewById", "(", "R", ".", "id", ".", "llLines", ")", ";", "int", "maxIndex", "=", "3", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "Math", ".", "min", "(", "maxIndex", ",", "platform", ".", "lines", ".", "size", "(", ")", ")", ";", "i", "++", ")", "{", "Line", "line", "=", "platform", ".", "lines", ".", "get", "(", "i", ")", ";", "LinearLayout", "llLine", "=", "(", "LinearLayout", ")", "inflater", ".", "inflate", "(", "R", ".", "layout", ".", "departure_line", ",", "null", ")", ";", "(", "(", "TextView", ")", "llLine", ".", "findViewById", "(", "R", ".", "id", ".", "tvDestination", ")", ")", ".", "setText", "(", "line", ".", "destination", ")", ";", "int", "minutes", "=", "(", "(", "int", ")", "(", "line", ".", "when", "-", "System", ".", "currentTimeMillis", "(", ")", ")", "/", "1000", "+", "30", ")", "/", "60", ";", "String", "timeInfo", "=", "\"\"", ";", "if", "(", "minutes", "<", "0", ")", "{", "maxIndex", "++", ";", "continue", ";", "}", "else", "if", "(", "minutes", "==", "0", ")", "{", "timeInfo", "=", "\"now\"", ";", "}", "else", "if", "(", "minutes", "==", "1", ")", "{", "timeInfo", "=", "\"1", "min\"", ";", "}", "else", "{", "timeInfo", "=", "minutes", "+", "\"", "mins\"", ";", "}", "(", "(", "TextView", ")", "llLine", ".", "findViewById", "(", "R", ".", "id", ".", "tvTime", ")", ")", ".", "setText", "(", "timeInfo", ")", ";", "lines", ".", "addView", "(", "llLine", ")", ";", "}", "llBoards", ".", "addView", "(", "board", ")", ";", "}", "}", "private", "static", "class", "DownloadDeparturesTask", "extends", "Task", "<", "DepartureBoardsActivity", ",", "Void", ",", "Object", ">", "{", "private", "String", "line", ";", "private", "String", "stationCode", ";", "public", "DownloadDeparturesTask", "(", "String", "line", ",", "String", "stationCode", ")", "{", "this", ".", "line", "=", "line", ";", "this", ".", "stationCode", "=", "stationCode", ";", "}", "@", "Override", "protected", "Object", "runInBackground", "(", ")", "{", "InputStream", "is", "=", "null", ";", "try", "{", "is", "=", "IOUtils", ".", "doGetRequestReturnStream", "(", "\"\"", "+", "line", "+", "\"/\"", "+", "stationCode", ")", ";", "return", "DeparturesParser", ".", "parse", "(", "is", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "return", "e", ";", "}", "finally", "{", "if", "(", "is", "!=", "null", ")", "IOUtils", ".", "close", "(", "is", ")", ";", "}", "}", "@", "Override", "protected", "void", "runAfter", "(", "Object", "object", ")", "{", "if", "(", "object", "instanceof", "Departures", ")", "{", "activity", ".", "departuresDownloaded", "(", "(", "Departures", ")", "object", ")", ";", "}", "else", "if", "(", "object", "instanceof", "Exception", ")", "{", "activity", ".", "startTask", "(", "new", "DownloadDeparturesTask", "(", "line", ",", "stationCode", ")", ")", ";", "}", "}", "}", "}", "</s>" ]
8,558
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "ObjectInputStream", ";", "import", "java", ".", "io", ".", "ObjectOutputStream", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "org", ".", "jsoup", ".", "Jsoup", ";", "import", "org", ".", "jsoup", ".", "nodes", ".", "Document", ";", "import", "org", ".", "jsoup", ".", "nodes", ".", "Element", ";", "import", "org", ".", "jsoup", ".", "select", ".", "Elements", ";", "import", "android", ".", "content", ".", "Context", ";", "@", "SuppressWarnings", "(", "\"serial\"", ")", "public", "class", "TubeStatus", "implements", "Serializable", "{", "public", "static", "final", "int", "STATUS_GOOD_SERVICE", "=", "0", ";", "public", "static", "final", "int", "STATUS_MINOR_DELAYS", "=", "1", ";", "public", "static", "final", "int", "STATUS_SEVERE_DELAYS", "=", "2", ";", "public", "static", "final", "int", "STATUS_PLANNED_CLOSURE", "=", "3", ";", "public", "static", "final", "int", "STATUS_PART_CLOSURE", "=", "4", ";", "public", "static", "final", "int", "STATUS_CLOSED", "=", "5", ";", "public", "static", "final", "int", "STATUS_UNKNOWN", "=", "6", ";", "public", "static", "final", "int", "STATUS_SUSPENDED", "=", "7", ";", "public", "ArrayList", "<", "Line", ">", "lines", "=", "new", "ArrayList", "<", "TubeStatus", ".", "Line", ">", "(", ")", ";", "private", "static", "final", "int", "[", "]", "COLORS", "=", "{", "0xffae6118", ",", "0xffe41f1f", ",", "0xfff8d42d", ",", "0xff00a575", ",", "0xffe899a8", ",", "0xff8f989e", ",", "0xff893267", ",", "0xff000000", ",", "0xff0450a1", ",", "0xff009fe0", ",", "0xff70c3ce", ",", "0xff00bbb4", ",", "0xfff86c00", "}", ";", "private", "static", "final", "String", "FILENAME", "=", "\"\"", ";", "private", "static", "final", "String", "HOSTNAME", "=", "\"\"", ";", "private", "static", "final", "String", "URL", "=", "\"\"", "+", "\"\"", ";", "private", "static", "final", "String", "[", "]", "NAMES", "=", "{", "\"Bakerloo\"", ",", "\"Central\"", ",", "\"Circle\"", ",", "\"District\"", ",", "\"\"", ",", "\"Jubilee\"", ",", "\"Metropolitan\"", ",", "\"Northern\"", ",", "\"Piccadilly\"", ",", "\"Victoria\"", ",", "\"\"", ",", "\"DLR\"", ",", "\"Overground\"", "}", ";", "public", "TubeStatus", "(", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "NAMES", ".", "length", ";", "i", "++", ")", "{", "Line", "line", "=", "new", "Line", "(", ")", ";", "line", ".", "name", "=", "NAMES", "[", "i", "]", ";", "line", ".", "color", "=", "COLORS", "[", "i", "]", ";", "lines", ".", "add", "(", "line", ")", ";", "}", "}", "public", "static", "void", "downloadDetails", "(", "final", "Line", "line", ",", "final", "String", "url", ",", "ArrayList", "<", "Thread", ">", "threads", ")", "{", "Thread", "thread", "=", "new", "Thread", "(", "new", "Runnable", "(", ")", "{", "@", "Override", "public", "void", "run", "(", ")", "{", "try", "{", "String", "html", "=", "IOUtils", ".", "doGetRequest", "(", "url", ")", ";", "line", ".", "details", "=", "parseDetails", "(", "html", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "line", ".", "details", "=", "\"\"", ";", "}", "}", "}", ")", ";", "threads", ".", "add", "(", "thread", ")", ";", "thread", ".", "start", "(", ")", ";", "}", "public", "static", "TubeStatus", "downloadTubeStatus", "(", "Context", "context", ")", "throws", "Exception", "{", "TubeStatus", "tubeStatus", "=", "new", "TubeStatus", "(", ")", ";", "ArrayList", "<", "Thread", ">", "threads", "=", "new", "ArrayList", "<", "Thread", ">", "(", ")", ";", "String", "html", "=", "IOUtils", ".", "doGetRequest", "(", "URL", ")", ";", "Document", "doc", "=", "Jsoup", ".", "parse", "(", "html", ")", ";", "Elements", "rows", "=", "doc", ".", "select", "(", "\"\"", ")", ";", "if", "(", "rows", ".", "size", "(", ")", "==", "0", ")", "throw", "new", "Exception", "(", "\"\"", ")", ";", "for", "(", "Element", "row", ":", "rows", ")", "{", "String", "name", "=", "row", ".", "select", "(", "\"\"", ")", ".", "first", "(", ")", ".", "text", "(", ")", ".", "trim", "(", ")", ";", "Line", "line", "=", "findLineByName", "(", "tubeStatus", ".", "lines", ",", "name", ")", ";", "Element", "problems", "=", "row", ".", "select", "(", "\"\"", ")", ".", "first", "(", ")", ";", "String", "status", "=", "problems", ".", "text", "(", ")", ".", "trim", "(", ")", ";", "line", ".", "status", "=", "status", ";", "line", ".", "statusCode", "=", "parseStatusCode", "(", "status", ")", ";", "Element", "link", "=", "problems", ".", "select", "(", "\"a\"", ")", ".", "first", "(", ")", ";", "if", "(", "link", "!=", "null", ")", "downloadDetails", "(", "line", ",", "HOSTNAME", "+", "link", ".", "attr", "(", "\"href\"", ")", ".", "trim", "(", ")", ",", "threads", ")", ";", "}", "for", "(", "Thread", "thread", ":", "threads", ")", "thread", ".", "join", "(", ")", ";", "tubeStatus", ".", "save", "(", "context", ")", ";", "return", "tubeStatus", ";", "}", "private", "static", "Line", "findLineByName", "(", "ArrayList", "<", "Line", ">", "lines", ",", "String", "name", ")", "{", "for", "(", "Line", "line", ":", "lines", ")", "{", "if", "(", "line", ".", "name", ".", "equals", "(", "name", ")", ")", "return", "line", ";", "if", "(", "line", ".", "name", ".", "charAt", "(", "0", ")", "==", "'H'", "&&", "name", ".", "charAt", "(", "0", ")", "==", "'H'", ")", "return", "line", ";", "if", "(", "line", ".", "name", ".", "charAt", "(", "0", ")", "==", "'W'", "&&", "name", ".", "charAt", "(", "0", ")", "==", "'W'", ")", "return", "line", ";", "}", "return", "null", ";", "}", "public", "static", "TubeStatus", "getTubeStatus", "(", "Context", "context", ")", "{", "try", "{", "FileInputStream", "fis", "=", "context", ".", "openFileInput", "(", "FILENAME", ")", ";", "ObjectInputStream", "ois", "=", "new", "ObjectInputStream", "(", "fis", ")", ";", "TubeStatus", "tubeStatus", "=", "(", "TubeStatus", ")", "ois", ".", "readObject", "(", ")", ";", "fis", ".", "close", "(", ")", ";", "return", "tubeStatus", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "new", "TubeStatus", "(", ")", ";", "}", "}", "private", "static", "String", "parseDetails", "(", "String", "html", ")", "{", "Document", "doc", "=", "Jsoup", ".", "parse", "(", "html", ")", ";", "StringBuilder", "message", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "Element", "element", ":", "doc", ".", "select", "(", "\"\"", ")", ")", "{", "message", ".", "append", "(", "element", ".", "text", "(", ")", ")", ".", "append", "(", "\"n\"", ")", ";", "}", "return", "message", ".", "toString", "(", ")", ";", "}", "private", "static", "int", "parseStatusCode", "(", "String", "s", ")", "{", "if", "(", "s", ".", "startsWith", "(", "\"Good\"", ")", ")", "return", "STATUS_GOOD_SERVICE", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Minor\"", ")", ")", "return", "STATUS_MINOR_DELAYS", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Severe\"", ")", ")", "return", "STATUS_SEVERE_DELAYS", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Part\"", ")", ")", "return", "STATUS_PART_CLOSURE", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Planned\"", ")", ")", "return", "STATUS_PLANNED_CLOSURE", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Closed\"", ")", ")", "return", "STATUS_CLOSED", ";", "else", "if", "(", "s", ".", "startsWith", "(", "\"Suspended\"", ")", ")", "return", "STATUS_SUSPENDED", ";", "else", "return", "STATUS_UNKNOWN", ";", "}", "public", "void", "save", "(", "Context", "context", ")", "throws", "IOException", "{", "FileOutputStream", "fos", "=", "context", ".", "openFileOutput", "(", "FILENAME", ",", "Context", ".", "MODE_PRIVATE", ")", ";", "ObjectOutputStream", "oos", "=", "new", "ObjectOutputStream", "(", "fos", ")", ";", "oos", ".", "writeObject", "(", "this", ")", ";", "fos", ".", "close", "(", ")", ";", "}", "public", "static", "class", "Line", "implements", "Serializable", "{", "public", "int", "color", ";", "public", "int", "statusCode", "=", "STATUS_UNKNOWN", ";", "public", "String", "details", ";", "public", "String", "name", ";", "public", "String", "status", "=", "\"\"", ";", "}", "}", "</s>" ]
8,559
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "GregorianCalendar", ";", "import", "javax", ".", "xml", ".", "parsers", ".", "DocumentBuilderFactory", ";", "import", "org", ".", "w3c", ".", "dom", ".", "Document", ";", "import", "org", ".", "w3c", ".", "dom", ".", "Element", ";", "import", "org", ".", "w3c", ".", "dom", ".", "NodeList", ";", "import", "uk", ".", "me", ".", "jstott", ".", "jcoord", ".", "LatLng", ";", "import", "uk", ".", "me", ".", "jstott", ".", "jcoord", ".", "OSRef", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Journey", ".", "JourneyPart", ";", "import", "cz", ".", "fhejl", ".", "pubtran", ".", "Journey", ".", "TransportMode", ";", "public", "class", "Parser", "{", "public", "static", "ArrayList", "<", "Journey", ">", "parseJourneys", "(", "InputStream", "is", ")", "throws", "Exception", "{", "ArrayList", "<", "Journey", ">", "journeys", "=", "new", "ArrayList", "<", "Journey", ">", "(", ")", ";", "Document", "document", "=", "DocumentBuilderFactory", ".", "newInstance", "(", ")", ".", "newDocumentBuilder", "(", ")", ".", "parse", "(", "is", ")", ";", "Element", "root", "=", "document", ".", "getDocumentElement", "(", ")", ";", "NodeList", "itdRouteElems", "=", "root", ".", "getElementsByTagName", "(", "\"itdRoute\"", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "itdRouteElems", ".", "getLength", "(", ")", ";", "i", "++", ")", "{", "ArrayList", "<", "Integer", ">", "disruptionHashCodes", "=", "new", "ArrayList", "<", "Integer", ">", "(", ")", ";", "Element", "itdRoute", "=", "(", "Element", ")", "itdRouteElems", ".", "item", "(", "i", ")", ";", "ArrayList", "<", "JourneyPart", ">", "journeyParts", "=", "new", "ArrayList", "<", "JourneyPart", ">", "(", ")", ";", "NodeList", "itdPartialRouteElems", "=", "itdRoute", ".", "getElementsByTagName", "(", "\"\"", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "itdPartialRouteElems", ".", "getLength", "(", ")", ";", "j", "++", ")", "{", "JourneyPart", "journeyPart", "=", "new", "JourneyPart", "(", ")", ";", "Element", "itdPartialRoute", "=", "(", "Element", ")", "itdPartialRouteElems", ".", "item", "(", "j", ")", ";", "parseDepArrStops", "(", "itdPartialRoute", ".", "getElementsByTagName", "(", "\"itdPoint\"", ")", ",", "journeyPart", ")", ";", "journeyPart", ".", "transportModes", "=", "new", "ArrayList", "<", "TransportMode", ">", "(", ")", ";", "Element", "itdFrequencyInfo", "=", "(", "Element", ")", "itdPartialRoute", ".", "getElementsByTagName", "(", "\"\"", ")", ".", "item", "(", "0", ")", ";", "if", "(", "itdFrequencyInfo", "!=", "null", ")", "{", "parseFrequencyInfo", "(", "itdFrequencyInfo", ",", "journeyPart", ")", ";", "}", "else", "{", "journeyPart", ".", "transportModes", ".", "add", "(", "parseTransportMode", "(", "(", "Element", ")", "itdPartialRoute", ".", "getElementsByTagName", "(", "\"\"", ")", ".", "item", "(", "0", ")", ")", ")", ";", "}", "NodeList", "infoLinkElems", "=", "itdPartialRoute", ".", "getElementsByTagName", "(", "\"infoLink\"", ")", ";", "parseDisruptionInfo", "(", "infoLinkElems", ",", "journeyPart", ",", "disruptionHashCodes", ")", ";", "journeyPart", ".", "simplifyStopNames", "(", ")", ";", "journeyParts", ".", "add", "(", "journeyPart", ")", ";", "}", "Journey", "journey", "=", "new", "Journey", "(", "journeyParts", ")", ";", "journeys", ".", "add", "(", "journey", ")", ";", "System", ".", "out", ".", "println", "(", "journey", ".", "toString", "(", ")", ")", ";", "}", "return", "journeys", ";", "}", "private", "static", "void", "parseDisruptionInfo", "(", "NodeList", "infoLinkElems", ",", "JourneyPart", "journeyPart", ",", "ArrayList", "<", "Integer", ">", "disruptionHashCodes", ")", "{", "journeyPart", ".", "disruptionInfos", "=", "new", "ArrayList", "<", "DisruptionInfo", ">", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "infoLinkElems", ".", "getLength", "(", ")", ";", "i", "++", ")", "{", "Element", "infoLinkElem", "=", "(", "Element", ")", "infoLinkElems", ".", "item", "(", "i", ")", ";", "int", "appearance", "=", "0", ";", "String", "lastUpdate", "=", "\"\"", ";", "NodeList", "paramElems", "=", "infoLinkElem", ".", "getElementsByTagName", "(", "\"param\"", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "paramElems", ".", "getLength", "(", ")", ";", "j", "++", ")", "{", "Element", "paramElem", "=", "(", "Element", ")", "paramElems", ".", "item", "(", "j", ")", ";", "String", "name", "=", "Utils", ".", "getTextContent", "(", "paramElem", ".", "getElementsByTagName", "(", "\"name\"", ")", ".", "item", "(", "0", ")", ")", ";", "if", "(", "name", ".", "equals", "(", "\"\"", ")", ")", "{", "lastUpdate", "=", "Utils", ".", "getTextContent", "(", "paramElem", ".", "getElementsByTagName", "(", "\"value\"", ")", ".", "item", "(", "0", ")", ")", ";", "}", "else", "if", "(", "name", ".", "equals", "(", "\"appearance\"", ")", ")", "{", "appearance", "=", "Integer", ".", "parseInt", "(", "Utils", ".", "getTextContent", "(", "paramElem", ".", "getElementsByTagName", "(", "\"value\"", ")", ".", "item", "(", "0", ")", ")", ")", ";", "}", "}", "int", "priority", "=", "DisruptionInfo", ".", "PRIORITY_NORMAL", ";", "if", "(", "appearance", "==", "1", ")", "priority", "=", "DisruptionInfo", ".", "PRIORITY_HIGH", ";", "Element", "infoLinkTextElem", "=", "(", "Element", ")", "infoLinkElem", ".", "getElementsByTagName", "(", "\"infoLinkText\"", ")", ".", "item", "(", "0", ")", ";", "String", "info", "=", "Utils", ".", "getTextContent", "(", "infoLinkTextElem", ")", ";", "if", "(", "!", "disruptionHashCodes", ".", "contains", "(", "info", ".", "hashCode", "(", ")", ")", ")", "{", "journeyPart", ".", "disruptionInfos", ".", "add", "(", "new", "DisruptionInfo", "(", "info", ",", "lastUpdate", ",", "priority", ")", ")", ";", "disruptionHashCodes", ".", "add", "(", "info", ".", "hashCode", "(", ")", ")", ";", "}", "}", "}", "private", "static", "void", "parseDepArrStops", "(", "NodeList", "itdPointElems", ",", "JourneyPart", "journeyPart", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "itdPointElems", ".", "getLength", "(", ")", ";", "i", "++", ")", "{", "Element", "itdPoint", "=", "(", "Element", ")", "itdPointElems", ".", "item", "(", "i", ")", ";", "String", "name", "=", "itdPoint", ".", "getAttribute", "(", "\"name\"", ")", ";", "GregorianCalendar", "calendar", "=", "parseTimeDate", "(", "(", "Element", ")", "itdPoint", ".", "getElementsByTagName", "(", "\"itdDateTime\"", ")", ".", "item", "(", "0", ")", ")", ";", "Double", "lat", "=", "null", ";", "Double", "lon", "=", "null", ";", "if", "(", "!", "itdPoint", ".", "getAttribute", "(", "\"x\"", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "int", "x", "=", "Integer", ".", "parseInt", "(", "itdPoint", ".", "getAttribute", "(", "\"x\"", ")", ")", ";", "int", "y", "=", "1000000", "-", "Integer", ".", "parseInt", "(", "itdPoint", ".", "getAttribute", "(", "\"y\"", ")", ")", ";", "LatLng", "latLon", "=", "new", "OSRef", "(", "x", ",", "y", ")", ".", "toLatLng", "(", ")", ";", "latLon", ".", "toWGS84", "(", ")", ";", "lat", "=", "latLon", ".", "getLat", "(", ")", ";", "lon", "=", "latLon", ".", "getLng", "(", ")", ";", "}", "if", "(", "itdPoint", ".", "getAttribute", "(", "\"usage\"", ")", ".", "equals", "(", "\"departure\"", ")", ")", "{", "journeyPart", ".", "depStop", "=", "name", ";", "journeyPart", ".", "depTime", "=", "calendar", ";", "journeyPart", ".", "depLat", "=", "lat", ";", "journeyPart", ".", "depLon", "=", "lon", ";", "}", "else", "if", "(", "itdPoint", ".", "getAttribute", "(", "\"usage\"", ")", ".", "equals", "(", "\"arrival\"", ")", ")", "{", "journeyPart", ".", "arrStop", "=", "name", ";", "journeyPart", ".", "arrTime", "=", "calendar", ";", "journeyPart", ".", "arrLat", "=", "lat", ";", "journeyPart", ".", "arrLon", "=", "lon", ";", "}", "}", "}", "private", "static", "void", "parseFrequencyInfo", "(", "Element", "itdFrequencyInfo", ",", "JourneyPart", "journeyPart", ")", "{", "String", "minTimeGap", "=", "itdFrequencyInfo", ".", "getAttribute", "(", "\"minTimeGap\"", ")", ";", "String", "maxTimeGap", "=", "itdFrequencyInfo", ".", "getAttribute", "(", "\"maxTimeGap\"", ")", ";", "if", "(", "!", "minTimeGap", ".", "equals", "(", "\"0\"", ")", ")", "{", "if", "(", "minTimeGap", ".", "equals", "(", "maxTimeGap", ")", ")", "journeyPart", ".", "frequency", "=", "minTimeGap", ";", "else", "journeyPart", ".", "frequency", "=", "minTimeGap", "+", "\"", "-", "\"", "+", "maxTimeGap", ";", "}", "NodeList", "itdMeansOfTransportElems", "=", "itdFrequencyInfo", ".", "getElementsByTagName", "(", "\"\"", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "itdMeansOfTransportElems", ".", "getLength", "(", ")", ";", "i", "++", ")", "{", "Element", "itdMeansOfTransport", "=", "(", "Element", ")", "itdMeansOfTransportElems", ".", "item", "(", "i", ")", ";", "TransportMode", "transportMode", "=", "parseTransportMode", "(", "itdMeansOfTransport", ")", ";", "Element", "nextSibling", "=", "(", "Element", ")", "itdMeansOfTransport", ".", "getNextSibling", "(", ")", ";", "if", "(", "nextSibling", "!=", "null", "&&", "nextSibling", ".", "getTagName", "(", ")", ".", "equals", "(", "\"depPlatform\"", ")", ")", "{", "transportMode", ".", "depPlatform", "=", "nextSibling", ".", "getFirstChild", "(", ")", ".", "getNodeValue", "(", ")", ";", "}", "boolean", "duplicateFound", "=", "false", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "journeyPart", ".", "transportModes", ".", "size", "(", ")", ";", "j", "++", ")", "{", "TransportMode", "tm", "=", "journeyPart", ".", "transportModes", ".", "get", "(", "j", ")", ";", "if", "(", "tm", ".", "symbol", ".", "equals", "(", "transportMode", ".", "symbol", ")", ")", "{", "duplicateFound", "=", "true", ";", "tm", ".", "destinations", ".", "add", "(", "transportMode", ".", "destinations", ".", "get", "(", "0", ")", ")", ";", "break", ";", "}", "}", "if", "(", "!", "duplicateFound", ")", "journeyPart", ".", "transportModes", ".", "add", "(", "transportMode", ")", ";", "}", "}", "private", "static", "TransportMode", "parseTransportMode", "(", "Element", "itdMeansOfTransport", ")", "{", "int", "type", "=", "parseType", "(", "itdMeansOfTransport", ".", "getAttribute", "(", "\"type\"", ")", ")", ";", "String", "name", "=", "itdMeansOfTransport", ".", "getAttribute", "(", "\"name\"", ")", ";", "String", "shortname", "=", "itdMeansOfTransport", ".", "getAttribute", "(", "\"shortname\"", ")", ";", "String", "symbol", "=", "itdMeansOfTransport", ".", "getAttribute", "(", "\"symbol\"", ")", ";", "String", "destination", "=", "itdMeansOfTransport", ".", "getAttribute", "(", "\"destination\"", ")", ";", "if", "(", "destination", ".", "equals", "(", "\"\"", ")", ")", "destination", "=", "null", ";", "return", "new", "TransportMode", "(", "type", ",", "name", ",", "shortname", ",", "symbol", ",", "destination", ")", ";", "}", "private", "static", "int", "parseType", "(", "String", "type", ")", "{", "Common", ".", "logd", "(", "type", ")", ";", "switch", "(", "Integer", ".", "parseInt", "(", "type", ")", ")", "{", "case", "1", ":", "return", "TransportMode", ".", "TUBE", ";", "case", "2", ":", "return", "TransportMode", ".", "DLR", ";", "case", "3", ":", "return", "TransportMode", ".", "BUS", ";", "case", "4", ":", "return", "TransportMode", ".", "TRAM", ";", "case", "6", ":", "return", "TransportMode", ".", "RAIL", ";", "case", "10", ":", "return", "TransportMode", ".", "RIVER", ";", "case", "12", ":", "return", "TransportMode", ".", "BUS", ";", "case", "99", ":", "return", "TransportMode", ".", "WALK", ";", "case", "100", ":", "return", "TransportMode", ".", "WALK", ";", "}", "return", "-", "1", ";", "}", "private", "static", "GregorianCalendar", "parseTimeDate", "(", "Element", "itdDateTime", ")", "{", "if", "(", "itdDateTime", "==", "null", ")", "return", "null", ";", "Element", "itdDate", "=", "(", "Element", ")", "itdDateTime", ".", "getElementsByTagName", "(", "\"itdDate\"", ")", ".", "item", "(", "0", ")", ";", "int", "year", "=", "Integer", ".", "parseInt", "(", "itdDate", ".", "getAttribute", "(", "\"year\"", ")", ")", ";", "int", "month", "=", "Integer", ".", "parseInt", "(", "itdDate", ".", "getAttribute", "(", "\"month\"", ")", ")", "-", "1", ";", "int", "day", "=", "Integer", ".", "parseInt", "(", "itdDate", ".", "getAttribute", "(", "\"day\"", ")", ")", ";", "Element", "itdTime", "=", "(", "Element", ")", "itdDateTime", ".", "getElementsByTagName", "(", "\"itdTime\"", ")", ".", "item", "(", "0", ")", ";", "int", "hour", "=", "Integer", ".", "parseInt", "(", "itdTime", ".", "getAttribute", "(", "\"hour\"", ")", ")", ";", "int", "minute", "=", "Integer", ".", "parseInt", "(", "itdTime", ".", "getAttribute", "(", "\"minute\"", ")", ")", ";", "return", "new", "GregorianCalendar", "(", "year", ",", "month", ",", "day", ",", "hour", ",", "minute", ")", ";", "}", "}", "</s>" ]
8,560
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London1", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ACT:DP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ALD:cM\"", ",", "null", ",", "\"ALE:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ALP:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"AME:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ANG:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ARC:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"AGR:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ARL:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BST:BcJM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BAL:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BNK:CNW\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BAR:cHM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BKG:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BDE:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BCT:DP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BEC:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BPK:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BER:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BNG:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BLF:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BHR:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BDS:CJ\"", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.5332531628", ",", "51.5339476099", ",", "51.5398363535", ",", "51.4893986376", ",", "51.5292149064", ",", "51.5324560428", ",", "51.490337826", ",", "51.547777152", ",", "51.5347994064", ",", "0", ",", "51.4986047192", ",", "51.4910114451", ",", "51.4976999758", ",", "51.4893495726", ",", "51.4913084259", ",", "51.5294749244", ",", "51.5892010649", ",", "51.5041384701", ",", "51.3931250471", ",", "51.5842824097", ",", "0", ",", "51.5129043591", ",", "51.5622881155", ",", "51.5629517765", ",", "51.5535164667", ",", "0", ",", "51.6060079125", ",", "51.6067001177", ",", "0", ",", "0", ",", "51.5504424653", ",", "0", ",", "51.3658028948", ",", "51.5530930549", ",", "0", ",", "0", ",", "0", ",", "51.4806048975", ",", "51.5129990269", ",", "51.4175271339", ",", "0", ",", "0", ",", "0", ",", "51.497938386", ",", "51.4836783452", ",", "51.4968899085", ",", "51.5640809802", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5133083909", ",", "51.4258304159", ",", "51.5133083909", ",", "0", ",", "51.522779682", ",", "0", ",", "51.5202441737", ",", "0", ",", "0", ",", "51.4098073655", ",", "0", ",", "0", ",", "51.5065248534", ",", "51.5077485165", ",", "51.4962756388", ",", "51.5294374292", ",", "51.5344162936", ",", "51.517681331", ",", "51.5070164755", ",", "51.5063185023", ",", "51.5064906413", ",", "51.5070859878", ",", "51.5283184362", ",", "51.5031034066", ",", "51.5084017988", ",", "51.5088426135", ",", "51.5357447727", ",", "51.5208261961", ",", "51.4310145274", ",", "0", ",", "0", ",", "51.3364643812", ",", "51.3353985876", ",", "51.3534022062", ",", "51.3639801836", ",", "51.3706423052", ",", "51.356598907", ",", "51.3565427946", ",", "51.3364643812", ",", "51.3869684312", ",", "51.3801688473", ",", "51.3799822593", ",", "51.5831209669", ",", "51.5831209669", ",", "51.5880541259", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5064495439", ",", "51.4993017473", ",", "51.4590356424", ",", "51.5336734869", ",", "51.5320463341", ",", "51.5535341346", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5327106564", ",", "0", ",", "51.4851926885", ",", "51.5425045681", ",", "51.5431834724", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5251381114", ",", "51.6121993359", ",", "51.5320165719", ",", "51.5941431532", ",", "0", ",", "51.5399641545", ",", "0", ",", "0", ",", "51.5434256494", ",", "51.3562807696", ",", "51.646684432", ",", "51.5939344341", ",", "51.6683742737", ",", "51.4349943262", ",", "51.4349943262", ",", "51.420197546", ",", "51.4422518049", ",", "51.5727055008", ",", "51.4861341415", ",", "51.4822874459", ",", "51.4213640179", ",", "51.4842347485", ",", "51.6657446105", ",", "51.5247894557", ",", "51.5190777048", ",", "51.4424326487", ",", "51.4072204355", ",", "51.4832736346", ",", "51.4232791421", ",", "51.4151416118", ",", "51.5721897753", ",", "51.6020418537", ",", "51.5703895872", ",", "51.5756844433", ",", "51.5112953733", ",", "51.481665109", ",", "51.476554183", ",", "51.4135835686", ",", "0", ",", "51.4672350551", ",", "51.4231288028", ",", "51.6046356044", ",", "51.3990399057", ",", "51.536043069", ",", "51.4821510524", ",", "51.5410162124", ",", "51.5776406619", ",", "51.5410162124", ",", "0", ",", "51.5273063101", ",", "51.5317927804", ",", "51.4492686861", ",", "51.3166999837", ",", "0", ",", "51.5270470337", ",", "0", ",", "51.544936679", ",", "51.487797355", ",", "51.6586790474", ",", "51.5630485205", ",", "0", ",", "51.5262682878", ",", "0", ",", "0", ",", "51.5142689166", ",", "51.5132976706", ",", "51.5154403463", ",", "51.5450126568", ",", "51.6263065873", ",", "0", ",", "51.4250397256", ",", "51.4294068113", ",", "51.5130724879", ",", "51.5812161388", ",", "51.5119842313", ",", "51.4524401595", ",", "51.4574959096", ",", "51.5616892708", ",", "51.5676700942", ",", "51.598415007", ",", "51.3703099764", ",", "51.4815239569", ",", "51.5640652741", ",", "51.5923693995", ",", "51.3516363677", ",", "51.5677509431", ",", "51.5982423513", ",", "51.5923693995", ",", "51.59448637", ",", "51.5931659522", ",", "51.5960216426", ",", "51.5923693995", ",", "0", ",", "51.5874249131", ",", "51.5961313525", ",", "51.3817079976", ",", "51.6478083723", ",", "51.6472266022", ",", "51.4180380785", ",", "51.5899433724", ",", "51.609197945", ",", "51.5303227169", ",", "51.4842786295", ",", "0", ",", "0", ",", "0", ",", "51.4138304886", ",", "51.4578371594", ",", "51.5990260398", ",", "51.4544264222", ",", "51.5019315771", ",", "51.5019315771", ",", "51.4833978906", ",", "51.5019315771", ",", "51.6262388867", ",", "51.4764380473", ",", "51.4781326504", ",", "51.4110051642", ",", "51.5019315771", ",", "51.6118833255", ",", "51.5021400076", ",", "51.5019315771", ",", "51.5406864669", ",", "51.5406864669", ",", "51.5238066762", ",", "51.5921235276", ",", "51.5212128084", ",", "51.519558707", ",", "51.5508010238", ",", "0", ",", "0", ",", "51.4300210897", ",", "0", ",", "0", ",", "51.5264663608", ",", "51.5321402821", ",", "51.3771949937", ",", "51.4421242298", ",", "0", ",", "51.4874629237", ",", "0", ",", "51.5495601961", ",", "51.5549568851", ",", "51.5462257143", ",", "51.5686602025", ",", "51.382300897", ",", "0", ",", "0", ",", "51.4437340168", ",", "51.5406290579", ",", "51.5356102528", ",", "51.5320982678", ",", "51.5380271689", ",", "51.5273175635", ",", "51.3833800475", ",", "51.6200331696", ",", "0", ",", "51.4871717836", ",", "0", ",", "51.4936582836", ",", "51.6560265047", ",", "51.6593033135", ",", "51.4334842904", ",", "51.5613756768", ",", "0", ",", "0", ",", "51.5336389005", ",", "0", ",", "51.4753180394", ",", "51.4746559448", ",", "0", ",", "51.3687858643", ",", "51.4435434751", ",", "0", ",", "51.3919550658", ",", "51.3917863166", ",", "0", ",", "0", ",", "51.5526855134", ",", "0", ",", "51.5444824098", ",", "51.4488009655", ",", "0", ",", "51.5920382433", ",", "0", ",", "51.6336451768", ",", "0", ",", "51.6256426344", ",", "51.3906814905", ",", "51.431601771", ",", "51.5476649453", ",", "51.4273412507", ",", "51.4231902042", ",", "51.573311882", ",", "51.451619574", ",", "0", ",", "51.6113974723", ",", "51.4734393073", ",", "51.6379851012", ",", "51.393683916", ",", "51.5189992546", ",", "51.5737993513", ",", "51.5741506606", ",", "51.537168306", ",", "0", ",", "51.3821670887", ",", "51.3821670887", ",", "51.5273559604", ",", "51.5291841307", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.377769071", ",", "51.5146059082", ",", "51.5343007723", ",", "51.4121181855", ",", "51.4197122004", ",", "51.4165689953", ",", "51.4127737918", ",", "51.4139560121", ",", "51.4128440269", ",", "51.4122135028", ",", "51.4090063864", ",", "51.4090457588", ",", "51.4080817614", ",", "51.4065836061", ",", "51.5335563289", ",", "51.6146489342", ",", "51.6155927706", ",", "51.5315869616", ",", "51.5317754459", ",", "51.5429234389", ",", "51.6124143979", ",", "0", ",", "0", ",", "51.6025796641", ",", "51.491966901", ",", "51.4891808133", ",", "51.4546663623", ",", "0", ",", "51.4414754196", ",", "51.5939653139", ",", "51.4732879008", ",", "0", ",", "0", ",", "0", ",", "51.5538927771", ",", "51.553382372", ",", "51.5258124342", ",", "51.6453077141", ",", "51.3094428928", ",", "51.3073081128", ",", "51.621862411", ",", "51.4360630843", ",", "51.4371348902", ",", "51.5591592964", ",", "51.5192001237", ",", "51.5215123427", ",", "0", ",", "0", ",", "0", ",", "51.3533297527", ",", "51.4605489207", ",", "0", ",", "51.5217601013", ",", "0", ",", "51.3992934415", ",", "51.4643605655", ",", "51.3890028474", ",", "51.5288976404", ",", "51.5134955152", ",", "51.5473448238", ",", "0", ",", "51.4640371488", ",", "0", ",", "51.4473958591", ",", "51.4710904979", ",", "0", ",", "51.6063843801", ",", "51.5953400993", ",", "0", ",", "51.5848350161", ",", "51.4322902563", ",", "0", ",", "51.437342493", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3901786193", ",", "51.3901786193", ",", "51.3901786193", ",", "51.5715238726", ",", "51.5697942242", ",", "51.5574695384", ",", "51.5336152735", ",", "51.5164165332", ",", "51.6134654629", ",", "0", ",", "51.4832039491", ",", "51.404580431", ",", "51.5655240509", ",", "51.5706077118", ",", "51.5666709191", ",", "51.567151174", ",", "51.5649872948", ",", "51.5658012622", ",", "51.5649872948", ",", "51.5649872948", ",", "51.5082003991", ",", "0", ",", "0", ",", "0", ",", "51.3483057028", ",", "0", ",", "51.4423151371", ",", "51.6822000492", ",", "51.5839398726", ",", "51.5368935442", ",", "51.6276980306", ",", "51.5096360334", ",", "0", ",", "0", ",", "51.4583861181", ",", "51.4829769636", ",", "0", ",", "0", ",", "51.4944562888", ",", "0", ",", "51.5355781747", ",", "51.5477366778", ",", "51.6161081598", ",", "51.6156770998", ",", "0", ",", "51.4169187607", ",", "51.531423271", ",", "51.4490263076", ",", "0", ",", "0", ",", "51.6094653954", ",", "51.5583659617", ",", "51.4184014479", ",", "51.4122741205", ",", "51.3958990865", ",", "51.4537856248", ",", "51.5763052178", ",", "51.4874304069", ",", "51.4874304069", ",", "51.3448300661", ",", "51.5138675789", ",", "51.5138675789", ",", "0", ",", "51.5973002657", ",", "51.477466544", ",", "51.522373704", ",", "51.3930843884", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4064814811", ",", "51.5244137425", ",", "51.4274706574", ",", "0", ",", "51.3747981281", ",", "51.3840140457", ",", "51.3861586782", ",", "51.3816873481", ",", "0", ",", "51.6154866355", ",", "51.612201224", ",", "51.417103142", ",", "51.6131807476", ",", "51.4947653527", ",", "51.4751240407", ",", "51.4379470521", ",", "51.5486544285", ",", "51.3846294337", ",", "51.374778011", ",", "51.3851522945", ",", "51.468510488", ",", "0", ",", "51.6297004718", ",", "51.3474814711", ",", "51.4150778887", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4220965299", ",", "0", ",", "51.5018864001", ",", "51.4479559739", ",", "51.4479559739", ",", "51.5935191905", ",", "0", ",", "0", ",", "0", ",", "51.4068504931", ",", "51.5247155334", ",", "51.5897006757", ",", "51.398283896", ",", "51.4028073162", ",", "0", ",", "0", ",", "51.605328799", ",", "51.5980143793", ",", "0", ",", "51.5752880099", ",", "0", ",", "51.617160072", ",", "0", ",", "51.5631561626", ",", "0", ",", "0", ",", "51.4993881028", ",", "51.4993881028", ",", "51.5067226117", ",", "51.5251690036", ",", "0", ",", "51.5850140182", ",", "0", ",", "51.5304767912", ",", "51.5063240352", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5155413528", ",", "51.4334975147", ",", "51.4043319866", ",", "51.631103076", ",", "51.631103076", ",", "0", ",", "51.5441516121", ",", "0", ",", "51.5379064512", ",", "51.572108849", ",", "51.4469207688", ",", "51.4471637633", ",", "51.5583218991", ",", "0", ",", "0", ",", "0", ",", "51.4447584672", ",", "51.4112736274", ",", "51.6073109878", ",", "0", ",", "51.5825865176", ",", "51.5207182646", ",", "51.3853648577", ",", "51.4143727692", ",", "0", ",", "51.513716462", ",", "51.399301525", ",", "51.4447560338", ",", "0", ",", "51.5521935863", ",", "51.5457588366", ",", "51.3893828484", ",", "51.3844285099", ",", "51.5349202115", ",", "51.369612886", ",", "0", ",", "51.5939146906", ",", "51.603310288", ",", "51.4403791152", ",", "51.4070102182", ",", "51.4076620459", ",", "51.4076620459", ",", "51.541891762", ",", "51.5349235023", ",", "51.411158528", ",", "51.3455364381", ",", "51.4105148217", ",", "51.4208068305", ",", "51.4590036294", ",", "51.6391626793", ",", "51.6361962283", ",", "51.4076620459", ",", "51.4459506679", ",", "51.4448854601", ",", "51.4521693401", ",", "0", ",", "0", ",", "51.4657383824", ",", "51.569689549", ",", "51.5286161172", ",", "0", ",", "51.5119014169", ",", "51.6007790178", ",", "51.4698658161", ",", "51.4277600804", ",", "0", ",", "51.5979367565", ",", "51.6012813821", ",", "0", ",", "51.5318764126", ",", "0", ",", "51.5236237519", ",", "51.5236237519", ",", "51.5621514642", ",", "0", ",", "51.5236237519", ",", "51.5236237519", ",", "51.5236237519", ",", "51.5236237519", ",", "51.5236237519", ",", "51.5236237519", ",", "0", ",", "0", ",", "51.5831331357", ",", "51.5783452942", ",", "0", ",", "51.6043246416", ",", "51.5910387973", ",", "0", ",", "0", ",", "0", ",", "51.4699308886", ",", "0", ",", "51.4726613018", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6490985409", ",", "51.5226727378", ",", "51.6632684771", ",", "51.6594846419", ",", "51.5234193588", ",", "51.5764085474", ",", "51.5297938372", ",", "51.522290286", ",", "51.3913577377", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4349067381", ",", "51.4343835344", ",", "51.4894795093", ",", "51.5553480602", ",", "51.4912517483", ",", "51.586701682", ",", "51.4431973615", ",", "51.44087939", ",", "51.4472761999", ",", "51.4689209348", ",", "51.53901504", ",", "51.5295925201", ",", "51.53901504", ",", "51.3559043195", ",", "0", ",", "51.5463089612", ",", "51.5463978151", ",", "51.5469016067", ",", "51.5472438097", ",", "51.5611015356", ",", "51.5262465418", ",", "51.5262465418", ",", "0", ",", "0", ",", "51.5221019763", ",", "0", ",", "0", ",", "51.5958626039", ",", "0", ",", "0", ",", "51.3668282661", ",", "0", ",", "51.530526274", ",", "51.5313448875", ",", "51.5133300222", ",", "0", ",", "51.5133300222", ",", "51.512614399", ",", "51.5137935653", ",", "51.5141319589", ",", "51.5138938598", ",", "51.5129382271", ",", "51.4478307917", ",", "51.5133300222", ",", "51.5471991742", ",", "51.60924955", ",", "51.4871930156", ",", "51.5046011205", ",", "0", ",", "51.3305308832", ",", "51.3305308832", ",", "51.3415041819", ",", "51.3415041819", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5586755198", ",", "51.5205168626", ",", "51.4768383486", ",", "0", ",", "0", ",", "51.3992690731", ",", "0", ",", "51.5012138789", ",", "51.4397596265", ",", "0", ",", "51.5538492576", ",", "51.5515332743", ",", "51.4407867517", ",", "51.4355086638", ",", "51.4326872326", ",", "51.4459365769", ",", "51.5365075515", ",", "51.5369049479", ",", "51.4985270869", ",", "51.5396118182", ",", "51.5370662937", ",", "51.5459328059", ",", "51.5407734576", ",", "51.54023291", ",", "51.5341325397", ",", "51.5232502863", ",", "51.5396118182", ",", "51.5370665879", ",", "51.5381157581", ",", "0", ",", "51.5599832048", ",", "51.5873845474", ",", "51.5903270344", ",", "51.5867394746", ",", "0", ",", "51.5236692679", ",", "51.5234909481", ",", "51.5824132281", ",", "51.5666711076", ",", "0", ",", "0", ",", "0", ",", "51.5766429819", ",", "51.5451954165", ",", "51.5880876769", ",", "51.5377640917", ",", "51.4646559643", ",", "51.4646559643", ",", "51.4668731522", ",", "51.4726459869", ",", "51.4737779557", ",", "51.4735624259", ",", "51.4668731522", ",", "51.4753517875", ",", "51.4756592426", ",", "51.6036156468", ",", "51.6528715969", ",", "51.5261808381", ",", "51.652841991", ",", "51.6540956605", ",", "51.6513893278", ",", "51.652599834", ",", "51.6530185848", ",", "51.6466083593", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6438402437", ",", "51.6212252065", ",", "51.6396816436", ",", "0", ",", "0", ",", "0", ",", "51.428596701", ",", "51.392546524", ",", "51.5014457107", ",", "0", ",", "51.5298117861", ",", "0", ",", "51.5445309285", ",", "51.381098143", ",", "51.5353386935", ",", "0", ",", "0", ",", "51.6009342613", ",", "0", ",", "0", ",", "51.5323970305", ",", "51.4907243186", ",", "51.514577425", ",", "51.4634047328", ",", "51.596627002", ",", "51.5325768516", ",", "0", ",", "0", ",", "0", ",", "51.4885149541", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4661222634", ",", "51.4952734344", ",", "51.4945821592", ",", "51.5326404803", ",", "51.5632055981", ",", "51.4529373905", ",", "51.41666878", ",", "0", ",", "51.3533017111", ",", "51.5238083402", ",", "51.5042697853", ",", "51.5278817318", ",", "51.3785239779", ",", "51.4680260425", ",", "51.5961300954", ",", "0", ",", "51.4847419772", ",", "51.484982425", ",", "51.5945676607", ",", "0", ",", "51.5379479794", ",", "51.478895963", ",", "51.5264001821", ",", "51.3677921692", ",", "51.3682072952", ",", "51.3747797493", ",", "0", ",", "0", ",", "51.4689227379", ",", "51.4689227379", ",", "51.4689227379", ",", "51.4689227379", ",", "51.4689227379", ",", "0", ",", "51.5266258606", ",", "0", ",", "51.5632403888", ",", "0", ",", "0", ",", "0", ",", "51.4647341443", ",", "51.4781573074", ",", "51.4700355044", ",", "51.4771659606", ",", "51.4769399827", ",", "51.474443089", ",", "51.4736272421", ",", "51.4767535921", ",", "51.4797191276", ",", "51.4985183823", ",", "51.3516191933", ",", "0", ",", "0", ",", "51.4365534517", ",", "51.5654643309", ",", "51.5815528313", ",", "51.6246440227", ",", "0", ",", "0", ",", "51.5382625384", ",", "51.5018928324", ",", "51.4997296774", ",", "51.6600325889", ",", "51.512617777", ",", "51.4097085373", ",", "51.5112552465", ",", "51.6416721203", ",", "51.4553497164", ",", "51.6715456446", ",", "51.6715456446", ",", "0", ",", "51.6151789097", ",", "51.6715456446", ",", "51.3882122344", ",", "51.6715456446", ",", "51.5491527823", ",", "51.6227978204", ",", "51.4787476846", ",", "51.4302921973", ",", "51.6715456446", ",", "51.6715456446", ",", "51.5932628937", ",", "51.3949929477", ",", "51.5625615393", ",", "0", ",", "51.5911980982", ",", "51.4896157162", ",", "0", ",", "51.4333956225", ",", "0", ",", "51.3426843727", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5728824597", ",", "51.5885157775", ",", "51.5798997471", ",", "51.4795682394", ",", "51.4322127712", ",", "51.4834674807", ",", "51.4840084705", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6022825137", ",", "51.525068335", ",", "51.4510451499", ",", "51.4689740347", ",", "51.4673764703", ",", "51.4165052155", ",", "51.418712782", ",", "0", ",", "0", ",", "51.4031337846", ",", "51.4045963586", ",", "51.4020855671", ",", "51.4129108744", ",", "51.4048985827", ",", "51.4067268002", ",", "51.4094837463", ",", "51.4236441487", ",", "51.4094837463", ",", "51.4237435969", ",", "51.4108158718", ",", "51.4094837463", ",", "51.4078023007", ",", "51.4085277788", ",", "51.4094837463", ",", "51.4094799819", ",", "51.407945006", ",", "51.5267044273", ",", "51.5144833993", ",", "51.5165387679", ",", "51.5123322635", ",", "51.5091348105", ",", "51.52562185", ",", "51.5167153759", ",", "51.5213778973", ",", "51.4533764083", ",", "51.4325993855", ",", "51.4315761695", ",", "51.5399937295", ",", "51.5518300548", ",", "51.5588506287", ",", "51.5585569595", ",", "51.5610709061", ",", "51.3813080265", ",", "51.3818329925", ",", "51.385011183", ",", "51.3592233639", ",", "51.3886283167", ",", "51.4071308216", ",", "51.3942365592", ",", "51.3802534904", ",", "51.3732742337", ",", "51.4071308216", ",", "51.3735606602", ",", "51.3764731409", ",", "51.4071308216", ",", "0", ",", "51.4535441287", ",", "51.4512756709", ",", "51.4460324645", ",", "51.4483153893", ",", "51.4542526082", ",", "51.4521112334", ",", "0", ",", "51.3812224394", ",", "51.5200424421", ",", "0", ",", "51.5922624561", ",", "51.5852146735", ",", "51.4596899377", ",", "51.5107011767", ",", "51.4967624912", ",", "0", ",", "51.5096787364", ",", "0", ",", "0", ",", "51.4788257407", ",", "51.4685830132", ",", "0", ",", "0", ",", "51.5730487853", ",", "51.5767621627", ",", "51.5817121864", ",", "51.4460900086", ",", "51.681075456", ",", "51.4810434064", ",", "51.3774510848", ",", "0", ",", "51.6053931866", ",", "51.6676700996", ",", "0", ",", "51.5206898914", ",", "51.61429678", ",", "51.3338251612", ",", "51.3623093547", ",", "51.568913555", ",", "51.4406459954", ",", "51.5219806566", ",", "51.4480914336", ",", "51.3565671376", ",", "51.5902173199", ",", "51.3242248693", ",", "51.5145174055", ",", "51.5308106948", ",", "51.5215962367", ",", "51.589838871", ",", "51.3242248693", ",", "51.5869230961", ",", "51.3459163857", ",", "0", ",", "51.4716010687", ",", "0", ",", "0", ",", "51.5871861433", ",", "51.3934862172", ",", "51.4906281512", ",", "51.3994107962", ",", "51.4004075222", ",", "0", ",", "51.5956367116", ",", "0", ",", "51.4685754834", ",", "51.430688725", ",", "51.4296040409", ",", "51.5862241674", ",", "51.5859761429", ",", "51.6607045513", ",", "51.4652852955", ",", "51.4681873235", ",", "51.6030689366", ",", "0", ",", "51.6011798632", ",", "51.4618671623", ",", "51.4654555564", ",", "51.4644648168", ",", "51.4618671623", ",", "51.4666265246", ",", "51.6146869103", ",", "0", ",", "51.4317990891", ",", "51.4317990891", ",", "51.4331136342", ",", "0", ",", "0", ",", "51.4973066031", ",", "51.3437585212", ",", "51.6448655565", ",", "51.601233495", ",", "51.6008103087", ",", "51.461810884", ",", "51.6052065327", ",", "51.4247921568", ",", "51.4261697203", ",", "51.4597909526", ",", "51.5881796039", ",", "51.5478435472", ",", "51.3444239146", ",", "51.3439803174", ",", "51.5195990232", ",", "0", ",", "51.5500611882", ",", "51.5466603348", ",", "51.5506663311", ",", "51.6100372166", ",", "51.5395924747", ",", "51.5377105044", ",", "51.5475866408", ",", "51.5491549834", ",", "0", ",", "0", ",", "51.4274537322", ",", "51.5842856286", ",", "51.5016101718", ",", "51.4601180817", ",", "51.4848651913", ",", "51.4673420975", ",", "51.4141198498", ",", "51.4454290657", ",", "51.5472621751", ",", "51.5468511712", ",", "51.5465905526", ",", "51.5451568148", ",", "51.5422497429", ",", "0", ",", "0", ",", "51.5257799328", ",", "51.5378366784", ",", "0", ",", "0", ",", "51.555383905", ",", "51.539404763", ",", "51.3670674224", ",", "51.366509441", ",", "51.3656467695", ",", "51.3665989702", ",", "51.5195614197", ",", "51.3716839979", ",", "51.5513124136", ",", "51.5513124136", ",", "51.3729984218", ",", "51.5988129066", ",", "51.3963013741", ",", "51.5295757019", ",", "51.370810816", ",", "0", ",", "51.6153814944", ",", "0", ",", "0", ",", "51.6160038578", ",", "51.5669203729", ",", "51.4989052151", ",", "0", ",", "0", ",", "51.5291898083", ",", "51.5411645106", ",", "51.5842754188", ",", "51.5498224058", ",", "51.5842754188", ",", "51.5842754188", ",", "51.5503438258", ",", "51.5913568364", ",", "51.5632157794", ",", "51.5632157794", ",", "51.5887008512", ",", "51.5467363123", ",", "51.5447460884", ",", "51.5099524282", ",", "51.5081597436", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6087952125", ",", "51.5453100545", ",", "0", ",", "51.4980742864", ",", "0", ",", "51.5596239148", ",", "0", ",", "0", ",", "51.5284515302", ",", "51.3932722814", ",", "51.3932722814", ",", "51.3700440181", ",", "51.3938223018", ",", "51.3969651199", ",", "51.5468665457", ",", "51.41868221", ",", "51.5261791086", ",", "0", ",", "0", ",", "51.4641064752", ",", "0", ",", "0", ",", "0", ",", "51.4749825823", ",", "51.4895967009", ",", "0", ",", "51.4537270801", ",", "51.4603310692", ",", "51.569749285", ",", "51.3771021298", ",", "51.5274834435", ",", "51.5274282733", ",", "51.5237250232", ",", "51.3476327828", ",", "51.3476327828", ",", "51.5905658843", ",", "51.6172235226", ",", "51.6165200319", ",", "51.6178644914", ",", "51.5241126255", ",", "51.4098861816", ",", "0", ",", "51.4062319458", ",", "51.4063376679", ",", "51.4129948078", ",", "51.4129948078", ",", "51.4035525737", ",", "51.414388308", ",", "51.530156147", ",", "51.4640074929", ",", "51.5703949688", ",", "51.4037127506", ",", "0", ",", "51.6071486061", ",", "51.5526866057", ",", "51.4705228987", ",", "51.4993471348", ",", "51.4007960478", ",", "51.5311626137", ",", "0", ",", "51.4527409907", ",", "51.4415823323", ",", "51.4518166999", ",", "51.4316199696", ",", "51.4415823323", ",", "51.4423286586", ",", "51.4415823323", ",", "51.4778976036", ",", "51.4515860915", ",", "51.4799447319", ",", "51.4726783516", ",", "51.4415823323", ",", "51.4418448916", ",", "51.447894389", ",", "51.4645842299", ",", "51.4570145007", ",", "51.4599371797", ",", "51.4558457098", ",", "51.4555770449", ",", "0", ",", "0", ",", "51.3995875304", ",", "51.3995875304", ",", "51.4259830916", ",", "0", ",", "51.3467328007", ",", "0", ",", "51.3336494401", ",", "51.3336494401", ",", "51.3110655778", ",", "51.3109316526", ",", "51.3336494401", ",", "51.4188711429", ",", "51.3162592644", ",", "0", ",", "51.5535769381", ",", "51.4524940156", ",", "0", ",", "0", ",", "51.5629439088", ",", "51.598500661", ",", "51.5875599992", ",", "0", ",", "51.5063021889", ",", "0", ",", "51.4774436173", ",", "0", ",", "51.3806982343", ",", "0", ",", "51.4791980256", ",", "51.4805180876", ",", "51.4038641114", ",", "51.4038641114", ",", "51.3654386677", ",", "51.3620232517", ",", "0", ",", "0", ",", "51.5093785342", ",", "0", ",", "0", ",", "51.5869456212", ",", "51.3631940743", ",", "51.3614415744", ",", "51.3657979262", ",", "51.3750486562", ",", "51.4819558826", ",", "0", ",", "0", ",", "51.3975756597", ",", "51.4335635123", ",", "51.5909549844", ",", "51.4335635123", ",", "51.4335635123", ",", "0", ",", "51.4335635123", ",", "51.4049921094", ",", "51.54048539", ",", "51.4049921094", ",", "51.6156555886", ",", "0", ",", "51.5257637015", ",", "0", ",", "0", ",", "0", ",", "51.4704283469", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5596663509", ",", "51.5818084805", ",", "51.5703281415", ",", "0", ",", "0", ",", "51.5192565432", ",", "51.5201777777", ",", "51.5812030521", ",", "51.4745901271", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3943589052", ",", "51.5159161914", ",", "51.5134677709", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5315659052", ",", "51.5892412158", ",", "51.6131687083", ",", "51.6092934823", ",", "0", ",", "51.5862641536", ",", "51.4971785285", ",", "51.5658314947", ",", "51.5649903587", ",", "51.4018907143", ",", "51.3912271213", ",", "0", ",", "0", ",", "51.4510673668", ",", "51.4508354662", ",", "51.4477740624", ",", "51.4499112951", ",", "51.4504275734", ",", "51.4505114925", ",", "51.4489241089", ",", "51.3499175453", ",", "51.5122286756", ",", "51.5078770375", ",", "51.5078770375", ",", "51.5078770375", ",", "51.5068851068", ",", "51.4653659626", ",", "51.4638673899", ",", "51.4730280842", ",", "51.467768108", ",", "51.4774834003", ",", "51.3854107356", ",", "51.3854107356", ",", "51.3854107356", ",", "51.5869284011", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3435351492", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3188290574", ",", "51.3924661575", ",", "51.5640290432", ",", "51.4818956532", ",", "51.5082970647", ",", "51.4918692193", ",", "51.5112741152", ",", "51.5114740977", ",", "0", ",", "51.6448838122", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5355800678", ",", "51.5662543609", ",", "51.5738512599", ",", "51.5212756976", ",", "0", ",", "0", ",", "51.4110835763", ",", "51.3934447176", ",", "51.5853649672", ",", "51.5853649672", ",", "51.4080162583", ",", "51.5000464872", ",", "51.5186921962", ",", "51.5259336642", ",", "51.4635913818", ",", "0", ",", "0", ",", "0", ",", "51.4812672676", ",", "51.4478749651", ",", "51.5147589098", ",", "51.3532325306", ",", "51.4537022135", ",", "51.4689680226", ",", "0", ",", "51.3939048448", ",", "51.589850206", ",", "51.4028249209", ",", "51.3939048448", ",", "51.4512580398", ",", "51.4827470722", ",", "0", ",", "0", ",", "0", ",", "51.5312374709", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5064679204", ",", "51.5141593047", ",", "51.5215326439", ",", "51.607541711", ",", "51.482597321", ",", "51.5186506208", ",", "51.5186303316", ",", "51.4738559294", ",", "51.6639123145", ",", "0", ",", "0", ",", "0", ",", "51.3171696555", ",", "51.5003570717", ",", "0", ",", "0", ",", "51.5037753145", ",", "51.5052856705", ",", "0", ",", "51.4998340069", ",", "51.4421213589", ",", "51.6460150733", ",", "51.5322328774", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4849171619", ",", "51.550224304", ",", "51.4599073487", ",", "51.4905551699", ",", "0", ",", "51.4811759256", ",", "0", ",", "51.476189578", ",", "51.5138949519", ",", "51.5123311803", ",", "51.5292847687", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "-", "0.0081288637", ",", "-", "0.27470603335", ",", "-", "0.1872521389", ",", "0.1240793417", ",", "-", "0.2702493739", ",", "-", "0.1778489848", ",", "0.1312970618", ",", "0.0928152564", ",", "0.0797179288", ",", "0", ",", "-", "0.07935325125", ",", "0.121925002325", ",", "0.11184390905", ",", "0.12132562635", ",", "0.121416577", ",", "0.2133909026", ",", "-", "0.1698477619", ",", "-", "0.0817431003", ",", "-", "0.0412326301", ",", "-", "0.09002533235", ",", "0", ",", "-", "0.0014718039", ",", "0.2125891822", ",", "0.21316249425", ",", "0.2063209052", ",", "0", ",", "-", "0.30671407225", ",", "-", "0.2070974797", ",", "0", ",", "0", ",", "-", "0.0985904761", ",", "0", ",", "-", "0.0987359549", ",", "-", "0.24200855405", ",", "0", ",", "0", ",", "0", ",", "-", "0.1030668431", ",", "-", "0.0045663721", ",", "-", "0.1365946206", ",", "0", ",", "0", ",", "0", ",", "-", "0.1257019575", ",", "-", "0.0314775666", ",", "-", "0.24987735735", ",", "-", "0.251569144", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.26973510405", ",", "-", "0.3722451232", ",", "-", "0.26973510405", ",", "0", ",", "0.21766490595", ",", "0", ",", "-", "0.02616748005", ",", "0", ",", "0", ",", "-", "0.0811935102", ",", "0", ",", "0", ",", "-", "0.2637453453", ",", "-", "0.2768988202", ",", "-", "0.2644134174", ",", "-", "0.2682657647", ",", "-", "0.248077744", ",", "-", "0.266050043733", ",", "-", "0.2705427046", ",", "-", "0.26773036562", ",", "-", "0.2602233798", ",", "-", "0.2570160262", ",", "-", "0.117292595075", ",", "-", "0.28003511135", ",", "-", "0.277498632933", ",", "-", "0.271602393867", ",", "-", "0.0615678213", ",", "-", "0.41745807725", ",", "-", "0.0383893728", ",", "0", ",", "0", ",", "-", "0.0013315969", ",", "-", "0.00106210855", ",", "-", "0.0381162277", ",", "-", "0.0186080123", ",", "-", "0.00209190065", ",", "-", "0.0326005396", ",", "-", "0.03225822334", ",", "-", "0.0013315969", ",", "-", "0.0617254037", ",", "-", "0.0733943156", ",", "-", "0.0730764176667", ",", "-", "0.00721147805", ",", "-", "0.00721147805", ",", "-", "0.1997620229", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2372984718", ",", "-", "0.3827827481", ",", "-", "0.03001900215", ",", "-", "0.4229168626", ",", "-", "0.4219494312", ",", "-", "0.0882412321", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3728326476", ",", "0", ",", "-", "0.39786521705", ",", "-", "0.1340383551", ",", "-", "0.126794812133", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3001728141", ",", "-", "0.0178398267", ",", "0.0487781526", ",", "0.082298172", ",", "0", ",", "-", "0.31463222295", ",", "0", ",", "0", ",", "0.209452732", ",", "-", "0.11663897", ",", "-", "0.2227067744", ",", "-", "0.252655899", ",", "-", "0.04152803365", ",", "0.1258274723", ",", "0.1258274723", ",", "0.0651467136", ",", "0.1183792477", ",", "0.1455971593", ",", "-", "0.2996505732", ",", "-", "0.09336444732", ",", "0.0678459519", ",", "-", "0.08516403105", ",", "-", "0.03699224875", ",", "-", "0.14427737725", ",", "0.0597002139", ",", "-", "0.22344656175", ",", "-", "0.00491930135", ",", "-", "0.16738787345", ",", "-", "0.12847813195", ",", "-", "0.2194354856", ",", "0.1912564495", ",", "-", "0.1312878361", ",", "-", "0.1142667373", ",", "0.189043151", ",", "-", "0.471103059", ",", "0.1443018126", ",", "-", "0.11788786165", ",", "-", "0.2727555888", ",", "0", ",", "0.1292841823", ",", "-", "0.368090752", ",", "-", "0.39792400055", ",", "0.0547334277", ",", "0.197443467", ",", "-", "0.39507698235", ",", "0.1655367505", ",", "0.09872643775", ",", "0.1655367505", ",", "0", ",", "-", "0.4508812277", ",", "-", "0.1356443526", ",", "-", "0.14801796435", ",", "-", "0.1282631664", ",", "0", ",", "0.112444985", ",", "0", ",", "-", "0.3728868451", ",", "-", "0.1405655587", ",", "-", "0.0727070887", ",", "0.03213007815", ",", "0", ",", "-", "0.2110953346", ",", "0", ",", "0", ",", "-", "0.0751583681333", ",", "-", "0.07543111865", ",", "-", "0.0722911768167", ",", "0.19582040055", ",", "-", "0.2689858922", ",", "0", ",", "-", "0.14049650415", ",", "-", "0.1399954953", ",", "-", "0.117153892757", ",", "0.0840526367", ",", "-", "0.11666553065", ",", "0.1278614647", ",", "-", "0.1815415431", ",", "-", "0.1246540587", ",", "-", "0.3687132569", ",", "-", "0.12575483", ",", "-", "0.20338145835", ",", "-", "0.258502182", ",", "-", "0.3652424669", ",", "-", "0.1340598572", ",", "-", "0.1616665014", ",", "-", "0.10009770355", ",", "-", "0.1207225961", ",", "-", "0.1340598572", ",", "-", "0.1289269234", ",", "-", "0.1329732529", ",", "-", "0.12454667515", ",", "-", "0.1340598572", ",", "0", ",", "-", "0.13273949085", ",", "-", "0.14531221375", ",", "-", "0.0882972413", ",", "-", "0.0376901989667", ",", "-", "0.03902110395", ",", "-", "0.2889042767", ",", "-", "0.21571194535", ",", "-", "0.1427720728", ",", "0.1907516903", ",", "-", "0.3040981195", ",", "0", ",", "0", ",", "0", ",", "-", "0.3635827914", ",", "-", "0.02053380345", ",", "-", "0.0770896263", ",", "-", "0.3347548371", ",", "-", "0.269861114867", ",", "-", "0.269861114867", ",", "0.1474078692", ",", "-", "0.269861114867", ",", "-", "0.0659262998", ",", "-", "0.0486313456", ",", "0.0660781084", ",", "-", "0.08624837855", ",", "-", "0.269861114867", ",", "-", "0.3346021983", ",", "-", "0.2691567995", ",", "-", "0.269861114867", ",", "-", "0.225498891", ",", "-", "0.225498891", ",", "-", "0.2663459157", ",", "-", "0.19948562", ",", "0.2094367024", ",", "-", "0.3682709876", ",", "-", "0.3206503853", ",", "0", ",", "0", ",", "-", "0.088748235", ",", "0", ",", "0", ",", "-", "0.277186918", ",", "-", "0.2110813917", ",", "0.08276798505", ",", "-", "0.0809614974", ",", "0", ",", "-", "0.0434791387", ",", "0", ",", "0.22200374855", ",", "0.22954493", ",", "-", "0.0007473263", ",", "-", "0.11885490225", ",", "0.0564266621", ",", "0", ",", "0", ",", "0.029022527", ",", "-", "0.299684181543", ",", "-", "0.2974034911", ",", "-", "0.3107487417", ",", "-", "0.3022232944", ",", "-", "0.16435097285", ",", "-", "0.22395252115", ",", "-", "0.01710835985", ",", "0", ",", "-", "0.0846664547", ",", "0", ",", "-", "0.07439651345", ",", "-", "0.2084330768", ",", "-", "0.2054265598", ",", "0.0618613089", ",", "0.14944987655", ",", "0", ",", "0", ",", "0.0588435601", ",", "0", ",", "-", "0.3307684172", ",", "-", "0.3297413933", ",", "0", ",", "-", "0.11833836075", ",", "-", "0.2407509674", ",", "0", ",", "-", "0.0371499526", ",", "-", "0.0383502519", ",", "0", ",", "0", ",", "-", "0.187455335", ",", "0", ",", "-", "0.2220052537", ",", "0.0251597402", ",", "0", ",", "-", "0.1892673952", ",", "0", ",", "-", "0.07390592535", ",", "0", ",", "-", "0.11523430385", ",", "-", "0.25804444215", ",", "0.02593834705", ",", "0.1989771763", ",", "-", "0.134231727", ",", "-", "0.16091785365", ",", "-", "0.1047580886", ",", "-", "0.29588151605", ",", "0", ",", "-", "0.0761117933", ",", "-", "0.03278245895", ",", "-", "0.0121991373", ",", "0.104662948", ",", "-", "0.3109668527", ",", "-", "0.074496189", ",", "-", "0.08662571135", ",", "0.01249004485", ",", "0", ",", "-", "0.12364435208", ",", "-", "0.12364435208", ",", "-", "0.1090317549", ",", "-", "0.1103112417", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0815869479", ",", "-", "0.0083660606", ",", "-", "0.059624903", ",", "-", "0.0659466565167", ",", "-", "0.0775712238", ",", "-", "0.0669021483", ",", "-", "0.0679826478", ",", "-", "0.0676883153", ",", "-", "0.0678790196", ",", "-", "0.06699961855", ",", "-", "0.0598587419", ",", "-", "0.05870669245", ",", "-", "0.0605018247", ",", "-", "0.0638052923667", ",", "-", "0.105864539767", ",", "-", "0.0654802107", ",", "-", "0.06371100538", ",", "-", "0.105960734433", ",", "-", "0.1053809771", ",", "-", "0.0003728999", ",", "-", "0.0483796384", ",", "0", ",", "0", ",", "-", "0.2553035632", ",", "-", "0.0609839141", ",", "0.03055020875", ",", "-", "0.45335610315", ",", "0", ",", "0.09578651755", ",", "-", "0.2589688401", ",", "0.02209698045", ",", "0", ",", "0", ",", "0", ",", "-", "0.21812576075", ",", "-", "0.217676897", ",", "0.192928372", ",", "-", "0.0086337568", ",", "0.0432950542", ",", "0.0440037056", ",", "-", "0.2539824786", ",", "-", "0.3802909945", ",", "-", "0.3800876166", ",", "0.0049416089", ",", "-", "0.46253600815", ",", "-", "0.4636545317", ",", "0", ",", "0", ",", "0", ",", "-", "0.02404419615", ",", "0.04466837905", ",", "0", ",", "-", "0.0812043862", ",", "0", ",", "0.0592447763", ",", "-", "0.2496898515", ",", "-", "0.21817952995", ",", "-", "0.0383653064", ",", "-", "0.0479558358", ",", "0.20046182115", ",", "0", ",", "0.05090717805", ",", "0", ",", "0.13473665295", ",", "-", "0.0407383541", ",", "0", ",", "-", "0.11128789495", ",", "-", "0.2048810549", ",", "0", ",", "0.2206210655", ",", "-", "0.03750745875", ",", "0", ",", "-", "0.0017434801", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0572727955667", ",", "-", "0.0572727955667", ",", "-", "0.0572727955667", ",", "-", "0.0373025581", ",", "-", "0.0395416446", ",", "0.25826979375", ",", "-", "0.3312894929", ",", "-", "0.3218001907", ",", "-", "0.18621916285", ",", "0", ",", "-", "0.11618094615", ",", "-", "0.2772429207", ",", "-", "0.13505251194", ",", "-", "0.13834240395", ",", "-", "0.13309223705", ",", "-", "0.1355832946", ",", "-", "0.135087457575", ",", "-", "0.1360858256", ",", "-", "0.135087457575", ",", "-", "0.135087457575", ",", "-", "0.22459992305", ",", "0", ",", "0", ",", "0", ",", "-", "0.0779983336", ",", "0", ",", "0.0872841855", ",", "-", "0.0334306282", ",", "-", "0.4325655873", ",", "-", "0.1419969576", ",", "-", "0.1406438878", ",", "0.0749469934", ",", "0", ",", "0", ",", "-", "0.1966713491", ",", "-", "0.39398940565", ",", "0", ",", "0", ",", "-", "0.02505601235", ",", "0", ",", "0.1480249264", ",", "-", "0.37897438365", ",", "-", "0.133379951483", ",", "-", "0.1300271623", ",", "0", ",", "-", "0.1260772725", ",", "0.0446422231", ",", "-", "0.329065064", ",", "0", ",", "0", ",", "0.10958244485", ",", "-", "0.1053146671", ",", "-", "0.2277368934", ",", "-", "0.22425652365", ",", "-", "0.2359238644", ",", "-", "0.0261212107", ",", "0.0835897911", ",", "0.0574451305", ",", "0.0574451305", ",", "-", "0.0687166739", ",", "-", "0.2046344263", ",", "-", "0.2046344263", ",", "0", ",", "0.2324272895", ",", "-", "0.141821056", ",", "-", "0.3747723949", ",", "0.09169066705", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.05781597505", ",", "-", "0.36497644795", ",", "-", "0.1285298229", ",", "0", ",", "-", "0.0308287983", ",", "-", "0.2136019396", ",", "0.0579794309", ",", "-", "0.3011247791", ",", "0", ",", "-", "0.2554874862", ",", "0.2149006386", ",", "-", "0.15184256535", ",", "0.218747325", ",", "-", "0.1852448759", ",", "-", "0.0132331023", ",", "-", "0.31397314415", ",", "0.0920333508", ",", "-", "0.06412378595", ",", "-", "0.0750647733", ",", "-", "0.0636561779", ",", "-", "0.1583974997", ",", "0", ",", "-", "0.1667586143", ",", "-", "0.0520619027", ",", "0.0818075185", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.00237272075", ",", "0", ",", "-", "0.241833198", ",", "-", "0.366370946", ",", "-", "0.366370946", ",", "-", "0.2187553179", ",", "0", ",", "0", ",", "0", ",", "-", "0.0090766135", ",", "-", "0.2030544376", ",", "0.17741646835", ",", "-", "0.20700799805", ",", "-", "0.20936152115", ",", "0", ",", "0", ",", "0.0496945014", ",", "0.2182461142", ",", "0", ",", "0.0740033771", ",", "0", ",", "-", "0.1632916167", ",", "0", ",", "0.003126313", ",", "0", ",", "0", ",", "-", "0.2404453398", ",", "-", "0.2404453398", ",", "-", "0.2441111626", ",", "0.1714451701", ",", "0", ",", "-", "0.1944546254", ",", "0", ",", "-", "0.3800345402", ",", "-", "0.0077401678", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.104640806", ",", "-", "0.0223919796", ",", "-", "0.29437633895", ",", "-", "0.175111803", ",", "-", "0.175111803", ",", "0", ",", "0.0143053675", ",", "0", ",", "-", "0.3025810759", ",", "-", "0.1570991562", ",", "-", "0.1323830302", ",", "-", "0.1292933052", ",", "-", "0.2695057673", ",", "0", ",", "0", ",", "0", ",", "-", "0.1166772703", ",", "-", "0.0812183945", ",", "0.0669127456", ",", "0", ",", "-", "0.233779549575", ",", "-", "0.29150851065", ",", "0.1141695593", ",", "-", "0.2882358149", ",", "0", ",", "-", "0.0193009642", ",", "0.1220367587", ",", "-", "0.20712364845", ",", "0", ",", "-", "0.45128355465", ",", "-", "0.34487816805", ",", "0.10378995715", ",", "-", "0.28312337475", ",", "-", "0.021877194", ",", "0.1209006121", ",", "0", ",", "-", "0.0171706172", ",", "0.17579311055", ",", "-", "0.1035831118", ",", "-", "0.04904385195", ",", "-", "0.29951510225", ",", "-", "0.29951510225", ",", "-", "0.1722226441", ",", "-", "0.16365562615", ",", "-", "0.05541752955", ",", "-", "0.20262745435", ",", "-", "0.2378777846", ",", "-", "0.33218727985", ",", "0.130916396", ",", "-", "0.13406878525", ",", "-", "0.13753606485", ",", "-", "0.29951510225", ",", "0.0815925948", ",", "0.08156573095", ",", "0.0788096725", ",", "0", ",", "0", ",", "-", "0.043890378", ",", "0.2567252642", ",", "-", "0.367442558", ",", "0", ",", "-", "0.41248556995", ",", "-", "0.1805444267", ",", "-", "0.2606812192", ",", "-", "0.19484940905", ",", "0", ",", "-", "0.08251430935", ",", "-", "0.0827488479", ",", "0", ",", "-", "0.405836137567", ",", "0", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "-", "0.2572699685", ",", "0", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "-", "0.1028939071", ",", "0", ",", "0", ",", "-", "0.1680611492", ",", "0.2190200123", ",", "0", ",", "-", "0.2809272975", ",", "-", "0.27117158545", ",", "0", ",", "0", ",", "0", ",", "-", "0.17446687705", ",", "0", ",", "-", "0.1840919747", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0580435036", ",", "-", "0.157750547956", ",", "-", "0.0780216268", ",", "-", "0.0796131963", ",", "-", "0.1571918362", ",", "-", "0.0152122018", ",", "0.02374239055", ",", "0.02263841035", ",", "-", "0.31192063205", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1664560106", ",", "0.1658125586", ",", "-", "0.25075177295", ",", "-", "0.0925001291", ",", "-", "0.0897318671", ",", "0.2007826506", ",", "-", "0.1519331675", ",", "-", "0.14865238645", ",", "-", "0.149120402", ",", "0.03643223405", ",", "0.1662781453", ",", "0.1534599175", ",", "0.1662781453", ",", "-", "0.0727680873", ",", "0", ",", "-", "0.0838638886", ",", "-", "0.081047664", ",", "-", "0.0838101391", ",", "-", "0.086593878", ",", "-", "0.2885741587", ",", "-", "0.41930279635", ",", "-", "0.41930279635", ",", "0", ",", "0", ",", "-", "0.0972198662", ",", "0", ",", "0", ",", "0.2238375649", ",", "0", ",", "0", ",", "-", "0.13200207085", ",", "0", ",", "-", "0.21640715665", ",", "-", "0.2161300508", ",", "-", "0.0873021171", ",", "0", ",", "-", "0.0873021171", ",", "-", "0.0883625795", ",", "-", "0.0917434307", ",", "-", "0.0893295535", ",", "-", "0.0879631005", ",", "-", "0.09140445765", ",", "-", "0.0297745958", ",", "-", "0.0873021171", ",", "0.08183398675", ",", "-", "0.35700501495", ",", "0.0932083599", ",", "-", "0.1262066588", ",", "0", ",", "-", "0.215803636", ",", "-", "0.215803636", ",", "-", "0.1878166154", ",", "-", "0.1878166154", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0825794383", ",", "-", "0.09751658154", ",", "0.0893786431", ",", "0", ",", "0", ",", "0.0567924133", ",", "0", ",", "0.0703785101", ",", "-", "0.0201716771", ",", "0", ",", "-", "0.3143642232", ",", "-", "0.3115217219", ",", "-", "0.1255680008", ",", "0.0199818369", ",", "0.0219291385", ",", "0.0131599713", ",", "-", "0.089697502925", ",", "-", "0.086768017", ",", "-", "0.0259462053", ",", "0.0816802704", ",", "0.0763820205", ",", "0.0945383216333", ",", "0.0982480747", ",", "0.0998095646", ",", "0.1047486119", ",", "0.0225079651", ",", "0.0816802704", ",", "0.0710248596", ",", "0.078185519275", ",", "0", ",", "0.1754697179", ",", "0.0853238564286", ",", "0.0812068567", ",", "0.081425427", ",", "0", ",", "-", "0.217583318", ",", "-", "0.2135467221", ",", "0.11590007915", ",", "0.109902075", ",", "0", ",", "0", ",", "0", ",", "-", "0.03528511875", ",", "-", "0.0404118466", ",", "0.0834937439", ",", "0.00579638865", ",", "0.1594087911", ",", "0.1594087911", ",", "-", "0.24181897185", ",", "-", "0.25291497205", ",", "-", "0.249826171367", ",", "-", "0.2467360706", ",", "-", "0.24181897185", ",", "-", "0.2397721052", ",", "-", "0.23226485485", ",", "-", "0.2439710964", ",", "-", "0.213545021125", ",", "-", "0.0670127329", ",", "-", "0.1989522632", ",", "-", "0.20154096005", ",", "-", "0.215318750433", ",", "-", "0.1992871342", ",", "-", "0.2019667009", ",", "-", "0.18656600875", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1715939656", ",", "-", "0.2537649523", ",", "-", "0.1986717042", ",", "0", ",", "0", ",", "0", ",", "-", "0.30165816985", ",", "0.00150733135", ",", "0.0957995575", ",", "0", ",", "-", "0.39807250085", ",", "0", ",", "0.1435933262", ",", "-", "0.27709738705", ",", "-", "0.1110873063", ",", "0", ",", "0", ",", "0.2338041638", ",", "0", ",", "0", ",", "-", "0.1093491048", ",", "-", "0.2131354353", ",", "-", "0.43158982605", ",", "-", "0.3887501987", ",", "-", "0.11574289605", ",", "-", "0.26346786545", ",", "0", ",", "0", ",", "0", ",", "-", "0.26664076595", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0569687085", ",", "-", "0.0865382671", ",", "-", "0.088126727425", ",", "0.05115645785", ",", "0.16193777625", ",", "0.13315997645", ",", "0.128903398", ",", "0", ",", "-", "0.3123289605", ",", "-", "0.44850611015", ",", "0.07098537905", ",", "-", "0.2597611942", ",", "-", "0.05142669", ",", "-", "0.3950796006", ",", "0.0721661807", ",", "0", ",", "0.1057859369", ",", "0.10666846", ",", "-", "0.18651739725", ",", "0", ",", "-", "0.0917281289", ",", "0.09326043605", ",", "0.0948622483", ",", "0.0274374708", ",", "0.0247547879", ",", "0.0196348196", ",", "0", ",", "0", ",", "-", "0.37871714515", ",", "-", "0.37871714515", ",", "-", "0.37871714515", ",", "-", "0.37871714515", ",", "-", "0.37871714515", ",", "0", ",", "-", "0.0911636206", ",", "0", ",", "0.0728201572", ",", "0", ",", "0", ",", "0", ",", "-", "0.16044277875", ",", "-", "0.145311708267", ",", "-", "0.17151455305", ",", "-", "0.1484001527", ",", "-", "0.147757661175", ",", "-", "0.1559409201", ",", "-", "0.16010658905", ",", "-", "0.1685205059", ",", "-", "0.17126765255", ",", "0.0890014238", ",", "-", "0.1153221838", ",", "0", ",", "0", ",", "0.00075446175", ",", "-", "0.120602881", ",", "0.1072426797", ",", "-", "0.15625672245", ",", "0", ",", "0", ",", "-", "0.1404270598", ",", "-", "0.1104247528", ",", "-", "0.1117965705", ",", "-", "0.0601569514", ",", "-", "0.1876916546", ",", "0.03292248675", ",", "-", "0.01202876715", ",", "-", "0.1032382638", ",", "-", "0.4564204453", ",", "-", "0.03838294315", ",", "-", "0.03838294315", ",", "0", ",", "-", "0.1462401869", ",", "-", "0.03838294315", ",", "-", "0.0931286076", ",", "-", "0.03838294315", ",", "-", "0.2434081103", ",", "-", "0.1517951749", ",", "0.01498634765", ",", "0.04541386135", ",", "-", "0.03838294315", ",", "-", "0.03838294315", ",", "0.0047828933", ",", "0.013560165", ",", "0.0677176721", ",", "0", ",", "0.07187671245", ",", "-", "0.0563948134", ",", "0", ",", "-", "0.39229047875", ",", "0", ",", "-", "0.0375617049", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1060098329", ",", "-", "0.19469111445", ",", "-", "0.2252706204", ",", "-", "0.3847842579", ",", "-", "0.3154359191", ",", "-", "0.174048726975", ",", "-", "0.17529455395", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.04518167235", ",", "0.0299697866", ",", "-", "0.2176501895", ",", "-", "0.398807808", ",", "-", "0.39246403285", ",", "0.0895310128", ",", "0.0895454115", ",", "0", ",", "0", ",", "-", "0.0511786314", ",", "-", "0.0342936954", ",", "-", "0.053581126", ",", "-", "0.02123135145", ",", "-", "0.0053510814", ",", "-", "0.0278179955", ",", "-", "0.02518284885", ",", "-", "0.0151217789", ",", "-", "0.02518284885", ",", "-", "0.01488731735", ",", "-", "0.02631901235", ",", "-", "0.02518284885", ",", "0.00550960095", ",", "-", "0.0381369906", ",", "-", "0.02518284885", ",", "-", "0.0439009367167", ",", "-", "0.03555925325", ",", "0.0611978244", ",", "0.06066038945", ",", "0.0441916556", ",", "0.0808778032", ",", "0.0551515783", ",", "0.07896804035", ",", "0.0394718077", ",", "0.0702840246", ",", "-", "0.09155111905", ",", "-", "0.128985610675", ",", "-", "0.1355985594", ",", "0.12755253105", ",", "0.1135426785", ",", "0.13011345965", ",", "0.1269690131", ",", "0.15099013465", ",", "-", "0.1346100368", ",", "-", "0.12974562775", ",", "-", "0.12828661455", ",", "-", "0.1506184561", ",", "-", "0.14140190095", ",", "0.0962717128", ",", "-", "0.14601535905", ",", "-", "0.1330505954", ",", "-", "0.15086403175", ",", "0.0962717128", ",", "-", "0.1317926684", ",", "-", "0.1308693918", ",", "0.0962717128", ",", "0", ",", "-", "0.4395838454", ",", "-", "0.43873288495", ",", "-", "0.4407177789", ",", "-", "0.4450294019", ",", "-", "0.4259867534", ",", "-", "0.4346312519", ",", "0", ",", "-", "0.0993543978", ",", "-", "0.1240016443", ",", "0", ",", "0.0224683953", ",", "-", "0.0799248103", ",", "-", "0.1300838913", ",", "-", "0.3211311573", ",", "-", "0.2558107353", ",", "0", ",", "-", "0.1231880877", ",", "0", ",", "0", ",", "0.14293722", ",", "0.14291071355", ",", "0", ",", "0", ",", "0.06405895915", ",", "0.05949322865", ",", "0.05824474405", ",", "0.1025029098", ",", "-", "0.1022644536", ",", "-", "0.3160997864", ",", "-", "0.16801116685", ",", "0", ",", "0.09946469375", ",", "-", "0.1577638702", ",", "0", ",", "-", "0.0938840291", ",", "-", "0.2534820317", ",", "-", "0.0512339749", ",", "0.0790757323", ",", "0.1693878826", ",", "-", "0.0298104527", ",", "-", "0.3463315351", ",", "0.12342786195", ",", "0.0816094023", ",", "-", "0.1930644847", ",", "-", "0.1518976989", ",", "-", "0.43551204525", ",", "-", "0.3645670279", ",", "-", "0.45600480045", ",", "-", "0.1935992207", ",", "-", "0.1518976989", ",", "0.02128566105", ",", "-", "0.0924726295", ",", "0", ",", "0.03279329655", ",", "0", ",", "0", ",", "0.21112820085", ",", "0.1171315748", ",", "-", "0.1387433371", ",", "-", "0.17977793675", ",", "-", "0.178621746783", ",", "0", ",", "0.2062683889", ",", "0", ",", "-", "0.3666567643", ",", "-", "0.03477789995", ",", "-", "0.03739959605", ",", "-", "0.2201016857", ",", "-", "0.2200536389", ",", "-", "0.07914952035", ",", "-", "0.36447794645", ",", "-", "0.3671961482", ",", "-", "0.3133794448", ",", "0", ",", "0.17210267545", ",", "0.10658254195", ",", "0.08924007655", ",", "0.09411156105", ",", "0.10658254195", ",", "-", "0.0730801066", ",", "-", "0.14896859135", ",", "0", ",", "-", "0.0214006982", ",", "-", "0.0214006982", ",", "-", "0.01750245165", ",", "0", ",", "0", ",", "0.0898825157", ",", "-", "0.19765268214", ",", "-", "0.15693958625", ",", "-", "0.3180104962", ",", "-", "0.3207985869", ",", "-", "0.00719627055", ",", "-", "0.31007260105", ",", "0.0725823506", ",", "0.0735078198", ",", "-", "0.0039660377", ",", "-", "0.09368746245", ",", "-", "0.478719279633", ",", "-", "0.1975303661", ",", "-", "0.2017262823", ",", "-", "0.41348632555", ",", "0", ",", "-", "0.1684478413", ",", "-", "0.175846389", ",", "-", "0.16516365835", ",", "-", "0.3464983763", ",", "-", "0.18718252845", ",", "-", "0.191972677", ",", "-", "0.17238381615", ",", "-", "0.1697318958", ",", "0", ",", "0", ",", "-", "0.21477073865", ",", "-", "0.17007417875", ",", "0.1634875858", ",", "-", "0.1200253761", ",", "0.14831225455", ",", "0.14290295365", ",", "-", "0.07299531535", ",", "-", "0.06564021825", ",", "-", "0.3674530173", ",", "-", "0.3682898226", ",", "-", "0.3657175036", ",", "-", "0.3628556076", ",", "-", "0.3671925802", ",", "0", ",", "0", ",", "-", "0.48270558", ",", "0.0515126917", ",", "0", ",", "0", ",", "0.0716117332", ",", "-", "0.3851395352", ",", "-", "0.1934016466", ",", "-", "0.19279148975", ",", "-", "0.18266155755", ",", "-", "0.1889809218", ",", "0.03223302675", ",", "-", "0.04033044465", ",", "0.1240272904", ",", "0.1240272904", ",", "-", "0.04472136385", ",", "0.0791184273", ",", "-", "0.106154409", ",", "0.0376388098", ",", "-", "0.0435071055", ",", "0", ",", "-", "0.3222974557", ",", "0", ",", "0", ",", "-", "0.3363291576", ",", "0.0838820997", ",", "-", "0.4698320809", ",", "0", ",", "0", ",", "-", "0.220481833", ",", "-", "0.2885363667", ",", "-", "0.1000266785", ",", "-", "0.087416024775", ",", "-", "0.1000266785", ",", "-", "0.1000266785", ",", "-", "0.0925147663", ",", "0.0682312272", ",", "-", "0.41407502525", ",", "-", "0.41407502525", ",", "-", "0.28066547675", ",", "0.04887694895", ",", "-", "0.44028738655", ",", "-", "0.14547848905", ",", "-", "0.1430077938", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11022016105", ",", "-", "0.0257966426", ",", "0", ",", "-", "0.0651406661", ",", "0", ",", "-", "0.1102686041", ",", "0", ",", "0", ",", "-", "0.38249962025", ",", "-", "0.29570769975", ",", "-", "0.29570769975", ",", "0.1154607377", ",", "-", "0.1041149419", ",", "0.02332192625", ",", "-", "0.23906835185", ",", "-", "0.2042393695", ",", "0.2145718255", ",", "0", ",", "0", ",", "-", "0.2792992422", ",", "0", ",", "0", ",", "0", ",", "-", "0.0492550912", ",", "-", "0.0414718886", ",", "0", ",", "-", "0.428372511", ",", "0.120699299", ",", "0.0642630229", ",", "-", "0.0303994024", ",", "-", "0.05550677935", ",", "-", "0.055433442175", ",", "-", "0.0765375287", ",", "-", "0.0187317548", ",", "-", "0.0187317548", ",", "-", "0.3678209358", ",", "-", "0.141046819825", ",", "-", "0.1372295389", ",", "-", "0.1403525078", ",", "0.1760370151", ",", "-", "0.0630282424", ",", "0", ",", "-", "0.0985259211", ",", "-", "0.0994992971", ",", "-", "0.09244976145", ",", "-", "0.09244976145", ",", "-", "0.1004990241", ",", "-", "0.09270094645", ",", "-", "0.086510345", ",", "-", "0.3770342159", ",", "-", "0.28762626425", ",", "-", "0.2418343753", ",", "0", ",", "0.0010474773", ",", "0.1367496453", ",", "-", "0.2450335656", ",", "-", "0.3821616128", ",", "-", "0.24193186435", ",", "-", "0.4077930396", ",", "0", ",", "-", "0.03031162855", ",", "0.147503188575", ",", "0.1743239489", ",", "0.120969773075", ",", "0.147503188575", ",", "0.150819277975", ",", "0.147503188575", ",", "0.16286909915", ",", "0.06678626465", ",", "0.1674307629", ",", "0.1620677596", ",", "0.147503188575", ",", "0.1454432735", ",", "0.15320376065", ",", "0.13287534275", ",", "0.14136825625", ",", "0.1530328409", ",", "0.143974200433", ",", "0.15135575", ",", "0", ",", "0", ",", "0.046052678575", ",", "0.046052678575", ",", "-", "0.1658332181", ",", "0", ",", "-", "0.1028713932", ",", "0", ",", "0.0277036083", ",", "0.0277036083", ",", "0.0351545731667", ",", "0.02645779375", ",", "0.0277036083", ",", "-", "0.1043297775", ",", "0.03299264495", ",", "0", ",", "0.023665609", ",", "0.1683466856", ",", "0", ",", "0", ",", "0.21643746405", ",", "-", "0.0358651228", ",", "0.1343653283", ",", "0", ",", "-", "0.01055837095", ",", "0", ",", "0.1926304914", ",", "0", ",", "-", "0.0629603871", ",", "0", ",", "-", "0.0711316309", ",", "-", "0.0671945192", ",", "0.03932760595", ",", "0.03932760595", ",", "-", "0.090167331", ",", "-", "0.09127907046", ",", "0", ",", "0", ",", "-", "0.28472732345", ",", "0", ",", "0", ",", "0.16227085755", ",", "0.0038113368", ",", "0.0032176951", ",", "0.0040543151", ",", "-", "0.06583563775", ",", "0.168339914", ",", "0", ",", "0", ",", "-", "0.03634145445", ",", "0.11220049755", ",", "-", "0.1483744006", ",", "0.11220049755", ",", "0.11220049755", ",", "0", ",", "0.11220049755", ",", "-", "0.056398100525", ",", "-", "0.3477950359", ",", "-", "0.056398100525", ",", "-", "0.2402996419", ",", "0", ",", "-", "0.2999044398", ",", "0", ",", "0", ",", "0", ",", "0.1781896515", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2504112081", ",", "-", "0.075384502", ",", "-", "0.1459586997", ",", "0", ",", "0", ",", "-", "0.178253413", ",", "-", "0.1790887329", ",", "-", "0.168754643", ",", "-", "0.2139388661", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1744225687", ",", "-", "0.0812914798", ",", "-", "0.0849975344", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2901435749", ",", "0.0027867684", ",", "-", "0.21525617195", ",", "-", "0.2197337765", ",", "0", ",", "-", "0.0902309221", ",", "-", "0.0892102962", ",", "-", "0.26651521495", ",", "-", "0.26345228175", ",", "0.05345220135", ",", "0.0535783428", ",", "0", ",", "0", ",", "0.08869096415", ",", "0.101663063", ",", "0.11835423405", ",", "0.10805425845", ",", "0.103846473", ",", "0.1041813739", ",", "0.11393135745", ",", "-", "0.10739285385", ",", "-", "0.102661231943", ",", "-", "0.1045425143", ",", "-", "0.1045425143", ",", "-", "0.1045425143", ",", "-", "0.103632593533", ",", "0.00907388262", ",", "0.00667859315", ",", "-", "0.0163841819", ",", "-", "0.0119256992", ",", "0.0194076856125", ",", "-", "0.0716003680833", ",", "-", "0.0716003680833", ",", "-", "0.0716003680833", ",", "-", "0.0409946783125", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0322467772", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0726166379", ",", "0.114604799", ",", "-", "0.1029438037", ",", "-", "0.3876040493", ",", "-", "0.0071568979", ",", "0.0078649903", ",", "-", "0.00890052765", ",", "-", "0.0077028108", ",", "0", ",", "-", "0.115325258", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.09497377405", ",", "0.02485626295", ",", "0.0228920327", ",", "0.0123513866", ",", "0", ",", "0", ",", "-", "0.0328793602", ",", "-", "0.2530736971", ",", "-", "0.178179478", ",", "-", "0.178179478", ",", "-", "0.0435799584", ",", "-", "0.2565282181", ",", "-", "0.1556673975", ",", "0.0674343361", ",", "-", "0.09066421255", ",", "0", ",", "0", ",", "0", ",", "0.077497167", ",", "0.1177472332", ",", "-", "0.208231401", ",", "-", "0.14824583705", ",", "-", "0.12033938525", ",", "-", "0.0721895182", ",", "0", ",", "0.04522407215", ",", "-", "0.03993417495", ",", "-", "0.22915870665", ",", "0.04522407215", ",", "-", "0.1655831092", ",", "-", "0.39986645425", ",", "0", ",", "0", ",", "0", ",", "-", "0.0907832565", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2337384598", ",", "-", "0.23600636655", ",", "-", "0.18121133945", ",", "-", "0.27372915685", ",", "0.0714506753", ",", "-", "0.1224444574", ",", "-", "0.1217389973", ",", "-", "0.1341773901", ",", "-", "0.09056764145", ",", "0", ",", "0", ",", "0", ",", "-", "0.12782787", ",", "0.0870034465", ",", "0", ",", "0", ",", "-", "0.4207073646", ",", "-", "0.4307273432", ",", "0", ",", "-", "0.22201468565", ",", "-", "0.03358914735", ",", "-", "0.009513407", ",", "-", "0.2856273187", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.236141384875", ",", "-", "0.07830468235", ",", "-", "0.17122483555", ",", "-", "0.18630520885", ",", "0", ",", "-", "0.4448336119", ",", "0", ",", "-", "0.06947285835", ",", "-", "0.14889989916", ",", "-", "0.3062846676", ",", "-", "0.04647303385", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"Abbey", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Abbey", "School\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Abbey", "Wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Abbots", "Lane\"", ",", "\"Abbots", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Aboyne", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Acer", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Acremead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Acton", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Acton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"Acton", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Adam", "&", "Eve\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Addison", "Way\"", ",", "\"Addlestone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Aintree", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ajax", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Albemarle\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Albert", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Albion", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Albury", "Close\"", ",", "\"Albury", "Drive\"", ",", "\"Albyfield\"", ",", "\"Albyns", "Close\"", ",", "\"Alcock", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Aldercroft\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alderton", "Way\"", ",", "\"Aldgate\"", ",", "\"\"", ",", "\"Aldgate", "East\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Aldwych\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Algar", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"All", "Saints\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Allan", "Way\"", ",", "\"\"", ",", "\"Allen", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alleyn", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alloa", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alma", "Street\"", ",", "\"\"", ",", "\"Almond", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alperton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alpha", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"Alsace", "Road\"", ",", "\"\"", ",", "\"Alscot", "Road\"", ",", "\"Alston", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Alton", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Altyre", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Amersham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Amherst", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Amity", "Road\"", ",", "\"\"", ",", "\"Ampere", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Anerley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Angel\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Angel", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Anson", "Road\"", ",", "\"\"", ",", "\"Antlers", "Hill\"", ",", "\"Aperfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Apollo", "Place\"", ",", "\"Apple", "Tree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Applegarth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Arbery", "Road\"", ",", "\"\"", ",", "\"Arbour", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Arden", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Ardley", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Arena\"", ",", "\"Arena", "Essex\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Archway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Armada", "Point\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Arnison", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Arnos", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Arsenal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ascot", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ash", "Row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashbury", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashen", "Vale\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashley", "Drive\"", ",", "\"\"", ",", "\"Ashley", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashmead", "Lane\"", ",", "\"\"", ",", "\"Ashmore", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashtead\"", ",", "\"\"", ",", "\"\"", ",", "\"Ashton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Askwith", "Road\"", ",", "\"\"", ",", "\"Asmuns", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"Aspen", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Atcost", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Athlon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Audric", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"Augustine", "Rd\"", ",", "\"\"", ",", "\"\"", ",", "\"Auriol", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Avalon", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Avenue", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Aviator", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ayles", "Road\"", ",", "\"Aylesbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ayloffs", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Badgers", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Baileys\"", ",", "\"\"", ",", "\"\"", ",", "\"Baker", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Balham\"", ",", "\"\"", ",", "\"\"", ",", "\"Balchen", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Baltic", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bank\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Banstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barbican\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bargery", "Road\"", ",", "\"\"", ",", "\"Barham", "Park\"", ",", "\"\"", ",", "\"Barhill", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barking\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barkingside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barnehurst\"", ",", "\"\"", ",", "\"Barnes\"", ",", "\"\"", ",", "\"\"", ",", "\"Barnes", "Pond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barnet", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barnet", "Odeon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barons", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Barset", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bashley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Basing", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bath", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Baudwin", "Road\"", ",", "\"Bavaria", "Road\"", ",", "\"\"", ",", "\"Bawtry", "Road\"", ",", "\"\"", ",", "\"Bayham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bayswater\"", ",", "\"\"", ",", "\"\"", ",", "\"Bazile", "Road\"", ",", "\"Beacon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Beadon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bears", "Wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Beck", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Beckton\"", ",", "\"\"", ",", "\"\"", ",", "\"Beckton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Becontree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bedford", "Hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Beech", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Beech", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Begbie", "Road\"", ",", "\"Beggars", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bell", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bell", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bellingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Belmont\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Belsize", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Belvedere\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Belvue", "Close\"", ",", "\"\"", ",", "\"Belvue", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bendish", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Bengal", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bentley", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bermondsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Berrylands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Betchworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Betts", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bexley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bexley", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bexleyheath\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bickley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bilton", "Road\"", ",", "\"\"", ",", "\"Bingham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bird", "In", "Hand\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Birch", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Birkbeck\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bispham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blackfriars\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blackheath\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blackwall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blair", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blanchedowne\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bleriot", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blinco", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Blore", "Close\"", ",", "\"Blossom", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bluebird", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bodium", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Boltons", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Bond", "Street\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"abbey", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"abbey", "school\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"abbey", "wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"abbots", "lane\"", ",", "\"abbots", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"aboyne", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"acer", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"acremead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"acton", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"acton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"acton", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"adam", "&", "eve\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"addison", "way\"", ",", "\"addlestone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"aintree", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ajax", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"albemarle\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"albert", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"albion", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"albury", "close\"", ",", "\"albury", "drive\"", ",", "\"albyfield\"", ",", "\"albyns", "close\"", ",", "\"alcock", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"aldercroft\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alderton", "way\"", ",", "\"aldgate\"", ",", "\"\"", ",", "\"aldgate", "east\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"aldwych\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"algar", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"all", "saints\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"allan", "way\"", ",", "\"\"", ",", "\"allen", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alleyn", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alloa", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alma", "street\"", ",", "\"\"", ",", "\"almond", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alperton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alpha", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"alsace", "road\"", ",", "\"\"", ",", "\"alscot", "road\"", ",", "\"alston", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"alton", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"altyre", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"amersham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"amherst", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"amity", "road\"", ",", "\"\"", ",", "\"ampere", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"anerley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"angel\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"angel", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"anson", "road\"", ",", "\"\"", ",", "\"antlers", "hill\"", ",", "\"aperfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"apollo", "place\"", ",", "\"apple", "tree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"applegarth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"arbery", "road\"", ",", "\"\"", ",", "\"arbour", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"arden", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"ardley", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"arena\"", ",", "\"arena", "essex\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"archway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"armada", "point\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"arnison", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"arnos", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"arsenal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ascot", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ash", "row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ashbury", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"ashen", "vale\"", ",", "\"\"", ",", "\"\"", ",", "\"ashford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ashley", "drive\"", ",", "\"\"", ",", "\"ashley", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"ashmead", "lane\"", ",", "\"\"", ",", "\"ashmore", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ashtead\"", ",", "\"\"", ",", "\"\"", ",", "\"ashton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"askwith", "road\"", ",", "\"\"", ",", "\"asmuns", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"aspen", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"atcost", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"athlon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"audric", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"augustine", "rd\"", ",", "\"\"", ",", "\"\"", ",", "\"auriol", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"avalon", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"avenue", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"aviator", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ayles", "road\"", ",", "\"aylesbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ayloffs", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"badgers", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"baileys\"", ",", "\"\"", ",", "\"\"", ",", "\"baker", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"balham\"", ",", "\"\"", ",", "\"\"", ",", "\"balchen", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"baltic", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bank\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"banstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barbican\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bargery", "road\"", ",", "\"\"", ",", "\"barham", "park\"", ",", "\"\"", ",", "\"barhill", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barking\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barkingside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barnehurst\"", ",", "\"\"", ",", "\"barnes\"", ",", "\"\"", ",", "\"\"", ",", "\"barnes", "pond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barnet", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barnet", "odeon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barons", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"barset", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bashley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"basing", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bath", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"baudwin", "road\"", ",", "\"bavaria", "road\"", ",", "\"\"", ",", "\"bawtry", "road\"", ",", "\"\"", ",", "\"bayham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bayswater\"", ",", "\"\"", ",", "\"\"", ",", "\"bazile", "road\"", ",", "\"beacon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"beadon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bears", "wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"beck", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"beckton\"", ",", "\"\"", ",", "\"\"", ",", "\"beckton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"becontree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bedford", "hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"beech", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"beech", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"begbie", "road\"", ",", "\"beggars", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bell", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bell", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bellingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"belmont\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"belsize", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"belvedere\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"belvue", "close\"", ",", "\"\"", ",", "\"belvue", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bendish", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"bengal", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bentley", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bermondsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"berrylands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"betchworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"betts", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bexley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bexley", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bexleyheath\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bickley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bilton", "road\"", ",", "\"\"", ",", "\"bingham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bird", "in", "hand\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"birch", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"birkbeck\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bispham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blackfriars\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blackheath\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blackwall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blair", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blanchedowne\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bleriot", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blinco", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"blore", "close\"", ",", "\"blossom", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bluebird", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bodium", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"boltons", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"bond", "street\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,561
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London5", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "\"HTF:P\"", ",", "\"HRV:P\"", ",", "\"HRC:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HND:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HBT:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HST:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HBY:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HIG:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HDN:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HOL:CP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HPK:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HRD:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HCH:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HNC:P\"", ",", "null", ",", "\"HNE:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HNW:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HPC:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CLF:M\"", ",", "null", ",", "null", ",", "\"CHF:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CYL:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CHX:BN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CHG:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CHP:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CWD:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ICK:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KEN:N\"", ",", "null", ",", "\"KGN:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OLY:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KTN:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KNT:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KEW:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KIL:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KPK:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KBY:J\"", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.4812490118", ",", "51.472570497", ",", "51.472196484", ",", "51.4710938248", ",", "51.458982355", ",", "50.0145356668", ",", "51.4714560711", ",", "51.4720592825", ",", "51.4720592825", ",", "51.3985353647", ",", "51.5730365039", ",", "51.5512420988", ",", "51.5402945795", ",", "51.5434735933", ",", "51.5427982992", ",", "51.5401746893", ",", "51.5579350642", ",", "51.5990616838", ",", "0", ",", "51.4674852849", ",", "51.3941319916", ",", "51.3945868828", ",", "51.4835133288", ",", "0", ",", "51.4315119956", ",", "51.4530946129", ",", "0", ",", "51.6453642986", ",", "0", ",", "51.6179142746", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5236655215", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6032133021", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5546992192", ",", "51.5370233239", ",", "51.5142876438", ",", "51.5114749347", ",", "51.43330831", ",", "0", ",", "0", ",", "0", ",", "51.5462510064", ",", "51.5796659956", ",", "51.6009392927", ",", "51.5833937912", ",", "51.5674728655", ",", "51.5991793662", ",", "51.5878761969", ",", "51.5858446901", ",", "51.5612011224", ",", "51.559542562", ",", "51.5685324233", ",", "51.5826548656", ",", "51.6303693904", ",", "51.589374269", ",", "0", ",", "51.449176654", ",", "51.3766503722", ",", "51.5356479889", ",", "51.6181862745", ",", "0", ",", "0", ",", "51.5901804888", ",", "51.5888119228", ",", "51.474672032", ",", "51.5815134146", ",", "51.6680498334", ",", "51.4281777532", ",", "51.4458996058", ",", "51.4562292715", ",", "0", ",", "51.55462258", ",", "51.570281102", ",", "51.4815388815", ",", "51.5682395246", ",", "51.4820431613", ",", "51.5113089293", ",", "0", ",", "0", ",", "51.5950183112", ",", "51.5181723964", ",", "51.5189680779", ",", "51.4148439641", ",", "51.4167452161", ",", "51.4216399501", ",", "51.5198391612", ",", "51.5050832275", ",", "51.5799889709", ",", "51.5900886148", ",", "51.4571533358", ",", "0", ",", "51.4528852964", ",", "51.4595072706", ",", "51.4528938904", ",", "0", ",", "0", ",", "51.5404613587", ",", "51.5031591608", ",", "51.5652488882", ",", "51.5620121797", ",", "51.4940467171", ",", "0", ",", "0", ",", "51.6134462569", ",", "51.5844583262", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5931878244", ",", "51.6801228206", ",", "51.6662001683", ",", "0", ",", "51.4752949478", ",", "51.5158473946", ",", "51.5053214819", ",", "0", ",", "0", ",", "51.4886924725", ",", "51.4834108085", ",", "51.4797368365", ",", "0", ",", "0", ",", "51.4658959543", ",", "51.5270512699", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.492356077", ",", "0", ",", "51.5769626144", ",", "51.4625098081", ",", "51.4666014492", ",", "51.6097488306", ",", "0", ",", "51.5895705013", ",", "51.6502707019", ",", "51.3545510838", ",", "51.3545510838", ",", "0", ",", "0", ",", "0", ",", "51.3530115053", ",", "51.3530115053", ",", "0", ",", "51.5173071963", ",", "51.5186252975", ",", "51.5204185578", ",", "51.5191086681", ",", "51.4282766935", ",", "51.6188140232", ",", "51.5896510787", ",", "51.5855337584", ",", "51.5581181181", ",", "51.5749437131", ",", "51.5526795159", ",", "51.5957698333", ",", "51.5516225514", ",", "51.5749437131", ",", "51.5749437131", ",", "51.5749437131", ",", "51.5749437131", ",", "51.4146892299", ",", "51.4146892299", ",", "51.501070355", ",", "0", ",", "51.5508498941", ",", "51.4146892299", ",", "51.4146892299", ",", "51.5309286475", ",", "51.5257101869", ",", "51.4146892299", ",", "0", ",", "51.4146892299", ",", "51.3781222222", ",", "51.3817378274", ",", "51.4474161477", ",", "51.4146892299", ",", "51.3792432979", ",", "51.4146892299", ",", "51.3773437052", ",", "51.4158849981", ",", "51.3682055512", ",", "51.4146892299", ",", "51.3512322992", ",", "51.4146892299", ",", "51.4146892299", ",", "51.4146892299", ",", "51.4428443062", ",", "51.4284329461", ",", "51.4284329461", ",", "0", ",", "0", ",", "51.5989671716", ",", "51.5889643368", ",", "51.5915410102", ",", "51.5921663055", ",", "51.6072202008", ",", "0", ",", "0", ",", "0", ",", "51.3313953599", ",", "51.6079463742", ",", "0", ",", "51.5528660654", ",", "51.5453547062", ",", "51.5546169484", ",", "51.5497194947", ",", "51.5481811047", ",", "51.5481916296", ",", "51.5579377761", ",", "51.5461619923", ",", "51.4266616051", ",", "51.3808232719", ",", "0", ",", "51.3365222464", ",", "51.3555605743", ",", "51.5785191665", ",", "51.3983673277", ",", "51.5652047544", ",", "51.385252753", ",", "51.385252753", ",", "51.6063508588", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.385252753", ",", "51.5764857605", ",", "51.5717489787", ",", "51.577637329", ",", "51.5687306322", ",", "51.5722329485", ",", "51.5784295926", ",", "51.5810325968", ",", "51.5784295926", ",", "51.4741551985", ",", "51.4209537721", ",", "51.4217988395", ",", "51.6447406735", ",", "51.6447406735", ",", "51.6449647655", ",", "51.6462109809", ",", "51.5210100457", ",", "51.5734119045", ",", "0", ",", "51.6221592462", ",", "51.617844894", ",", "51.5808131671", ",", "51.6276257196", ",", "51.511886907", ",", "0", ",", "51.3624470645", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4445205544", ",", "51.4102294803", ",", "51.3122150999", ",", "51.6398025896", ",", "51.4573346352", ",", "0", ",", "51.5885477017", ",", "51.5877484862", ",", "51.4545214882", ",", "51.4361836077", ",", "51.4361836077", ",", "51.5751311096", ",", "51.3713810243", ",", "51.5929676019", ",", "51.5062852283", ",", "51.5244015881", ",", "51.6375788555", ",", "51.3949461303", ",", "51.3915044235", ",", "51.6074620652", ",", "51.551781349", ",", "51.5510230647", ",", "51.5514645389", ",", "0", ",", "51.5933306829", ",", "51.5088435995", ",", "51.5331669375", ",", "51.3698900152", ",", "51.5535335072", ",", "51.5354238502", ",", "51.5511379647", ",", "51.5272776869", ",", "51.542579091", ",", "51.5318369516", ",", "51.5477158423", ",", "51.5517311514", ",", "0", ",", "0", ",", "51.5505832148", ",", "51.55272896", ",", "51.6071885683", ",", "51.6114408141", ",", "51.6109982858", ",", "0", ",", "0", ",", "51.6087628376", ",", "51.6087628376", ",", "51.6080663749", ",", "51.327148178", ",", "51.4747407138", ",", "51.5916979711", ",", "51.5916979711", ",", "51.5916979711", ",", "51.5916979711", ",", "0", ",", "0", ",", "51.3233360771", ",", "0", ",", "51.5845545883", ",", "51.5843704017", ",", "0", ",", "51.5221362945", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5429668337", ",", "51.4525686141", ",", "51.437194216", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5529886557", ",", "51.6115281779", ",", "51.3731520825", ",", "51.5192944012", ",", "51.4824497431", ",", "0", ",", "0", ",", "51.5717853894", ",", "51.6645254669", ",", "51.5851579342", ",", "51.5757995964", ",", "51.5901199604", ",", "51.5983071532", ",", "51.3834772946", ",", "51.4828165219", ",", "51.4859841928", ",", "51.517013793", ",", "51.5175614564", ",", "51.5179200991", ",", "51.4917017887", ",", "51.625874289", ",", "51.541553159", ",", "51.6041466055", ",", "51.5973286106", ",", "51.5441236022", ",", "0", ",", "51.3486947144", ",", "51.3514074256", ",", "51.4144891137", ",", "51.3514074256", ",", "51.4988266118", ",", "51.5073431481", ",", "51.497124914", ",", "51.5031015326", ",", "51.3755592997", ",", "51.5155508535", ",", "51.4382055167", ",", "51.470987042", ",", "51.5214324016", ",", "0", ",", "51.4558682635", ",", "51.5582942825", ",", "51.5524853121", ",", "51.5567194024", ",", "51.5564603344", ",", "51.421587234", ",", "51.679772325", ",", "51.4933662381", ",", "51.5666774736", ",", "51.424954484", ",", "51.4599611384", ",", "51.4675788731", ",", "51.5599940318", ",", "51.3857529636", ",", "51.3953930818", ",", "51.6049646889", ",", "51.6049646889", ",", "51.6049646889", ",", "0", ",", "51.4473547626", ",", "51.5964112408", ",", "0", ",", "51.5960804948", ",", "51.61230259", ",", "0", ",", "0", ",", "51.6599184329", ",", "51.6612749442", ",", "0", ",", "51.5902537462", ",", "51.3470008994", ",", "51.3972194348", ",", "51.4432124506", ",", "51.3719562781", ",", "51.4480821382", ",", "51.614263638", ",", "0", ",", "51.5598449284", ",", "51.5979647736", ",", "0", ",", "51.5381683088", ",", "0", ",", "0", ",", "51.5263168831", ",", "51.3007420991", ",", "51.3007420991", ",", "0", ",", "51.3880574222", ",", "51.410469945", ",", "0", ",", "51.5494816939", ",", "51.5480155876", ",", "51.5493274741", ",", "51.5499275216", ",", "51.5494458133", ",", "51.5469831214", ",", "51.3951668933", ",", "51.3354132146", ",", "51.3391284379", ",", "51.5479768367", ",", "0", ",", "51.6057561162", ",", "51.6064021777", ",", "51.5956430881", ",", "0", ",", "0", ",", "51.4496386446", ",", "51.4404052705", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4587484768", ",", "51.3681021656", ",", "0", ",", "0", ",", "0", ",", "51.5758657754", ",", "51.5737239312", ",", "0", ",", "51.466165407", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.44927404", ",", "51.4445588217", ",", "0", ",", "51.4465456112", ",", "51.4477242307", ",", "0", ",", "51.5545778968", ",", "51.5443073044", ",", "51.5614884418", ",", "51.5642050072", ",", "51.5614884418", ",", "51.4446306393", ",", "51.4406670074", ",", "51.4401623923", ",", "0", ",", "51.573751989", ",", "51.5865028562", ",", "51.5846400135", ",", "51.5867710271", ",", "51.5747468441", ",", "51.5729032101", ",", "51.57817857", ",", "51.5840095438", ",", "51.571180557", ",", "51.571180557", ",", "51.5672674796", ",", "51.5598141351", ",", "51.5696225359", ",", "51.5696225359", ",", "51.5049354973", ",", "51.504396876", ",", "51.5118926167", ",", "51.5865864841", ",", "51.4956251722", ",", "51.4954463134", ",", "0", ",", "0", ",", "51.5560513672", ",", "51.538179982", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4824183475", ",", "51.5119818063", ",", "0", ",", "0", ",", "51.3924218439", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5369700291", ",", "51.4894729113", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5160775622", ",", "51.4629069004", ",", "51.4711914236", ",", "51.4712818809", ",", "51.4740019673", ",", "51.4732227601", ",", "51.4631884438", ",", "51.469452849", ",", "51.45843773", ",", "51.4622330231", ",", "51.4730793808", ",", "51.4687324219", ",", "51.4629069004", ",", "51.4339728534", ",", "0", ",", "51.5091425765", ",", "0", ",", "0", ",", "51.3931810265", ",", "51.5777548523", ",", "51.5572257802", ",", "51.4094869666", ",", "51.4634470384", ",", "0", ",", "51.4041901337", ",", "51.5944328121", ",", "51.585790774", ",", "51.5445797587", ",", "0", ",", "51.5296038077", ",", "51.5308892238", ",", "51.5736923856", ",", "0", ",", "51.5770877354", ",", "0", ",", "51.5770877354", ",", "0", ",", "51.5260410411", ",", "0", ",", "0", ",", "51.4042454285", ",", "51.5332336476", ",", "51.4576913594", ",", "0", ",", "51.5961761383", ",", "51.5433815307", ",", "51.564853029", ",", "51.5669748063", ",", "0", ",", "51.5805675097", ",", "0", ",", "51.4884922511", ",", "0", ",", "0", ",", "0", ",", "51.500377087", ",", "51.5904066187", ",", "51.6078306281", ",", "51.5513555826", ",", "51.5434681628", ",", "51.4007700421", ",", "0", ",", "51.4641831476", ",", "51.4097799771", ",", "0", ",", "0", ",", "51.4329544982", ",", "51.440160713", ",", "0", ",", "51.4823120193", ",", "0", ",", "51.4385873999", ",", "51.3539775976", ",", "51.4421650578", ",", "51.436994869", ",", "0", ",", "51.610058906", ",", "51.454565511", ",", "51.5292807854", ",", "0", ",", "51.4464927679", ",", "0", ",", "0", ",", "51.5025538337", ",", "51.5125263911", ",", "0", ",", "51.5647759538", ",", "51.5727380684", ",", "0", ",", "51.5505035653", ",", "0", ",", "51.4733442043", ",", "0", ",", "51.5276659884", ",", "0", ",", "51.5457136312", ",", "51.5683108639", ",", "51.5715604975", ",", "51.5706574487", ",", "51.5700853927", ",", "0", ",", "51.4682065045", ",", "0", ",", "0", ",", "51.4939240318", ",", "51.3132920893", ",", "51.6221494053", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.39516566", ",", "51.5992990533", ",", "51.5441954256", ",", "51.5424601446", ",", "51.3612702572", ",", "0", ",", "51.469525763", ",", "0", ",", "0", ",", "0", ",", "51.4923143071", ",", "0", ",", "0", ",", "51.54548932", ",", "51.5549744896", ",", "51.4666475086", ",", "51.4660174588", ",", "51.4650163422", ",", "51.51824418", ",", "51.40623065", ",", "51.5138907532", ",", "0", ",", "0", ",", "51.5208526323", ",", "51.6334822483", ",", "51.577707702", ",", "51.5259011356", ",", "51.5958039355", ",", "51.5700484647", ",", "51.533946859", ",", "51.5572587471", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5507323517", ",", "51.5518959179", ",", "51.5116422676", ",", "0", ",", "51.5506101319", ",", "51.484783309", ",", "51.4932897515", ",", "51.5240576317", ",", "51.5215660512", ",", "51.5083598611", ",", "51.4871003908", ",", "0", ",", "0", ",", "51.6051155423", ",", "51.5192818836", ",", "0", ",", "51.5529844934", ",", "51.5263807704", ",", "51.3177386781", ",", "51.5081259449", ",", "51.440232558", ",", "51.4266096319", ",", "51.5938536054", ",", "51.6088419681", ",", "51.4876730291", ",", "51.3079674423", ",", "51.4808642014", ",", "51.4808642014", ",", "51.484471682", ",", "51.4896727156", ",", "51.4742160597", ",", "51.4820152198", ",", "51.5868242346", ",", "51.4796401163", ",", "51.4821389065", ",", "51.4748217146", ",", "51.3443742116", ",", "51.5880871077", ",", "51.5066814224", ",", "0", ",", "51.4065081926", ",", "51.6396539177", ",", "51.3684091252", ",", "51.5182935298", ",", "51.4571236185", ",", "51.4575122229", ",", "51.4575770071", ",", "0", ",", "0", ",", "51.5356808434", ",", "51.5367181821", ",", "51.6041102467", ",", "51.6041102467", ",", "51.6041102467", ",", "51.6643330148", ",", "51.4517877495", ",", "51.6168633775", ",", "51.6553226339", ",", "51.64300294", ",", "51.6638027695", ",", "51.6360397693", ",", "51.6429244214", ",", "0", ",", "51.4441572581", ",", "51.4441572581", ",", "0", ",", "51.4649580578", ",", "0", ",", "0", ",", "51.5549800629", ",", "51.5287602895", ",", "51.5525399713", ",", "51.5549800629", ",", "51.5549800629", ",", "0", ",", "51.6005891741", ",", "51.6005891741", ",", "0", ",", "51.4716948312", ",", "51.4551789136", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3150984803", ",", "0", ",", "51.3563277494", ",", "51.3580793041", ",", "51.3680297286", ",", "51.3599571317", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5993092711", ",", "51.5993092711", ",", "51.4832677432", ",", "51.4899393124", ",", "51.4114725438", ",", "51.4801312608", ",", "0", ",", "51.4880307375", ",", "51.4855511531", ",", "51.4803455931", ",", "51.4826432565", ",", "51.4851382429", ",", "51.3572807058", ",", "51.3561084861", ",", "51.3723815981", ",", "51.3578228689", ",", "0", ",", "0", ",", "51.3653831202", ",", "0", ",", "51.6143448654", ",", "51.534402828", ",", "51.5222628592", ",", "51.5129567953", ",", "0", ",", "51.5117657305", ",", "51.5117657305", ",", "51.5306871609", ",", "51.5306871609", ",", "0", ",", "51.6158915037", ",", "51.6155040071", ",", "0", ",", "51.5099410946", ",", "51.5099410946", ",", "51.3902662636", ",", "51.5977684256", ",", "51.4967401173", ",", "51.4983619069", ",", "51.5221000564", ",", "51.5286057855", ",", "0", ",", "51.4019422855", ",", "0", ",", "0", ",", "51.4436353546", ",", "51.4528607001", ",", "51.4373943307", ",", "51.4402759428", ",", "51.4555752693", ",", "51.4535228219", ",", "51.4436353546", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3864438827", ",", "0", ",", "0", ",", "51.5423264761", ",", "0", ",", "51.3629526003", ",", "51.3629526003", ",", "51.3635389405", ",", "51.3562931918", ",", "51.3507002709", ",", "51.6001046522", ",", "51.5577257411", ",", "51.4489118657", ",", "51.3919515046", ",", "51.5277485582", ",", "0", ",", "0", ",", "51.5650603169", ",", "51.5631537781", ",", "51.6283288682", ",", "51.5642523741", ",", "51.5642523741", ",", "0", ",", "51.64623213", ",", "51.64623213", ",", "51.4856423954", ",", "51.5197579802", ",", "0", ",", "0", ",", "51.5848835724", ",", "51.3672269255", ",", "51.5565541885", ",", "51.5589027954", ",", "51.4993008777", ",", "51.3997824136", ",", "51.5819708913", ",", "51.3758348865", ",", "0", ",", "51.4168956303", ",", "51.4168956303", ",", "51.4474122358", ",", "51.5211515086", ",", "51.4826612364", ",", "0", ",", "51.600908018", ",", "51.590099099", ",", "51.5937460417", ",", "51.6053906763", ",", "0", ",", "51.5710105212", ",", "0", ",", "51.5632074264", ",", "51.5630450596", ",", "51.5853089965", ",", "0", ",", "51.6492928226", ",", "51.6492928226", ",", "0", ",", "51.4316512523", ",", "0", ",", "51.6195229921", ",", "51.6335495847", ",", "51.6295825228", ",", "51.6314453842", ",", "51.6094286577", ",", "51.6067086056", ",", "51.6335495847", ",", "51.6171713937", ",", "51.623327496", ",", "51.6314968015", ",", "51.6334954712", ",", "51.6335495847", ",", "0", ",", "51.5283659703", ",", "0", ",", "51.6081623198", ",", "51.5274726289", ",", "51.5274726289", ",", "0", ",", "51.3172585051", ",", "51.3207456269", ",", "51.3207456269", ",", "0", ",", "51.4527467021", ",", "51.4052103797", ",", "51.4114717205", ",", "51.418846453", ",", "51.418846453", ",", "51.4126351365", ",", "51.4169946354", ",", "51.421149102", ",", "51.5206147451", ",", "51.5209526033", ",", "51.481442838", ",", "51.4928488852", ",", "51.4941400077", ",", "51.4926689372", ",", "51.4929207037", ",", "51.4929207037", ",", "51.4909159938", ",", "51.4909159938", ",", "51.4787248153", ",", "51.522896623", ",", "51.5495979492", ",", "0", ",", "0", ",", "51.404895944", ",", "51.404895944", ",", "51.4676703968", ",", "51.5125091935", ",", "51.4878424123", ",", "51.3639608597", ",", "51.4159850744", ",", "51.444125115", ",", "51.6100899786", ",", "51.4266627953", ",", "0", ",", "51.5625776138", ",", "51.4266627953", ",", "51.4266627953", ",", "51.4266627953", ",", "51.5442418857", ",", "51.5130225504", ",", "51.3906964414", ",", "51.5439712511", ",", "51.5005712718", ",", "0", ",", "51.5938811524", ",", "51.3738313826", ",", "51.4532239744", ",", "51.4555247104", ",", "51.4317473012", ",", "51.5723031798", ",", "0", ",", "51.5409813294", ",", "51.5827533496", ",", "51.5393624524", ",", "51.5899524237", ",", "51.5967199963", ",", "0", ",", "51.5181838393", ",", "51.4129085141", ",", "51.4110662572", ",", "51.3210980666", ",", "51.5862617779", ",", "51.3701312692", ",", "51.3915506105", ",", "51.3915506105", ",", "51.6381332388", ",", "51.4264243434", ",", "51.585931832", ",", "51.5851148752", ",", "51.58295825", ",", "51.5384494379", ",", "51.5432218558", ",", "51.5851148752", ",", "51.5851148752", ",", "51.5851148752", ",", "0", ",", "51.5853894525", ",", "51.4095549816", ",", "51.3636470429", ",", "51.4030102784", ",", "51.424731673", ",", "51.3698461238", ",", "51.431542263", ",", "51.5088300449", ",", "51.5479382437", ",", "51.6102529618", ",", "51.4030102784", ",", "51.3121176732", ",", "51.4743611188", ",", "51.5053214839", ",", "51.5207170596", ",", "51.4030102784", ",", "51.4030102784", ",", "51.636349468", ",", "51.6298574454", ",", "51.5223797662", ",", "51.5223797662", ",", "51.5223797662", ",", "51.5250554604", ",", "51.6374763798", ",", "51.5223797662", ",", "0", ",", "51.4379490868", ",", "0", ",", "51.4485766459", ",", "51.6116694567", ",", "51.4868307209", ",", "51.440159662", ",", "51.5982532332", ",", "51.6045222382", ",", "51.5044191219", ",", "51.4306944325", ",", "51.537399606", ",", "51.3932015093", ",", "0", ",", "0", ",", "0", ",", "51.5625644196", ",", "51.579813108", ",", "51.4945789071", ",", "0", ",", "0", ",", "51.5535970026", ",", "51.43662514", ",", "51.5483947861", ",", "51.5592918578", ",", "51.5583844816", ",", "51.5579090778", ",", "51.561963992", ",", "51.5625202066", ",", "51.5581651847", ",", "51.5570193301", ",", "51.5486956155", ",", "51.5463003968", ",", "0", ",", "0", ",", "51.4973775975", ",", "51.4746029895", ",", "51.4964219769", ",", "51.3590903985", ",", "51.4755503544", ",", "51.3590903985", ",", "51.3590903985", ",", "51.4451283521", ",", "0", ",", "0", ",", "51.4748103502", ",", "0", ",", "51.6655048534", ",", "51.3508726211", ",", "51.4342568763", ",", "51.5731117841", ",", "51.5731117841", ",", "51.5378167874", ",", "51.4672626941", ",", "51.5631084748", ",", "51.4384082555", ",", "51.4460893055", ",", "51.4445936399", ",", "51.6748357566", ",", "0", ",", "0", ",", "51.5637510247", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5121191885", ",", "0", ",", "51.457698291", ",", "0", ",", "51.4714307139", ",", "0", ",", "51.4738042717", ",", "0", ",", "51.5115498111", ",", "51.509784821", ",", "51.5101705664", ",", "51.5269505162", ",", "0", ",", "51.469643423", ",", "51.5482862759", ",", "51.439210585", ",", "0", ",", "0", ",", "51.4878451546", ",", "51.461655672", ",", "51.490069468", ",", "0", ",", "51.562531702", ",", "51.4751703565", ",", "51.4666536026", ",", "51.4700470934", ",", "51.5362199183", ",", "51.5422513591", ",", "51.5471151776", ",", "51.545551177", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4653622374", ",", "51.5365026927", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5296335907", ",", "51.5296335907", ",", "0", ",", "51.351073958", ",", "0", ",", "0", ",", "0", ",", "51.5466709384", ",", "51.402079174", ",", "51.5352046466", ",", "0", ",", "51.4576383047", ",", "51.4655460429", ",", "51.5655102506", ",", "51.49971199", ",", "51.5632274822", ",", "51.606370864", ",", "0", ",", "51.5641134685", ",", "51.3169947105", ",", "51.4987058594", ",", "51.5168992355", ",", "51.5633194832", ",", "51.5729059322", ",", "51.5781807966", ",", "51.4786483367", ",", "51.5113486621", ",", "51.550809941", ",", "51.5708998646", ",", "51.4122226338", ",", "51.4515864892", ",", "51.6530531002", ",", "51.526922846", ",", "51.6186928882", ",", "51.4657985475", ",", "51.384926045", ",", "51.4831660413", ",", "51.4872388306", ",", "51.5674329756", ",", "51.5084485027", ",", "0", ",", "51.4411458376", ",", "51.588433388", ",", "0", ",", "51.3294361533", ",", "51.581401905", ",", "51.5564512817", ",", "51.4967335649", ",", "51.4482122116", ",", "51.5156256515", ",", "51.4794053407", ",", "51.3494988172", ",", "51.4798150033", ",", "51.4891549434", ",", "51.4927855804", ",", "51.481407799", ",", "0", ",", "0", ",", "51.5244380729", ",", "51.5145644176", ",", "0", ",", "0", ",", "0", ",", "51.6364776131", ",", "51.4512527029", ",", "51.3542740615", ",", "51.5412814268", ",", "51.3712982127", ",", "51.4336166042", ",", "0", ",", "51.4283338616", ",", "51.4976606861", ",", "51.558119542", ",", "0", ",", "51.5684553274", ",", "51.5743472384", ",", "51.5318730111", ",", "51.5381981964", ",", "51.547596553", ",", "0", ",", "0", ",", "0", ",", "51.6007155032", ",", "51.5527498867", ",", "51.4244335143", ",", "0", ",", "51.5124288941", ",", "0", ",", "51.4296457841", ",", "51.4708557878", ",", "51.4606324454", ",", "51.5003334905", ",", "51.4228348334", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3752028658", ",", "0", ",", "0", ",", "51.4114834459", ",", "51.5648800114", ",", "51.41901599", ",", "0", ",", "51.5516223525", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5265887056", ",", "0", ",", "51.4773087502", ",", "51.4520033689", ",", "51.6450394656", ",", "51.665031916", ",", "51.665031916", ",", "51.665031916", ",", "51.5302239598", ",", "51.6223309229", ",", "51.665031916", ",", "51.3244317199", ",", "51.3244317199", ",", "51.4106208405", ",", "51.4059782116", ",", "51.4038096522", ",", "51.3244317199", ",", "51.3243035461", ",", "51.5412898345", ",", "51.5910076395", ",", "51.3255038003", ",", "51.5950010839", ",", "51.5011835198", ",", "51.5302879298", ",", "51.5248735148", ",", "51.3349507152", ",", "51.4606682048", ",", "0", ",", "51.5582898281", ",", "51.4803063854", ",", "51.4899294178", ",", "51.4850526037", ",", "51.4837633683", ",", "51.4807987996", ",", "51.4899294178", ",", "51.4899294178", ",", "51.4899294178", ",", "51.4881364955", ",", "51.4882538244", ",", "0", ",", "51.5300207186", ",", "51.5283225113", ",", "51.5255235198", ",", "51.5339830414", ",", "51.4115340111", ",", "51.4115340111", ",", "0", ",", "51.4945468486", ",", "51.5023573245", ",", "51.5335970549", ",", "51.4916225766", ",", "51.496069704", ",", "51.5016555445", ",", "0", ",", "51.5231082805", ",", "51.5251629751", ",", "0", ",", "51.4108641268", ",", "51.4203320198", ",", "51.3874765074", ",", "51.5450454476", ",", "51.5070361929", ",", "0", ",", "51.4874834209", ",", "51.5507870533", ",", "51.5532468544", ",", "51.5484719728", ",", "51.5460978636", ",", "51.5445226081", ",", "51.5463223726", ",", "51.4993135057", ",", "51.5813641641", ",", "51.5813641641", ",", "51.5868142542", ",", "51.5929656197", ",", "51.5872313539", ",", "51.5431460985", ",", "51.5752437632", ",", "51.5871904151", ",", "51.5449214239", ",", "0", ",", "51.3993762285", ",", "51.5720088234", ",", "51.5456336993", ",", "51.3039135878", ",", "51.347464912", ",", "51.3672719412", ",", "51.3671982512", ",", "51.3565028395", ",", "51.3620680461", ",", "51.347520842", ",", "51.4280453817", ",", "51.4075491829", ",", "0", ",", "51.4888885947", ",", "51.4897537843", ",", "51.4888783436", ",", "51.4883154509", ",", "51.4882352812", ",", "51.4853675684", ",", "51.4775887033", ",", "51.4761404294", ",", "51.4802919664", ",", "51.470846831", ",", "51.4776641987", ",", "51.4850598832", ",", "0", ",", "51.4785303454", ",", "0", ",", "0", ",", "51.4621508787", ",", "51.4740390463", ",", "51.4609846226", ",", "51.4708212201", ",", "51.4704063296", ",", "51.4654732791", ",", "51.4667015665", ",", "0", ",", "0", ",", "0", ",", "51.6073752885", ",", "51.5222204924", ",", "51.5472519915", ",", "51.5369213193", ",", "51.5369213193", ",", "51.5369213193", ",", "51.5391038625", ",", "51.5282878831", ",", "51.5348826752", ",", "51.5345681142", ",", "0", ",", "0", ",", "0", ",", "51.5338880253", ",", "0", ",", "0", ",", "51.4422194321", ",", "51.4367684282", ",", "0", ",", "51.4271283545", ",", "0", ",", "51.6691282415", ",", "0", ",", "51.4667903664", ",", "51.4319327374", ",", "51.389474855", ",", "51.6274767495", ",", "0", ",", "51.4270176476", ",", "51.510689868", ",", "51.5222447739", ",", "51.5295678568", ",", "51.5090149641", ",", "51.6531874213", ",", "51.5679455465", ",", "51.587876845", ",", "51.5157069453", ",", "51.5295678568", ",", "51.5295678568", ",", "51.5295678568", ",", "51.5383935287", ",", "51.5126635358", ",", "51.5747277041", ",", "51.584877577", ",", "51.5807850857", ",", "51.6370843251", ",", "51.501784888", ",", "51.5807850857", ",", "51.387652111", ",", "51.4749942902", ",", "51.4749942902", ",", "51.4749942902", ",", "51.3456093419", ",", "51.3461396444", ",", "51.391180815", ",", "51.3831382091", ",", "51.5208202431", ",", "51.5010186789", ",", "51.5078995146", ",", "51.4849271941", ",", "51.511624579", ",", "51.5066531066", ",", "51.5380487988", ",", "51.3418110033", ",", "51.5508084032", ",", "0", ",", "0", ",", "51.4484917102", ",", "51.6157151247", ",", "51.4766925736", ",", "51.5617881184", ",", "51.5617881184", ",", "51.5314368599", ",", "51.5308489584", ",", "51.5656697622", ",", "51.6310170998", ",", "0", ",", "0", ",", "51.4925915121", ",", "0", ",", "0", ",", "51.6806502968", ",", "0", ",", "51.507157509", ",", "51.5621389032", ",", "51.4651854326", ",", "51.4285925429", ",", "51.5043511311", ",", "51.3140460529", ",", "51.4202410597", ",", "51.4161644053", ",", "0", ",", "51.5277378256", ",", "51.6032917887", ",", "51.5848823156", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "-", "0.4517152006", ",", "-", "0.4518842685", ",", "-", "0.4519353275", ",", "-", "0.4583368453", ",", "-", "0.44652380388", ",", "-", "0.489419725751", ",", "-", "0.45306909079", ",", "-", "0.4882828017", ",", "-", "0.4882828017", ",", "-", "0.1164274983", ",", "-", "0.1206224456", ",", "0.1483806305", ",", "0.1500137016", ",", "0.1468247575", ",", "0.1490789096", ",", "0.1479674034", ",", "0.1472822395", ",", "0.2113585743", ",", "0", ",", "-", "0.06679513", ",", "-", "0.0861045928", ",", "-", "0.0803786504", ",", "0.08294296115", ",", "0", ",", "-", "0.1645759272", ",", "-", "0.077334818", ",", "0", ",", "-", "0.1526264345", ",", "0", ",", "-", "0.0883172518", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.30280802335", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1834352851", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3462846521", ",", "-", "0.114439894567", ",", "-", "0.2424582476", ",", "-", "0.2467963459", ",", "0.1078939839", ",", "0", ",", "0", ",", "0", ",", "0.0364655887", ",", "-", "0.238403196925", ",", "-", "0.20938213245", ",", "-", "0.22714375988", ",", "-", "0.2182080407", ",", "-", "0.1963402699", ",", "-", "0.229142558125", ",", "-", "0.2306867411", ",", "-", "0.2043864366", ",", "-", "0.1965097271", ",", "-", "0.20836156125", ",", "-", "0.2281728038", ",", "-", "0.2359444855", ",", "-", "0.221169550025", ",", "0", ",", "-", "0.05191697365", ",", "-", "0.2154692829", ",", "-", "0.3523103914", ",", "-", "0.0757957565", ",", "0", ",", "0", ",", "-", "0.199151018425", ",", "-", "0.1999197336", ",", "-", "0.39790988515", ",", "-", "0.1875857189", ",", "-", "0.075476434", ",", "0.03488598565", ",", "-", "0.1893777849", ",", "-", "0.0291826056", ",", "0", ",", "-", "0.2256344966", ",", "0.1305901433", ",", "0.0697679815", ",", "0.23735246805", ",", "0.0707486175", ",", "-", "0.3777314716", ",", "0", ",", "0", ",", "-", "0.2421370248", ",", "0.013180328125", ",", "0.0126676658", ",", "-", "0.1235403851", ",", "-", "0.09744961195", ",", "-", "0.09124831865", ",", "-", "0.1755274496", ",", "-", "0.06480770405", ",", "0.023669821", ",", "0.0298791124", ",", "-", "0.1878744227", ",", "0", ",", "-", "0.102105234617", ",", "-", "0.09389735075", ",", "-", "0.1003224913", ",", "0", ",", "0", ",", "0.2023362035", ",", "-", "0.02262778718", ",", "0.2731572162", ",", "0.035625991", ",", "0.0833079407", ",", "0", ",", "0", ",", "0.0403246265", ",", "0.02549962425", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1671609005", ",", "-", "0.03504676805", ",", "-", "0.0400383205", ",", "0", ",", "0.0308478274", ",", "-", "0.40904062765", ",", "-", "0.3194124372", ",", "0", ",", "0", ",", "-", "0.4045845474", ",", "-", "0.38204880555", ",", "-", "0.3823372535", ",", "0", ",", "0", ",", "0.1462475256", ",", "-", "0.4391045686", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0984733157", ",", "0", ",", "-", "0.0837004426", ",", "-", "0.3669669283", ",", "-", "0.37246459835", ",", "-", "0.00219622165", ",", "0", ",", "-", "0.3442678279", ",", "-", "0.19459821305", ",", "0.10033352105", ",", "0.10033352105", ",", "0", ",", "0", ",", "0", ",", "0.07444649075", ",", "0.07444649075", ",", "0", ",", "-", "0.12250691735", ",", "-", "0.1113465767", ",", "-", "0.3468349688", ",", "-", "0.3444992998", ",", "-", "0.0711984528", ",", "0.0261047548", ",", "-", "0.1646902525", ",", "-", "0.4053660097", ",", "0.0715917335", ",", "-", "0.01354416135", ",", "0.005623115775", ",", "0.02063167025", ",", "-", "0.2990269856", ",", "-", "0.01354416135", ",", "-", "0.01354416135", ",", "-", "0.01354416135", ",", "-", "0.01354416135", ",", "-", "0.0522259861", ",", "-", "0.0522259861", ",", "-", "0.19300263424", ",", "0", ",", "0.0478862018", ",", "-", "0.0522259861", ",", "-", "0.0522259861", ",", "0.02025302785", ",", "0.0576424302", ",", "-", "0.0522259861", ",", "0", ",", "-", "0.0522259861", ",", "0.1008449046", ",", "0.10633515985", ",", "-", "0.407851472", ",", "-", "0.0522259861", ",", "0.1025201415", ",", "-", "0.0522259861", ",", "-", "0.0225861754", ",", "-", "0.05410233075", ",", "-", "0.194894087", ",", "-", "0.0522259861", ",", "0.0892881605", ",", "-", "0.0522259861", ",", "-", "0.0522259861", ",", "-", "0.0522259861", ",", "-", "0.1097767354", ",", "0.1102015206", ",", "0.1102015206", ",", "0", ",", "0", ",", "-", "0.0363359435", ",", "-", "0.0305307649", ",", "-", "0.088183257", ",", "-", "0.0851684317", ",", "-", "0.01694467575", ",", "0", ",", "0", ",", "0", ",", "0.00873369795", ",", "-", "0.00038336595", ",", "0", ",", "-", "0.0983162982", ",", "-", "0.1022400136", ",", "-", "0.09814949405", ",", "-", "0.0980941463", ",", "-", "0.09694671085", ",", "-", "0.09759535555", ",", "-", "0.09221142425", ",", "-", "0.103966027267", ",", "-", "0.04159675045", ",", "-", "0.24885517335", ",", "0", ",", "-", "0.22659699975", ",", "0.0936792072", ",", "-", "0.2078028007", ",", "0.0063691406", ",", "-", "0.4649090936", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "0.17453035935", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.2746490154", ",", "-", "0.1443875338", ",", "-", "0.15222884605", ",", "-", "0.1526827686", ",", "-", "0.1410453568", ",", "-", "0.14984251935", ",", "-", "0.148746498", ",", "-", "0.1547173572", ",", "-", "0.148746498", ",", "0.0834957925", ",", "-", "0.02088392465", ",", "-", "0.0833522217", ",", "-", "0.10949893235", ",", "-", "0.10949893235", ",", "-", "0.1102918205", ",", "-", "0.1167734933", ",", "-", "0.22397919995", ",", "0.022295251", ",", "0", ",", "-", "0.267034528", ",", "-", "0.2665633059", ",", "0.0600228365", ",", "-", "0.2412740656", ",", "-", "0.2472849414", ",", "0", ",", "0.0590637556", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1522970727", ",", "0.037878055", ",", "-", "0.08450073885", ",", "-", "0.05195147065", ",", "-", "0.3045788711", ",", "0", ",", "-", "0.1874284488", ",", "-", "0.1811084484", ",", "-", "0.33005906565", ",", "-", "0.14457619235", ",", "-", "0.14457619235", ",", "-", "0.15028766475", ",", "0.09712377975", ",", "0.0036437283", ",", "-", "0.2782941599", ",", "-", "0.2921851234", ",", "-", "0.1023035124", ",", "-", "0.2145704371", ",", "-", "0.221833943", ",", "0.2182228927", ",", "-", "0.13154550445", ",", "-", "0.12657130925", ",", "-", "0.19985118455", ",", "0", ",", "0.1654401733", ",", "-", "0.1983758559", ",", "-", "0.4561539746", ",", "-", "0.133484187167", ",", "-", "0.4483386862", ",", "-", "0.465392221", ",", "-", "0.4489755245", ",", "-", "0.462374428867", ",", "-", "0.4724197712", ",", "-", "0.4504246484", ",", "-", "0.46913239615", ",", "-", "0.4475922706", ",", "0", ",", "0", ",", "-", "0.1179131774", ",", "-", "0.1244312309", ",", "0.1727578233", ",", "-", "0.1558385688", ",", "0.0381060467", ",", "0", ",", "0", ",", "-", "0.40881256395", ",", "-", "0.40881256395", ",", "-", "0.40984063445", ",", "-", "0.0705363147", ",", "-", "0.1130448049", ",", "-", "0.03266475725", ",", "-", "0.03266475725", ",", "-", "0.03266475725", ",", "-", "0.03266475725", ",", "0", ",", "0", ",", "-", "0.06759609995", ",", "0", ",", "-", "0.34153439135", ",", "-", "0.3320286932", ",", "0", ",", "0.1436945257", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4815066082", ",", "-", "0.0007439082", ",", "0.0064084662", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1243628471", ",", "-", "0.13660342845", ",", "-", "0.23714330115", ",", "-", "0.3474666531", ",", "-", "0.179151881", ",", "0", ",", "0", ",", "-", "0.1967611221", ",", "-", "0.0569572147", ",", "-", "0.01836754635", ",", "-", "0.0143006245", ",", "-", "0.017184301", ",", "0.1530419682", ",", "-", "0.0989304201", ",", "-", "0.3680418666", ",", "-", "0.254059156033", ",", "-", "0.11974146928", ",", "-", "0.10643942985", ",", "-", "0.10876970804", ",", "0.04254718615", ",", "-", "0.23841610445", ",", "-", "0.0490338049", ",", "-", "0.2077107419", ",", "-", "0.2132060997", ",", "0.1476702456", ",", "0", ",", "-", "0.20303520405", ",", "-", "0.2031229388", ",", "-", "0.24864024905", ",", "-", "0.2031229388", ",", "-", "0.2090004672", ",", "-", "0.205060254175", ",", "-", "0.2053357082", ",", "-", "0.191642748", ",", "0.00593197835", ",", "-", "0.1446529412", ",", "0.0943273807", ",", "0.1449673438", ",", "-", "0.3219761544", ",", "0", ",", "-", "0.0982413448", ",", "-", "0.121547727", ",", "-", "0.112045468833", ",", "-", "0.1153083628", ",", "-", "0.11945071754", ",", "-", "0.3752581499", ",", "-", "0.1340197424", ",", "-", "0.3889568133", ",", "-", "0.1533940464", ",", "-", "0.3574820282", ",", "-", "0.10831373875", ",", "-", "0.0542431535", ",", "0.0029296233", ",", "-", "0.2959224295", ",", "-", "0.2983888888", ",", "0.0022872963", ",", "0.0022872963", ",", "0.0022872963", ",", "0", ",", "-", "0.12436353345", ",", "-", "0.1920605991", ",", "0", ",", "0.2170761209", ",", "0.1025713143", ",", "0", ",", "0", ",", "-", "0.0893908777", ",", "-", "0.0942861755", ",", "0", ",", "-", "0.3806660926", ",", "0.04368032085", ",", "-", "0.26047712985", ",", "-", "0.0145610895", ",", "-", "0.1955224197", ",", "0.06353366145", ",", "-", "0.43774640855", ",", "0", ",", "-", "0.3792940232", ",", "-", "0.2703743241", ",", "0", ",", "0.29771489015", ",", "0", ",", "0", ",", "-", "0.39337297785", ",", "-", "0.11399287775", ",", "-", "0.11399287775", ",", "0", ",", "-", "0.04715525405", ",", "-", "0.28147928", ",", "0", ",", "-", "0.0463242091667", ",", "-", "0.0461274075333", ",", "-", "0.0471433767", ",", "-", "0.0437568331", ",", "-", "0.04426071135", ",", "-", "0.0489313026", ",", "0.026160805", ",", "-", "0.0047320327", ",", "-", "0.0157316054", ",", "-", "0.463989089", ",", "0", ",", "-", "0.3001814667", ",", "-", "0.3000851259", ",", "-", "0.2954624034", ",", "0", ",", "0", ",", "-", "0.04509681935", ",", "-", "0.0579526172", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0997089076", ",", "-", "0.3063973619", ",", "0", ",", "0", ",", "0", ",", "-", "0.1966140435", ",", "-", "0.2006097536", ",", "0", ",", "-", "0.17925318795", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0258859143", ",", "0.0260513521", ",", "0", ",", "0.01853328675", ",", "0.0234569972", ",", "0", ",", "0.21929818125", ",", "0.21468051045", ",", "0.220879163925", ",", "0.2086997819", ",", "0.220879163925", ",", "-", "0.0551613671", ",", "-", "0.06181234515", ",", "-", "0.0639273932", ",", "0", ",", "0.0830400438", ",", "-", "0.11220648465", ",", "-", "0.13122252255", ",", "-", "0.12782206725", ",", "-", "0.1269163658", ",", "-", "0.1339625025", ",", "-", "0.1210742101", ",", "-", "0.11625778455", ",", "-", "0.124715577567", ",", "-", "0.124715577567", ",", "-", "0.1214520045", ",", "-", "0.1159450422", ",", "-", "0.1241976799", ",", "-", "0.1241976799", ",", "-", "0.1251842504", ",", "-", "0.126368743167", ",", "0.0665822516", ",", "-", "0.48795583805", ",", "-", "0.12923290845", ",", "-", "0.125353985875", ",", "0", ",", "0", ",", "-", "0.3363396251", ",", "-", "0.3694075095", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.18670011325", ",", "-", "0.4569135695", ",", "0", ",", "0", ",", "-", "0.0505630297", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.37034476745", ",", "-", "0.1120475715", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0796127373", ",", "-", "0.362716680125", ",", "-", "0.354758715533", ",", "-", "0.36711445485", ",", "-", "0.365865342067", ",", "-", "0.35686834315", ",", "-", "0.3880620066", ",", "-", "0.3580080769", ",", "-", "0.40463218625", ",", "-", "0.36195262", ",", "-", "0.385873842425", ",", "-", "0.3675942291", ",", "-", "0.362716680125", ",", "-", "0.03621957855", ",", "0", ",", "0.11639396885", ",", "0", ",", "0", ",", "-", "0.2977810035", ",", "-", "0.07633516815", ",", "0.26275177895", ",", "-", "0.0962842145", ",", "0.1846094884", ",", "0", ",", "-", "0.08139992935", ",", "0.15589083665", ",", "-", "0.44122777305", ",", "-", "0.4838469244", ",", "0", ",", "-", "0.07473981", ",", "-", "0.07717269825", ",", "-", "0.39855049595", ",", "0", ",", "0.2397644838", ",", "0", ",", "0.2397644838", ",", "0", ",", "0.1855001118", ",", "0", ",", "0", ",", "-", "0.2983190919", ",", "-", "0.3980893406", ",", "-", "0.1837073963", ",", "0", ",", "0.16402332205", ",", "0.08791181665", ",", "-", "0.2313827956", ",", "-", "0.22718090285", ",", "0", ",", "-", "0.4113733352", ",", "0", ",", "-", "0.075514513", ",", "0", ",", "0", ",", "0", ",", "-", "0.3727599537", ",", "-", "0.3089400962", ",", "0.1657547347", ",", "0.15396126915", ",", "0.15545641335", ",", "-", "0.1273628897", ",", "0", ",", "-", "0.2384455526", ",", "-", "0.24523967925", ",", "0", ",", "0", ",", "-", "0.1832788618", ",", "-", "0.02288835425", ",", "0", ",", "0.1263137337", ",", "0", ",", "0.1329876044", ",", "-", "0.08854714885", ",", "-", "0.03834324015", ",", "0.1146682406", ",", "0", ",", "-", "0.349956625", ",", "-", "0.03265849205", ",", "-", "0.47529421185", ",", "0", ",", "-", "0.2413283815", ",", "0", ",", "0", ",", "-", "0.1518098745", ",", "-", "0.16705708675", ",", "0", ",", "0.20224863895", ",", "0.2020779188", ",", "0", ",", "0.09096422685", ",", "0", ",", "0.1367905079", ",", "0", ",", "-", "0.2353906011", ",", "0", ",", "-", "0.11791224135", ",", "0.12976566295", ",", "0.14231058405", ",", "0.129179061", ",", "0.1289863696", ",", "0", ",", "-", "0.0715448928", ",", "0", ",", "0", ",", "0.1120295183", ",", "-", "0.1347731362", ",", "-", "0.0748118158", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2018758157", ",", "-", "0.058443497", ",", "-", "0.154016056637", ",", "-", "0.149779017667", ",", "-", "0.1895358926", ",", "0", ",", "-", "0.2766260128", ",", "0", ",", "0", ",", "0", ",", "-", "0.3044625489", ",", "0", ",", "0", ",", "-", "0.2288238872", ",", "-", "0.1225789151", ",", "-", "0.08561256205", ",", "-", "0.09054134", ",", "-", "0.0840251468", ",", "-", "0.112251213467", ",", "-", "0.0197296087", ",", "-", "0.11051914095", ",", "0", ",", "0", ",", "0.20492161455", ",", "-", "0.17573159595", ",", "-", "0.3916622025", ",", "-", "0.2550721542", ",", "-", "0.17057135435", ",", "-", "0.1441951407", ",", "-", "0.10730947555", ",", "0.0694992657333", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2984111133", ",", "-", "0.3104769509", ",", "-", "0.0611933154", ",", "0", ",", "-", "0.2410441167", ",", "-", "0.0998110626", ",", "-", "0.2551005581", ",", "-", "0.1883474368", ",", "0.0213521737", ",", "-", "0.125859176105", ",", "-", "0.22083205915", ",", "0", ",", "0", ",", "0.2105624081", ",", "-", "0.3106104582", ",", "0", ",", "0.1371819494", ",", "0.06374942645", ",", "0.0446109216", ",", "-", "0.132950409", ",", "-", "0.41359790365", ",", "-", "0.06635609005", ",", "0.03731664855", ",", "0.1604082947", ",", "0.032043035", ",", "0.0317006237", ",", "0.0358841254", ",", "0.0358841254", ",", "0.04020749935", ",", "0.0382213022", ",", "0.038086537", ",", "0.0405443347", ",", "-", "0.29875178845", ",", "0.03205623585", ",", "0.0380869483", ",", "0.0087290469", ",", "0.1016415372", ",", "0.0283534499", ",", "0.0154189073", ",", "0", ",", "-", "0.2799167751", ",", "-", "0.1287734453", ",", "0.0973543287", ",", "-", "0.1063874408", ",", "-", "0.2199756308", ",", "-", "0.2224723905", ",", "-", "0.22496736105", ",", "0", ",", "0", ",", "-", "0.4354929752", ",", "-", "0.42900473725", ",", "0.1793696176", ",", "0.1793696176", ",", "0.1793696176", ",", "-", "0.1051574148", ",", "-", "0.3462355052", ",", "-", "0.0229814129", ",", "-", "0.1018297631", ",", "-", "0.1298568744", ",", "-", "0.08715238755", ",", "-", "0.1387274875", ",", "-", "0.1109114504", ",", "0", ",", "0.1816737495", ",", "0.1816737495", ",", "0", ",", "-", "0.1808417446", ",", "0", ",", "0", ",", "-", "0.0455596353", ",", "-", "0.40372479315", ",", "-", "0.04456793995", ",", "-", "0.0455596353", ",", "-", "0.0455596353", ",", "0", ",", "0.22190240315", ",", "0.22190240315", ",", "0", ",", "0.0961490759", ",", "-", "0.110109231", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0461940562", ",", "0", ",", "-", "0.2161443391", ",", "-", "0.21689500485", ",", "-", "0.2251715325", ",", "-", "0.2055965131", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0203267253", ",", "0.0203267253", ",", "-", "0.1495500602", ",", "-", "0.1554740786", ",", "-", "0.17530113185", ",", "-", "0.1900024658", ",", "0", ",", "-", "0.168246237417", ",", "-", "0.1767669486", ",", "-", "0.1925287257", ",", "-", "0.1782944117", ",", "-", "0.18260818862", ",", "0.1063332183", ",", "0.10425418315", ",", "0.1239454245", ",", "0.1273368134", ",", "0", ",", "0", ",", "0.099349473625", ",", "0", ",", "-", "0.32653170925", ",", "-", "0.13013051935", ",", "-", "0.1318388021", ",", "-", "0.1974352954", ",", "0", ",", "-", "0.2012726382", ",", "-", "0.2012726382", ",", "0.1506567164", ",", "0.1506567164", ",", "0", ",", "-", "0.09637592425", ",", "-", "0.0957710111", ",", "0", ",", "-", "0.3346766872", ",", "-", "0.3346766872", ",", "0.01334541805", ",", "-", "0.24593657605", ",", "-", "0.4480928525", ",", "-", "0.4595851473", ",", "0.1851239655", ",", "0.1902295006", ",", "0", ",", "-", "0.2169146254", ",", "0", ",", "0", ",", "-", "0.3618843345", ",", "-", "0.3419795632", ",", "-", "0.42552323935", ",", "-", "0.42515074925", ",", "-", "0.331121729", ",", "-", "0.3404730649", ",", "-", "0.3618843345", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0632383459", ",", "0", ",", "0", ",", "0.032526203", ",", "0", ",", "-", "0.3043464258", ",", "-", "0.3043464258", ",", "-", "0.3007478611", ",", "-", "0.30806097795", ",", "-", "0.31352748896", ",", "-", "0.391109201", ",", "0.26922562345", ",", "-", "0.3772457857", ",", "-", "0.1882098333", ",", "-", "0.1443084223", ",", "0", ",", "0", ",", "0.10244689285", ",", "-", "0.14067407135", ",", "-", "0.0518290280667", ",", "-", "0.1444600348", ",", "-", "0.1444600348", ",", "0", ",", "-", "0.2148251029", ",", "-", "0.2148251029", ",", "-", "0.26850694085", ",", "-", "0.21141535065", ",", "0", ",", "0", ",", "-", "0.00139628", ",", "0.00121462395", ",", "-", "0.31893817725", ",", "0.18810715625", ",", "0.0936633805667", ",", "-", "0.13168750485", ",", "-", "0.0916595255", ",", "-", "0.0425169225", ",", "0", ",", "-", "0.089008208", ",", "-", "0.089008208", ",", "-", "0.37350685285", ",", "-", "0.3306496639", ",", "-", "0.1739584743", ",", "0", ",", "0.0422606651", ",", "0.0303126929", ",", "0.03677762525", ",", "0.0466644706", ",", "0", ",", "-", "0.42697855275", ",", "0", ",", "-", "0.197021180233", ",", "-", "0.19854977105", ",", "-", "0.19989941525", ",", "0", ",", "-", "0.1107333997", ",", "-", "0.1107333997", ",", "0", ",", "0.0220320553667", ",", "0", ",", "0.00866339775", ",", "0.01073257352", ",", "-", "0.0037884361", ",", "9.37579e-05", ",", "-", "0.0252543218", ",", "0.01938433465", ",", "0.01073257352", ",", "-", "0.01831654214", ",", "-", "0.0161315733", ",", "-", "0.0018692054", ",", "0.0101116841", ",", "0.01073257352", ",", "0", ",", "-", "0.1962788202", ",", "0", ",", "0.22137677435", ",", "-", "0.19637179835", ",", "-", "0.19637179835", ",", "0", ",", "-", "0.159238348", ",", "-", "0.1389055096", ",", "-", "0.1389055096", ",", "0", ",", "-", "0.2951630681", ",", "0.0595321935", ",", "0.0702133269667", ",", "0.0667974001", ",", "0.0667974001", ",", "0.0747719857333", ",", "0.06879212465", ",", "0.06957669345", ",", "-", "0.0884383507", ",", "-", "0.0917900965", ",", "-", "0.26820371188", ",", "-", "0.2532734505", ",", "-", "0.2678679937", ",", "-", "0.25822437888", ",", "-", "0.27086020195", ",", "-", "0.27086020195", ",", "-", "0.2657285943", ",", "-", "0.2657285943", ",", "-", "0.2686609522", ",", "0.13800707085", ",", "0.000835749225", ",", "0", ",", "0", ",", "0.09903805555", ",", "0.09903805555", ",", "-", "0.0725753804", ",", "-", "0.01406542828", ",", "0.0077456652", ",", "0.10718567785", ",", "-", "0.178069679", ",", "-", "0.1206391871", ",", "-", "0.1807787176", ",", "0.0968420075", ",", "0", ",", "0.0782584", ",", "0.0968420075", ",", "0.0968420075", ",", "0.0968420075", ",", "-", "0.2112124795", ",", "-", "0.30558886055", ",", "-", "0.0762077561", ",", "-", "0.0392673942", ",", "-", "0.3290173204", ",", "0", ",", "-", "0.1845739731", ",", "-", "0.1853404409", ",", "-", "0.3355686331", ",", "-", "0.02339039965", ",", "-", "0.08927323925", ",", "-", "0.43117652525", ",", "0", ",", "-", "0.0460153533", ",", "-", "0.36633996855", ",", "0.14812383585", ",", "-", "0.2252036413", ",", "-", "0.1972246353", ",", "0", ",", "-", "0.41889734115", ",", "-", "0.3143984334", ",", "-", "0.312402667", ",", "0.0709392317", ",", "-", "0.012119337", ",", "-", "0.2270657635", ",", "0.0969967955", ",", "0.0969967955", ",", "-", "0.1115875107", ",", "-", "0.156129610767", ",", "-", "0.0072472575", ",", "-", "0.0094483256", ",", "-", "0.2619878178", ",", "0.16330218735", ",", "0.28808990355", ",", "-", "0.0094483256", ",", "-", "0.0094483256", ",", "-", "0.0094483256", ",", "0", ",", "-", "0.02917687795", ",", "-", "0.2054454435", ",", "-", "0.29642713805", ",", "-", "0.00140741835", ",", "0.1064850602", ",", "-", "0.14080854085", ",", "-", "0.39780794245", ",", "-", "0.3336940436", ",", "0.0567630744", ",", "-", "0.41526688955", ",", "-", "0.00140741835", ",", "0.0394677582", ",", "-", "0.2383270473", ",", "-", "0.46915604505", ",", "-", "0.4160348412", ",", "-", "0.00140741835", ",", "-", "0.00140741835", ",", "-", "0.0825417636", ",", "-", "0.0781845047", ",", "-", "0.1735158715", ",", "-", "0.1735158715", ",", "-", "0.1735158715", ",", "-", "0.16892537585", ",", "-", "0.08078889625", ",", "-", "0.1735158715", ",", "0", ",", "-", "0.0524667418", ",", "0", ",", "0.03628951485", ",", "-", "0.1718905521", ",", "0.10139516525", ",", "-", "0.3744767919", ",", "0.0210740303", ",", "0.0189262572", ",", "-", "0.0140627541", ",", "-", "0.0626660882", ",", "0.0282977831", ",", "-", "0.21663642745", ",", "0", ",", "0", ",", "0", ",", "-", "0.44468408605", ",", "0.0734011399", ",", "-", "0.2301139016", ",", "0", ",", "0", ",", "-", "0.2617465664", ",", "-", "0.0906020273", ",", "-", "0.2477426847", ",", "0.0700544593", ",", "0.0707670664", ",", "0.0742608429", ",", "0.0874933778", ",", "0.09009434225", ",", "0.0689248668", ",", "0.0701568314", ",", "0.11356325225", ",", "0.1244356477", ",", "0", ",", "0", ",", "-", "0.1797239406", ",", "-", "0.1857860776", ",", "-", "0.110410919233", ",", "-", "0.1171557287", ",", "-", "0.1830843976", ",", "-", "0.1171557287", ",", "-", "0.1171557287", ",", "0.0635084005", ",", "0", ",", "0", ",", "0.03441926345", ",", "0", ",", "-", "0.0436401827", ",", "-", "0.1417634777", ",", "-", "0.04648743705", ",", "-", "0.1766851992", ",", "-", "0.1766851992", ",", "-", "0.3453970532", ",", "-", "0.1705995716", ",", "0.2521788301", ",", "-", "0.0192300773", ",", "-", "0.18536233415", ",", "-", "0.2227366921", ",", "-", "0.0195605899", ",", "0", ",", "0", ",", "-", "0.18019789095", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1862702446", ",", "0", ",", "-", "0.04737232555", ",", "0", ",", "-", "0.1679993562", ",", "0", ",", "-", "0.1966752992", ",", "0", ",", "-", "0.45176889345", ",", "-", "0.357711152", ",", "-", "0.3547574152", ",", "-", "0.0945380025", ",", "0", ",", "-", "0.1198641718", ",", "-", "0.0494236425", ",", "-", "0.18686527785", ",", "0", ",", "0", ",", "-", "0.00982073435", ",", "-", "0.3920244634", ",", "-", "0.00629536995", ",", "0", ",", "-", "0.1076736201", ",", "-", "0.337462653", ",", "-", "0.3298176877", ",", "-", "0.328469883", ",", "-", "0.102725803033", ",", "-", "0.1031142733", ",", "-", "0.37305430755", ",", "-", "0.3828595369", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0785108273", ",", "-", "0.283157347233", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4837812772", ",", "-", "0.4837812772", ",", "0", ",", "-", "0.022267064", ",", "0", ",", "0", ",", "0", ",", "0.11338285915", ",", "-", "0.13501572915", ",", "-", "0.4689177916", ",", "0", ",", "-", "0.3307513975", ",", "-", "0.0498879956", ",", "-", "0.4471229674", ",", "-", "0.0111840188", ",", "-", "0.179201609", ",", "-", "0.444703749", ",", "0", ",", "0.0829312847", ",", "0.0349195153", ",", "-", "0.0699045754", ",", "-", "0.0487615962", ",", "0.146677436", ",", "-", "0.0001250674", ",", "0.0085283416", ",", "0.1805976581", ",", "-", "0.2347818668", ",", "0.0056995379", ",", "0.131181899", ",", "-", "0.0651009725", ",", "-", "0.1215921296", ",", "-", "0.0287725857", ",", "0.0776144309", ",", "-", "0.0506382949", ",", "-", "0.01669778125", ",", "0.07711853885", ",", "-", "0.3435882088", ",", "-", "0.3413016238", ",", "-", "0.06087662175", ",", "-", "0.3378582145", ",", "0", ",", "0.0281379259", ",", "-", "0.0206214487", ",", "0", ",", "0.0128468809", ",", "-", "0.2851701064", ",", "-", "0.098137883", ",", "-", "0.2352457872", ",", "-", "0.2185232938", ",", "-", "0.142939537067", ",", "0.00967937765", ",", "-", "0.043065247", ",", "-", "0.1070529638", ",", "-", "0.0446383194", ",", "0.0612950831", ",", "-", "0.39727777635", ",", "0", ",", "0", ",", "-", "0.3885017951", ",", "-", "0.0109550234", ",", "0", ",", "0", ",", "0", ",", "-", "0.0618705261", ",", "-", "0.1131283977", ",", "0.1375137294", ",", "-", "0.32026542235", ",", "-", "0.2839881961", ",", "0.1050018364", ",", "0", ",", "-", "0.11449723525", ",", "-", "0.31321101945", ",", "-", "0.1387947781", ",", "0", ",", "0.163521702", ",", "0.15978212595", ",", "0.0472144868", ",", "0.0421338763", ",", "0.0358838343", ",", "0", ",", "0", ",", "0", ",", "0.20418963462", ",", "-", "0.35154098745", ",", "0.00112400475", ",", "0", ",", "0.0145772832", ",", "0", ",", "0.0684069549", ",", "0.0402334563", ",", "-", "0.1109060315", ",", "-", "0.23962367985", ",", "-", "0.2900771724", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0820165528", ",", "0", ",", "0", ",", "0.11254865575", ",", "0.1298902826", ",", "-", "0.1278828216", ",", "0", ",", "-", "0.3673690322", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2787825213", ",", "0", ",", "-", "0.0506967643", ",", "-", "0.3449467552", ",", "-", "0.20766658955", ",", "-", "0.07459932795", ",", "-", "0.07459932795", ",", "-", "0.07459932795", ",", "-", "0.3724887985", ",", "-", "0.2658722445", ",", "-", "0.07459932795", ",", "-", "0.1007562536", ",", "-", "0.1007562536", ",", "-", "0.27828128775", ",", "-", "0.199738206767", ",", "-", "0.1914794121", ",", "-", "0.1007562536", ",", "-", "0.0964627719", ",", "-", "0.2838808767", ",", "-", "0.322307847", ",", "-", "0.10670455395", ",", "-", "0.3014204764", ",", "0.05343932535", ",", "0.0219476203", ",", "-", "0.34136140115", ",", "-", "0.0090854402", ",", "0.1908688061", ",", "0", ",", "-", "0.0593973413", ",", "-", "0.11131363795", ",", "-", "0.1110779714", ",", "-", "0.1106313804", ",", "-", "0.1109871438", ",", "-", "0.10950381195", ",", "-", "0.1110779714", ",", "-", "0.1110779714", ",", "-", "0.1110779714", ",", "-", "0.10613208135", ",", "-", "0.1056014581", ",", "0", ",", "-", "0.224476745767", ",", "-", "0.2172573981", ",", "-", "0.2147429921", ",", "-", "0.21945498585", ",", "-", "0.1094076479", ",", "-", "0.1094076479", ",", "0", ",", "-", "0.21081777625", ",", "-", "0.18799793985", ",", "-", "0.37158267495", ",", "-", "0.1641719252", ",", "-", "0.208076049567", ",", "-", "0.177964896575", ",", "0", ",", "-", "0.317496283", ",", "-", "0.318429638", ",", "0", ",", "-", "0.0474489434", ",", "-", "0.0424930478", ",", "0.109653066225", ",", "0.16039876375", ",", "0.2129515023", ",", "0", ",", "0.1497173857", ",", "-", "0.14084666425", ",", "-", "0.1428524209", ",", "-", "0.14116462075", ",", "-", "0.14173013705", ",", "-", "0.1410659971", ",", "-", "0.147016590433", ",", "0.0908100339", ",", "-", "0.31828967585", ",", "-", "0.31828967585", ",", "-", "0.3061431055", ",", "-", "0.311014261325", ",", "-", "0.3032693489", ",", "-", "0.0431679883", ",", "-", "0.3333442177", ",", "-", "0.3072839576", ",", "-", "0.0450100199", ",", "0", ",", "-", "0.0132542373", ",", "-", "0.17226294965", ",", "-", "0.036506048", ",", "-", "0.11603638705", ",", "0.0363171958", ",", "0.0374641061", ",", "0.04659097035", ",", "0.0322749262", ",", "0.0274360236", ",", "-", "0.00894984825", ",", "-", "0.25615614295", ",", "-", "0.2045390189", ",", "0", ",", "-", "0.288402612825", ",", "-", "0.2873006579", ",", "-", "0.2889323665", ",", "-", "0.2922664336", ",", "-", "0.2873863762", ",", "-", "0.2874506255", ",", "-", "0.28669653638", ",", "-", "0.2867882408", ",", "-", "0.2888361281", ",", "-", "0.2934732345", ",", "-", "0.290759807175", ",", "-", "0.2873181215", ",", "0", ",", "-", "0.2798868937", ",", "0", ",", "0", ",", "0.02772313572", ",", "0.0202581539", ",", "0.02631098335", ",", "0.0235502201", ",", "0.04254608385", ",", "0.0314410748", ",", "0.0267226715", ",", "0", ",", "0", ",", "0", ",", "0.10628647", ",", "0.096256116", ",", "-", "0.2039910499", ",", "-", "0.1921135487", ",", "-", "0.1921135487", ",", "-", "0.1921135487", ",", "-", "0.1948592349", ",", "-", "0.2167541539", ",", "-", "0.1931637883", ",", "-", "0.18880245395", ",", "0", ",", "0", ",", "0", ",", "-", "0.1181838481", ",", "0", ",", "0", ",", "-", "0.04213273935", ",", "-", "0.0399054312", ",", "0", ",", "-", "0.17959000625", ",", "0", ",", "-", "0.0781785035", ",", "0", ",", "-", "0.0546870445", ",", "0.12678594935", ",", "-", "0.1055451768", ",", "0.01235969425", ",", "0", ",", "-", "0.02636888365", ",", "-", "0.0528316828", ",", "0.2138475024", ",", "0.0886925799", ",", "-", "0.0505324533", ",", "-", "0.18983806255", ",", "-", "0.0080051268", ",", "-", "0.0345910885", ",", "-", "0.0999222737", ",", "0.0886925799", ",", "0.0886925799", ",", "0.0886925799", ",", "-", "0.056970471", ",", "-", "0.2511175624", ",", "0.0878473342", ",", "0.1698019332", ",", "0.1123457858", ",", "-", "0.0160972012", ",", "0.06196059015", ",", "0.1123457858", ",", "-", "0.21451664105", ",", "0.1269094032", ",", "0.1269094032", ",", "0.1269094032", ",", "-", "0.0204037742857", ",", "-", "0.0208424901", ",", "-", "0.2938090352", ",", "-", "0.28805070835", ",", "0.0192289474", ",", "-", "0.3827363695", ",", "-", "0.2731031572", ",", "0.0036277403", ",", "-", "0.0872222358", ",", "-", "0.04370902", ",", "0.19526879845", ",", "-", "0.0504213738", ",", "-", "0.26097781305", ",", "0", ",", "0", ",", "-", "0.1316424929", ",", "0.0396535787", ",", "-", "0.3606281882", ",", "-", "0.09174726825", ",", "-", "0.09174726825", ",", "-", "0.1226024103", ",", "-", "0.1204574808", ",", "0.2674423455", ",", "-", "0.0016879889", ",", "0", ",", "0", ",", "-", "0.2271368629", ",", "0", ",", "0", ",", "-", "0.09738561145", ",", "0", ",", "-", "0.10676278935", ",", "-", "0.3715658854", ",", "-", "0.2600961687", ",", "-", "0.3511155079", ",", "-", "0.4654349891", ",", "0.02655917075", ",", "-", "0.2891959506", ",", "-", "0.30135680805", ",", "0", ",", "-", "0.38650390655", ",", "0.22829484865", ",", "-", "0.27966207185", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Heathway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hemery", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hendon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Heriot", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Herne", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Heron", "Quays\"", ",", "\"Heron", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hersham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Heston", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hickory", "Dell\"", ",", "\"\"", ",", "\"High", "Barnet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"High", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Highams", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Highgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hilary", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Hilden", "Manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hillingdon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hindmans", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hither", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Holborn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Holland", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Holt", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Homer", "Road\"", ",", "\"\"", ",", "\"Homerton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hook", "Arena\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hope", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hornchurch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Horns", "Cross\"", ",", "\"\"", ",", "\"Hornsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Horton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hounslow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hows", "Road\"", ",", "\"\"", ",", "\"Hoxton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Humber", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hurst", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hylands", "Park\"", ",", "\"Hylands", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chalk", "Farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chapel", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chardin", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Charlton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Charter", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chase", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cheam\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chelsfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chertsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chesham\"", ",", "\"\"", ",", "\"\"", ",", "\"Cheshunt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chigwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chipstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chislehurst\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chiswick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Choats", "Manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Chorleywood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Church", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Church", "Rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ickenham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ilford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Isleworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Iver\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Jersey", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Jessel", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Johnson", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Julians", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Keble", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kempton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kenley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kensal", "Green\"", ",", "\"\"", ",", "\"Kensal", "House\"", ",", "\"Kensal", "Rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kent", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kentish", "Lane\"", ",", "\"\"", ",", "\"Kentish", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kenton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kew", "Gardens\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kew", "Pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kidbrooke\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kilburn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kilburn", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kingsbury\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"heathway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hemery", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hendon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"heriot", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"herne", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"heron", "quays\"", ",", "\"heron", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hersham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"heston", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hickory", "dell\"", ",", "\"\"", ",", "\"high", "barnet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"high", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"highams", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"highgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hilary", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"hilden", "manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hillingdon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hindmans", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hither", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"holborn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"holland", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"holt", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"homer", "road\"", ",", "\"\"", ",", "\"homerton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hook", "arena\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hope", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hornchurch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"horns", "cross\"", ",", "\"\"", ",", "\"hornsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"horton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hounslow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hows", "road\"", ",", "\"\"", ",", "\"hoxton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"humber", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hurst", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hylands", "park\"", ",", "\"hylands", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chalk", "farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chapel", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chardin", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"charlton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"charter", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chase", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cheam\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chelsfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chertsey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chesham\"", ",", "\"\"", ",", "\"\"", ",", "\"cheshunt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chigwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chipstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chislehurst\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chiswick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"choats", "manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"chorleywood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"church", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"church", "rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ickenham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ilford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"isleworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"iver\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"jersey", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"jessel", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"johnson", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"julians", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"keble", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kempton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kenley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kensal", "green\"", ",", "\"\"", ",", "\"kensal", "house\"", ",", "\"kensal", "rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kent", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kentish", "lane\"", ",", "\"\"", ",", "\"kentish", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kenton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kew", "gardens\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kew", "pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kidbrooke\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kilburn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kilburn", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kingsbury\"", "}", ";", "}", "</s>" ]
8,562
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London7", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MHE:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MON:Dc\"", ",", "null", ",", "null", ",", "\"MPK:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MGT:cHMN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MOR:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MCR:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NEA:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NEP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NAC:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NEL:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NGW:J\"", ",", "null", ",", "null", ",", "\"NHR:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NWM:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NFD:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NHT:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NWP:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NWD:M\"", ",", "null", ",", "null", ",", "null", ",", "\"NWH:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"NHG:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OAK:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OLD:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OST:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OVL:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"OXC:BCV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PAD:BcH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PRY:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PGR:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PER:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PIC:BP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PIM:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PIN:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PLW:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "0", ",", "51.6007930343", ",", "51.3864305863", ",", "51.3889914309", ",", "51.6138808348", ",", "51.6173592351", ",", "51.6159237009", ",", "51.6084257192", ",", "51.6133164946", ",", "51.5059377767", ",", "51.618528303", ",", "0", ",", "51.6079135993", ",", "51.6212768816", ",", "51.3426160213", ",", "51.6100087907", ",", "51.5520500036", ",", "51.5503666024", ",", "51.5512199811", ",", "51.5880657222", ",", "51.6140644718", ",", "51.5018091347", ",", "51.5018091347", ",", "51.5021381561", ",", "51.4414763085", ",", "51.5541483565", ",", "51.3896037854", ",", "0", ",", "51.4947858153", ",", "51.4590534502", ",", "51.5747374911", ",", "0", ",", "0", ",", "51.5119023969", ",", "51.4942253008", ",", "51.4916998949", ",", "51.4916998949", ",", "51.4759960905", ",", "51.3722740913", ",", "51.5989817872", ",", "51.6166360787", ",", "51.5573781888", ",", "51.5550668728", ",", "0", ",", "51.466857512", ",", "51.6589753133", ",", "0", ",", "0", ",", "51.4862950797", ",", "51.488228595", ",", "51.6122111235", ",", "51.339224674", ",", "51.5260268225", ",", "51.3957445802", ",", "0", ",", "0", ",", "51.5745635177", ",", "0", ",", "51.4541237106", ",", "51.3590811898", ",", "51.4220851992", ",", "0", ",", "51.5453415681", ",", "51.4421942111", ",", "51.5292140969", ",", "0", ",", "51.4526294803", ",", "0", ",", "51.5525764289", ",", "51.6212061693", ",", "51.5326309464", ",", "51.5457657272", ",", "0", ",", "0", ",", "51.3973773607", ",", "51.4081707037", ",", "51.3985393893", ",", "51.3940314175", ",", "51.3933019399", ",", "51.3931823953", ",", "51.4195639731", ",", "51.3973773607", ",", "51.3994767715", ",", "51.4269504664", ",", "51.4009683309", ",", "51.4023356424", ",", "51.4052826347", ",", "51.6149612997", ",", "51.3313813435", ",", "51.5246482204", ",", "51.5334838548", ",", "51.5212839448", ",", "51.546470671", ",", "51.631827191", ",", "0", ",", "51.3915629589", ",", "0", ",", "0", ",", "0", ",", "51.6707594427", ",", "51.6651132436", ",", "51.645081475", ",", "51.5964404334", ",", "51.5848203737", ",", "51.4809376436", ",", "0", ",", "0", ",", "51.5389409549", ",", "0", ",", "51.4909306779", ",", "51.6614890548", ",", "51.6385138563", ",", "0", ",", "51.612969112", ",", "51.3972870553", ",", "51.6435249254", ",", "51.3767206629", ",", "51.546567837", ",", "0", ",", "0", ",", "51.6270861374", ",", "51.4971673537", ",", "51.5597047084", ",", "51.561336904", ",", "0", ",", "51.6135409292", ",", "51.6132424653", ",", "51.6269159438", ",", "51.627913744", ",", "51.4618198497", ",", "51.3808036299", ",", "51.4335723654", ",", "51.430027983", ",", "51.6336977137", ",", "51.6090742345", ",", "51.495377189", ",", "51.5694445886", ",", "0", ",", "51.3425096393", ",", "51.5218799512", ",", "51.4695823146", ",", "51.4429473711", ",", "51.4616866634", ",", "51.5977815738", ",", "51.4496647388", ",", "0", ",", "51.5968803828", ",", "51.5103970307", ",", "51.5063842335", ",", "51.4790091847", ",", "0", ",", "0", ",", "51.518590532", ",", "51.5279552234", ",", "0", ",", "51.5186240428", ",", "51.5175113179", ",", "51.5175113179", ",", "51.461608451", ",", "0", ",", "0", ",", "51.5596698653", ",", "0", ",", "51.5992421203", ",", "51.4022915861", ",", "51.4009126153", ",", "51.3992830789", ",", "51.4022915861", ",", "51.4027762178", ",", "51.469249144", ",", "51.3904022248", ",", "51.4022915861", ",", "51.409067478", ",", "51.409067478", ",", "51.4155674345", ",", "51.396307255", ",", "51.3952947436", ",", "51.4947276049", ",", "51.3921263692", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5778866427", ",", "0", ",", "51.4122381319", ",", "51.5255753278", ",", "51.4786139308", ",", "0", ",", "51.3799986678", ",", "51.5990702971", ",", "51.5945761807", ",", "51.6281525342", ",", "0", ",", "51.4588185298", ",", "0", ",", "51.5461281772", ",", "51.546296972", ",", "51.5340735515", ",", "0", ",", "51.5286843243", ",", "51.4904297097", ",", "51.532028958", ",", "51.5313549782", ",", "0", ",", "51.5246041518", ",", "0", ",", "51.4680149392", ",", "51.4708058164", ",", "51.4703749697", ",", "51.5145754191", ",", "51.4824397248", ",", "51.4824397248", ",", "51.4698680886", ",", "51.6221731297", ",", "51.4565094541", ",", "0", ",", "0", ",", "0", ",", "51.6049005618", ",", "51.5910451686", ",", "51.5910451686", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4735410277", ",", "0", ",", "51.3944021244", ",", "51.3917597924", ",", "51.3905206089", ",", "51.4401425984", ",", "51.4272042551", ",", "51.431057988", ",", "51.436251336", ",", "51.4334905349", ",", "0", ",", "0", ",", "51.5397496043", ",", "0", ",", "51.4507684048", ",", "51.434145425", ",", "51.5245389368", ",", "51.5211654786", ",", "51.6318634869", ",", "51.4359377094", ",", "0", ",", "0", ",", "51.6216332366", ",", "51.4345102917", ",", "51.522749553", ",", "51.5420583396", ",", "51.5640659907", ",", "51.5661083422", ",", "51.5892316735", ",", "51.5892316735", ",", "51.5247698781", ",", "51.6059753718", ",", "51.5892316735", ",", "51.5892316735", ",", "51.5078670593", ",", "51.3691261047", ",", "51.6483274624", ",", "51.4100410042", ",", "51.616844058", ",", "0", ",", "51.616844058", ",", "51.5763839037", ",", "51.5780932321", ",", "0", ",", "51.3884576175", ",", "51.4355183333", ",", "51.3937819039", ",", "51.5944438872", ",", "51.3823874953", ",", "51.4695968691", ",", "0", ",", "51.3824440712", ",", "51.5301825405", ",", "51.592827447", ",", "51.616243356", ",", "51.4907224657", ",", "0", ",", "0", ",", "51.5046127992", ",", "0", ",", "51.4974810841", ",", "51.5954787914", ",", "51.5567508144", ",", "51.484480236", ",", "51.5701570986", ",", "51.6057561006", ",", "51.5107519932", ",", "51.5367890975", ",", "51.4815745084", ",", "51.4821323997", ",", "51.473795537", ",", "51.4718758714", ",", "51.4398898258", ",", "51.5310240978", ",", "51.5310240978", ",", "51.5430690971", ",", "51.5441892319", ",", "0", ",", "0", ",", "51.5152765011", ",", "51.51735564", ",", "51.4794993914", ",", "51.3773761125", ",", "51.3753600965", ",", "0", ",", "51.5912316287", ",", "51.5907394467", ",", "51.5898671213", ",", "51.578114706", ",", "51.5912316287", ",", "0", ",", "0", ",", "51.4766474134", ",", "51.6290304732", ",", "51.6290304732", ",", "51.5876638498", ",", "51.5660646193", ",", "0", ",", "51.4626898955", ",", "51.6019592668", ",", "51.6116528758", ",", "0", ",", "51.4861572668", ",", "51.4846960419", ",", "0", ",", "0", ",", "0", ",", "51.4307270626", ",", "0", ",", "51.4970772255", ",", "0", ",", "0", ",", "0", ",", "51.4757252695", ",", "51.4970400942", ",", "51.4866252753", ",", "51.4815885543", ",", "51.4272891344", ",", "51.4955152393", ",", "51.4955152393", ",", "0", ",", "51.4968073042", ",", "0", ",", "51.5539830649", ",", "51.5603794221", ",", "51.5581998945", ",", "51.5652933289", ",", "0", ",", "51.4948783743", ",", "51.5765822702", ",", "51.5968775815", ",", "0", ",", "0", ",", "51.5702994252", ",", "51.4105020448", ",", "0", ",", "51.4799230581", ",", "51.614658717", ",", "51.5308072083", ",", "51.5308072083", ",", "51.4576594413", ",", "51.5308072083", ",", "51.5331210012", ",", "51.4795887214", ",", "51.4812685788", ",", "51.5813275255", ",", "51.4977787759", ",", "51.5069049125", ",", "0", ",", "51.6021547564", ",", "51.6131968123", ",", "51.4493275766", ",", "0", ",", "0", ",", "0", ",", "51.3530199741", ",", "51.3877828067", ",", "0", ",", "51.3866740715", ",", "51.4933157506", ",", "0", ",", "51.5327149236", ",", "51.5976612415", ",", "51.4991687071", ",", "51.3429740607", ",", "51.3420217082", ",", "51.3420217082", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6485617699", ",", "51.6497456551", ",", "51.6492305736", ",", "51.4159582221", ",", "51.5109275432", ",", "0", ",", "51.5198817588", ",", "51.528163656", ",", "51.5250524139", ",", "0", ",", "51.4310569628", ",", "51.684405385", ",", "51.4835476297", ",", "51.4740533814", ",", "51.4750069627", ",", "51.4742712458", ",", "51.4749031637", ",", "51.4757130169", ",", "51.4757130169", ",", "51.4767694499", ",", "51.4759614821", ",", "51.4742259758", ",", "0", ",", "51.436969197", ",", "51.4385399025", ",", "51.5162774357", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4852213559", ",", "0", ",", "0", ",", "51.5139343028", ",", "51.4756167339", ",", "0", ",", "51.4034026307", ",", "51.4007793347", ",", "51.3982590707", ",", "51.3983758156", ",", "0", ",", "0", ",", "0", ",", "51.5316982586", ",", "51.5337081067", ",", "51.516794833", ",", "51.6146406197", ",", "51.605567236", ",", "51.4492396213", ",", "51.4431118489", ",", "51.5227689472", ",", "0", ",", "51.6047850793", ",", "0", ",", "51.5147587824", ",", "51.4529217971", ",", "51.4888028399", ",", "51.5282249935", ",", "51.4809749157", ",", "51.5181902516", ",", "51.5179767141", ",", "51.5634513632", ",", "51.5204432721", ",", "51.5258327949", ",", "51.4813271072", ",", "51.4976775874", ",", "51.6151969829", ",", "51.4217388131", ",", "51.4163302775", ",", "51.5806981171", ",", "0", ",", "51.5832307977", ",", "51.4976603039", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5753675651", ",", "0", ",", "0", ",", "51.481103003", ",", "0", ",", "0", ",", "51.5622542394", ",", "0", ",", "51.5180905818", ",", "51.5328005098", ",", "51.5224917335", ",", "51.5222153133", ",", "51.5223278628", ",", "51.5180888814", ",", "51.5160980534", ",", "0", ",", "0", ",", "51.4919770669", ",", "51.5467856164", ",", "51.5522815312", ",", "51.5497209666", ",", "51.5467856164", ",", "51.5467856164", ",", "0", ",", "51.4261928914", ",", "51.346701163", ",", "51.3818516876", ",", "0", ",", "51.4453211274", ",", "0", ",", "51.5533562152", ",", "51.4808207139", ",", "51.4779066876", ",", "0", ",", "0", ",", "51.5690091533", ",", "0", ",", "0", ",", "0", ",", "51.5020411439", ",", "0", ",", "0", ",", "0", ",", "51.3887826958", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5093807099", ",", "51.4659873156", ",", "51.3759631657", ",", "51.4514292931", ",", "51.4514292931", ",", "51.4822121583", ",", "51.5587049494", ",", "51.6022412371", ",", "51.6403386402", ",", "51.4273161619", ",", "51.5093579036", ",", "51.422833649", ",", "51.4822550913", ",", "51.455149089", ",", "0", ",", "51.5349734224", ",", "51.4860490764", ",", "51.4207888252", ",", "51.3146932221", ",", "0", ",", "0", ",", "51.6169316489", ",", "51.615102166", ",", "51.480936158", ",", "51.5192223963", ",", "51.5192878438", ",", "51.3572005591", ",", "51.3572005591", ",", "51.4127190053", ",", "51.410815254", ",", "51.4120917681", ",", "51.4619114868", ",", "51.4105194131", ",", "51.4096667905", ",", "51.413710265", ",", "0", ",", "51.3143578392", ",", "51.3134490172", ",", "51.505904974", ",", "0", ",", "51.518763594", ",", "51.4393504765", ",", "51.6009387154", ",", "0", ",", "51.5496408419", ",", "0", ",", "51.5816167218", ",", "51.6010450063", ",", "51.5232500338", ",", "51.5317370483", ",", "51.5143255822", ",", "0", ",", "0", ",", "51.5438777412", ",", "51.5774478056", ",", "51.5610275225", ",", "51.5558215926", ",", "51.5260736781", ",", "51.607477042", ",", "51.5239329964", ",", "51.5822210108", ",", "51.5260736781", ",", "51.5260736781", ",", "51.5760892317", ",", "51.5547734185", ",", "51.5133073551", ",", "51.5995885067", ",", "51.4384954714", ",", "51.5210393375", ",", "51.4578207343", ",", "0", ",", "0", ",", "51.3375329966", ",", "51.4539396147", ",", "51.517643408", ",", "51.3496845034", ",", "51.3479343254", ",", "51.3386215095", ",", "51.3509882594", ",", "51.4949852754", ",", "51.4805123389", ",", "51.4857782302", ",", "0", ",", "0", ",", "51.6127643506", ",", "51.6127643506", ",", "51.5007573757", ",", "51.4900462706", ",", "51.500156438", ",", "51.5845823596", ",", "51.5866189209", ",", "51.5799230516", ",", "51.6126518186", ",", "51.5806035418", ",", "51.502412544", ",", "51.4977454973", ",", "51.374620672", ",", "51.3713471785", ",", "51.3723422937", ",", "0", ",", "0", ",", "51.6130485356", ",", "51.5541507079", ",", "51.5192468368", ",", "51.5192254128", ",", "0", ",", "51.5044098597", ",", "0", ",", "51.6034879394", ",", "51.5158230032", ",", "51.5044098597", ",", "51.5501795345", ",", "51.4646441557", ",", "0", ",", "51.5377107588", ",", "51.5868665569", ",", "51.5868665569", ",", "51.5794654151", ",", "51.3581801826", ",", "0", ",", "0", ",", "51.5625975669", ",", "51.4989345195", ",", "51.5000457729", ",", "51.4641322314", ",", "0", ",", "0", ",", "51.4039713776", ",", "51.5114967665", ",", "51.4289620015", ",", "51.460789768", ",", "51.5657742415", ",", "51.6243275905", ",", "51.5110043308", ",", "0", ",", "51.6529349457", ",", "51.4991873682", ",", "51.5221299358", ",", "0", ",", "51.609151425", ",", "51.5430013325", ",", "51.5430013325", ",", "51.5430013325", ",", "51.5430013325", ",", "51.6224955946", ",", "51.5485186355", ",", "51.5541638692", ",", "51.5490369269", ",", "51.5573724814", ",", "51.4809793535", ",", "51.5368904823", ",", "51.5492712474", ",", "51.4281187899", ",", "51.430420611", ",", "51.4780053431", ",", "51.4584962819", ",", "51.58253952", ",", "51.3961803862", ",", "51.3957644342", ",", "51.6024744386", ",", "51.4584962819", ",", "51.6398489849", ",", "51.4715827791", ",", "51.5923537546", ",", "51.5923537546", ",", "51.3842273713", ",", "51.4025587416", ",", "51.5798673023", ",", "51.576291535", ",", "51.5790554036", ",", "51.5757143777", ",", "51.5757769526", ",", "0", ",", "51.563027748", ",", "51.5626151786", ",", "51.610883207", ",", "51.6101610455", ",", "51.6094880187", ",", "51.6035480017", ",", "51.600697991", ",", "51.600777417", ",", "51.6024556544", ",", "51.4939059355", ",", "51.5738395916", ",", "51.6026202693", ",", "0", ",", "0", ",", "51.5966545563", ",", "51.5266726919", ",", "51.6064562362", ",", "51.5663435011", ",", "51.5663435011", ",", "51.4985965372", ",", "51.493426385", ",", "51.3973435282", ",", "51.3979846193", ",", "0", ",", "0", ",", "51.4236951676", ",", "51.4502741083", ",", "51.4226806352", ",", "51.5089810946", ",", "51.5099461448", ",", "51.5099461448", ",", "0", ",", "51.5905273767", ",", "51.6124432304", ",", "51.6124432304", ",", "51.392393415", ",", "51.4036686174", ",", "0", ",", "51.4665858096", ",", "51.4650841698", ",", "51.4704856721", ",", "0", ",", "51.5458496036", ",", "51.6373054995", ",", "0", ",", "51.5329306793", ",", "51.6095429433", ",", "51.6095429433", ",", "51.5622199195", ",", "0", ",", "51.3961146388", ",", "0", ",", "0", ",", "51.5484212429", ",", "51.5113418795", ",", "51.576997306", ",", "51.4257844914", ",", "51.4794755176", ",", "51.5670892411", ",", "51.3553702894", ",", "51.5416504224", ",", "51.5416504224", ",", "51.5999136474", ",", "51.5729598527", ",", "51.6009989503", ",", "51.597426106", ",", "0", ",", "51.4093226175", ",", "51.4093226175", ",", "51.5800599903", ",", "0", ",", "51.4702425579", ",", "51.3693634201", ",", "51.5414909014", ",", "51.424630712", ",", "51.3849345831", ",", "0", ",", "0", ",", "51.5651859356", ",", "0", ",", "0", ",", "51.5774472018", ",", "51.6011701506", ",", "0", ",", "0", ",", "51.4091086623", ",", "51.3694175805", ",", "51.4617344186", ",", "51.6756340316", ",", "51.4431817302", ",", "0", ",", "51.3284082155", ",", "51.6309252539", ",", "51.6372940666", ",", "51.6300329146", ",", "51.6372940666", ",", "51.6285260721", ",", "51.3725898854", ",", "51.3725898854", ",", "51.5360052923", ",", "51.621402563", ",", "51.4272212221", ",", "51.3677490453", ",", "51.5760260991", ",", "51.3668112411", ",", "0", ",", "0", ",", "51.6475289397", ",", "51.4062169251", ",", "51.6475289397", ",", "51.6475289397", ",", "51.6475289397", ",", "51.6475289397", ",", "51.6475289397", ",", "51.3734185062", ",", "51.6480355282", ",", "51.5209783089", ",", "51.3826943299", ",", "0", ",", "0", ",", "51.5222818582", ",", "0", ",", "51.5445004765", ",", "0", ",", "51.3861015051", ",", "51.5841752565", ",", "51.544257477", ",", "51.5552307494", ",", "51.4743808484", ",", "51.6030421068", ",", "0", ",", "51.537565901", ",", "51.6030421068", ",", "51.5009174872", ",", "51.516959025", ",", "0", ",", "51.4346868872", ",", "51.5082682088", ",", "51.5141831015", ",", "51.5141831015", ",", "51.4261162077", ",", "51.4934350442", ",", "51.4934350442", ",", "51.4880899504", ",", "51.5146846038", ",", "51.306970424", ",", "51.3437225544", ",", "51.4240049698", ",", "51.5361370227", ",", "51.529400898", ",", "51.532166586", ",", "51.5343854164", ",", "0", ",", "51.3552592967", ",", "51.397815618", ",", "51.4856108317", ",", "51.4856108317", ",", "51.4982973741", ",", "51.4914118216", ",", "51.4792538341", ",", "51.3315266967", ",", "51.4110495062", ",", "51.5205078141", ",", "51.4813234205", ",", "51.5199979254", ",", "51.5218500563", ",", "51.5262485092", ",", "51.3592156659", ",", "51.6504391152", ",", "51.5042670844", ",", "51.6392833433", ",", "0", ",", "0", ",", "51.4531218851", ",", "51.4531776124", ",", "51.4540554197", ",", "0", ",", "51.5401654689", ",", "51.4067097427", ",", "51.5009549012", ",", "51.5259719106", ",", "51.5264890619", ",", "51.5273910785", ",", "51.3155908296", ",", "0", ",", "0", ",", "0", ",", "51.3933443134", ",", "51.3338296892", ",", "51.5512377902", ",", "51.5532422654", ",", "51.5279834301", ",", "0", ",", "51.4139070527", ",", "51.3977115163", ",", "51.5711268462", ",", "51.3589413551", ",", "51.578368103", ",", "51.5633480453", ",", "51.5570794496", ",", "51.5825567027", ",", "0", ",", "51.5519995164", ",", "51.558536148", ",", "51.4715246783", ",", "51.4615178008", ",", "51.496729359", ",", "51.6242604966", ",", "51.4317342607", ",", "51.5906136275", ",", "51.5838713605", ",", "51.4917943889", ",", "51.4922366456", ",", "51.4396313391", ",", "51.3452617269", ",", "51.6304764231", ",", "0", ",", "51.5108006268", ",", "51.3823332102", ",", "51.5777403984", ",", "51.4227922525", ",", "51.6635203526", ",", "51.6635203526", ",", "51.60194458", ",", "51.3686379003", ",", "51.4153777527", ",", "51.4153777527", ",", "51.4693789896", ",", "51.6422296113", ",", "51.4890885538", ",", "51.4888339692", ",", "51.5144407177", ",", "51.3695315341", ",", "51.3910343863", ",", "51.5236948595", ",", "51.547684373", ",", "0", ",", "0", ",", "51.4505147238", ",", "51.5102027959", ",", "51.4463661008", ",", "51.4220872546", ",", "0", ",", "51.3730610336", ",", "51.36271234", ",", "51.3752150527", ",", "51.4020085795", ",", "51.3731850767", ",", "51.3822078539", ",", "0", ",", "0", ",", "51.5132780424", ",", "51.5699439133", ",", "51.5165025024", ",", "51.4066349352", ",", "51.5465441446", ",", "51.5707101578", ",", "51.5707101578", ",", "51.630687257", ",", "51.574299049", ",", "51.5919049905", ",", "51.4808137175", ",", "51.4821355182", ",", "51.4826257883", ",", "51.6161938265", ",", "51.5580003649", ",", "0", ",", "51.3921702221", ",", "51.5171105522", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4819288448", ",", "51.5327715248", ",", "51.5300364381", ",", "51.4025559036", ",", "51.3397684414", ",", "51.4451592947", ",", "0", ",", "0", ",", "51.4934160607", ",", "51.5975151391", ",", "51.5511372622", ",", "0", ",", "51.4808690862", ",", "51.514958769", ",", "51.51614516", ",", "51.51614516", ",", "51.3909539494", ",", "51.5176792367", ",", "0", ",", "51.4919066685", ",", "51.4919066685", ",", "51.5813758941", ",", "51.4278751569", ",", "51.5933569913", ",", "51.5163289783", ",", "51.5630148298", ",", "51.5681047987", ",", "51.3878633548", ",", "51.3886090636", ",", "51.3893624169", ",", "0", ",", "0", ",", "0", ",", "51.4624767608", ",", "51.4671954209", ",", "51.5715150665", ",", "51.5511293671", ",", "51.5511338554", ",", "51.5075346403", ",", "0", ",", "0", ",", "51.4043102569", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.547991706", ",", "51.5201318469", ",", "51.5372172597", ",", "51.5369353997", ",", "51.5001760341", ",", "51.5189096774", ",", "51.5189096774", ",", "51.5281441082", ",", "51.5199591172", ",", "51.5159992583", ",", "51.5152499773", ",", "51.5189096774", ",", "51.5189096774", ",", "51.4070815676", ",", "0", ",", "0", ",", "51.4655647855", ",", "0", ",", "51.587375099", ",", "51.5813424609", ",", "51.587375099", ",", "51.4939945181", ",", "51.6021163455", ",", "51.5061316933", ",", "51.5905511989", ",", "51.3699249063", ",", "51.4683528659", ",", "0", ",", "51.6056594325", ",", "51.6061556386", ",", "0", ",", "0", ",", "51.6022692548", ",", "0", ",", "51.5099947338", ",", "51.5097206922", ",", "51.5016131909", ",", "51.5090995723", ",", "51.6055750832", ",", "51.5835649455", ",", "51.4393491511", ",", "51.5071567762", ",", "51.4734239684", ",", "51.4167114202", ",", "51.4155236082", ",", "51.6182346369", ",", "51.6171324148", ",", "51.5013595343", ",", "51.4534769096", ",", "51.4534769096", ",", "51.4534769096", ",", "51.4534769096", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3629526003", ",", "51.4017088077", ",", "51.5782644883", ",", "51.4151360524", ",", "51.4156421421", ",", "51.6403676058", ",", "51.4172458089", ",", "51.5334593001", ",", "51.5435303372", ",", "51.5637655124", ",", "51.6005596103", ",", "51.5076948063", ",", "51.5334593001", ",", "51.4157910198", ",", "51.6464423761", ",", "51.6035216779", ",", "51.5829010365", ",", "51.5530356608", ",", "51.636847034", ",", "51.4542636516", ",", "51.4347830847", ",", "51.373067328", ",", "51.4596471123", ",", "51.3960143102", ",", "51.4067909815", ",", "51.3653180487", ",", "51.3726892729", ",", "51.5535313872", ",", "51.5651318639", ",", "51.5598511978", ",", "51.4057582423", ",", "51.5366845095", ",", "51.4226646403", ",", "51.5246377736", ",", "51.5246377736", ",", "51.5591824744", ",", "51.3754022829", ",", "51.5246377736", ",", "51.5239172039", ",", "51.5769072611", ",", "51.6442936935", ",", "51.5446734202", ",", "51.4363966314", ",", "51.565641246", ",", "51.396899257", ",", "51.430634251", ",", "51.4600850244", ",", "0", ",", "0", ",", "51.5278881875", ",", "51.5295488963", ",", "51.5275753223", ",", "51.5261918934", ",", "51.5227001422", ",", "0", ",", "51.3732988861", ",", "51.3818308343", ",", "51.5895458023", ",", "51.5193528308", ",", "0", ",", "51.4456304211", ",", "0", ",", "51.5998038538", ",", "51.4399778993", ",", "51.314923644", ",", "51.3635940324", ",", "51.4780536655", ",", "0", ",", "51.4428529293", ",", "51.5444740986", ",", "51.3943299155", ",", "51.5714688874", ",", "51.5879632124", ",", "0", ",", "51.6117724829", ",", "51.4283428659", ",", "51.42868696", ",", "51.4637848198", ",", "51.4636921553", ",", "51.6218341678", ",", "51.636043589", ",", "51.6343023828", ",", "51.4361673095", ",", "51.4283428659", ",", "51.5612484988", ",", "51.5711218872", ",", "51.5702045232", ",", "0", ",", "51.5380521767", ",", "51.4939597063", ",", "51.3972124738", ",", "51.5363419223", ",", "51.4775814649", ",", "51.44088637", ",", "0", ",", "0", ",", "51.5609318608", ",", "51.501494485", ",", "0", ",", "51.535770967", ",", "51.5508898568", ",", "0", ",", "51.4774520734", ",", "51.4774520734", ",", "51.6573165445", ",", "51.6589634028", ",", "51.4774520734", ",", "51.6585075673", ",", "51.4774520734", ",", "51.4753916345", ",", "51.4728163304", ",", "51.4728163304", ",", "0", ",", "51.6151929049", ",", "0", ",", "51.4314835929", ",", "0", ",", "51.6123912828", ",", "51.5620417788", ",", "51.4397268047", ",", "0", ",", "0", ",", "51.4761314463", ",", "51.4751041525", ",", "0", ",", "0", ",", "51.4468448953", ",", "51.3933354334", ",", "51.6457764863", ",", "51.3434268821", ",", "51.3550699256", ",", "51.4297238361", ",", "51.389017479", ",", "0", ",", "51.4716900498", ",", "51.532508702", ",", "0", ",", "51.525214679", ",", "0", ",", "51.4737402018", ",", "51.4743688682", ",", "51.4827129644", ",", "51.4742145287", ",", "51.475439762", ",", "51.4696254892", ",", "51.462670718", ",", "51.4587151896", ",", "51.4630464574", ",", "51.4630253662", ",", "51.5300382735", ",", "51.5272791418", ",", "51.5275227716", ",", "0", ",", "51.4598255492", ",", "51.4936779683", ",", "51.5664606671", ",", "51.4863777922", ",", "51.5620302177", ",", "51.5783384791", ",", "0", ",", "0", ",", "51.3973433367", ",", "0", ",", "51.4982918051", ",", "0", ",", "51.5627733075", ",", "51.5286948935", ",", "51.4955676226", ",", "51.5286948935", ",", "51.5495590394", ",", "51.598628371", ",", "51.5520396635", ",", "51.4940175143", ",", "0", ",", "0", ",", "51.4831026585", ",", "0", ",", "0", ",", "51.5262077756", ",", "0", ",", "0", ",", "51.4198364888", ",", "51.4177054228", ",", "51.5373754393", ",", "51.4176378243", ",", "51.4134077961", ",", "51.4132847831", ",", "0", ",", "51.4394241057", ",", "51.4899906409", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4936941254", ",", "51.5693471973", ",", "51.5670264642", ",", "51.5639960111", ",", "51.5650377626", ",", "51.6460955558", ",", "0", ",", "51.4039418455", ",", "0", ",", "0", ",", "51.4864533975", ",", "51.4877264607", ",", "0", ",", "0", ",", "51.4710120017", ",", "0", ",", "51.6042140053", ",", "51.5324033005", ",", "0", ",", "51.4904109743", ",", "51.5310566014", ",", "51.531644262", ",", "51.5316413509", ",", "51.5328171223", ",", "0", ",", "51.5317956202", ",", "0", ",", "51.4430370108", ",", "51.4413319376", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4160542886", ",", "51.4110715271", ",", "51.6506265686", ",", "51.4414697085", ",", "51.5265737756", ",", "51.5260022097", ",", "51.5260022097", ",", "51.5293700765", ",", "51.4138970576", ",", "51.5708981636", ",", "51.5889701779", ",", "51.422502354", ",", "51.518968296", ",", "51.4692968476", ",", "51.3765154848", ",", "51.4692968476", ",", "51.5368267165", ",", "51.5412365746", ",", "51.5329758332", ",", "51.5400577667", ",", "51.5342011287", ",", "0", ",", "0", ",", "51.3835102108", ",", "51.5644127148", ",", "51.4635909209", ",", "51.4635909209", ",", "51.4356171326", ",", "51.4352468034", ",", "51.5754790502", ",", "51.5153156865", ",", "0", ",", "0", ",", "51.5677102548", ",", "51.5281289928", ",", "51.568970889", ",", "51.5994288735", ",", "51.5318665886", ",", "51.405736502", ",", "51.5419936368", ",", "51.5055430476", ",", "0", ",", "51.4667761284", ",", "51.4667761284", ",", "51.3889218409", ",", "51.5742099388", ",", "51.463461958", ",", "51.4476771727", ",", "51.4476771727", ",", "51.4476771727", ",", "0", ",", "51.4476771727", ",", "51.4446395312", ",", "51.4953441339", ",", "51.5550930414", ",", "51.3346117024", ",", "51.5917072967", ",", "51.5825052677", ",", "51.5853109791", ",", "51.4907165359", ",", "51.3885943798", ",", "51.3895385948", ",", "51.3907909265", ",", "51.4758528807", ",", "0", ",", "51.5553849207", ",", "51.4440893257", ",", "0", ",", "0", ",", "51.5877876187", ",", "51.5865181592", ",", "51.5273520803", ",", "51.5913766601", ",", "51.4997915134", ",", "51.5177106169", ",", "51.4041072026", ",", "51.4041072026", ",", "0", ",", "51.3674599054", ",", "51.5142621607", ",", "51.4982870111", ",", "51.4982870111", ",", "51.5095910382", ",", "51.6323338454", ",", "51.4683920337", ",", "51.4709495591", ",", "51.4614325284", ",", "51.387549948", ",", "51.3901325743", ",", "51.3819113149", ",", "51.389627899", ",", "51.5272096853", ",", "51.5261949375", ",", "51.4924506234", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5357240683", ",", "51.5357240683", ",", "51.5357240683", ",", "51.5548134685", ",", "0", ",", "51.4897226944", ",", "51.4880971279", ",", "51.4853646699", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3641259074", ",", "51.3922689358", ",", "51.6306269608", ",", "51.3438955108", ",", "51.3438955108", ",", "51.4817526608", ",", "0", ",", "0", ",", "51.4990349477", ",", "51.4985388202", ",", "51.498097748", ",", "51.5002784166", ",", "51.5937127215", ",", "51.5907729081", ",", "51.5910082526", ",", "51.5969614262", ",", "51.5969614262", ",", "51.5864449087", ",", "51.5864449087", ",", "51.5864449087", ",", "51.5864449087", ",", "51.5918417192", ",", "51.6253583746", ",", "51.5617695477", ",", "51.5259006835", ",", "51.5315064417", ",", "0", ",", "0", ",", "51.5260852321", ",", "51.4308356305", ",", "0", ",", "51.5150243455", ",", "51.3465992866", ",", "51.3478769538", ",", "51.3474023859", ",", "51.3790981516", ",", "51.5316681152", ",", "51.529167974", ",", "51.4139572036", ",", "51.4145538952", ",", "51.5339862728", ",", "51.4059559376", ",", "51.523760837", ",", "51.5221138383", ",", "51.5258171456", ",", "51.5375941681", ",", "51.5370504375", ",", "51.5401522516", ",", "51.4451817997", ",", "51.5488241585", ",", "0", ",", "51.5370909777", ",", "51.5356718483", ",", "51.6242719767", ",", "0", ",", "51.4280619372", ",", "51.3408761301", ",", "51.3603359538", ",", "51.4616366517", ",", "51.6128862171", ",", "0", ",", "0", ",", "0", ",", "51.4898368959", ",", "51.4913418211", ",", "51.4735193925", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0", ",", "-", "0.3957416785", ",", "-", "0.15797983345", ",", "-", "0.15841597655", ",", "-", "0.24898276652", ",", "-", "0.2462790673", ",", "-", "0.244993454067", ",", "-", "0.209783182967", ",", "-", "0.2414300841", ",", "-", "0.2779037813", ",", "-", "0.2289136999", ",", "0", ",", "-", "0.23225866075", ",", "-", "0.2334801131", ",", "0.0568177197", ",", "0.01913361865", ",", "-", "0.19493812695", ",", "-", "0.2074311105", ",", "-", "0.202082188", ",", "-", "0.0583595251", ",", "-", "0.2831447797", ",", "-", "0.4787687952", ",", "-", "0.4787687952", ",", "0.0283020233", ",", "-", "0.35380277585", ",", "-", "0.0052324796", ",", "-", "0.26147030815", ",", "0", ",", "-", "0.12622747755", ",", "0.08388032615", ",", "0.14094459175", ",", "0", ",", "0", ",", "-", "0.09877631405", ",", "0.00891938285", ",", "0.0132813814", ",", "0.0132813814", ",", "-", "0.0185307433", ",", "-", "0.0350248978", ",", "-", "0.0329130827", ",", "-", "0.0802527107", ",", "-", "0.0434947918", ",", "-", "0.0542979711", ",", "0", ",", "-", "0.03579402655", ",", "-", "0.02960719385", ",", "0", ",", "0", ",", "-", "0.05436102595", ",", "-", "0.0133404102", ",", "0.0877978384", ",", "-", "0.0089504755", ",", "0.004833514", ",", "-", "0.17938441065", ",", "0", ",", "0", ",", "0.07759288965", ",", "0", ",", "-", "0.1076914681", ",", "-", "0.1419196201", ",", "-", "0.1878308913", ",", "0", ",", "-", "0.21936129625", ",", "0.00089309805", ",", "-", "0.2641076509", ",", "0", ",", "-", "0.2493829823", ",", "0", ",", "-", "0.206885012767", ",", "-", "0.0958212068", ",", "-", "0.08717074265", ",", "0.2155518476", ",", "0", ",", "0", ",", "-", "0.17297021155", ",", "-", "0.154156004933", ",", "-", "0.17549965415", ",", "-", "0.1589538678", ",", "-", "0.1583147357", ",", "-", "0.158862180275", ",", "-", "0.14708321955", ",", "-", "0.17297021155", ",", "-", "0.165556887867", ",", "-", "0.16644900465", ",", "-", "0.1690699066", ",", "-", "0.16751283955", ",", "-", "0.163608710033", ",", "-", "0.0955770585", ",", "-", "0.08627155265", ",", "-", "0.2332512092", ",", "0.00813875025", ",", "-", "0.2296047398", ",", "-", "0.37035143835", ",", "-", "0.25375513765", ",", "0", ",", "0.1225266985", ",", "0", ",", "0", ",", "0", ",", "-", "0.0215390322", ",", "-", "0.0274898588", ",", "-", "0.0330861799", ",", "-", "0.28876917785", ",", "-", "0.173805799", ",", "-", "0.4444960764", ",", "0", ",", "0", ",", "-", "0.025668544", ",", "0", ",", "0.0631321667", ",", "-", "0.1946113455", ",", "-", "0.14106859", ",", "0", ",", "0.0239955363", ",", "-", "0.21092126445", ",", "-", "0.17531401915", ",", "-", "0.02937397375", ",", "-", "0.2743363401", ",", "0", ",", "0", ",", "-", "0.0567875979", ",", "-", "0.42182182195", ",", "-", "0.1375325964", ",", "-", "0.0994056472", ",", "0", ",", "-", "0.0544846142", ",", "-", "0.0543818244", ",", "-", "0.0438344524", ",", "-", "0.0462406218", ",", "-", "0.0284666428", ",", "-", "0.10542187595", ",", "-", "0.15490420145", ",", "0.06407226805", ",", "-", "0.21253564135", ",", "-", "0.2834919444", ",", "-", "0.2700469045", ",", "0.1246488454", ",", "0", ",", "-", "0.10976574405", ",", "-", "0.306814484533", ",", "0.010359937875", ",", "-", "0.0222858996", ",", "0.08372676415", ",", "-", "0.2640570144", ",", "-", "0.3667057302", ",", "0", ",", "-", "0.33434978385", ",", "-", "0.0860795453286", ",", "-", "0.0534908221", ",", "-", "0.49903381345", ",", "0", ",", "0", ",", "-", "0.4781952651", ",", "-", "0.0907908339", ",", "0", ",", "-", "0.0881445446333", ",", "-", "0.09003852785", ",", "-", "0.09003852785", ",", "-", "0.10451698895", ",", "0", ",", "0", ",", "-", "0.2187727652", ",", "0", ",", "0.17694155425", ",", "-", "0.1943125448", ",", "-", "0.1954754924", ",", "-", "0.1974013846", ",", "-", "0.1943125448", ",", "-", "0.1909450825", ",", "-", "0.0133515839", ",", "-", "0.2220922847", ",", "-", "0.1943125448", ",", "-", "0.1924510539", ",", "-", "0.1924510539", ",", "-", "0.19349617005", ",", "-", "0.20037911685", ",", "-", "0.1930228085", ",", "0.0047922905", ",", "-", "0.2033605477", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.39882881335", ",", "0", ",", "0.0148140636", ",", "-", "0.4363151264", ",", "-", "0.1713262664", ",", "0", ",", "-", "0.0852284949", ",", "-", "0.0982924771", ",", "-", "0.3046848559", ",", "-", "0.2673262709", ",", "0", ",", "-", "0.0120987518", ",", "0", ",", "-", "0.0467323155", ",", "-", "0.0536409385", ",", "-", "0.138504986614", ",", "0", ",", "-", "0.0484883554", ",", "0.0479356296", ",", "-", "0.406032659", ",", "0.1342844944", ",", "0", ",", "0.0571240255", ",", "0", ",", "-", "0.2595781806", ",", "-", "0.2734748244", ",", "-", "0.2568173991", ",", "0.0316795545", ",", "-", "0.2870922425", ",", "-", "0.2870922425", ",", "-", "0.26447515025", ",", "-", "0.13617452675", ",", "-", "0.1142718863", ",", "0", ",", "0", ",", "0", ",", "-", "0.4762352009", ",", "0.0756956872", ",", "0.0756956872", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.10724072875", ",", "0", ",", "-", "0.23893549145", ",", "-", "0.244932706467", ",", "-", "0.2529766682", ",", "0.051289747475", ",", "0.05434252525", ",", "0.05150855715", ",", "0.04508657525", ",", "0.0481717035", ",", "0", ",", "0", ",", "-", "0.0465728559", ",", "0", ",", "-", "0.2464029585", ",", "-", "0.06225389165", ",", "-", "0.30148894215", ",", "-", "0.3121479863", ",", "-", "0.01340609245", ",", "-", "0.1279823035", ",", "0", ",", "0", ",", "-", "0.2588344788", ",", "0.14621461585", ",", "-", "0.304139447", ",", "-", "0.29495635205", ",", "-", "0.05224004525", ",", "274568080.472", ",", "-", "0.0789325279", ",", "-", "0.0789325279", ",", "-", "0.11038591485", ",", "-", "0.4926188861", ",", "-", "0.0789325279", ",", "-", "0.0789325279", ",", "-", "0.4167183307", ",", "-", "0.2891911905", ",", "-", "0.1640990567", ",", "-", "0.1780831193", ",", "-", "0.44381125625", ",", "0", ",", "-", "0.44381125625", ",", "-", "0.1145886887", ",", "-", "0.1079292591", ",", "0", ",", "-", "0.3035186299", ",", "-", "0.1245319491", ",", "0.1161964565", ",", "-", "0.1989173943", ",", "0.0084150449", ",", "-", "0.0007446152", ",", "0", ",", "0.1003098944", ",", "0.09406268005", ",", "0.1659071343", ",", "-", "0.442589572", ",", "-", "0.0144804634", ",", "0", ",", "0", ",", "-", "0.4572778091", ",", "0", ",", "0.1664761879", ",", "0.03123848645", ",", "-", "0.24606547095", ",", "-", "0.20498246895", ",", "-", "0.1283893699", ",", "-", "0.3586186027", ",", "0.01822157535", ",", "0.1974649881", ",", "-", "0.212268943", ",", "-", "0.2134713352", ",", "-", "0.20754036", ",", "-", "0.20462056395", ",", "-", "0.2155952213", ",", "-", "0.087346245", ",", "-", "0.087346245", ",", "-", "0.13108761575", ",", "-", "0.13564240635", ",", "0", ",", "0", ",", "-", "0.0531188965", ",", "-", "0.12502877584", ",", "-", "0.3351810071", ",", "-", "0.1704067087", ",", "-", "0.1772261623", ",", "0", ",", "-", "0.14283373285", ",", "-", "0.1409986623", ",", "-", "0.1458272573", ",", "-", "0.14816754545", ",", "-", "0.14283373285", ",", "0", ",", "0", ",", "-", "0.1058088321", ",", "-", "0.1647410832", ",", "-", "0.1647410832", ",", "-", "0.1184235939", ",", "-", "0.0937109328", ",", "0", ",", "-", "0.4261571207", ",", "0.2103079831", ",", "-", "0.4324632172", ",", "0", ",", "0.0628542333", ",", "0.033246089", ",", "0", ",", "0", ",", "0", ",", "-", "0.40067050625", ",", "0", ",", "-", "0.20662702785", ",", "0", ",", "0", ",", "0", ",", "-", "0.2498524229", ",", "0.10453025205", ",", "-", "0.16061323365", ",", "-", "0.00732065785", ",", "-", "0.3450919614", ",", "-", "0.1796684828", ",", "-", "0.1796684828", ",", "0", ",", "-", "0.40088678085", ",", "0", ",", "-", "0.24965922585", ",", "-", "0.2514947499", ",", "-", "0.2503665079", ",", "-", "0.26083635585", ",", "0", ",", "-", "0.141554766667", ",", "-", "0.4304086004", ",", "0.2146313389", ",", "0", ",", "0", ",", "0.224797428", ",", "-", "0.2103334962", ",", "0", ",", "-", "0.4657726668", ",", "-", "0.3060959991", ",", "0.18719912505", ",", "0.18719912505", ",", "-", "0.3718974553", ",", "0.18719912505", ",", "0.0627277671", ",", "-", "0.4506049249", ",", "-", "0.4477540336", ",", "-", "0.34480564295", ",", "-", "0.05434739925", ",", "-", "0.0664813913", ",", "0", ",", "-", "0.19392631995", ",", "-", "0.1849347267", ",", "-", "0.0550481044", ",", "0", ",", "0", ",", "0", ",", "-", "0.0160936341", ",", "-", "0.1890500438", ",", "0", ",", "-", "0.1859749818", ",", "-", "0.1944503027", ",", "0", ",", "-", "0.1998557046", ",", "0.0847261441", ",", "0.0908610395", ",", "-", "0.0176523532", ",", "-", "0.0052610628", ",", "-", "0.0052610628", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1733554315", ",", "-", "0.1714213703", ",", "-", "0.17426526696", ",", "-", "0.035183304575", ",", "-", "0.1440193429", ",", "0", ",", "-", "0.1438570839", ",", "0.0329837834", ",", "0.0391812279", ",", "0", ",", "-", "0.3886465765", ",", "-", "0.1600718977", ",", "-", "0.1300657746", ",", "-", "0.04853872555", ",", "-", "0.03993400902", ",", "-", "0.04455925788", ",", "-", "0.04152539865", ",", "-", "0.0477550444", ",", "-", "0.0477550444", ",", "-", "0.0501725187", ",", "-", "0.0316010632", ",", "-", "0.0410935977", ",", "0", ",", "0.07149473576", ",", "0.07121183375", ",", "-", "0.10851057515", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.37982784595", ",", "0", ",", "0", ",", "-", "0.0965297861", ",", "-", "0.1926148812", ",", "0", ",", "-", "0.256386886967", ",", "-", "0.2558564811", ",", "-", "0.2614511953", ",", "-", "0.256145594725", ",", "0", ",", "0", ",", "0", ",", "-", "0.085674289", ",", "-", "0.0887044611", ",", "-", "0.127113915633", ",", "-", "0.04868135715", ",", "-", "0.4811878397", ",", "-", "0.12329321", ",", "-", "0.1329198004", ",", "-", "0.4814290466", ",", "0", ",", "-", "0.0966239516", ",", "0", ",", "-", "0.06176720565", ",", "-", "0.43169615165", ",", "-", "0.30136623975", ",", "-", "0.4435191741", ",", "-", "0.439180561", ",", "-", "0.0642592913", ",", "-", "0.0643980734", ",", "0.0948624729", ",", "0.2049306679", ",", "-", "0.43978053715", ",", "0.1265703746", ",", "-", "0.1347245779", ",", "-", "0.14340106475", ",", "0.02189170145", ",", "-", "0.25450952525", ",", "0.0237446337", ",", "0", ",", "-", "0.47083302505", ",", "0.12126491945", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0906996671", ",", "0", ",", "0", ",", "-", "0.4659202896", ",", "0", ",", "0", ",", "-", "0.23168563", ",", "0", ",", "0.0322612331", ",", "0.0548573108167", ",", "0.0330915011", ",", "0.03710114365", ",", "0.03113088145", ",", "0.02351888715", ",", "0.0319491157667", ",", "0", ",", "0", ",", "-", "0.102277814633", ",", "-", "0.0877236861", ",", "-", "0.0855999085", ",", "-", "0.0846436447", ",", "-", "0.0877236861", ",", "-", "0.0877236861", ",", "0", ",", "-", "0.0520532502", ",", "-", "0.0395225798", ",", "-", "0.1207988345", ",", "0", ",", "0.040169445", ",", "0", ",", "-", "0.36144329095", ",", "-", "0.461762890633", ",", "-", "0.23819042065", ",", "0", ",", "0", ",", "-", "0.3774097059", ",", "0", ",", "0", ",", "0", ",", "-", "0.2691605458", ",", "0", ",", "0", ",", "0", ",", "0.0380316001", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1201376449", ",", "-", "0.06621055645", ",", "-", "0.1605770322", ",", "-", "0.3010483817", ",", "-", "0.3010483817", ",", "0.0614999189667", ",", "-", "0.060028881", ",", "-", "0.11984265815", ",", "-", "0.0475902130333", ",", "-", "0.37109187205", ",", "-", "0.3347700093", ",", "-", "0.3711146254", ",", "0.06612763315", ",", "-", "0.1499534553", ",", "0", ",", "-", "0.0660489986", ",", "-", "0.0740473664667", ",", "-", "0.1520390734", ",", "-", "0.1315592779", ",", "0", ",", "0", ",", "0.2210827678", ",", "0.217959883367", ",", "-", "0.42753086745", ",", "-", "0.27272529385", ",", "-", "0.26512657415", ",", "-", "0.22164745575", ",", "-", "0.22164745575", ",", "-", "0.28337944995", ",", "-", "0.2931068871", ",", "-", "0.1236861812", ",", "-", "0.3518438284", ",", "-", "0.12152882285", ",", "-", "0.11967282195", ",", "-", "0.11386948565", ",", "0", ",", "0.0280294688", ",", "0.0285777358", ",", "-", "0.21054575465", ",", "0", ",", "-", "0.2743930518", ",", "-", "0.1192739859", ",", "-", "0.0826910818", ",", "0", ",", "-", "0.2625945281", ",", "0", ",", "-", "0.17423737235", ",", "-", "0.25067660235", ",", "-", "0.2593640746", ",", "-", "0.26019808765", ",", "-", "0.3754336096", ",", "0", ",", "0", ",", "-", "0.2711932008", ",", "-", "0.2198312448", ",", "-", "0.2542543458", ",", "0.0631056751", ",", "0.0763070788", ",", "-", "0.1525330793", ",", "0.06920339295", ",", "-", "0.21408756495", ",", "0.0763070788", ",", "0.0763070788", ",", "-", "0.21652885555", ",", "-", "0.4700566531", ",", "-", "0.2973129063", ",", "-", "0.0262011435", ",", "0.15289111275", ",", "0.00146470815", ",", "-", "0.0751640644", ",", "0", ",", "0", ",", "-", "0.0862953086", ",", "-", "0.0883106045", ",", "-", "0.2912416283", ",", "0.0639846901", ",", "0.0622545313", ",", "0.0535734602", ",", "0.0660395843", ",", "-", "0.21155694615", ",", "-", "0.20073847935", ",", "-", "0.20136658665", ",", "0", ",", "0", ",", "-", "0.17625772096", ",", "-", "0.17625772096", ",", "0.00452958042", ",", "0.01295642335", ",", "0.00332554745556", ",", "-", "0.362239881475", ",", "-", "0.3617408", ",", "-", "0.15478395945", ",", "0.2198482083", ",", "-", "0.1537388128", ",", "-", "0.426698006", ",", "-", "0.4130207336", ",", "-", "0.22422691375", ",", "-", "0.227783864025", ",", "-", "0.22550044015", ",", "0", ",", "0", ",", "-", "0.0757097518667", ",", "-", "0.2304131836", ",", "-", "0.227403901267", ",", "-", "0.227572902", ",", "0", ",", "-", "0.46031057705", ",", "0", ",", "-", "0.2707998191", ",", "-", "0.37317516065", ",", "-", "0.46031057705", ",", "-", "0.1185356553", ",", "-", "0.2883850325", ",", "0", ",", "0.075452388", ",", "0.1736068678", ",", "0.1736068678", ",", "0.17772094335", ",", "-", "0.0210344767", ",", "0", ",", "0", ",", "-", "0.30583852505", ",", "0.0617907453857", ",", "0.064201873325", ",", "0.1646439881", ",", "0", ",", "0", ",", "-", "0.137320707733", ",", "-", "0.38026121895", ",", "0.0887039193", ",", "-", "0.16697877435", ",", "-", "0.41708092795", ",", "-", "0.0683625803", ",", "-", "0.3184394872", ",", "0", ",", "-", "0.1608624953", ",", "-", "0.31463144105", ",", "-", "0.27216118755", ",", "0", ",", "-", "0.4390917558", ",", "-", "0.0914157304", ",", "-", "0.0914157304", ",", "-", "0.0914157304", ",", "-", "0.0914157304", ",", "-", "0.1889434635", ",", "-", "0.367436849975", ",", "-", "0.3600366789", ",", "-", "0.37481029855", ",", "-", "0.3592720843", ",", "-", "0.4729812787", ",", "-", "0.3919480196", ",", "-", "0.3683690973", ",", "0.0135706021", ",", "0.01149943965", ",", "-", "0.426580413", ",", "0.08512175625", ",", "0.2136019257", ",", "-", "0.1311011327", ",", "0.0548453883", ",", "-", "0.05307469418", ",", "0.08512175625", ",", "-", "0.1696661485", ",", "0.16952549935", ",", "0.04289475", ",", "0.04289475", ",", "-", "0.07601919485", ",", "-", "0.2154672775", ",", "-", "0.322085546467", ",", "-", "0.325459672433", ",", "-", "0.318136772", ",", "-", "0.324714779125", ",", "-", "0.3184021277", ",", "0", ",", "-", "0.0718636699", ",", "-", "0.0593863058", ",", "-", "0.423170471537", ",", "-", "0.4268169866", ",", "-", "0.43128852585", ",", "-", "0.4125183875", ",", "-", "0.4095710195", ",", "-", "0.409459946", ",", "-", "0.4098778334", ",", "0.13808348555", ",", "-", "0.1413997299", ",", "-", "0.4078696915", ",", "0", ",", "0", ",", "-", "0.410465486567", ",", "0.15305539325", ",", "-", "0.2644554209", ",", "0.1763217184", ",", "0.1763217184", ",", "-", "0.37860074995", ",", "-", "0.370207977967", ",", "-", "0.0746421838", ",", "-", "0.07397910905", ",", "0", ",", "0", ",", "-", "0.0976284252", ",", "-", "0.1004240565", ",", "-", "0.0985623665", ",", "-", "0.195674263936", ",", "-", "0.19609861525", ",", "-", "0.19609861525", ",", "0", ",", "-", "0.3657001494", ",", "-", "0.17480599405", ",", "-", "0.17480599405", ",", "0.1111586625", ",", "-", "0.0819537396", ",", "0", ",", "-", "0.0513050437", ",", "-", "0.0586325222", ",", "-", "0.054097863", ",", "0", ",", "0.0258899673", ",", "-", "0.1363200188", ",", "0", ",", "0.14821748755", ",", "-", "0.0664122551", ",", "-", "0.0664122551", ",", "0.1048768913", ",", "0", ",", "-", "0.1073984271", ",", "0", ",", "0", ",", "-", "0.1757398885", ",", "-", "0.0036299541", ",", "0.0338997549", ",", "-", "0.1700990838", ",", "0.1435509815", ",", "-", "0.44175930855", ",", "-", "0.0146850434", ",", "-", "0.4502931892", ",", "-", "0.4502931892", ",", "-", "0.2677661092", ",", "-", "0.40187370375", ",", "0.0141056626", ",", "-", "0.17195005995", ",", "0", ",", "-", "0.2679912055", ",", "-", "0.2679912055", ",", "0.16771037725", ",", "0", ",", "-", "0.19109224945", ",", "-", "0.2951877273", ",", "0.0327413479", ",", "0.0585281692", ",", "-", "0.274416662", ",", "0", ",", "0", ",", "-", "0.1531875517", ",", "0", ",", "0", ",", "-", "0.1102509114", ",", "-", "0.1837345159", ",", "0", ",", "0", ",", "-", "0.1232834517", ",", "-", "0.184870842333", ",", "-", "0.07007582715", ",", "-", "0.03630419905", ",", "0.098181573", ",", "0", ",", "0.01666327185", ",", "-", "0.17437478245", ",", "-", "0.1664306943", ",", "-", "0.1701986159", ",", "-", "0.1664306943", ",", "-", "0.17478176545", ",", "0.03935980285", ",", "0.03935980285", ",", "-", "0.1358903697", ",", "-", "0.2590455606", ",", "-", "0.0880091521", ",", "-", "0.2315862584", ",", "0.0947191124", ",", "-", "0.0528219244", ",", "0", ",", "0", ",", "-", "0.13200507885", ",", "-", "0.0141367815", ",", "-", "0.13200507885", ",", "-", "0.13200507885", ",", "-", "0.13200507885", ",", "-", "0.13200507885", ",", "-", "0.13200507885", ",", "0.07106553085", ",", "-", "0.1321938521", ",", "-", "0.2186253594", ",", "-", "0.0642988731", ",", "0", ",", "0", ",", "-", "0.04311847235", ",", "0", ",", "-", "0.0893194399", ",", "0", ",", "-", "0.122802143", ",", "-", "0.3133430762", ",", "-", "0.1106818667", ",", "0.1471404159", ",", "0.1255271965", ",", "0.2113065077", ",", "0", ",", "-", "0.2222243741", ",", "0.2113065077", ",", "-", "0.28848864045", ",", "0.1075745773", ",", "0", ",", "0.1661866172", ",", "-", "0.13963844445", ",", "-", "0.08557286845", ",", "-", "0.08557286845", ",", "-", "0.00658489155", ",", "-", "0.17370079", ",", "-", "0.17370079", ",", "-", "0.1920495839", ",", "-", "0.14617267295", ",", "-", "0.1200887621", ",", "-", "0.06237335105", ",", "-", "0.381990377", ",", "-", "0.0281836089", ",", "-", "0.055897248", ",", "-", "0.0410580144", ",", "-", "0.03365935485", ",", "0", ",", "0.0795464464", ",", "0.0308208259", ",", "-", "0.1736677813", ",", "-", "0.1736677813", ",", "-", "0.0715859368", ",", "-", "0.0819101079", ",", "-", "0.0559089094667", ",", "-", "0.1249964084", ",", "0.1414052523", ",", "-", "0.1665059626", ",", "0.0819357804", ",", "-", "0.0637213585", ",", "-", "0.249497242125", ",", "-", "0.25152686605", ",", "-", "0.0805508986", ",", "-", "0.0909821781", ",", "-", "0.1482022275", ",", "-", "0.0956637034", ",", "0", ",", "0", ",", "0.1652745168", ",", "0.16420479165", ",", "0.17411367465", ",", "0", ",", "-", "0.39700232905", ",", "-", "0.04504488095", ",", "-", "0.4229516791", ",", "-", "0.08778578574", ",", "-", "0.0882859987", ",", "-", "0.0879022017", ",", "0.0416883174", ",", "0", ",", "0", ",", "0", ",", "0.11925973945", ",", "-", "0.1155207328", ",", "-", "0.35144420095", ",", "-", "0.33831734395", ",", "-", "0.3546631468", ",", "0", ",", "-", "0.372956321", ",", "0.0463643063", ",", "0.179119019617", ",", "0.0785712658", ",", "0.1750631933", ",", "-", "0.0155718624", ",", "-", "0.01181977265", ",", "-", "0.00443585175", ",", "0", ",", "-", "0.0225210253", ",", "-", "0.27887488235", ",", "-", "0.0425052582", ",", "-", "0.0757714892", ",", "-", "0.0391274515", ",", "7.389465e-05", ",", "0.1221080592", ",", "0.03331693475", ",", "-", "0.14682921005", ",", "-", "0.17893798", ",", "-", "0.17210643525", ",", "-", "0.1777546585", ",", "0.05953537205", ",", "-", "0.19741087055", ",", "0", ",", "-", "0.0014197677", ",", "-", "0.15705215785", ",", "-", "0.4363292574", ",", "-", "0.0425317483", ",", "-", "0.069074539", ",", "-", "0.069074539", ",", "0.038761946", ",", "-", "0.3029224113", ",", "-", "0.23385092155", ",", "-", "0.23385092155", ",", "-", "0.0006245516", ",", "-", "0.0470199603", ",", "-", "0.30837782825", ",", "0.0859080786", ",", "-", "0.1537997417", ",", "-", "0.1800437597", ",", "-", "0.0396329716", ",", "-", "0.175387738", ",", "-", "0.3574355915", ",", "0", ",", "0", ",", "-", "0.32089343165", ",", "-", "0.1899924482", ",", "-", "0.1495745574", ",", "-", "0.3601522903", ",", "0", ",", "0.0891684153833", ",", "0.096074054", ",", "0.1004746824", ",", "0.08673495175", ",", "0.09807734965", ",", "0.1057028283", ",", "0", ",", "0", ",", "-", "0.4282332362", ",", "-", "0.0631724398", ",", "-", "0.06879907875", ",", "-", "0.099530107", ",", "-", "0.02805813485", ",", "0.208534117233", ",", "0.208534117233", ",", "-", "0.149412988367", ",", "-", "0.1130008822", ",", "-", "0.1792027072", ",", "-", "0.3518296955", ",", "-", "0.345968320383", ",", "-", "0.3457681505", ",", "-", "0.0884184453", ",", "-", "0.0409001243", ",", "0", ",", "0.1237551091", ",", "-", "0.4708795009", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11243985244", ",", "0.15615497045", ",", "0.1557301296", ",", "-", "0.01886754975", ",", "-", "0.01688133035", ",", "-", "0.0702783671", ",", "0", ",", "0", ",", "0.12148563315", ",", "0.0619482931", ",", "-", "0.2649679859", ",", "0", ",", "-", "0.4238751228", ",", "-", "0.143191508793", ",", "-", "0.1422409756", ",", "-", "0.1422409756", ",", "-", "0.2648903731", ",", "-", "0.21515788005", ",", "0", ",", "-", "0.278543078633", ",", "-", "0.278543078633", ",", "-", "0.34951646905", ",", "-", "0.3493431907", ",", "-", "0.3325657287", ",", "-", "0.1319230942", ",", "-", "0.2302421741", ",", "-", "0.2293590929", ",", "0.06246855055", ",", "0.0645527266", ",", "0.0596468336", ",", "0", ",", "0", ",", "0", ",", "0.06780385435", ",", "0.07888796145", ",", "-", "0.3713534727", ",", "0.1608818004", ",", "0.1474162677", ",", "-", "0.10867818745", ",", "0", ",", "0", ",", "-", "0.1793820849", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1863149664", ",", "-", "0.4791672843", ",", "-", "0.10072799655", ",", "-", "0.0988723448", ",", "-", "0.237223589", ",", "-", "0.1753195592", ",", "-", "0.1753195592", ",", "-", "0.3889115514", ",", "-", "0.17168118995", ",", "-", "0.176298299967", ",", "-", "0.1724535136", ",", "-", "0.1753195592", ",", "-", "0.1753195592", ",", "-", "0.32886203445", ",", "0", ",", "0", ",", "-", "0.1005952792", ",", "0", ",", "0.12969368805", ",", "0.1355390161", ",", "0.12969368805", ",", "-", "0.12904756745", ",", "-", "0.2543826999", ",", "-", "0.03511394745", ",", "0.24842533005", ",", "-", "0.180473546", ",", "-", "0.295121285", ",", "0", ",", "0.2321875113", ",", "0.2330495288", ",", "0", ",", "0", ",", "-", "0.0970324302", ",", "0", ",", "-", "0.1913697721", ",", "-", "0.1934270217", ",", "-", "0.1839008142", ",", "-", "0.1939703921", ",", "-", "0.122499386733", ",", "-", "0.1238688449", ",", "-", "0.11499325395", ",", "-", "0.1325144859", ",", "0.04329290855", ",", "0.1228359389", ",", "0.1253553076", ",", "-", "0.11060084875", ",", "-", "0.1091659722", ",", "-", "0.2732495589", ",", "-", "0.3391361573", ",", "-", "0.3391361573", ",", "-", "0.3391361573", ",", "-", "0.3391361573", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3043464258", ",", "-", "0.1002088055", ",", "-", "0.1040540799", ",", "-", "0.0488129067", ",", "0.0058959083", ",", "-", "0.0703715462333", ",", "0.01699031595", ",", "-", "0.29048354865", ",", "0.0787747932", ",", "0.0685442509", ",", "-", "0.1156378521", ",", "-", "0.3781192407", ",", "-", "0.29048354865", ",", "-", "0.3590905001", ",", "-", "0.08025843005", ",", "-", "0.2630366076", ",", "0.1755251017", ",", "0.16796138335", ",", "-", "0.11604870725", ",", "0.158224901", ",", "-", "0.0934556964", ",", "-", "0.0820693185", ",", "-", "0.13388606845", ",", "0.0457063262", ",", "-", "0.3315039111", ",", "-", "0.15730444735", ",", "-", "0.0963816028", ",", "-", "0.2942388286", ",", "0.19501499775", ",", "-", "0.291015972", ",", "-", "0.10370032845", ",", "-", "0.244457824075", ",", "-", "0.3586788831", ",", "-", "0.1591897116", ",", "-", "0.1591897116", ",", "0.0846103412", ",", "-", "0.1523660507", ",", "-", "0.1591897116", ",", "-", "0.4269731437", ",", "-", "0.2385351418", ",", "-", "0.1597523979", ",", "-", "0.4730418758", ",", "-", "0.39145132685", ",", "-", "0.02063045515", ",", "-", "0.0811827170333", ",", "-", "0.3659099724", ",", "-", "0.36268452005", ",", "0", ",", "0", ",", "-", "0.282467441275", ",", "-", "0.2685066297", ",", "-", "0.26913655365", ",", "-", "0.26649317745", ",", "-", "0.2623661023", ",", "0", ",", "-", "0.098755848225", ",", "-", "0.06973889345", ",", "-", "0.0652116064", ",", "-", "0.4563617383", ",", "0", ",", "0.0082030525", ",", "0", ",", "-", "0.3557792989", ",", "-", "0.41604564515", ",", "0.05335436235", ",", "-", "0.15261872305", ",", "-", "0.169999758567", ",", "0", ",", "0.1431880011", ",", "0.2489217662", ",", "-", "0.29330374485", ",", "0.0834840387", ",", "0.1719340345", ",", "0", ",", "-", "0.24431346165", ",", "-", "0.3547855627", ",", "-", "0.22372809075", ",", "0.1683564831", ",", "0.1714187414", ",", "-", "0.2791676162", ",", "-", "0.147306624467", ",", "-", "0.15227399355", ",", "-", "0.22450980075", ",", "-", "0.3547855627", ",", "-", "0.2335713641", ",", "0.2380568588", ",", "0.23782418055", ",", "0", ",", "-", "0.1447472986", ",", "0.1346391536", ",", "-", "0.2204912584", ",", "-", "0.1446438167", ",", "-", "0.3337387595", ",", "0.1425346977", ",", "0", ",", "0", ",", "-", "0.150441968825", ",", "-", "0.1262702949", ",", "0", ",", "-", "0.02914392205", ",", "0.12997228375", ",", "0", ",", "0.14527070675", ",", "0.14527070675", ",", "-", "0.0801096985", ",", "-", "0.08789842085", ",", "0.14527070675", ",", "-", "0.0844836983", ",", "0.14527070675", ",", "-", "0.2007816056", ",", "-", "0.1990973972", ",", "-", "0.1990973972", ",", "0", ",", "-", "0.2023499417", ",", "0", ",", "0.0580089959", ",", "0", ",", "-", "0.0865705215", ",", "-", "0.3184616671", ",", "0.00529636285", ",", "0", ",", "0", ",", "-", "0.1415585054", ",", "-", "0.105469559", ",", "0", ",", "0", ",", "-", "0.35957481635", ",", "-", "0.0937852325", ",", "-", "0.1391525832", ",", "-", "0.0472799151", ",", "-", "0.2162219299", ",", "-", "0.05862864045", ",", "-", "0.1209795394", ",", "0", ",", "0.1814321558", ",", "-", "0.07721979845", ",", "0", ",", "-", "0.0995120242", ",", "0", ",", "-", "0.067225466825", ",", "-", "0.0694033288333", ",", "-", "0.0644155499833", ",", "-", "0.0669498098", ",", "-", "0.0780224991", ",", "-", "0.0684253115", ",", "-", "0.065501384", ",", "-", "0.0659469793333", ",", "-", "0.0648376407", ",", "-", "0.0666477212333", ",", "-", "0.0533902098", ",", "-", "0.467295153", ",", "-", "0.467359053", ",", "0", ",", "0.1463297691", ",", "-", "0.1714004928", ",", "-", "0.2947216679", ",", "0.007148359", ",", "-", "0.1364564708", ",", "0.1409839604", ",", "0", ",", "0", ",", "-", "0.2779964519", ",", "0", ",", "-", "0.19815809945", ",", "0", ",", "-", "0.3008904653", ",", "-", "0.35955367455", ",", "-", "0.19878414655", ",", "-", "0.35955367455", ",", "-", "0.0583842476", ",", "-", "0.0690274697", ",", "-", "0.0583002434", ",", "-", "0.4203027489", ",", "0", ",", "0", ",", "-", "0.054093645", ",", "0", ",", "0", ",", "-", "0.3896790813", ",", "0", ",", "0", ",", "-", "0.05296361615", ",", "-", "0.05135705055", ",", "0.032810293", ",", "-", "0.059205569175", ",", "-", "0.0522301262", ",", "-", "0.0513221555", ",", "0", ",", "0.11784546855", ",", "0.0229801378", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.10806424335", ",", "-", "0.2084233201", ",", "-", "0.2113282808", ",", "-", "0.21576130135", ",", "-", "0.2153742264", ",", "-", "0.1146245408", ",", "0", ",", "-", "0.30436183075", ",", "0", ",", "0", ",", "-", "0.0988197607", ",", "-", "0.09636124955", ",", "0", ",", "0", ",", "-", "0.1374324483", ",", "0", ",", "-", "0.2388936345", ",", "-", "0.1947927254", ",", "0", ",", "-", "0.1038626136", ",", "-", "0.115277633567", ",", "-", "0.1117449015", ",", "-", "0.1104473741", ",", "-", "0.11142240515", ",", "0", ",", "-", "0.1077447515", ",", "0", ",", "-", "0.1883182197", ",", "-", "0.1970051242", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2321997113", ",", "-", "0.2264960932", ",", "-", "0.06562549355", ",", "-", "0.4239801194", ",", "-", "0.100140219", ",", "-", "0.1026076175", ",", "-", "0.1026076175", ",", "-", "0.1134826194", ",", "-", "0.3735319064", ",", "0.11138221465", ",", "0.1612337066", ",", "-", "0.37445617765", ",", "-", "0.1327664246", ",", "0.0977310303", ",", "-", "0.0445882414333", ",", "0.0977310303", ",", "-", "0.3241136493", ",", "-", "0.3240453683", ",", "-", "0.32995755475", ",", "-", "0.32430498855", ",", "-", "0.3194158612", ",", "0", ",", "0", ",", "0.09450928255", ",", "0.0423849808", ",", "0.1809882114", ",", "0.1809882114", ",", "-", "0.0485156776", ",", "-", "0.04383376755", ",", "0.0835231346", ",", "-", "0.2577179644", ",", "0", ",", "0", ",", "-", "0.03243080465", ",", "0.0271936197", ",", "0.0837065137", ",", "-", "0.10099939435", ",", "0.0858563917", ",", "-", "0.01391316055", ",", "-", "0.23196649185", ",", "-", "0.0415878366", ",", "0", ",", "-", "0.1931514528", ",", "-", "0.1931514528", ",", "-", "0.1714840774", ",", "0.001981524", ",", "-", "0.1835286424", ",", "-", "0.2387571464", ",", "-", "0.2387571464", ",", "-", "0.2387571464", ",", "0", ",", "-", "0.2387571464", ",", "-", "0.3028905697", ",", "0.11481815295", ",", "-", "0.08953909255", ",", "0.0522241619", ",", "0.18050109885", ",", "0.18858431815", ",", "0.18666205525", ",", "0.08725452995", ",", "0.0735307830667", ",", "0.0708232694", ",", "0.0841329482", ",", "-", "0.16555406745", ",", "0", ",", "0.0210337686", ",", "-", "0.3858566308", ",", "0", ",", "0", ",", "-", "0.0709404824", ",", "-", "0.0878816829", ",", "0.1827082343", ",", "0.24406252235", ",", "-", "0.196658133733", ",", "-", "0.4769129864", ",", "-", "0.18194224785", ",", "-", "0.18194224785", ",", "0", ",", "0.0359639238", ",", "-", "0.2386615137", ",", "0.1554416231", ",", "0.1554416231", ",", "-", "0.135811889386", ",", "-", "0.037626094", ",", "0.1341544678", ",", "0.1356922097", ",", "0.1318645644", ",", "0.0020869617", ",", "0.0014666455", ",", "0.0057642303", ",", "0.0057352005", ",", "-", "0.4709303938", ",", "-", "0.4518415753", ",", "-", "0.00644357515", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.05172770885", ",", "0.05172770885", ",", "0.05172770885", ",", "-", "0.1727504751", ",", "0", ",", "-", "0.1328122149", ",", "-", "0.137922135267", ",", "-", "0.141975268", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.05168602745", ",", "-", "0.2818092882", ",", "-", "0.1917045586", ",", "-", "0.185151991", ",", "-", "0.185151991", ",", "-", "0.47505092975", ",", "0", ",", "0", ",", "-", "0.4407679536", ",", "-", "0.4389623661", ",", "-", "0.4298360875", ",", "-", "0.44163320615", ",", "-", "0.382506573733", ",", "-", "0.372043433", ",", "-", "0.3802783431", ",", "-", "0.3566833113", ",", "-", "0.3566833113", ",", "-", "0.3605489358", ",", "-", "0.3605489358", ",", "-", "0.3605489358", ",", "-", "0.3605489358", ",", "-", "0.35133874525", ",", "-", "0.29668212385", ",", "-", "0.2335367428", ",", "-", "0.0830918586", ",", "-", "0.08301494835", ",", "0", ",", "0", ",", "-", "0.31376806035", ",", "-", "0.1928075926", ",", "0", ",", "-", "0.0286056079", ",", "-", "0.04310981205", ",", "-", "0.0482682815", ",", "-", "0.0500117085", ",", "0.0789096485", ",", "0.0175222051667", ",", "0.0243129689", ",", "0.01682396765", ",", "0.0192519698", ",", "0.0118810419", ",", "0.0335828104", ",", "0.0257525911", ",", "0.0229621463", ",", "0.0289650992333", ",", "0.0336804584333", ",", "0.02221853", ",", "0.04868932575", ",", "-", "0.0172099832", ",", "-", "0.12234174175", ",", "0", ",", "-", "0.1346058854", ",", "-", "0.1381101839", ",", "-", "0.056821174525", ",", "0", ",", "-", "0.191097276125", ",", "-", "0.1239471908", ",", "-", "0.1300685049", ",", "-", "0.17341588475", ",", "-", "0.08355977435", ",", "0", ",", "0", ",", "0", ",", "0.08488544935", ",", "0.08192840542", ",", "0.1114899404", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mill", "Ridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Miller", "House\"", ",", "\"Millers", "Pond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Minerva", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Miramar", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Mitcham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mitre", "Bridge\"", ",", "\"Mitre", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Molash", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mollison", "Way\"", ",", "\"\"", ",", "\"Mondial", "Way\"", ",", "\"\"", ",", "\"Mongers", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Monkhams", "Inn\"", ",", "\"\"", ",", "\"\"", ",", "\"Monks", "Avenue\"", ",", "\"\"", ",", "\"Monks", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Monsell", "Road\"", ",", "\"Monson", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Montana", "Road\"", ",", "\"\"", ",", "\"Montebello\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Monument\"", ",", "\"\"", ",", "\"Moor", "Bridge\"", ",", "\"Moor", "Park\"", ",", "\"Moores", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Moorgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mora", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Morden\"", ",", "\"\"", ",", "\"Morden", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"Morden", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"Morden", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Morden", "South\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Morford", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Morgans", "Walk\"", ",", "\"\"", ",", "\"Morland", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Morley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mortlake\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Morton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Motspur", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"Mottingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mount", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mountview\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mudchute\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mulkern", "Road\"", ",", "\"\"", ",", "\"Munday", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Murray", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mutton", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mymms", "Drive\"", ",", "\"\"", ",", "\"Myrtle", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Napier", "Place\"", ",", "\"Napier", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Neasden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Neats", "Acre\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Nelmes", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Neptune", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Netley", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"Netley", "Road\"", ",", "\"\"", ",", "\"Nevill", "Way\"", ",", "\"\"", ",", "\"Neville", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"New", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"New", "Eltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"New", "Malden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"New", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"New", "Wanstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Newbury", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Nicholl", "Road\"", ",", "\"\"", ",", "\"Nile", "Terrace\"", ",", "\"Nimrod", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Nobel", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norbiton\"", ",", "\"\"", ",", "\"Norbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norbury", "Hill\"", ",", "\"Norfolk", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norman", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norrice", "Lea\"", ",", "\"North", "Acre\"", ",", "\"North", "Acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"North", "Ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"North", "Harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"North", "Sheen\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"North", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Northfields\"", ",", "\"\"", ",", "\"Northfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Northiam\"", ",", "\"Northolt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Northover\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Northwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norwich", "Road\"", ",", "\"\"", ",", "\"Norwich", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Norwood", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Nugent", "Road\"", ",", "\"\"", ",", "\"Nunhead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Nutter", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Oak", "Avenue\"", ",", "\"Oak", "Bank\"", ",", "\"\"", ",", "\"\"", ",", "\"Oak", "Gardens\"", ",", "\"\"", ",", "\"\"", ",", "\"Oak", "Lane\"", ",", "\"\"", ",", "\"Oak", "Road\"", ",", "\"\"", ",", "\"Oak", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oaken", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Oakfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oakhill", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oaks", "Avenue\"", ",", "\"\"", ",", "\"Oaks", "Lane\"", ",", "\"Oaks", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Oakwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ockendon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Odeon", "Parade\"", ",", "\"Offord", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Old", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Old", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Olden", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Olive", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Olympic", "Way\"", ",", "\"Ommaney", "Road\"", ",", "\"Ondine", "Road\"", ",", "\"Onega", "Way\"", ",", "\"Onslow", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Openview\"", ",", "\"Orange", "Court\"", ",", "\"Orange", "Tree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Orchard", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oriel", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Orme", "Square\"", ",", "\"\"", ",", "\"Ormond", "Drive\"", ",", "\"\"", ",", "\"Orpington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Orwell", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ossian", "Road\"", ",", "\"\"", ",", "\"Osterley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oval\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Overton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Oxlea", "Meadow\"", ",", "\"Oxleas", "Wood\"", ",", "\"Oxleay", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Oxo", "Tower\"", ",", "\"Oxshott\"", ",", "\"Oxshott", "Road\"", ",", "\"Oxted", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Paddington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Paddock", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Page", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"Pages", "Lane\"", ",", "\"Paget", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Palace", "Court\"", ",", "\"\"", ",", "\"Palace", "Gate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pallet", "Way\"", ",", "\"Palm", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pams", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Parish", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Park", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Park", "Gate\"", ",", "\"Park", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Park", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Park", "Lawn\"", ",", "\"\"", ",", "\"Park", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Park", "Royal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Parkers", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Parklands\"", ",", "\"\"", ",", "\"\"", ",", "\"Parkmead\"", ",", "\"\"", ",", "\"Parkside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Parkway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Parnell", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Patmos", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pawsons", "Road\"", ",", "\"Peace", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"Peak", "Hill\"", ",", "\"Peall", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Peckham", "Road\"", ",", "\"Peckham", "Rye\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Peel", "Grove\"", ",", "\"Peel", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Pelham", "Road\"", ",", "\"\"", ",", "\"Pellatt", "Road\"", ",", "\"Pelton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Penge", "East\"", ",", "\"Penge", "Lane\"", ",", "\"Penge", "Road\"", ",", "\"Penge", "West\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Penrose", "Hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pentlow", "Way\"", ",", "\"Penton", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pepper", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Percy", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Percy", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Perivale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Perry", "Lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Perryn", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Peter", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Petergate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Petleys\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Petts", "Wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Philip", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pield", "Heath\"", ",", "\"\"", ",", "\"Pier", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pimlico\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pine", "Coombe\"", ",", "\"Pine", "Gardens\"", ",", "\"Pine", "Grove\"", ",", "\"Pine", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pinner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pinner", "View\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pixton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Plaistow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Plassy", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Plumstead\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mill", "ridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"miller", "house\"", ",", "\"millers", "pond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"minerva", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"miramar", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"mitcham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mitre", "bridge\"", ",", "\"mitre", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"molash", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mollison", "way\"", ",", "\"\"", ",", "\"mondial", "way\"", ",", "\"\"", ",", "\"mongers", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"monkhams", "inn\"", ",", "\"\"", ",", "\"\"", ",", "\"monks", "avenue\"", ",", "\"\"", ",", "\"monks", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"monsell", "road\"", ",", "\"monson", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"montana", "road\"", ",", "\"\"", ",", "\"montebello\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"monument\"", ",", "\"\"", ",", "\"moor", "bridge\"", ",", "\"moor", "park\"", ",", "\"moores", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"moorgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mora", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"morden\"", ",", "\"\"", ",", "\"morden", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"morden", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"morden", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"morden", "south\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"morford", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"morgans", "walk\"", ",", "\"\"", ",", "\"morland", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"morley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mortlake\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"morton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"motspur", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"mottingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mount", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mountview\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mudchute\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mulkern", "road\"", ",", "\"\"", ",", "\"munday", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"murray", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mutton", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mymms", "drive\"", ",", "\"\"", ",", "\"myrtle", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"napier", "place\"", ",", "\"napier", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"neasden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"neats", "acre\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"nelmes", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"neptune", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"netley", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"netley", "road\"", ",", "\"\"", ",", "\"nevill", "way\"", ",", "\"\"", ",", "\"neville", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"new", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"new", "eltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"new", "malden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"new", "road\"", ",", "\"new", "road", "e1", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"new", "wanstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"newbury", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"nicholl", "road\"", ",", "\"\"", ",", "\"nile", "terrace\"", ",", "\"nimrod", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"nobel", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norbiton\"", ",", "\"\"", ",", "\"norbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norbury", "hill\"", ",", "\"norfolk", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norman", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norrice", "lea\"", ",", "\"north", "acre\"", ",", "\"north", "acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"north", "ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"north", "harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"north", "sheen\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"north", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"northfields\"", ",", "\"\"", ",", "\"northfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"northiam\"", ",", "\"northolt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"northover\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"northwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norwich", "road\"", ",", "\"\"", ",", "\"norwich", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"norwood", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"nugent", "road\"", ",", "\"\"", ",", "\"nunhead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"nutter", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"oak", "avenue\"", ",", "\"oak", "bank\"", ",", "\"\"", ",", "\"\"", ",", "\"oak", "gardens\"", ",", "\"\"", ",", "\"\"", ",", "\"oak", "lane\"", ",", "\"\"", ",", "\"oak", "road\"", ",", "\"\"", ",", "\"oak", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oaken", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"oakfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oakhill", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oaks", "avenue\"", ",", "\"\"", ",", "\"oaks", "lane\"", ",", "\"oaks", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"oakwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ockendon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"odeon", "parade\"", ",", "\"offord", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"old", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"old", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"olden", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"olive", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"olympic", "way\"", ",", "\"ommaney", "road\"", ",", "\"ondine", "road\"", ",", "\"onega", "way\"", ",", "\"onslow", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"openview\"", ",", "\"orange", "court\"", ",", "\"orange", "tree\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"orchard", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oriel", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"orme", "square\"", ",", "\"\"", ",", "\"ormond", "drive\"", ",", "\"\"", ",", "\"orpington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"orwell", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ossian", "road\"", ",", "\"\"", ",", "\"osterley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oval\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"overton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"oxlea", "meadow\"", ",", "\"oxleas", "wood\"", ",", "\"oxleay", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"oxo", "tower\"", ",", "\"oxshott\"", ",", "\"oxshott", "road\"", ",", "\"oxted", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"paddington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"paddock", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"page", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"pages", "lane\"", ",", "\"paget", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"palace", "court\"", ",", "\"\"", ",", "\"palace", "gate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pallet", "way\"", ",", "\"palm", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pams", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"parish", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"park", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"park", "gate\"", ",", "\"park", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"park", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"park", "lawn\"", ",", "\"\"", ",", "\"park", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"park", "royal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"parkers", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"parklands\"", ",", "\"\"", ",", "\"\"", ",", "\"parkmead\"", ",", "\"\"", ",", "\"parkside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"parkway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"parnell", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"patmos", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pawsons", "road\"", ",", "\"peace", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"peak", "hill\"", ",", "\"peall", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"peckham", "road\"", ",", "\"peckham", "rye\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"peel", "grove\"", ",", "\"peel", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"pelham", "road\"", ",", "\"\"", ",", "\"pellatt", "road\"", ",", "\"pelton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"penge", "east\"", ",", "\"penge", "lane\"", ",", "\"penge", "road\"", ",", "\"penge", "west\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"penrose", "hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pentlow", "way\"", ",", "\"penton", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pepper", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"percy", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"percy", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"perivale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"perry", "lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"perryn", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"peter", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"petergate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"petleys\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"petts", "wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"philip", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pield", "heath\"", ",", "\"\"", ",", "\"pier", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pimlico\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pine", "coombe\"", ",", "\"pine", "gardens\"", ",", "\"pine", "grove\"", ",", "\"pine", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pinner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pinner", "view\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pixton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"plaistow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"plassy", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"plumstead\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,563
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London10", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"THB:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TBE:N\"", ",", "\"TBY:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TCR:CN\"", ",", "\"TTH:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TOT:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"THL:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TPK:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TGR:DP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TPL:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"UPM:D\"", ",", "\"UPB:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"UPY:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"UPK:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"UXB:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"VUX:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"VIC:DcV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WAL:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WAN:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WST:NV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WAR:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WLO:BJNW\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WAT:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WEM:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WPK:JM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WAC:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WBT:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WFY:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WHM:DHJ\"", ",", "null", ",", "\"WHD:J\"", ",", "null", ",", "null", ",", "null", ",", "\"WHR:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WKN:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WRP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WMS:DcJ\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WCT:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WCL:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WLG:J\"", ",", "null", ",", "null", ",", "\"WJN:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.4194036417", ",", "51.3747243454", ",", "51.4623626891", ",", "51.4983132894", ",", "0", ",", "51.3976821484", ",", "0", ",", "0", ",", "51.622552087", ",", "51.4919536346", ",", "51.6538337521", ",", "51.5812753232", ",", "51.618172902", ",", "51.628820662", ",", "51.5812753232", ",", "51.6538329611", ",", "51.3971911401", ",", "51.4539277898", ",", "51.4421864168", ",", "51.5879626414", ",", "0", ",", "51.4232052513", ",", "51.5432576284", ",", "51.5984250059", ",", "51.5980322329", ",", "51.384174312", ",", "51.5131999513", ",", "51.3953898023", ",", "0", ",", "51.4808015575", ",", "0", ",", "51.3375778126", ",", "51.5690927198", ",", "0", ",", "51.4801353353", ",", "51.5697177887", ",", "51.4835235049", ",", "0", ",", "0", ",", "51.4814265589", ",", "51.4627670158", ",", "51.4949714031", ",", "0", ",", "0", ",", "51.3889032615", ",", "51.409423884", ",", "51.4291309202", ",", "51.509081066", ",", "51.4085237478", ",", "0", ",", "0", ",", "51.4579944307", ",", "51.5629735396", ",", "51.5671153265", ",", "51.4114392792", ",", "51.4836317371", ",", "0", ",", "51.6250472773", ",", "51.4596686851", ",", "51.4431384479", ",", "51.3479720076", ",", "51.348520538", ",", "51.347181247", ",", "51.5941495566", ",", "0", ",", "51.3656812453", ",", "51.3656812453", ",", "51.5862332723", ",", "51.3962783348", ",", "51.4021987105", ",", "51.4474257435", ",", "51.6194742053", ",", "51.589279836", ",", "0", ",", "0", ",", "51.5436601795", ",", "51.5371319549", ",", "51.5375403712", ",", "51.5209805893", ",", "51.5195128885", ",", "51.5209805893", ",", "51.4514961201", ",", "51.3859098664", ",", "51.3859098664", ",", "51.3869009102", ",", "51.3861567393", ",", "51.3859098664", ",", "51.4158449741", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5662378416", ",", "51.3671975852", ",", "51.4185405729", ",", "51.4190872874", ",", "51.4142339472", ",", "51.5688240555", ",", "51.5267855089", ",", "51.5066423951", ",", "51.5558185897", ",", "51.4597732303", ",", "0", ",", "51.4463391423", ",", "51.4908230713", ",", "51.4908230713", ",", "51.4639709728", ",", "0", ",", "0", ",", "51.4808642618", ",", "51.4740219356", ",", "51.4513032173", ",", "0", ",", "0", ",", "51.4775168115", ",", "0", ",", "0", ",", "51.4541213546", ",", "51.5481846779", ",", "51.4762074178", ",", "51.5652296313", ",", "51.3790777546", ",", "51.3780987862", ",", "0", ",", "51.4028549562", ",", "0", ",", "51.3984601681", ",", "51.3992672873", ",", "51.3927283226", ",", "51.3931638455", ",", "51.3974327054", ",", "51.654067212", ",", "51.3839562608", ",", "51.4649237187", ",", "51.4652033676", ",", "51.3839562608", ",", "51.5834136126", ",", "0", ",", "0", ",", "51.5468849847", ",", "51.53480329", ",", "0", ",", "51.3367865034", ",", "51.5909663525", ",", "0", ",", "51.5966530152", ",", "0", ",", "0", ",", "51.5341582311", ",", "0", ",", "51.423638592", ",", "51.5139177608", ",", "0", ",", "51.5252403291", ",", "0", ",", "0", ",", "51.4033390341", ",", "51.5274245455", ",", "0", ",", "0", ",", "51.4527197527", ",", "51.5484174218", ",", "51.5714248264", ",", "51.4417027291", ",", "51.4409897466", ",", "0", ",", "0", ",", "0", ",", "51.5349124271", ",", "51.6110913001", ",", "51.4378386284", ",", "51.449209379", ",", "51.4469462045", ",", "51.4517060824", ",", "0", ",", "51.3737967397", ",", "51.4255567137", ",", "51.4107158958", ",", "0", ",", "51.5299605653", ",", "0", ",", "0", ",", "51.3673372313", ",", "0", ",", "51.4313287099", ",", "0", ",", "51.4407303336", ",", "0", ",", "51.4407303336", ",", "51.363395137", ",", "51.3484188391", ",", "51.5715644102", ",", "51.6185975789", ",", "51.4781825743", ",", "51.3637437747", ",", "51.6106538307", ",", "51.3771985179", ",", "51.3728382154", ",", "51.4655869116", ",", "0", ",", "0", ",", "0", ",", "51.6039609506", ",", "51.67151286", ",", "51.5033281696", ",", "0", ",", "0", ",", "51.4226250626", ",", "51.509324962", ",", "0", ",", "51.3053967108", ",", "51.3034395962", ",", "51.5166246302", ",", "0", ",", "51.5686282539", ",", "51.5636251702", ",", "51.5556341324", ",", "51.5569094669", ",", "51.5342120979", ",", "51.37778078", ",", "51.3799066604", ",", "51.3794561058", ",", "51.3803843585", ",", "51.3834726497", ",", "51.4926423734", ",", "51.5957964631", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3832946454", ",", "51.4595193214", ",", "0", ",", "51.4203157086", ",", "51.4312368862", ",", "51.4306990601", ",", "51.4353782015", ",", "51.4356125768", ",", "51.427540346", ",", "51.4272343681", ",", "51.4248226651", ",", "51.5028528099", ",", "0", ",", "51.472094484", ",", "51.5630291497", ",", "0", ",", "0", ",", "51.5467471822", ",", "51.5489487338", ",", "51.3948929896", ",", "51.4469748021", ",", "51.4450885938", ",", "51.4469748021", ",", "51.6168100082", ",", "51.6167083005", ",", "51.5229450958", ",", "51.5675934437", ",", "0", ",", "51.4755644483", ",", "51.6127105414", ",", "51.6127105414", ",", "51.5885202186", ",", "51.6049760178", ",", "51.5164190221", ",", "51.5883529692", ",", "51.5886022547", ",", "51.5868099448", ",", "51.5857247806", ",", "51.5857247806", ",", "51.6062155396", ",", "51.6036531559", ",", "51.5823172666", ",", "51.5829513491", ",", "51.5879683354", ",", "51.5908248473", ",", "51.6019117705", ",", "51.5857247806", ",", "51.6301678144", ",", "51.6739166673", ",", "51.6336073101", ",", "51.6301656548", ",", "0", ",", "51.5019093669", ",", "51.502520095", ",", "51.4978953935", ",", "51.5035744195", ",", "51.5104139733", ",", "51.5100216171", ",", "51.5095853077", ",", "0", ",", "51.4576219918", ",", "51.3813241178", ",", "51.443198664", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5127994874", ",", "51.4501507907", ",", "51.4555429245", ",", "51.4499971227", ",", "51.4739782656", ",", "51.4672842837", ",", "51.5342534886", ",", "51.5823206809", ",", "51.3892123873", ",", "51.6060214314", ",", "51.4863828811", ",", "51.5186985102", ",", "51.4035901367", ",", "51.483091356", ",", "51.4399501154", ",", "51.4839016362", ",", "51.5076745545", ",", "51.5082638998", ",", "0", ",", "51.6355591367", ",", "51.4667163961", ",", "0", ",", "0", ",", "0", ",", "51.4167201889", ",", "51.4759949456", ",", "51.4759949456", ",", "51.4759949456", ",", "51.4671860982", ",", "51.5323222015", ",", "51.5323222015", ",", "51.538352947", ",", "51.5126489144", ",", "51.4259304592", ",", "0", ",", "0", ",", "51.6450348052", ",", "0", ",", "0", ",", "51.6029810062", ",", "51.6029810062", ",", "51.6029810062", ",", "51.4621278729", ",", "51.4161817065", ",", "0", ",", "51.6548501013", ",", "51.6493871924", ",", "0", ",", "51.4625484779", ",", "51.5751581469", ",", "51.4601875168", ",", "0", ",", "0", ",", "0", ",", "51.6469569475", ",", "51.5500735898", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6414411374", ",", "51.5908992977", ",", "51.64026658", ",", "51.4617222313", ",", "51.4817550109", ",", "51.6055009567", ",", "51.5126983605", ",", "51.4238751197", ",", "51.4850519612", ",", "51.4986784618", ",", "51.5108634257", ",", "0", ",", "0", ",", "51.5474937636", ",", "0", ",", "0", ",", "51.501495867", ",", "51.5892278195", ",", "0", ",", "51.3594650916", ",", "51.3622772112", ",", "51.3679851794", ",", "51.3718588068", ",", "51.3656178955", ",", "51.5343918896", ",", "51.6062457683", ",", "51.4292854726", ",", "51.3863424791", ",", "51.5376263533", ",", "51.4789016949", ",", "51.5333850747", ",", "51.5992951139", ",", "51.5357339693", ",", "51.3866408246", ",", "51.3866408246", ",", "51.4567319286", ",", "51.5568262315", ",", "51.5581339199", ",", "51.5591503361", ",", "51.5567908398", ",", "0", ",", "51.4400942833", ",", "51.4413899152", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4904525772", ",", "51.6075878262", ",", "51.4902815847", ",", "0", ",", "51.6711892337", ",", "51.6711892337", ",", "51.3773701674", ",", "51.5350572594", ",", "51.5965930225", ",", "0", ",", "51.5179210092", ",", "51.4465962908", ",", "51.4502225638", ",", "51.4952511321", ",", "51.4924767955", ",", "51.4924767955", ",", "51.4924767955", ",", "51.4600666645", ",", "51.5901498232", ",", "39.0900935153", ",", "51.4770883354", ",", "51.4894178912", ",", "51.3857949785", ",", "0", ",", "51.5229065481", ",", "51.3219049706", ",", "51.4373914252", ",", "51.4441577951", ",", "51.4499580709", ",", "51.4503030419", ",", "51.4366599001", ",", "51.4602518205", ",", "51.4499580709", ",", "51.4590425021", ",", "51.4422726122", ",", "51.456711325", ",", "51.4494222977", ",", "51.4460312021", ",", "51.447949989", ",", "51.3560026764", ",", "51.4953763364", ",", "51.5346732602", ",", "51.5346732602", ",", "51.5900905834", ",", "51.5086434895", ",", "51.5092456649", ",", "0", ",", "0", ",", "0", ",", "51.4913234639", ",", "0", ",", "51.4079405993", ",", "51.4854324656", ",", "51.4004806234", ",", "0", ",", "51.4776400361", ",", "51.4623289534", ",", "51.4623289534", ",", "0", ",", "0", ",", "51.5266784652", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5435496034", ",", "0", ",", "0", ",", "51.616228404", ",", "51.4816315029", ",", "0", ",", "0", ",", "51.4663590631", ",", "51.4435239066", ",", "51.4543856571", ",", "51.4534071981", ",", "51.4442455973", ",", "51.647754867", ",", "51.5400754741", ",", "51.4690711049", ",", "51.4723061585", ",", "51.6530786143", ",", "51.5032686921", ",", "51.5990821841", ",", "51.6121003431", ",", "51.4518390002", ",", "51.4478517926", ",", "51.5238931224", ",", "51.5238931224", ",", "0", ",", "51.6133229824", ",", "0", ",", "51.4921974425", ",", "51.6180193284", ",", "0", ",", "51.4467064516", ",", "51.457043161", ",", "51.3603223839", ",", "51.4036663498", ",", "51.5810697488", ",", "51.558417387", ",", "51.5589873143", ",", "51.5549991958", ",", "51.570673209", ",", "51.5567136143", ",", "51.5670001729", ",", "51.557680678", ",", "51.5381393041", ",", "51.5453933923", ",", "51.5035852324", ",", "51.412435239", ",", "51.5815856376", ",", "51.5815856376", ",", "51.5659335521", ",", "51.5627735956", ",", "51.5596662534", ",", "51.3881533563", ",", "0", ",", "51.5638492562", ",", "51.5108921133", ",", "51.5489931964", ",", "51.4866291844", ",", "51.5267348974", ",", "51.3738337645", ",", "51.5445826483", ",", "51.4796059734", ",", "51.4388775492", ",", "51.4388775492", ",", "51.4449649423", ",", "0", ",", "0", ",", "51.4733611055", ",", "51.4631631008", ",", "51.4631631008", ",", "51.4631631008", ",", "51.5270149254", ",", "51.3337147006", ",", "51.6025948004", ",", "0", ",", "51.5833561914", ",", "51.5369712526", ",", "0", ",", "0", ",", "51.5354472683", ",", "51.5302831082", ",", "51.5307940008", ",", "51.4513176585", ",", "51.4494891448", ",", "51.4583388415", ",", "0", ",", "0", ",", "51.5114280041", ",", "0", ",", "51.5502201491", ",", "51.5320348461", ",", "0", ",", "51.5468909278", ",", "51.5486365138", ",", "51.5223951789", ",", "51.5372592672", ",", "51.547846096", ",", "51.5468909278", ",", "51.4223034391", ",", "51.5066320256", ",", "51.611455677", ",", "51.5067105242", ",", "51.6096463786", ",", "51.4407507039", ",", "51.3990420425", ",", "51.5062081669", ",", "51.6275053763", ",", "51.434962984", ",", "51.4683693401", ",", "51.5419357814", ",", "51.5618216476", ",", "51.4382716779", ",", "51.5439149107", ",", "51.5723660236", ",", "51.5673659033", ",", "51.5578509477", ",", "51.5928963003", ",", "0", ",", "51.5859884469", ",", "0", ",", "51.4332967155", ",", "51.427020823", ",", "51.4041186421", ",", "51.4233713783", ",", "51.4068576729", ",", "51.6272174298", ",", "51.6289826869", ",", "51.4715861131", ",", "0", ",", "51.4862507804", ",", "51.4787513054", ",", "51.4769161502", ",", "51.4769623959", ",", "51.4389219213", ",", "51.5119593822", ",", "51.452494606", ",", "51.4289051924", ",", "0", ",", "51.4924448092", ",", "51.4584792884", ",", "51.5753324926", ",", "51.4782212472", ",", "51.4776309439", ",", "51.4771797459", ",", "51.5505548506", ",", "51.4853446523", ",", "51.4896469123", ",", "51.4883520015", ",", "51.4962496043", ",", "51.4873559864", ",", "51.4836405901", ",", "51.4182363351", ",", "51.5755908065", ",", "51.6435725914", ",", "51.4416901052", ",", "0", ",", "0", ",", "51.5149243029", ",", "51.4855699353", ",", "51.6045066414", ",", "0", ",", "51.4392982781", ",", "51.4688935188", ",", "0", ",", "51.409213122", ",", "51.4765547735", ",", "51.4765547735", ",", "51.5374865652", ",", "51.4101367298", ",", "51.5251802588", ",", "51.565274437", ",", "51.5653958793", ",", "51.4152361657", ",", "51.5653958793", ",", "51.5397895017", ",", "51.3717383522", ",", "51.578314002", ",", "51.5350584375", ",", "51.5314604445", ",", "51.4959242114", ",", "51.4959242114", ",", "51.4962921066", ",", "51.49605697", ",", "51.4926982805", ",", "51.4934345348", ",", "51.4919136564", ",", "51.5102873259", ",", "51.4803651063", ",", "51.5121666234", ",", "51.4959242114", ",", "51.5373968897", ",", "51.5340269648", ",", "51.5480845731", ",", "51.3896392094", ",", "51.4666580393", ",", "51.4798333946", ",", "51.6476722425", ",", "51.5311720209", ",", "51.5948891235", ",", "51.5600165414", ",", "51.544386948", ",", "51.6002997301", ",", "51.571378128", ",", "51.421673661", ",", "51.6150369766", ",", "51.4964487129", ",", "51.4971360813", ",", "51.4826783223", ",", "51.4971360813", ",", "51.4961948422", ",", "51.4978846512", ",", "0", ",", "0", ",", "51.4678241036", ",", "51.4543176729", ",", "51.3079515044", ",", "51.6466792347", ",", "51.6466792347", ",", "51.39612965", ",", "51.5775992042", ",", "51.5769261445", ",", "51.5574229808", ",", "51.5363696092", ",", "51.5644585117", ",", "51.5474362117", ",", "51.4520578174", ",", "51.3808440284", ",", "51.4897633642", ",", "51.3528443912", ",", "51.5449202588", ",", "51.6025092912", ",", "51.5994507738", ",", "0", ",", "51.4543788902", ",", "51.5230134386", ",", "0", ",", "51.5804736902", ",", "51.3441231947", ",", "51.4866567348", ",", "51.3019744828", ",", "51.3659929577", ",", "51.3777789677", ",", "51.3777789677", ",", "51.3714960425", ",", "51.3725362723", ",", "51.3666451762", ",", "51.6009045323", ",", "51.6010663597", ",", "0", ",", "51.6714708046", ",", "51.4793689377", ",", "0", ",", "0", ",", "51.4843683352", ",", "0", ",", "51.5838770679", ",", "0", ",", "51.5311109984", ",", "51.5580524564", ",", "51.573591128", ",", "51.3810737864", ",", "51.3858469682", ",", "51.3869998369", ",", "0", ",", "51.3815755329", ",", "51.4406608067", ",", "51.4367029483", ",", "51.4667805471", ",", "51.3614281512", ",", "51.522379125", ",", "51.5205099428", ",", "51.63898685", ",", "0", ",", "0", ",", "51.565525787", ",", "0", ",", "0", ",", "51.468464166", ",", "51.3608480348", ",", "51.3687828024", ",", "51.3589834926", ",", "51.3572332056", ",", "51.4657726729", ",", "51.5176861568", ",", "0", ",", "0", ",", "51.481437999", ",", "51.5613009362", ",", "0", ",", "51.3768175209", ",", "51.4210776768", ",", "51.5370183678", ",", "51.4902077783", ",", "0", ",", "0", ",", "51.4060120004", ",", "51.3438461065", ",", "51.4549342839", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5020718396", ",", "0", ",", "0", ",", "51.5904100547", ",", "51.5904100547", ",", "51.5899826432", ",", "51.6006219492", ",", "51.5008189551", ",", "51.3823343673", ",", "51.6168621671", ",", "51.6174666733", ",", "51.6310771357", ",", "51.5999487998", ",", "51.5829803256", ",", "51.5838149511", ",", "51.5818990736", ",", "51.5836129191", ",", "51.5855060901", ",", "51.5898527724", ",", "51.5836129191", ",", "51.6030669701", ",", "51.5978776432", ",", "51.602369053", ",", "51.3988170185", ",", "0", ",", "51.5209359027", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4457549796", ",", "0", ",", "51.373166632", ",", "51.373166632", ",", "51.3940853522", ",", "51.4846622238", ",", "51.4670888538", ",", "51.4846622238", ",", "51.4461547387", ",", "51.4572085791", ",", "51.4579952758", ",", "51.4569561272", ",", "51.4846622238", ",", "51.4700418574", ",", "51.4657054756", ",", "51.4607191269", ",", "51.457413948", ",", "51.4846622238", ",", "51.4564163646", ",", "51.5700919735", ",", "51.6019891694", ",", "51.5999176464", ",", "51.5754612076", ",", "51.5573562627", ",", "51.5767749083", ",", "51.5730480174", ",", "51.5512450335", ",", "51.5588242816", ",", "51.578164559", ",", "51.4066333633", ",", "51.5044673328", ",", "51.5060010861", ",", "51.5053993967", ",", "0", ",", "51.5368701026", ",", "51.5728922385", ",", "51.5159563134", ",", "51.5701883736", ",", "51.5704759131", ",", "51.5704759131", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5776677646", ",", "0", ",", "51.5979842847", ",", "51.363586541", ",", "51.4749711166", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4104168172", ",", "51.4089748049", ",", "51.4910904962", ",", "51.3775528013", ",", "51.5314076523", ",", "51.4130870797", ",", "51.4745923966", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4123157044", ",", "51.5508682699", ",", "51.3825691791", ",", "51.3818966554", ",", "0", ",", "0", ",", "0", ",", "51.6306720642", ",", "51.358666037", ",", "51.4538592513", ",", "51.3584418473", ",", "51.4249911393", ",", "51.5599822399", ",", "51.5244504106", ",", "51.5256945381", ",", "51.4822459503", ",", "0", ",", "0", ",", "51.4924743684", ",", "51.5353052855", ",", "51.5236896712", ",", "51.5199795565", ",", "51.5812860691", ",", "51.4975470487", ",", "51.5659810444", ",", "51.4388109412", ",", "0", ",", "0", ",", "51.3256150947", ",", "51.608982822", ",", "51.3256150947", ",", "51.5062720478", ",", "51.6483858655", ",", "51.4809671217", ",", "51.4931833324", ",", "51.5374547758", ",", "51.5374547758", ",", "51.4807955333", ",", "51.4727006944", ",", "0", ",", "51.4415711501", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5038704194", ",", "51.5065023594", ",", "51.5038704194", ",", "51.5053998106", ",", "51.5053998106", ",", "51.5053998106", ",", "51.5042776011", ",", "51.5036712169", ",", "51.5038695523", ",", "51.5038695523", ",", "51.5038695523", ",", "0", ",", "51.56940692", ",", "51.568740826", ",", "51.5671650889", ",", "51.5671650889", ",", "51.5671650889", ",", "51.4860635079", ",", "51.4070545088", ",", "0", ",", "51.4528205094", ",", "51.5372334397", ",", "51.4297438521", ",", "51.5051616956", ",", "0", ",", "51.5961106248", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6107773357", ",", "51.6107773357", ",", "51.6107773357", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.603697992", ",", "51.6012866704", ",", "51.4548135631", ",", "51.4548135631", ",", "51.4548135631", ",", "51.424932411", ",", "0", ",", "51.5144432174", ",", "51.3924342136", ",", "51.5599956414", ",", "0", ",", "51.5199086746", ",", "0", ",", "51.4781505456", ",", "51.5526894424", ",", "51.5282354812", ",", "51.5909476473", ",", "51.5909476473", ",", "51.4391288833", ",", "0", ",", "51.5349024748", ",", "51.6020707594", ",", "51.4802841088", ",", "51.5335345563", ",", "51.4646841403", ",", "51.6138351853", ",", "0", ",", "51.6032138918", ",", "51.596613239", ",", "51.4565991366", ",", "51.5249417646", ",", "51.5302721309", ",", "51.454213138", ",", "0", ",", "51.562335624", ",", "0", ",", "0", ",", "51.4546452575", ",", "51.4591490913", ",", "51.4591490913", ",", "51.6153216913", ",", "51.5300816343", ",", "0", ",", "51.3823630841", ",", "51.3783988083", ",", "0", ",", "0", ",", "0", ",", "51.4278151279", ",", "0", ",", "51.4686980749", ",", "51.4666244162", ",", "51.4576519041", ",", "51.5405870496", ",", "51.5411433782", ",", "51.5400824287", ",", "51.5433328125", ",", "51.5340312093", ",", "51.5340312093", ",", "51.3634509441", ",", "51.509336372", ",", "51.4907981238", ",", "51.3760046899", ",", "0", ",", "51.5700372241", ",", "51.4649875856", ",", "51.4621668012", ",", "51.4621419939", ",", "51.4679008543", ",", "51.4627415997", ",", "0", ",", "51.3714639708", ",", "51.4499498766", ",", "51.4021519098", ",", "51.4698216231", ",", "51.4651805718", ",", "51.6407923233", ",", "51.4288979636", ",", "51.488998824", ",", "51.4900163097", ",", "0", ",", "51.4477887558", ",", "0", ",", "51.5235462046", ",", "51.431688104", ",", "51.5360658252", ",", "51.5021263149", ",", "51.5021263149", ",", "51.6501897006", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5587877422", ",", "51.5521388667", ",", "51.5540493574", ",", "51.5619640372", ",", "51.559429994", ",", "51.5496877292", ",", "51.5635262468", ",", "51.5701594318", ",", "51.5551478897", ",", "51.5536360315", ",", "0", ",", "0", ",", "51.5260167211", ",", "51.4542284795", ",", "51.5066019897", ",", "51.5062881167", ",", "0", ",", "51.5918997965", ",", "51.3256778809", ",", "51.4960283245", ",", "51.3256778809", ",", "51.5331535389", ",", "51.5715804267", ",", "51.5175923484", ",", "0", ",", "51.3967026254", ",", "51.3929505167", ",", "51.402231157", ",", "51.4876792828", ",", "0", ",", "0", ",", "0", ",", "51.4931667843", ",", "51.4932433269", ",", "51.4839962577", ",", "51.4851734647", ",", "51.3786202683", ",", "51.3787707772", ",", "51.3784823057", ",", "51.3784823057", ",", "51.6055951003", ",", "51.3297527057", ",", "51.5102422755", ",", "51.5036753127", ",", "51.5269074786", ",", "51.352486597", ",", "51.352486597", ",", "51.4409936318", ",", "51.43504956", ",", "51.514185422", ",", "51.5099331215", ",", "51.6307700417", ",", "51.4844896331", ",", "51.5415413822", ",", "51.5980782067", ",", "51.5529704181", ",", "0", ",", "0", ",", "51.609379187", ",", "51.5856120222", ",", "51.5860855477", ",", "51.5879398759", ",", "51.6366387772", ",", "51.5276302076", ",", "51.5389028477", ",", "51.5471745368", ",", "51.5533531428", ",", "51.5484614788", ",", "51.5484614788", ",", "51.5809738921", ",", "51.5779368896", ",", "51.5779368896", ",", "51.5817823892", ",", "0", ",", "51.352412004", ",", "51.4546447654", ",", "51.352412004", ",", "51.4508910511", ",", "51.352412004", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5056196456", ",", "51.4905222336", ",", "51.4880112969", ",", "51.3282770013", ",", "51.3282770013", ",", "0", ",", "0", ",", "51.440823395", ",", "51.532212558", ",", "51.4722337639", ",", "0", ",", "0", ",", "51.5602042299", ",", "51.5124852282", ",", "51.4743810707", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4318768897", ",", "51.4295240342", ",", "51.4377937024", ",", "51.4301585514", ",", "51.4762289756", ",", "51.5353910334", ",", "51.4552815025", ",", "51.5262620007", ",", "51.5698517501", ",", "0", ",", "51.454937383", ",", "51.5028588035", ",", "51.5592653551", ",", "0", ",", "51.5735088814", ",", "51.4070168335", ",", "51.5735088814", ",", "51.3670081709", ",", "51.3663065009", ",", "51.4748709348", ",", "51.3473337028", ",", "51.3806280512", ",", "51.377255257", ",", "51.3715487721", ",", "51.417907939", ",", "0", ",", "51.5509932391", ",", "51.4361440764", ",", "51.5153439319", ",", "51.5209547758", ",", "51.5217994859", ",", "51.4758475188", ",", "51.5477313324", ",", "51.5125998381", ",", "51.5150205597", ",", "51.5172483449", ",", "51.653646967", ",", "51.6548210983", ",", "51.593680819", ",", "51.5982587122", ",", "51.4009392076", ",", "51.5346451086", ",", "0", ",", "0", ",", "51.4859773091", ",", "51.4832626134", ",", "51.556694087", ",", "51.4454465515", ",", "0", ",", "0", ",", "51.4849772502", ",", "0", ",", "51.6213449", ",", "51.6213449", ",", "51.6213449", ",", "51.2928339296", ",", "51.2963201795", ",", "51.3567581633", ",", "51.6213449", ",", "51.6213449", ",", "51.588944869", ",", "51.5138528218", ",", "51.5771528033", ",", "51.5288674774", ",", "51.577549951", ",", "51.4649067233", ",", "51.3605376375", ",", "51.4649067233", ",", "51.640544278", ",", "0", ",", "51.5088138919", ",", "51.5055787879", ",", "51.5088138919", ",", "51.4071057348", ",", "51.4071057348", ",", "0", ",", "0", ",", "51.4601703916", ",", "51.4469824993", ",", "51.457790668", ",", "51.452645752", ",", "51.4586258591", ",", "0", ",", "0", ",", "0", ",", "51.5012527278", ",", "51.4990301108", ",", "51.4968396364", ",", "51.4972917092", ",", "51.6136412053", ",", "51.5023229736", ",", "51.6136412053", ",", "51.5007702037", ",", "51.5817958985", ",", "51.4847123435", ",", "51.4847123435", ",", "51.4847123435", ",", "51.4869223021", ",", "51.460847867", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.580242798", ",", "51.4977066702", ",", "0", ",", "51.4194527953", ",", "51.416170051", ",", "51.4180074757", ",", "51.4180074757", ",", "51.5992828724", ",", "0", ",", "0", ",", "0", ",", "51.5432761312", ",", "51.3975678582", ",", "51.4260865261", ",", "51.4510846127", ",", "51.4578037178", ",", "51.4560028983", ",", "51.5703423316", ",", "0", ",", "0", ",", "51.5388844004", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4728351526", ",", "0", ",", "51.5347583958", ",", "51.602206682", ",", "51.602206682", ",", "51.5610897997", ",", "51.5721655395", ",", "51.602206682", ",", "0", ",", "0", ",", "51.6408937559", ",", "51.4066930867", ",", "51.550283378", ",", "51.4554606418", ",", "0", ",", "51.4038808672", ",", "51.481364355", ",", "0", ",", "51.627147029", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5810327945", ",", "51.5797411879", ",", "51.5810327945", ",", "51.5810790068", ",", "51.5810327945", ",", "0", ",", "51.5327718442", ",", "51.304240636", ",", "51.3780409629", ",", "0", ",", "51.5119057283", ",", "51.5086199727", ",", "51.5147348732", ",", "51.6016338199", ",", "51.6053037744", ",", "51.6057034165", ",", "51.5979304371", ",", "51.6052972768", ",", "51.5979304371", ",", "51.5979304371", ",", "51.5225845938", ",", "0", ",", "0", ",", "51.5328596973", ",", "0", ",", "51.5444712401", ",", "51.3848574874", ",", "0", ",", "51.3186891558", ",", "51.4342359138", ",", "51.4292352469", ",", "51.4303766663", ",", "51.4672122427", ",", "51.6242993656", ",", "51.6264433364", ",", "51.6189965866", ",", "51.5408403853", ",", "51.5061931616", ",", "0", ",", "51.5811287414", ",", "51.3984141468", ",", "51.5191923099", ",", "51.5138875999", ",", "51.5611534872", ",", "51.5112241698", ",", "51.5370295238", ",", "51.3616086784", ",", "51.3764594422", ",", "51.6108258208", ",", "51.6132662402", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6141017755", ",", "51.5365085282", ",", "0", ",", "51.3730755677", ",", "51.597415448", ",", "51.5671968031", ",", "51.5667841435", ",", "0", ",", "0", ",", "51.4583506623", ",", "51.4582251623", ",", "51.5512498503", ",", "51.4516426805", ",", "51.4557891362", ",", "51.4530726815", ",", "51.4495445641", ",", "51.4513335631", ",", "51.4440486631", ",", "51.4493217757", ",", "0", ",", "51.4534823924", ",", "51.4498667147", ",", "51.4460736057", ",", "0", ",", "51.47663092", ",", "51.4018691844", ",", "0", ",", "0", ",", "0", ",", "51.6157690695", ",", "51.4207768883", ",", "51.5387847399", ",", "0", ",", "51.5451800379", ",", "51.6084292765", ",", "0", ",", "51.6042916033", ",", "51.3735062689", ",", "0", ",", "51.4638842887", ",", "51.4690986195", ",", "51.3897215918", ",", "0", ",", "51.5296450372", ",", "51.4065061451", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4959074589", ",", "51.6057311959", ",", "51.5887753086", ",", "51.4434044203", ",", "0", ",", "51.5764324741", ",", "51.6118668989", ",", "51.5235372261", ",", "51.6017401815", ",", "0", ",", "51.6121810191", ",", "51.6124954781", ",", "51.479757653", ",", "51.6112499357", ",", "0", ",", "0", ",", "51.6774811315", ",", "51.5717291372", ",", "51.5730757917", ",", "51.5801586312", ",", "51.5025058606", ",", "51.5119938369", ",", "51.5939400011", ",", "51.5480370021", ",", "51.535715809", ",", "51.5491466447", ",", "51.546997886", ",", "51.5329043793", ",", "51.5321795487", ",", "51.5475832016", ",", "51.5492251431", ",", "51.5414035965", ",", "51.3857173554", ",", "51.4330351252", ",", "51.5591235942", ",", "51.5591235942", ",", "51.6008027775", ",", "51.4688847901", ",", "51.5620679056", ",", "0", ",", "51.580602373", ",", "0", ",", "0", ",", "0", ",", "51.3249104612", ",", "51.6493225277", ",", "51.4775372047", ",", "51.6637923219", ",", "51.6560101866", ",", "51.5272041651", ",", "51.5880682502", ",", "51.4407199611", ",", "0", ",", "0", ",", "51.617766041", ",", "51.3714213378", ",", "51.3714213378", ",", "51.3714213378", ",", "51.3714213378", ",", "51.3714213378", ",", "51.3714213378", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "-", "0.19558861435", ",", "-", "0.117692508", ",", "-", "0.3027945463", ",", "-", "0.00944392145", ",", "0", ",", "-", "0.1574990543", ",", "0", ",", "0", ",", "-", "0.2402495142", ",", "-", "0.3175056394", ",", "-", "0.09707053585", ",", "-", "0.36449135675", ",", "-", "0.1599209966", ",", "-", "0.117421643", ",", "-", "0.36449135675", ",", "-", "0.0975765677", ",", "-", "0.28724572055", ",", "0.1858102345", ",", "0.1180164575", ",", "0.00709031115", ",", "0", ",", "-", "0.1196493063", ",", "-", "0.1512129007", ",", "-", "0.0758082411", ",", "-", "0.09140495045", ",", "0.10937181555", ",", "-", "0.1139730971", ",", "-", "0.27999608255", ",", "0", ",", "-", "0.2064087217", ",", "0", ",", "-", "0.3201496394", ",", "-", "0.0045999128", ",", "0", ",", "0.08856439155", ",", "-", "0.1741297751", ",", "-", "0.2352589796", ",", "0", ",", "0", ",", "-", "0.4894564436", ",", "-", "0.003929734", ",", "-", "0.0591347798", ",", "0", ",", "0", ",", "0.11394459955", ",", "-", "0.35010129485", ",", "-", "0.01385535395", ",", "-", "0.07500142364", ",", "-", "0.274492056", ",", "0", ",", "0", ",", "-", "0.4034456971", ",", "-", "0.2150510716", ",", "-", "0.20610497395", ",", "-", "0.0798021696", ",", "0.1378116227", ",", "0", ",", "-", "0.32159415685", ",", "-", "0.29685568085", ",", "0.04182541495", ",", "-", "0.17779634615", ",", "-", "0.1792393641", ",", "-", "0.1763917004", ",", "-", "0.335186021", ",", "0", ",", "-", "0.307305534533", ",", "-", "0.307305534533", ",", "-", "0.3817437328", ",", "-", "0.19120147765", ",", "-", "0.1607824794", ",", "-", "0.356423885", ",", "-", "0.3138016625", ",", "-", "0.4077394822", ",", "0", ",", "0", ",", "0.0020390875", ",", "-", "0.1035146237", ",", "-", "0.10541552845", ",", "-", "0.1129717047", ",", "-", "0.1218179963", ",", "-", "0.1129717047", ",", "-", "0.0064149267", ",", "-", "0.130125538617", ",", "-", "0.130125538617", ",", "-", "0.1342819622", ",", "-", "0.13979532695", ",", "-", "0.130125538617", ",", "-", "0.0476417479667", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0508918571", ",", "-", "0.186112746", ",", "-", "0.0621301759", ",", "-", "0.0614741995", ",", "-", "0.06981942105", ",", "-", "0.3026705905", ",", "-", "0.2090423198", ",", "-", "0.2489704734", ",", "-", "0.2723272436", ",", "-", "0.33322145775", ",", "0", ",", "-", "0.0223695915", ",", "0.0660084620667", ",", "0.0660084620667", ",", "0.027832628", ",", "0", ",", "0", ",", "-", "0.34679682255", ",", "-", "0.3446394728", ",", "-", "0.1305921567", ",", "0", ",", "0", ",", "-", "0.12324148385", ",", "0", ",", "0", ",", "-", "0.0084884327", ",", "-", "0.002507675", ",", "0.0937421727", ",", "-", "0.4548156276", ",", "-", "0.3022488679", ",", "-", "0.2924346931", ",", "0", ",", "-", "0.06419524465", ",", "0", ",", "-", "0.0997971281", ",", "-", "0.0984578005167", ",", "-", "0.113968424567", ",", "-", "0.11541912125", ",", "-", "0.0938448949", ",", "-", "0.2073248776", ",", "-", "0.173694069", ",", "-", "0.2627623698", ",", "-", "0.2634284104", ",", "-", "0.173694069", ",", "-", "0.1857274303", ",", "0", ",", "0", ",", "0.0090894597", ",", "0.17881810185", ",", "0", ",", "-", "0.0128608056", ",", "-", "0.0076910139", ",", "0", ",", "-", "0.00126939505", ",", "0", ",", "0", ",", "0.0533299367", ",", "0", ",", "-", "0.14230826075", ",", "-", "0.0846519764667", ",", "0", ",", "-", "0.05500047615", ",", "0", ",", "0", ",", "-", "0.1600969065", ",", "-", "0.0109711874", ",", "0", ",", "0", ",", "-", "0.1521531075", ",", "0.09976096625", ",", "0.1847759833", ",", "-", "0.1059098086", ",", "-", "0.0941037481", ",", "0", ",", "0", ",", "0", ",", "-", "0.0716294974333", ",", "-", "0.1815619505", ",", "-", "0.0249095623", ",", "-", "0.222305578", ",", "-", "0.222108045267", ",", "-", "0.2214961358", ",", "0", ",", "0.00145805045", ",", "-", "0.30504337745", ",", "-", "0.29585714665", ",", "0", ",", "0.0557795314", ",", "0", ",", "0", ",", "0.0833406249", ",", "0", ",", "0.166224356967", ",", "0", ",", "-", "0.17469630495", ",", "0", ",", "-", "0.17469630495", ",", "-", "0.22021517865", ",", "-", "0.0152296995", ",", "-", "0.2277022036", ",", "-", "0.19070937965", ",", "0.0876254571", ",", "-", "0.1918948094", ",", "0.0967103809", ",", "0.1141955542", ",", "0.1116237858", ",", "-", "0.15576532485", ",", "0", ",", "0", ",", "0", ",", "-", "0.2382102597", ",", "-", "0.033734551", ",", "0.1171620094", ",", "0", ",", "0", ",", "-", "0.1015133878", ",", "-", "0.05919125815", ",", "0", ",", "-", "0.1238307498", ",", "-", "0.1234801738", ",", "0.06035346105", ",", "0", ",", "-", "0.11071048445", ",", "-", "0.1186299041", ",", "-", "0.1160456746", ",", "-", "0.1148244368", ",", "-", "0.1109320846", ",", "-", "0.27930555395", ",", "-", "0.29060704985", ",", "-", "0.27948701055", ",", "-", "0.2802353857", ",", "-", "0.2881675695", ",", "0.08009610805", ",", "0.08440248955", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.205366382", ",", "-", "0.1899688024", ",", "0", ",", "-", "0.161313704833", ",", "-", "0.1465246084", ",", "-", "0.14095724965", ",", "-", "0.159178964467", ",", "-", "0.159548422125", ",", "-", "0.167437768413", ",", "-", "0.1687896333", ",", "-", "0.16380112415", ",", "-", "0.3639112273", ",", "0", ",", "0.11868891335", ",", "-", "0.4036286332", ",", "0", ",", "0", ",", "-", "0.1322205289", ",", "-", "0.1321159261", ",", "-", "0.1047031811", ",", "-", "0.00020754115", ",", "-", "0.0021896026", ",", "-", "0.00020754115", ",", "-", "0.172839578", ",", "-", "0.176418839", ",", "-", "0.1328920408", ",", "-", "0.40830974315", ",", "0", ",", "0.1147814322", ",", "-", "0.09624903575", ",", "-", "0.09624903575", ",", "-", "0.0719248053667", ",", "-", "0.07936548835", ",", "-", "0.129760724592", ",", "-", "0.0599593451", ",", "-", "0.0607138464333", ",", "-", "0.0634511941", ",", "-", "0.0718218180333", ",", "-", "0.0718218180333", ",", "-", "0.06722520735", ",", "-", "0.0679863005333", ",", "-", "0.1197992417", ",", "-", "0.1186832549", ",", "-", "0.1138636284", ",", "-", "0.06997925235", ",", "-", "0.0677256865", ",", "-", "0.0718218180333", ",", "-", "0.1951762258", ",", "-", "0.0382009299", ",", "-", "0.20131841145", ",", "-", "0.17815491085", ",", "0", ",", "-", "0.0767791718333", ",", "-", "0.0783768803", ",", "-", "0.08106877595", ",", "-", "0.0766802365", ",", "-", "0.0751575501", ",", "-", "0.07663926435", ",", "-", "0.0730692014", ",", "0", ",", "0.1499404022", ",", "-", "0.04245515085", ",", "-", "0.3809378962", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4200565876", ",", "0.1390103874", ",", "-", "0.08406204665", ",", "0.1380676557", ",", "-", "0.27792697735", ",", "-", "0.18994945145", ",", "-", "0.408600763", ",", "-", "0.25689526055", ",", "-", "0.07920939855", ",", "-", "0.0773067128", ",", "-", "0.0730178096", ",", "0.09808357605", ",", "-", "0.23636834565", ",", "-", "0.0023580522", ",", "-", "0.3472746962", ",", "0.0007525034", ",", "-", "0.128515959056", ",", "-", "0.1261514746", ",", "0", ",", "-", "0.052017727", ",", "0.0073075381", ",", "0", ",", "0", ",", "0", ",", "-", "0.262188952433", ",", "-", "0.3976547298", ",", "-", "0.3976547298", ",", "-", "0.3976547298", ",", "-", "0.36362386828", ",", "-", "0.02353264335", ",", "-", "0.02353264335", ",", "-", "0.0621275392", ",", "0.0320550224", ",", "0.02158046145", ",", "0", ",", "0", ",", "-", "0.1315222154", ",", "0", ",", "0", ",", "0.0889989733", ",", "0.0889989733", ",", "0.0889989733", ",", "-", "0.12929320175", ",", "-", "0.0641427615", ",", "0", ",", "-", "0.1522551415", ",", "-", "0.12897972955", ",", "0", ",", "-", "0.0284784252", ",", "-", "0.3495541143", ",", "-", "0.3348474362", ",", "0", ",", "0", ",", "0", ",", "-", "0.2163649677", ",", "-", "0.2815958862", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0678448297", ",", "-", "0.17380019365", ",", "-", "0.0628723984", ",", "-", "0.1459302042", ",", "0.07331368215", ",", "-", "0.0251142834", ",", "-", "0.3865381918", ",", "-", "0.1980591603", ",", "0.1609030403", ",", "-", "0.09102779195", ",", "-", "0.13374640995", ",", "0", ",", "0", ",", "-", "0.02837765305", ",", "0", ",", "0", ",", "-", "0.364622613", ",", "-", "0.4815019005", ",", "0", ",", "0.0743933644", ",", "0.0796201613", ",", "0.0844954737667", ",", "0.09152756425", ",", "0.0807340859667", ",", "-", "0.2422390117", ",", "0.0831625089", ",", "-", "0.3069984935", ",", "-", "0.2123758349", ",", "-", "0.2762824395", ",", "0.01753507335", ",", "0.0362949419", ",", "-", "0.3940473226", ",", "0.09919148735", ",", "0.0790575121", ",", "0.0790575121", ",", "0.0283322292", ",", "-", "0.1378781355", ",", "-", "0.1222035358", ",", "-", "0.1216567178", ",", "-", "0.13808443775", ",", "0", ",", "-", "0.10668504555", ",", "-", "0.1076999012", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0086670695", ",", "0.1094737284", ",", "0.1366101542", ",", "0", ",", "-", "0.0434338435", ",", "-", "0.0434338435", ",", "0.0789822276", ",", "-", "0.4410007231", ",", "-", "0.28597679665", ",", "0", ",", "-", "0.0302678604", ",", "-", "0.09600741515", ",", "-", "0.0850980112", ",", "-", "0.25492479898", ",", "-", "0.2642051233", ",", "-", "0.2642051233", ",", "-", "0.2642051233", ",", "-", "0.0435211105", ",", "-", "0.1027543403", ",", "-", "0.10233079665", ",", "-", "0.3284716734", ",", "-", "0.1470718619", ",", "0.04279272695", ",", "0", ",", "-", "0.0102310765", ",", "0.0583308296", ",", "-", "0.37166867165", ",", "-", "0.34116518685", ",", "-", "0.330714929833", ",", "-", "0.3296804917", ",", "-", "0.3766297417", ",", "-", "0.3324122734", ",", "-", "0.330714929833", ",", "-", "0.3397114415", ",", "-", "0.34362219105", ",", "-", "0.3401990783", ",", "-", "0.3316123808", ",", "-", "0.328868601775", ",", "-", "0.3289460565", ",", "-", "0.092233156", ",", "-", "0.08375342365", ",", "-", "0.2803303724", ",", "-", "0.2803303724", ",", "-", "0.1600239111", ",", "-", "0.2812026837", ",", "-", "0.28118001965", ",", "0", ",", "0", ",", "0", ",", "-", "0.1177981626", ",", "0", ",", "-", "0.1216632846", ",", "0.00589690885", ",", "0.03608595835", ",", "0", ",", "-", "0.1923188735", ",", "-", "0.0253206361", ",", "-", "0.0253206361", ",", "0", ",", "0", ",", "-", "0.1088435703", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.00876944255", ",", "0", ",", "0", ",", "-", "0.0922016245", ",", "0.008344187", ",", "0", ",", "0", ",", "-", "0.0205968996", ",", "-", "0.0659941605", ",", "-", "0.06943582545", ",", "-", "0.0670877600667", ",", "-", "0.06667601465", ",", "-", "0.1918107772", ",", "-", "0.3442335834", ",", "-", "0.1265254177", ",", "-", "0.13511899795", ",", "-", "0.207166314667", ",", "-", "0.0917269080333", ",", "-", "0.1354596718", ",", "-", "0.1217245729", ",", "0.0746133506", ",", "0.0813912301", ",", "-", "0.135815709575", ",", "-", "0.135815709575", ",", "0", ",", "-", "0.2418631519", ",", "0", ",", "-", "0.2518001724", ",", "-", "0.24501853165", ",", "0", ",", "-", "0.07221356115", ",", "-", "0.0675315206", ",", "-", "0.0979502499", ",", "-", "0.03005608395", ",", "-", "0.1118326826", ",", "0.25050425352", ",", "0.2358450029", ",", "0.2487629912", ",", "0.2689036179", ",", "0.25385374355", ",", "0.25534383405", ",", "0.24210725915", ",", "0.10197002965", ",", "0.09259767725", ",", "-", "0.2152908366", ",", "-", "0.0876375142", ",", "0.2093405998", ",", "0.2093405998", ",", "-", "0.06020454015", ",", "-", "0.0591775644", ",", "-", "0.0567129733", ",", "-", "0.0239167754", ",", "0", ",", "-", "0.12926885825", ",", "-", "0.0208646838", ",", "-", "0.16225970525", ",", "0.1524068724", ",", "0.0178182925", ",", "-", "0.0549235048", ",", "-", "0.1032480648", ",", "-", "0.3722320881", ",", "-", "0.156294754", ",", "-", "0.156294754", ",", "-", "0.11162474315", ",", "0", ",", "0", ",", "0.1122890494", ",", "0.1080315603", ",", "0.1080315603", ",", "0.1080315603", ",", "-", "0.13039000595", ",", "-", "0.1395431349", ",", "-", "0.3141767985", ",", "0", ",", "-", "0.31454258915", ",", "0.0215949508", ",", "0", ",", "0", ",", "0.0353559794", ",", "0.0373820431", ",", "0.04049758505", ",", "0.13666842395", ",", "0.1378136327", ",", "0.1323609812", ",", "0", ",", "0", ",", "-", "0.0246462464", ",", "0", ",", "-", "0.0510718262", ",", "-", "0.0259602065", ",", "0", ",", "-", "0.47823185285", ",", "-", "0.4711207175", ",", "-", "0.4204452162", ",", "-", "0.47408310895", ",", "-", "0.48105569525", ",", "-", "0.47823185285", ",", "-", "0.35889319255", ",", "-", "0.24106689545", ",", "-", "0.3396440857", ",", "-", "0.245105932475", ",", "-", "0.33951513185", ",", "-", "0.38895289655", ",", "-", "0.30911468915", ",", "-", "0.2245765018", ",", "0.0167173195", ",", "-", "0.25660487615", ",", "0.0026789662", ",", "-", "0.1254375502", ",", "0.1311685286", ",", "0.1320519742", ",", "-", "0.0458608101", ",", "0.0647856837", ",", "0.0655547506", ",", "0.17600273635", ",", "0.15655441555", ",", "0", ",", "-", "0.27445969455", ",", "0", ",", "-", "0.1194579138", ",", "-", "0.1217727258", ",", "0.00283362056", ",", "-", "0.1241231575", ",", "0.0047421136", ",", "-", "0.02024832235", ",", "-", "0.01747665115", ",", "-", "0.09370704525", ",", "0", ",", "0.00931301333333", ",", "0.0113716434", ",", "0.01428636305", ",", "0.0181335437", ",", "-", "0.0337121969", ",", "0.0251280184", ",", "0.0418902839", ",", "0.0128139428", ",", "0", ",", "-", "0.288993292", ",", "-", "0.34058117365", ",", "-", "0.0854792345", ",", "-", "0.104145057", ",", "-", "0.10184373935", ",", "-", "0.1118640507", ",", "0.218867924725", ",", "-", "0.123871488772", ",", "-", "0.1292147857", ",", "-", "0.1290769316", ",", "-", "0.1410715618", ",", "-", "0.1233055745", ",", "-", "0.1232204871", ",", "-", "0.1489994595", ",", "-", "0.0994315866", ",", "-", "0.10453927875", ",", "0.00408006655", ",", "0", ",", "0", ",", "-", "0.1471141947", ",", "-", "0.064474599525", ",", "0.02869535165", ",", "0", ",", "-", "0.4186591199", ",", "-", "0.03600894175", ",", "0", ",", "-", "0.03101117885", ",", "-", "0.3830834634", ",", "-", "0.3830834634", ",", "0.08032353545", ",", "-", "0.29159353005", ",", "0.0570923297", ",", "0.0833883753", ",", "-", "0.0109086344", ",", "-", "0.31805193795", ",", "-", "0.0109086344", ",", "0.15768371785", ",", "-", "0.11264252", ",", "-", "0.36784141285", ",", "-", "0.2965589407", ",", "-", "0.2314807535", ",", "-", "0.144306893918", ",", "-", "0.144306893918", ",", "-", "0.17035940185", ",", "-", "0.144238664057", ",", "-", "0.148939457725", ",", "-", "0.1490086681", ",", "-", "0.1500786789", ",", "0.03392433955", ",", "-", "0.3881260877", ",", "-", "0.17108528565", ",", "-", "0.144306893918", ",", "-", "0.04461872615", ",", "-", "0.04206678115", ",", "0.16335545805", ",", "-", "0.3149807082", ",", "-", "0.148696041", ",", "0.17611019765", ",", "-", "0.1679199736", ",", "0.0202205446", ",", "-", "0.00568563625", ",", "-", "0.38065125825", ",", "0.0776311799", ",", "-", "0.13455061185", ",", "-", "0.1142258223", ",", "0.06252346905", ",", "-", "0.0693854777", ",", "-", "0.1451262841", ",", "-", "0.135733593", ",", "0.143974865", ",", "-", "0.135733593", ",", "-", "0.1730610173", ",", "-", "0.14323821575", ",", "0", ",", "0", ",", "-", "0.1126966938", ",", "0.1882903288", ",", "0.040373474", ",", "-", "0.07879570975", ",", "-", "0.07879570975", ",", "-", "0.0305596342", ",", "-", "0.369627771475", ",", "-", "0.3718311255", ",", "-", "0.2534474764", ",", "-", "0.4762036466", ",", "-", "0.0187555753", ",", "-", "0.23359442735", ",", "-", "0.3674263122", ",", "-", "0.2781631659", ",", "0.0700036703", ",", "0.09444582545", ",", "-", "0.4775043985", ",", "-", "0.185235848067", ",", "-", "0.1830378251", ",", "0", ",", "-", "0.4014272312", ",", "-", "0.4576109741", ",", "0", ",", "0.0491097379", ",", "-", "0.00614624645", ",", "-", "0.198256771", ",", "-", "0.1137343351", ",", "-", "0.11830201685", ",", "-", "0.119186197067", ",", "-", "0.119186197067", ",", "-", "0.1167712886", ",", "-", "0.10998031505", ",", "-", "0.11663750835", ",", "-", "0.00431734605", ",", "-", "0.0008806275", ",", "0", ",", "-", "0.1607191044", ",", "-", "0.0539933603", ",", "0", ",", "0", ",", "-", "0.0741037927", ",", "0", ",", "-", "0.0693787607", ",", "0", ",", "-", "0.2161247769", ",", "0.1232954035", ",", "0.21671015735", ",", "0.12517424355", ",", "0.1378998298", ",", "0.1316365331", ",", "0", ",", "0.1223016296", ",", "-", "0.0492431771", ",", "-", "0.18666243545", ",", "-", "0.0101688782", ",", "-", "0.16874403235", ",", "-", "0.2589114573", ",", "-", "0.2629395722", ",", "-", "0.1795717424", ",", "0", ",", "0", ",", "-", "0.45067905205", ",", "0", ",", "0", ",", "-", "0.04206035835", ",", "-", "0.150567368875", ",", "-", "0.1483368246", ",", "-", "0.14966573585", ",", "-", "0.151206124533", ",", "-", "0.17770670635", ",", "-", "0.3623130919", ",", "0", ",", "0", ",", "0.1771155954", ",", "0.1360641929", ",", "0", ",", "0.09987985015", ",", "-", "0.1753500529", ",", "0.0373223523", ",", "-", "0.1622624664", ",", "0", ",", "0", ",", "0.11324545025", ",", "-", "0.01418520055", ",", "-", "0.158728099225", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4351746886", ",", "0", ",", "0", ",", "-", "0.0104150993", ",", "-", "0.0104150993", ",", "-", "0.01305408875", ",", "-", "0.0176220864", ",", "-", "0.3848830463", ",", "-", "0.17724365465", ",", "-", "0.02718509635", ",", "-", "0.0273033392", ",", "-", "0.0152972821667", ",", "-", "0.02303035335", ",", "-", "0.0204192452857", ",", "-", "0.020584022875", ",", "-", "0.0341995298", ",", "-", "0.0288820625", ",", "-", "0.0196804672", ",", "-", "0.0266737728", ",", "-", "0.0288820625", ",", "-", "0.01649747635", ",", "-", "0.08743339565", ",", "-", "0.0854756535", ",", "-", "0.253918462", ",", "0", ",", "-", "0.273109712633", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.234722482", ",", "0", ",", "-", "0.113101038", ",", "-", "0.113101038", ",", "-", "0.17446939655", ",", "-", "0.12806130585", ",", "-", "0.1883590299", ",", "-", "0.12806130585", ",", "-", "0.165686925867", ",", "-", "0.19612038645", ",", "-", "0.19523286885", ",", "-", "0.1998801311", ",", "-", "0.12806130585", ",", "-", "0.14004935195", ",", "-", "0.1504478948", ",", "-", "0.18788432025", ",", "-", "0.190191246567", ",", "-", "0.12806130585", ",", "-", "0.19337926092", ",", "0.1281280349", ",", "0.07597099615", ",", "0.0340430512", ",", "0.027567486925", ",", "0.0188345434", ",", "0.0275249262", ",", "0.05436800185", ",", "0.0251271884", ",", "0.0415718892", ",", "0.02594860485", ",", "0.0290043414", ",", "-", "0.0561158576", ",", "-", "0.0585867883", ",", "-", "0.0542965362", ",", "0", ",", "-", "0.0037386091", ",", "-", "0.37177324835", ",", "-", "0.135912813175", ",", "0.092271623", ",", "0.0922848283", ",", "0.0922848283", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0723986494", ",", "0", ",", "-", "0.3297683435", ",", "-", "0.09931618395", ",", "0.083633784", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.14784855955", ",", "-", "0.1465120195", ",", "-", "0.04989277145", ",", "-", "0.2168567757", ",", "-", "0.0646790136", ",", "0.00805628165", ",", "-", "0.09442412125", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0003142985", ",", "0.1928784417", ",", "-", "0.277451715", ",", "-", "0.27178250495", ",", "0", ",", "0", ",", "0", ",", "0.0158607481", ",", "0.1210124812", ",", "-", "0.3525297002", ",", "0.1234584135", ",", "-", "0.27460537225", ",", "-", "0.4688503298", ",", "-", "0.138205223567", ",", "-", "0.13840194425", ",", "0.0350310817", ",", "0", ",", "0", ",", "0.047234938", ",", "-", "0.005321153", ",", "-", "0.183453511", ",", "-", "0.186318295", ",", "-", "0.094618336", ",", "-", "0.2035398145", ",", "-", "0.0589976699", ",", "-", "0.3635030157", ",", "0", ",", "0", ",", "-", "0.13804091715", ",", "-", "0.1283814223", ",", "-", "0.13804091715", ",", "-", "0.30516925585", ",", "-", "0.18113941065", ",", "0.08452643655", ",", "-", "0.14108829055", ",", "0.0349768932", ",", "0.0349768932", ",", "-", "0.2368405069", ",", "-", "0.00742005215", ",", "0", ",", "-", "0.3786715608", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.113818032483", ",", "-", "0.1149390184", ",", "-", "0.113818032483", ",", "-", "0.1123655027", ",", "-", "0.1123655027", ",", "-", "0.1123655027", ",", "-", "0.112948647233", ",", "-", "0.115317637867", ",", "-", "0.113484249633", ",", "-", "0.113484249633", ",", "-", "0.113484249633", ",", "0", ",", "-", "0.1428648316", ",", "-", "0.1365860709", ",", "-", "0.13815839275", ",", "-", "0.13815839275", ",", "-", "0.13815839275", ",", "-", "0.2981912349", ",", "-", "0.2828295401", ",", "0", ",", "0.1798341871", ",", "-", "0.0289437422", ",", "-", "0.186168358", ",", "0.10498377765", ",", "0", ",", "0.012181932975", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4168084544", ",", "-", "0.4168084544", ",", "-", "0.4168084544", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2634053407", ",", "-", "0.2663564851", ",", "0.15497607225", ",", "0.15497607225", ",", "0.15497607225", ",", "-", "0.0435982561", ",", "0", ",", "-", "0.0565558985", ",", "-", "0.1398209796", ",", "-", "0.05081976785", ",", "0", ",", "-", "0.0204016663", ",", "0", ",", "-", "0.0228298457", ",", "-", "0.2849087305", ",", "0.0938147253", ",", "0.0829749443", ",", "0.0829749443", ",", "-", "0.117141510367", ",", "0", ",", "-", "0.2589887245", ",", "-", "0.38825275625", ",", "-", "0.41317333115", ",", "-", "0.3862556711", ",", "-", "0.17710220805", ",", "-", "0.34003389625", ",", "0", ",", "-", "0.3386740059", ",", "-", "0.3354857622", ",", "-", "0.01645606135", ",", "-", "0.06413150405", ",", "-", "0.24847475035", ",", "-", "0.16105293545", ",", "0", ",", "-", "0.1262722541", ",", "0", ",", "0", ",", "0.01949518955", ",", "0.0232425634", ",", "0.0232425634", ",", "-", "0.08677226815", ",", "-", "0.4056681611", ",", "0", ",", "-", "0.1727371433", ",", "-", "0.17861428235", ",", "0", ",", "0", ",", "0", ",", "-", "0.120272822", ",", "0", ",", "0.0538447888", ",", "0.05234783935", ",", "0.05014584465", ",", "-", "0.050964315", ",", "-", "0.0492676552", ",", "-", "0.053610517", ",", "-", "0.0473568174", ",", "-", "0.330817688967", ",", "-", "0.330817688967", ",", "0.0574639184", ",", "-", "0.0647787738", ",", "-", "0.2781718932", ",", "-", "0.0970271712", ",", "0", ",", "-", "0.1871908611", ",", "0.100078150125", ",", "0.110005987233", ",", "0.1055514338", ",", "0.11236797505", ",", "0.08963439", ",", "0", ",", "-", "0.229262819", ",", "0.10290335855", ",", "-", "0.2698867795", ",", "-", "0.37706546015", ",", "-", "0.37862662985", ",", "-", "0.0732344798", ",", "-", "0.3536507464", ",", "0.0638900437", ",", "0.0663705349", ",", "0", ",", "0.0013679808", ",", "0", ",", "-", "0.2524304518", ",", "-", "0.0732991069", ",", "-", "0.1602282481", ",", "-", "0.2264137901", ",", "-", "0.2264137901", ",", "-", "0.2172499524", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.284181578967", ",", "-", "0.29690896435", ",", "-", "0.2927553128", ",", "-", "0.2928411928", ",", "-", "0.2904979669", ",", "-", "0.3054527896", ",", "-", "0.279265162", ",", "-", "0.2721731593", ",", "-", "0.2863777983", ",", "-", "0.288457723", ",", "0", ",", "0", ",", "-", "0.27382330345", ",", "0.10327275625", ",", "0.21832019455", ",", "0.22444402065", ",", "0", ",", "0.05370265885", ",", "-", "0.0691770308", ",", "-", "0.397401263233", ",", "-", "0.0691770308", ",", "-", "0.2605117484", ",", "-", "0.2103918964", ",", "-", "0.28005861775", ",", "0", ",", "-", "0.23464227015", ",", "-", "0.2425776549", ",", "-", "0.236895079", ",", "-", "0.195162749", ",", "0", ",", "0", ",", "0", ",", "-", "0.2011405739", ",", "-", "0.1996825523", ",", "-", "0.3244887134", ",", "-", "0.320974359", ",", "-", "0.1030964188", ",", "-", "0.101437263413", ",", "-", "0.1020186169", ",", "-", "0.1020186169", ",", "0.2189839681", ",", "-", "0.126253069", ",", "-", "0.473098202567", ",", "-", "0.466704059733", ",", "-", "0.4397870503", ",", "-", "0.2148861001", ",", "-", "0.2148861001", ",", "-", "0.0921321837", ",", "-", "0.0902145221", ",", "-", "0.32047698935", ",", "-", "0.3255908003", ",", "-", "0.22910877085", ",", "-", "0.43435801205", ",", "-", "0.1925563096", ",", "-", "0.39153457575", ",", "-", "0.18814362695", ",", "0", ",", "0", ",", "-", "0.1897688981", ",", "-", "0.0838778092", ",", "-", "0.0933492818", ",", "-", "0.1012259625", ",", "-", "0.12748131885", ",", "0.004810247525", ",", "0.02274770285", ",", "-", "0.1910493915", ",", "-", "0.19488653535", ",", "-", "0.1911137262", ",", "-", "0.1911137262", ",", "-", "0.3532260254", ",", "-", "0.2402320616", ",", "-", "0.2402320616", ",", "-", "0.2449140519", ",", "0", ",", "-", "0.08601998095", ",", "-", "0.209161541667", ",", "-", "0.08601998095", ",", "-", "0.2175698358", ",", "-", "0.08601998095", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.025509936", ",", "-", "0.206574591967", ",", "-", "0.20390029375", ",", "0.0542164865", ",", "0.0542164865", ",", "0", ",", "0", ",", "-", "0.244064349", ",", "-", "0.1958383924", ",", "-", "0.3251069382", ",", "0", ",", "0", ",", "-", "0.3995726352", ",", "-", "0.35501269335", ",", "-", "0.32575907845", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1032015315", ",", "-", "0.1035435524", ",", "-", "0.1055319692", ",", "-", "0.1044092269", ",", "-", "0.2814711341", ",", "-", "0.3557874573", ",", "-", "0.43702009545", ",", "-", "0.2136328717", ",", "-", "0.43784093625", ",", "0", ",", "-", "0.1789299676", ",", "0.0232871069", ",", "0.0071536478", ",", "0", ",", "-", "0.34387027295", ",", "0.0145126036", ",", "-", "0.34387027295", ",", "-", "0.1670129363", ",", "-", "0.20562125685", ",", "-", "0.3423551373", ",", "-", "0.1815696881", ",", "-", "0.0138597411", ",", "-", "0.02774158755", ",", "-", "0.0107020438", ",", "-", "0.2298917499", ",", "0", ",", "-", "0.2013699156", ",", "-", "0.0499176592", ",", "-", "0.1952151266", ",", "-", "0.200589822375", ",", "-", "0.201136723", ",", "0.12944771025", ",", "-", "0.1139202235", ",", "-", "0.1749376018", ",", "-", "0.1785161316", ",", "-", "0.181064944667", ",", "-", "0.1707511136", ",", "-", "0.1705014302", ",", "-", "0.0978390398", ",", "-", "0.0937202044", ",", "-", "0.2660220395", ",", "0.0833446431", ",", "0", ",", "0", ",", "0.0179050568", ",", "0.01979445055", ",", "-", "0.20927408075", ",", "-", "0.0286395897", ",", "0", ",", "0", ",", "0.0190564157", ",", "0", ",", "-", "0.0827988382", ",", "-", "0.0827988382", ",", "-", "0.0827988382", ",", "0.05553126865", ",", "0.05417364725", ",", "0.0367317546", ",", "-", "0.0827988382", ",", "-", "0.0827988382", ",", "0.2113363355", ",", "-", "0.24946069656", ",", "0.183843153", ",", "-", "0.2723025662", ",", "0.185214126533", ",", "-", "0.1105135274", ",", "-", "0.2026937802", ",", "-", "0.1105135274", ",", "-", "0.1886940601", ",", "0", ",", "-", "0.0266832385", ",", "-", "0.02708962445", ",", "-", "0.0266832385", ",", "-", "0.01856302565", ",", "-", "0.01856302565", ",", "0", ",", "0", ",", "0.0470340068", ",", "0.01404790525", ",", "0.04348703495", ",", "0.034880110675", ",", "0.0451006591", ",", "0", ",", "0", ",", "0", ",", "-", "0.1237648714", ",", "-", "0.130786403287", ",", "-", "0.1402839798", ",", "-", "0.1370383153", ",", "-", "0.1213576239", ",", "-", "0.12377133335", ",", "-", "0.1213576239", ",", "-", "0.11834546785", ",", "0.2110685479", ",", "-", "0.09391577085", ",", "-", "0.09391577085", ",", "-", "0.09391577085", ",", "-", "0.14521768725", ",", "0.0579047317", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11745280625", ",", "-", "0.27281855105", ",", "0", ",", "-", "0.08017968946", ",", "-", "0.0820272615", ",", "-", "0.082202032", ",", "-", "0.082202032", ",", "-", "0.2332941899", ",", "0", ",", "0", ",", "0", ",", "-", "0.3403677831", ",", "-", "0.2285135873", ",", "-", "0.0736354663", ",", "0.1033153453", ",", "0.0992336779", ",", "0.0948325832", ",", "0.1052810033", ",", "0", ",", "0", ",", "-", "0.0416059173", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.03500816985", ",", "0", ",", "-", "0.42468888795", ",", "0.1382292901", ",", "0.1382292901", ",", "0.1463992694", ",", "0.14217307205", ",", "0.1382292901", ",", "0", ",", "0", ",", "-", "0.0268285936", ",", "-", "0.08487551375", ",", "-", "0.2495596499", ",", "-", "0.07601906455", ",", "0", ",", "-", "0.06641647445", ",", "-", "0.1245597569", ",", "0", ",", "-", "0.1742880826", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.00102399185", ",", "0.00405051805", ",", "-", "0.00102399185", ",", "0.001276679025", ",", "-", "0.00102399185", ",", "0", ",", "-", "0.27454818205", ",", "0.0209980318", ",", "-", "0.18104980195", ",", "0", ",", "-", "0.224820952533", ",", "-", "0.22390149735", ",", "-", "0.23153058625", ",", "-", "0.1072299257", ",", "-", "0.0708382624", ",", "-", "0.0686189307", ",", "0.15592655845", ",", "-", "0.08614963966", ",", "0.15592655845", ",", "0.15592655845", ",", "-", "0.34038507535", ",", "0", ",", "0", ",", "-", "0.1073689887", ",", "0", ",", "0.29410938065", ",", "0.0562825884", ",", "0", ",", "-", "0.11603374875", ",", "0.0092714875", ",", "-", "0.01205254905", ",", "-", "0.00592466625", ",", "0.1838030709", ",", "0.0222098228", ",", "0.0075892635", ",", "0.0268159425667", ",", "-", "0.48187301785", ",", "-", "0.1270145981", ",", "0", ",", "-", "0.4388975574", ",", "-", "0.0939190989", ",", "-", "0.0590516118333", ",", "-", "0.18810245115", ",", "-", "0.179318129933", ",", "-", "0.46565078315", ",", "0.0387504606", ",", "-", "0.1062931959", ",", "-", "0.098448858925", ",", "-", "0.279367366", ",", "0.2232582926", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1423841082", ",", "-", "0.2209894409", ",", "0", ",", "-", "0.2098610161", ",", "-", "0.0352333053", ",", "-", "0.13789015", ",", "-", "0.13602830154", ",", "0", ",", "0", ",", "-", "0.351861744633", ",", "-", "0.362477582", ",", "-", "0.3224801447", ",", "-", "0.35798515705", ",", "-", "0.35997385685", ",", "-", "0.3596034432", ",", "-", "0.358103614", ",", "-", "0.33131961355", ",", "-", "0.3625027144", ",", "-", "0.35824833035", ",", "0", ",", "-", "0.35675328885", ",", "-", "0.34870840845", ",", "-", "0.3529898252", ",", "0", ",", "0.06351882385", ",", "-", "0.0838262178", ",", "0", ",", "0", ",", "0", ",", "-", "0.34134278595", ",", "-", "0.2523768135", ",", "-", "0.0273408986", ",", "0", ",", "-", "0.03626596855", ",", "0.237855221", ",", "0", ",", "-", "0.4778151848", ",", "-", "0.0130862050667", ",", "0", ",", "-", "0.03171057935", ",", "0.0982546983", ",", "-", "0.0113655673", ",", "0", ",", "-", "0.44855277", ",", "0.01945095795", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0841131693", ",", "-", "0.244125341133", ",", "-", "0.11092126605", ",", "-", "0.3949177069", ",", "0", ",", "0.0322436305", ",", "-", "0.07786852865", ",", "0.03062247995", ",", "-", "0.29702465455", ",", "0", ",", "0.22831861365", ",", "-", "0.0761664665", ",", "-", "0.12840617545", ",", "-", "0.41584599345", ",", "0", ",", "0", ",", "-", "0.09604307805", ",", "-", "0.1805935778", ",", "-", "0.1813190867", ",", "-", "0.1845869368", ",", "-", "0.2647050168", ",", "0.0454221813", ",", "-", "0.0795207197", ",", "-", "0.238364482783", ",", "-", "0.24898672775", ",", "-", "0.2209219122", ",", "-", "0.22867876105", ",", "-", "0.2401912224", ",", "-", "0.245532302083", ",", "-", "0.2235574422", ",", "-", "0.24644149735", ",", "-", "0.23070588045", ",", "0.08774708425", ",", "0.06387692005", ",", "-", "0.14911232595", ",", "-", "0.14911232595", ",", "-", "0.0337152389", ",", "-", "0.1864448922", ",", "-", "0.07502072785", ",", "0", ",", "-", "0.19265210435", ",", "0", ",", "0", ",", "0", ",", "-", "0.13275873775", ",", "-", "0.2040138682", ",", "-", "0.373817805", ",", "-", "0.0678410761", ",", "-", "0.0755673247", ",", "-", "0.399074670433", ",", "-", "0.100267821467", ",", "-", "0.36401035225", ",", "0", ",", "0", ",", "-", "0.1225884841", ",", "0.1128948339", ",", "0.1128948339", ",", "0.1128948339", ",", "0.1128948339", ",", "0.1128948339", ",", "0.1128948339", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"The", "Quadrant\"", ",", "\"\"", ",", "\"The", "Rabbits\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Reddings\"", ",", "\"The", "Ride\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Ridings\"", ",", "\"The", "Rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Rookery\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Roystons\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Shires\"", ",", "\"\"", ",", "\"The", "Sidings\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Spinney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Temple\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Triangle\"", ",", "\"\"", ",", "\"The", "Uplands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "View\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Vineyard\"", ",", "\"\"", ",", "\"The", "Warren\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Willows\"", ",", "\"The", "Windmill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Zig", "Zag\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Theydon", "Bois\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Third", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Thomas", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thorne", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thornton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thorpe", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thrale", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Three", "Fishes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thurtle", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tilbury", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tilling", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Times", "Square\"", ",", "\"Tine", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tithe", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tolworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tooting\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tor", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Totnes", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tower", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tower", "View\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Townley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Towpath", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Traps", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"Traps", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tree", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Trevor", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Trinder", "Road\"", ",", "\"Tring", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Trinity", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Troy", "Mill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tubbs", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tudor", "Estate\"", ",", "\"Tudor", "Grange\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tufnell", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tulse", "Hill\"", ",", "\"\"", ",", "\"Tumbler", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tunstock", "Way\"", ",", "\"Tupwood", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Turner", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"Turners", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Turnham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tyers", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tylney", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tysea", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"Tyssen", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ulundi", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Uneeda", "Drive\"", ",", "\"Union", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Uphill", "Road\"", ",", "\"\"", ",", "\"Upland", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Uplands\"", ",", "\"Uplands", "Road\"", ",", "\"Upminster\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Upney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Upton", "Lea\"", ",", "\"\"", ",", "\"Upton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"Upton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Usher", "Road\"", ",", "\"\"", ",", "\"Uxbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Valley", "Close\"", ",", "\"Valley", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Valmar", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vantage", "West\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vauxhall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vectis", "Road\"", ",", "\"Venetia", "Road\"", ",", "\"Vera", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Verney", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vesta", "Road\"", ",", "\"Vevers", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vicarage", "Way\"", ",", "\"\"", ",", "\"Victor", "Road\"", ",", "\"Victoria\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Villa", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Village", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Vincam", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Vine", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Viola", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waddon\"", ",", "\"Waddon", "Marsh\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wadham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Waggon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waite", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Walden", "Way\"", ",", "\"\"", ",", "\"Waldens", "Farm\"", ",", "\"Waldens", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waldron", "Road\"", ",", "\"\"", ",", "\"Wales", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wallington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Walnut", "Way\"", ",", "\"\"", ",", "\"Walpole", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waltham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Walton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wandle", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wangey", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Wanstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wapping\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ward", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Wards", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Ware", "College\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warham", "Road\"", ",", "\"\"", ",", "\"Warland", "Road\"", ",", "\"Warley", "Mount\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warner", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warren", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"Warren", "Field\"", ",", "\"Warren", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"Warren", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warren", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warwick", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Warwick", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waterloo\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waters", "Road\"", ",", "\"Watersedge\"", ",", "\"Waterside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Watford", "B&Q\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Watford", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Watneys", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Watts", "Grove\"", ",", "\"\"", ",", "\"Wavelengths\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Waxlow", "Road\"", ",", "\"Waxwell", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Weald", "Forge\"", ",", "\"Weald", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Webb", "Place\"", ",", "\"Webbs", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Welden\"", ",", "\"\"", ",", "\"\"", ",", "\"Well", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Welling\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wells", "Rise\"", ",", "\"Wells", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Welsh", "Tavern\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wembley", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wendover\"", ",", "\"\"", ",", "\"Wendover", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Byfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Croydon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Drayton\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Drive\"", ",", "\"\"", ",", "\"West", "Dulwich\"", ",", "\"\"", ",", "\"West", "Ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Ham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Mead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Norwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Ruislip\"", ",", "\"\"", ",", "\"West", "Side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Sutton\"", ",", "\"\"", ",", "\"\"", ",", "\"West", "Wickham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Western", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Western", "Way\"", ",", "\"\"", ",", "\"Westferry\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Westminster\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Weston", "Park\"", ",", "\"Weston", "Road\"", ",", "\"\"", ",", "\"Westow", "Hill\"", ",", "\"Westow", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"Westside\"", ",", "\"\"", ",", "\"Westway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Weyman", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Whelans", "Farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Whitby", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"White", "City\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Whitechapel\"", ",", "\"Whiteleys\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Whitton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Whyteleafe\"", ",", "\"\"", ",", "\"\"", ",", "\"Whyteways\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wigeon", "Path\"", ",", "\"Wiggins", "Mead\"", ",", "\"\"", ",", "\"Wigley", "Road\"", ",", "\"\"", ",", "\"Wigram", "Road\"", ",", "\"\"", ",", "\"Wigston", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Wigton", "Way\"", ",", "\"\"", ",", "\"Wilcox", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wildwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Willett", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Willow", "Court\"", ",", "\"Willow", "Drive\"", ",", "\"\"", ",", "\"Willow", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Willow", "Way\"", ",", "\"Willowside\"", ",", "\"\"", ",", "\"Wilmer", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"the", "quadrant\"", ",", "\"\"", ",", "\"the", "rabbits\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "reddings\"", ",", "\"the", "ride\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "ridings\"", ",", "\"the", "rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "rookery\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "roystons\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "shires\"", ",", "\"\"", ",", "\"the", "sidings\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "spinney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "temple\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "triangle\"", ",", "\"\"", ",", "\"the", "uplands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "view\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "vineyard\"", ",", "\"\"", ",", "\"the", "warren\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "willows\"", ",", "\"the", "windmill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "zig", "zag\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"theydon", "bois\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"third", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"thomas", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thorne", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thornton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thorpe", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thrale", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"three", "fishes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thurtle", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tilbury", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tilling", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"times", "square\"", ",", "\"tine", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tithe", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tolworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tooting\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tor", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"totnes", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tower", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tower", "view\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"townley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"towpath", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"traps", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"traps", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tree", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"trevor", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"trinder", "road\"", ",", "\"tring", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"trinity", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"troy", "mill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tubbs", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tudor", "estate\"", ",", "\"tudor", "grange\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tufnell", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tulse", "hill\"", ",", "\"\"", ",", "\"tumbler", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tunstock", "way\"", ",", "\"tupwood", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"turner", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"turners", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"turnham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tyers", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tylney", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tysea", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"tyssen", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ulundi", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"uneeda", "drive\"", ",", "\"union", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"uphill", "road\"", ",", "\"\"", ",", "\"upland", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"uplands\"", ",", "\"uplands", "road\"", ",", "\"upminster\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"upney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"upton", "lea\"", ",", "\"\"", ",", "\"upton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"upton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"usher", "road\"", ",", "\"\"", ",", "\"uxbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"valley", "close\"", ",", "\"valley", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"valmar", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vantage", "west\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vauxhall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vectis", "road\"", ",", "\"venetia", "road\"", ",", "\"vera", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"verney", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vesta", "road\"", ",", "\"vevers", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vicarage", "way\"", ",", "\"\"", ",", "\"victor", "road\"", ",", "\"victoria\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"villa", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"village", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"vincam", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"vine", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"viola", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waddon\"", ",", "\"waddon", "marsh\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wadham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"waggon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waite", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"walden", "way\"", ",", "\"\"", ",", "\"waldens", "farm\"", ",", "\"waldens", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waldron", "road\"", ",", "\"\"", ",", "\"wales", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wallington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"walnut", "way\"", ",", "\"\"", ",", "\"walpole", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waltham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"walton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wandle", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wangey", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"wanstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wapping\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ward", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"wards", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"ware", "college\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warham", "road\"", ",", "\"\"", ",", "\"warland", "road\"", ",", "\"warley", "mount\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warner", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warren", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"warren", "field\"", ",", "\"warren", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"warren", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warren", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warwick", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"warwick", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waterloo\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waters", "road\"", ",", "\"watersedge\"", ",", "\"waterside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"watford", "b&q\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"watford", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"watneys", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"watts", "grove\"", ",", "\"\"", ",", "\"wavelengths\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"waxlow", "road\"", ",", "\"waxwell", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"weald", "forge\"", ",", "\"weald", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"webb", "place\"", ",", "\"webbs", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"welden\"", ",", "\"\"", ",", "\"\"", ",", "\"well", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"welling\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wells", "rise\"", ",", "\"wells", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"welsh", "tavern\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wembley", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wendover\"", ",", "\"\"", ",", "\"wendover", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "byfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "croydon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "drayton\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "drive\"", ",", "\"\"", ",", "\"west", "dulwich\"", ",", "\"\"", ",", "\"west", "ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "ham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "mead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "norwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "ruislip\"", ",", "\"\"", ",", "\"west", "side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "sutton\"", ",", "\"\"", ",", "\"\"", ",", "\"west", "wickham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"western", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"western", "way\"", ",", "\"\"", ",", "\"westferry\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"westminster\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"weston", "park\"", ",", "\"weston", "road\"", ",", "\"\"", ",", "\"westow", "hill\"", ",", "\"westow", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"westside\"", ",", "\"\"", ",", "\"westway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"weyman", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"whelans", "farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"whitby", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"white", "city\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"whitechapel\"", ",", "\"whiteleys\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"whitton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"whyteleafe\"", ",", "\"\"", ",", "\"\"", ",", "\"whyteways\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wigeon", "path\"", ",", "\"wiggins", "mead\"", ",", "\"\"", ",", "\"wigley", "road\"", ",", "\"\"", ",", "\"wigram", "road\"", ",", "\"\"", ",", "\"wigston", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"wigton", "way\"", ",", "\"\"", ",", "\"wilcox", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wildwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"willett", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"willow", "court\"", ",", "\"willow", "drive\"", ",", "\"\"", ",", "\"willow", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"willow", "way\"", ",", "\"willowside\"", ",", "\"\"", ",", "\"wilmer", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,564
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London11", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WDN:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WMP:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WGN:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WFD:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"WSP:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.3714213378", ",", "51.3714213378", ",", "51.3714213378", ",", "51.5913886255", ",", "51.5270475127", ",", "0", ",", "0", ",", "51.5089238217", ",", "51.3978977302", ",", "51.5275635394", ",", "51.4125372465", ",", "51.5980041501", ",", "51.5980041501", ",", "51.4993369707", ",", "51.3901499822", ",", "51.4208874544", ",", "51.4265668808", ",", "51.4153538117", ",", "51.4238505078", ",", "51.4224703519", ",", "51.4092369094", ",", "51.4094543685", ",", "51.4210425677", ",", "51.4239563684", ",", "51.4210425677", ",", "51.4354318338", ",", "51.4214411917", ",", "51.4328024224", ",", "51.4309007068", ",", "51.4218226139", ",", "51.4350876296", ",", "51.4192525619", ",", "51.4210425677", ",", "51.5743557793", ",", "51.484208522", ",", "0", ",", "51.4293582947", ",", "51.5247796096", ",", "51.4908646535", ",", "51.4464415434", ",", "0", ",", "51.3860690246", ",", "51.5774499095", ",", "51.5194055713", ",", "51.5194055713", ",", "51.5194055713", ",", "51.5450537228", ",", "51.5194055713", ",", "51.5194055713", ",", "51.4867933376", ",", "51.487684098", ",", "51.3859729695", ",", "51.4900789451", ",", "51.3877439613", ",", "51.4552155024", ",", "51.4527719645", ",", "51.487684098", ",", "51.6810767835", ",", "51.3710586338", ",", "0", ",", "0", ",", "51.353943283", ",", "0", ",", "0", ",", "51.4182533462", ",", "51.4182533462", ",", "51.567455495", ",", "51.4182533462", ",", "51.5286739887", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5490026585", ",", "51.4248197583", ",", "51.4615067908", ",", "0", ",", "51.5379615506", ",", "51.5579146135", ",", "51.3991404212", ",", "0", ",", "51.4660534266", ",", "51.3613002515", ",", "51.5427192397", ",", "51.4870111864", ",", "0", ",", "51.6320405206", ",", "51.6289454628", ",", "51.6320405206", ",", "51.6344762313", ",", "51.4812557169", ",", "51.4843676763", ",", "0", ",", "51.5543052746", ",", "51.4426659171", ",", "0", ",", "0", ",", "0", ",", "51.5130358944", ",", "0", ",", "51.5596677687", ",", "51.559929493", ",", "51.5008892665", ",", "51.4974613563", ",", "51.6157033932", ",", "51.4697551958", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4760841325", ",", "51.448148576", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5510321083", ",", "51.523834395", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5528289113", ",", "51.4166613496", ",", "51.417971065", ",", "51.6225285773", ",", "51.5822431996", ",", "51.5252849346", ",", "51.3470918684", ",", "51.3462722882", ",", "0", ",", "51.4133658243", ",", "0", ",", "0", ",", "51.6106285372", ",", "51.6070192888", ",", "51.6043250496", ",", "51.6026793831", ",", "0", ",", "51.5540824742", ",", "51.5508215117", ",", "51.5519578711", ",", "51.5179924753", ",", "0", ",", "0", ",", "51.5979498977", ",", "51.5985007773", ",", "51.5900219899", ",", "51.6037311779", ",", "51.5942096396", ",", "51.5967767119", ",", "51.5970664892", ",", "51.5973073912", ",", "0", ",", "51.4761099369", ",", "51.4863816588", ",", "51.4826386361", ",", "51.5786563003", ",", "51.5596054634", ",", "51.5436477057", ",", "51.5435999942", ",", "51.4125850318", ",", "51.58659611", ",", "51.5915629847", ",", "51.4114870143", ",", "51.4499006696", ",", "0", ",", "0", ",", "0", ",", "51.6274311312", ",", "51.5725494307", ",", "51.6114360839", ",", "51.5725494307", ",", "51.3735279996", ",", "51.5769197901", ",", "51.4042656594", ",", "51.4641993082", ",", "0", ",", "51.5813367807", ",", "51.5813367807", ",", "51.5861581872", ",", "51.5755393179", ",", "51.343004722", ",", "51.3482512809", ",", "51.3482512809", ",", "51.3417295762", ",", "51.3382624068", ",", "51.3566190825", ",", "0", ",", "0", ",", "51.329125661", ",", "51.6106952975", ",", "51.6073784765", ",", "51.6477083703", ",", "51.4335745856", ",", "51.3043457954", ",", "51.6054813535", ",", "51.6076660909", ",", "51.5846598469", ",", "51.6080539655", ",", "51.6089538391", ",", "51.5842404668", ",", "51.5938804511", ",", "51.6076660909", ",", "51.6012572745", ",", "51.5859864853", ",", "51.607564161", ",", "51.5491920339", ",", "51.5465014445", ",", "51.603902037", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4184170595", ",", "51.5524651128", ",", "51.6113406291", ",", "0", ",", "51.4885465617", ",", "51.4885465617", ",", "51.5431115902", ",", "0", ",", "0", ",", "51.3903205912", ",", "51.4880847472", ",", "51.6011949841", ",", "51.3534047068", ",", "51.3157553793", ",", "51.3154811813", ",", "51.3534047068", ",", "51.3534047068", ",", "51.3534047068", ",", "51.4731302955", ",", "51.3534047068", ",", "51.5897565545", ",", "0", ",", "0", ",", "51.3183297513", ",", "51.3217232696", ",", "51.3217232696", ",", "51.3217232696", ",", "51.3217232696", ",", "51.3217232696", ",", "51.3217232696", ",", "51.3077489956", ",", "0", ",", "51.5547744423", ",", "51.387610276", ",", "51.4195459053", ",", "51.5828669245", ",", "51.387610276", ",", "51.4471814753", ",", "51.4471814753", ",", "51.6178528766", ",", "51.5829715972", ",", "51.391670177", ",", "51.4581355364", ",", "51.3580560996", ",", "51.387610276", ",", "0", ",", "51.4399337728", ",", "51.5756918965", ",", "51.4605230672", ",", "51.4402691933", ",", "51.4058032752", ",", "51.4062851672", ",", "51.4324730356", ",", "51.5777097156", ",", "51.5743250594", ",", "51.5371208435", ",", "51.4479349768", ",", "0", ",", "51.4684931028", ",", "0", ",", "51.4898154129", ",", "51.4898154129", ",", "51.4898154129", ",", "51.4824550674", ",", "51.4785602245", ",", "51.4824550674", ",", "51.4907639816", ",", "51.4935706302", ",", "51.4935706302", ",", "51.4935706302", ",", "51.4938470346", ",", "51.5210285861", ",", "51.5210285861", ",", "51.4815427082", ",", "51.4814476002", ",", "51.4876136885", ",", "51.4900221701", ",", "51.4641253027", ",", "51.4873418401", ",", "51.4896575277", ",", "0", ",", "0", ",", "0", ",", "51.3731186", ",", "51.6117057813", ",", "0", ",", "51.3812041761", ",", "51.357545512", ",", "51.5967800003", ",", "51.357545512", ",", "0", ",", "51.5415133761", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.509292856", ",", "0", ",", "51.5159170834", ",", "0", ",", "0", ",", "51.5217626577", ",", "51.4219995923", ",", "51.4219995923", ",", "51.4276472188", ",", "0", ",", "0", ",", "51.476092933", ",", "51.4680736989", ",", "51.4761297514", ",", "51.3936162209", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4341449554", ",", "0", ",", "51.5353261845", ",", "0", ",", "0", ",", "0", ",", "51.4698066796", ",", "51.5494694169", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5375753499", ",", "51.5321059825", ",", "51.5454341381", ",", "0", ",", "51.371884301", ",", "51.3715436118", ",", "51.38358236", ",", "51.3714114448", ",", "51.5155785726", ",", "51.5418229955", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5794083116", ",", "0", ",", "51.5716732147", ",", "0", ",", "0", ",", "51.5472775596", ",", "0", ",", "51.5698685462", ",", "51.5020134132", ",", "51.5737702022", ",", "0", ",", "51.4794869007", ",", "51.477254514", ",", "51.4785373094", ",", "51.5600376532", ",", "51.3950738192", ",", "0", ",", "51.3440615399", ",", "0", ",", "51.6418596824", ",", "51.6414467592", ",", "51.6463708679", ",", "51.6442221159", ",", "0", ",", "0", ",", "51.4963075154", ",", "51.4957412836", ",", "0", ",", "51.546289224", ",", "0", ",", "0", ",", "51.6248176562", ",", "51.5350249615", ",", "51.5352160146", ",", "51.5240443085", ",", "51.535955323", ",", "51.537163298", ",", "0", ",", "51.5520425961", ",", "51.6129435232", ",", "0", ",", "51.4926706003", ",", "51.5833678345", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3502337462", ",", "51.5126550248", ",", "51.5153970116", ",", "0", ",", "0", ",", "51.5230196457", ",", "51.4681024865", ",", "0", ",", "51.5296374704", ",", "0", ",", "51.5032325655", ",", "0", ",", "51.6438675416", ",", "51.5572663763", ",", "51.6099623433", ",", "51.6138723404", ",", "51.5363421807", ",", "51.5473893788", ",", "51.521168414", ",", "51.4475901683", ",", "51.5451920095", ",", "51.5402896959", ",", "51.5486297592", ",", "51.4581525304", ",", "51.3990028354", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6228149933", ",", "51.4721672409", ",", "51.5482423335", ",", "51.464067173", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0.1128948339", ",", "0.1128948339", ",", "0.1128948339", ",", "-", "0.0865582438", ",", "-", "0.05932062115", ",", "0", ",", "0", ",", "-", "0.2156802499", ",", "-", "0.16263703115", ",", "0.0385437477", ",", "-", "0.2066948102", ",", "-", "0.1520151368", ",", "-", "0.1520151368", ",", "-", "0.1480707131", ",", "-", "0.2537525837", ",", "-", "0.206425476533", ",", "-", "0.222688291", ",", "-", "0.1971431178", ",", "-", "0.2158461475", ",", "-", "0.20908202135", ",", "-", "0.2140568813", ",", "-", "0.21327909505", ",", "-", "0.2068652831", ",", "-", "0.2036442263", ",", "-", "0.2068652831", ",", "-", "0.19636701585", ",", "-", "0.20353430335", ",", "-", "0.18101175245", ",", "-", "0.18479897715", ",", "-", "0.2190966949", ",", "-", "0.213230971467", ",", "-", "0.20038401625", ",", "-", "0.2068652831", ",", "-", "0.30961531155", ",", "-", "0.2452498869", ",", "0", ",", "-", "0.2585733165", ",", "-", "0.37415334475", ",", "-", "0.03421475065", ",", "-", "0.2162176586", ",", "0", ",", "-", "0.10097886995", ",", "-", "0.41601138035", ",", "-", "0.35473450335", ",", "-", "0.35473450335", ",", "-", "0.35473450335", ",", "-", "4.8725e-05", ",", "-", "0.35473450335", ",", "-", "0.35473450335", ",", "-", "0.308232324225", ",", "-", "0.1112572096", ",", "-", "0.09921502115", ",", "-", "0.3087733072", ",", "-", "0.0955771225", ",", "-", "0.17628478135", ",", "-", "0.1767348115", ",", "-", "0.1112572096", ",", "-", "0.1388699598", ",", "-", "0.2135244053", ",", "0", ",", "0", ",", "0.0947688338", ",", "0", ",", "0", ",", "-", "0.30153824", ",", "-", "0.30153824", ",", "0.209444187233", ",", "-", "0.30153824", ",", "-", "0.093514485", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0754687251", ",", "-", "0.29175796185", ",", "0.0215904897", ",", "0", ",", "-", "0.2572785773", ",", "0.2734045513", ",", "0.00454835955", ",", "0", ",", "0.1255144563", ",", "0.11234990785", ",", "-", "0.1699252756", ",", "-", "0.143353503567", ",", "0", ",", "-", "0.0946015676", ",", "-", "0.09783063135", ",", "-", "0.0946015676", ",", "-", "0.103035163133", ",", "0.0422354515333", ",", "0.1748064944", ",", "0", ",", "0.1421775591", ",", "0.0182254612", ",", "0", ",", "0", ",", "0", ",", "0.0680464565", ",", "0", ",", "0.081083358", ",", "0.1251718907", ",", "-", "0.479952068", ",", "-", "0.4763491411", ",", "-", "0.2368936517", ",", "0.0386220495", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.34739448305", ",", "-", "0.2217351333", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.19889797525", ",", "-", "0.1271902474", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0601789323", ",", "-", "0.31459834525", ",", "-", "0.2373609004", ",", "-", "0.2744027849", ",", "-", "0.12725762", ",", "0.06571819675", ",", "-", "0.0120200429", ",", "-", "0.0191135522", ",", "0", ",", "-", "0.2778186317", ",", "0", ",", "0", ",", "-", "0.10234460335", ",", "-", "0.1038165924", ",", "-", "0.1040371695", ",", "-", "0.1043151228", ",", "0", ",", "-", "0.3571113371", ",", "-", "0.3615271654", ",", "-", "0.3604766306", ",", "-", "0.44019984275", ",", "0", ",", "0", ",", "-", "0.11048998145", ",", "-", "0.10422202985", ",", "-", "0.1045823088", ",", "-", "0.1118240335", ",", "-", "0.10774320015", ",", "-", "0.10961892214", ",", "-", "0.11091650655", ",", "-", "0.1099607472", ",", "0", ",", "-", "0.33175473165", ",", "-", "0.3398275549", ",", "-", "0.33682377285", ",", "-", "0.1474419111", ",", "0.1478995734", ",", "0.1947522919", ",", "0.2025743212", ",", "0.0402406503", ",", "-", "0.00268169715", ",", "-", "0.00549205785", ",", "-", "0.3056237312", ",", "-", "0.05815414105", ",", "0", ",", "0", ",", "0", ",", "-", "0.09844303365", ",", "-", "0.09073373335", ",", "-", "0.1794394237", ",", "-", "0.09073373335", ",", "-", "0.23284709965", ",", "0.026946842", ",", "-", "0.3074770328", ",", "-", "0.2341402858", ",", "0", ",", "-", "0.306693223", ",", "-", "0.306693223", ",", "-", "0.307416155", ",", "-", "0.29446123345", ",", "-", "0.1361658762", ",", "-", "0.1480158656", ",", "-", "0.1480158656", ",", "-", "0.1405251845", ",", "-", "0.1433360059", ",", "-", "0.14914340615", ",", "0", ",", "0", ",", "-", "0.1337286942", ",", "-", "0.24805246555", ",", "-", "0.2448368329", ",", "-", "0.1176221023", ",", "-", "0.13685520885", ",", "-", "0.1481987336", ",", "-", "0.12648192395", ",", "0.03544856975", ",", "0.0552815849", ",", "0.0222026136", ",", "0.0214723118333", ",", "0.0204015161", ",", "0.0086362277", ",", "0.03544856975", ",", "0.01948178055", ",", "-", "0.3073575784", ",", "-", "0.1695714252", ",", "0.04342678505", ",", "0.02563767465", ",", "-", "0.3831192085", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2305552436", ",", "-", "0.25748156215", ",", "-", "0.1675273956", ",", "0", ",", "0.10550750895", ",", "0.10550750895", ",", "-", "0.19291231325", ",", "0", ",", "0", ",", "0.0754199861333", ",", "0.12561721865", ",", "-", "0.1789538142", ",", "0.0973080101", ",", "-", "0.15373056515", ",", "-", "0.1528805601", ",", "0.0973080101", ",", "0.0973080101", ",", "0.0973080101", ",", "-", "0.33723444045", ",", "0.0973080101", ",", "-", "0.0042357834", ",", "0", ",", "0", ",", "-", "0.15399457724", ",", "-", "0.1472476651", ",", "-", "0.1472476651", ",", "-", "0.1472476651", ",", "-", "0.1472476651", ",", "-", "0.1472476651", ",", "-", "0.1472476651", ",", "-", "0.14616779405", ",", "0", ",", "0.1597490256", ",", "-", "0.0646471497833", ",", "-", "0.3019937131", ",", "-", "0.15871355175", ",", "-", "0.0646471497833", ",", "0.1282285865", ",", "0.1282285865", ",", "-", "0.1842192723", ",", "-", "0.0002821047", ",", "0.04495909215", ",", "0.1711117593", ",", "0.1027203072", ",", "-", "0.0646471497833", ",", "0", ",", "-", "0.21110407515", ",", "-", "0.2040390204", ",", "-", "0.33156744925", ",", "0.1393975693", ",", "-", "0.0777664695", ",", "-", "0.0791841461", ",", "-", "0.26364129805", ",", "-", "0.4380766227", ",", "-", "0.21346625355", ",", "0.1123563112", ",", "0.02166729535", ",", "0", ",", "0.03206477125", ",", "0", ",", "0.0679460513125", ",", "0.0679460513125", ",", "0.0679460513125", ",", "0.06319843705", ",", "0.0596669909", ",", "0.06319843705", ",", "0.05273330795", ",", "0.0606317795", ",", "0.0606317795", ",", "0.0606317795", ",", "0.06383533685", ",", "0.0620370418", ",", "0.0620370418", ",", "0.13153502425", ",", "0.1231480818", ",", "0.02886724945", ",", "0.0382945127", ",", "0.14913751355", ",", "0.0258662232", ",", "0.065806904", ",", "0", ",", "0", ",", "0", ",", "-", "0.0309583513", ",", "0.0364622425", ",", "0", ",", "-", "0.24570351018", ",", "-", "0.193115624133", ",", "-", "0.04133236985", ",", "-", "0.193115624133", ",", "0", ",", "0.04953644905", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2410004322", ",", "0", ",", "-", "0.082170659775", ",", "0", ",", "0", ",", "-", "0.0797123009", ",", "-", "0.02770705725", ",", "-", "0.02770705725", ",", "-", "0.0309164004", ",", "0", ",", "0", ",", "-", "0.35089345175", ",", "-", "0.3297658297", ",", "-", "0.35351299075", ",", "0.1231991588", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1190975994", ",", "0", ",", "-", "0.2201127132", ",", "0", ",", "0", ",", "0", ",", "0.0273570702", ",", "-", "0.263163583", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2398452069", ",", "-", "0.2331426659", ",", "0.1245972125", ",", "0", ",", "-", "0.1680969091", ",", "-", "0.1683547712", ",", "-", "0.1890003101", ",", "-", "0.1708313045", ",", "-", "0.24279049265", ",", "0.0236776229", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0621820934", ",", "0", ",", "0.2189764031", ",", "0", ",", "0", ",", "-", "0.2749008249", ",", "0", ",", "-", "0.1812306504", ",", "-", "0.3685304015", ",", "0.25730989105", ",", "0", ",", "0.02636058945", ",", "-", "0.1010889004", ",", "-", "0.0945189028", ",", "0.2941570927", ",", "-", "0.0804588909", ",", "0", ",", "-", "0.1114752648", ",", "0", ",", "-", "0.0084090661", ",", "-", "0.0116358029", ",", "-", "0.0103434319", ",", "-", "0.0087825126", ",", "0", ",", "0", ",", "0.1224699679", ",", "0.15303070525", ",", "0", ",", "-", "0.2166272401", ",", "0", ",", "0", ",", "-", "0.1240816772", ",", "-", "0.38902906", ",", "-", "0.3937805687", ",", "-", "0.3856974728", ",", "-", "0.3919521425", ",", "-", "0.38922031415", ",", "0", ",", "-", "0.253559821", ",", "0.12067826225", ",", "0", ",", "-", "0.0411024193", ",", "-", "0.409432892", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0367364693", ",", "-", "0.4726212035", ",", "-", "0.4739491146", ",", "0", ",", "0", ",", "-", "0.44022986935", ",", "-", "0.17775064345", ",", "0", ",", "-", "0.0549788476", ",", "0", ",", "-", "0.1913926038", ",", "0", ",", "-", "0.1716145502", ",", "-", "0.0079957803", ",", "-", "0.12270830965", ",", "-", "0.05766267215", ",", "0.1743996639", ",", "-", "0.4765205547", ",", "-", "0.15701604115", ",", "-", "0.3273617436", ",", "-", "0.1254911977", ",", "-", "0.1248490455", ",", "-", "0.1284653863", ",", "0.09858749435", ",", "-", "0.1283887191", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0484100797", ",", "0.0452239209", ",", "-", "0.1833337724", ",", "-", "0.04883527815", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wilmot", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wilson", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wimbledon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Windmill", "Row\"", ",", "\"Windrush\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wingate", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wishart", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Woldingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wolsey", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wood", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wood", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Woodford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Woodside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Worple", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Worton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Wraysbury\"", ",", "\"\"", ",", "\"\"", ",", "\"Wren", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wrotham", "Park\"", ",", "\"Wrotham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wroxall", "Road\"", ",", "\"\"", ",", "\"Wrythe", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wylands", "Road\"", ",", "\"Wyld", "Way\"", ",", "\"\"", ",", "\"Wyldes", "Close\"", ",", "\"Wylie", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Wyngray", "Farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Yardley", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Yates", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Yeats", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Yew", "Tree", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"York", "Avenue\"", ",", "\"\"", ",", "\"York", "Gate\"", ",", "\"York", "Hall\"", ",", "\"York", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Young", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wilmot", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wilson", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wimbledon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"windmill", "row\"", ",", "\"windrush\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wingate", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wishart", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"woldingham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wolsey", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wood", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wood", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"woodford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"woodside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"worple", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"worton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"wraysbury\"", ",", "\"\"", ",", "\"\"", ",", "\"wren", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wrotham", "park\"", ",", "\"wrotham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wroxall", "road\"", ",", "\"\"", ",", "\"wrythe", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wylands", "road\"", ",", "\"wyld", "way\"", ",", "\"\"", ",", "\"wyldes", "close\"", ",", "\"wylie", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"wyngray", "farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"yardley", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"yates", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"yeats", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"yew", "tree", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"york", "avenue\"", ",", "\"\"", ",", "\"york", "gate\"", ",", "\"york", "hall\"", ",", "\"york", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"york", "way", "n7", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"young", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,565
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London6", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KXX:cHMNPV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"KNB:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LAM:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LAN:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LSQ:NP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LEY:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LYS:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LST:CcHM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LON:JN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"LTN:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MDV:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MNR:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MAN:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MAR:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MYB:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"MLE:CDH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "1", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.5856819207", ",", "51.5856819207", ",", "51.5822405333", ",", "51.5843078849", ",", "51.5667352927", ",", "51.4344722364", ",", "51.4776996985", ",", "51.3492980634", ",", "51.3492980634", ",", "51.589279269", ",", "51.5160129693", ",", "51.5410087885", ",", "51.4515477339", ",", "51.4510762083", ",", "51.4510762083", ",", "51.5920567997", ",", "51.5314305794", ",", "51.5336684327", ",", "51.535469074", ",", "51.4455239788", ",", "0", ",", "51.546904275", ",", "51.5344960547", ",", "51.5444589817", ",", "51.5447425253", ",", "51.5422461377", ",", "51.5467104567", ",", "51.3658530292", ",", "51.5151576105", ",", "51.5151576105", ",", "51.5981732079", ",", "51.5409131948", ",", "51.5783433308", ",", "51.5832083166", ",", "51.4929355398", ",", "51.5505697538", ",", "51.4060629914", ",", "51.412532016", ",", "51.3754561797", ",", "51.543872902", ",", "51.412532016", ",", "51.4075068011", ",", "51.5898348144", ",", "51.4152349746", ",", "51.5301467261", ",", "51.4239409853", ",", "51.4185957653", ",", "51.5515971829", ",", "51.412532016", ",", "51.412532016", ",", "51.412532016", ",", "51.4044653515", ",", "51.4030719922", ",", "51.4292064997", ",", "0", ",", "51.4906151178", ",", "51.3905295455", ",", "51.4295982215", ",", "51.4295982215", ",", "51.4026776505", ",", "51.4295982215", ",", "51.4295982215", ",", "51.4295982215", ",", "51.4295982215", ",", "0", ",", "51.4774294656", ",", "0", ",", "51.4688846246", ",", "51.5318202887", ",", "51.533675687", ",", "51.5309120169", ",", "51.5316571334", ",", "51.5304737881", ",", "51.5309192367", ",", "51.533675687", ",", "51.533675687", ",", "51.4790214795", ",", "51.4581348693", ",", "51.4806539659", ",", "51.6097629085", ",", "51.5774486263", ",", "0", ",", "51.4877583839", ",", "0", ",", "51.4976493285", ",", "51.4811990148", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5691410826", ",", "51.4356354762", ",", "0", ",", "0", ",", "0", ",", "51.4814279654", ",", "51.4575388862", ",", "0", ",", "51.4284302132", ",", "0", ",", "51.5910409373", ",", "51.4676713252", ",", "0", ",", "0", ",", "51.4356403913", ",", "0", ",", "51.540970975", ",", "0", ",", "0", ",", "51.4567183207", ",", "51.4537541502", ",", "51.4553058378", ",", "51.5003448101", ",", "51.6230598989", ",", "51.4253936325", ",", "0", ",", "0", ",", "51.5014779851", ",", "0", ",", "0", ",", "51.5012882528", ",", "34.5017858859", ",", "51.575843231", ",", "51.5261093836", ",", "51.345125207", ",", "51.3455839187", ",", "51.3455839187", ",", "51.3455839187", ",", "51.3455839187", ",", "51.3455839187", ",", "51.4218904461", ",", "51.3826966394", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.596366605", ",", "0", ",", "51.614222674", ",", "51.3837864897", ",", "51.5564399513", ",", "51.5355841309", ",", "51.2994041868", ",", "51.5172981356", ",", "51.5257990584", ",", "51.5274959071", ",", "51.5101121299", ",", "51.5100782271", ",", "51.4984920231", ",", "51.5548772312", ",", "51.5545637356", ",", "0", ",", "0", ",", "51.5814221371", ",", "51.5249366017", ",", "51.5946943744", ",", "51.6522339725", ",", "51.5249366017", ",", "51.456645561", ",", "51.4569328824", ",", "51.4565918923", ",", "51.3910355379", ",", "0", ",", "0", ",", "51.5256080351", ",", "51.5632755979", ",", "0", ",", "51.4878403903", ",", "51.3941538892", ",", "0", ",", "51.3714561353", ",", "51.5298931394", ",", "0", ",", "51.5578651479", ",", "51.6517108962", ",", "51.4453771359", ",", "0", ",", "51.4931257949", ",", "51.493560391", ",", "51.4665555182", ",", "51.4983433271", ",", "51.4949405429", ",", "51.4971367133", ",", "51.4963119525", ",", "51.4982748133", ",", "51.4604057859", ",", "51.4670017302", ",", "0", ",", "51.5217734175", ",", "51.4304690794", ",", "51.4100703117", ",", "51.4944367289", ",", "0", ",", "51.4571300579", ",", "51.4773885172", ",", "51.4790957763", ",", "0", ",", "51.668796632", ",", "51.4396371007", ",", "51.4396371007", ",", "51.5120769086", ",", "51.5105277839", ",", "0", ",", "51.6434465282", ",", "51.4040431394", ",", "0", ",", "0", ",", "51.4766281786", ",", "0", ",", "51.4405881196", ",", "51.6142008288", ",", "0", ",", "51.4876463958", ",", "51.4048262001", ",", "51.4577129317", ",", "51.6808683302", ",", "51.5326194299", ",", "51.3974333939", ",", "51.5302843554", ",", "51.5719192861", ",", "51.5719192861", ",", "51.5334953652", ",", "51.3945288706", ",", "0", ",", "51.3768470821", ",", "51.5516771248", ",", "0", ",", "51.3759176715", ",", "51.3859205789", ",", "51.3955327931", ",", "51.3918816875", ",", "51.3955327931", ",", "0", ",", "51.4097810839", ",", "0", ",", "51.3596727323", ",", "51.3869795336", ",", "51.4778224279", ",", "51.4778224279", ",", "51.3873571279", ",", "0", ",", "0", ",", "0", ",", "51.4479066398", ",", "0", ",", "0", ",", "51.4915575834", ",", "51.4564841774", ",", "51.4290149986", ",", "51.5432085723", ",", "51.4763430734", ",", "51.3816076603", ",", "51.6063891175", ",", "51.4745983892", ",", "0", ",", "0", ",", "0", ",", "51.4903036928", ",", "51.4921509132", ",", "51.5066579633", ",", "0", ",", "51.3823875041", ",", "51.6050527598", ",", "0", ",", "51.4747007651", ",", "0", ",", "51.6599874513", ",", "51.6597364522", ",", "51.6152956236", ",", "51.6287027337", ",", "0", ",", "51.6135499069", ",", "51.6174017842", ",", "51.4748146951", ",", "51.5770204317", ",", "51.4530175691", ",", "51.5963130814", ",", "51.4259192835", ",", "51.4235432246", ",", "51.4206731404", ",", "51.5135235581", ",", "51.493319077", ",", "51.5167665047", ",", "51.4278165171", ",", "0", ",", "51.3677721101", ",", "51.6070778472", ",", "51.6238590857", ",", "0", ",", "51.5384957259", ",", "51.4105729384", ",", "51.5721563972", ",", "51.3884388206", ",", "51.3884388206", ",", "51.4642857504", ",", "51.4642190915", ",", "51.6633067881", ",", "51.5053100152", ",", "51.4425841362", ",", "51.3676470226", ",", "51.5053579405", ",", "51.4839030895", ",", "51.4743388868", ",", "51.5846620181", ",", "51.4607665021", ",", "51.6005520675", ",", "51.5987785601", ",", "51.3872728161", ",", "51.6248723472", ",", "0", ",", "51.5278689996", ",", "51.536619889", ",", "51.511642018", ",", "51.3691321576", ",", "51.3620552376", ",", "51.3620552376", ",", "0", ",", "0", ",", "51.4327117965", ",", "51.5710095952", ",", "51.558838308", ",", "51.5756595724", ",", "51.5581590467", ",", "51.5581590467", ",", "0", ",", "0", ",", "51.6810989278", ",", "51.6358262068", ",", "51.6455415506", ",", "51.6086187155", ",", "51.4264661594", ",", "51.3590248031", ",", "0", ",", "51.5824213549", ",", "51.5774895663", ",", "51.5785354601", ",", "0", ",", "0", ",", "51.5098373737", ",", "51.4181096312", ",", "0", ",", "51.3557762032", ",", "51.3557762032", ",", "51.3557762032", ",", "51.3557762032", ",", "51.3557762032", ",", "51.3393241158", ",", "51.3362314394", ",", "0", ",", "51.449017728", ",", "51.3752142761", ",", "51.3752142761", ",", "51.477213083", ",", "0", ",", "51.4489572664", ",", "51.550647734", ",", "51.5642095918", ",", "51.4561786781", ",", "51.4489572664", ",", "51.4489572664", ",", "51.5629166031", ",", "51.5645738429", ",", "51.5928036741", ",", "0", ",", "0", ",", "51.5255773439", ",", "51.5297919748", ",", "51.3978723641", ",", "51.3282492046", ",", "0", ",", "0", ",", "51.3981291523", ",", "0", ",", "51.510922405", ",", "0", ",", "0", ",", "51.4372550371", ",", "51.4325532707", ",", "51.4240287448", ",", "0", ",", "0", ",", "0", ",", "51.5508471309", ",", "51.3788792068", ",", "0", ",", "51.5107646591", ",", "51.6056703038", ",", "0", ",", "0", ",", "0", ",", "51.4783145288", ",", "51.3667360488", ",", "51.4179881081", ",", "51.4648245387", ",", "0", ",", "0", ",", "51.3927083222", ",", "51.5649089907", ",", "51.6096777258", ",", "0", ",", "51.3796765714", ",", "51.5106242491", ",", "51.4901501283", ",", "51.4755031975", ",", "51.4516858808", ",", "0", ",", "0", ",", "51.4430939158", ",", "51.5149774671", ",", "0", ",", "51.5270186453", ",", "51.5554117683", ",", "51.5442985958", ",", "51.5442985958", ",", "0", ",", "51.6117666363", ",", "51.5986529459", ",", "51.4084419074", ",", "51.4084419074", ",", "51.4112217064", ",", "51.4647050616", ",", "51.4648811917", ",", "51.4605960032", ",", "51.4625819702", ",", "51.4685006603", ",", "51.4635417266", ",", "51.4528950382", ",", "51.4544111726", ",", "51.4725630702", ",", "51.4716272991", ",", "51.4608604344", ",", "0", ",", "51.5707905166", ",", "51.4446257667", ",", "51.5735281157", ",", "51.5430028512", ",", "51.6009663862", ",", "51.3809933012", ",", "0", ",", "51.5373526076", ",", "51.6631754488", ",", "51.5565689068", ",", "51.55633415", ",", "51.5565689068", ",", "51.5771403903", ",", "51.5739712955", ",", "51.5581819584", ",", "51.5589636266", ",", "51.5698575926", ",", "51.5739210961", ",", "51.5689328545", ",", "51.5602600797", ",", "51.5632259097", ",", "51.5681983227", ",", "51.5533222451", ",", "51.5312657876", ",", "51.6215274934", ",", "51.5366446216", ",", "51.5247275811", ",", "0", ",", "51.6231468716", ",", "0", ",", "51.5972217086", ",", "51.5271122644", ",", "51.4674931747", ",", "0", ",", "51.5172889389", ",", "51.5497510529", ",", "51.4698537874", ",", "51.4698537874", ",", "51.4827000618", ",", "51.4855079659", ",", "51.3977857092", ",", "0", ",", "51.5124587242", ",", "51.5122289216", ",", "51.511046972", ",", "51.5122425483", ",", "51.483107012", ",", "51.5773781368", ",", "51.5773781368", ",", "51.6082782358", ",", "51.6082782358", ",", "51.4963850598", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6247559023", ",", "0", ",", "51.4651268197", ",", "51.384307792", ",", "51.6474609233", ",", "51.6448499104", ",", "51.6445916301", ",", "51.3625762986", ",", "0", ",", "51.4644576189", ",", "51.6097873329", ",", "51.5557124801", ",", "0", ",", "51.3760740568", ",", "51.3993805769", ",", "51.5512606046", ",", "51.47498753", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.43855416", ",", "0", ",", "51.3593915533", ",", "51.3840184705", ",", "51.475350525", ",", "51.475350525", ",", "51.5874642094", ",", "51.4012039402", ",", "51.6309799359", ",", "51.6549666667", ",", "51.371709996", ",", "51.3870779879", ",", "0", ",", "0", ",", "51.5783185109", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4497091335", ",", "51.5074908135", ",", "0", ",", "51.318199728", ",", "51.4577363993", ",", "51.4995553689", ",", "51.4917320178", ",", "0", ",", "0", ",", "0", ",", "51.4861734329", ",", "51.50667938", ",", "51.5656542361", ",", "0", ",", "51.5423416841", ",", "51.6111455132", ",", "51.5162788257", ",", "0", ",", "51.4738716356", ",", "51.5811623467", ",", "51.5546186778", ",", "51.5482994712", ",", "0", ",", "0", ",", "51.4429130365", ",", "51.652917225", ",", "0", ",", "0", ",", "0", ",", "51.4777957035", ",", "51.6397995532", ",", "0", ",", "0", ",", "51.3510981584", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5505595377", ",", "51.5344703438", ",", "0", ",", "51.5179603762", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5652924614", ",", "0", ",", "0", ",", "51.3641369969", ",", "51.5906815518", ",", "51.5906815518", ",", "0", ",", "0", ",", "51.4652898647", ",", "51.4648806061", ",", "51.4331667818", ",", "0", ",", "0", ",", "0", ",", "51.462913055", ",", "51.4114434239", ",", "51.3668893597", ",", "51.3667755742", ",", "51.3668893597", ",", "0", ",", "51.4097668166", ",", "51.5516850914", ",", "51.5327353726", ",", "51.6189066625", ",", "51.3920766242", ",", "51.3227353593", ",", "51.5983730863", ",", "51.5062216718", ",", "51.4138032593", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5181750744", ",", "0", ",", "51.5175456785", ",", "51.4703995225", ",", "51.4108108075", ",", "51.385563857", ",", "51.5166382401", ",", "51.3502274584", ",", "0", ",", "51.5032076212", ",", "51.5032076212", ",", "51.5032076212", ",", "51.505637301", ",", "51.5057314785", ",", "51.5096697093", ",", "0", ",", "51.5030020264", ",", "51.4954619455", ",", "51.4954619455", ",", "51.4954619455", ",", "0", ",", "51.5020157833", ",", "51.5020157833", ",", "51.5115703487", ",", "51.5415147863", ",", "51.5232746738", ",", "51.5053175819", ",", "0", ",", "51.5316251713", ",", "0", ",", "51.5307280368", ",", "0", ",", "0", ",", "51.5148499738", ",", "51.5164541511", ",", "0", ",", "51.4760704131", ",", "51.4562265208", ",", "51.6207872972", ",", "0", ",", "51.4760704131", ",", "0", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.414862244", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4022519106", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "51.4760704131", ",", "0", ",", "51.5322347387", ",", "0", ",", "0", ",", "0", ",", "51.516475725", ",", "51.5179977171", ",", "51.5036937377", ",", "51.5036937377", ",", "51.5375646479", ",", "51.3706434353", ",", "0", ",", "0", ",", "51.5632230283", ",", "51.5190249671", ",", "0", ",", "51.6040509269", ",", "51.6029577859", ",", "51.6048617138", ",", "51.6048617138", ",", "0", ",", "51.4698945153", ",", "51.6044717676", ",", "51.6041720461", ",", "51.4737353761", ",", "51.461605232", ",", "51.4716979967", ",", "51.5977200605", ",", "51.6002863626", ",", "51.5335710782", ",", "0", ",", "51.5215945594", ",", "51.4611635412", ",", "51.345509745", ",", "0", ",", "0", ",", "51.5418854231", ",", "51.5515448102", ",", "51.5515448102", ",", "51.5515448102", ",", "51.3987541078", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3786222288", ",", "51.5149148823", ",", "51.5844280153", ",", "51.5149148823", ",", "51.5149148823", ",", "51.4926760201", ",", "0", ",", "51.5149148823", ",", "51.5149148823", ",", "51.5149148823", ",", "51.5149148823", ",", "51.4343276524", ",", "51.4456116883", ",", "51.3913375251", ",", "51.3875799539", ",", "51.630595916", ",", "51.4304820585", ",", "51.4326578152", ",", "51.4326578152", ",", "51.4326578152", ",", "51.4779694092", ",", "51.4816793437", ",", "51.4236732147", ",", "51.4978787472", ",", "51.5154003313", ",", "51.5154003313", ",", "51.6435351385", ",", "0", ",", "0", ",", "0", ",", "51.4095839689", ",", "51.4075121983", ",", "0", ",", "51.5105765477", ",", "51.5871978477", ",", "51.5214223623", ",", "51.5225498101", ",", "51.6491227568", ",", "51.6491227568", ",", "51.6491227568", ",", "51.4856705737", ",", "0", ",", "51.4168545934", ",", "51.6164024637", ",", "51.5015752153", ",", "51.345508054", ",", "51.4432877014", ",", "51.5984243367", ",", "51.5976036983", ",", "51.4417148392", ",", "51.5644017854", ",", "51.5660279731", ",", "0", ",", "0", ",", "51.5307534737", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4772741967", ",", "51.5412764115", ",", "0", ",", "51.5487699459", ",", "51.4659102192", ",", "51.4869751028", ",", "51.4869751028", ",", "0", ",", "51.4677696861", ",", "51.470776063", ",", "51.4869751028", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5453333898", ",", "0", ",", "51.6070328337", ",", "51.5946018829", ",", "51.6070328337", ",", "51.4689396825", ",", "51.3903432851", ",", "0", ",", "51.606605918", ",", "51.5984735055", ",", "51.3646221684", ",", "51.5748313833", ",", "0", ",", "51.4614014555", ",", "0", ",", "51.512510988", ",", "51.3806771433", ",", "51.50214516", ",", "51.3301396861", ",", "51.50855223", ",", "51.50855223", ",", "51.5508571078", ",", "0", ",", "51.4098776836", ",", "51.4136403218", ",", "51.6326306842", ",", "51.632466977", ",", "0", ",", "51.61505117", ",", "51.6459873753", ",", "0", ",", "0", ",", "51.4014127757", ",", "51.4997732139", ",", "51.5007086601", ",", "51.5427733666", ",", "51.3903028315", ",", "51.3869992065", ",", "51.3912365796", ",", "51.3912365796", ",", "51.612172056", ",", "51.4906965242", ",", "51.4882876216", ",", "51.3657574179", ",", "51.4912686022", ",", "51.4923665635", ",", "51.49137971", ",", "0", ",", "51.4252503705", ",", "51.4121513861", ",", "0", ",", "51.5468806049", ",", "51.5468998147", ",", "51.5468998147", ",", "51.5461065888", ",", "51.5487844097", ",", "0", ",", "51.5376752151", ",", "51.4705724554", ",", "51.5141319207", ",", "51.5139486712", ",", "0", ",", "51.435501976", ",", "51.4783230983", ",", "51.4137170665", ",", "51.5392906571", ",", "51.3613708478", ",", "51.3778057665", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4380349799", ",", "51.3228282043", ",", "51.3255866936", ",", "0", ",", "0", ",", "0", ",", "51.4577391422", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5547474644", ",", "51.463453255", ",", "51.5600398177", ",", "51.5621055777", ",", "51.5593776483", ",", "51.6034652495", ",", "51.6107403522", ",", "51.5103557923", ",", "51.3879897132", ",", "51.3190992064", ",", "51.4634831792", ",", "51.5526313425", ",", "51.5823664861", ",", "51.4544838851", ",", "51.5619214598", ",", "0", ",", "51.5680370645", ",", "51.3476451885", ",", "0", ",", "51.4632892204", ",", "51.5142314967", ",", "51.4912733846", ",", "51.4903876076", ",", "51.6321803736", ",", "51.4331707644", ",", "51.5310577521", ",", "51.5490187311", ",", "51.6413888634", ",", "51.4747931586", ",", "0", ",", "51.4930114341", ",", "51.4566406473", ",", "51.4533076286", ",", "0", ",", "51.5501602603", ",", "0", ",", "0", ",", "51.4752332708", ",", "51.3259544293", ",", "51.5471778087", ",", "51.45080587", ",", "51.4809097376", ",", "51.5711032203", ",", "51.488215249", ",", "0", ",", "51.4223044899", ",", "51.4004786168", ",", "51.4807509397", ",", "0", ",", "0", ",", "51.5654965743", ",", "0", ",", "0", ",", "0", ",", "51.5782368938", ",", "51.5482173241", ",", "0", ",", "51.6334959314", ",", "51.529886685", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4149744666", ",", "51.4149744666", ",", "0", ",", "51.4149744666", ",", "51.4149744666", ",", "0", ",", "51.3073725642", ",", "51.4279477016", ",", "51.4260691455", ",", "51.5527851433", ",", "51.3834685929", ",", "51.3850370164", ",", "51.3942571542", ",", "51.5461086978", ",", "51.3903230614", ",", "51.3661891825", ",", "0", ",", "51.3888532709", ",", "0", ",", "51.4360508676", ",", "51.3893186298", ",", "51.51814", ",", "51.5864039652", ",", "51.4717414217", ",", "51.485287738", ",", "51.4979089625", ",", "0", ",", "0", ",", "51.5629188695", ",", "51.5653291913", ",", "0", ",", "51.3610828879", ",", "51.6712292624", ",", "51.3795920688", ",", "51.5449747513", ",", "51.5110782116", ",", "51.5577375031", ",", "51.6774912093", ",", "51.4723833192", ",", "51.6774912093", ",", "51.5558929427", ",", "0", ",", "51.6092110444", ",", "51.608930452", ",", "51.6115207627", ",", "51.4578445269", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.501471822", ",", "51.3889760797", ",", "0", ",", "0", ",", "51.4671572126", ",", "51.6775346363", ",", "51.387607094", ",", "51.5616220699", ",", "51.63449638", ",", "51.389453362", ",", "51.538433565", ",", "51.538433565", ",", "51.5418494472", ",", "51.5601688688", ",", "51.5464669496", ",", "51.4674991151", ",", "51.481337664", ",", "51.5712212694", ",", "51.609220924", ",", "51.5436671133", ",", "51.5713251014", ",", "51.4512127597", ",", "51.4875399495", ",", "51.5523049531", ",", "51.5529474032", ",", "51.4089288051", ",", "51.4588002476", ",", "51.5545266926", ",", "51.3653662651", ",", "0", ",", "51.3613759256", ",", "51.3613759256", ",", "51.3613759256", ",", "51.4078716069", ",", "51.6528668874", ",", "51.5720978417", ",", "51.6138109975", ",", "51.6065071013", ",", "51.5775101494", ",", "51.4315534426", ",", "51.4782792762", ",", "51.5657124215", ",", "51.4567021096", ",", "51.3613759256", ",", "51.5210055216", ",", "51.6527430623", ",", "51.3613759256", ",", "51.3613759256", ",", "51.4904129874", ",", "51.5958435623", ",", "51.458869112", ",", "51.3578056757", ",", "51.522734179", ",", "51.4590788792", ",", "51.458869112", ",", "51.5403986393", ",", "0", ",", "51.5093858526", ",", "51.3989418847", ",", "51.4131796558", ",", "0", ",", "51.4867328765", ",", "51.5570963147", ",", "51.5128006272", ",", "51.5721621572", ",", "51.6392292637", ",", "51.6270501773", ",", "51.6271651965", ",", "0", ",", "51.363505957", ",", "51.5529586712", ",", "0", ",", "51.4126916582", ",", "51.5123461416", ",", "0", ",", "51.3125224843", ",", "51.3987608242", ",", "51.3987608242", ",", "51.4093101864", ",", "51.4710761158", ",", "51.3742139326", ",", "51.573506237", ",", "51.400146739", ",", "51.5341476846", ",", "51.4539592416", ",", "51.6184727079", ",", "51.4538865171", ",", "51.5131548995", ",", "51.5118542142", ",", "51.5129947451", ",", "51.513775024", ",", "51.4335828505", ",", "51.4589015165", ",", "51.3851068235", ",", "0", ",", "0", ",", "51.5286434294", ",", "51.5286186902", ",", "51.5467013918", ",", "51.5495481155", ",", "51.5350162805", ",", "51.5394193717", ",", "51.430524449", ",", "51.6374090383", ",", "51.650765749", ",", "51.5778457076", ",", "51.5163026686", ",", "51.5641416804", ",", "0", ",", "0", ",", "51.5456321337", ",", "51.4417394862", ",", "0", ",", "51.4575179519", ",", "51.520423389", ",", "51.4354170459", ",", "51.3906228501", ",", "51.391244784", ",", "51.5131204479", ",", "51.4613533746", ",", "51.6383739014", ",", "0", ",", "51.585649003", ",", "51.585649003", ",", "51.4565174431", ",", "0", ",", "51.5460741573", ",", "51.5313545708", ",", "51.5313738098", ",", "51.5313545708", ",", "51.3409604926", ",", "51.4889825328", ",", "51.5789047187", ",", "51.5703664762", ",", "0", ",", "0", ",", "0", ",", "51.4680863313", ",", "0", ",", "51.4988667627", ",", "51.4440457042", ",", "51.5350142457", ",", "51.5483947937", ",", "51.3751377697", ",", "51.481029524", ",", "51.4908721576", ",", "51.5341323549", ",", "51.3996402419", ",", "51.3762204749", ",", "0", ",", "0", ",", "51.5264152232", ",", "51.5004793609", ",", "51.3767657083", ",", "51.313821228", ",", "51.486115646", ",", "51.6186754428", ",", "51.619755923", ",", "51.5350505692", ",", "0", ",", "51.475874021", ",", "51.4752453878", ",", "0", ",", "51.5497010776", ",", "51.6072157638", ",", "51.6116085692", ",", "51.6245715658", ",", "51.5022071201", ",", "51.5213795511", ",", "51.4625060936", ",", "51.590027218", ",", "51.502703215", ",", "51.4949131736", ",", "51.5313828934", ",", "0", ",", "0", ",", "51.4266615922", ",", "51.4350377979", ",", "51.5124549086", ",", "0", ",", "51.6446221745", ",", "51.4662266948", ",", "51.4639056301", ",", "51.5523797778", ",", "51.5523797778", ",", "0", ",", "51.5781692083", ",", "0", ",", "51.4284986274", ",", "51.4316151577", ",", "51.5555893178", ",", "0", ",", "51.5467570095", ",", "51.5455710384", ",", "51.5464582763", ",", "51.5218518818", ",", "51.521044541", ",", "51.4900146505", ",", "0", ",", "51.5151838438", ",", "51.4687316903", ",", "51.5215607778", ",", "51.5966499154", ",", "0", ",", "51.3895575272", ",", "0", ",", "0", ",", "51.5520226893", ",", "51.5796454732", ",", "0", ",", "51.5827135893", ",", "51.5770575236", ",", "51.4911574799", ",", "51.4849400659", ",", "0", ",", "51.5002252318", ",", "51.5002252318", ",", "51.6086697644", ",", "51.5575160814", ",", "51.597056695", ",", "0", ",", "51.3991590736", ",", "51.3895272265", ",", "51.554190895", ",", "0", ",", "51.5208038207", ",", "51.5208038207", ",", "51.5812330866", ",", "51.4901797249", ",", "51.6558978775", ",", "51.5630005841", ",", "51.5641317811", ",", "51.4483651442", ",", "51.4162471243", ",", "51.5678284867", ",", "51.5682633379", ",", "0", ",", "51.6050049544", ",", "51.546676958", ",", "51.4579398733", ",", "51.4591508646", ",", "51.4591508646", ",", "51.4568971475", ",", "51.4590462142", ",", "51.3519457646", ",", "51.4021602092", ",", "51.6440258301", ",", "0", ",", "51.4282286041", ",", "51.5475105263", ",", "51.4876791252", ",", "51.5023951214", ",", "51.5331258753", ",", "51.3886139282", ",", "51.3884924834", ",", "51.3058593945", ",", "51.629467079", ",", "51.5942007985", ",", "51.4063984602", ",", "51.4063984602", ",", "51.3661077715", ",", "51.5801095492", ",", "51.6249086983", ",", "0", ",", "51.4609310513", ",", "0", ",", "0", ",", "51.5707742843", ",", "51.6263291715", ",", "51.4436076118", ",", "51.6514754297", ",", "51.3093321312", ",", "51.4498130692", ",", "51.552380969", ",", "51.61719595", ",", "51.4768784104", ",", "51.4586167872", ",", "51.5317361523", ",", "51.4725615963", ",", "51.6412353535", ",", "51.5099809498", ",", "51.5099809498", ",", "51.5848786142", ",", "51.5824123016", ",", "0", ",", "51.5587355112", ",", "51.3630263506", ",", "51.4449003648", ",", "0", ",", "51.5276281532", ",", "51.5320242912", ",", "51.3599668786", ",", "51.305477903", ",", "51.3071475317", ",", "51.5531368601", ",", "0", ",", "0", ",", "51.6140435032", ",", "51.4338724414", ",", "51.5984090448", ",", "51.4694168392", ",", "51.5546678976", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5043839882", ",", "0", ",", "0", ",", "51.4095689799", ",", "51.4996477452", ",", "51.4997083376", ",", "0", ",", "51.5790797868", ",", "51.4393529019", ",", "51.6275464517", ",", "0", ",", "0", ",", "51.6028127808", ",", "51.6032506406", ",", "51.5599081289", ",", "51.6041069946", ",", "51.5223756276", ",", "51.3594379735", ",", "51.3597030675", ",", "51.6447671135", ",", "51.6426147717", ",", "51.3540525089", ",", "0", ",", "0", ",", "0", ",", "51.569650304", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4139704309", ",", "51.4162616027", ",", "51.4159311686", ",", "51.4071142868", ",", "51.4149127526", ",", "51.4083198941", ",", "51.4083198941", ",", "51.5682632603", ",", "51.4172481448", ",", "0", ",", "51.4569344809", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5491684224", ",", "51.5256491578", ",", "0", ",", "51.5740240491", ",", "0", ",", "51.586944647", ",", "51.5843412316", ",", "51.4412841091", ",", "51.4412841091", ",", "0", ",", "0", ",", "51.5893755818", ",", "51.5967017936", ",", "51.620100372", ",", "51.5359147267", ",", "51.4202591711", ",", "51.594436895", ",", "51.3880518594", ",", "51.5395069204", ",", "51.3860966417", ",", "51.5408158651", ",", "51.594436895", ",", "0", ",", "51.4091241301", ",", "51.408785546", ",", "51.4089458714", ",", "0", ",", "51.586464259", ",", "51.5910015123", ",", "51.5094261944", ",", "51.5660514302", ",", "0", ",", "51.4515969313", ",", "51.4382935372", ",", "51.5173529907", ",", "51.5491855782", ",", "51.5478475143", ",", "51.5466371455", ",", "51.525007166", ",", "51.5192317742", ",", "51.5213329203", ",", "51.5259633612", ",", "51.5259293464", ",", "51.3836386642", ",", "51.5018054935", ",", "51.4039952976", ",", "51.4039952976", ",", "0", ",", "0", ",", "0", ",", "51.6046559612", ",", "51.3945734046", ",", "0", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "-", "0.2828869799", ",", "-", "0.2828869799", ",", "-", "0.26240492385", ",", "-", "0.2481295", ",", "-", "0.2640855979", ",", "-", "0.1282868125", ",", "0.0935224915", ",", "-", "0.10079078615", ",", "-", "0.10079078615", ",", "-", "0.3574586112", ",", "0.0557495065", ",", "-", "0.1965143801", ",", "0.0459069473", ",", "0.0471596642", ",", "0.0471596642", ",", "-", "0.3158230383", ",", "-", "0.4182942094", ",", "-", "0.41287460695", ",", "-", "0.4267190778", ",", "0.0154516392", ",", "0", ",", "-", "0.0757330371", ",", "-", "0.076119479", ",", "-", "0.0757785286", ",", "-", "0.0766174933", ",", "-", "0.0773861732", ",", "-", "0.0697748360333", ",", "-", "0.17770429785", ",", "-", "0.3696173272", ",", "-", "0.3696173272", ",", "0.0802010664", ",", "-", "0.20170974885", ",", "-", "0.1811809429", ",", "-", "0.1800195449", ",", "0.0558274125", ",", "-", "0.03242051585", ",", "-", "0.28083215", ",", "-", "0.3018998611", ",", "-", "0.2126419342", ",", "-", "0.3752899539", ",", "-", "0.3018998611", ",", "-", "0.306077627433", ",", "0.1373522053", ",", "-", "0.28099376605", ",", "-", "0.4658436211", ",", "-", "0.3214937427", ",", "-", "0.2797002957", ",", "0.0741948301", ",", "-", "0.3018998611", ",", "-", "0.3018998611", ",", "-", "0.3018998611", ",", "-", "0.30418430705", ",", "-", "0.3045305918", ",", "-", "0.268965598", ",", "0", ",", "0.14001833095", ",", "-", "0.2508634053", ",", "-", "0.07965942505", ",", "-", "0.07965942505", ",", "0.0041135681", ",", "-", "0.07965942505", ",", "-", "0.07965942505", ",", "-", "0.07965942505", ",", "-", "0.07965942505", ",", "0", ",", "-", "0.21644172405", ",", "0", ",", "-", "0.0920102611", ",", "-", "0.12495924615", ",", "-", "0.1212061643", ",", "-", "0.11850123585", ",", "-", "0.1226301875", ",", "-", "0.122674070733", ",", "-", "0.1203536593", ",", "-", "0.1212061643", ",", "-", "0.1212061643", ",", "0.1040821662", ",", "-", "0.2940338197", ",", "-", "0.18484022805", ",", "0.2400729511", ",", "-", "0.29187849665", ",", "0", ",", "0.04435156065", ",", "0", ",", "-", "0.0603753205", ",", "0.0757657346", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0117879256", ",", "-", "0.0626296642", ",", "0", ",", "0", ",", "0", ",", "0.0199294148", ",", "-", "0.3326119214", ",", "0", ",", "-", "0.0381907783", ",", "0", ",", "-", "0.1650095895", ",", "-", "0.04385808925", ",", "0", ",", "0", ",", "-", "0.0236087431", ",", "0", ",", "-", "0.257978386475", ",", "0", ",", "0", ",", "-", "0.3528081996", ",", "-", "0.34761816355", ",", "-", "0.3537226783", ",", "-", "0.1624021732", ",", "0.0301947721", ",", "-", "0.0453694795", ",", "0", ",", "0", ",", "-", "0.2945552123", ",", "0", ",", "0", ",", "-", "0.161204329575", ",", "-", "0.163693816333", ",", "0.1764003412", ",", "0.1924380423", ",", "0.13173875805", ",", "0.1307476505", ",", "0.1307476505", ",", "0.1307476505", ",", "0.1307476505", ",", "0.1307476505", ",", "0.11069839535", ",", "-", "0.2684074832", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.348900838", ",", "0", ",", "0.2147679514", ",", "0.0609342438", ",", "0.18924404995", ",", "-", "0.0769387692", ",", "-", "0.1146789201", ",", "-", "0.20991902575", ",", "-", "0.215909542633", ",", "-", "0.2149397506", ",", "-", "0.1984122742", ",", "-", "0.20470415825", ",", "-", "0.0364439365", ",", "-", "0.1399008808", ",", "-", "0.1445226295", ",", "0", ",", "0", ",", "-", "0.43190168225", ",", "0.0136156756", ",", "-", "0.0654981286", ",", "-", "0.07451294145", ",", "0.0136156756", ",", "-", "0.02058536114", ",", "-", "0.0138601012", ",", "-", "0.02401365005", ",", "0.0893332302", ",", "0", ",", "0", ",", "0.2174275219", ",", "0.02419726505", ",", "0", ",", "0.0906955551", ",", "-", "0.1040437312", ",", "0", ",", "0.0460983837", ",", "-", "0.2855133878", ",", "0", ",", "-", "0.2855579471", ",", "-", "0.12385320975", ",", "-", "0.01334465735", ",", "0", ",", "-", "0.12139747775", ",", "-", "0.12523328135", ",", "-", "0.12358336125", ",", "-", "0.111785951743", ",", "-", "0.12016311815", ",", "-", "0.1085396174", ",", "-", "0.1123268291", ",", "-", "0.1052291316", ",", "-", "0.116846472817", ",", "-", "0.1471127631", ",", "0", ",", "0.212137982", ",", "0.0326643591", ",", "-", "0.2304605253", ",", "-", "0.2326117066", ",", "0", ",", "0.009132489", ",", "-", "0.3634545817", ",", "-", "0.36368149195", ",", "0", ",", "-", "0.1596415728", ",", "-", "0.09775020185", ",", "-", "0.09775020185", ",", "-", "0.175621460267", ",", "-", "0.1189305845", ",", "0", ",", "-", "0.1688347036", ",", "-", "0.07572669515", ",", "0", ",", "0", ",", "0.085019835", ",", "0", ",", "-", "0.1137478987", ",", "-", "0.2639866523", ",", "0", ",", "-", "0.0171973452", ",", "-", "0.1648970703", ",", "-", "0.332835892", ",", "-", "0.03902875705", ",", "-", "0.3144709859", ",", "-", "0.11584741635", ",", "0.0639692486", ",", "-", "0.13967419115", ",", "-", "0.13967419115", ",", "0.0629177252", ",", "-", "0.1873964293", ",", "0", ",", "-", "0.03717131095", ",", "-", "0.18505046835", ",", "0", ",", "-", "0.22258174445", ",", "-", "0.30065181155", ",", "-", "0.0223552344", ",", "-", "0.02342548995", ",", "-", "0.0223552344", ",", "0", ",", "-", "0.25918072745", ",", "0", ",", "-", "0.18654653205", ",", "-", "0.023636776", ",", "0.1172333849", ",", "0.1172333849", ",", "-", "0.3017340186", ",", "0", ",", "0", ",", "0", ",", "-", "0.06278302955", ",", "0", ",", "0", ",", "0.12603090015", ",", "-", "0.4094359621", ",", "0.109091819", ",", "-", "0.0637311901", ",", "-", "0.1305476826", ",", "-", "0.09290018165", ",", "-", "0.1938521354", ",", "-", "0.121354862033", ",", "0", ",", "0", ",", "0", ",", "-", "0.0969633428", ",", "-", "0.0927627255", ",", "-", "0.2542367916", ",", "0", ",", "0.0591755292", ",", "0.1657019395", ",", "0", ",", "-", "0.132170072", ",", "0", ",", "-", "0.0506447604", ",", "-", "0.0534027582", ",", "1.913715e-05", ",", "0.00298578015", ",", "0", ",", "-", "0.0174054221", ",", "-", "0.01173371765", ",", "0.18145885485", ",", "-", "0.34450752015", ",", "0.1428148904", ",", "0.0329145498", ",", "-", "0.295629583", ",", "-", "0.2905541661", ",", "-", "0.3022108261", ",", "-", "0.2177488266", ",", "-", "0.21907008215", ",", "-", "0.22850434625", ",", "0.02120337785", ",", "0", ",", "-", "0.0306849073", ",", "-", "0.3296079043", ",", "-", "0.1866859401", ",", "0", ",", "-", "0.04553058695", ",", "-", "0.17268383465", ",", "-", "0.2624720524", ",", "0.0422852494", ",", "0.0422852494", ",", "-", "0.1631026577", ",", "-", "0.1645882195", ",", "-", "0.0865153442", ",", "-", "0.45218214655", ",", "-", "0.1977328647", ",", "-", "0.12583417815", ",", "-", "0.09836430015", ",", "-", "0.26947301645", ",", "-", "0.2865821466", ",", "0.1357235687", ",", "-", "0.0759164236", ",", "0.169336194", ",", "-", "0.03876995395", ",", "-", "0.2574121619", ",", "-", "0.1691204363", ",", "0", ",", "-", "0.37321432485", ",", "-", "0.0650058481", ",", "-", "0.28178157655", ",", "-", "0.0045067121", ",", "-", "0.0005910231", ",", "-", "0.0005910231", ",", "0", ",", "0", ",", "0.0257141036", ",", "-", "0.02594592835", ",", "-", "0.0539638575", ",", "-", "0.0120504560667", ",", "-", "0.055572588375", ",", "-", "0.055572588375", ",", "0", ",", "0", ",", "-", "0.0412610073", ",", "-", "0.0129583242", ",", "-", "0.0315629865", ",", "-", "0.4288200025", ",", "-", "0.1141138057", ",", "0.03101478245", ",", "0", ",", "-", "0.4427864717", ",", "-", "0.0637608797", ",", "-", "0.0732134891", ",", "0", ",", "0", ",", "0.0627709907", ",", "0.09335814105", ",", "0", ",", "-", "0.3118071353", ",", "-", "0.3118071353", ",", "-", "0.3118071353", ",", "-", "0.3118071353", ",", "-", "0.3118071353", ",", "0.0305600623", ",", "0.0302439112", ",", "0", ",", "-", "0.32374038305", ",", "-", "0.08494680125", ",", "-", "0.08494680125", ",", "0.133234135", ",", "0", ",", "0.0129546388", ",", "-", "0.0303688783", ",", "0.2348098206", ",", "0.0124302855", ",", "0.0129546388", ",", "0.0129546388", ",", "-", "0.0439640245", ",", "-", "0.04007645685", ",", "-", "0.0588288135", ",", "0", ",", "0", ",", "-", "0.45001730555", ",", "-", "0.4467456352", ",", "529794004.053", ",", "-", "0.1063043731", ",", "0", ",", "0", ",", "-", "0.128678367", ",", "0", ",", "-", "0.1284188683", ",", "0", ",", "0", ",", "-", "0.1271298746", ",", "-", "0.11740232105", ",", "-", "0.11437239475", ",", "0", ",", "0", ",", "0", ",", "-", "0.1375482556", ",", "-", "0.1104375231", ",", "0", ",", "-", "0.1818420468", ",", "-", "0.17499823655", ",", "0", ",", "0", ",", "0", ",", "0.13719567295", ",", "-", "0.1911591847", ",", "-", "0.0437653898", ",", "-", "0.2530625833", ",", "0", ",", "0", ",", "-", "0.1877199493", ",", "0.1705030852", ",", "-", "0.01762471715", ",", "0", ",", "-", "0.08780707605", ",", "0.02589027585", ",", "0.1282631126", ",", "0.1702876047", ",", "-", "0.4230238169", ",", "0", ",", "0", ",", "-", "0.2172475053", ",", "-", "0.00535910275", ",", "0", ",", "-", "0.097072528", ",", "0.1084070938", ",", "0.0949848765", ",", "0.0949848765", ",", "0", ",", "-", "0.1642893166", ",", "-", "0.1727743718", ",", "-", "0.170108618", ",", "-", "0.170108618", ",", "-", "0.07476375465", ",", "-", "0.0125524749571", ",", "-", "0.012180775", ",", "-", "0.01106560074", ",", "-", "0.0102363723", ",", "-", "0.0257380641", ",", "-", "0.01061932955", ",", "-", "0.0165158945", ",", "-", "0.016032735", ",", "-", "0.0136179901", ",", "-", "0.0303765033", ",", "-", "0.012791003275", ",", "0", ",", "0.27074226", ",", "-", "0.1333976931", ",", "0.0829865108", ",", "-", "0.44106085325", ",", "0.2254877389", ",", "-", "0.25663757015", ",", "0", ",", "0.17009999635", ",", "-", "0.0307119029", ",", "-", "0.00584787845", ",", "-", "0.0113545722", ",", "-", "0.00584787845", ",", "-", "0.0079855128", ",", "-", "0.0098920028", ",", "-", "0.006837681", ",", "-", "0.00758978085", ",", "-", "0.0083328041", ",", "0.01491426565", ",", "0.00893018308", ",", "0.00788276505", ",", "0.00956450725", ",", "0.00732587443333", ",", "0.0055071346", ",", "0.0069020663", ",", "0.1844084597", ",", "-", "0.2216618592", ",", "0.0236690822", ",", "0", ",", "-", "0.1018222699", ",", "0", ",", "-", "0.1868881479", ",", "-", "0.03646692605", ",", "-", "0.40099769235", ",", "0", ",", "-", "0.4289239135", ",", "-", "0.26487649525", ",", "-", "0.10667341805", ",", "-", "0.10667341805", ",", "-", "0.21886455075", ",", "-", "0.20250790845", ",", "0.0457206779", ",", "0", ",", "-", "0.03971305275", ",", "-", "0.0415676911", ",", "-", "0.02738659125", ",", "-", "0.0311037611", ",", "-", "0.1780454822", ",", "-", "0.2066930844", ",", "-", "0.2066930844", ",", "0.0849309582", ",", "0.0849309582", ",", "0.13009521475", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1374267543", ",", "0", ",", "0.18905230375", ",", "-", "0.2407386787", ",", "-", "0.0724457696", ",", "-", "0.06051609035", ",", "-", "0.0560463046", ",", "-", "0.18531135275", ",", "0", ",", "-", "0.059897278", ",", "0.2298190634", ",", "0.12860352885", ",", "0", ",", "-", "0.2364993926", ",", "-", "0.1259532325", ",", "0.11868762885", ",", "-", "0.1403089715", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0917086634", ",", "0", ",", "-", "0.12949650315", ",", "0.04255550875", ",", "-", "0.3346336728", ",", "-", "0.3346336728", ",", "0.2023209194", ",", "-", "0.199798711", ",", "-", "0.187478443", ",", "-", "0.1087480715", ",", "-", "0.03115529025", ",", "-", "0.0244086728", ",", "0", ",", "0", ",", "-", "0.190043761", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2161334674", ",", "0.11298843805", ",", "0", ",", "-", "0.1388507028", ",", "0.13630604285", ",", "-", "0.2999434814", ",", "-", "0.2916057496", ",", "0", ",", "0", ",", "0", ",", "-", "0.15046948865", ",", "0.12653314395", ",", "-", "0.0740900609", ",", "0", ",", "0.0049953871", ",", "-", "0.46414680085", ",", "-", "0.0985868445", ",", "0", ",", "0.1450882812", ",", "0.118189959233", ",", "0.05940147525", ",", "0.0577024991", ",", "0", ",", "0", ",", "-", "0.3869629591", ",", "-", "0.0857747797", ",", "0", ",", "0", ",", "0", ",", "0.1062364107", ",", "-", "0.161610864", ",", "0", ",", "0", ",", "-", "0.06925732445", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.110526850886", ",", "-", "0.1085422221", ",", "0", ",", "-", "0.0817046369938", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.19615953785", ",", "0", ",", "0", ",", "-", "0.0821910928", ",", "-", "0.02168589735", ",", "-", "0.02168589735", ",", "0", ",", "0", ",", "-", "0.0145386086", ",", "-", "0.01692475725", ",", "-", "0.31517782605", ",", "0", ",", "0", ",", "0", ",", "-", "0.00828559705", ",", "-", "0.16049773375", ",", "0.0490841966", ",", "0.0560900866", ",", "0.0490841966", ",", "0", ",", "-", "0.15996108965", ",", "0.1131032049", ",", "0.1084331217", ",", "-", "0.1073803653", ",", "-", "0.0336733067", ",", "-", "0.11850881455", ",", "0.15312450745", ",", "-", "0.230527336", ",", "0.0446452943", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0096301371", ",", "0", ",", "-", "0.0737205458", ",", "-", "0.17742153335", ",", "-", "0.1923679103", ",", "-", "0.121099473575", ",", "-", "0.4070168626", ",", "-", "0.0457700391", ",", "0", ",", "-", "0.0850387165", ",", "-", "0.0850387165", ",", "-", "0.0850387165", ",", "-", "0.08715792456", ",", "-", "0.0877860997", ",", "-", "0.087563533", ",", "0", ",", "0.05063196845", ",", "-", "0.1025652661", ",", "-", "0.1025652661", ",", "-", "0.1025652661", ",", "0", ",", "-", "0.11795839822", ",", "-", "0.11795839822", ",", "-", "0.0781305257", ",", "-", "0.0575585776", ",", "-", "0.00525596956667", ",", "-", "0.15151714205", ",", "0", ",", "-", "0.0501216158", ",", "0", ",", "-", "0.123014448", ",", "0", ",", "0", ",", "-", "0.06592871745", ",", "-", "0.1758645225", ",", "0", ",", "-", "0.3318209823", ",", "-", "0.32949303915", ",", "-", "0.29803068295", ",", "0", ",", "-", "0.3318209823", ",", "0", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.16174109675", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.1936831044", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "-", "0.3318209823", ",", "0", ",", "-", "0.126509018167", ",", "0", ",", "0", ",", "0", ",", "-", "0.0891233553", ",", "-", "0.0960324427", ",", "-", "0.1111283565", ",", "-", "0.1111283565", ",", "-", "0.154601645", ",", "0.1230890909", ",", "0", ",", "0", ",", "-", "0.3829828553", ",", "-", "0.2507585429", ",", "0", ",", "-", "0.3514813531", ",", "-", "0.3524018188", ",", "-", "0.3401012861", ",", "-", "0.3401012861", ",", "0", ",", "0.1393003536", ",", "-", "0.188864172733", ",", "-", "0.1894489343", ",", "0.1273980518", ",", "0.1534100956", ",", "0.1348415787", ",", "-", "0.17871020165", ",", "-", "0.1818300208", ",", "-", "0.4547489336", ",", "0", ",", "0.096558923", ",", "-", "0.14074869175", ",", "0.0823790779", ",", "0", ",", "0", ",", "0.0817716823", ",", "0.1238577999", ",", "0.1238577999", ",", "0.1238577999", ",", "0.10602431205", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2417973437", ",", "-", "0.3095974194", ",", "-", "0.03754036635", ",", "-", "0.3095974194", ",", "-", "0.3095974194", ",", "-", "0.0742722421", ",", "0", ",", "-", "0.3095974194", ",", "-", "0.3095974194", ",", "-", "0.3095974194", ",", "-", "0.3095974194", ",", "-", "0.3718639499", ",", "-", "0.36705542375", ",", "-", "0.05349832815", ",", "-", "0.05982387185", ",", "-", "0.183093867567", ",", "0.086672787", ",", "0.09326070695", ",", "0.09326070695", ",", "0.09326070695", ",", "0.1220359993", ",", "0.11605097195", ",", "-", "0.17253524035", ",", "-", "0.47283431115", ",", "-", "0.4198729066", ",", "-", "0.4198729066", ",", "-", "0.1716351488", ",", "0", ",", "0", ",", "0", ",", "-", "0.14182113705", ",", "-", "0.13679335045", ",", "0", ",", "-", "0.447190346", ",", "0.0694931473", ",", "0.0583068247", ",", "0.0481008637", ",", "-", "0.109106992", ",", "-", "0.109106992", ",", "-", "0.109106992", ",", "-", "0.23391936615", ",", "0", ",", "0.0701018004", ",", "-", "0.07806689765", ",", "0.0508416791", ",", "-", "0.14685564125", ",", "-", "0.0707602105", ",", "-", "0.06810477125", ",", "-", "0.0949172149", ",", "-", "0.06563170315", ",", "-", "0.0926550515", ",", "-", "0.08400880585", ",", "0", ",", "0", ",", "-", "0.1699582922", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1831959001", ",", "-", "0.181231733", ",", "0", ",", "-", "0.11335800845", ",", "-", "0.102860555267", ",", "-", "0.1144194272", ",", "-", "0.1144194272", ",", "0", ",", "-", "0.1054206746", ",", "-", "0.1125604588", ",", "-", "0.1144194272", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.00779515365", ",", "0", ",", "0.0612530749", ",", "-", "0.3832979299", ",", "0.0612530749", ",", "0.1103641112", ",", "-", "0.30736564815", ",", "0", ",", "-", "0.1939157397", ",", "-", "0.48371308745", ",", "0.0634783463", ",", "-", "0.0377301221", ",", "0", ",", "-", "0.0967372408", ",", "0", ",", "-", "0.034507927", ",", "-", "0.085473221", ",", "-", "0.213142558", ",", "-", "0.0939529585", ",", "-", "0.3401024951", ",", "-", "0.3401024951", ",", "-", "0.05097968575", ",", "0", ",", "-", "0.21715950945", ",", "-", "0.2218379165", ",", "-", "0.08032153415", ",", "-", "0.0629663446", ",", "0", ",", "-", "0.02885258375", ",", "-", "0.1224634049", ",", "0", ",", "0", ",", "-", "0.2951271228", ",", "-", "0.1142225628", ",", "-", "0.1106034178", ",", "-", "0.1687837876", ",", "-", "0.22621417385", ",", "-", "0.2100362514", ",", "-", "0.222356998", ",", "-", "0.222356998", ",", "-", "0.1394946986", ",", "0.1522743513", ",", "0.16855395265", ",", "-", "0.186222336867", ",", "-", "0.043849189", ",", "-", "0.0455164984", ",", "-", "0.1572886493", ",", "0", ",", "-", "0.03224217335", ",", "-", "0.31115476475", ",", "0", ",", "0.0805285376", ",", "0.0799524736", ",", "0.0799524736", ",", "0.076757593", ",", "0.08498591755", ",", "0", ",", "0.0300404974", ",", "-", "0.02914761455", ",", "-", "0.1048449387", ",", "-", "0.1018546947", ",", "0", ",", "-", "0.4195527682", ",", "-", "0.0376488611", ",", "0.1058707318", ",", "0.13382901425", ",", "-", "0.21867764715", ",", "-", "0.0993953577", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0371316937", ",", "0.0574822849", ",", "0.0545483945", ",", "0", ",", "0", ",", "0", ",", "-", "0.12899763915", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.19199672155", ",", "-", "0.35629434055", ",", "-", "0.1978534093", ",", "-", "0.20178987165", ",", "-", "0.1980671445", ",", "-", "0.3974958805", ",", "-", "0.24926395275", ",", "-", "0.36124296685", ",", "-", "0.2530155846", ",", "-", "0.16105904215", ",", "0.1544775399", ",", "-", "0.1758382965", ",", "-", "0.2850255326", ",", "-", "0.1459860431", ",", "0.1039685502", ",", "0", ",", "-", "0.07297925475", ",", "-", "0.1097985243", ",", "0", ",", "-", "0.3316321115", ",", "-", "0.2823687219", ",", "-", "0.07538296745", ",", "-", "0.059833677", ",", "-", "0.1032369328", ",", "-", "0.16340162325", ",", "-", "0.30127873685", ",", "-", "0.2977538844", ",", "-", "0.1810870432", ",", "-", "0.2503633069", ",", "0", ",", "-", "0.20832085245", ",", "-", "0.21896521515", ",", "-", "0.2126826932", ",", "0", ",", "-", "0.034010441", ",", "0", ",", "0", ",", "-", "0.1524385459", ",", "0.0724642621", ",", "-", "0.113611384", ",", "-", "0.04013895845", ",", "-", "0.021666314", ",", "0.2727061129", ",", "-", "0.0183970675", ",", "0", ",", "-", "0.3347433536", ",", "-", "0.1600535741", ",", "-", "0.23895932395", ",", "0", ",", "0", ",", "-", "0.1406867012", ",", "0", ",", "0", ",", "0", ",", "-", "0.2888902268", ",", "0.016345638", ",", "0", ",", "-", "0.0134214581", ",", "-", "0.1858452394", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1288534245", ",", "0.1288534245", ",", "0", ",", "0.1288534245", ",", "0.1288534245", ",", "0", ",", "0.0428874143", ",", "0.092376437", ",", "0.0644332845", ",", "-", "0.34414711445", ",", "-", "0.24985360625", ",", "-", "0.2629404633", ",", "-", "0.2553930245", ",", "-", "0.151712688067", ",", "-", "0.251489344", ",", "-", "0.223786947433", ",", "0", ",", "-", "0.2681750448", ",", "0", ",", "-", "0.3303947125", ",", "-", "0.1857266447", ",", "0.0106131569", ",", "-", "0.38679358405", ",", "-", "0.0307459756", ",", "-", "0.0695854841", ",", "-", "0.0747648292", ",", "0", ",", "0", ",", "-", "0.3824453922", ",", "-", "0.3753115236", ",", "0", ",", "0.1086911823", ",", "-", "0.0323728713", ",", "-", "0.29988750565", ",", "0.0045775129", ",", "-", "0.2299644386", ",", "-", "0.0396995792", ",", "-", "0.0352402597", ",", "-", "0.3280245045", ",", "-", "0.0352402597", ",", "-", "0.03829301755", ",", "0", ",", "12244192.0", ",", "0.1002995321", ",", "0.09726310365", ",", "-", "0.2067978939", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0259197966", ",", "0.1208617689", ",", "0", ",", "0", ",", "-", "0.2898987179", ",", "-", "0.0518800875", ",", "-", "0.26600151965", ",", "-", "0.28634720865", ",", "-", "0.1406403941", ",", "-", "0.26770681195", ",", "-", "0.306075166067", ",", "-", "0.306075166067", ",", "0.2763533577", ",", "-", "0.1229276313", ",", "-", "0.3814497132", ",", "-", "0.2837572901", ",", "-", "0.05367909945", ",", "-", "0.0954225015", ",", "-", "0.4409379882", ",", "-", "0.21421315505", ",", "-", "0.0964636024", ",", "0.0062387002", ",", "-", "0.4358451405", ",", "0.0463575760667", ",", "0.05367844055", ",", "0.0801620368", ",", "-", "0.0015044394", ",", "0.0446108034", ",", "-", "0.1927215795", ",", "0", ",", "-", "0.1513936193", ",", "-", "0.1513936193", ",", "-", "0.1513936193", ",", "-", "0.02584187755", ",", "-", "0.2052760382", ",", "-", "0.0198159867", ",", "0.0944075188333", ",", "0.0553367725", ",", "0.19529398055", ",", "-", "0.32748000185", ",", "0.186650516", ",", "-", "0.0748956348", ",", "0.17275675695", ",", "-", "0.1513936193", ",", "0.00449761445", ",", "-", "0.203647339", ",", "-", "0.1513936193", ",", "-", "0.1513936193", ",", "-", "0.3160498459", ",", "-", "0.1893614886", ",", "0.010245354", ",", "-", "0.07737801805", ",", "0.1822206538", ",", "0.0100746265", ",", "0.010245354", ",", "-", "0.47243510625", ",", "0", ",", "0.1248216994", ",", "0.0963069509", ",", "-", "0.2878202034", ",", "0", ",", "-", "0.4353398289", ",", "-", "0.0699073305", ",", "-", "0.073365873", ",", "-", "0.40537224095", ",", "-", "0.0575113669", ",", "-", "0.0111528963", ",", "-", "0.01236878385", ",", "0", ",", "-", "0.309813439925", ",", "-", "0.15822676755", ",", "0", ",", "-", "0.1578087593", ",", "-", "0.094350092", ",", "0", ",", "0.0337745142", ",", "-", "0.3045893945", ",", "-", "0.3045893945", ",", "-", "0.0613701453", ",", "0.0446207308", ",", "-", "0.0705694374", ",", "-", "0.2199419687", ",", "-", "0.30310767425", ",", "0.1106613226", ",", "-", "0.1930099227", ",", "-", "0.0017191403", ",", "-", "0.19208440585", ",", "-", "0.158480512244", ",", "-", "0.158115027933", ",", "-", "0.1627938542", ",", "-", "0.16093926885", ",", "0.0278676286", ",", "-", "0.17968986605", ",", "0.01423996935", ",", "0", ",", "0", ",", "0.1678762819", ",", "0.1706721824", ",", "-", "0.0557943697", ",", "-", "0.05582443915", ",", "-", "0.05721525615", ",", "-", "0.05633191", ",", "0.08327943135", ",", "-", "0.0095145735", ",", "-", "0.1659087186", ",", "0.20329913375", ",", "-", "0.1424387565", ",", "0.0388377548", ",", "0", ",", "0", ",", "0.0199885154", ",", "-", "0.1716485861", ",", "0", ",", "-", "0.2911923009", ",", "-", "0.3062078518", ",", "-", "0.3184545336", ",", "0.1043499506", ",", "0.1045222387", ",", "-", "0.0459541115", ",", "-", "0.0067339269", ",", "-", "0.0091399124", ",", "0", ",", "-", "0.1816109338", ",", "-", "0.1816109338", ",", "0.14690869875", ",", "0", ",", "-", "0.1224549359", ",", "0.0634553406", ",", "0.063384118", ",", "0.0634553406", ",", "-", "0.0377286791", ",", "-", "0.16499102345", ",", "-", "0.0304606116", ",", "-", "0.02513680325", ",", "0", ",", "0", ",", "0", ",", "-", "0.2827129991", ",", "0", ",", "-", "0.2564147586", ",", "0.1014088106", ",", "-", "0.1807315947", ",", "0.12697090405", ",", "-", "0.1983141915", ",", "-", "0.321717065", ",", "-", "0.27006620975", ",", "-", "0.36901147055", ",", "0.0937150605", ",", "-", "0.2203140547", ",", "0", ",", "0", ",", "0.0564127363", ",", "-", "0.37819533495", ",", "-", "0.1275093727", ",", "-", "0.1335534619", ",", "0.01325861545", ",", "-", "0.0269908819", ",", "-", "0.1433811014", ",", "-", "0.36166103205", ",", "0", ",", "-", "0.03505383085", ",", "-", "0.03564247555", ",", "0", ",", "-", "0.0355880506", ",", "-", "0.300069175", ",", "-", "0.1628080085", ",", "-", "0.2490132536", ",", "-", "0.0260609261", ",", "0.1691962167", ",", "-", "0.37641087185", ",", "0.1833153186", ",", "-", "0.09714198395", ",", "-", "0.1305442569", ",", "-", "0.0110581561", ",", "0", ",", "0", ",", "-", "0.323400729", ",", "-", "0.09529393135", ",", "-", "0.053520262", ",", "0", ",", "-", "0.0589792108", ",", "-", "0.3860113101", ",", "-", "0.3843080472", ",", "0.13038089275", ",", "0.13038089275", ",", "0", ",", "0.0712623268", ",", "0", ",", "0.03349760065", ",", "0.03139882125", ",", "-", "0.348827312", ",", "0", ",", "0.00658377226667", ",", "0.004416227", ",", "0.0072244859", ",", "-", "0.162318440875", ",", "-", "0.1594355339", ",", "-", "0.114697346", ",", "0", ",", "-", "0.36536465315", ",", "0.1862370835", ",", "0.0619457633", ",", "0.17512092185", ",", "0", ",", "0.0129837034", ",", "0", ",", "0", ",", "-", "0.08131579115", ",", "-", "0.09908919835", ",", "0", ",", "0.16645815025", ",", "0.17711507935", ",", "0.07711131055", ",", "0.1735229593", ",", "0", ",", "-", "0.46452902945", ",", "-", "0.46452902945", ",", "-", "0.0218426319", ",", "-", "0.3223721925", ",", "0.0389497082333", ",", "0", ",", "-", "0.20337966535", ",", "-", "0.11185301665", ",", "0.1172730375", ",", "0", ",", "-", "0.3467345293", ",", "-", "0.3467345293", ",", "-", "0.113601294", ",", "0.16227640815", ",", "-", "0.0391600115", ",", "0.1194570575", ",", "0.1294945825", ",", "-", "0.2366654403", ",", "0.1151917545", ",", "-", "0.2849161798", ",", "-", "0.2857511588", ",", "0", ",", "0.2532555844", ",", "-", "0.2513422808", ",", "0.1939339608", ",", "0.15581383635", ",", "0.15581383635", ",", "0.14827247445", ",", "0.1661235981", ",", "0.1394304205", ",", "0.0015029554", ",", "-", "0.2110743003", ",", "0", ",", "-", "0.393874423", ",", "0.01273012525", ",", "0.1139808148", ",", "-", "0.3652676234", ",", "-", "0.2665397381", ",", "0.0024496292", ",", "0.0037666838", ",", "-", "0.1246440248", ",", "-", "0.2723188912", ",", "-", "0.1446400884", ",", "0.0031978443", ",", "0.0031978443", ",", "-", "0.1755823667", ",", "-", "0.39994862855", ",", "-", "0.1006651337", ",", "0", ",", "-", "0.29770841225", ",", "0", ",", "0", ",", "0.10100049195", ",", "-", "0.12525465835", ",", "-", "0.3483729925", ",", "-", "0.1966283986", ",", "-", "0.13260929285", ",", "-", "0.2396637037", ",", "-", "0.0490609325", ",", "-", "0.22049345615", ",", "-", "0.0939832042", ",", "0.1928435507", ",", "-", "0.03602281895", ",", "0.1321098768", ",", "-", "0.0673621716", ",", "-", "0.3248468764", ",", "-", "0.3248468764", ",", "-", "0.2849381522", ",", "-", "0.28816321775", ",", "0", ",", "0.1093615633", ",", "-", "0.2927081049", ",", "-", "0.06357586505", ",", "0", ",", "-", "0.43920737865", ",", "-", "0.4428417025", ",", "-", "0.1337105164", ",", "0.0219993319", ",", "0.0232205772", ",", "-", "0.2180903923", ",", "0", ",", "0", ",", "-", "0.1030399271", ",", "0.1160131623", ",", "0.1594870301", ",", "0.0651442941", ",", "-", "0.20761540575", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2670472388", ",", "0", ",", "0", ",", "-", "0.14314468785", ",", "0.0882029696", ",", "0.0883354173", ",", "0", ",", "0.184998851567", ",", "0.07532806595", ",", "-", "0.0411993071", ",", "0", ",", "0", ",", "-", "0.4830559044", ",", "-", "0.2837332576", ",", "0.03949237395", ",", "0.175506262", ",", "-", "0.4465871864", ",", "-", "0.3137983357", ",", "-", "0.3134725945", ",", "-", "0.125448021", ",", "-", "0.13032813555", ",", "-", "0.0136073754", ",", "0", ",", "0", ",", "0", ",", "0.26086504715", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.18268702655", ",", "-", "0.18255779535", ",", "-", "0.18706039435", ",", "-", "0.21876240905", ",", "-", "0.20156404578", ",", "-", "0.2170259881", ",", "-", "0.2170259881", ",", "-", "0.1535895188", ",", "-", "0.19255978155", ",", "0", ",", "-", "0.0455192025", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.24055162825", ",", "-", "0.4558028186", ",", "0", ",", "-", "0.42437791385", ",", "0", ",", "-", "0.1232099105", ",", "-", "0.1223644964", ",", "0.0470814249", ",", "0.0470814249", ",", "0", ",", "0", ",", "-", "0.2280917474", ",", "-", "0.2440645531", ",", "-", "0.025094358", ",", "-", "0.34538673075", ",", "0.1143845489", ",", "-", "0.40939271355", ",", "-", "0.1826147032", ",", "-", "0.0702118876", ",", "-", "0.1676514922", ",", "-", "0.07653792285", ",", "-", "0.40939271355", ",", "0", ",", "0.1127202938", ",", "0.10429956005", ",", "0.1116335707", ",", "0", ",", "-", "0.1876124287", ",", "-", "0.1533244109", ",", "-", "0.3307180558", ",", "0.0105115886", ",", "0", ",", "0.0121567939", ",", "-", "0.3322194041", ",", "-", "0.4694733018", ",", "-", "0.0843488087", ",", "-", "0.0844627168", ",", "-", "0.0846866383", ",", "-", "0.0340058037167", ",", "-", "0.0306725618", ",", "-", "0.04526377405", ",", "-", "0.0352549042", ",", "-", "0.0353717019", ",", "-", "0.1380938028", ",", "0.08924543415", ",", "-", "0.1761883075", ",", "-", "0.1761883075", ",", "0", ",", "0", ",", "0", ",", "0.0340959924", ",", "0.114198847", ",", "0", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kingsmeadow\"", ",", "\"Kingston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Kingswood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Knockholt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ladywell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lambton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Langdon", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Langley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Larkswood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Latimer", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lawn", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Leaf", "Close\"", ",", "\"\"", ",", "\"Leafy", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lebanon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lee\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Leslie", "Close\"", ",", "\"Leslie", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lewisham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lewknor", "Turn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Leyton\"", ",", "\"Leyton", "Asda\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Leytonstone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Limehouse\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Linden", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lindley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Link-Side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lion", "Garage\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lloyd", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Locks", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Loughton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Luton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lynch", "Pin", "PH\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Lynton", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mabledon\"", ",", "\"Mabley", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"Macduff", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Macon", "Way\"", ",", "\"\"", ",", "\"mad", "b\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Maida", "Avenue\"", ",", "\"Maida", "Vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Main", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Malden", "Manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Manford", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Manor", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Manor", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Marble", "Arch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Margery", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Marne", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Marsh", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Maryland\"", ",", "\"\"", ",", "\"\"", ",", "\"Marylebone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Maxwell", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Maze", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Meadow", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Meadowside\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mercian", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Merland", "Rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Merrow", "Way\"", ",", "\"\"", ",", "\"Merrymeet\"", ",", "\"\"", ",", "\"\"", ",", "\"Merstham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Merton", "Abbey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Merton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Merton", "Road\"", ",", "\"Merton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Meyrick", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Middle", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Midfield", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Midholm\"", ",", "\"\"", ",", "\"\"", ",", "\"Michael", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mile", "End\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Mile", "Road\"", ",", "\"Miles", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kingsmeadow\"", ",", "\"kingston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"kingswood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"knockholt\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ladywell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lambton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"langdon", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"langley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"larkswood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"latimer", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lawn", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"leaf", "close\"", ",", "\"\"", ",", "\"leafy", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lebanon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lee\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"leslie", "close\"", ",", "\"leslie", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lewisham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lewknor", "turn\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"leyton\"", ",", "\"leyton", "asda\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"leytonstone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"limehouse\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"linden", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lindley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"link", "side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lion", "garage\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lloyd", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"locks", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"loughton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"luton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lyndale", "nw2", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lynch", "pin", "ph\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"lynton", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mabledon\"", ",", "\"mabley", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"macduff", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"macon", "way\"", ",", "\"\"", ",", "\"mad", "b\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"maida", "avenue\"", ",", "\"maida", "vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"main", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"malden", "manor\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"manford", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"manor", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"manor", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"marble", "arch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"margery", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"marne", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"marsh", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"maryland\"", ",", "\"\"", ",", "\"\"", ",", "\"marylebone\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"maxwell", "road\"", ",", "\"\"", ",", "\"may", "road", "e4", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"maze", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"meadow", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"meadowside\"", ",", "\"\"", ",", "\"\"", ",", "\"meadway", "n14", "\"", ",", "\"meadway", "tw2", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mercian", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"merland", "rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"merrow", "way\"", ",", "\"\"", ",", "\"merrymeet\"", ",", "\"\"", ",", "\"\"", ",", "\"merstham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"merton", "abbey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"merton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"merton", "road\"", ",", "\"merton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"meyrick", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"middle", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"midfield", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"midholm\"", ",", "\"\"", ",", "\"\"", ",", "\"michael", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mile", "end\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"mile", "road\"", ",", "\"miles", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,566
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London2", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BOR:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BOS:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BGR:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BWR:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BTX:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BRX:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BBB:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BHL:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"BUR:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CRD:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CTN:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CWR:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CWF:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CNT:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CST:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CPK:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CPC:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CPN:N\"", ",", "null", ",", "null", ",", "null", ",", "\"CPS:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CFS:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"COL:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CLW:MN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"COV:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.4287053293", ",", "0", ",", "51.4954482603", ",", "51.52044199", ",", "0", ",", "0", ",", "0", ",", "51.5220535195", ",", "51.4235183297", ",", "0", ",", "0", ",", "0", ",", "51.3631897159", ",", "0", ",", "51.498496956", ",", "51.4811149788", ",", "51.5008991042", ",", "51.5008991042", ",", "51.5012394167", ",", "51.5994162316", ",", "51.3331200917", ",", "0", ",", "0", ",", "51.4871906059", ",", "51.4831819776", ",", "51.4813211607", ",", "51.4109814621", ",", "51.4958304176", ",", "51.4875108805", ",", "0", ",", "51.6061722667", ",", "51.5257969464", ",", "51.676257193", ",", "0", ",", "51.3450570733", ",", "51.4835385351", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5123413506", ",", "51.5076233963", ",", "51.5096849841", ",", "51.4930222903", ",", "51.6284284719", ",", "51.5307988683", ",", "51.5968768873", ",", "51.3564792622", ",", "51.5380027429", ",", "51.5397883708", ",", "51.4337225412", ",", "51.6074875129", ",", "51.6109441513", ",", "51.6307197083", ",", "51.5030848983", ",", "0", ",", "51.6228997193", ",", "51.5571042272", ",", "51.5793829189", ",", "51.4521760237", ",", "51.3829070689", ",", "0", ",", "0", ",", "0", ",", "51.4106578768", ",", "51.5622269232", ",", "51.4739247958", ",", "0", ",", "51.5294860645", ",", "51.5225914025", ",", "51.5297383931", ",", "51.5278178581", ",", "51.5277398981", ",", "51.5284748505", ",", "51.5286532196", ",", "51.5272218373", ",", "51.4760458223", ",", "51.4277841201", ",", "51.6137355979", ",", "51.6059031899", ",", "51.6068515934", ",", "51.6121925202", ",", "51.6134568498", ",", "51.6134568498", ",", "51.5240042409", ",", "0", ",", "51.6169625978", ",", "51.3708973004", ",", "51.4272898485", ",", "51.4801707964", ",", "0", ",", "0", ",", "0", ",", "51.649256409", ",", "51.4961100053", ",", "0", ",", "51.5023549537", ",", "0", ",", "51.5538284094", ",", "51.4843125449", ",", "51.3952980564", ",", "51.4512541835", ",", "51.4156738743", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4569620851", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3873743374", ",", "0", ",", "51.3112158085", ",", "51.4042059301", ",", "0", ",", "51.4153204708", ",", "0", ",", "0", ",", "51.3514397949", ",", "51.4004131683", ",", "0", ",", "51.3235379541", ",", "51.3624151865", ",", "51.6702860072", ",", "51.6444692842", ",", "51.6444692842", ",", "0", ",", "0", ",", "0", ",", "51.5230953004", ",", "51.5927365198", ",", "51.3872998752", ",", "51.4657680621", ",", "51.4741176215", ",", "0", ",", "0", ",", "51.4810837796", ",", "0", ",", "51.4805686206", ",", "0", ",", "51.4587106162", ",", "0", ",", "51.5861855891", ",", "51.5073344496", ",", "0", ",", "0", ",", "51.4652870562", ",", "51.6461811004", ",", "51.6082405019", ",", "51.4591653345", ",", "51.4834996411", ",", "0", ",", "0", ",", "51.5140119922", ",", "51.5875717966", ",", "51.5649140399", ",", "51.5871506742", ",", "51.4084707567", ",", "51.4630947836", ",", "51.5875020139", ",", "51.5498510878", ",", "0", ",", "0", ",", "51.405578864", ",", "51.5763111557", ",", "51.5755996258", ",", "51.5768944658", ",", "51.5749285217", ",", "51.5769119529", ",", "51.5842166564", ",", "51.4820506178", ",", "51.5535640759", ",", "51.348145724", ",", "51.4757775468", ",", "51.583301927", ",", "51.565692896", ",", "51.5511468625", ",", "51.5511468625", ",", "51.4878674021", ",", "51.4844540837", ",", "51.4842142138", ",", "51.4832254372", ",", "51.5350596376", ",", "51.4832254372", ",", "51.4843711488", ",", "51.5359560287", ",", "51.5265844517", ",", "51.5706243081", ",", "0", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "51.5706243081", ",", "0", ",", "51.497761246", ",", "51.497761246", ",", "51.5977097492", ",", "51.6181506158", ",", "51.5442813369", ",", "51.4856977894", ",", "51.4644435789", ",", "51.5522121922", ",", "51.5490465941", ",", "0", ",", "51.5677503457", ",", "51.6012422864", ",", "51.6012422864", ",", "51.6569028479", ",", "51.5248899395", ",", "0", ",", "0", ",", "51.4895764499", ",", "51.4895764499", ",", "51.4942858316", ",", "51.493476884", ",", "51.6629811712", ",", "51.5727262159", ",", "51.5228369196", ",", "51.542493791", ",", "51.5860883997", ",", "0", ",", "0", ",", "0", ",", "51.3621387521", ",", "51.4126500361", ",", "51.5656404016", ",", "51.3621387521", ",", "51.4719396072", ",", "51.467052696", ",", "51.5097419145", ",", "51.4451647062", ",", "0", ",", "51.4634348364", ",", "0", ",", "51.4013425644", ",", "51.5990056288", ",", "51.5523859348", ",", "0", ",", "0", ",", "51.5836407733", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5272691289", ",", "51.3558640072", ",", "51.5272691289", ",", "51.5272691289", ",", "0", ",", "51.5198819677", ",", "51.3949751743", ",", "51.3935096254", ",", "51.5884342265", ",", "51.6555297297", ",", "0", ",", "51.5638638899", ",", "51.5262993605", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.528600071", ",", "51.5188744523", ",", "51.5206949684", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4622867189", ",", "51.4650739343", ",", "51.4622867189", ",", "51.4633603903", ",", "51.464213051", ",", "51.4557478635", ",", "51.4557478635", ",", "51.3851293863", ",", "0", ",", "51.426000188", ",", "0", ",", "51.5998425144", ",", "51.6216276021", ",", "51.618216045", ",", "51.622332374", ",", "51.5469545525", ",", "51.5459041279", ",", "51.6021371416", ",", "51.5328061362", ",", "51.6006448595", ",", "51.5322167236", ",", "51.4327497057", ",", "51.3936467498", ",", "0", ",", "51.5944385484", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.429894449", ",", "51.6088658565", ",", "51.5376593965", ",", "51.5356559732", ",", "0", ",", "0", ",", "51.3830825135", ",", "51.615834577", ",", "51.6126192084", ",", "0", ",", "51.4207609198", ",", "0", ",", "51.6128787543", ",", "51.4611408811", ",", "51.4482003183", ",", "51.4637232779", ",", "51.4637994326", ",", "51.4536170813", ",", "51.4536170813", ",", "51.4530013608", ",", "51.444688063", ",", "51.4489690714", ",", "51.4428528148", ",", "51.4485841378", ",", "51.4555203046", ",", "51.4535191976", ",", "51.446407476", ",", "51.451610955", ",", "51.4415916432", ",", "0", ",", "0", ",", "51.4111384042", ",", "51.3756637317", ",", "51.404282465", ",", "51.3900626165", ",", "51.4071159306", ",", "51.4071159306", ",", "51.4173535596", ",", "51.4071159306", ",", "0", ",", "51.4018232036", ",", "51.419185854", ",", "51.4125706213", ",", "51.40855206", ",", "51.4282602263", ",", "51.5739190292", ",", "51.5904187739", ",", "51.4241654578", ",", "51.4064924044", ",", "51.4068478393", ",", "51.4064378355", ",", "51.4272605543", ",", "51.4064378355", ",", "51.4005396084", ",", "51.4060928873", ",", "51.4077814492", ",", "51.4064953727", ",", "51.4057086472", ",", "51.4062202046", ",", "51.5239414681", ",", "0", ",", "0", ",", "51.497608238", ",", "51.4905689253", ",", "0", ",", "51.5067130818", ",", "51.545229587", ",", "51.5409746971", ",", "51.5455039049", ",", "51.5365194215", ",", "51.5377552882", ",", "0", ",", "51.5654697728", ",", "0", ",", "51.6169495002", ",", "51.4938594921", ",", "51.4976693377", ",", "51.420683181", ",", "51.4509476963", ",", "51.3978052445", ",", "51.564680986", ",", "51.5601986241", ",", "51.4000397173", ",", "51.5682443016", ",", "51.4844448099", ",", "51.4084472291", ",", "51.4711807518", ",", "51.515576372", ",", "51.4627472266", ",", "51.6198304359", ",", "51.4887652869", ",", "51.5603952185", ",", "51.4313007017", ",", "51.5848326602", ",", "51.5627483294", ",", "51.5432139491", ",", "51.4868545044", ",", "51.6455608368", ",", "51.5869172771", ",", "51.5394177892", ",", "51.5750116598", ",", "51.5750116598", ",", "0", ",", "0", ",", "51.5505422179", ",", "51.6112170886", ",", "51.5146017461", ",", "51.6086882649", ",", "51.538627279", ",", "0", ",", "51.3691868775", ",", "0", ",", "51.6150812176", ",", "51.615963487", ",", "51.6198135631", ",", "51.3987758524", ",", "51.451436631", ",", "51.5155302654", ",", "0", ",", "51.4543195052", ",", "51.377412231", ",", "51.4562279551", ",", "0", ",", "0", ",", "51.591883777", ",", "51.5786117259", ",", "51.5115352208", ",", "0", ",", "51.4449188917", ",", "51.4438134388", ",", "51.4450344328", ",", "51.4450344328", ",", "51.4450344328", ",", "51.5164712595", ",", "51.5416264408", ",", "51.6707497424", ",", "51.6639923404", ",", "51.5377941521", ",", "51.6130271272", ",", "51.5181527829", ",", "51.6837396133", ",", "51.3884505721", ",", "51.4312980618", ",", "51.5636829716", ",", "51.5618338501", ",", "0", ",", "0", ",", "51.6108629295", ",", "51.5981071506", ",", "51.5933784131", ",", "51.5941830852", ",", "51.5957006094", ",", "0", ",", "0", ",", "51.519124294", ",", "51.5197857716", ",", "51.511953747", ",", "51.5287148632", ",", "51.5343114343", ",", "51.5343114343", ",", "0", ",", "51.6239363302", ",", "51.568505597", ",", "51.5290395731", ",", "51.6274677297", ",", "51.4959936123", ",", "0", ",", "51.5674382789", ",", "51.5118613604", ",", "51.4152077978", ",", "51.5847510929", ",", "51.5186866263", ",", "51.4604754259", ",", "0", ",", "51.5003182528", ",", "0", ",", "0", ",", "51.5113375861", ",", "51.5885083435", ",", "0", ",", "0", ",", "0", ",", "51.4564401438", ",", "51.6358130964", ",", "51.5606422735", ",", "51.6096185794", ",", "51.3513393935", ",", "51.5454260261", ",", "51.5322891607", ",", "51.3726609482", ",", "0", ",", "51.5434519639", ",", "0", ",", "0", ",", "51.3571026145", ",", "51.4503350342", ",", "51.491552947", ",", "0", ",", "51.4900344702", ",", "0", ",", "51.5577709776", ",", "0", ",", "51.4847354334", ",", "0", ",", "51.471137069", ",", "51.6257960419", ",", "51.3405651261", ",", "51.4978562672", ",", "51.6797370901", ",", "0", ",", "51.5700288433", ",", "51.6508423307", ",", "0", ",", "51.5253845088", ",", "51.5740316364", ",", "51.4303960411", ",", "51.6078935412", ",", "51.3258573373", ",", "51.5121433601", ",", "51.5176097551", ",", "0", ",", "0", ",", "0", ",", "51.5354099453", ",", "0", ",", "51.5181422456", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4287795478", ",", "51.6031916741", ",", "51.3833447883", ",", "51.5430609966", ",", "0", ",", "0", ",", "0", ",", "51.6352017705", ",", "0", ",", "0", ",", "51.3972830616", ",", "51.3829542328", ",", "0", ",", "51.527725725", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5533202131", ",", "0", ",", "51.4197511878", ",", "51.4206381591", ",", "51.4558486333", ",", "51.4425212527", ",", "0", ",", "51.6025307859", ",", "51.6018088476", ",", "51.4471700638", ",", "51.4489005824", ",", "51.6053629184", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5724976547", ",", "51.4353802316", ",", "51.4384444861", ",", "51.5668316881", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4904341669", ",", "51.4876741399", ",", "51.5559598104", ",", "51.3878723791", ",", "0", ",", "0", ",", "0", ",", "51.4770753937", ",", "0", ",", "51.4720140762", ",", "51.4720140762", ",", "0", ",", "51.5167345458", ",", "0", ",", "51.5805522767", ",", "51.6314093496", ",", "51.6314093496", ",", "51.6314093496", ",", "51.6356872236", ",", "0", ",", "0", ",", "51.6416328677", ",", "51.6432725824", ",", "51.6451637219", ",", "51.6441783702", ",", "51.570588523", ",", "51.6157598085", ",", "51.4910747751", ",", "51.5705360994", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3687241546", ",", "51.4064805169", ",", "0", ",", "0", ",", "51.4176900168", ",", "51.4790072869", ",", "0", ",", "51.5571052763", ",", "0", ",", "51.3689035789", ",", "0", ",", "0", ",", "51.5703218953", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.632062148", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.500674701", ",", "51.3176879316", ",", "51.3662239363", ",", "51.5782956792", ",", "0", ",", "51.5046719707", ",", "51.5113475605", ",", "51.5102195134", ",", "51.4920271826", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4014824365", ",", "0", ",", "0", ",", "51.460717794", ",", "51.5332024198", ",", "51.5458528457", ",", "0", ",", "0", ",", "51.4701198009", ",", "0", ",", "51.4910133006", ",", "0", ",", "0", ",", "51.5487911602", ",", "51.5426115351", ",", "51.5554153918", ",", "51.55488742", ",", "51.5469185123", ",", "51.5485810114", ",", "51.4035634436", ",", "51.3387401374", ",", "51.5963784975", ",", "51.4329935528", ",", "0", ",", "51.526090253", ",", "51.5264337627", ",", "51.4861494432", ",", "0", ",", "0", ",", "51.4574766986", ",", "51.4746475905", ",", "51.4498815657", ",", "51.4538423308", ",", "51.4823283096", ",", "51.4815429163", ",", "51.6006609026", ",", "0", ",", "51.4539564716", ",", "51.4597154951", ",", "51.4061778134", ",", "51.5131977984", ",", "51.455257253", ",", "51.6590908356", ",", "51.5730580388", ",", "51.5730580388", ",", "51.4089314484", ",", "51.5325647776", ",", "51.5198360874", ",", "51.5321254108", ",", "51.5730580388", ",", "51.4538094341", ",", "0", ",", "51.616374332", ",", "51.5729453095", ",", "51.530516658", ",", "51.412021626", ",", "51.4273957126", ",", "51.3592456989", ",", "51.3625566539", ",", "51.6174259923", ",", "0", ",", "51.5418620244", ",", "51.5364000368", ",", "51.5387065875", ",", "51.409607653", ",", "51.547067989", ",", "51.5461035793", ",", "51.5416065388", ",", "51.5490011891", ",", "51.5553507228", ",", "51.5473005836", ",", "51.5531066274", ",", "51.5400103412", ",", "51.5389180253", ",", "51.5401224445", ",", "51.5391202474", ",", "0", ",", "0", ",", "51.3965455941", ",", "51.6662259858", ",", "51.6031679936", ",", "51.5573806252", ",", "51.3607574929", ",", "51.4470693021", ",", "51.509087714", ",", "51.582983718", ",", "51.537830502", ",", "51.5051168475", ",", "51.5043328463", ",", "51.4972953057", ",", "51.4968318922", ",", "51.4978045617", ",", "51.4406004527", ",", "51.4441588422", ",", "51.6678491199", ",", "51.5386909908", ",", "51.5048730015", ",", "51.5055055317", ",", "51.5028610775", ",", "51.4316840789", ",", "51.39406771", ",", "51.4708420646", ",", "51.4860460958", ",", "51.5649303598", ",", "51.5467858244", ",", "0", ",", "51.5563442103", ",", "51.5520741596", ",", "51.60179203", ",", "51.3793103757", ",", "51.3749052964", ",", "51.5141877803", ",", "0", ",", "51.58869733", ",", "51.58869733", ",", "51.58869733", ",", "51.5113571961", ",", "51.581079975", ",", "0", ",", "51.5424851616", ",", "51.5432317625", ",", "51.5432317625", ",", "51.5491834525", ",", "51.5740345338", ",", "51.6209370451", ",", "51.621776562", ",", "51.3155921354", ",", "51.6074191058", ",", "51.6120355572", ",", "51.5381915271", ",", "51.4367516501", ",", "0", ",", "51.3869016843", ",", "51.3864949263", ",", "0", ",", "0", ",", "51.4777917053", ",", "51.5495555716", ",", "51.5546878403", ",", "0", ",", "51.5708479175", ",", "51.5675627619", ",", "51.5671676014", ",", "0", ",", "51.4633602441", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4242431518", ",", "51.5483734195", ",", "51.5256970713", ",", "51.4651546002", ",", "0", ",", "0", ",", "51.4736739126", ",", "51.5566930305", ",", "51.5510858754", ",", "51.4944053829", ",", "0", ",", "51.4586985004", ",", "51.6613401096", ",", "51.4386495533", ",", "51.5826149359", ",", "51.6613401096", ",", "0", ",", "51.3499216384", ",", "51.5535155042", ",", "51.5579331247", ",", "51.5152576917", ",", "51.6176603977", ",", "0", ",", "51.5957847187", ",", "51.5946267654", ",", "51.4228510449", ",", "51.5647913968", ",", "51.4555515863", ",", "51.6461319487", ",", "51.4555515863", ",", "51.5829637188", ",", "0", ",", "51.4741206262", ",", "51.536007448", ",", "0", ",", "51.3554846239", ",", "51.4780474769", ",", "51.4780474769", ",", "51.5321056669", ",", "51.5329610352", ",", "0", ",", "51.5166144444", ",", "51.5034296618", ",", "51.5037862216", ",", "51.4861094312", ",", "0", ",", "0", ",", "51.5359428157", ",", "0", ",", "0", ",", "0", ",", "51.4320961118", ",", "51.4793591021", ",", "0", ",", "0", ",", "51.5373010133", ",", "51.5512753357", ",", "0", ",", "51.4939958255", ",", "51.3684135923", ",", "51.356412956", ",", "51.37156586", ",", "51.3655443797", ",", "51.3658469671", ",", "51.363155961", ",", "51.3658469671", ",", "51.4539953247", ",", "51.4562453753", ",", "0", ",", "51.6089680868", ",", "51.6611262611", ",", "51.6583123011", ",", "51.6609271961", ",", "51.6599583765", ",", "51.4048069095", ",", "0", ",", "51.4005918536", ",", "51.4582087098", ",", "51.4866111841", ",", "51.4549905608", ",", "51.5424470762", ",", "51.5434339038", ",", "0", ",", "51.5895095535", ",", "51.4352112434", ",", "51.4360628205", ",", "51.5226415958", ",", "0", ",", "51.5317523937", ",", "51.5315402773", ",", "51.3469785164", ",", "51.3559533465", ",", "51.6653710663", ",", "51.6653710663", ",", "51.4326308162", ",", "51.5170225633", ",", "51.415230447", ",", "0", ",", "51.4266300109", ",", "0", ",", "0", ",", "51.5749594498", ",", "51.6549343027", ",", "51.6410023673", ",", "0", ",", "51.5969261106", ",", "51.3032594551", ",", "51.3061672786", ",", "51.3032594551", ",", "51.5925261353", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4447818899", ",", "51.4347792512", ",", "51.4347792512", ",", "51.4311383773", ",", "51.444881572", ",", "51.4450589236", ",", "51.4444520696", ",", "51.442888686", ",", "51.5600401924", ",", "0", ",", "0", ",", "51.4508892654", ",", "51.50070395", ",", "51.4874010387", ",", "0", ",", "0", ",", "0", ",", "51.5364823232", ",", "0", ",", "51.6708200732", ",", "51.4672068765", ",", "51.516473265", ",", "51.5185470399", ",", "51.4789112285", ",", "51.4001432475", ",", "51.5323555365", ",", "51.4001432475", ",", "51.4001432475", ",", "51.4526915994", ",", "51.3568928104", ",", "51.4001432475", ",", "51.4818605741", ",", "51.4001432475", ",", "51.6248427139", ",", "51.5179205006", ",", "51.3961360115", ",", "51.5973486375", ",", "51.5658404643", ",", "51.319283084", ",", "51.6514251972", ",", "51.5536552694", ",", "51.6494062469", ",", "51.3861987713", ",", "51.3861987713", ",", "51.6003068567", ",", "51.576864938", ",", "51.5483473604", ",", "51.6391401364", ",", "0", ",", "51.3583676466", ",", "0", ",", "51.4528497321", ",", "51.4023172874", ",", "51.4043779393", ",", "51.4015994304", ",", "0", ",", "51.4663010037", ",", "0", ",", "51.4827136288", ",", "51.4761026343", ",", "0", ",", "0", ",", "51.5616797106", ",", "51.5186328538", ",", "51.5616797106", ",", "51.5616797106", ",", "51.5523967586", ",", "51.4201315525", ",", "51.5302905406", ",", "51.3401708415", ",", "51.4521241227", ",", "51.5333275069", ",", "51.607567141", ",", "51.3915807708", ",", "51.5815609373", ",", "51.5815609373", ",", "51.53005957", ",", "51.5240275754", ",", "51.4027092606", ",", "51.5328322001", ",", "51.4594728151", ",", "51.3759875326", ",", "51.3759875326", ",", "51.4132280447", ",", "0", ",", "51.4939238721", ",", "51.5880612917", ",", "51.5231276664", ",", "0", ",", "51.5328502895", ",", "51.5209807275", ",", "51.6162244362", ",", "51.5033253014", ",", "51.5919673702", ",", "51.5580219712", ",", "51.5242086845", ",", "51.5166880737", ",", "51.5444925659", ",", "51.5621420228", ",", "51.5444925659", ",", "0", ",", "51.4279596363", ",", "51.62090493", ",", "0", ",", "51.4611320818", ",", "51.4613182861", ",", "51.4631271652", ",", "51.4618591846", ",", "51.4652039548", ",", "51.463314315", ",", "51.463314315", ",", "51.4655048008", ",", "51.4631954651", ",", "51.463314315", ",", "51.4647177512", ",", "51.4606018245", ",", "51.4659007796", ",", "51.4659007796", ",", "51.4525902287", ",", "0", ",", "51.5620133341", ",", "51.5472487314", ",", "51.5718949046", ",", "51.5532079558", ",", "51.5571718528", ",", "51.5560959018", ",", "51.5498427776", ",", "51.550992665", ",", "0", ",", "0", ",", "51.5567075476", ",", "51.5752659865", ",", "51.5452783301", ",", "51.5494159269", ",", "51.5477613333", ",", "51.5332490252", ",", "51.574459635", ",", "51.571468892", ",", "51.5309662472", ",", "51.571468892", ",", "51.571468892", ",", "51.571468892", ",", "51.455177375", ",", "51.4495472443", ",", "51.3987576227", ",", "51.5950089284", ",", "51.3972092114", ",", "51.5696641398", ",", "51.5897190356", ",", "51.5046082198", ",", "51.5296969807", ",", "51.3972092114", ",", "0", ",", "0", ",", "51.486279167", ",", "51.4099706888", ",", "0", ",", "51.6718320533", ",", "51.5517128118", ",", "51.5905981702", ",", "51.4864494551", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5960601145", ",", "51.3974922139", ",", "51.4913841373", ",", "51.5446600111", ",", "51.5637094445", ",", "51.4731814123", ",", "51.4668490637", ",", "51.5046589122", ",", "51.4491963718", ",", "0", ",", "51.4282694775", ",", "51.5055608726", ",", "0", ",", "51.4971470472", ",", "51.40472601", ",", "51.5637797563", ",", "51.553106144", ",", "51.5469916365", ",", "51.522264665", ",", "51.5226500508", ",", "51.5227566238", ",", "51.5232625474", ",", "51.5226500508", ",", "51.5226500508", ",", "51.5441698377", ",", "51.4120408083", ",", "51.422219531", ",", "51.5303267078", ",", "51.5212032649", ",", "51.5331377481", ",", "51.3380611896", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4687674307", ",", "51.6527443139", ",", "51.5930740855", ",", "51.5439731063", ",", "51.4410512472", ",", "51.4607250768", ",", "0", ",", "51.5992435399", ",", "0", ",", "51.5798881489", ",", "51.5385821159", ",", "51.4925595556", ",", "51.580112644", ",", "51.5859323937", ",", "51.5730000562", ",", "51.3983791519", ",", "51.5273116854", ",", "51.5256387869", ",", "51.3953929564", ",", "51.4768917568", ",", "0", ",", "51.6102430322", ",", "51.5564461667", ",", "51.5564461667", ",", "51.5600991628", ",", "51.5709244601", ",", "0", ",", "51.5690143905", ",", "51.4087850284", ",", "51.4674373295", ",", "51.5989986536", ",", "51.4483568879", ",", "51.6170876577", ",", "51.3876302585", ",", "51.5206707713", ",", "51.3595515576", ",", "51.5359765896", ",", "51.5098363596", ",", "51.3835648047", ",", "0", ",", "0", ",", "51.5676845655", ",", "51.4723694667", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5262328064", ",", "51.5907252782", ",", "51.6751968138", ",", "0", ",", "0", ",", "51.6515804546", ",", "51.6676439006", ",", "51.6452912935", ",", "51.3801283699", ",", "0", ",", "0", ",", "0", ",", "51.5064511386", ",", "51.5012158316", ",", "51.4820915461", ",", "51.4303422932", ",", "51.4303422932", ",", "51.4303422932", ",", "51.4303422932", ",", "51.3647788604", ",", "51.3617955247", ",", "51.5033899733", ",", "51.5247876774", ",", "51.4802178375", ",", "51.4802178375", ",", "0", ",", "51.5910786369", ",", "51.5680564495", ",", "51.5677260269", ",", "51.5677260269", ",", "51.5677260269", ",", "51.5663705461", ",", "0", ",", "51.5258278525", ",", "0", ",", "51.5723527238", ",", "51.6025631747", ",", "0", ",", "51.5954154246", ",", "51.5917960363", ",", "51.5943776463", ",", "51.5917960363", ",", "51.5880045123", ",", "51.5903810977", ",", "51.5632008535", ",", "0", ",", "51.5446027589", ",", "51.6044515461", ",", "0", ",", "0", ",", "51.5358284377", ",", "51.4062142302", ",", "51.5968334508", ",", "51.5989114704", ",", "51.3952991587", ",", "51.4180530289", ",", "0", ",", "51.4947709058", ",", "0", ",", "51.3687062915", ",", "51.3687062915", ",", "51.5168561997", ",", "0", ",", "0", ",", "51.6039153753", ",", "0", ",", "51.5545176932", ",", "51.6126606636", ",", "51.6126606636", ",", "51.6126606636", ",", "51.45349115", ",", "51.4287686605", ",", "51.3670314543", ",", "51.5142192532", ",", "51.4987470954", ",", "51.6213832457", ",", "0", ",", "0", ",", "51.4698028644", ",", "51.4714348157", ",", "51.4704618246", ",", "51.4709337156", ",", "51.5511943266", ",", "51.6125385902", ",", "0", ",", "51.4829816287", ",", "51.3745415114", ",", "51.4775863769", ",", "51.5139038733", ",", "51.5219392946", ",", "51.5218945648", ",", "51.5340996963", ",", "51.4803816001", ",", "51.4775863769", ",", "0", ",", "0", ",", "0", ",", "51.4683966253", ",", "51.5787793857", ",", "51.4815750732", ",", "51.455784828", ",", "51.5727393746", ",", "51.478422814", ",", "51.5849648869", ",", "0", ",", "51.6435585899", ",", "51.5267555565", ",", "51.4746327537", ",", "51.6106259818", ",", "51.5120990898", ",", "51.5125499863", ",", "51.5122005497", ",", "51.5116419421", ",", "51.5474537287", ",", "51.5349580439", ",", "51.369181229", ",", "51.3701067951", ",", "51.369389634", ",", "51.3704839791", ",", "51.488630789", ",", "0", ",", "51.4901930981", ",", "51.6390451244", ",", "51.4666816343", ",", "0", ",", "51.4799887693", ",", "51.3194965994", ",", "51.6322538541", ",", "51.5045503131", ",", "51.3971665375", ",", "51.6437837998", ",", "51.5747192683", ",", "0", ",", "51.5538676273", ",", "0", ",", "51.4851942537", ",", "51.6135997593", ",", "51.4526657781", ",", "51.5024203205", ",", "51.4183143509", ",", "0", ",", "51.4945657921", ",", "51.398724238", ",", "51.6682283889", ",", "0", ",", "51.5643634483", ",", "51.4874617832", ",", "0", ",", "51.4265968098", ",", "0", ",", "0", ",", "51.6125950803", ",", "0", ",", "51.4823414856", ",", "51.4097380939", ",", "51.4153187008", ",", "51.4153187008", ",", "0", ",", "51.3595781093", ",", "51.3595781093", ",", "51.4163791851", ",", "51.3667357762", ",", "51.4309916886", ",", "51.3679268325", ",", "51.3675948473", ",", "51.6591677782", ",", "0", ",", "51.3864953761", ",", "0", ",", "51.4364450613", ",", "0", ",", "0", ",", "51.5536627508", ",", "51.5375076569", ",", "51.5362742899", ",", "51.5365975666", ",", "51.4122280466", ",", "51.5518428283", ",", "51.4654518299", ",", "51.5233620431", ",", "51.5971143297", ",", "51.5179899383", ",", "51.6099140265", ",", "51.5179899383", ",", "51.6057701476", ",", "51.6017553364", ",", "51.6138172678", ",", "51.6111544239", ",", "0", ",", "0", ",", "51.4181065269", ",", "51.3591929024", ",", "51.6079568689", ",", "51.6083521809", ",", "51.4459794234", ",", "51.574675342", ",", "51.5726713821", ",", "51.3771559557", ",", "51.5562679056", ",", "51.5428094997", ",", "51.4907968868", ",", "51.5650319814", ",", "51.5620828911", ",", "0", ",", "0", ",", "51.4398571775", ",", "0", ",", "51.5145151793", ",", "0", ",", "51.6128068643", ",", "0", ",", "0", ",", "0", ",", "51.4963295578", ",", "51.5705887601", ",", "51.5507671931", ",", "51.4448731051", ",", "51.4953716152", ",", "0", ",", "51.5325287851", ",", "51.5658938704", ",", "0", ",", "51.4767603405", ",", "51.5188910599", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5311663456", ",", "0", ",", "51.5748094827", ",", "51.4056086832", ",", "51.6539196642", ",", "51.4795182481", ",", "51.4133288768", ",", "0", ",", "51.4799939369", ",", "0", ",", "0", ",", "51.5095822478", ",", "51.5917584079", ",", "51.2962172305", ",", "51.3145168276", ",", "51.3200963631", ",", "51.3110882093", ",", "51.2989808953", ",", "51.3158440588", ",", "51.3146917299", ",", "51.313670381", ",", "51.4502474773", ",", "51.4329827535", ",", "51.4766225462", ",", "51.5021060535", ",", "51.4074513548", ",", "51.6006411334", ",", "0", ",", "51.4381449498", ",", "51.4298612761", ",", "51.4298612761", ",", "51.3716134034", ",", "51.3716134034", ",", "51.3813799819", ",", "51.3716134034", ",", "51.4365294823", ",", "51.3698408172", ",", "51.5915889763", ",", "51.5218644668", ",", "51.3460262245", ",", "51.603925594", ",", "51.4036261393", ",", "51.3700149771", ",", "51.4572604498", ",", "51.5378643096", ",", "51.4150496443", ",", "51.4541236077", ",", "51.4228616362", ",", "51.6027403232", ",", "51.3516891581", ",", "51.3446714022", ",", "51.412538881", ",", "51.5134497684", ",", "51.4828936403", ",", "51.512350922", ",", "51.5222292134", ",", "0", ",", "51.5631333252", ",", "51.5650506042", ",", "51.5411437311", ",", "0", ",", "0", ",", "51.5348523828", ",", "51.5383444736", ",", "51.5384017367", ",", "51.3695169035", ",", "51.4971211889", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "-", "0.0001998619", ",", "0", ",", "0.0076116908", ",", "-", "0.0530643452", ",", "0", ",", "0", ",", "0", ",", "-", "0.339078213", ",", "-", "0.058064578", ",", "0", ",", "0", ",", "0", ",", "0.08216831585", ",", "0", ",", "-", "0.1000619042", ",", "-", "0.335808665467", ",", "-", "0.093755470775", ",", "-", "0.093755470775", ",", "-", "0.0933918567", ",", "-", "0.32487138905", ",", "-", "0.08343563315", ",", "0", ",", "0", ",", "0.1108972123", ",", "0.1107696642", ",", "0.121687517", ",", "0.1064640372", ",", "-", "0.324482152633", ",", "-", "0.31528533095", ",", "0", ",", "-", "0.2647117592", ",", "-", "0.20790618835", ",", "-", "0.1261727689", ",", "0", ",", "-", "0.0132066405", ",", "-", "0.2184141917", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.424883540267", ",", "-", "0.4193206128", ",", "-", "0.42082724235", ",", "0.0943686385", ",", "-", "0.0563906745667", ",", "0.0816694878", ",", "-", "0.0939080259", ",", "-", "0.154530435533", ",", "-", "0.1846933282", ",", "-", "0.17574628455", ",", "-", "0.0009375031", ",", "-", "0.1242799191", ",", "-", "0.1366345704", ",", "-", "0.1231373397", ",", "-", "0.4416959564", ",", "0", ",", "-", "0.1046136817", ",", "0.016233803", ",", "-", "0.1187873506", ",", "0.1716781724", ",", "0.0111540499", ",", "0", ",", "0", ",", "0", ",", "-", "0.031092902", ",", "-", "0.07813768515", ",", "-", "0.1919473671", ",", "0", ",", "-", "0.0204883956333", ",", "-", "0.0342035748", ",", "-", "0.0137827247", ",", "-", "0.0209308027", ",", "-", "0.0211071900667", ",", "-", "0.01712781024", ",", "-", "0.0134262825", ",", "-", "0.025051102", ",", "0.0259128315", ",", "-", "0.08228175175", ",", "0.1809935822", ",", "0.1795132648", ",", "-", "0.1207858714", ",", "-", "0.1218652054", ",", "-", "0.1210763527", ",", "-", "0.1210763527", ",", "-", "0.109192257", ",", "0", ",", "-", "0.3177900941", ",", "-", "0.1523965742", ",", "-", "0.2585656548", ",", "-", "0.0943211915", ",", "0", ",", "0", ",", "0", ",", "-", "0.11434159115", ",", "0.116481661", ",", "0", ",", "0.0259052944", ",", "0", ",", "0.1407125659", ",", "-", "0.400582205", ",", "-", "0.00295117955", ",", "-", "0.1538818654", ",", "-", "0.0248225547", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.100029974", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.12591207705", ",", "0", ",", "-", "0.13399640695", ",", "-", "0.1094798775", ",", "0", ",", "-", "0.1397764125", ",", "0", ",", "0", ",", "-", "0.09174772395", ",", "-", "0.030727846", ",", "0", ",", "-", "0.1397540919", ",", "-", "0.1061162746", ",", "-", "0.0824392818", ",", "-", "0.14605010395", ",", "-", "0.14605010395", ",", "0", ",", "0", ",", "0", ",", "0.03976411615", ",", "-", "0.1058962236", ",", "-", "0.08186224955", ",", "0.1281072287", ",", "0.1266526068", ",", "0", ",", "0", ",", "0.02267950645", ",", "0", ",", "-", "0.1024922606", ",", "0", ",", "0.00190338425", ",", "0", ",", "0.0796966637", ",", "-", "0.4714662179", ",", "0", ",", "0", ",", "-", "0.3304722658", ",", "-", "0.1210822109", ",", "-", "0.0678685443", ",", "-", "0.03399380045", ",", "-", "0.3372965381", ",", "0", ",", "0", ",", "-", "0.0952221916", ",", "-", "0.43721149805", ",", "-", "0.46090783365", ",", "-", "0.43563806365", ",", "0.0992880824", ",", "-", "0.0291459239", ",", "-", "0.05527258325", ",", "-", "0.129299946433", ",", "0", ",", "0", ",", "0.09253408105", ",", "-", "0.219002512", ",", "-", "0.22325891104", ",", "-", "0.213894691433", ",", "-", "0.2200379293", ",", "-", "0.21327099005", ",", "-", "0.219958813333", ",", "-", "0.31359988465", ",", "-", "0.2542804895", ",", "-", "0.0677299682", ",", "0.06831183255", ",", "-", "0.21597937875", ",", "-", "0.2748050205", ",", "-", "0.261668084625", ",", "-", "0.261668084625", ",", "-", "0.3119376403", ",", "-", "0.31533319865", ",", "-", "0.30474288406", ",", "-", "0.30775946895", ",", "-", "0.28799397", ",", "-", "0.30775946895", ",", "-", "0.306766455", ",", "-", "0.2871816867", ",", "-", "0.34216419835", ",", "0.18623122435", ",", "0", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0.18623122435", ",", "0", ",", "-", "0.1439636092", ",", "-", "0.1439636092", ",", "-", "0.0150487541", ",", "-", "0.0615151760333", ",", "-", "0.12618484285", ",", "0.0832441887", ",", "-", "0.2134641014", ",", "0.2025071597", ",", "-", "0.3625717293", ",", "0", ",", "0.26820969425", ",", "-", "0.4046207941", ",", "-", "0.4046207941", ",", "-", "0.04630957425", ",", "-", "0.0716301517", ",", "0", ",", "0", ",", "-", "0.4351488443", ",", "-", "0.4351488443", ",", "-", "0.0886589721333", ",", "-", "0.084596628175", ",", "-", "0.0690974662", ",", "-", "0.4228209777", ",", "-", "0.34392201825", ",", "0.28114496405", ",", "-", "0.2096990981", ",", "0", ",", "0", ",", "0", ",", "-", "0.3077665425", ",", "-", "0.0356595361", ",", "-", "0.278577728", ",", "-", "0.3077665425", ",", "-", "0.3497041233", ",", "0.1824707864", ",", "0.021520429875", ",", "0.13330134965", ",", "0", ",", "-", "0.18642344775", ",", "0", ",", "0.0885305952", ",", "-", "0.2907808835", ",", "-", "0.312658532", ",", "0", ",", "0", ",", "-", "0.4007339365", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0664135487", ",", "-", "0.1917670514", ",", "0.0664135487", ",", "0.0664135487", ",", "0", ",", "0.20129974255", ",", "-", "0.11006894995", ",", "-", "0.11343556245", ",", "-", "0.1806768433", ",", "-", "0.03172292348", ",", "0", ",", "0.0822994343", ",", "0.2115356161", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.12744158715", ",", "-", "0.1246310171", ",", "-", "0.1276938491", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.114892257009", ",", "-", "0.1150345707", ",", "-", "0.114892257009", ",", "-", "0.1074749063", ",", "-", "0.1098799213", ",", "-", "0.1189238579", ",", "-", "0.1189238579", ",", "-", "0.1096051591", ",", "0", ",", "-", "0.3369393004", ",", "0", ",", "-", "0.2960776659", ",", "-", "0.27336792545", ",", "-", "0.272677648875", ",", "-", "0.2720698566", ",", "-", "0.1826350779", ",", "-", "0.191085357233", ",", "0.0346621277", ",", "-", "0.3790795372", ",", "0.04291312315", ",", "-", "0.3790500147", ",", "-", "0.0217768506", ",", "0.00474662145", ",", "0", ",", "-", "0.08196140955", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "-", "0.16608656195", ",", "0.0340242314", ",", "-", "0.06070055265", ",", "0.0772238751667", ",", "0", ",", "0", ",", "-", "0.066294518", ",", "0.11720169005", ",", "0.0951759745", ",", "0", ",", "-", "0.2896943263", ",", "0", ",", "-", "0.33140259915", ",", "-", "0.0435485823", ",", "-", "0.18347245045", ",", "-", "0.0360510114", ",", "-", "0.0349607624", ",", "-", "0.0348223665", ",", "-", "0.0348223665", ",", "-", "0.0385983527", ",", "-", "0.042674731", ",", "-", "0.0424268581", ",", "-", "0.0423646737", ",", "-", "0.04091774715", ",", "-", "0.04619138115", ",", "-", "0.105898071067", ",", "-", "0.1048875939", ",", "-", "0.100973067867", ",", "-", "0.16592734915", ",", "0", ",", "0", ",", "0.0021108052", ",", "0.0442790824667", ",", "0.0188065962", ",", "0.0345021699", ",", "0.0106633052", ",", "0.0106633052", ",", "0.0036336937", ",", "0.0106633052", ",", "0", ",", "0.01617499945", ",", "0.00087317825", ",", "0.0751142153", ",", "0.01644946415", ",", "-", "0.0142167972", ",", "-", "0.0115828133", ",", "-", "0.0186366534", ",", "-", "0.0039870833", ",", "-", "0.0155339929", ",", "-", "0.0068048167", ",", "0.0003668866", ",", "-", "0.01068533515", ",", "0.0003668866", ",", "0.016948827975", ",", "0.0172075967", ",", "0.01144742945", ",", "0.0158988373", ",", "0.01484333135", ",", "0.0130732357", ",", "-", "0.01120228445", ",", "0", ",", "0", ",", "-", "0.1673963843", ",", "-", "0.17386576295", ",", "0", ",", "-", "0.2519002363", ",", "-", "0.203025059525", ",", "-", "0.210730120033", ",", "-", "0.221763514", ",", "-", "0.19930903815", ",", "-", "0.19342012205", ",", "0", ",", "-", "0.2850410193", ",", "0", ",", "-", "0.0160943745", ",", "-", "0.21498646935", ",", "-", "0.2224807296", ",", "0.01635057585", ",", "0.1263527217", ",", "-", "0.10239041965", ",", "-", "0.2393756656", ",", "-", "0.23700963785", ",", "-", "0.10348402155", ",", "-", "0.24222492915", ",", "0.153089", ",", "-", "0.30374220395", ",", "0.1613489483", ",", "0.20118578685", ",", "-", "0.02399247495", ",", "-", "0.13786683135", ",", "0.103342403", ",", "-", "0.0741968712", ",", "-", "0.0217099712", ",", "-", "0.0076562433", ",", "-", "0.14716161085", ",", "-", "0.0353915615", ",", "0.0671782525", ",", "-", "0.1640084776", ",", "-", "0.19103730635", ",", "-", "0.3076008273", ",", "0.2119659827", ",", "0.2119659827", ",", "0", ",", "0", ",", "-", "0.0431390666", ",", "-", "0.3380351629", ",", "-", "0.3948373537", ",", "0.2242333623", ",", "-", "0.20776268045", ",", "0", ",", "-", "0.0281817489", ",", "0", ",", "-", "0.1096701334", ",", "-", "0.11952831305", ",", "-", "0.1159598192", ",", "-", "0.040078278", ",", "0.1527731304", ",", "-", "0.02020237765", ",", "0", ",", "-", "0.1971339027", ",", "-", "0.200021078", ",", "-", "0.155214169275", ",", "0", ",", "0", ",", "-", "0.2105612268", ",", "-", "0.1361101098", ",", "-", "0.3159555542", ",", "0", ",", "-", "0.39847660875", ",", "-", "0.41107785245", ",", "-", "0.00217757635", ",", "-", "0.00217757635", ",", "-", "0.00217757635", ",", "-", "0.3318345202", ",", "0.0548102894", ",", "-", "0.082752332", ",", "-", "0.08196036195", ",", "-", "0.0702338793", ",", "-", "0.12175853215", ",", "-", "0.11495522365", ",", "-", "0.1043591988", ",", "-", "0.29745352585", ",", "0.07338037765", ",", "-", "0.0926923502", ",", "-", "0.0989953708", ",", "0", ",", "0", ",", "0.2090867324", ",", "-", "0.0745221295", ",", "-", "0.0696833029", ",", "-", "0.07016463142", ",", "-", "0.0725447582", ",", "0", ",", "0", ",", "-", "0.1990944333", ",", "-", "0.25232937425", ",", "0.0108235244", ",", "-", "0.4649979162", ",", "-", "0.4762868025", ",", "-", "0.4762868025", ",", "0", ",", "-", "0.1472918507", ",", "0.2703108938", ",", "-", "0.2951256562", ",", "-", "0.14883123465", ",", "-", "0.04191800845", ",", "0", ",", "-", "0.0096434453", ",", "-", "0.0058843741", ",", "-", "0.2881470944", ",", "-", "0.0771511484", ",", "-", "0.07447239025", ",", "-", "0.1753624966", ",", "0", ",", "-", "0.0338007098", ",", "0", ",", "0", ",", "-", "0.2400281415", ",", "-", "0.2596755388", ",", "0", ",", "0", ",", "0", ",", "0.0907428337", ",", "-", "0.1770036958", ",", "-", "0.00979597075", ",", "-", "0.282590404", ",", "-", "0.1422759672", ",", "-", "0.17338623815", ",", "-", "0.0838615942", ",", "-", "0.1650485965", ",", "0", ",", "-", "0.19984297215", ",", "0", ",", "0", ",", "0.1328191631", ",", "-", "0.0558760442", ",", "0.1297546677", ",", "0", ",", "0.0269507782", ",", "0", ",", "0.15867192425", ",", "0", ",", "-", "0.1585215804", ",", "0", ",", "-", "0.1693502382", ",", "-", "0.2733974783", ",", "-", "0.05337463185", ",", "-", "0.40428617345", ",", "-", "0.0340291818", ",", "0", ",", "-", "0.00174493345", ",", "-", "0.17891603775", ",", "0", ",", "-", "0.0894855797", ",", "-", "0.1803284435", ",", "0.13981381885", ",", "-", "0.240199065325", ",", "-", "0.1208354925", ",", "-", "0.0286795774", ",", "-", "0.0283353971", ",", "0", ",", "0", ",", "0", ",", "0.06705628785", ",", "0", ",", "-", "0.0252421713", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0467211029", ",", "0.1654328429", ",", "-", "0.2145334039", ",", "-", "0.4488391848", ",", "0", ",", "0", ",", "0", ",", "-", "0.16087194755", ",", "0", ",", "0", ",", "-", "0.2943187159", ",", "-", "0.0795433295", ",", "0", ",", "-", "0.0524940787", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2436658746", ",", "0", ",", "0.01851019455", ",", "0.0129540728", ",", "0.0114873134", ",", "0.0190537341", ",", "0", ",", "-", "0.263984175525", ",", "-", "0.268834759", ",", "0.0969324272", ",", "0.0997319358", ",", "-", "0.2568215131", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.2186557656", ",", "-", "0.1860314034", ",", "-", "0.1800825259", ",", "0.22009703155", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0727567294", ",", "0.0737262923", ",", "-", "0.1939321942", ",", "0.12295955955", ",", "0", ",", "0", ",", "0", ",", "-", "0.3784568522", ",", "0", ",", "-", "0.1073543388", ",", "-", "0.1073543388", ",", "0", ",", "-", "0.1655909145", ",", "0", ",", "-", "0.4327543225", ",", "-", "0.0615447298", ",", "-", "0.0615447298", ",", "-", "0.0615447298", ",", "-", "0.08163758685", ",", "0", ",", "0", ",", "-", "0.0685665685", ",", "-", "0.0935091353", ",", "-", "0.066183284", ",", "-", "0.08093946985", ",", "0.0235769363", ",", "0.0443214048", ",", "-", "0.0451683991", ",", "0.01774453375", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1999595683", ",", "-", "0.2300527435", ",", "0", ",", "0", ",", "-", "0.32142073675", ",", "-", "0.3221081321", ",", "0", ",", "-", "0.3175473857", ",", "0", ",", "-", "0.1542799004", ",", "0", ",", "0", ",", "0.2202887638", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0055831356", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0261127441", ",", "-", "0.1276202037", ",", "-", "0.1792913959", ",", "-", "0.1703076106", ",", "0", ",", "-", "0.03655289985", ",", "-", "0.0421027113", ",", "-", "0.0505026417", ",", "-", "0.1590056284", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1319920254", ",", "0", ",", "0", ",", "-", "0.4293055825", ",", "0.014586092", ",", "0.2020917847", ",", "0", ",", "0", ",", "-", "0.09533765775", ",", "0", ",", "0.0643988102", ",", "0", ",", "0", ",", "-", "0.11803762855", ",", "-", "0.117376858175", ",", "-", "0.1186657877", ",", "-", "0.1177066322", ",", "-", "0.1193048243", ",", "-", "0.1181112101", ",", "-", "0.27474348275", ",", "-", "0.00505178085", ",", "0.071340017", ",", "-", "0.22425880495", ",", "0", ",", "-", "0.1125225509", ",", "-", "0.0772018604", ",", "0.0110274568", ",", "0", ",", "0", ",", "0.0268681538", ",", "-", "0.092841388525", ",", "-", "0.0632499378", ",", "-", "0.04857325675", ",", "-", "0.1117809938", ",", "-", "0.0943648015", ",", "0.2302094049", ",", "0", ",", "-", "0.293635465", ",", "0.0969316779", ",", "-", "0.2575562137", ",", "-", "0.128808412667", ",", "0.016333832", ",", "-", "0.0589464842", ",", "0.0235206667", ",", "0.0235206667", ",", "-", "0.28664882855", ",", "-", "0.0575647682", ",", "-", "0.0571983766", ",", "-", "0.0569634766", ",", "0.0235206667", ",", "-", "0.31017901775", ",", "0", ",", "-", "0.0845973236", ",", "0.0198861012", ",", "-", "0.19432669935", ",", "-", "0.24180321125", ",", "-", "0.32820723935", ",", "-", "0.1720917127", ",", "-", "0.1716151146", ",", "-", "0.08622149835", ",", "0", ",", "-", "0.14114559515", ",", "-", "0.14064718065", ",", "-", "0.1434805208", ",", "0.0656832361", ",", "-", "0.1314718082", ",", "-", "0.1268238976", ",", "-", "0.138266915767", ",", "-", "0.129200177", ",", "-", "0.1163170514", ",", "-", "0.1297026438", ",", "-", "0.1233049631", ",", "-", "0.1406298016", ",", "-", "0.141878442683", ",", "-", "0.141461646", ",", "-", "0.1417764726", ",", "0", ",", "0", ",", "0.01505157805", ",", "-", "0.1741199213", ",", "0.1805520179", ",", "-", "0.1330399578", ",", "-", "0.0860168001", ",", "0.0381581551", ",", "0.0578372071", ",", "0.2319274197", ",", "0.1133986266", ",", "-", "0.0175628896", ",", "-", "0.0174672338", ",", "-", "0.0458242997", ",", "-", "0.05131894686", ",", "-", "0.0502153928571", ",", "-", "0.0223009648", ",", "-", "0.0221328137", ",", "-", "0.01560639055", ",", "-", "0.0860009155", ",", "-", "0.020517925", ",", "-", "0.0208747791", ",", "-", "0.0189792662", ",", "-", "0.07086789515", ",", "1018198617.0", ",", "-", "0.1700388023", ",", "-", "0.476052751", ",", "-", "0.2165904391", ",", "-", "0.1798725919", ",", "0", ",", "0.01388475845", ",", "0.0053945308", ",", "-", "0.1120272311", ",", "-", "0.08163588145", ",", "-", "0.0828258949", ",", "0.00860862575", ",", "0", ",", "-", "0.38256923605", ",", "-", "0.38256923605", ",", "-", "0.38256923605", ",", "-", "0.0900365644167", ",", "-", "0.38153351065", ",", "0", ",", "-", "0.0992250964", ",", "-", "0.1003477396", ",", "-", "0.1003477396", ",", "-", "0.09277245585", ",", "-", "0.1712604667", ",", "-", "0.2916253762", ",", "-", "0.293392432375", ",", "-", "0.11498391005", ",", "-", "0.29486968395", ",", "-", "0.30440989395", ",", "0.11831122755", ",", "0.11941970865", ",", "0", ",", "-", "0.1110412461", ",", "-", "0.192420935", ",", "0", ",", "0", ",", "0.068582988", ",", "0.1029939629", ",", "0.0464573354", ",", "0", ",", "-", "0.37577132925", ",", "-", "0.0223218563", ",", "-", "0.0218195373", ",", "0", ",", "-", "0.062873588", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.29693617895", ",", "-", "0.0376645772", ",", "-", "0.3529003229", ",", "-", "0.3884822096", ",", "0", ",", "0", ",", "-", "0.1380008091", ",", "-", "0.2694233405", ",", "0.1918214533", ",", "-", "0.41672384665", ",", "0", ",", "-", "0.46045314135", ",", "-", "0.0710180658", ",", "0.12858013115", ",", "-", "0.0326457793", ",", "-", "0.0710180658", ",", "0", ",", "-", "0.1382260417", ",", "-", "0.13428013155", ",", "-", "0.1262368295", ",", "-", "0.2568409925", ",", "-", "0.1433655193", ",", "0", ",", "-", "0.26159201085", ",", "-", "0.2681188849", ",", "-", "0.363648928", ",", "-", "0.2887746672", ",", "-", "0.40400593335", ",", "-", "0.12785622515", ",", "-", "0.40400593335", ",", "-", "0.3157046318", ",", "0", ",", "-", "0.06207929965", ",", "-", "0.1818599714", ",", "0", ",", "-", "0.0916227103", ",", "0.16400675015", ",", "0.16400675015", ",", "-", "0.2026408478", ",", "-", "0.1869341597", ",", "0", ",", "-", "0.3754530563", ",", "0.1190111723", ",", "0.1191862267", ",", "-", "0.1721930704", ",", "0", ",", "0", ",", "-", "0.11677968865", ",", "0", ",", "0", ",", "0", ",", "-", "0.1180541442", ",", "-", "0.0596393264", ",", "0", ",", "0", ",", "-", "0.0026382278", ",", "-", "0.34995716125", ",", "0", ",", "0.0808564638", ",", "-", "0.16568102978", ",", "-", "0.17036601345", ",", "-", "0.1663280189", ",", "-", "0.1599746121", ",", "-", "0.1637838516", ",", "-", "0.1722735876", ",", "-", "0.1637838516", ",", "-", "0.2277691305", ",", "-", "0.22670316035", ",", "0", ",", "0.1611292313", ",", "-", "0.0583172562", ",", "-", "0.0472465903", ",", "-", "0.04631719135", ",", "-", "0.05757193685", ",", "-", "0.237148271", ",", "0", ",", "0.1175747775", ",", "-", "0.09201892085", ",", "0.1073629431", ",", "-", "0.4230178765", ",", "-", "0.0460102426", ",", "-", "0.0431700613", ",", "0", ",", "0.2080937163", ",", "0.0024655433", ",", "-", "0.0342882262", ",", "-", "0.3314096197", ",", "0", ",", "0.1237869593", ",", "0.1230849851", ",", "-", "0.0220556948", ",", "-", "0.01565807645", ",", "-", "0.0316000193", ",", "-", "0.0316000193", ",", "-", "0.3984987847", ",", "-", "0.30640609745", ",", "-", "0.0669873887", ",", "0", ",", "0.0357163036", ",", "0", ",", "0", ",", "0.0528017033", ",", "-", "0.1656536678", ",", "-", "0.1437562192", ",", "0", ",", "0.0680799837", ",", "-", "0.11032452525", ",", "-", "0.11051356525", ",", "-", "0.11032452525", ",", "0.0623431397", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.02441565625", ",", "-", "0.0178811496667", ",", "-", "0.0178811496667", ",", "-", "0.01556662705", ",", "-", "0.0207296258667", ",", "-", "0.0285843308", ",", "-", "0.024188844925", ",", "-", "0.02867780745", ",", "0.0039127231", ",", "0", ",", "0", ",", "-", "0.1478516265", ",", "-", "0.23435757365", ",", "-", "0.0654917816", ",", "0", ",", "0", ",", "0", ",", "0.0520790582", ",", "0", ",", "-", "0.0179351791", ",", "-", "0.3886258597", ",", "-", "0.22695188255", ",", "-", "0.0575559415", ",", "0.1591076809", ",", "-", "0.2391822004", ",", "-", "0.1742772316", ",", "-", "0.2391822004", ",", "-", "0.2391822004", ",", "-", "0.14269062455", ",", "-", "0.1879274699", ",", "-", "0.2391822004", ",", "-", "0.256948313", ",", "-", "0.2391822004", ",", "-", "0.1060424982", ",", "-", "0.2275082573", ",", "0.0085284995", ",", "-", "0.0154976814", ",", "-", "0.06082895565", ",", "-", "0.12698835525", ",", "-", "0.0698922683", ",", "-", "0.2897768842", ",", "-", "0.08003200575", ",", "-", "0.1210159722", ",", "-", "0.1210159722", ",", "-", "0.0207982236", ",", "-", "0.1227159823", ",", "-", "0.0666934036", ",", "-", "0.16056084245", ",", "0", ",", "-", "0.1890901715", ",", "0", ",", "0.0297290318", ",", "-", "0.1548829517", ",", "-", "0.1512557884", ",", "-", "0.1529852938", ",", "0", ",", "-", "0.1505749856", ",", "0", ",", "0.04639439485", ",", "0.1083689868", ",", "0", ",", "0", ",", "0.0011136356", ",", "-", "0.4108677856", ",", "0.0011136356", ",", "0.0011136356", ",", "0.2293908624", ",", "-", "0.083407597", ",", "-", "0.268659506811", ",", "-", "0.0140928108", ",", "-", "0.3976487457", ",", "-", "0.3243503198", ",", "0.2233625162", ",", "-", "0.20091677425", ",", "-", "0.1892076497", ",", "-", "0.1892076497", ",", "-", "0.09882002645", ",", "-", "0.0967359372", ",", "-", "0.0510672806", ",", "-", "0.26887946785", ",", "-", "0.4123190332", ",", "-", "0.103640179767", ",", "-", "0.103640179767", ",", "0.07302992875", ",", "0", ",", "0.1447331083", ",", "-", "0.0332549848", ",", "-", "0.05504005865", ",", "0", ",", "-", "0.1737095277", ",", "-", "0.19204443245", ",", "-", "0.19661064645", ",", "-", "0.0794045096", ",", "0.1422168456", ",", "0.04349079245", ",", "-", "0.0874156511", ",", "-", "0.10331187555", ",", "-", "0.4757303775", ",", "0.1569383424", ",", "-", "0.4757303775", ",", "0", ",", "-", "0.146755544783", ",", "-", "0.34270123995", ",", "0", ",", "-", "0.139207184233", ",", "-", "0.1491065123", ",", "-", "0.1418949848", ",", "33474.0", ",", "-", "0.1324283738", ",", "-", "0.16906732982", ",", "-", "0.16906732982", ",", "-", "0.170516313867", ",", "-", "0.167753360567", ",", "-", "0.16906732982", ",", "-", "0.129973971386", ",", "-", "0.12918286275", ",", "-", "0.1293188479", ",", "-", "0.1293188479", ",", "-", "0.148029861383", ",", "0", ",", "-", "0.0571178777", ",", "-", "0.05436475595", ",", "-", "0.06669007675", ",", "-", "0.053189632", ",", "-", "0.0456820574", ",", "-", "0.0556149182333", ",", "-", "0.0537997024", ",", "-", "0.0542699016", ",", "0", ",", "0", ",", "-", "0.47287687315", ",", "0.0038608544", ",", "-", "0.23720429655", ",", "-", "0.3440386851", ",", "0.025066214", ",", "-", "0.2047802287", ",", "-", "0.2205469257", ",", "-", "0.2190186299", ",", "-", "0.1109655478", ",", "-", "0.2190186299", ",", "-", "0.2190186299", ",", "-", "0.2190186299", ",", "-", "0.1293542994", ",", "-", "0.13693897255", ",", "0.0415588508", ",", "-", "0.0408238181", ",", "0.10291273345", ",", "0.0035567322", ",", "0.02211720005", ",", "-", "0.423128136", ",", "-", "0.2989072787", ",", "0.10291273345", ",", "0", ",", "0", ",", "-", "0.1378329671", ",", "-", "0.1483555092", ",", "0", ",", "-", "0.08818804675", ",", "0.29469739835", ",", "0.0498830284", ",", "0.0651577198", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0603085218", ",", "-", "0.2906199631", ",", "-", "0.3001538782", ",", "-", "0.2970079823", ",", "0.16533806985", ",", "-", "0.0655606955333", ",", "-", "0.3423219551", ",", "-", "0.4195456847", ",", "0.109302279", ",", "0", ",", "0.118264625", ",", "-", "0.056984359", ",", "0", ",", "-", "0.42868019615", ",", "-", "0.04823523015", ",", "-", "0.33502592715", ",", "0.0732825551", ",", "-", "0.0904338207", ",", "-", "0.1056028253", ",", "-", "0.1116557427", ",", "-", "0.0982160757", ",", "-", "0.1022458003", ",", "-", "0.1116557427", ",", "-", "0.1116557427", ",", "-", "0.1915579708", ",", "-", "0.0492538994", ",", "-", "0.3790329334", ",", "-", "0.47793367025", ",", "-", "0.3232458619", ",", "-", "0.2949581094", ",", "-", "0.014313223", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.27428608835", ",", "-", "0.180950458", ",", "-", "0.0052453816", ",", "-", "0.3057732906", ",", "-", "0.304740735833", ",", "-", "0.02140215625", ",", "0", ",", "-", "0.3143803377", ",", "0", ",", "-", "0.198251749", ",", "-", "0.4521927043", ",", "-", "0.2616398211", ",", "-", "0.13096806165", ",", "-", "0.289055799075", ",", "0.0838571358", ",", "-", "0.0902977029333", ",", "-", "0.3507997125", ",", "-", "0.17924566235", ",", "-", "0.08429813925", ",", "-", "0.0583543471", ",", "0", ",", "-", "0.1321281288", ",", "-", "0.08400763835", ",", "-", "0.08400763835", ",", "-", "0.0860542536", ",", "-", "0.36477272485", ",", "0", ",", "-", "0.21875381975", ",", "-", "0.0400744335", ",", "-", "0.3340219818", ",", "0.163117843375", ",", "-", "0.44917993075", ",", "-", "0.2612691383", ",", "-", "0.0688552116", ",", "-", "0.2689515343", ",", "0.09856562355", ",", "-", "0.107145949", ",", "-", "0.0047334149", ",", "0.0170969389", ",", "0", ",", "0", ",", "0.1866601579", ",", "-", "0.1357068034", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.02960635265", ",", "0.23861625435", ",", "-", "0.0486464775", ",", "0", ",", "0", ",", "-", "0.14997392696", ",", "-", "0.1583867721", ",", "-", "0.1448602223", ",", "0.1220119208", ",", "0", ",", "0", ",", "0", ",", "-", "0.1095228366", ",", "-", "0.4350455223", ",", "-", "0.04170708855", ",", "0.05770593165", ",", "0.05770593165", ",", "0.05770593165", ",", "0.05770593165", ",", "-", "0.1166207123", ",", "-", "0.1178851213", ",", "-", "0.00799784655", ",", "-", "0.0488640273", ",", "0.1817959468", ",", "0.1817959468", ",", "0", ",", "-", "0.10402580285", ",", "-", "0.3632018332", ",", "-", "0.2343592037", ",", "-", "0.2343592037", ",", "-", "0.2343592037", ",", "-", "0.23392113325", ",", "0", ",", "-", "0.45913405205", ",", "0", ",", "-", "0.0083103101", ",", "0.2474013793", ",", "0", ",", "-", "0.249452715575", ",", "-", "0.2570113514", ",", "-", "0.2619128424", ",", "-", "0.2570113514", ",", "-", "0.236768163633", ",", "-", "0.254986639133", ",", "0.1173309163", ",", "0", ",", "-", "0.175380646525", ",", "-", "0.32799304325", ",", "0", ",", "0", ",", "-", "0.226951958767", ",", "-", "0.3041699267", ",", "0.15591791125", ",", "0.16174909635", ",", "-", "0.1148282177", ",", "-", "0.17769690772", ",", "0", ",", "-", "0.1873480083", ",", "0", ",", "-", "0.2011383529", ",", "-", "0.2011383529", ",", "0.0357665136", ",", "0", ",", "0", ",", "0.2349903339", ",", "0", ",", "-", "0.4766646401", ",", "-", "0.159075107", ",", "-", "0.159075107", ",", "-", "0.159075107", ",", "-", "0.4265382951", ",", "-", "0.14115070175", ",", "-", "0.1713793945", ",", "-", "0.2011759772", ",", "-", "0.2750772239", ",", "0.00057579365", ",", "0", ",", "0", ",", "0.18087413535", ",", "0.16488172315", ",", "0.1797752002", ",", "0.17373541475", ",", "-", "0.3135897132", ",", "-", "0.0648405285", ",", "0", ",", "-", "0.31330629495", ",", "-", "0.11890700015", ",", "-", "0.0685569917", ",", "-", "0.06173143445", ",", "-", "0.076223573", ",", "-", "0.077883217", ",", "-", "0.27495215565", ",", "-", "0.0589334183", ",", "-", "0.0685569917", ",", "0", ",", "0", ",", "0", ",", "-", "0.2274342647", ",", "0.1720373003", ",", "-", "0.46866961195", ",", "-", "0.3034343984", ",", "-", "0.16519843095", ",", "0.1820847167", ",", "-", "0.37894155155", ",", "0", ",", "-", "0.04960791765", ",", "-", "0.277896824", ",", "-", "0.1360897245", ",", "-", "0.0495299876333", ",", "-", "0.13977780735", ",", "-", "0.1414168408", ",", "-", "0.1420651981", ",", "-", "0.143702065", ",", "-", "0.26580765335", ",", "-", "0.4583282786", ",", "0.0013142141", ",", "0.0029350252", ",", "0.0012227306", ",", "0.0029658563", ",", "0.1205431866", ",", "0", ",", "-", "0.08299844335", ",", "-", "0.0799349945", ",", "-", "0.0122896881", ",", "0", ",", "-", "0.24780976745", ",", "-", "0.1469068511", ",", "-", "0.1506738155", ",", "0.0411404203", ",", "-", "0.1867027444", ",", "-", "0.2105345876", ",", "-", "0.1078240527", ",", "0", ",", "0.1471771886", ",", "0", ",", "-", "0.33884805515", ",", "-", "0.15874822275", ",", "-", "0.364914638", ",", "0.0450198066333", ",", "-", "0.10104481695", ",", "0", ",", "-", "0.39380542285", ",", "-", "0.1304655043", ",", "-", "0.0759461044667", ",", "0", ",", "-", "0.22456992205", ",", "0.08468585725", ",", "0", ",", "-", "0.1363335164", ",", "0", ",", "0", ",", "-", "0.0344188876", ",", "0", ",", "-", "0.1020153834", ",", "-", "0.26294982015", ",", "-", "0.2669376252", ",", "-", "0.2669376252", ",", "0", ",", "-", "0.0582118982875", ",", "-", "0.0582118982875", ",", "-", "0.25055268425", ",", "-", "0.0991426701", ",", "-", "0.06568909545", ",", "-", "0.0963420939", ",", "-", "0.0991573738", ",", "-", "0.1537639252", ",", "0", ",", "-", "0.1390342175", ",", "0", ",", "0.02239366845", ",", "0", ",", "0", ",", "-", "0.2921422961", ",", "-", "0.11650599425", ",", "-", "0.12231040175", ",", "-", "0.1124771908", ",", "-", "0.02473381475", ",", "-", "0.30648336755", ",", "-", "0.0762970501", ",", "-", "0.3336969374", ",", "0.06428375805", ",", "-", "0.0338395957", ",", "0.0870063495", ",", "-", "0.0338395957", ",", "-", "0.16008318765", ",", "-", "0.15352347605", ",", "0.1153671918", ",", "0.11392174485", ",", "0", ",", "0", ",", "-", "0.2314301761", ",", "-", "0.2950052223", ",", "-", "0.2348349216", ",", "-", "0.22735286955", ",", "-", "0.1325653568", ",", "0.2361098568", ",", "0.2365021705", ",", "-", "0.1597963576", ",", "0.25036925875", ",", "0.2520126411", ",", "-", "0.05360031745", ",", "-", "0.3604103399", ",", "-", "0.35658492695", ",", "0", ",", "0", ",", "0.08845278575", ",", "0", ",", "-", "0.01468295145", ",", "0", ",", "-", "0.03042313305", ",", "0", ",", "0", ",", "0", ",", "-", "0.1834683054", ",", "-", "0.41102620475", ",", "0.13127921405", ",", "0.0208700416", ",", "-", "0.4145822409", ",", "0", ",", "0.0150610044", ",", "-", "0.2809922005", ",", "0", ",", "-", "0.138119919", ",", "-", "0.4435347434", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3501509701", ",", "0", ",", "0.1741932804", ",", "0.104175252", ",", "-", "0.113258909", ",", "-", "0.0854552256", ",", "-", "0.2459234835", ",", "0", ",", "-", "0.04103364585", ",", "0", ",", "0", ",", "-", "0.0098894384", ",", "0.05766664325", ",", "-", "0.1088924483", ",", "-", "0.1241833395", ",", "-", "0.139218826525", ",", "-", "0.1279750102", ",", "-", "0.11575781535", ",", "-", "0.1380907574", ",", "-", "0.12921309575", ",", "-", "0.1543882721", ",", "-", "0.17429512235", ",", "0.0775283491", ",", "-", "0.0992718276", ",", "-", "0.11669104015", ",", "-", "0.1052407457", ",", "0.239039037", ",", "0", ",", "-", "0.36765628895", ",", "0.0425352973", ",", "0.0425352973", ",", "0.10797532575", ",", "0.10797532575", ",", "0.10823012215", ",", "0.10797532575", ",", "0.0456385799", ",", "0.1095246424", ",", "-", "0.25065013925", ",", "-", "0.2694035781", ",", "-", "0.0365429562", ",", "-", "0.3524823088", ",", "-", "0.01011531115", ",", "-", "0.00749989665", ",", "-", "0.01169862765", ",", "-", "0.3487695774", ",", "-", "0.1185890235", ",", "0.02210628525", ",", "-", "0.37604719685", ",", "-", "0.0883915337", ",", "-", "0.1664683508", ",", "-", "0.0367301085", ",", "-", "0.0167821294", ",", "-", "0.1239410623", ",", "-", "0.1272167481", ",", "-", "0.119902765", ",", "-", "0.0105921641", ",", "0", ",", "0.067931195", ",", "0.0747061571", ",", "0.0741448105", ",", "0", ",", "0", ",", "-", "0.34721320325", ",", "-", "0.4821795829", ",", "-", "0.48661177135", ",", "-", "0.2999734102", ",", "0.1603933692", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"Boord", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bordars", "Walk\"", ",", "\"Border", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Boston", "Manor\"", ",", "\"\"", ",", "\"\"", ",", "\"Boston", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Botley", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bounds", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bourne", "Vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bow", "Flyover\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bow", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Bower", "House\"", ",", "\"\"", ",", "\"Bowes", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bowls", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"Bowyer", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bracondale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brading", "Road\"", ",", "\"\"", ",", "\"Bradmore", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bramley", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brands", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bread", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bream", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brent", "Green\"", ",", "\"Brent", "Lea\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brentford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brian", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bridge", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brimsdown\"", ",", "\"\"", ",", "\"\"", ",", "\"Briscoe", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brixton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brockley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brockley", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brondesbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bronson", "Way\"", ",", "\"\"", ",", "\"Brook", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brookdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Brookshill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Broom", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bryony", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bucklers", "Way\"", ",", "\"\"", ",", "\"Buckley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bulwer", "Road\"", ",", "\"\"", ",", "\"Bunbury", "Way\"", ",", "\"\"", ",", "\"Bunkers", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Burnt", "Oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Bushey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Buxton", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Byers", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Byttom", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cadogan", "Pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Calvert", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Camden", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Camden", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Camer", "Corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canada", "Water\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canal", "Walk\"", ",", "\"Canary", "Wharf\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canbury", "Path\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canning", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canonbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canons", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Canons", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Carey", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cargo", "Centre\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Carr", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Carshalton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Castle", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Caterham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Catford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Catford", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Catsey", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cavell", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cedar", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Centrale\"", ",", "\"\"", ",", "\"\"", ",", "\"Centre", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"City", "Hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Clapton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Clare", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Clay", "Avenue\"", ",", "\"Clay", "Corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Claygate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Clifton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cline", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Clock", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cockfosters\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Colindale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Colne", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Colson", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Convent", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Coombe", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Coombelands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Coopers", "Row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Coppins", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Corunna", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cottenhams\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Covent", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"boord", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bordars", "walk\"", ",", "\"border", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"boston", "manor\"", ",", "\"\"", ",", "\"\"", ",", "\"boston", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"botley", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bounds", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bourne", "vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bow", "flyover\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bow", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"bower", "house\"", ",", "\"\"", ",", "\"bowes", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bowls", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"bowyer", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bracondale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brading", "road\"", ",", "\"\"", ",", "\"bradmore", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bramley", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brands", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bread", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bream", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brent", "green\"", ",", "\"brent", "lea\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brentford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brian", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bridge", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brimsdown\"", ",", "\"\"", ",", "\"\"", ",", "\"briscoe", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brixton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brockley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brockley", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brondesbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bronson", "way\"", ",", "\"\"", ",", "\"brook", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brookdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"brookshill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"broom", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bryony", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bucklers", "way\"", ",", "\"\"", ",", "\"buckley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bulwer", "road\"", ",", "\"\"", ",", "\"bunbury", "way\"", ",", "\"\"", ",", "\"bunkers", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"burnt", "oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"bushey\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"buxton", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"byers", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"byttom", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cadogan", "pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"calvert", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"camden", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"camden", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"camer", "corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canada", "water\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canal", "walk\"", ",", "\"canary", "wharf\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canbury", "path\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canning", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canonbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canons", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"canons", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"carey", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cargo", "centre\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"carr", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"carshalton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"castle", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"caterham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"catford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"catford", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"catsey", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cavell", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cedar", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"centrale\"", ",", "\"\"", ",", "\"\"", ",", "\"centre", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"city", "hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"clapton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"clare", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"clay", "avenue\"", ",", "\"clay", "corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"claygate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"clifton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cline", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"clock", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cockfosters\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"colindale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"colne", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"colson", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"convent", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"coombe", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"coombelands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"coopers", "row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"coppins", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"corunna", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cottenhams\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"covent", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,567
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London9", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SNB:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SEL:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SHR:P\"", ",", "null", ",", "null", ",", "\"SKN:DcP\"", ",", "null", ",", "\"SKT:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SRP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SWM:N\"", ",", "\"SWF:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SFS:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SGT:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SWK:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"STP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"STB:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"STA:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"STG:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"STK:NV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SPK:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SFD:CJ\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SJP:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SJW:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SHL:P\"", ",", "null", ",", "null", ",", "null", ",", "\"STN:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SWC:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"TEM:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "0", ",", "51.4413792998", ",", "0", ",", "51.3366133037", ",", "0", ",", "51.6044249251", ",", "51.6079679617", ",", "51.5811643801", ",", "51.5841174875", ",", "0", ",", "51.5179648735", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5519788578", ",", "0", ",", "51.635845651", ",", "51.4613985186", ",", "51.4595867062", ",", "51.5998658344", ",", "51.4667479186", ",", "0", ",", "51.4611383483", ",", "51.4310613978", ",", "51.5207382756", ",", "51.5207382756", ",", "51.4295317074", ",", "51.5207382756", ",", "51.4838265668", ",", "51.5609976276", ",", "51.5562267736", ",", "51.5750729378", ",", "51.581617349", ",", "51.3060401097", ",", "51.4798993784", ",", "51.3461075991", ",", "51.4998405534", ",", "51.5135056054", ",", "51.6367069", ",", "0", ",", "51.4878959009", ",", "51.4321038027", ",", "51.3642692612", ",", "51.3550088132", ",", "51.3538667145", ",", "51.3475017979", ",", "51.3605238299", ",", "51.501050204", ",", "51.4983044634", ",", "51.3846191789", ",", "0", ",", "51.5544495012", ",", "51.5424969656", ",", "51.5431468306", ",", "0", ",", "0", ",", "51.5346043967", ",", "51.5807332331", ",", "51.5708579913", ",", "0", ",", "51.5415535786", ",", "51.5645981513", ",", "51.5648785107", ",", "51.5285595898", ",", "51.494401922", ",", "51.494839242", ",", "51.5705784137", ",", "51.4734384756", ",", "51.3872916303", ",", "51.3871656344", ",", "51.3914152357", ",", "51.3989557697", ",", "51.4027597", ",", "0", ",", "0", ",", "51.3978888764", ",", "51.3927518325", ",", "51.4300540207", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5585229281", ",", "51.5595694086", ",", "51.4999179383", ",", "51.4999179383", ",", "51.4355043493", ",", "51.4355043493", ",", "51.4355043493", ",", "51.4357455087", ",", "51.4355043493", ",", "51.4355043493", ",", "51.5569588228", ",", "51.5260869232", ",", "51.4685655395", ",", "51.5260869232", ",", "51.5260869232", ",", "51.525577838", ",", "51.570958409", ",", "51.5260869232", ",", "51.4530810746", ",", "51.5805422781", ",", "51.5595004189", ",", "51.4410423169", ",", "51.5753609705", ",", "51.5753609705", ",", "0", ",", "0", ",", "0", ",", "51.4156588348", ",", "51.591644243", ",", "0", ",", "51.5105999888", ",", "51.4973763145", ",", "51.5111590127", ",", "51.5109517692", ",", "51.5058645063", ",", "51.5053935101", ",", "51.5115438062", ",", "51.4978836577", ",", "0", ",", "0", ",", "51.553458521", ",", "51.521059339", ",", "51.510413804", ",", "51.4743140826", ",", "51.4767038495", ",", "51.3895981006", ",", "51.3895981006", ",", "51.3895981006", ",", "51.4014508205", ",", "51.3895981006", ",", "51.3895981006", ",", "51.3895981006", ",", "51.5780924755", ",", "51.5879749219", ",", "0", ",", "51.4509190306", ",", "0", ",", "51.6494128204", ",", "51.648658206", ",", "51.6515062437", ",", "51.4441824121", ",", "51.38661354", ",", "51.576191434", ",", "51.4198460871", ",", "51.4422130219", ",", "0", ",", "0", ",", "51.586971132", ",", "0", ",", "51.4501761175", ",", "0", ",", "51.4282382465", ",", "51.428140745", ",", "51.4281713086", ",", "51.599818753", ",", "51.5930260914", ",", "51.5962873524", ",", "0", ",", "51.4018384741", ",", "51.5306705182", ",", "51.4441982895", ",", "51.4447776972", ",", "51.4441982895", ",", "51.4441982895", ",", "51.4441982895", ",", "51.5954480146", ",", "0", ",", "51.6321810237", ",", "51.6321810237", ",", "51.6299714467", ",", "51.63347169", ",", "51.5435971218", ",", "51.5465343715", ",", "51.4610822002", ",", "51.3928000579", ",", "51.4448709569", ",", "51.4464364188", ",", "0", ",", "51.622051359", ",", "0", ",", "51.5042259591", ",", "51.5022762386", ",", "51.4917169838", ",", "51.499029009", ",", "51.4917169838", ",", "51.4991622516", ",", "51.4424086923", ",", "51.4917169838", ",", "51.473760968", ",", "51.5518231855", ",", "0", ",", "51.5627744591", ",", "51.575773126", ",", "51.3865127306", ",", "51.3838547181", ",", "51.5022067674", ",", "0", ",", "51.4951026114", ",", "0", ",", "51.5778653274", ",", "51.4532491082", ",", "51.4532491082", ",", "0", ",", "51.4714819861", ",", "0", ",", "51.4832667634", ",", "51.4838376446", ",", "51.4280794146", ",", "0", ",", "0", ",", "51.61015537", ",", "51.4190048728", ",", "51.4583483234", ",", "51.6192259718", ",", "51.5590215219", ",", "51.4119026996", ",", "51.5990177939", ",", "51.5990177939", ",", "51.5245524938", ",", "51.458582959", ",", "51.5281182634", ",", "51.5271790037", ",", "0", ",", "51.5940151209", ",", "51.3665293089", ",", "51.5990451114", ",", "51.4497906483", ",", "51.4525906058", ",", "0", ",", "51.5554371503", ",", "51.3537326806", ",", "0", ",", "0", ",", "0", ",", "51.3081319367", ",", "51.6032606274", ",", "51.4768324781", ",", "51.4768324781", ",", "51.3889418006", ",", "51.3699064931", ",", "0", ",", "51.4498929755", ",", "0", ",", "0", ",", "51.5902590087", ",", "51.4258765239", ",", "51.4027363294", ",", "51.3948509174", ",", "51.5825998943", ",", "51.438898263", ",", "0", ",", "51.4081722783", ",", "51.4081722783", ",", "51.5152398072", ",", "51.4081722783", ",", "51.4394161344", ",", "51.5466446041", ",", "51.3981186568", ",", "51.398048166", ",", "51.6096278819", ",", "51.6296443247", ",", "51.5461606933", ",", "51.4676905608", ",", "51.3722864025", ",", "51.3823044134", ",", "0", ",", "0", ",", "51.6024384761", ",", "51.5997444145", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.51685131", ",", "51.4754019567", ",", "51.4754019567", ",", "51.5975389862", ",", "0", ",", "51.4754019567", ",", "0", ",", "51.6177976896", ",", "51.5794606736", ",", "51.5823627188", ",", "51.5773337404", ",", "51.4354264495", ",", "51.3783149994", ",", "51.5372942063", ",", "51.6027639064", ",", "51.3556808283", ",", "51.4336226741", ",", "51.5653983032", ",", "0", ",", "51.5303600354", ",", "51.4991601005", ",", "0", ",", "0", ",", "51.51487039", ",", "51.51487039", ",", "51.6016756186", ",", "0", ",", "0", ",", "51.5585093799", ",", "0", ",", "51.5492798007", ",", "0", ",", "0", ",", "0", ",", "51.5512212915", ",", "51.4425515739", ",", "51.5460161033", ",", "51.4382603004", ",", "51.6287633945", ",", "51.4908388225", ",", "51.5736105646", ",", "51.3566165658", ",", "0", ",", "51.4910459168", ",", "51.3521759467", ",", "51.5600509435", ",", "51.5195440764", ",", "51.5475405178", ",", "51.5475405178", ",", "51.5475405178", ",", "51.5422739246", ",", "51.4215590462", ",", "51.4889771511", ",", "51.5110397464", ",", "51.4993802955", ",", "51.4246574701", ",", "51.399093546", ",", "51.399093546", ",", "51.399093546", ",", "51.4319391929", ",", "51.4817639782", ",", "51.4256174295", ",", "51.4279310132", ",", "51.399093546", ",", "51.399093546", ",", "0", ",", "51.5385334859", ",", "51.3564359015", ",", "0", ",", "0", ",", "51.4097044724", ",", "51.389459414", ",", "51.3904447334", ",", "51.389459414", ",", "51.3901641909", ",", "0", ",", "51.571645562", ",", "51.5197012525", ",", "51.5197012525", ",", "51.4224485019", ",", "51.4785123842", ",", "51.6736386842", ",", "51.6736386842", ",", "0", ",", "51.3955052682", ",", "51.4036127241", ",", "0", ",", "51.4088829726", ",", "51.3301179251", ",", "51.4139763432", ",", "51.5487301323", ",", "51.5810878914", ",", "0", ",", "51.499171839", ",", "51.4979304257", ",", "51.505260266", ",", "0", ",", "51.3942286512", ",", "51.5226141476", ",", "51.5311832237", ",", "0", ",", "0", ",", "51.3848669847", ",", "51.5257762416", ",", "51.5276124888", ",", "51.4600089003", ",", "51.61338491", ",", "51.5352702652", ",", "51.3767163502", ",", "51.478630076", ",", "51.61338491", ",", "51.4767707629", ",", "51.3996283128", ",", "51.5133086384", ",", "51.5083897105", ",", "51.4236969082", ",", "0", ",", "51.4001348016", ",", "51.5277962713", ",", "51.5564488653", ",", "51.6081548227", ",", "51.5838048315", ",", "51.3968991149", ",", "51.5146829162", ",", "51.5120528192", ",", "51.528281449", ",", "0", ",", "51.3968991149", ",", "51.3968991149", ",", "51.5185802472", ",", "51.5920791723", ",", "51.5115631705", ",", "51.5249300202", ",", "51.4553712749", ",", "51.4571778822", ",", "0", ",", "51.4549432579", ",", "51.5335833098", ",", "51.4604327488", ",", "51.580731591", ",", "51.3949441321", ",", "51.5764901821", ",", "51.5764901821", ",", "51.5098524105", ",", "51.3957023896", ",", "51.3957023896", ",", "51.5455273748", ",", "51.5170577342", ",", "51.4008821665", ",", "51.4008821665", ",", "0", ",", "51.6310935981", ",", "51.6310935981", ",", "51.6310935981", ",", "51.6310935981", ",", "51.6310935981", ",", "51.4359847128", ",", "51.5975561043", ",", "51.5975561043", ",", "51.5387863552", ",", "51.5995827746", ",", "51.4516120069", ",", "51.5975561043", ",", "51.4135389556", ",", "51.5975561043", ",", "51.437119928", ",", "51.4582556129", ",", "51.4600966921", ",", "51.643651133", ",", "51.6149133077", ",", "51.5694333433", ",", "0", ",", "51.5162507874", ",", "51.6149133077", ",", "51.4452488176", ",", "51.445455669", ",", "0", ",", "51.6038518886", ",", "51.5995962491", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5339756278", ",", "51.530009543", ",", "51.5346092689", ",", "51.542792201", ",", "51.4930432547", ",", "51.512898504", ",", "51.4107228476", ",", "51.4712972442", ",", "51.512898504", ",", "51.3605805445", ",", "51.5187290567", ",", "51.5150042898", ",", "51.5134904059", ",", "51.50976091", ",", "51.4548515698", ",", "51.5466484671", ",", "51.4548515698", ",", "51.4548515698", ",", "51.5172507114", ",", "51.4035430258", ",", "51.5606783237", ",", "0", ",", "51.6191677865", ",", "51.590273876", ",", "51.6431361063", ",", "0", ",", "51.5481092445", ",", "51.5735379476", ",", "51.494686696", ",", "51.5093043694", ",", "51.5192433652", ",", "51.5493145108", ",", "51.5192433652", ",", "51.5182826533", ",", "51.5389509955", ",", "51.5192433652", ",", "51.3753346083", ",", "51.6343475574", ",", "51.5420968836", ",", "51.5951437515", ",", "51.5951437515", ",", "0", ",", "51.5189995123", ",", "51.3639190264", ",", "0", ",", "51.3577080626", ",", "51.3595968018", ",", "51.5995875259", ",", "51.5881717778", ",", "0", ",", "51.6806016836", ",", "51.6806016836", ",", "51.6071138102", ",", "51.4138925878", ",", "51.4138925878", ",", "0", ",", "51.3749927115", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4389381333", ",", "51.4389381333", ",", "51.4645263629", ",", "0", ",", "0", ",", "51.5706261521", ",", "51.4449691185", ",", "0", ",", "0", ",", "51.4949442131", ",", "51.4929883617", ",", "51.4981690071", ",", "51.5742109888", ",", "51.5727889067", ",", "51.584449392", ",", "51.5357243825", ",", "51.5386955728", ",", "51.5063580077", ",", "0", ",", "51.4258580904", ",", "51.4705669146", ",", "51.3407558007", ",", "51.5282296581", ",", "51.4471099754", ",", "51.6143761875", ",", "51.4916142534", ",", "0", ",", "51.4546220347", ",", "51.6042348674", ",", "51.4937445633", ",", "51.6450568367", ",", "51.5435467949", ",", "51.5664007299", ",", "51.5120858743", ",", "51.4001591929", ",", "0", ",", "51.3557818456", ",", "51.3547792546", ",", "51.5260478065", ",", "51.6317895026", ",", "51.6034931898", ",", "51.5898398376", ",", "51.3549991006", ",", "51.3525625343", ",", "51.5586119248", ",", "51.5871281032", ",", "51.5586119248", ",", "51.3500481691", ",", "51.3904311309", ",", "0", ",", "51.6197856533", ",", "51.617606552", ",", "51.3698263407", ",", "51.6167043208", ",", "51.5093643267", ",", "51.4664367163", ",", "51.5573151189", ",", "51.3896497091", ",", "51.442272326", ",", "0", ",", "0", ",", "0", ",", "51.4288784899", ",", "0", ",", "0", ",", "51.4998437881", ",", "0", ",", "51.6050645903", ",", "51.6050645903", ",", "51.6050645903", ",", "51.447778169", ",", "51.6050645903", ",", "0", ",", "51.3541502947", ",", "51.3540644128", ",", "51.5707869341", ",", "51.5690300258", ",", "51.3656987484", ",", "51.481878983", ",", "51.6564695248", ",", "0", ",", "51.5204724122", ",", "51.4726179368", ",", "0", ",", "0", ",", "0", ",", "51.3952247099", ",", "51.554007318", ",", "51.5584710887", ",", "51.3956700111", ",", "51.5965196979", ",", "51.4123697805", ",", "51.4980465833", ",", "51.5300868952", ",", "51.5770340553", ",", "51.4311883631", ",", "51.6123229923", ",", "51.6315618401", ",", "51.3761994742", ",", "51.4443947369", ",", "51.6330529192", ",", "51.4349945394", ",", "51.63080861", ",", "51.3892352419", ",", "51.5337100231", ",", "51.4793389529", ",", "51.4809530469", ",", "0", ",", "51.3753661417", ",", "51.5465229018", ",", "0", ",", "0", ",", "0", ",", "51.5231610114", ",", "51.5151719455", ",", "51.5222095602", ",", "51.5183833562", ",", "51.5208958641", ",", "51.5132012031", ",", "0", ",", "51.4813224801", ",", "51.5272534332", ",", "51.4749881452", ",", "0", ",", "51.4749881452", ",", "51.4749881452", ",", "0", ",", "51.5096634379", ",", "51.5533222195", ",", "51.4281833541", ",", "0", ",", "0", ",", "51.5080016889", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6419866774", ",", "51.6419866774", ",", "51.3582514606", ",", "0", ",", "51.6021523333", ",", "51.3231473086", ",", "51.3132879425", ",", "0", ",", "51.5060169028", ",", "51.5185981734", ",", "51.5093985645", ",", "51.5093985645", ",", "51.5117215504", ",", "51.5032444907", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4720034473", ",", "51.4746202134", ",", "51.4714680274", ",", "51.4682466653", ",", "0", ",", "0", ",", "51.564494154", ",", "51.5615257022", ",", "51.5617931672", ",", "51.5578830093", ",", "51.5625814243", ",", "51.5609527447", ",", "51.5605418125", ",", "51.5625814243", ",", "0", ",", "51.625912382", ",", "51.5111095085", ",", "0", ",", "0", ",", "51.4890526303", ",", "51.3971346941", ",", "51.3971346941", ",", "51.3976948265", ",", "51.3971346941", ",", "0", ",", "0", ",", "51.5969442629", ",", "51.5441701739", ",", "51.3856307783", ",", "51.5925878427", ",", "51.5159548174", ",", "51.5159548174", ",", "51.558442509", ",", "0", ",", "0", ",", "51.3443801909", ",", "0", ",", "51.5109959409", ",", "51.5109959409", ",", "51.5109959409", ",", "51.5109959409", ",", "0", ",", "51.3120528947", ",", "51.572748554", ",", "51.5401806876", ",", "0", ",", "0", ",", "0", ",", "51.6048381401", ",", "51.656374312", ",", "51.6091295072", ",", "51.5103099826", ",", "51.5095479171", ",", "0", ",", "0", ",", "51.542250097", ",", "51.5402470506", ",", "51.5411867982", ",", "51.5422809984", ",", "51.5410773813", ",", "51.5445727622", ",", "51.5372299795", ",", "51.5405167133", ",", "0", ",", "51.5427774569", ",", "0", ",", "51.4621859482", ",", "0", ",", "51.4362483466", ",", "51.4265032804", ",", "51.476578972", ",", "51.4769503138", ",", "51.476578972", ",", "51.6061809876", ",", "51.4384712046", ",", "51.373698589", ",", "51.6003583379", ",", "51.4391477336", ",", "51.4254549593", ",", "51.4188762399", ",", "51.4188762399", ",", "51.4319541626", ",", "51.4188762399", ",", "51.4211371111", ",", "51.4234714341", ",", "51.4188762399", ",", "51.4386117805", ",", "51.4188762399", ",", "51.4188762399", ",", "51.4084794143", ",", "51.4460275078", ",", "51.4290335057", ",", "51.4254549593", ",", "0", ",", "51.3835169028", ",", "0", ",", "51.5477949044", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4373718315", ",", "0", ",", "51.4962521134", ",", "51.45812227", ",", "51.5409573347", ",", "0", ",", "51.5191457219", ",", "51.4220642035", ",", "51.5441928185", ",", "51.5439524448", ",", "51.4183716972", ",", "0", ",", "0", ",", "0", ",", "51.5939250737", ",", "51.6031208753", ",", "51.4994287297", ",", "0", ",", "51.484787525", ",", "51.4214481598", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.4288678785", ",", "51.4115020873", ",", "51.655867922", ",", "51.655867922", ",", "51.6567265168", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.655867922", ",", "51.570004447", ",", "51.5607385833", ",", "51.5431004407", ",", "51.4613052011", ",", "0", ",", "51.5669719912", ",", "51.4865146301", ",", "51.4501470422", ",", "51.5816949928", ",", "51.5813035034", ",", "51.6050543223", ",", "51.3781109178", ",", "51.4640973808", ",", "51.5331673205", ",", "51.4911939973", ",", "51.4689286646", ",", "51.4259538071", ",", "51.5267077685", ",", "51.5175354445", ",", "51.5090061405", ",", "51.5709373228", ",", "51.5441842844", ",", "51.369470186", ",", "51.3123797297", ",", "51.3823643191", ",", "51.4708422908", ",", "51.3590495403", ",", "51.516643255", ",", "51.4059193378", ",", "51.6336687322", ",", "51.6309347418", ",", "51.3396135027", ",", "51.4829125751", ",", "51.4865920722", ",", "51.5810318109", ",", "51.4352783038", ",", "51.4815923619", ",", "51.4725739631", ",", "51.4735950363", ",", "51.4277101682", ",", "51.3807155269", ",", "51.3852918187", ",", "51.386654375", ",", "51.3423653426", ",", "51.4974410837", ",", "51.6103016091", ",", "51.3733406188", ",", "51.6812390241", ",", "51.6744953176", ",", "51.3828440197", ",", "51.534218299", ",", "51.6211885247", ",", "51.5369854074", ",", "51.4112798205", ",", "51.5867256836", ",", "51.5852881444", ",", "51.5340033171", ",", "51.4630631324", ",", "51.4630833641", ",", "51.6113288451", ",", "51.6532719197", ",", "51.6645956121", ",", "51.4446572592", ",", "51.5134813283", ",", "51.5486109846", ",", "51.3820736452", ",", "0", ",", "51.5140384995", ",", "51.530375135", ",", "51.4621776666", ",", "51.3799265045", ",", "51.539089463", ",", "51.5956123349", ",", "51.551229807", ",", "51.4568223704", ",", "51.4689117013", ",", "51.5832131971", ",", "51.5694333433", ",", "51.5741795832", ",", "51.4576495427", ",", "51.4063938215", ",", "51.5353979465", ",", "51.4204742068", ",", "51.4165069459", ",", "51.6113180259", ",", "51.4039187341", ",", "51.5859778504", ",", "51.5025976124", ",", "51.4318068033", ",", "51.5226316988", ",", "51.4029681153", ",", "51.4691339738", ",", "51.5016099596", ",", "51.4987739106", ",", "51.4891341237", ",", "51.6158665028", ",", "51.6068768989", ",", "51.4259068959", ",", "51.6175682679", ",", "51.4836783195", ",", "51.6111059635", ",", "51.3068108826", ",", "51.5609820944", ",", "51.5638585268", ",", "51.5628387282", ",", "51.5481696488", ",", "51.5570187819", ",", "51.5574046397", ",", "51.5549895417", ",", "51.5605471248", ",", "51.5505808921", ",", "51.554749935", ",", "0", ",", "51.4171934156", ",", "51.644298832", ",", "51.5256152876", ",", "51.5839690113", ",", "51.479119646", ",", "0", ",", "51.4691043765", ",", "0", ",", "51.5884122928", ",", "0", ",", "0", ",", "51.4334135922", ",", "51.6060647834", ",", "51.5466072964", ",", "51.383209304", ",", "51.3811382909", ",", "51.5264027494", ",", "0", ",", "0", ",", "0", ",", "51.4768082069", ",", "0", ",", "51.4310411012", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4027097703", ",", "51.4851016347", ",", "51.4139475133", ",", "51.5959250435", ",", "51.5360570525", ",", "51.4444146952", ",", "0", ",", "51.3703577815", ",", "51.3219638578", ",", "51.5431921066", ",", "51.6081670173", ",", "51.4020276933", ",", "51.4020276933", ",", "51.5257364873", ",", "51.6132191928", ",", "51.3333796678", ",", "51.3731975758", ",", "0", ",", "0", ",", "51.5705366289", ",", "51.5515586958", ",", "51.5705366289", ",", "51.4576125585", ",", "51.4617552159", ",", "51.3929751193", ",", "51.3988769242", ",", "51.3906592838", ",", "51.3845797126", ",", "51.4005999419", ",", "51.4014765543", ",", "51.3927212656", ",", "51.3916051645", ",", "51.3916051645", ",", "51.3938048293", ",", "51.3956894474", ",", "51.388434326", ",", "51.4001169745", ",", "51.4836618519", ",", "51.4931296405", ",", "51.4952566803", ",", "51.4970899224", ",", "51.4939972485", ",", "51.4564047762", ",", "51.4438666082", ",", "51.4152674599", ",", "51.5848977951", ",", "51.4079175305", ",", "51.5180478725", ",", "51.5513377052", ",", "0", ",", "51.6151240059", ",", "51.3592223391", ",", "51.5319566215", ",", "51.5589811266", ",", "51.5001742544", ",", "51.4529847916", ",", "51.5163531031", ",", "51.5241458592", ",", "51.5228224455", ",", "51.5279643497", ",", "51.5749970578", ",", "51.3593881518", ",", "51.369250102", ",", "51.3619133603", ",", "51.3748156753", ",", "0", ",", "51.3747311272", ",", "51.3745006919", ",", "51.3774121698", ",", "51.3613258782", ",", "51.3921687556", ",", "51.3704208892", ",", "51.3600083033", ",", "51.3467891985", ",", "51.4779394723", ",", "51.4779394723", ",", "51.4779394723", ",", "51.3607400678", ",", "0", ",", "51.361732431", ",", "51.4795405823", ",", "51.5491608325", ",", "51.3593116523", ",", "51.5130852556", ",", "51.3685398425", ",", "51.3631396394", ",", "51.4806941139", ",", "51.3594748738", ",", "0", ",", "51.3677502268", ",", "51.5556667055", ",", "51.4488656996", ",", "51.5618684114", ",", "51.556780789", ",", "51.5599587362", ",", "51.5645864688", ",", "0", ",", "51.4292394078", ",", "51.5161438013", ",", "51.5076538438", ",", "51.5474592939", ",", "51.4331528133", ",", "51.6260346413", ",", "51.5053758565", ",", "51.3633631139", ",", "51.6025979738", ",", "51.4619753648", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3911809579", ",", "51.5491457179", ",", "51.3086294015", ",", "51.4352702911", ",", "0", ",", "0", ",", "51.5502808753", ",", "0", ",", "0", ",", "51.5290896645", ",", "0", ",", "0", ",", "51.5426748952", ",", "0", ",", "51.4942810304", ",", "51.4510586753", ",", "51.5158164332", ",", "51.5409082118", ",", "0", ",", "51.4070673684", ",", "0", ",", "0", ",", "51.4229484153", ",", "51.4276752502", ",", "51.43324397", ",", "51.4313117558", ",", "51.4269559878", ",", "51.4364750613", ",", "51.4336205542", ",", "51.4392032291", ",", "51.4257106145", ",", "51.4276112222", ",", "51.4276112222", ",", "0", ",", "51.43174521", ",", "51.4105171145", ",", "51.5487690139", ",", "51.4880268564", ",", "51.4138761161", ",", "51.5825230715", ",", "51.4107363288", ",", "51.3654499853", ",", "51.3642905713", ",", "51.4818950125", ",", "51.4800947648", ",", "0", ",", "51.3723211365", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4509990137", ",", "0", ",", "51.5549419164", ",", "51.4649402597", ",", "51.5990478378", ",", "51.5398583606", ",", "51.5799452637", ",", "51.4649402597", ",", "51.3967239307", ",", "51.6137205145", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4005479843", ",", "51.4021371428", ",", "0", ",", "51.5750565204", ",", "51.3780895475", ",", "0", ",", "51.6274507127", ",", "51.5005457915", ",", "0", ",", "51.5415985667", ",", "51.4288930301", ",", "51.5113136235", ",", "51.6036205903", ",", "51.4914973771", ",", "51.4792893056", ",", "51.5066446837", ",", "51.50134192", ",", "0", ",", "51.3048831629", ",", "51.3048831629", ",", "51.3048831629", ",", "51.3048831629", ",", "51.3048831629", ",", "0", ",", "0", ",", "0", ",", "51.3019419637", ",", "0", ",", "51.6128814664", ",", "51.5967828072", ",", "51.5371410422", ",", "51.5250358322", ",", "51.4541240901", ",", "51.474777407", ",", "51.3600733416", ",", "0", ",", "51.3505627201", ",", "51.4274043812", ",", "51.4274043812", ",", "51.4285138835", ",", "51.4267528598", ",", "51.4304206645", ",", "51.425046045", ",", "51.4216901575", ",", "51.427046166", ",", "51.6128809687", ",", "51.6160700903", ",", "51.4763912597", ",", "0", ",", "51.5338612633", ",", "0", ",", "51.4911255223", ",", "51.4490817404", ",", "0", ",", "51.5162298438", ",", "51.5207639686", ",", "51.6143730404", ",", "51.3710549859", ",", "51.5108726479", ",", "51.5110209733", ",", "51.582322741", ",", "51.5517736707", ",", "51.4642791931", ",", "51.5108726479", ",", "0", ",", "0", ",", "51.5010093431", ",", "51.5921933074", ",", "51.5413037991", ",", "51.5329634163", ",", "51.3093644683", ",", "51.5541559608", ",", "51.5171934386", ",", "0", ",", "51.5267857686", ",", "51.5027035452", ",", "51.4902642124", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5813920875", ",", "51.4940300428", ",", "51.463312528", ",", "51.5238564008", ",", "51.5249340929", ",", "0", ",", "0", ",", "51.5265187587", ",", "51.5282313279", ",", "51.5281188889", ",", "0", ",", "51.5249049039", ",", "51.5070519601", ",", "51.5057673223", ",", "0", ",", "0", ",", "51.4349627623", ",", "51.6207684613", ",", "51.4738639911", ",", "51.4329025546", ",", "0", ",", "0", ",", "51.3849080646", ",", "51.6124126441", ",", "51.5418397608", ",", "51.5600311988", ",", "51.5817394091", ",", "51.5150141878", ",", "51.3989845398", ",", "51.59298789", ",", "51.382889432", ",", "51.6168270069", ",", "51.4739153853", ",", "51.5817394091", ",", "51.5817394091", ",", "51.3872970043", ",", "51.3224675858", ",", "51.3228445373", ",", "51.4718530689", ",", "51.600665363", ",", "51.6110715198", ",", "0", ",", "51.4862525352", ",", "51.4671888369", ",", "51.3979432767", ",", "51.3809287092", ",", "51.4973350404", ",", "51.5852214843", ",", "51.5020144634", ",", "0", ",", "0", ",", "51.5753799063", ",", "51.3427906253", ",", "51.5970250039", ",", "51.5970250039", ",", "51.5970250039", ",", "51.5319313255", ",", "51.4019214134", ",", "0", ",", "0", ",", "51.5866423967", ",", "51.4958673522", ",", "51.4266989133", ",", "0", ",", "51.4456576411", ",", "51.4464477059", ",", "51.4260494489", ",", "51.4260494489", ",", "51.6294824867", ",", "51.5943774016", ",", "51.4697986994", ",", "51.5696344711", ",", "51.3976931397", ",", "51.3562490161", ",", "51.5078551158", ",", "0", ",", "51.3546796767", ",", "51.4603671013", ",", "51.4979932463", ",", "51.497048723", ",", "51.3956381871", ",", "51.3956381871", ",", "51.3956381871", ",", "51.3907290696", ",", "0", ",", "0", ",", "51.3042490916", ",", "51.4484225665", ",", "51.4484225665", ",", "51.4675003069", ",", "51.5779973074", ",", "51.616157322", ",", "51.5762662518", ",", "51.577511953", ",", "51.4525918531", ",", "51.564588562", ",", "51.575699063", ",", "51.5893577865", ",", "51.3970721214", ",", "0", ",", "51.4447270388", ",", "51.4464255236", ",", "51.4754754272", ",", "51.4840371247", ",", "51.5511031656", ",", "51.4664107208", ",", "0", ",", "51.389743237", ",", "51.6225621101", ",", "51.5175871449", ",", "51.6267589924", ",", "51.5655518166", ",", "51.5653918259", ",", "51.5532265488", ",", "51.6326866955", ",", "0", ",", "51.583434743", ",", "51.583434743", ",", "0", ",", "51.3018903114", ",", "51.3018903114", ",", "51.5892385515", ",", "51.4606326812", ",", "51.5828836933", ",", "51.580847422", ",", "51.64239812", ",", "0", ",", "0", ",", "51.306743959", ",", "51.3055019666", ",", "51.3927436119", ",", "51.5549982979", ",", "51.6118939135", ",", "51.5772205643", ",", "51.4733944492", ",", "51.3860564588", ",", "51.4976086781", ",", "51.5182050366", ",", "51.6094111312", ",", "51.4778269887", ",", "51.5026787934", ",", "51.4781023547", ",", "51.4304635691", ",", "51.6040613994", ",", "51.3473903963", ",", "51.4242077822", ",", "51.4234060195", ",", "51.5027183211", ",", "51.5364591553", ",", "51.5938758698", ",", "51.4660424605", ",", "51.5026787934", ",", "51.5437426674", ",", "51.6220332104", ",", "51.4563951224", ",", "0", ",", "0", ",", "51.6057192636", ",", "51.5008822403", ",", "0", ",", "51.542804675", ",", "51.5503639185", ",", "51.5986296019", ",", "51.3602321042", ",", "51.3629193203", ",", "51.5084128119", ",", "51.3624371095", ",", "51.3448683451", ",", "51.3694219355", ",", "51.5936956331", ",", "51.5047378528", ",", "51.4001526811", ",", "0", ",", "51.4697041665", ",", "51.3619050849", ",", "51.5844487606", ",", "51.3619050849", ",", "51.3869266018", ",", "51.3990732716", ",", "51.5010891126", ",", "51.6521908668", ",", "51.4552444647", ",", "51.4190046902", ",", "51.3258276495", ",", "0", ",", "51.5847976295", ",", "0", ",", "0", ",", "0", ",", "51.472471451", ",", "51.6165458374", ",", "51.5103091313", ",", "51.3589073985", ",", "51.5911610624", ",", "51.4002902831", ",", "51.6129356545", ",", "0", ",", "51.3258699177", ",", "51.3681086217", ",", "0", ",", "51.4875590576", ",", "51.5335304274", ",", "0", ",", "51.5933911143", ",", "51.3529413516", ",", "51.4841630066", ",", "51.3707615419", ",", "51.5759839032", ",", "0", ",", "51.6011247946", ",", "0", ",", "51.4518791788", ",", "51.5015928858", ",", "0", ",", "51.4957450849", ",", "51.4455997587", ",", "51.5703890716", ",", "51.4750382887", ",", "51.5978704944", ",", "51.5978704944", ",", "51.5978704944", ",", "51.4503377234", ",", "51.4781985961", ",", "51.4832951818", ",", "51.4726269932", ",", "51.6052568453", ",", "51.3837255991", ",", "51.4853027539", ",", "51.4934822551", ",", "51.3851191963", ",", "51.4934822551", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0", ",", "-", "0.2168538133", ",", "0", ",", "0.0779413996", ",", "0", ",", "0.0476391714", ",", "0.02848861435", ",", "0.02173734085", ",", "0.0063434231", ",", "0", ",", "-", "0.10524795435", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.196744017", ",", "0", ",", "-", "0.0863854133", ",", "-", "0.06252478485", ",", "-", "0.1244666502", ",", "-", "0.1007717874", ",", "0.1104717378", ",", "0", ",", "-", "0.10965427345", ",", "-", "0.2132010555", ",", "-", "0.3748594516", ",", "-", "0.3748594516", ",", "-", "0.2127476327", ",", "-", "0.3748594516", ",", "-", "0.38709665265", ",", "-", "0.2134404453", ",", "-", "0.37873743815", ",", "0.1227320535", ",", "0.1280819907", ",", "0.0206897122", ",", "-", "0.1489447207", ",", "-", "0.04463139", ",", "-", "0.2682747797", ",", "-", "0.2254601497", ",", "-", "0.0094730636", ",", "0", ",", "-", "0.0576203307", ",", "-", "0.0893518982", ",", "-", "0.0953948153", ",", "-", "0.09775385065", ",", "-", "0.0974780103", ",", "-", "0.21441209505", ",", "0.08466179105", ",", "-", "0.306611730467", ",", "-", "0.3057818276", ",", "-", "0.0215251705", ",", "0", ",", "-", "0.165179696667", ",", "0.03695414905", ",", "0.2585555737", ",", "0", ",", "0", ",", "-", "0.33857088385", ",", "-", "0.02929898445", ",", "-", "0.148760735933", ",", "0", ",", "-", "0.1793891735", ",", "-", "0.353511179525", ",", "-", "0.3520233436", ",", "0.18885037025", ",", "-", "0.174480906333", ",", "-", "0.1749412505", ",", "-", "0.30739609585", ",", "-", "0.1223937019", ",", "-", "0.2580725868", ",", "-", "0.2538374648", ",", "-", "0.2632486709", ",", "-", "0.1280695657", ",", "-", "0.20566116345", ",", "0", ",", "0", ",", "-", "0.0777317373", ",", "-", "0.0666773803", ",", "-", "0.11913072005", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0936188226", ",", "0.09242612815", ",", "-", "0.01404954365", ",", "-", "0.01404954365", ",", "-", "0.349586119", ",", "-", "0.349586119", ",", "-", "0.349586119", ",", "-", "0.34946951875", ",", "-", "0.349586119", ",", "-", "0.349586119", ",", "-", "0.397659719325", ",", "0.16630589825", ",", "-", "0.325475253225", ",", "0.16630589825", ",", "0.16630589825", ",", "0.1686292884", ",", "0.18688224025", ",", "0.16630589825", ",", "-", "0.2438026998", ",", "-", "0.0727533106667", ",", "-", "0.3347855026", ",", "-", "0.0584076489", ",", "0.0724191226", ",", "0.0724191226", ",", "0", ",", "0", ",", "0", ",", "-", "0.1915510481", ",", "0.0281533980667", ",", "0", ",", "-", "0.37627807142", ",", "-", "0.3997503218", ",", "-", "0.368652819367", ",", "-", "0.37337032635", ",", "-", "0.3787462167", ",", "-", "0.37785153875", ",", "-", "0.3754268964", ",", "-", "0.3947620827", ",", "0", ",", "0", ",", "-", "0.1568433939", ",", "-", "0.1234841557", ",", "-", "0.1219184781", ",", "-", "0.0773786102", ",", "-", "0.07970468055", ",", "0.04336461175", ",", "0.04336461175", ",", "0.04336461175", ",", "0.04569734145", ",", "0.04336461175", ",", "0.04336461175", ",", "0.04336461175", ",", "-", "0.3813870847", ",", "-", "0.20780599435", ",", "0", ",", "0.010522154", ",", "0", ",", "-", "0.06019121135", ",", "-", "0.04651668076", ",", "-", "0.07318489365", ",", "-", "0.4170801558", ",", "-", "0.28065577665", ",", "-", "0.4348093507", ",", "-", "0.147862883", ",", "-", "0.2093097942", ",", "0", ",", "0", ",", "0.22416836585", ",", "0", ",", "0.0638691611", ",", "0", ",", "-", "0.0380047931", ",", "-", "0.0321899037", ",", "-", "0.01374591915", ",", "-", "0.0015491327", ",", "0.0365505239", ",", "0.0216509356", ",", "0", ",", "-", "0.0772857516", ",", "-", "0.45471019065", ",", "-", "0.19802187985", ",", "-", "0.2064824079", ",", "-", "0.19802187985", ",", "-", "0.19802187985", ",", "-", "0.19802187985", ",", "-", "0.2336234997", ",", "0", ",", "-", "0.127925039783", ",", "-", "0.127925039783", ",", "-", "0.1278065075", ",", "-", "0.1313255727", ",", "-", "0.0841076291", ",", "-", "0.0833496094", ",", "-", "0.3497863403", ",", "0.03067054455", ",", "-", "0.2149477235", ",", "-", "0.2144045592", ",", "0", ",", "-", "0.1901674686", ",", "0", ",", "-", "0.1045427473", ",", "-", "0.0965087458333", ",", "-", "0.0654531095", ",", "-", "0.0568011563", ",", "-", "0.0654531095", ",", "-", "0.0970013291", ",", "-", "0.0774671356", ",", "-", "0.0654531095", ",", "-", "0.082866706775", ",", "-", "0.36467893085", ",", "0", ",", "-", "0.0524467404", ",", "-", "0.14311043445", ",", "-", "0.2713606581", ",", "-", "0.2688811415", ",", "0.1127727732", ",", "0", ",", "-", "0.0769216676", ",", "0", ",", "-", "0.2215685067", ",", "-", "0.3964003324", ",", "-", "0.3964003324", ",", "0", ",", "-", "0.01483131465", ",", "0", ",", "-", "0.3866051149", ",", "-", "0.4902409228", ",", "0.0557196829", ",", "0", ",", "0", ",", "0.0379671802", ",", "-", "0.21299293395", ",", "-", "0.1741877695", ",", "-", "0.14541072995", ",", "-", "0.1400996501", ",", "-", "0.23359659005", ",", "-", "0.0621015317", ",", "-", "0.0621015317", ",", "0.1741405777", ",", "-", "0.1751068905", ",", "-", "0.10083281715", ",", "-", "0.10447613785", ",", "0", ",", "-", "0.0769692205", ",", "-", "0.0991655876", ",", "0.2200941742", ",", "-", "0.44506562745", ",", "-", "0.44158817635", ",", "0", ",", "-", "0.0162697009", ",", "-", "0.12935360675", ",", "0", ",", "0", ",", "0", ",", "0.0224603751", ",", "0.0346979197", ",", "-", "0.3564902054", ",", "-", "0.3564902054", ",", "-", "0.0668595666", ",", "-", "0.0311320979", ",", "0", ",", "0.0003229882", ",", "0", ",", "0", ",", "-", "0.1592952656", ",", "-", "0.3690932735", ",", "-", "0.2729271136", ",", "0.0551422705", ",", "-", "0.2529945637", ",", "-", "0.1751434661", ",", "0", ",", "-", "0.09950230115", ",", "-", "0.09950230115", ",", "-", "0.397438021", ",", "-", "0.09950230115", ",", "-", "0.1754825512", ",", "0.1376636459", ",", "0.11583596125", ",", "0.1130148802", ",", "-", "0.2783150093", ",", "-", "0.2690900088", ",", "0.0229758858", ",", "-", "0.040164114", ",", "0.1045577857", ",", "-", "0.09731195165", ",", "0", ",", "0", ",", "-", "0.174629634725", ",", "-", "0.1822559828", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1067355394", ",", "0.1252578518", ",", "0.1252578518", ",", "-", "0.14191942115", ",", "0", ",", "0.1252578518", ",", "0", ",", "0.00042529955", ",", "-", "0.0805570873", ",", "-", "0.099733588", ",", "-", "0.0728674183", ",", "-", "0.1584336487", ",", "-", "0.2187814541", ",", "0.02659149415", ",", "0.0158011798", ",", "-", "0.1056471897", ",", "0.0208769873", ",", "-", "0.29370812785", ",", "0", ",", "-", "0.039773074", ",", "-", "0.2066965401", ",", "0", ",", "0", ",", "-", "0.0750945737", ",", "-", "0.0750945737", ",", "-", "0.287951423", ",", "0", ",", "0", ",", "-", "0.24730341165", ",", "0", ",", "-", "0.20604588285", ",", "0", ",", "0", ",", "0", ",", "-", "0.1566814136", ",", "-", "0.0302896586", ",", "0.03134209535", ",", "-", "0.4207093397", ",", "-", "0.05543716145", ",", "-", "0.02331804325", ",", "0.153789136067", ",", "-", "0.12861130965", ",", "0", ",", "-", "0.3103508991", ",", "-", "0.0558553938", ",", "-", "0.3588582856", ",", "-", "0.26694744165", ",", "0.2168136478", ",", "0.2168136478", ",", "0.2168136478", ",", "0.025947457", ",", "-", "0.207511487133", ",", "-", "0.1352958162", ",", "-", "0.05874726035", ",", "-", "0.105932491617", ",", "-", "0.1761616225", ",", "0.049617665", ",", "0.049617665", ",", "0.049617665", ",", "-", "0.3913345637", ",", "-", "0.0740479008", ",", "-", "0.174090343", ",", "-", "0.1754006894", ",", "0.049617665", ",", "0.049617665", ",", "0", ",", "0.16045081785", ",", "-", "0.1050702345", ",", "0", ",", "0", ",", "-", "0.12202238435", ",", "-", "0.196884414633", ",", "-", "0.18847059525", ",", "-", "0.196884414633", ",", "-", "0.1982701085", ",", "0", ",", "0.13517822045", ",", "-", "0.2177310582", ",", "-", "0.2177310582", ",", "-", "0.0586277478", ",", "-", "0.3454993631", ",", "-", "0.0533779416", ",", "-", "0.0533779416", ",", "0", ",", "-", "0.25436083555", ",", "-", "0.21322644185", ",", "0", ",", "-", "0.3046463513", ",", "-", "0.1084165102", ",", "-", "0.15515412035", ",", "0.01946947365", ",", "-", "0.0324807953", ",", "0", ",", "-", "0.1334028592", ",", "-", "0.0675960762", ",", "-", "0.1376643335", ",", "0", ",", "-", "0.22505607595", ",", "-", "0.10246737005", ",", "-", "0.1060183428", ",", "0", ",", "0", ",", "0.0822180912", ",", "-", "0.17825267025", ",", "-", "0.174027302", ",", "-", "0.2175168925", ",", "-", "0.15508811045", ",", "-", "0.46156196905", ",", "-", "0.198920381", ",", "-", "0.1044017317", ",", "-", "0.15508811045", ",", "0.0642595918", ",", "-", "0.2613058243", ",", "-", "0.0791166739", ",", "-", "0.0717289897", ",", "0.05023662785", ",", "0", ",", "0.1234483717", ",", "-", "0.47419769835", ",", "0.2463242344", ",", "-", "0.28796039285", ",", "-", "0.399905417", ",", "-", "0.3111128492", ",", "-", "0.3137856606", ",", "-", "0.312343130633", ",", "-", "0.0143075144", ",", "0", ",", "-", "0.3111128492", ",", "-", "0.3111128492", ",", "-", "0.0101890446", ",", "-", "0.0699693923", ",", "0.0126222597", ",", "-", "0.0933321133", ",", "-", "0.3199883224", ",", "-", "0.3236933285", ",", "0", ",", "-", "0.320241534", ",", "0.0843920193", ",", "-", "0.32271752965", ",", "-", "0.4340615828", ",", "-", "0.30060491455", ",", "-", "0.3204828921", ",", "-", "0.3204828921", ",", "-", "0.1278646536", ",", "0.1071923293", ",", "0.1071923293", ",", "-", "0.0301645725", ",", "-", "0.17246762555", ",", "0.000246638", ",", "0.000246638", ",", "0", ",", "-", "0.04359689415", ",", "-", "0.04359689415", ",", "-", "0.04359689415", ",", "-", "0.04359689415", ",", "-", "0.04359689415", ",", "-", "0.336810457325", ",", "-", "0.20131386205", ",", "-", "0.20131386205", ",", "-", "0.1023859275", ",", "-", "0.1974289222", ",", "-", "0.44069318595", ",", "-", "0.20131386205", ",", "-", "0.37818956485", ",", "-", "0.20131386205", ",", "0.16178358855", ",", "-", "0.11492686295", ",", "-", "0.1153332504", ",", "-", "0.0432803329", ",", "-", "0.2447772487", ",", "-", "0.1508003669", ",", "0", ",", "-", "0.01202742865", ",", "-", "0.2447772487", ",", "0.0141946737", ",", "0.00448961995", ",", "0", ",", "0.2380850028", ",", "0.2308648164", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0642443981", ",", "-", "0.1257437474", ",", "-", "0.1306699831", ",", "-", "0.1371416958", ",", "0.10449738615", ",", "-", "0.0969837242", ",", "0.0776334162", ",", "-", "0.3813543296", ",", "-", "0.0969837242", ",", "-", "0.0845446301", ",", "-", "0.02324201215", ",", "-", "0.09729664596", ",", "-", "0.0998415765667", ",", "-", "0.0526695369", ",", "-", "0.0998741564", ",", "-", "0.0875852065", ",", "-", "0.0998741564", ",", "-", "0.0998741564", ",", "-", "0.0297130208", ",", "0.1035196588", ",", "0.0819086084", ",", "0", ",", "-", "0.289618867", ",", "0.2332810212", ",", "-", "0.1014571689", ",", "0", ",", "-", "0.2678740958", ",", "-", "0.0284340809", ",", "-", "0.0886085904", ",", "-", "0.2459717884", ",", "-", "0.3229647054", ",", "0.0593061261", ",", "-", "0.3229647054", ",", "-", "0.19611512695", ",", "0.04099227305", ",", "-", "0.3229647054", ",", "0.0763681433", ",", "-", "0.12281414465", ",", "-", "0.05524073195", ",", "-", "0.4191135971", ",", "-", "0.4191135971", ",", "0", ",", "-", "0.3304544956", ",", "-", "0.11935671125", ",", "0", ",", "-", "0.14805815065", ",", "-", "0.13786243195", ",", "-", "0.26608187565", ",", "-", "0.2636655037", ",", "0", ",", "-", "0.1652528741", ",", "-", "0.1652528741", ",", "0.1070759328", ",", "-", "0.3823043244", ",", "-", "0.3823043244", ",", "0", ",", "-", "0.218227906", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.36069987735", ",", "-", "0.36069987735", ",", "-", "0.3781387458", ",", "0", ",", "0", ",", "0.0894055181", ",", "-", "0.0057350489", ",", "0", ",", "0", ",", "-", "0.2448447962", ",", "-", "0.2501132369", ",", "-", "0.243705171", ",", "-", "0.0760182050333", ",", "-", "0.0722899996167", ",", "-", "0.0664530391", ",", "0.11149854", ",", "0.1254946658", ",", "-", "0.1044038195", ",", "0", ",", "-", "0.3800837", ",", "-", "0.34865217325", ",", "0.0557149656", ",", "-", "0.2607859474", ",", "-", "0.19877072355", ",", "-", "0.1506495714", ",", "-", "0.1351521826", ",", "0", ",", "0.1919755103", ",", "-", "0.345062935", ",", "-", "0.1794365002", ",", "-", "0.2132307352", ",", "-", "0.2971360792", ",", "0.14538683365", ",", "-", "0.202211216", ",", "-", "0.0757890981", ",", "0", ",", "-", "0.15735683525", ",", "-", "0.162134329867", ",", "0.18586086725", ",", "0.0052243", ",", "-", "0.4094661242", ",", "-", "0.1710203266", ",", "-", "0.1969141979", ",", "-", "0.1622326242", ",", "0.2091428792", ",", "-", "0.0977446715", ",", "0.2091428792", ",", "-", "0.1647602686", ",", "0.11050771275", ",", "0", ",", "-", "0.30338064655", ",", "-", "0.3094097353", ",", "-", "0.18832915995", ",", "-", "0.3140475756", ",", "0.04923154215", ",", "-", "0.11701567945", ",", "0.1516676814", ",", "0.0086612273", ",", "-", "0.0436846242", ",", "0", ",", "0", ",", "0", ",", "-", "0.1265877393", ",", "0", ",", "0", ",", "-", "0.08721131705", ",", "0", ",", "0.1555352484", ",", "0.1555352484", ",", "0.1555352484", ",", "-", "0.2151149679", ",", "0.1555352484", ",", "0", ",", "-", "0.1760718476", ",", "-", "0.17142905225", ",", "-", "0.2326460245", ",", "-", "0.2295900911", ",", "0.0940267384", ",", "0.1453920802", ",", "-", "0.20446864", ",", "0", ",", "0.00701124135", ",", "-", "0.34742616145", ",", "0", ",", "0", ",", "0", ",", "0.111245908", ",", "-", "0.40411042275", ",", "-", "0.3606679631", ",", "0.114479433", ",", "-", "0.1129822976", ",", "-", "0.28747656695", ",", "-", "0.4246800843", ",", "-", "0.48145946315", ",", "-", "0.2391941314", ",", "0.1025019462", ",", "-", "0.27721641555", ",", "-", "0.0955825432", ",", "-", "0.0152830643667", ",", "0.1809942847", ",", "0.0086470442", ",", "0.1018853894", ",", "0.00210319263333", ",", "0.0742449136", ",", "-", "0.21938995205", ",", "-", "0.260940078", ",", "-", "0.26184360745", ",", "0", ",", "-", "0.2038157214", ",", "-", "0.1578448801", ",", "0", ",", "0", ",", "0", ",", "0.012275943", ",", "0.0056467568", ",", "-", "0.046873195025", ",", "-", "0.0431126356", ",", "-", "0.05088273255", ",", "-", "0.0440553983", ",", "0", ",", "-", "0.0416968322", ",", "0.11894956695", ",", "-", "0.22059782345", ",", "0", ",", "-", "0.22059782345", ",", "-", "0.22059782345", ",", "0", ",", "-", "0.2459291738", ",", "0.2475766776", ",", "-", "0.3853455737", ",", "0", ",", "0", ",", "-", "0.2739351054", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.25271441745", ",", "-", "0.25271441745", ",", "0.1096097008", ",", "0", ",", "-", "0.0975860648", ",", "-", "0.1287828852", ",", "0.02930966645", ",", "0", ",", "-", "0.0666198616", ",", "-", "0.4588087413", ",", "-", "0.4414300876", ",", "-", "0.4414300876", ",", "-", "0.4460561403", ",", "-", "0.45102739495", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.12305380855", ",", "-", "0.12599564495", ",", "-", "0.1214882663", ",", "-", "0.1191248926", ",", "0", ",", "0", ",", "-", "0.0727202601", ",", "-", "0.0693879057", ",", "-", "0.0735318294667", ",", "-", "0.0745482656", ",", "-", "0.07370771685", ",", "-", "0.0832555154", ",", "-", "0.0727190695", ",", "-", "0.07370771685", ",", "0", ",", "-", "0.1048998812", ",", "-", "0.4613600891", ",", "0", ",", "0", ",", "0.0358672156", ",", "-", "0.0290932259", ",", "-", "0.0290932259", ",", "-", "0.0244399811", ",", "-", "0.0290932259", ",", "0", ",", "0", ",", "-", "0.0544504449", ",", "-", "0.27529814884", ",", "-", "0.211114864", ",", "-", "0.2564372311", ",", "-", "0.1052376952", ",", "-", "0.1052376952", ",", "-", "0.3842127683", ",", "0", ",", "0", ",", "0.11778227825", ",", "0", ",", "-", "0.2168170586", ",", "-", "0.2168170586", ",", "-", "0.2168170586", ",", "-", "0.2168170586", ",", "0", ",", "-", "0.12307132995", ",", "-", "0.16176342765", ",", "-", "0.11692198255", ",", "0", ",", "0", ",", "0", ",", "0.0727649043", ",", "-", "0.2047109544", ",", "0.2060994103", ",", "0.04734999965", ",", "0.0633776154", ",", "0", ",", "0", ",", "-", "0.0017580802", ",", "0.00284827265", ",", "-", "0.00222649755", ",", "0.00275732525", ",", "0.00204109452", ",", "-", "0.0095743144", ",", "0.00784221595", ",", "0.0227688007", ",", "0", ",", "0.0037021385", ",", "0", ",", "-", "0.1746176398", ",", "0", ",", "-", "0.1788029547", ",", "-", "0.20083995515", ",", "0.0189878877", ",", "0.0204012144", ",", "0.0189878877", ",", "0.2435072524", ",", "-", "0.339666193", ",", "-", "0.16297395655", ",", "-", "0.1734351255", ",", "-", "0.33379262935", ",", "-", "0.130702779867", ",", "-", "0.134062320575", ",", "-", "0.134062320575", ",", "-", "0.176964400067", ",", "-", "0.134062320575", ",", "-", "0.12865194965", ",", "-", "0.1143881492", ",", "-", "0.134062320575", ",", "-", "0.126935615714", ",", "-", "0.134062320575", ",", "-", "0.134062320575", ",", "-", "0.1422038422", ",", "-", "0.1265622331", ",", "-", "0.132003097362", ",", "-", "0.130702779867", ",", "0", ",", "-", "0.0878266284", ",", "0", ",", "-", "0.236515654", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1973769128", ",", "0", ",", "-", "0.1335869923", ",", "-", "0.05394004705", ",", "0.26692728515", ",", "0", ",", "-", "0.3471261006", ",", "-", "0.051998694", ",", "0.0322488215", ",", "0.02613019115", ",", "-", "0.0232176181", ",", "0", ",", "0", ",", "0", ",", "-", "0.0346259516", ",", "0.0339407264", ",", "-", "0.133864224925", ",", "0", ",", "-", "0.3726885003", ",", "-", "0.3191687021", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "0.0574238825", ",", "-", "0.3552823779", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.2018705299", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "-", "0.20188283205", ",", "0.05716020695", ",", "0.22627844505", ",", "-", "0.4730945345", ",", "-", "0.0350391275", ",", "0", ",", "-", "0.08041944385", ",", "-", "0.1199047624", ",", "-", "0.1817184511", ",", "-", "0.09100711245", ",", "-", "0.08767481785", ",", "0.0344604047", ",", "-", "0.22044190115", ",", "-", "0.04390297625", ",", "-", "0.1924338858", ",", "0.1442664132", ",", "-", "0.0090386957", ",", "0.0047795441", ",", "-", "0.3092255199", ",", "-", "0.1012154829", ",", "-", "0.3499645635", ",", "0.0011450272", ",", "0.11313780825", ",", "-", "0.23838380855", ",", "-", "0.12410549625", ",", "-", "0.01820920135", ",", "-", "0.0355796568", ",", "-", "0.211668391925", ",", "-", "0.0439223303", ",", "-", "0.02953506985", ",", "-", "0.0624960646", ",", "-", "0.22691324265", ",", "-", "0.01278159455", ",", "-", "0.3314200553", ",", "0.171001499", ",", "-", "0.3394687636", ",", "-", "0.1771437853", ",", "-", "0.08580763245", ",", "0.0142030546", ",", "-", "0.087848878", ",", "-", "0.0926280898", ",", "-", "0.1833149231", ",", "-", "0.1748553345", ",", "-", "0.19664016985", ",", "-", "0.0654100674", ",", "-", "0.0095827846", ",", "0.1782579399", ",", "-", "0.1688290403", ",", "-", "0.1525623741", ",", "-", "0.09491720605", ",", "0.0872426275", ",", "-", "0.17389701022", ",", "-", "0.2425703669", ",", "-", "0.0570160313667", ",", "0.02657842685", ",", "-", "0.2318614858", ",", "-", "0.3103787818", ",", "-", "0.0770558726", ",", "-", "0.134513317225", ",", "0.0004607265", ",", "-", "0.2784095187", ",", "-", "0.18686383305", ",", "-", "0.1902075725", ",", "-", "0.1123425875", ",", "-", "0.08252520085", ",", "-", "0.1071191337", ",", "-", "0.0087581877", ",", "0", ",", "-", "0.0519466011", ",", "-", "0.228091412", ",", "-", "0.291913189133", ",", "-", "0.0995733519", ",", "-", "0.2508905092", ",", "-", "0.48289157195", ",", "-", "0.17592321885", ",", "-", "0.29622752655", ",", "-", "0.3730518957", ",", "-", "0.38200620685", ",", "-", "0.1508003669", ",", "-", "0.1495397714", ",", "-", "0.0441786986", ",", "-", "0.1388518497", ",", "-", "0.1321949678", ",", "0.0657776915", ",", "-", "0.03157503045", ",", "-", "0.0993837975", ",", "0.08981264525", ",", "0.0064109578", ",", "-", "0.26118576835", ",", "-", "0.1154404443", ",", "-", "0.3034519001", ",", "-", "0.3079203212", ",", "-", "0.1420588783", ",", "-", "0.23122470325", ",", "-", "0.11723184305", ",", "0.04668193265", ",", "0.0254606495", ",", "0.20848156085", ",", "-", "0.10508867955", ",", "-", "0.22340407205", ",", "-", "0.1012685156", ",", "0.0836956062", ",", "0.0459544542", ",", "-", "0.33052584405", ",", "-", "0.32099170275", ",", "-", "0.31258899835", ",", "-", "0.3127424303", ",", "-", "0.3360735059", ",", "-", "0.3356987702", ",", "-", "0.31518037095", ",", "-", "0.31958441345", ",", "-", "0.315958680567", ",", "-", "0.3157157475", ",", "0", ",", "0.1160768351", ",", "-", "0.054656778", ",", "0.0170335357", ",", "-", "0.37163709745", ",", "-", "0.2408151526", ",", "0", ",", "-", "0.19630630595", ",", "0", ",", "-", "0.0835434189", ",", "0", ",", "0", ",", "-", "0.1844691722", ",", "-", "0.2769478932", ",", "-", "0.3653058606", ",", "-", "0.10765071925", ",", "-", "0.1136210417", ",", "-", "0.2597815505", ",", "0", ",", "0", ",", "0", ",", "-", "0.17461709485", ",", "0", ",", "-", "0.4012781414", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0761277383", ",", "0.0305994161", ",", "0.0228637585", ",", "0.14709584975", ",", "0.0818229199", ",", "-", "0.3849961277", ",", "0", ",", "-", "0.2079699657", ",", "0.0276402053", ",", "-", "0.2692145769", ",", "-", "0.1658499049", ",", "-", "0.0710163897", ",", "-", "0.0710163897", ",", "-", "0.3650371822", ",", "0.00523616", ",", "-", "0.111311354", ",", "-", "0.20050969895", ",", "0", ",", "0", ",", "-", "0.1279408619", ",", "0.08574749385", ",", "-", "0.1279408619", ",", "-", "0.09020120785", ",", "-", "0.091669423", ",", "-", "0.30451222655", ",", "-", "0.3032912466", ",", "-", "0.29814051685", ",", "-", "0.2931635356", ",", "-", "0.3039750665", ",", "-", "0.3042733054", ",", "-", "0.3045252113", ",", "-", "0.308188692", ",", "-", "0.308188692", ",", "-", "0.29862750955", ",", "-", "0.29929071365", ",", "-", "0.3106196857", ",", "-", "0.183559738", ",", "-", "0.0417694352", ",", "-", "0.0474167008833", ",", "-", "0.04545048205", ",", "-", "0.0532097318", ",", "-", "0.0462342951667", ",", "-", "0.0507023303", ",", "-", "0.16804081902", ",", "-", "0.302137888", ",", "0.1633501218", ",", "0.06258731155", ",", "-", "0.168300796667", ",", "-", "0.3669465013", ",", "0", ",", "-", "0.190356421133", ",", "-", "0.0942683403667", ",", "0.063482571", ",", "-", "0.4369151083", ",", "-", "0.38720750825", ",", "0.0302388054", ",", "-", "0.321766493", ",", "-", "0.1888196559", ",", "-", "0.1942635232", ",", "-", "0.1827859634", ",", "-", "0.2364875262", ",", "-", "0.191114741325", ",", "-", "0.19887816985", ",", "-", "0.1944951033", ",", "-", "0.1995912925", ",", "0", ",", "-", "0.1964334807", ",", "-", "0.196068952", ",", "-", "0.1994319266", ",", "-", "0.2057153892", ",", "-", "0.075779436", ",", "-", "0.195094300667", ",", "-", "0.1928391435", ",", "-", "0.19368814412", ",", "-", "0.3729970653", ",", "-", "0.3729970653", ",", "-", "0.3729970653", ",", "-", "0.195388747", ",", "0", ",", "-", "0.1912198836", ",", "-", "0.364947297", ",", "-", "0.0506411146", ",", "-", "0.190819703", ",", "-", "0.0541131275", ",", "-", "0.2067048361", ",", "-", "0.2064130289", ",", "-", "0.37547694325", ",", "-", "0.1903248948", ",", "0", ",", "-", "0.19394225035", ",", "0.20794699005", ",", "-", "0.18956986385", ",", "-", "0.1500973714", ",", "-", "0.4469442801", ",", "-", "0.4584711327", ",", "-", "0.443686870567", ",", "0", ",", "-", "0.02106532995", ",", "0.05290147795", ",", "-", "0.431971708", ",", "-", "0.2601103435", ",", "-", "0.3864004225", ",", "-", "0.1761965515", ",", "-", "0.475054863", ",", "-", "0.0985712538", ",", "-", "0.0031600073", ",", "-", "0.18683402085", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.12077687925", ",", "-", "0.4588366778", ",", "0.0293121401", ",", "-", "0.3850740943", ",", "0", ",", "0", ",", "-", "0.3001444016", ",", "0", ",", "0", ",", "-", "0.1189800728", ",", "0", ",", "0", ",", "-", "0.17469774784", ",", "0", ",", "-", "0.32052446025", ",", "0.1002483787", ",", "-", "0.426409113", ",", "-", "0.3820002704", ",", "0", ",", "-", "0.2581119264", ",", "0", ",", "0", ",", "-", "0.06329580335", ",", "-", "0.06254205315", ",", "-", "0.080153953", ",", "-", "0.0676465609", ",", "-", "0.07400887795", ",", "-", "0.06473080625", ",", "-", "0.0586144827667", ",", "-", "0.0630254644", ",", "-", "0.0479308729", ",", "-", "0.0565028145", ",", "-", "0.0565028145", ",", "0", ",", "-", "0.0604060439", ",", "-", "0.22106755095", ",", "0.13384707345", ",", "-", "0.1691490675", ",", "-", "0.08390656255", ",", "0.0248217248", ",", "-", "0.0772431798", ",", "0.0007348897", ",", "-", "0.0014130656", ",", "-", "0.3243857072", ",", "-", "0.31861181745", ",", "0", ",", "-", "0.0980779536", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.42176657135", ",", "0", ",", "0.0216921469", ",", "-", "0.3231857035", ",", "-", "0.1321688455", ",", "0.142645422", ",", "-", "0.1524809126", ",", "-", "0.3231857035", ",", "-", "0.0925661611", ",", "-", "0.176852765875", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.150181022", ",", "-", "0.1480249794", ",", "0", ",", "-", "0.1008682209", ",", "0.08101230585", ",", "0", ",", "-", "0.3394718921", ",", "-", "0.0747905714333", ",", "0", ",", "-", "0.38054807145", ",", "0.1101220186", ",", "0.0145857206", ",", "0.2412508378", ",", "-", "0.127255491025", ",", "-", "0.1238600004", ",", "-", "0.0995211933", ",", "0.0518398371", ",", "0", ",", "0.0494770723", ",", "0.0494770723", ",", "0.0494770723", ",", "0.0494770723", ",", "0.0494770723", ",", "0", ",", "0", ",", "0", ",", "-", "0.11813994015", ",", "0", ",", "0.2117342563", ",", "-", "0.2946833585", ",", "-", "0.2462715697", ",", "-", "0.1283735284", ",", "-", "0.3426102752", ",", "-", "0.27968248665", ",", "-", "0.1543332872", ",", "0", ",", "-", "0.0551050881", ",", "-", "0.3345003928", ",", "-", "0.3345003928", ",", "-", "0.3246443912", ",", "-", "0.34071316815", ",", "-", "0.3369801812", ",", "-", "0.334763552567", ",", "-", "0.3119178306", ",", "-", "0.3327081079", ",", "0.22342001895", ",", "0.2257355649", ",", "-", "0.3246810283", ",", "0", ",", "-", "0.326464676", ",", "0", ",", "-", "0.01952414685", ",", "-", "0.22753485435", ",", "0", ",", "-", "0.3652479347", ",", "-", "0.2534018498", ",", "-", "0.1260724205", ",", "0.0889477608", ",", "-", "0.11380741435", ",", "-", "0.10877878015", ",", "-", "0.1992668756", ",", "-", "0.00440597745", ",", "-", "0.27269902985", ",", "-", "0.11380741435", ",", "0", ",", "0", ",", "-", "0.09085833085", ",", "-", "0.26652951565", ",", "-", "0.04755905785", ",", "0.02220318065", ",", "-", "0.1253476637", ",", "-", "0.2541712748", ",", "-", "0.01272869105", ",", "0", ",", "0.16303751075", ",", "0.03667020235", ",", "0.0398899189", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4390906007", ",", "0.142123234", ",", "0.1845886656", ",", "0.1165789257", ",", "0.0951265238", ",", "0", ",", "0", ",", "0.11580855605", ",", "0.1043466262", ",", "0.09907901315", ",", "0", ",", "0.11079603295", ",", "0.1082665614", ",", "0.1060636665", ",", "0", ",", "0", ",", "0.0750738861", ",", "-", "0.3160530331", ",", "-", "0.07351669865", ",", "-", "0.3835750588", ",", "0", ",", "0", ",", "-", "0.0009315731", ",", "-", "0.4341413563", ",", "-", "0.2111408404", ",", "0.2206602608", ",", "0.1768192555", ",", "-", "0.31869536005", ",", "0.03704744845", ",", "-", "0.08288879735", ",", "-", "0.0038507732", ",", "0.010393364", ",", "-", "0.29237952605", ",", "0.1768192555", ",", "0.1768192555", ",", "0.0026795884", ",", "-", "0.13606575895", ",", "-", "0.13714845305", ",", "-", "0.0691735739333", ",", "-", "0.266909621767", ",", "0.0825962946", ",", "0", ",", "-", "0.0980791088", ",", "-", "0.3671742053", ",", "-", "0.281496016", ",", "-", "0.0274614921", ",", "0.11512644655", ",", "-", "0.16292003205", ",", "-", "0.009080889", ",", "0", ",", "0", ",", "0.178348271875", ",", "-", "0.13063204375", ",", "-", "0.1108532529", ",", "-", "0.1108532529", ",", "-", "0.1108532529", ",", "-", "0.4189737155", ",", "0.1131718678", ",", "0", ",", "0", ",", "-", "0.2299159258", ",", "0.1323546606", ",", "-", "0.2979165436", ",", "0", ",", "-", "0.0198229873", ",", "-", "0.0188581313667", ",", "-", "0.2250387063", ",", "-", "0.2250387063", ",", "-", "0.15800394175", ",", "0.1422219765", ",", "0.0092787222", ",", "-", "0.3901650793", ",", "-", "0.0436323714", ",", "-", "0.1146653421", ",", "-", "0.295268164", ",", "0", ",", "-", "0.020905277", ",", "0.0499292375", ",", "-", "0.41338671345", ",", "-", "0.4126991718", ",", "-", "0.30412985175", ",", "-", "0.30412985175", ",", "-", "0.30412985175", ",", "-", "0.0947128939", ",", "0", ",", "0", ",", "-", "0.118817894933", ",", "-", "0.08556192", ",", "-", "0.08556192", ",", "0.0286370562", ",", "0.20767263785", ",", "-", "0.2747022597", ",", "0.0528966826", ",", "-", "0.20956712995", ",", "-", "0.4029289477", ",", "0.0662368856", ",", "0.0526762766", ",", "-", "0.0082883468", ",", "-", "0.183220349", ",", "0", ",", "0.0303617574", ",", "-", "0.29954317535", ",", "-", "0.1506862987", ",", "0.14269906865", ",", "-", "0.37336637495", ",", "-", "0.2150861691", ",", "0", ",", "0.05024181735", ",", "-", "0.0824441321", ",", "-", "0.25022268105", ",", "-", "0.2542965337", ",", "-", "0.38557672885", ",", "0.25433350185", ",", "0.17295454265", ",", "-", "0.1685311778", ",", "0", ",", "0.009979818", ",", "0.009979818", ",", "0", ",", "0.0521914992", ",", "0.0521914992", ",", "-", "0.47955269365", ",", "-", "0.06624979475", ",", "-", "0.3541096126", ",", "-", "0.28630236685", ",", "-", "0.24202491695", ",", "0", ",", "0", ",", "-", "0.11253441085", ",", "-", "0.11442899675", ",", "-", "0.0520658763", ",", "-", "0.22907477775", ",", "-", "0.430649514", ",", "-", "0.37815637165", ",", "0.0953989846", ",", "-", "0.0971563048", ",", "-", "0.0778391046", ",", "-", "0.4056829943", ",", "-", "0.4349595441", ",", "0.1486151258", ",", "-", "0.3811790902", ",", "-", "0.32485594155", ",", "0.01658701085", ",", "-", "0.4812164308", ",", "-", "0.03557274495", ",", "0.1011026011", ",", "0.1006774347", ",", "-", "0.4774561578", ",", "-", "0.46995714175", ",", "-", "0.2596075217", ",", "-", "0.3782001629", ",", "-", "0.3811790902", ",", "0.0035282116", ",", "-", "0.2700731324", ",", "0.12301436495", ",", "0", ",", "0", ",", "-", "0.47280689695", ",", "-", "0.38164618575", ",", "0", ",", "-", "0.11344614405", ",", "-", "0.4718777395", ",", "-", "0.27277485525", ",", "0.1122361128", ",", "0.1143278659", ",", "-", "0.06712368415", ",", "0.1138890566", ",", "0.1031719464", ",", "-", "0.14525082185", ",", "-", "0.2907853388", ",", "-", "0.0917471833", ",", "-", "0.1445181233", ",", "0", ",", "0.0090225859", ",", "-", "0.1224702112", ",", "-", "0.3963535508", ",", "-", "0.1224702112", ",", "0.087766205", ",", "-", "0.018730515375", ",", "-", "0.0221540211", ",", "-", "0.1592879511", ",", "0.19451723805", ",", "-", "0.295067026", ",", "-", "0.1003253776", ",", "0", ",", "-", "0.2677926087", ",", "0", ",", "0", ",", "0", ",", "-", "0.164825761275", ",", "-", "0.28679958365", ",", "-", "0.320338545567", ",", "-", "0.0185684072", ",", "-", "0.24668199295", ",", "0.0346182213", ",", "0.107136151", ",", "0", ",", "-", "0.154849372625", ",", "-", "0.238141555", ",", "0", ",", "-", "0.29374228765", ",", "-", "0.3209328831", ",", "0", ",", "-", "0.255424711", ",", "-", "0.1372562527", ",", "0.1647284427", ",", "-", "0.3058107358", ",", "-", "0.42635223485", ",", "0", ",", "0.08440104055", ",", "0", ",", "-", "0.19050132785", ",", "-", "0.1091115514", ",", "0", ",", "-", "0.2581474476", ",", "0.1040130896", ",", "-", "0.2718902759", ",", "0.1405491282", ",", "-", "0.27894744845", ",", "-", "0.27894744845", ",", "-", "0.27894744845", ",", "-", "0.199312927", ",", "-", "0.4052747986", ",", "-", "0.4090864968", ",", "-", "0.4038996034", ",", "0.23491180605", ",", "0.00274641105", ",", "0.0079581741", ",", "-", "0.45812181335", ",", "-", "0.2522913421", ",", "-", "0.45812181335", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Snag", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Snaresbrook\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Solent", "Road\"", ",", "\"\"", ",", "\"Solna", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Solway", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Somerset", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sonnet", "Walk\"", ",", "\"Sopwith", "Way\"", ",", "\"\"", ",", "\"South", "Acton\"", ",", "\"\"", ",", "\"South", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Kenton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Merton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Quay\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"South", "Vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Southbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Southfields\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Southgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Southwark\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Spa", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Speart", "Lane\"", ",", "\"\"", ",", "\"Speke", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Spencer", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Spilsby", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Spring", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sprules", "Road\"", ",", "\"Spur", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Squires", "Lane\"", ",", "\"\"", ",", "\"Squires", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Helier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Johns\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Loys", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Margarets\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Mary", "Cray\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St", "Paul's\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stag", "Leys\"", ",", "\"Stagg", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Staines\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Standen", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stanley", "Hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stanley", "Way\"", ",", "\"\"", ",", "\"Stanmore\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stayton", "Road\"", ",", "\"\"", ",", "\"Steeplands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stern", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stock", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stockwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stonard", "Road\"", ",", "\"Stone", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stoneleigh\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Story", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stratford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Streatham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Stroud", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Stuart", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St.", "Albans\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St.Anns", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St.Davids\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"St.Mary", "Axe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sudbury", "Hill\"", ",", "\"\"", ",", "\"Sudbury", "Inn\"", ",", "\"\"", ",", "\"Sudbury", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sullivan", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Summit", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Sunbeam", "Road\"", ",", "\"Sunbury\"", ",", "\"\"", ",", "\"\"", ",", "\"Sunbury", "Lane\"", ",", "\"\"", ",", "\"Sunbury", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sunny", "Way\"", ",", "\"Sunnybank\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sunset", "Road\"", ",", "\"Surbiton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Surrey", "Arms\"", ",", "\"\"", ",", "\"Surrey", "Quays\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Surrey", "Road\"", ",", "\"\"", ",", "\"Sury", "Basin\"", ",", "\"Susan", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sussex", "Place\"", ",", "\"Sussex", "Ring\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sutton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sutton", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"Sutton", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sutton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Swan", "Close\"", ",", "\"Swan", "Lane\"", ",", "\"Swan", "Road\"", ",", "\"\"", ",", "\"Swanage", "Road\"", ",", "\"Swandon", "Way\"", ",", "\"Swanley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Swanscombe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sweeps", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sydenham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sydney", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Sylvan", "Hill\"", ",", "\"Sylvan", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Syon", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tadworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tamar", "Way\"", ",", "\"Tamblin", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tancred", "Road\"", ",", "\"\"", ",", "\"Tangier", "Way\"", ",", "\"Tanglewood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tate", "Britain\"", ",", "\"Tate", "Library\"", ",", "\"Tate", "Modern\"", ",", "\"Tate", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Taunton", "Lane\"", ",", "\"\"", ",", "\"Taunton", "Road\"", ",", "\"Taunton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tedder", "Road\"", ",", "\"Teddington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Tees", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Temple\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thames", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thamesdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Thaxted", "Road\"", ",", "\"The", "Abercorn\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Anchor\"", ",", "\"The", "Approach\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Bear\"", ",", "\"The", "Bee", "Hive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Cardinal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Causeway\"", ",", "\"\"", ",", "\"The", "Cavalier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Coppice\"", ",", "\"The", "Coppins\"", ",", "\"The", "Coronet\"", ",", "\"The", "Crane\"", ",", "\"\"", ",", "\"The", "Crescent\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Croft\"", ",", "\"The", "Cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Dysart\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Firs\"", ",", "\"\"", ",", "\"The", "Forest\"", ",", "\"\"", ",", "\"The", "Fountain\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Furrows\"", ",", "\"The", "Gardens\"", ",", "\"\"", ",", "\"The", "Garth\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "George\"", ",", "\"The", "Glade\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Glen\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Grange\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Greenway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Gurkha\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Hillside\"", ",", "\"The", "Holt\"", ",", "\"The", "Honeypot\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Chenies\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Jester\"", ",", "\"\"", ",", "\"The", "Keep\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Kingdome\"", ",", "\"The", "Knoll\"", ",", "\"\"", ",", "\"The", "Larches\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Lindens\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Lowe\"", ",", "\"The", "Mount\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Myrke\"", ",", "\"\"", ",", "\"The", "Newlands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Old", "Vic\"", ",", "\"The", "One", "Pin\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Paddock\"", ",", "\"The", "Pantiles\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"The", "Plough\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"snag", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"snaresbrook\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"solent", "road\"", ",", "\"\"", ",", "\"solna", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"solway", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"somerset", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sonnet", "walk\"", ",", "\"sopwith", "way\"", ",", "\"\"", ",", "\"south", "acton\"", ",", "\"\"", ",", "\"south", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "ealing\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "harrow\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "kenton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "merton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "quay\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"south", "vale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"southbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"southfields\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"southgate\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"southwark\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"spa", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"speart", "lane\"", ",", "\"\"", ",", "\"speke", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"spencer", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"spilsby", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"spring", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sprules", "road\"", ",", "\"spur", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"squires", "lane\"", ",", "\"\"", ",", "\"squires", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "helier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "johns\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "loys", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "margarets\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "mary", "cray\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "paul's\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stag", "leys\"", ",", "\"stagg", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"staines\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"standen", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stanley", "hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stanley", "way\"", ",", "\"\"", ",", "\"stanmore\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stayton", "road\"", ",", "\"\"", ",", "\"steeplands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stern", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stock", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stockwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stonard", "road\"", ",", "\"stone", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stoneleigh\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"story", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stratford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"streatham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"stroud", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"stuart", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "albans\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "anns", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "davids\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"st", "mary", "axe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sudbury", "hill\"", ",", "\"\"", ",", "\"sudbury", "inn\"", ",", "\"\"", ",", "\"sudbury", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sullivan", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"summit", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"sunbeam", "road\"", ",", "\"sunbury\"", ",", "\"\"", ",", "\"\"", ",", "\"sunbury", "lane\"", ",", "\"\"", ",", "\"sunbury", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sunny", "way\"", ",", "\"sunnybank\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sunset", "road\"", ",", "\"surbiton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"surrey", "arms\"", ",", "\"\"", ",", "\"surrey", "quays\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"surrey", "road\"", ",", "\"\"", ",", "\"sury", "basin\"", ",", "\"susan", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sussex", "place\"", ",", "\"sussex", "ring\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sutton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sutton", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"sutton", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sutton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"swan", "close\"", ",", "\"swan", "lane\"", ",", "\"swan", "road\"", ",", "\"\"", ",", "\"swanage", "road\"", ",", "\"swandon", "way\"", ",", "\"swanley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"swanscombe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sweeps", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sydenham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sydney", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"sylvan", "hill\"", ",", "\"sylvan", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"syon", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tadworth\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tamar", "way\"", ",", "\"tamblin", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tancred", "road\"", ",", "\"\"", ",", "\"tangier", "way\"", ",", "\"tanglewood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tate", "britain\"", ",", "\"tate", "library\"", ",", "\"tate", "modern\"", ",", "\"tate", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"taunton", "lane\"", ",", "\"\"", ",", "\"taunton", "road\"", ",", "\"taunton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tedder", "road\"", ",", "\"teddington\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"tees", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"temple\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thames", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thamesdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"thaxted", "road\"", ",", "\"the", "abercorn\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "anchor\"", ",", "\"the", "approach\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "bear\"", ",", "\"the", "bee", "hive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "cardinal\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "causeway\"", ",", "\"\"", ",", "\"the", "cavalier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "coppice\"", ",", "\"the", "coppins\"", ",", "\"the", "coronet\"", ",", "\"the", "crane\"", ",", "\"\"", ",", "\"the", "crescent\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "croft\"", ",", "\"the", "cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "dysart\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "firs\"", ",", "\"\"", ",", "\"the", "forest\"", ",", "\"\"", ",", "\"the", "fountain\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "furrows\"", ",", "\"the", "gardens\"", ",", "\"\"", ",", "\"the", "garth\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "george\"", ",", "\"the", "glade\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "glen\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "grange\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "greenway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "gurkha\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "hillside\"", ",", "\"the", "holt\"", ",", "\"the", "honeypot\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "chenies\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "jester\"", ",", "\"\"", ",", "\"the", "keep\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "kingdome\"", ",", "\"the", "knoll\"", ",", "\"\"", ",", "\"the", "larches\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "lindens\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "lowe\"", ",", "\"the", "mount\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "myrke\"", ",", "\"\"", ",", "\"the", "newlands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "old", "vic\"", ",", "\"the", "one", "pin\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "paddock\"", ",", "\"the", "pantiles\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"the", "plough\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,568
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London8", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"PUT:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"QBY:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"QWY:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"QPK:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RCP:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RLN:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RED:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RPK:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RKY:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RMD:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ROD:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RUI:MP\"", ",", "null", ",", "\"RUG:C\"", ",", "null", ",", "null", ",", "\"RUM:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"RSQ:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SVS:V\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SBC:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"SSQ:Dc\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "51.4858144985", ",", "51.4801649545", ",", "51.480987613", ",", "51.4858144985", ",", "51.486844657", ",", "51.491212298", ",", "51.4912516889", ",", "0", ",", "51.5416869932", ",", "51.4736440817", ",", "51.5017674904", ",", "0", ",", "51.6322532345", ",", "0", ",", "0", ",", "0", ",", "51.5499246966", ",", "51.6277306417", ",", "51.5266583803", ",", "51.3958187366", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.47304092", ",", "51.4777006408", ",", "51.4666662544", ",", "51.5710010535", ",", "51.5579972089", ",", "51.6435072984", ",", "51.6481706454", ",", "51.6453738905", ",", "51.5467704278", ",", "51.4971663507", ",", "0", ",", "0", ",", "0", ",", "51.4215817509", ",", "0", ",", "0", ",", "51.5024071861", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5310226077", ",", "0", ",", "0", ",", "0", ",", "51.4653345592", ",", "51.4416423838", ",", "51.4983640313", ",", "51.4382274497", ",", "0", ",", "51.5177484888", ",", "51.5175621668", ",", "51.5502975094", ",", "51.4547859125", ",", "0", ",", "51.5089854007", ",", "51.4903128706", ",", "51.5057635741", ",", "51.5109671099", ",", "51.4017878545", ",", "51.4017878545", ",", "51.3780710989", ",", "51.4416315136", ",", "51.5108609494", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3797404028", ",", "51.4097610963", ",", "51.5166265879", ",", "51.5104885228", ",", "51.5726463568", ",", "0", ",", "0", ",", "0", ",", "51.5414945456", ",", "0", ",", "0", ",", "0", ",", "51.5955280062", ",", "51.5205799388", ",", "51.5698560174", ",", "51.5671309972", ",", "51.3995049681", ",", "51.5671309972", ",", "51.4830445056", ",", "0", ",", "0", ",", "51.5267596573", ",", "51.5144609618", ",", "51.6077297146", ",", "0", ",", "51.5257698097", ",", "51.3193935458", ",", "51.516213048", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6069923299", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3787718007", ",", "51.647458623", ",", "51.4446267402", ",", "51.3726214057", ",", "0", ",", "51.5137007297", ",", "51.3730491831", ",", "51.5477790703", ",", "51.5486107894", ",", "51.5477790703", ",", "51.4867608645", ",", "51.3644891312", ",", "51.3656499624", ",", "51.3907433211", ",", "51.3907433211", ",", "51.4933080609", ",", "51.5543097452", ",", "51.5175323323", ",", "51.4927964651", ",", "51.4644189973", ",", "51.5365123341", ",", "51.5365071269", ",", "0", ",", "0", ",", "51.4500269902", ",", "51.4482336249", ",", "0", ",", "51.546533405", ",", "51.4702056337", ",", "51.5371907064", ",", "51.5390909237", ",", "51.5390909237", ",", "51.4953249906", ",", "51.3445597064", ",", "51.3441418759", ",", "51.5143508488", ",", "0", ",", "51.6120710866", ",", "51.4580377635", ",", "0", ",", "51.5621354076", ",", "0", ",", "0", ",", "51.6689193558", ",", "51.5854654123", ",", "0", ",", "51.5722293726", ",", "51.5625205209", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5875285898", ",", "0", ",", "51.6418218395", ",", "0", ",", "0", ",", "51.5735005626", ",", "51.572897995", ",", "51.572897995", ",", "51.4652881615", ",", "51.5460465396", ",", "51.5365889327", ",", "51.5439494018", ",", "51.5200784053", ",", "51.5346022489", ",", "51.531001949", ",", "51.4891565944", ",", "51.5001992767", ",", "51.5001992767", ",", "51.5764309254", ",", "51.5764309254", ",", "51.5458673049", ",", "51.4743818391", ",", "51.5019331019", ",", "51.5019331019", ",", "51.5458673049", ",", "51.5019331019", ",", "51.5095075807", ",", "51.5095075807", ",", "51.5881521497", ",", "51.5901047942", ",", "51.3821958053", ",", "51.3888008858", ",", "51.5176955052", ",", "0", ",", "51.431364085", ",", "51.619850319", ",", "51.5733787508", ",", "51.5836689786", ",", "51.4313866269", ",", "51.431364085", ",", "51.367183554", ",", "51.4983438116", ",", "51.4983438116", ",", "51.5530504922", ",", "51.5530504922", ",", "51.3659481879", ",", "51.4286718053", ",", "51.5105439972", ",", "51.483578309", ",", "51.5918729059", ",", "51.559102242", ",", "51.6227912383", ",", "51.6249358398", ",", "51.6281519854", ",", "0", ",", "51.4652163336", ",", "51.5403206647", ",", "51.4618933698", ",", "51.5864116307", ",", "51.3831206467", ",", "51.6156399317", ",", "51.3679600337", ",", "51.4184611675", ",", "51.5408720496", ",", "51.5440876316", ",", "51.3962885979", ",", "51.5391129748", ",", "51.5918851376", ",", "51.5351058396", ",", "51.5318972013", ",", "51.5318972013", ",", "0", ",", "51.6446968637", ",", "51.5183371449", ",", "0", ",", "51.4920934399", ",", "51.556278152", ",", "51.527941636", ",", "0", ",", "51.5342635742", ",", "0", ",", "0", ",", "51.5067478897", ",", "51.3902200544", ",", "51.6178972999", ",", "0", ",", "51.4952682932", ",", "51.4951930682", ",", "51.3384821784", ",", "51.3392737309", ",", "51.3379889872", ",", "51.3379889872", ",", "51.3376733217", ",", "51.3408071405", ",", "51.3391294934", ",", "51.3471744234", ",", "51.3369226568", ",", "51.3676759727", ",", "51.3676759727", ",", "51.3393401767", ",", "51.486199256", ",", "51.4607254454", ",", "51.4615417042", ",", "51.4681206262", ",", "51.4644344779", ",", "51.4680219631", ",", "51.4695104941", ",", "51.4680493087", ",", "51.4628548759", ",", "51.4532787987", ",", "51.4516277266", ",", "51.4539740493", ",", "51.4632518119", ",", "51.4626112464", ",", "51.4607254454", ",", "51.4418111098", ",", "51.4662556351", ",", "0", ",", "0", ",", "51.443556203", ",", "51.6124088227", ",", "51.3968704278", ",", "51.5633432749", ",", "51.6014752746", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.553448381", ",", "0", ",", "51.3977914454", ",", "51.4770810302", ",", "51.4770810302", ",", "51.4770810302", ",", "51.4770810302", ",", "51.4770810302", ",", "51.475633677", ",", "51.6359000001", ",", "51.4770810302", ",", "51.5651414329", ",", "51.419686829", ",", "51.419686829", ",", "51.3533337148", ",", "51.4561951967", ",", "51.4186367772", ",", "51.5101868286", ",", "0", ",", "0", ",", "51.4939862572", ",", "51.345134367", ",", "51.596307377", ",", "51.5912878331", ",", "51.548676149", ",", "51.5626450303", ",", "51.5170577573", ",", "51.5700507636", ",", "51.4982018291", ",", "51.5015379723", ",", "51.536851931", ",", "51.5693551599", ",", "51.4799934302", ",", "51.5341361643", ",", "51.5105280786", ",", "0", ",", "0", ",", "51.4653670805", ",", "51.4738225732", ",", "51.3881301402", ",", "51.4736328633", ",", "0", ",", "51.4333241305", ",", "51.3990174484", ",", "51.4163386322", ",", "51.3639810183", ",", "51.5763726867", ",", "51.5640874857", ",", "51.5574873819", ",", "51.5442708454", ",", "51.5310004304", ",", "51.5442708454", ",", "51.5442708454", ",", "51.5946071014", ",", "51.5949539616", ",", "51.5918941472", ",", "51.575024894", ",", "51.5065882097", ",", "51.4393301443", ",", "51.4393301443", ",", "51.4393301443", ",", "51.4393301443", ",", "51.4742328963", ",", "51.4744828279", ",", "51.4662698885", ",", "51.4662698885", ",", "51.4662698885", ",", "51.4662698885", ",", "51.5104187687", ",", "51.5158683863", ",", "51.5104187687", ",", "51.3887149782", ",", "51.5156398336", ",", "51.4748377376", ",", "51.596839036", ",", "51.6721349598", ",", "51.5640101529", ",", "51.4515663614", ",", "51.5331408131", ",", "51.5351133552", ",", "51.5806274247", ",", "51.5399182581", ",", "51.4192030733", ",", "51.5322866413", ",", "51.375691145", ",", "51.6496255477", ",", "51.484765915", ",", "0", ",", "51.4636997863", ",", "0", ",", "0", ",", "51.4839975294", ",", "0", ",", "51.5253221473", ",", "51.4761165109", ",", "0", ",", "0", ",", "51.5966125529", ",", "51.5208561394", ",", "51.5264669051", ",", "51.5282236496", ",", "0", ",", "51.6362031086", ",", "51.5500843068", ",", "0", ",", "0", ",", "0", ",", "51.5513354999", ",", "0", ",", "51.5195024433", ",", "51.5194548556", ",", "51.5186782146", ",", "0", ",", "0", ",", "51.5172763603", ",", "0", ",", "51.5329404081", ",", "51.4867679087", ",", "51.5776485906", ",", "51.6260946514", ",", "51.4058388595", ",", "51.4927517951", ",", "51.4581507711", ",", "51.4469236929", ",", "51.4953714086", ",", "51.3753935818", ",", "51.4507307153", ",", "51.3776238991", ",", "51.3780434734", ",", "0", ",", "51.5799415103", ",", "0", ",", "51.5631507502", ",", "51.5631507502", ",", "51.5631507502", ",", "51.5377551648", ",", "51.5254558051", ",", "51.4724032702", ",", "51.5546971877", ",", "51.4233376797", ",", "51.4247293301", ",", "51.4208076195", ",", "51.4233376797", ",", "0", ",", "51.5836879779", ",", "51.5190998443", ",", "51.5166710372", ",", "0", ",", "51.5948752257", ",", "0", ",", "51.412407879", ",", "51.4095366796", ",", "51.4450932108", ",", "51.5956332354", ",", "51.4465219889", ",", "51.4275346389", ",", "51.4964415363", ",", "51.5578812526", ",", "51.4941453632", ",", "51.4936220518", ",", "51.4936220518", ",", "51.6162390177", ",", "51.5728347707", ",", "51.6180048861", ",", "51.5747789299", ",", "51.5748172937", ",", "51.337708059", ",", "51.611264981", ",", "51.4486202968", ",", "0", ",", "51.4220489753", ",", "51.5254230159", ",", "0", ",", "51.6064297553", ",", "51.5636818157", ",", "0", ",", "51.4925735209", ",", "51.5755947531", ",", "51.5839343138", ",", "51.5894847729", ",", "51.4093029242", ",", "51.4032000975", ",", "51.4106847614", ",", "51.3961975562", ",", "51.4097367787", ",", "51.4090505931", ",", "51.616060855", ",", "0", ",", "51.554318864", ",", "0", ",", "51.4609476196", ",", "51.5890026815", ",", "51.3982664349", ",", "51.5592966682", ",", "51.3744020198", ",", "51.4251925847", ",", "51.4185626409", ",", "51.4251925847", ",", "51.4251925847", ",", "51.5598480878", ",", "51.4769617541", ",", "51.5598480878", ",", "51.5563489176", ",", "51.5402054768", ",", "51.5598480878", ",", "51.5656001337", ",", "51.4890327801", ",", "51.4705348056", ",", "51.5196959285", ",", "0", ",", "51.3829684364", ",", "51.5764124703", ",", "51.5757968265", ",", "51.5880010473", ",", "51.5852222342", ",", "51.5759101365", ",", "0", ",", "0", ",", "51.4892313196", ",", "51.487327613", ",", "51.4858111249", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4984965852", ",", "0", ",", "51.6066915648", ",", "51.341333996", ",", "51.5975204584", ",", "51.5537303509", ",", "51.4494790594", ",", "51.3389462764", ",", "51.5436674747", ",", "51.5461662987", ",", "51.330697611", ",", "51.3284326918", ",", "0", ",", "51.3311239711", ",", "51.3750724384", ",", "51.3750724384", ",", "51.3741696888", ",", "51.3750724384", ",", "51.6100563525", ",", "0", ",", "51.3960113528", ",", "51.4548878976", ",", "51.5082535498", ",", "51.5088037659", ",", "51.524382812", ",", "51.5362884182", ",", "51.5338715118", ",", "51.5381709657", ",", "51.5236965069", ",", "51.3540086945", ",", "0", ",", "51.3796248317", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.509011433", ",", "51.4907182713", ",", "51.4636079271", ",", "51.4745505786", ",", "51.5893794008", ",", "51.450724491", ",", "51.578958707", ",", "0", ",", "51.5323220431", ",", "51.4868504153", ",", "51.5857253934", ",", "51.3670319963", ",", "51.5888812835", ",", "51.6418160203", ",", "51.6419881464", ",", "51.4448269698", ",", "0", ",", "51.5849283211", ",", "51.4400375375", ",", "51.4926922559", ",", "51.3888312328", ",", "51.5695582653", ",", "51.5727086883", ",", "51.3871139703", ",", "51.5274751922", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5481884416", ",", "0", ",", "0", ",", "51.3187374093", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5534650298", ",", "51.3333372015", ",", "51.3303846105", ",", "51.3306456907", ",", "51.3303700126", ",", "51.4997246319", ",", "51.3469037931", ",", "51.5783507501", ",", "51.6258110536", ",", "51.4842261702", ",", "51.4842261702", ",", "51.5347884439", ",", "0", ",", "0", ",", "51.6468348265", ",", "0", ",", "51.5484170075", ",", "0", ",", "51.4547732758", ",", "51.4511174518", ",", "51.5662246448", ",", "51.5742179013", ",", "51.4635288475", ",", "51.6111444491", ",", "51.4635288475", ",", "51.4635288475", ",", "51.4592351885", ",", "51.4652276384", ",", "51.6113236412", ",", "51.4861928757", ",", "51.4635288475", ",", "51.3722773", ",", "51.4303018994", ",", "51.543395092", ",", "51.5434836092", ",", "51.4659936276", ",", "51.3722773", ",", "51.4635288475", ",", "0", ",", "51.465073689", ",", "51.4666710222", ",", "51.515573028", ",", "0", ",", "51.3632977111", ",", "51.4913010344", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3654932113", ",", "0", ",", "51.5362216737", ",", "51.5351705204", ",", "0", ",", "0", ",", "51.4435121353", ",", "51.5274073481", ",", "51.5216727612", ",", "51.5294343562", ",", "51.444628166", ",", "0", ",", "0", ",", "51.3768552103", ",", "0", ",", "51.5596286666", ",", "51.5582161219", ",", "51.6551259884", ",", "51.5248501765", ",", "51.4889082359", ",", "51.5421646746", ",", "51.4889082359", ",", "51.5293100742", ",", "51.5280905485", ",", "51.5111119172", ",", "0", ",", "51.3860672467", ",", "51.3860672467", ",", "51.427801447", ",", "51.4022964966", ",", "51.454155771", ",", "51.551369237", ",", "51.5425556347", ",", "51.4342629413", ",", "51.4340836457", ",", "0", ",", "0", ",", "0", ",", "51.5638518469", ",", "51.4305988051", ",", "51.5715538714", ",", "51.5440286693", ",", "51.4179142445", ",", "51.4200591907", ",", "51.5428062933", ",", "0", ",", "51.5570662014", ",", "0", ",", "0", ",", "51.5910577977", ",", "51.6053963713", ",", "0", ",", "51.6181061536", ",", "0", ",", "51.4942327434", ",", "51.5842227561", ",", "51.5847583835", ",", "51.5000232263", ",", "51.3689968844", ",", "51.4499926819", ",", "51.4583446964", ",", "51.4387490048", ",", "51.4371544414", ",", "51.4447653371", ",", "0", ",", "0", ",", "51.5136930465", ",", "51.5427195528", ",", "0", ",", "0", ",", "51.5718418964", ",", "0", ",", "51.4422481181", ",", "0", ",", "51.492995634", ",", "51.492995634", ",", "51.4646820258", ",", "51.4603550944", ",", "51.4619379658", ",", "51.4618770427", ",", "51.462024626", ",", "0", ",", "51.3902059191", ",", "51.5621816367", ",", "51.5624965489", ",", "51.3627158963", ",", "0", ",", "0", ",", "51.571543639", ",", "0", ",", "51.5655902399", ",", "51.5341615428", ",", "51.5314949323", ",", "51.4580207936", ",", "51.5741512122", ",", "51.5841796203", ",", "51.5805425557", ",", "51.5811388665", ",", "51.5507351314", ",", "51.6014661004", ",", "51.5466834108", ",", "51.5744400375", ",", "0", ",", "51.4281111063", ",", "51.5359992233", ",", "0", ",", "0", ",", "51.5655122928", ",", "51.5651386451", ",", "51.5116059613", ",", "51.4385863086", ",", "51.4612527326", ",", "51.3994173025", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.37947793", ",", "51.3831784301", ",", "0", ",", "51.4981942738", ",", "51.4622614355", ",", "51.5229927088", ",", "51.5295024052", ",", "51.5295024052", ",", "51.3885069118", ",", "51.5819566803", ",", "51.4083162181", ",", "51.5986088572", ",", "51.4534250091", ",", "51.4488296678", ",", "51.5235080783", ",", "51.5350438319", ",", "51.4686537712", ",", "51.4438148038", ",", "51.5095465151", ",", "51.4486071127", ",", "51.4488613776", ",", "51.5526522779", ",", "51.6809660265", ",", "51.4994276442", ",", "51.4990900096", ",", "51.4055571595", ",", "51.5640200089", ",", "51.5882651472", ",", "51.5620678641", ",", "51.5531177945", ",", "51.5522733132", ",", "51.464368645", ",", "51.5261743613", ",", "51.5244999897", ",", "0", ",", "0", ",", "51.5417271709", ",", "0", ",", "51.5007562907", ",", "51.500758375", ",", "51.4951874274", ",", "51.4996047142", ",", "51.4289153359", ",", "0", ",", "51.4590632549", ",", "51.6669742955", ",", "51.3528336362", ",", "51.5094203694", ",", "51.5405048711", ",", "51.5474519036", ",", "51.5255064164", ",", "51.4442183914", ",", "51.4474862526", ",", "51.6083828569", ",", "51.4113636576", ",", "51.5935933709", ",", "51.4970838874", ",", "51.4062273128", ",", "51.4038919173", ",", "51.6052135659", ",", "51.6056252605", ",", "51.6085263908", ",", "0", ",", "51.5736357916", ",", "51.6476041728", ",", "0", ",", "0", ",", "0", ",", "51.576382778", ",", "51.5685150763", ",", "51.5674617299", ",", "0", ",", "51.4258996205", ",", "51.5981128511", ",", "51.5086920178", ",", "51.4460926894", ",", "51.6478785033", ",", "51.4897719384", ",", "51.5425406836", ",", "51.5425406836", ",", "51.5425406836", ",", "51.5051593308", ",", "51.5058859721", ",", "51.6335354225", ",", "51.5540007039", ",", "51.4761165224", ",", "0", ",", "51.4899099993", ",", "51.4884730203", ",", "51.4529036376", ",", "51.4889413185", ",", "51.5202770025", ",", "51.5848840854", ",", "51.5175346334", ",", "51.5191889562", ",", "51.3433728931", ",", "51.342499732", ",", "0", ",", "51.6321997055", ",", "51.5193289303", ",", "51.5462551668", ",", "51.4120357031", ",", "51.4675472543", ",", "51.5092749546", ",", "51.5004849239", ",", "51.505687788", ",", "0", ",", "0", ",", "51.446142141", ",", "0", ",", "51.5530768232", ",", "51.6086833595", ",", "51.4507354403", ",", "0", ",", "0", ",", "51.5020594884", ",", "51.4547989513", ",", "0", ",", "0", ",", "51.572007853", ",", "51.5784341326", ",", "51.5603963897", ",", "51.5739787603", ",", "51.5904125496", ",", "51.5738189287", ",", "51.5763501557", ",", "51.5281602997", ",", "51.5277040663", ",", "51.5314525785", ",", "51.5688851177", ",", "51.4784942167", ",", "0", ",", "0", ",", "51.3729050941", ",", "51.4133901772", ",", "51.4133901772", ",", "51.4582377711", ",", "51.5647804108", ",", "51.562800446", ",", "51.4498421983", ",", "51.6116437607", ",", "51.5915351095", ",", "51.3400464454", ",", "51.5907684243", ",", "51.3650096282", ",", "51.5456178734", ",", "51.5452966034", ",", "51.5456178734", ",", "51.4629162728", ",", "51.363111278", ",", "51.3766000525", ",", "51.4671836267", ",", "51.4529569303", ",", "0", ",", "51.5432926277", ",", "51.5005488694", ",", "51.3406860905", ",", "51.5132004558", ",", "51.5132004558", ",", "51.5224482257", ",", "51.5029563824", ",", "0", ",", "51.6442352956", ",", "51.5601467815", ",", "0", ",", "51.4819127961", ",", "51.3900545982", ",", "51.5018755418", ",", "51.489985027", ",", "51.5821423025", ",", "51.5225427151", ",", "51.3829141212", ",", "51.4095387674", ",", "51.4672463464", ",", "0", ",", "0", ",", "51.3838220255", ",", "51.4684644228", ",", "51.4676243002", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3770147092", ",", "51.4592090962", ",", "0", ",", "0", ",", "0", ",", "51.4452743794", ",", "51.4231468824", ",", "51.5464350793", ",", "51.5575596271", ",", "51.4097932798", ",", "0", ",", "0", ",", "51.4639502885", ",", "51.4754233243", ",", "51.4074642196", ",", "51.5291768897", ",", "51.5864823573", ",", "51.4892415975", ",", "51.5804063608", ",", "51.5210707107", ",", "51.5210707107", ",", "0", ",", "51.6239111985", ",", "51.3654795584", ",", "51.641743314", ",", "51.4909328871", ",", "51.6086925843", ",", "0", ",", "51.4575833403", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5422337375", ",", "51.6037388514", ",", "51.6037388514", ",", "0", ",", "51.6549485023", ",", "51.6037388514", ",", "51.5757790184", ",", "51.5125124942", ",", "0", ",", "51.3254254108", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5101127753", ",", "51.4270821539", ",", "51.4227893848", ",", "0", ",", "51.5282382351", ",", "51.3640654183", ",", "51.6003853935", ",", "0", ",", "51.495922193", ",", "51.6188608015", ",", "51.4070707264", ",", "0", ",", "51.5037755633", ",", "51.5289745091", ",", "51.4918608158", ",", "0", ",", "51.5457637293", ",", "51.5278070489", ",", "0", ",", "51.4043197695", ",", "51.5037411631", ",", "51.681011703", ",", "51.610015199", ",", "51.348703949", ",", "51.334543708", ",", "51.3369493791", ",", "51.3290014188", ",", "51.3398269953", ",", "51.3315095083", ",", "51.3522822984", ",", "51.3404425757", ",", "51.3352500709", ",", "51.4020245096", ",", "51.4042739747", ",", "51.5220365533", ",", "0", ",", "51.5496301784", ",", "51.4511463531", ",", "51.3624897452", ",", "51.4422445377", ",", "51.4511463531", ",", "0", ",", "51.3751701039", ",", "51.3751701039", ",", "0", ",", "0", ",", "51.5415957896", ",", "0", ",", "0", ",", "51.5533910081", ",", "51.4438989867", ",", "0", ",", "51.5501044385", ",", "51.5467055588", ",", "51.5467055588", ",", "51.4721151887", ",", "51.4682924515", ",", "0", ",", "0", ",", "51.3589384578", ",", "51.350050853", ",", "51.5795142915", ",", "51.4402327193", ",", "0", ",", "51.4482950438", ",", "51.4680968243", ",", "51.4542565205", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5018641432", ",", "51.513961588", ",", "51.5085419752", ",", "51.5108096493", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4821386252", ",", "0", ",", "51.6375779614", ",", "51.4322525269", ",", "51.4961419027", ",", "51.5251087243", ",", "51.5972538419", ",", "51.6466483905", ",", "0", ",", "0", ",", "0", ",", "51.6050111836", ",", "0", ",", "51.5657134735", ",", "0", ",", "51.3991482638", ",", "51.4030735144", ",", "0", ",", "51.4100605106", ",", "51.6391044767", ",", "51.5313032227", ",", "51.5323548269", ",", "0", ",", "51.4564488538", ",", "0", ",", "51.568378307", ",", "51.6501383947", ",", "0", ",", "51.4013541317", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4575480851", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3612745354", ",", "51.5263574885", ",", "51.5068970107", ",", "51.6056261406", ",", "51.6099302366", ",", "51.4926927179", ",", "51.477960614", ",", "0", ",", "0", ",", "51.3935232103", ",", "51.6164781243", ",", "51.3943900524", ",", "51.522965726", ",", "51.3688606398", ",", "51.6229189902", ",", "51.5827509897", ",", "51.5824928151", ",", "51.4265591506", ",", "0", ",", "51.554901921", ",", "51.6055603941", ",", "51.4042750387", ",", "51.5140766396", ",", "51.3918669641", ",", "51.3893666517", ",", "0", ",", "0", ",", "0", ",", "51.3448608647", ",", "51.3425644182", ",", "51.3361610127", ",", "51.3424098601", ",", "51.3464630986", ",", "0", ",", "51.3973162035", ",", "0", ",", "51.4398070689", ",", "51.5313382529", ",", "0", ",", "51.6086003731", ",", "51.5644749526", ",", "51.5610230038", ",", "51.5837498658", ",", "51.5800402497", ",", "51.5800402497", ",", "51.5821685891", ",", "51.5800402497", ",", "51.5800402497", ",", "51.5800402497", ",", "51.5586443882", ",", "51.3494001861", ",", "0", ",", "51.3494001861", ",", "51.3678798811", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3494001861", ",", "51.3639698326", ",", "51.5538977375", ",", "0", ",", "51.5702628368", ",", "0", ",", "51.4057925092", ",", "51.6433787329", ",", "51.6358838231", ",", "51.6433787329", ",", "51.4954499613", ",", "51.527187152", ",", "51.6267544294", ",", "51.567695814", ",", "51.3845253563", ",", "51.4104355398", ",", "51.5109682851", ",", "51.4322202825", ",", "51.5451730524", ",", "51.5507737558", ",", "51.5507737558", ",", "51.5114023353", ",", "51.5068788353", ",", "51.4195686828", ",", "51.6110675704", ",", "51.6110675704", ",", "51.6110675704", ",", "51.5273340311", ",", "51.5719130791", ",", "51.3857734335", ",", "51.5218793312", ",", "51.5412686026", ",", "51.6184471844", ",", "51.4706968426", ",", "51.4643679517", ",", "0", ",", "51.4291642732", ",", "0", ",", "51.4021134579", ",", "51.4724526487", ",", "51.5757054323", ",", "51.5719155423", ",", "0", ",", "0", ",", "0", ",", "51.5233050408", ",", "51.462404645", ",", "51.5874866008", ",", "51.4633184085", ",", "51.4617396412", ",", "51.465244634", ",", "51.4661129781", ",", "51.5362130262", ",", "51.331942347", ",", "51.5817074381", ",", "0", ",", "0", ",", "51.6071241743", ",", "0", ",", "51.5065043096", ",", "51.4600380973", ",", "51.5559071457", ",", "0", ",", "51.4623807623", ",", "51.5438960698", ",", "51.5432439619", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5292357491", ",", "51.5122332295", ",", "51.5028816571", ",", "51.5052520296", ",", "51.5028816571", ",", "51.6099655854", ",", "51.5028816571", ",", "51.35240709", ",", "0", ",", "51.5038696159", ",", "51.5057322226", ",", "0", ",", "51.5046083227", ",", "0", ",", "51.4876669692", ",", "51.3840430317", ",", "51.3840430317", ",", "51.3840430317", ",", "0", ",", "51.6598922451", ",", "0", ",", "51.4809625581", ",", "0", ",", "51.5781122519", ",", "51.5458263169", ",", "0", ",", "51.5788403785", ",", "51.5879245688", ",", "51.643109123", ",", "51.4458280535", ",", "51.5079608565", ",", "51.4868373403", ",", "51.4007477622", ",", "51.360970043", ",", "51.3764720139", ",", "51.5304174351", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4773980746", ",", "0", ",", "51.4691574195", ",", "51.4691574195", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3515000479", ",", "0", ",", "0", ",", "0", ",", "51.5280175254", ",", "51.5286398826", ",", "51.3779777628", ",", "51.3033587655", ",", "51.3786887839", ",", "51.6344681362", ",", "51.3752321964", ",", "51.3744785808", ",", "51.3766688841", ",", "51.3766688841", ",", "0", ",", "51.5137055052", ",", "51.3724671637", ",", "51.3698965498", ",", "51.3780060701", ",", "51.5140888803", ",", "0", ",", "0", ",", "51.4686601224", ",", "51.4686601224", ",", "51.4686601224", ",", "51.4686601224", ",", "51.4686601224", ",", "51.4695449049", ",", "51.4686601224", ",", "0", ",", "51.4499516363", ",", "51.4415368944", ",", "51.525722155", ",", "51.5261388134", ",", "51.5236614369", ",", "51.5272485697", ",", "51.5271119256", ",", "51.5272485697", ",", "0", ",", "0", ",", "0", ",", "51.4287952521", ",", "51.4808114971", ",", "0", ",", "51.6107736885", ",", "0", ",", "51.4055223003", ",", "51.4051009822", ",", "51.5731582812", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.586448032", ",", "51.4717720184", ",", "51.4717720184", ",", "0", ",", "51.5482518341", ",", "51.4717720184", ",", "51.4717720184", ",", "51.6342383923", ",", "51.6210249984", ",", "51.3664101441", ",", "51.6124746738", ",", "51.5244276434", ",", "51.4271168897", ",", "51.4701871864", ",", "51.5564004945", ",", "51.5234968767", ",", "51.4336357786", ",", "51.4353154205", ",", "51.4259521078", ",", "51.4506606519", ",", "51.4357159872", ",", "51.4195580299", ",", "51.4336357786", ",", "51.4393527897", ",", "51.5427977283", ",", "51.5467563995", ",", "51.5561781284", ",", "51.5199240246", ",", "0", ",", "0", ",", "0", ",", "51.4786370358", ",", "51.6151963929", ",", "51.6153961682", ",", "51.5044180575", ",", "51.530776575", ",", "51.4435622065", ",", "51.3981351347", ",", "51.6202847201", ",", "51.4724771871", ",", "51.4680932423", ",", "51.4160634185", ",", "51.6237099266", ",", "51.4536985157", ",", "0", ",", "51.3187356728", ",", "51.3164622299", ",", "51.5443655337", ",", "51.6156362483", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.487828328", ",", "51.485458057", ",", "51.4813613679", ",", "51.5768217288", ",", "51.4188367918", ",", "51.5950506173", ",", "51.4967709857", ",", "51.4613325748", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4396314932", ",", "51.5536949914", ",", "51.3749256007", ",", "51.5355746575", ",", "0", ",", "51.4619886376", ",", "0", ",", "51.3321480539", ",", "51.5262074358", ",", "51.5749216646", ",", "0", ",", "51.537338636", ",", "51.4826067516", ",", "51.4673210426", ",", "51.4708995029", ",", "51.4762928464", ",", "51.4276752531", ",", "51.6548667872", ",", "0", ",", "0", ",", "0", ",", "51.4799165506", ",", "0", ",", "0", ",", "51.4923096754", ",", "51.4937245539", ",", "51.5010770776", ",", "51.6747804111", ",", "0", ",", "0", ",", "51.5786536755", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5298941646", ",", "0", ",", "0", ",", "51.5041085757", ",", "51.3215834523", ",", "51.3277297867", ",", "51.3265159754", ",", "51.340084599", ",", "51.5391197677", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0.10064262535", ",", "0.08462667615", ",", "0.08122195425", ",", "0.10064262535", ",", "0.0952570548333", ",", "0.0709624816", ",", "0.0711083258333", ",", "0", ",", "-", "0.20614263885", ",", "0.1230088635", ",", "-", "0.10460874925", ",", "0", ",", "-", "0.00589652725", ",", "0", ",", "0", ",", "0", ",", "-", "0.40047432325", ",", "-", "0.161554638967", ",", "-", "0.063525259", ",", "-", "0.1321077836", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.053225916025", ",", "-", "0.05209139", ",", "-", "0.10058552635", ",", "-", "0.1504192643", ",", "0.26611560045", ",", "-", "0.0350284859667", ",", "-", "0.0452106389", ",", "-", "0.04655959735", ",", "-", "0.04803895615", ",", "-", "0.15899303055", ",", "0", ",", "0", ",", "0", ",", "0.0106365885", ",", "0", ",", "0", ",", "0.0312030463", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1399378827", ",", "0", ",", "0", ",", "0", ",", "-", "0.305578078", ",", "-", "0.33215494875", ",", "-", "0.30585886365", ",", "-", "0.38268922905", ",", "0", ",", "-", "0.0109892504", ",", "-", "0.0106081898", ",", "-", "0.0303984323", ",", "-", "0.31241713455", ",", "0", ",", "-", "0.010621608225", ",", "0.1591998698", ",", "0.12074067065", ",", "-", "0.01705307365", ",", "-", "0.200343682", ",", "-", "0.200343682", ",", "-", "0.10133868425", ",", "-", "0.4136429562", ",", "-", "0.0116688222", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0535521664", ",", "-", "0.2809738154", ",", "-", "0.1869848118", ",", "-", "0.18404359015", ",", "-", "0.35318788925", ",", "0", ",", "0", ",", "0", ",", "0.11293385505", ",", "0", ",", "0", ",", "0", ",", "-", "0.2986864334", ",", "-", "0.1453566559", ",", "-", "0.0951540877", ",", "-", "0.0944022267667", ",", "-", "0.07455858515", ",", "-", "0.0944022267667", ",", "-", "0.08910270965", ",", "0", ",", "0", ",", "-", "0.0506394894", ",", "-", "0.1565157355", ",", "0.15634033395", ",", "0", ",", "-", "0.2043680566", ",", "-", "0.14352403155", ",", "-", "0.2055078824", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.40325666245", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0430957547", ",", "-", "0.1886352645", ",", "-", "0.3301754496", ",", "-", "0.1746050025", ",", "0", ",", "-", "0.0910122645", ",", "0.0797275867", ",", "-", "0.2402518707", ",", "-", "0.2399457286", ",", "-", "0.2402518707", ",", "0.042247102", ",", "-", "0.1657990726", ",", "-", "0.1669953467", ",", "0.0956230625", ",", "0.0956230625", ",", "-", "0.2813042331", ",", "-", "0.04905048345", ",", "-", "0.20259490105", ",", "0.0616989528", ",", "-", "0.3626517569", ",", "-", "0.0655727879", ",", "-", "0.0690770519", ",", "0", ",", "0", ",", "-", "0.1388336402", ",", "-", "0.13294111085", ",", "0", ",", "-", "0.157368499", ",", "-", "0.14954593665", ",", "-", "0.1399420198", ",", "-", "0.1387926007", ",", "-", "0.1387926007", ",", "-", "0.1166608459", ",", "0.112075311", ",", "0.1110580918", ",", "-", "0.410418711", ",", "0", ",", "-", "0.2775148238", ",", "-", "0.0265639311", ",", "0", ",", "-", "0.2567944686", ",", "0", ",", "0", ",", "-", "0.0268183257", ",", "-", "0.2857099804", ",", "0", ",", "-", "0.294722230875", ",", "-", "0.2909158854", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.036887033", ",", "0", ",", "-", "0.1805927554", ",", "0", ",", "0", ",", "0.11244091275", ",", "-", "0.2350390756", ",", "-", "0.2350390756", ",", "-", "0.2536999398", ",", "-", "0.1618736546", ",", "-", "0.1586065554", ",", "-", "0.16247376945", ",", "-", "0.0790047655", ",", "-", "0.1466611571", ",", "-", "0.16734587145", ",", "-", "0.1231523992", ",", "-", "0.17901356315", ",", "-", "0.17901356315", ",", "-", "0.2200802515", ",", "-", "0.2200802515", ",", "-", "0.1544676001", ",", "-", "0.1663690946", ",", "-", "0.1702343104", ",", "-", "0.1702343104", ",", "-", "0.1544676001", ",", "-", "0.1702343104", ",", "0.035067753075", ",", "0.035067753075", ",", "-", "0.2831114253", ",", "-", "0.1437964316", ",", "-", "0.2847949282", ",", "0.0895763826", ",", "-", "0.4347833642", ",", "0", ",", "-", "0.3528427696", ",", "-", "0.0499385982", ",", "0.19548453525", ",", "0.0846845593", ",", "-", "0.34550495555", ",", "-", "0.3528427696", ",", "0.0040142534", ",", "0.089713849", ",", "0.089713849", ",", "-", "0.07488940845", ",", "-", "0.07488940845", ",", "0.0583947579", ",", "-", "0.14411810635", ",", "-", "0.4238526931", ",", "0.02872410335", ",", "-", "0.4823015502", ",", "-", "0.327024106", ",", "-", "0.02387949945", ",", "-", "0.34254712375", ",", "-", "0.3267966141", ",", "0", ",", "-", "0.2500890178", ",", "-", "0.1962099073", ",", "0.00983120295", ",", "-", "0.1219326715", ",", "-", "0.1166581455", ",", "0.222334238", ",", "-", "0.2188026358", ",", "-", "0.3738804538", ",", "-", "0.1899726271", ",", "-", "0.1885614336", ",", "-", "0.0816012173", ",", "-", "0.1890329827", ",", "-", "0.3624680675", ",", "-", "0.0620852337", ",", "-", "0.0613780413", ",", "-", "0.0613780413", ",", "0", ",", "-", "0.07498410845", ",", "-", "0.1191565253", ",", "0", ",", "0.0510210866", ",", "-", "0.24994257165", ",", "-", "0.0888522911", ",", "0", ",", "-", "0.0133550125", ",", "0", ",", "0", ",", "-", "0.0370040404", ",", "-", "0.2494091089", ",", "-", "0.2774531072", ",", "0", ",", "0.10153115065", ",", "0.09819962915", ",", "-", "0.11375774765", ",", "-", "0.1171208771", ",", "-", "0.0822849387", ",", "-", "0.0822849387", ",", "-", "0.1165834567", ",", "-", "0.11544989615", ",", "-", "0.1190579151", ",", "-", "0.0984947986", ",", "-", "0.118557220867", ",", "-", "0.12006476945", ",", "-", "0.12006476945", ",", "-", "0.1156608335", ",", "0.09824037745", ",", "-", "0.216736791738", ",", "-", "0.2198540982", ",", "-", "0.20950928864", ",", "-", "0.215228079", ",", "-", "0.211646940133", ",", "-", "0.20901139185", ",", "-", "0.22825401625", ",", "-", "0.2160239325", ",", "-", "0.22142924674", ",", "-", "0.23654691585", ",", "-", "0.2204292155", ",", "-", "0.2288573536", ",", "-", "0.22277811605", ",", "-", "0.216736791738", ",", "-", "0.2415658139", ",", "-", "0.213563679533", ",", "0", ",", "0", ",", "-", "0.0945940891", ",", "-", "0.1168442462", ",", "-", "0.1051964708", ",", "-", "0.25971323935", ",", "-", "0.2457648399", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0183180945", ",", "0", ",", "0.01372621065", ",", "0.0509378947", ",", "0.0509378947", ",", "0.0509378947", ",", "0.0509378947", ",", "0.0509378947", ",", "-", "0.23743558995", ",", "-", "0.1192383557", ",", "0.0509378947", ",", "-", "0.08754510145", ",", "0.1019595929", ",", "0.1019595929", ",", "-", "0.1684061996", ",", "-", "0.24307860455", ",", "0.104845564", ",", "-", "0.093364148", ",", "0", ",", "0", ",", "-", "0.17704983035", ",", "-", "0.065767311775", ",", "-", "0.31280698295", ",", "-", "0.1429758137", ",", "-", "0.15266635485", ",", "-", "0.09633561125", ",", "-", "0.2914725399", ",", "0.2741111643", ",", "-", "0.1824237312", ",", "-", "0.181445684433", ",", "-", "0.1763035187", ",", "0.18039654156", ",", "-", "0.221245500133", ",", "0.0360256611", ",", "-", "0.231052199167", ",", "0", ",", "0", ",", "-", "0.24453314445", ",", "-", "0.0573830809", ",", "-", "0.1030279338", ",", "-", "0.0579647465167", ",", "0", ",", "-", "0.36889277585", ",", "-", "0.2504748961", ",", "-", "0.2836896718", ",", "-", "0.15149700685", ",", "-", "0.02989176095", ",", "0.2201653339", ",", "-", "0.387340991", ",", "-", "0.0698011807", ",", "-", "0.0705284447", ",", "-", "0.0698011807", ",", "-", "0.0698011807", ",", "-", "0.28530440385", ",", "-", "0.29321421665", ",", "-", "0.28564840005", ",", "-", "0.2624636744", ",", "-", "0.2146619233", ",", "-", "0.22433677515", ",", "-", "0.22433677515", ",", "-", "0.22433677515", ",", "-", "0.22433677515", ",", "-", "0.1471725274", ",", "-", "0.1470543977", ",", "-", "0.1520232033", ",", "-", "0.1520232033", ",", "-", "0.1520232033", ",", "-", "0.1520232033", ",", "-", "0.187188063167", ",", "-", "0.1879661853", ",", "-", "0.187188063167", ",", "0.07289900425", ",", "-", "0.1897624821", ",", "-", "0.37596582535", ",", "-", "0.00665425875", ",", "-", "0.0910534172", ",", "0.02566556035", ",", "0.09474459465", ",", "-", "0.20464318386", ",", "-", "0.2049664142", ",", "-", "0.0184780752", ",", "-", "0.194311455925", ",", "-", "0.1872545288", ",", "-", "0.2951773507", ",", "0.1159941448", ",", "-", "0.2266103604", ",", "-", "0.4061403043", ",", "0", ",", "-", "0.0805074514", ",", "0", ",", "0", ",", "-", "0.2013574471", ",", "0", ",", "0.0993251921", ",", "-", "0.2049508562", ",", "0", ",", "0", ",", "-", "0.0744120856", ",", "-", "0.3307469529", ",", "-", "0.0930011917", ",", "-", "0.27713499385", ",", "0", ",", "-", "0.0736024396", ",", "-", "0.3528705807", ",", "0", ",", "0", ",", "0", ",", "0.1592110488", ",", "0", ",", "0.1913133995", ",", "0.19650054175", ",", "0.190663597933", ",", "0", ",", "0", ",", "0.1920497663", ",", "0", ",", "-", "0.2783698978", ",", "0.021865163", ",", "-", "0.3853934159", ",", "-", "0.1598749622", ",", "-", "0.165819890167", ",", "-", "0.38514659985", ",", "-", "0.1920958275", ",", "0.1096580646", ",", "-", "0.2608413196", ",", "0.1210097718", ",", "-", "0.15604749445", ",", "0.1165359564", ",", "0.10972937785", ",", "0", ",", "0.10332145135", ",", "0", ",", "-", "0.2452781381", ",", "-", "0.2452781381", ",", "-", "0.2452781381", ",", "-", "0.12268926475", ",", "-", "0.1804927594", ",", "-", "0.2373009265", ",", "0.0053007457", ",", "0.0047297579", ",", "-", "0.00250962245", ",", "0.0148673489", ",", "0.0047297579", ",", "0", ",", "0.19098692115", ",", "0.01572937915", ",", "0.01000793625", ",", "0", ",", "0.03804102105", ",", "0", ",", "-", "0.00456400875", ",", "-", "0.0025751725", ",", "-", "0.0279496424", ",", "0.07458374205", ",", "-", "0.0289530541", ",", "0.00384174855", ",", "-", "0.2442470105", ",", "0.2289882626", ",", "-", "0.235507806775", ",", "-", "0.2403288618", ",", "-", "0.2403288618", ",", "-", "0.1359554352", ",", "-", "0.2924483333", ",", "-", "0.176814669", ",", "-", "0.07171991315", ",", "-", "0.0702245716", ",", "-", "0.0554339427", ",", "-", "0.0452368968", ",", "-", "0.1628176363", ",", "0", ",", "-", "0.2769456346", ",", "-", "0.0824776016", ",", "0", ",", "0.04302841205", ",", "-", "0.1430692833", ",", "0", ",", "-", "0.0588764864333", ",", "-", "0.37036914098", ",", "-", "0.37432313855", ",", "-", "0.3774019949", ",", "-", "0.2306195782", ",", "-", "0.2406319405", ",", "-", "0.2288693801", ",", "-", "0.2271002358", ",", "-", "0.2264422954", ",", "-", "0.2302266886", ",", "-", "0.0518922648", ",", "0", ",", "-", "0.35408798215", ",", "0", ",", "-", "0.3494888868", ",", "0.2322658067", ",", "-", "0.1254524781", ",", "0.2665841955", ",", "-", "0.1077337713", ",", "0.1116058082", ",", "0.118937603", ",", "0.1116058082", ",", "0.1116058082", ",", "-", "0.0699062235", ",", "-", "0.40128578635", ",", "-", "0.0699062235", ",", "-", "0.0682078311", ",", "0.1543792294", ",", "-", "0.0699062235", ",", "-", "0.4471199048", ",", "0.0542761167", ",", "0.05859267995", ",", "-", "0.119211045867", ",", "0", ",", "-", "0.0106978347333", ",", "0.0459163513", ",", "0.0403696767", ",", "0.0812809887", ",", "0.07849059765", ",", "0.0462560483", ",", "0", ",", "0", ",", "-", "0.1908376405", ",", "-", "0.1881041915", ",", "-", "0.188898903", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.42604766385", ",", "0", ",", "0.237726417", ",", "-", "0.0052765665", ",", "-", "0.10783655935", ",", "-", "0.04045612135", ",", "-", "0.35151443975", ",", "-", "0.0530986385", ",", "0.1480237518", ",", "0.16496641135", ",", "-", "0.124326845425", ",", "-", "0.12244554845", ",", "0", ",", "-", "0.1231538452", ",", "-", "0.106369802", ",", "-", "0.106369802", ",", "-", "0.10532221865", ",", "-", "0.106369802", ",", "0.1152211965", ",", "0", ",", "-", "0.2920551985", ",", "-", "0.10406133485", ",", "-", "0.133622503", ",", "-", "0.1342917449", ",", "-", "0.03672852655", ",", "-", "0.0699947606", ",", "-", "0.14622943805", ",", "-", "0.1525582721", ",", "-", "0.1468157416", ",", "-", "0.10596033385", ",", "0", ",", "-", "0.20150781825", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0596207943", ",", "-", "0.10618353885", ",", "-", "0.0108108098", ",", "-", "0.33846438215", ",", "-", "0.0306138689", ",", "0.0837024738", ",", "-", "0.04093696085", ",", "0", ",", "0.11864427225", ",", "0.0569292631", ",", "0.19553126615", ",", "0.0959121699", ",", "-", "0.2837768675", ",", "-", "0.13268796215", ",", "-", "0.1327676097", ",", "0.08207396155", ",", "0", ",", "-", "0.30600394615", ",", "-", "0.1970417166", ",", "-", "0.0695175509", ",", "-", "0.17490130895", ",", "0.1248273161", ",", "-", "0.18577854285", ",", "0.1136752658", ",", "-", "0.398507724", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3616506179", ",", "0", ",", "0", ",", "-", "0.15093429785", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.33310186685", ",", "-", "0.0997924238", ",", "-", "0.08939224", ",", "-", "0.1012961648", ",", "-", "0.0987164658", ",", "0.08464035285", ",", "-", "0.0725881357", ",", "-", "0.1105165201", ",", "-", "0.0144507505", ",", "-", "0.34256319", ",", "-", "0.34256319", ",", "0.158954025", ",", "0", ",", "0", ",", "-", "0.09109025135", ",", "0", ",", "-", "0.07092380535", ",", "0", ",", "0.0775173358", ",", "0.07853878415", ",", "-", "0.0360806558", ",", "0.16922917855", ",", "-", "0.30185005776", ",", "0.00245094845", ",", "-", "0.30185005776", ",", "-", "0.30185005776", ",", "-", "0.304378880333", ",", "-", "0.2975772965", ",", "-", "0.3309685649", ",", "0.0811925344", ",", "-", "0.30185005776", ",", "-", "0.1311121445", ",", "-", "0.3073277681", ",", "-", "0.0630454316", ",", "-", "0.0564363263", ",", "-", "0.323586203", ",", "-", "0.1311121445", ",", "-", "0.30185005776", ",", "0", ",", "-", "0.2919394114", ",", "-", "0.2886259238", ",", "0.025216258", ",", "0", ",", "-", "0.177618994", ",", "-", "0.38134450535", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3127642452", ",", "0", ",", "0.1028406052", ",", "0.1036188852", ",", "0", ",", "0", ",", "-", "0.3582192716", ",", "0.0948652359", ",", "0.098220306", ",", "0.0911375297", ",", "0.1353558887", ",", "0", ",", "0", ",", "-", "0.2686710531", ",", "0", ",", "-", "0.09139764985", ",", "-", "0.0985547565", ",", "-", "0.0764866969", ",", "0.1155798149", ",", "-", "0.03472386535", ",", "-", "0.4890250244", ",", "-", "0.03472386535", ",", "-", "0.1443890947", ",", "-", "0.1386502079", ",", "-", "0.4684143023", ",", "0", ",", "-", "0.1816369741", ",", "-", "0.1816369741", ",", "-", "0.2603155958", ",", "-", "0.14048472025", ",", "-", "0.3027175515", ",", "0.1502763066", ",", "-", "0.23644422395", ",", "-", "0.0996352634", ",", "-", "0.10355612688", ",", "0", ",", "0", ",", "0", ",", "-", "0.1042208894", ",", "-", "0.1144183643", ",", "0.20527499745", ",", "-", "0.4871317342", ",", "-", "0.09108713835", ",", "-", "0.0883368703", ",", "-", "0.3453025875", ",", "0", ",", "0.0680093806", ",", "0", ",", "0", ",", "0.0468213269", ",", "0.0540590293", ",", "0", ",", "0.0459148089", ",", "0", ",", "-", "0.093867958025", ",", "-", "0.2660101432", ",", "-", "0.2657443532", ",", "0.0629280879667", ",", "-", "0.28650223595", ",", "-", "0.24414431885", ",", "-", "0.2427945313", ",", "-", "0.247865812", ",", "-", "0.2530970222", ",", "-", "0.2397758048", ",", "0", ",", "0", ",", "0.0153248858", ",", "0.1523923366", ",", "0", ",", "0", ",", "-", "0.0211692138", ",", "0", ",", "-", "0.4163484149", ",", "0", ",", "-", "0.137194281567", ",", "-", "0.137194281567", ",", "0.03376710995", ",", "0.0771734198", ",", "0.06418752895", ",", "0.075784877425", ",", "0.03945798145", ",", "0", ",", "-", "0.13259514115", ",", "-", "0.466843184", ",", "-", "0.4661689281", ",", "0.0390719087", ",", "0", ",", "0", ",", "0.18213710195", ",", "0", ",", "0.10524180355", ",", "-", "0.0267549797", ",", "-", "0.0401496569", ",", "0.0312828441", ",", "0.183661441386", ",", "0.1747128379", ",", "0.18204069894", ",", "0.1856605958", ",", "0.0475059977", ",", "0.1386493874", ",", "0.02551594135", ",", "0.164505919", ",", "0", ",", "-", "0.0935033047", ",", "-", "0.43374455225", ",", "0", ",", "0", ",", "0.1874072567", ",", "0.19128528955", ",", "-", "0.0825030769", ",", "-", "0.40328805995", ",", "-", "0.1446751857", ",", "-", "0.24534162745", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.191964537", ",", "-", "0.19050369845", ",", "0", ",", "-", "0.47773659545", ",", "-", "0.3530692757", ",", "-", "0.1117136432", ",", "-", "0.1049563252", ",", "-", "0.1049563252", ",", "-", "0.22668608415", ",", "-", "0.1205863582", ",", "-", "0.2799495732", ",", "-", "0.1382153416", ",", "-", "0.1297138194", ",", "-", "0.3462704407", ",", "-", "0.42463035775", ",", "-", "0.3669818639", ",", "-", "0.2705396627", ",", "-", "0.42316548495", ",", "-", "0.27288955695", ",", "-", "0.10216273815", ",", "-", "0.0172952192", ",", "-", "0.32622942385", ",", "-", "0.0993903464", ",", "-", "0.2765115223", ",", "-", "0.4354497173", ",", "-", "0.0830537553", ",", "-", "0.05923269705", ",", "0.2289596783", ",", "-", "0.29689146255", ",", "-", "0.168389962", ",", "-", "0.1672915472", ",", "-", "0.24391641015", ",", "-", "0.1619821954", ",", "-", "0.1664681187", ",", "0", ",", "0", ",", "-", "0.0266439774", ",", "0", ",", "-", "0.0520707955", ",", "-", "0.052087997", ",", "-", "0.0510145164", ",", "-", "0.05437048175", ",", "-", "0.1042736714", ",", "0", ",", "-", "0.0335375274", ",", "-", "0.1094626998", ",", "-", "0.13275094735", ",", "-", "0.4440881224", ",", "-", "0.237710835933", ",", "-", "0.2496394901", ",", "-", "0.0201155974", ",", "-", "0.1183256451", ",", "-", "0.1713830275", ",", "-", "0.0245631301", ",", "-", "0.1403468874", ",", "-", "0.2370666629", ",", "-", "0.474117870175", ",", "-", "0.1396925838", ",", "-", "0.137036372133", ",", "-", "0.0163389213", ",", "-", "0.0167542319", ",", "-", "0.36091608675", ",", "0", ",", "-", "0.097683942425", ",", "-", "0.2318062791", ",", "0", ",", "0", ",", "0", ",", "-", "0.34297203425", ",", "-", "0.3423851553", ",", "-", "0.3397540602", ",", "0", ",", "-", "0.366877232", ",", "-", "0.2407107808", ",", "0.0461893927", ",", "0.0526358133", ",", "-", "0.0417105668", ",", "-", "0.17033238215", ",", "-", "0.1391421623", ",", "-", "0.1391421623", ",", "-", "0.1391421623", ",", "-", "0.214429582967", ",", "-", "0.11519501825", ",", "0.0146004438", ",", "-", "0.165808429767", ",", "0.05671267715", ",", "0", ",", "-", "0.1564692102", ",", "-", "0.15430169335", ",", "-", "0.2133173851", ",", "-", "0.15663073", ",", "-", "0.46476996145", ",", "0.2104028848", ",", "-", "0.0619520212333", ",", "-", "0.0599358416", ",", "-", "0.1911890488", ",", "-", "0.1928818586", ",", "0", ",", "-", "0.30462611575", ",", "-", "0.18914051988", ",", "-", "0.0608902997", ",", "0.0751043694", ",", "0.0073656076", ",", "0.01861024995", ",", "0.0678599452", ",", "-", "0.3365897645", ",", "0", ",", "0", ",", "0.18036516705", ",", "0", ",", "-", "0.019214187", ",", "-", "0.26546809985", ",", "-", "0.14125878715", ",", "0", ",", "0", ",", "-", "0.2576473061", ",", "-", "0.33946240395", ",", "0", ",", "0", ",", "-", "0.42144848525", ",", "-", "0.43036644375", ",", "-", "0.4110641249", ",", "-", "0.4240186999", ",", "-", "0.4337767945", ",", "-", "0.413049359067", ",", "-", "0.4278477168", ",", "-", "0.3518887478", ",", "-", "0.3263372706", ",", "-", "0.3664255457", ",", "-", "0.4230549299", ",", "-", "0.1888143622", ",", "0", ",", "0", ",", "-", "0.0820473627", ",", "-", "0.17861866785", ",", "-", "0.17861866785", ",", "-", "0.11745393865", ",", "0.1759873324", ",", "0.1755825671", ",", "-", "0.15930719715", ",", "-", "0.21816857895", ",", "0.0639802268", ",", "-", "0.3189035855", ",", "-", "0.2426764664", ",", "0.0393031071", ",", "0.0567737972", ",", "0.0494396595", ",", "0.0567737972", ",", "0.1034995088", ",", "-", "0.0969081262", ",", "-", "0.10323886045", ",", "-", "0.33737146095", ",", "-", "0.0964480188", ",", "0", ",", "0.1266463856", ",", "-", "0.2110725749", ",", "-", "0.117149140533", ",", "0.0251254187", ",", "0.0251254187", ",", "-", "0.125677161591", ",", "-", "0.0358701621", ",", "0", ",", "-", "0.1124613516", ",", "-", "0.2786337224", ",", "0", ",", "0.1018243745", ",", "-", "0.20607207285", ",", "-", "0.1671243141", ",", "-", "0.2284191938", ",", "-", "0.3515816084", ",", "-", "0.3701031285", ",", "0.119647263225", ",", "-", "0.2055611158", ",", "-", "0.2188833703", ",", "0", ",", "0", ",", "0.0752217232", ",", "0.1584415575", ",", "0.1581571231", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.12063206305", ",", "-", "0.05738474145", ",", "0", ",", "0", ",", "0", ",", "-", "0.36173213335", ",", "-", "0.11015100135", ",", "-", "0.4428761379", ",", "-", "0.40777289205", ",", "9317081.0", ",", "0", ",", "0", ",", "-", "0.1497774351", ",", "-", "0.0968591857", ",", "-", "0.1691195489", ",", "-", "0.105959848633", ",", "-", "0.3325720569", ",", "0.01582361405", ",", "0.0881220927", ",", "0.06679599795", ",", "0.06679599795", ",", "0", ",", "-", "0.1029317243", ",", "-", "0.195403538", ",", "-", "0.0791344668", ",", "-", "0.12232315225", ",", "-", "0.2222125159", ",", "0", ",", "-", "0.16579732105", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0965485531", ",", "-", "0.02060563425", ",", "-", "0.02060563425", ",", "0", ",", "-", "0.2043841897", ",", "-", "0.02060563425", ",", "0.206078528", ",", "-", "0.0327207226", ",", "0", ",", "0.02352984395", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.026915337", ",", "-", "0.090510823", ",", "-", "0.09418510685", ",", "0", ",", "-", "0.1987924408", ",", "0.11086817555", ",", "-", "0.33801194445", ",", "0", ",", "-", "0.43089049595", ",", "0.1824889948", ",", "-", "0.0629890687", ",", "0", ",", "-", "0.0634942026", ",", "0.0339354348", ",", "0.052494468", ",", "0", ",", "-", "0.1334290483", ",", "-", "0.2997346084", ",", "0", ",", "-", "0.1942342497", ",", "-", "0.1107229292", ",", "-", "0.0977682679", ",", "-", "0.21219520405", ",", "-", "0.092317358175", ",", "-", "0.08085666345", ",", "-", "0.07592503265", ",", "-", "0.07358065475", ",", "-", "0.0701761574", ",", "-", "0.0754350377", ",", "-", "0.09848436135", ",", "-", "0.0857648998", ",", "-", "0.07731700835", ",", "-", "0.10637804515", ",", "-", "0.10200759835", ",", "0.0525106245", ",", "0", ",", "0.1038484453", ",", "0.1228355758", ",", "0.1004669121", ",", "0.00189542675", ",", "0.1228355758", ",", "0", ",", "-", "0.0790453312333", ",", "-", "0.0790453312333", ",", "0", ",", "0", ",", "0.1653190978", ",", "0", ",", "0", ",", "-", "0.37655916815", ",", "-", "0.3026733917", ",", "0", ",", "-", "0.0751075579", ",", "0.0361829988", ",", "0.0361829988", ",", "-", "0.19152214635", ",", "-", "0.18623081275", ",", "0", ",", "0", ",", "-", "0.137745498", ",", "-", "0.14523621645", ",", "-", "0.2901556578", ",", "-", "0.3037949847", ",", "0", ",", "-", "0.41264925015", ",", "-", "0.2871183774", ",", "-", "0.31625094835", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.04820335795", ",", "-", "0.2480123969", ",", "-", "0.1207128864", ",", "-", "0.1202448498", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0281520142", ",", "0", ",", "-", "0.04606368255", ",", "-", "0.00016722815", ",", "-", "0.196946268", ",", "-", "0.3243781859", ",", "-", "0.0680172827", ",", "-", "0.03429038365", ",", "0", ",", "0", ",", "0", ",", "-", "0.05882078055", ",", "0", ",", "0.1295540725", ",", "0", ",", "-", "0.00936082495", ",", "-", "0.0067029584", ",", "0", ",", "0.02973848485", ",", "-", "0.2557301032", ",", "0.1307014329", ",", "-", "0.23623296655", ",", "0", ",", "-", "0.4484018813", ",", "0", ",", "0.1545134237", ",", "-", "0.0723032593", ",", "0", ",", "-", "0.2356851985", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.4615282451", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1973931398", ",", "-", "0.2069254808", ",", "-", "0.2485572241", ",", "-", "0.0495373105", ",", "0.2352280525", ",", "0.1224460902", ",", "-", "0.08258977685", ",", "0", ",", "0", ",", "-", "0.3152332908", ",", "-", "0.2604907432", ",", "0.0928571464", ",", "-", "0.4820423426", ",", "-", "0.0863182124", ",", "-", "0.1223179718", ",", "-", "0.0233512021", ",", "-", "0.0256430715", ",", "0.1118774107", ",", "0", ",", "0.00988997495", ",", "-", "0.07825768885", ",", "-", "0.0679598773", ",", "-", "0.152380401525", ",", "-", "0.08783061975", ",", "-", "0.08919256145", ",", "0", ",", "0", ",", "0", ",", "-", "0.0599703461", ",", "-", "0.0621302384667", ",", "-", "0.0527141778", ",", "-", "0.0640225566", ",", "-", "0.05626236225", ",", "0", ",", "-", "0.2670072308", ",", "0", ",", "0.0267691526", ",", "-", "0.3799030327", ",", "0", ",", "0.2392574227", ",", "0.0987260292", ",", "0.09940388645", ",", "-", "0.0726500418375", ",", "-", "0.08190386715", ",", "-", "0.08190386715", ",", "-", "0.0723958019", ",", "-", "0.08190386715", ",", "-", "0.08190386715", ",", "-", "0.08190386715", ",", "-", "0.1181429922", ",", "0.089147358", ",", "0", ",", "0.089147358", ",", "0.09577130915", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.089147358", ",", "0.092389171875", ",", "0.0564116408", ",", "0", ",", "0.25777828645", ",", "0", ",", "-", "0.0466656735", ",", "-", "0.0112838677", ",", "-", "0.0123777439", ",", "-", "0.0112838677", ",", "0.1049396356", ",", "0.0239295404", ",", "0.0193353508", ",", "0.0598337584", ",", "-", "0.15748865535", ",", "-", "0.06457247095", ",", "-", "0.25714886095", ",", "-", "0.33832471085", ",", "-", "0.25966393955", ",", "-", "0.074657383575", ",", "-", "0.074657383575", ",", "-", "0.05631494994", ",", "-", "0.0521367486", ",", "-", "0.32670944115", ",", "-", "0.0757357685", ",", "-", "0.0757357685", ",", "-", "0.0757357685", ",", "-", "0.2528620688", ",", "-", "0.1189803564", ",", "-", "0.178932268", ",", "-", "0.40194737235", ",", "-", "0.26106754965", ",", "-", "0.2360674284", ",", "0.1352484181", ",", "-", "0.10415787565", ",", "0", ",", "0.0666444563", ",", "0", ",", "-", "0.2407311553", ",", "-", "0.0337392955", ",", "-", "0.4320840241", ",", "-", "0.4321134269", ",", "0", ",", "0", ",", "0", ",", "0.1102463007", ",", "0.18866285635", ",", "-", "0.251435699", ",", "-", "0.28258968655", ",", "-", "0.29703769985", ",", "-", "0.2668245553", ",", "-", "0.293321131167", ",", "-", "0.0597021828", ",", "0.0038407612", ",", "-", "0.3300477517", ",", "0", ",", "0", ",", "0.24215279285", ",", "0", ",", "-", "0.1944981295", ",", "-", "0.4400245313", ",", "-", "0.215957689933", ",", "0", ",", "-", "0.0214601043", ",", "0.05495822615", ",", "0.05008294995", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.09211413385", ",", "-", "0.25422539885", ",", "-", "0.22433117445", ",", "-", "0.2175672918", ",", "-", "0.22433117445", ",", "-", "0.4657175345", ",", "-", "0.22433117445", ",", "-", "0.052987562", ",", "0", ",", "-", "0.2242495377", ",", "-", "0.2264034485", ",", "0", ",", "-", "0.218925291838", ",", "0", ",", "-", "0.06035971895", ",", "0.0749299068", ",", "0.0749299068", ",", "0.0749299068", ",", "0", ",", "-", "0.04816187635", ",", "0", ",", "-", "0.2081162585", ",", "0", ",", "0.07066796965", ",", "0.0566822373", ",", "0", ",", "-", "0.0064172964", ",", "-", "0.0088851853", ",", "-", "0.1870742135", ",", "0.1192931597", ",", "-", "0.3194161817", ",", "-", "0.0623971206", ",", "-", "0.1457520277", ",", "-", "0.1992293823", ",", "-", "0.018499661375", ",", "-", "0.0289786832", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1460098597", ",", "0", ",", "-", "0.2693255464", ",", "-", "0.2693255464", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.06863340705", ",", "0", ",", "0", ",", "0", ",", "-", "0.1961340065", ",", "-", "0.2009391666", ",", "-", "0.0580672953", ",", "-", "0.1100694022", ",", "-", "0.0619027975", ",", "-", "0.04454271705", ",", "-", "0.0468174743", ",", "-", "0.0504346071", ",", "-", "0.0611654634", ",", "-", "0.0611654634", ",", "0", ",", "0.0135526511", ",", "-", "0.0312593046", ",", "-", "0.0544869537", ",", "-", "0.0283583585", ",", "-", "0.1066339067", ",", "0", ",", "0", ",", "0.06955214135", ",", "0.06955214135", ",", "0.06955214135", ",", "0.06955214135", ",", "0.06955214135", ",", "0.06667997845", ",", "0.06955214135", ",", "0", ",", "-", "0.4184493479", ",", "-", "0.3765215529", ",", "-", "0.0776787553", ",", "-", "0.0861093459", ",", "-", "0.0774131783222", ",", "-", "0.0791810993333", ",", "-", "0.0776105954333", ",", "-", "0.0791810993333", ",", "0", ",", "0", ",", "0", ",", "0.0008542505", ",", "-", "0.202361317567", ",", "0", ",", "-", "0.16289949305", ",", "0", ",", "0.0014484831", ",", "0.0007111401", ",", "-", "0.0163135172", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.29328041685", ",", "0.0687714152", ",", "0.0687714152", ",", "0", ",", "0.03957674915", ",", "0.0687714152", ",", "0.0687714152", ",", "-", "0.0939964374", ",", "-", "0.06195126435", ",", "-", "0.0267063694", ",", "-", "0.46058498515", ",", "-", "0.2569737082", ",", "-", "0.36066988965", ",", "-", "0.3558651323", ",", "0.120160008", ",", "0.1120788176", ",", "0.104101080767", ",", "0.1037993777", ",", "0.10124736445", ",", "0.0309848682", ",", "0.0633143292", ",", "0.0990482410875", ",", "0.104101080767", ",", "0.0819256786", ",", "-", "0.2253662719", ",", "-", "0.2195584558", ",", "0.0204053261", ",", "-", "0.0554504537", ",", "0", ",", "0", ",", "0", ",", "0.15592626435", ",", "-", "0.0719715656", ",", "-", "0.066076787", ",", "-", "0.0342798533", ",", "-", "0.13875690635", ",", "-", "0.43552080245", ",", "-", "0.1239914706", ",", "-", "0.0003971149", ",", "-", "0.148177249733", ",", "-", "0.1444840543", ",", "-", "0.0292641956", ",", "0.00664506125", ",", "-", "0.3758094297", ",", "0", ",", "0.05981785215", ",", "0.05868989585", ",", "0.1442778478", ",", "-", "0.1928638784", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.45590711745", ",", "-", "0.45414358965", ",", "-", "0.454778991", ",", "0.0117446696", ",", "-", "0.20364650028", ",", "-", "0.0157422539", ",", "-", "0.02579877865", ",", "-", "0.15857853215", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3594807724", ",", "-", "0.21192348825", ",", "0.1240057184", ",", "0.0525573413", ",", "0", ",", "-", "0.20581485405", ",", "0", ",", "0.0039071548", ",", "-", "0.1069601071", ",", "-", "0.46909153445", ",", "0", ",", "-", "0.0486805174", ",", "-", "0.47641945365", ",", "0.190262443475", ",", "0.1903078702", ",", "0.19525396245", ",", "0.07609352185", ",", "-", "0.0981115669", ",", "0", ",", "0", ",", "0", ",", "-", "0.14093655695", ",", "0", ",", "0", ",", "-", "0.1577330803", ",", "-", "0.1582889537", ",", "-", "0.16006734585", ",", "-", "0.1624652767", ",", "0", ",", "0", ",", "-", "0.2627871125", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0444572753", ",", "0", ",", "0", ",", "-", "0.04643338575", ",", "-", "0.1378669343", ",", "-", "0.1279719179", ",", "-", "0.129863425633", ",", "-", "0.14283879785", ",", "-", "0.3703833329", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pollard", "Road\"", ",", "\"Pollard", "Row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pomfret", "Road\"", ",", "\"Pond", "Square\"", ",", "\"Pond", "Walk\"", ",", "\"Ponders", "End\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pont", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pontoon", "Dock\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pooles", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Popes", "Grotto\"", ",", "\"Popes", "Lane\"", ",", "\"\"", ",", "\"Poplar\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Poplar", "Court\"", ",", "\"Poplar", "Drive\"", ",", "\"\"", ",", "\"Poplar", "Mount\"", ",", "\"\"", ",", "\"\"", ",", "\"Poplar", "Road\"", ",", "\"\"", ",", "\"Poplar", "Walk\"", ",", "\"Poplar", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Poppy", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Portley", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pound", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Power", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Poyle", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pratt", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Preston", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pretty", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Princes", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Priory", "Close\"", ",", "\"Priory", "Drive\"", ",", "\"Priory", "Hill\"", ",", "\"Priory", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Priory", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Private", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Purfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"Purley\"", ",", "\"Purley", "Cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Purley", "Oaks\"", ",", "\"Purley", "Tesco\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Putney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Putney", "Pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Pymers", "Mead\"", ",", "\"Pymmes", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Quakers", "Lane\"", ",", "\"\"", ",", "\"Quarry", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Queens", "Grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Queens", "Walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Queensbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Queensway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Queen's", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Quicks", "Road\"", ",", "\"Quill", "Street\"", ",", "\"Quilter", "Road\"", ",", "\"Quinta", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"Quorn", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Radley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Radnor", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Raglan", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rainton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ramsden", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Raphael", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ravensbourne\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rayners", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Raynes", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rays", "Avenue\"", ",", "\"Reading\"", ",", "\"Reading", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rectory", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rectory", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rectory", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Red", "Lion", "Way\"", ",", "\"\"", ",", "\"Redbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Redhill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Redruth", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Redway", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Reedham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Regent", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Reigate\"", ",", "\"\"", ",", "\"\"", ",", "\"Reigate", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Renfrew", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Renwick", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Repton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Reverdy", "Road\"", ",", "\"Revesby", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ridding", "Lane\"", ",", "\"Riddlesdown\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ridge", "Close\"", ",", "\"\"", ",", "\"Ridge", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Richmond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ringway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ripple", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Riverhill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Robins", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"Robson", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Robyns", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Roden", "Street\"", ",", "\"\"", ",", "\"Roding", "Hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Roding", "View\"", ",", "\"Rodney", "Place\"", ",", "\"Roe", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"Roebuck", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Roker", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Romford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Romney", "Road\"", ",", "\"\"", ",", "\"Ronan", "Way\"", ",", "\"Roneo", "Corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rose", "Bushes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rose", "&", "Crown\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Roslin", "Road\"", ",", "\"Ross", "Close\"", ",", "\"Ross", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rotherhithe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rounton", "Road\"", ",", "\"Roupell", "Road\"", ",", "\"Routh", "Road\"", ",", "\"Rowan", "Avenue\"", ",", "\"\"", ",", "\"Rowan", "Drive\"", ",", "\"Rowan", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rowden", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Roxeth", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Royal", "Albert\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Royal", "Oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Royston", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rudloe", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ruislip\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ruislip", "Lido\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rumbold", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Runnymede\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rusham", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Rushett", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ruskin", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ruskin", "Walk\"", ",", "\"\"", ",", "\"Rusper", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Russell", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rycroft", "Road\"", ",", "\"Rydal", "Avenue\"", ",", "\"Rydal", "Drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Rye", "Crescent\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Salcott", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Salmon", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Salters", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Samos", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sandall", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sanders", "Lane\"", ",", "\"Sanderstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sandilands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sandown", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sans", "Pariel\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Savay", "Lane\"", ",", "\"\"", ",", "\"Saville", "Road\"", ",", "\"Savoy", "Circus\"", ",", "\"Savoy", "Pier\"", ",", "\"Savoy", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sayes", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"Scarlet", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Scots", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Scott", "Close\"", ",", "\"Scottes", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Scotts", "Lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Scylla", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Seal", "Road\"", ",", "\"Sealand", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Seaton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sedge", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sefton", "Close\"", ",", "\"Sefton", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Selhurst\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Selwyn", "Road\"", ",", "\"\"", ",", "\"Senlac", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Settle", "Road\"", ",", "\"Seven", "Kings\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Severn", "Drive\"", ",", "\"\"", ",", "\"Seward", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Seymour", "Road\"", ",", "\"\"", ",", "\"Shaa", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Shadwell\"", ",", "\"\"", ",", "\"Shaef", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sheen", "Court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Shepperton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Shore", "Close\"", ",", "\"\"", ",", "\"Shoreditch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Short", "Lane\"", ",", "\"Short", "Way\"", ",", "\"\"", ",", "\"Shortlands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Shrubs", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"School", "Way\"", ",", "\"\"", ",", "\"Sidcup\"", ",", "\"\"", ",", "\"\"", ",", "\"Sidcup", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Silver", "Walk\"", ",", "\"Silverdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Simmons", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Sipson", "Close\"", ",", "\"Sipson", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Skeet", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Skip", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Slade", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"Slades", "Drive\"", ",", "\"Slades", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Slough\"", ",", "\"\"", ",", "\"Slough", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Smith", "Close\"", ",", "\"Smitham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Smiths", "Farm\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pollard", "road\"", ",", "\"pollard", "row\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pomfret", "road\"", ",", "\"pond", "square\"", ",", "\"pond", "walk\"", ",", "\"ponders", "end\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pont", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pontoon", "dock\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pooles", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"popes", "grotto\"", ",", "\"popes", "lane\"", ",", "\"\"", ",", "\"poplar\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"poplar", "court\"", ",", "\"poplar", "drive\"", ",", "\"\"", ",", "\"poplar", "mount\"", ",", "\"\"", ",", "\"\"", ",", "\"poplar", "road\"", ",", "\"\"", ",", "\"poplar", "walk\"", ",", "\"poplar", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"poppy", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"portley", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pound", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"power", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"poyle", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pratt", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"preston", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pretty", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"princes", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"priory", "close\"", ",", "\"priory", "drive\"", ",", "\"priory", "hill\"", ",", "\"priory", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"priory", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"private", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"purfleet\"", ",", "\"\"", ",", "\"\"", ",", "\"purley\"", ",", "\"purley", "cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"purley", "oaks\"", ",", "\"purley", "tesco\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"putney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"putney", "pier\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"pymers", "mead\"", ",", "\"pymmes", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"quakers", "lane\"", ",", "\"\"", ",", "\"quarry", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"queens", "grove\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"queens", "walk\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"queensbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"queensway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"queen's", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"quicks", "road\"", ",", "\"quill", "street\"", ",", "\"quilter", "road\"", ",", "\"quinta", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"quorn", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"radley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"radnor", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"raglan", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rainton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ramsden", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"raphael", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ravensbourne\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rayners", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"raynes", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rays", "avenue\"", ",", "\"reading\"", ",", "\"reading", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rectory", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rectory", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rectory", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"red", "lion", "way\"", ",", "\"\"", ",", "\"redbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"redhill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"redruth", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"redway", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"reedham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"regent", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"reigate\"", ",", "\"\"", ",", "\"\"", ",", "\"reigate", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"renfrew", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"renwick", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"repton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"reverdy", "road\"", ",", "\"revesby", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ridding", "lane\"", ",", "\"riddlesdown\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ridge", "close\"", ",", "\"\"", ",", "\"ridge", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"richmond\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ringway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ripple", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"riverhill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"robins", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"robson", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"robyns", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"roden", "street\"", ",", "\"\"", ",", "\"roding", "hall\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"roding", "view\"", ",", "\"rodney", "place\"", ",", "\"roe", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"roebuck", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"roker", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"romford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"romney", "road\"", ",", "\"\"", ",", "\"ronan", "way\"", ",", "\"roneo", "corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rose", "bushes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rose", "&", "crown\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"roslin", "road\"", ",", "\"ross", "close\"", ",", "\"ross", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rotherhithe\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rounton", "road\"", ",", "\"roupell", "road\"", ",", "\"routh", "road\"", ",", "\"rowan", "avenue\"", ",", "\"\"", ",", "\"rowan", "drive\"", ",", "\"rowan", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rowden", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"roxeth", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"royal", "albert\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"royal", "oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"royston", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rudloe", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ruislip\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ruislip", "lido\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rumbold", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"runnymede\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rusham", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"rushett", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ruskin", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ruskin", "walk\"", ",", "\"\"", ",", "\"rusper", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"russell", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rycroft", "road\"", ",", "\"rydal", "avenue\"", ",", "\"rydal", "drive\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"rye", "crescent\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"salcott", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"salmon", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"salters", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"samos", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sandall", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sanders", "lane\"", ",", "\"sanderstead\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sandilands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sandown", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sans", "pariel\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"savay", "lane\"", ",", "\"\"", ",", "\"saville", "road\"", ",", "\"savoy", "circus\"", ",", "\"savoy", "pier\"", ",", "\"savoy", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sayes", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"scarlet", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"scots", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"scott", "close\"", ",", "\"scottes", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"scotts", "lodge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"scylla", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"seal", "road\"", ",", "\"sealand", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"seaton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sedge", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sefton", "close\"", ",", "\"sefton", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"selhurst\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"selwyn", "road\"", ",", "\"\"", ",", "\"senlac", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"settle", "road\"", ",", "\"seven", "kings\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"severn", "drive\"", ",", "\"\"", ",", "\"seward", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"seymour", "road\"", ",", "\"\"", ",", "\"shaa", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"shadwell\"", ",", "\"\"", ",", "\"shaef", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sheen", "court\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"shepperton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"shore", "close\"", ",", "\"\"", ",", "\"shoreditch\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"short", "lane\"", ",", "\"short", "way\"", ",", "\"\"", ",", "\"shortlands\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"shrubs", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"school", "way\"", ",", "\"\"", ",", "\"sidcup\"", ",", "\"\"", ",", "\"\"", ",", "\"sidcup", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"silver", "walk\"", ",", "\"silverdale\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"simmons", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"sipson", "close\"", ",", "\"sipson", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"skeet", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"skip", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"slade", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"slades", "drive\"", ",", "\"slades", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"slough\"", ",", "\"\"", ",", "\"slough", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"smith", "close\"", ",", "\"smitham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"smiths", "farm\"", "}", ";", "}", "</s>" ]
8,569
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London3", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"CRX:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"DGE:D\"", ",", "\"DGH:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"DEB:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"DHL:J\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EBY:CD\"", ",", "null", ",", "\"ECM:DP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ECT:DP\"", ",", "null", ",", "\"EAC:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EFY:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EHM:DH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EPY:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ETE:MP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EDG:N\"", ",", "null", ",", "null", ",", "\"ERB:B\"", ",", "\"ERD:DcH\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"ELE:BN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EPK:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EMB:BDcN\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EPP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"EUS:NV\"", ",", "null", ",", "\"ESQ:cHM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FLP:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FAR:cHM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "0", ",", "0", ",", "51.4486217149", ",", "0", ",", "0", ",", "0", ",", "51.5497318194", ",", "51.5961103347", ",", "51.5654477209", ",", "51.4708710897", ",", "51.4647097065", ",", "51.5764003118", ",", "51.5654477209", ",", "51.4588352401", ",", "51.4537695067", ",", "0", ",", "51.4811535198", ",", "51.3505471603", ",", "51.4869221017", ",", "51.4834753846", ",", "51.4843432948", ",", "51.4850831884", ",", "51.4834753846", ",", "51.4797569664", ",", "51.5699594503", ",", "51.5746197763", ",", "51.5625772991", ",", "0", ",", "51.3333465476", ",", "51.3760045465", ",", "51.5861534455", ",", "51.6246662058", ",", "51.3961411292", ",", "51.428071229", ",", "51.5470394805", ",", "51.5209094811", ",", "51.5747958722", ",", "0", ",", "51.5184521224", ",", "51.4244602776", ",", "51.5406671737", ",", "51.3695182148", ",", "51.5146930638", ",", "0", ",", "51.3972450772", ",", "51.3899238725", ",", "51.4480471763", ",", "51.4512202481", ",", "51.4501665079", ",", "51.4524912805", ",", "51.4504019104", ",", "0", ",", "51.4796563702", ",", "51.5218968512", ",", "51.481454747", ",", "51.5251759714", ",", "51.5170600661", ",", "51.4812154826", ",", "51.5285655313", ",", "51.3887819331", ",", "51.5335516659", ",", "51.431342451", ",", "51.643749796", ",", "51.5353276204", ",", "51.5986921842", ",", "51.4880863944", ",", "51.3608215702", ",", "51.6114085944", ",", "51.665414399", ",", "51.4337352416", ",", "51.5686819013", ",", "0", ",", "51.605088045", ",", "0", ",", "51.4908469939", ",", "51.4560028606", ",", "51.5545657714", ",", "51.3813026171", ",", "51.4559049664", ",", "0", ",", "51.5119813495", ",", "0", ",", "0", ",", "51.6838501021", ",", "51.4925492429", ",", "0", ",", "0", ",", "0", ",", "51.4255619788", ",", "51.5548677259", ",", "51.5592732382", ",", "51.5573318336", ",", "51.5614558378", ",", "51.562199665", ",", "51.5614558378", ",", "51.5614558378", ",", "51.5614558378", ",", "51.4402527001", ",", "51.3537975669", ",", "51.4813915017", ",", "51.4351335553", ",", "51.4141624932", ",", "51.3877782825", ",", "51.3877782825", ",", "51.3877782825", ",", "51.3877782825", ",", "51.3877782825", ",", "51.3877782825", ",", "51.3455682992", ",", "0", ",", "51.4392730139", ",", "51.3772041366", ",", "51.3737284034", ",", "51.4511445836", ",", "51.4553773186", ",", "51.3731462538", ",", "51.3733008553", ",", "51.3733008553", ",", "51.3813356288", ",", "51.3616381249", ",", "0", ",", "0", ",", "51.398664998", ",", "51.5695841166", ",", "51.4946253201", ",", "51.4124189825", ",", "51.402758476", ",", "51.6054152663", ",", "51.4599027475", ",", "51.6054152663", ",", "51.6054152663", ",", "51.5310457649", ",", "51.4589190473", ",", "51.5995332933", ",", "51.5995332933", ",", "0", ",", "51.5934231569", ",", "0", ",", "51.5325772964", ",", "51.5513092472", ",", "0", ",", "51.4432610692", ",", "51.4432610692", ",", "51.3780537281", ",", "51.6070200914", ",", "51.5904708815", ",", "51.5382662544", ",", "51.4261365042", ",", "51.5390679401", ",", "51.6123142329", ",", "0", ",", "51.4959261856", ",", "51.4949387058", ",", "0", ",", "0", ",", "0", ",", "51.5251110802", ",", "51.5120878476", ",", "51.3905732958", ",", "51.6000675822", ",", "51.6024497981", ",", "51.3509625456", ",", "51.3509625456", ",", "51.3509625456", ",", "51.3509625456", ",", "0", ",", "0", ",", "51.433329006", ",", "51.5794261082", ",", "51.5800531761", ",", "51.5760665311", ",", "51.3841820962", ",", "51.5712296301", ",", "51.5711108407", ",", "51.5688254403", ",", "51.5690201319", ",", "0", ",", "51.4226731419", ",", "51.5491050894", ",", "0", ",", "51.4984312492", ",", "51.4984312492", ",", "0", ",", "51.3628245814", ",", "51.3257395228", ",", "51.3888116663", ",", "51.3888116663", ",", "51.4227836858", ",", "51.4230396825", ",", "51.4230396825", ",", "51.367851041", ",", "51.4517970369", ",", "51.6489415098", ",", "51.4516388528", ",", "51.5456434183", ",", "0", ",", "51.5161232041", ",", "0", ",", "51.4088735624", ",", "51.4088735624", ",", "51.4481395888", ",", "51.4411961717", ",", "0", ",", "51.4965416146", ",", "51.3906435471", ",", "51.3627426191", ",", "51.3910438207", ",", "51.3708274879", ",", "0", ",", "0", ",", "51.3724845826", ",", "51.520211857", ",", "51.4077718205", ",", "51.4084785505", ",", "51.3676169869", ",", "51.3672596723", ",", "51.4065211207", ",", "51.3675084199", ",", "0", ",", "51.5023902906", ",", "51.53056796", ",", "51.4338975357", ",", "51.4171602078", ",", "51.4204207139", ",", "51.421322241", ",", "51.4263319974", ",", "51.4255063828", ",", "51.4255063828", ",", "51.4255063828", ",", "51.4255063828", ",", "51.4255063828", ",", "51.4255063828", ",", "51.4207863367", ",", "51.4946276459", ",", "51.5228297532", ",", "51.527676275", ",", "51.6373941833", ",", "51.5982477291", ",", "51.3452743073", ",", "0", ",", "51.3163379133", ",", "51.3393622972", ",", "0", ",", "0", ",", "51.5465009116", ",", "0", ",", "51.5553799736", ",", "51.6571825461", ",", "0", ",", "0", ",", "51.3895683403", ",", "51.3895683403", ",", "51.4561607721", ",", "51.531598677", ",", "51.5286656071", ",", "51.5286656071", ",", "51.3958926304", ",", "51.503331653", ",", "51.5312951319", ",", "0", ",", "51.616995987", ",", "51.5291267212", ",", "0", ",", "51.5885107819", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5065868065", ",", "51.5486057965", ",", "0", ",", "51.5251434527", ",", "51.5276165466", ",", "51.5450981147", ",", "51.5099409708", ",", "51.5099301613", ",", "51.5094743476", ",", "51.5883114602", ",", "51.4814516376", ",", "51.4815806464", ",", "0", ",", "0", ",", "0", ",", "51.4505172181", ",", "0", ",", "51.6800766803", ",", "51.4081349189", ",", "51.5091239279", ",", "51.5114303367", ",", "51.5510992501", ",", "51.4585946712", ",", "51.4317780144", ",", "51.4350857926", ",", "51.5302032898", ",", "51.525448662", ",", "51.525448662", ",", "51.5444167334", ",", "51.5418496887", ",", "51.5654704651", ",", "51.5654704651", ",", "51.5300822628", ",", "51.540098792", ",", "51.5169817828", ",", "51.5574557022", ",", "51.6050753232", ",", "51.4216228392", ",", "0", ",", "0", ",", "0", ",", "51.4076439995", ",", "0", ",", "51.4560288392", ",", "51.410644153", ",", "51.4817817659", ",", "51.6254848303", ",", "51.466741463", ",", "51.5222232352", ",", "0", ",", "51.492983412", ",", "0", ",", "0", ",", "0", ",", "51.6420475842", ",", "51.5575913985", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4572271437", ",", "51.546318052", ",", "51.546318052", ",", "51.5485836992", ",", "51.5494652525", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6200457484", ",", "51.5578469743", ",", "0", ",", "51.5114011233", ",", "51.4521701763", ",", "0", ",", "51.5560192682", ",", "0", ",", "51.6169654788", ",", "0", ",", "51.4536377126", ",", "51.4593719943", ",", "51.4498309677", ",", "0", ",", "51.4087888245", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4167340462", ",", "51.3860244104", ",", "51.4544111451", ",", "51.5215272488", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6053981324", ",", "0", ",", "0", ",", "0", ",", "51.4354236889", ",", "51.4354236889", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4707278888", ",", "51.470863918", ",", "51.5579602262", ",", "51.5650965809", ",", "51.5616630599", ",", "51.557352079", ",", "51.557352079", ",", "51.557352079", ",", "0", ",", "0", ",", "51.6213672049", ",", "51.4619577077", ",", "51.4950187225", ",", "0", ",", "51.5545061278", ",", "51.3677392121", ",", "0", ",", "51.4338449217", ",", "51.5990150494", ",", "51.3854208034", ",", "51.3807326439", ",", "51.5154105455", ",", "51.4969690729", ",", "51.5349532721", ",", "0", ",", "0", ",", "51.6147142846", ",", "51.4071887711", ",", "51.5542610228", ",", "51.4515023233", ",", "51.4414013743", ",", "51.5431163612", ",", "0", ",", "0", ",", "51.5664045435", ",", "0", ",", "0", ",", "0", ",", "51.512356378", ",", "0", ",", "51.6093975661", ",", "51.6135348607", ",", "51.6090388154", ",", "51.6102065006", ",", "51.6074563551", ",", "51.5691343456", ",", "0", ",", "51.6248300586", ",", "51.6506724572", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4630444966", ",", "51.4631265819", ",", "51.5453320661", ",", "51.4232280795", ",", "51.6432153524", ",", "0", ",", "0", ",", "0", ",", "51.5134569764", ",", "51.5927698813", ",", "0", ",", "51.3786960882", ",", "51.3983256271", ",", "51.3996965446", ",", "51.5428456532", ",", "51.4759589042", ",", "51.5192574401", ",", "0", ",", "51.4716246896", ",", "51.6309667027", ",", "51.6120414083", ",", "0", ",", "0", ",", "0", ",", "51.4546414062", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4679358465", ",", "51.4732662003", ",", "51.4045518279", ",", "51.5197951542", ",", "51.5144019806", ",", "51.5497628526", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4625880883", ",", "0", ",", "51.4749039304", ",", "51.4852077462", ",", "51.4815012506", ",", "51.4815012506", ",", "51.4881212814", ",", "0", ",", "51.5407549712", ",", "0", ",", "0", ",", "51.4989170997", ",", "51.444182642", ",", "51.3819827687", ",", "51.5552827221", ",", "51.5604682925", ",", "51.6129513359", ",", "51.6239581962", ",", "0", ",", "51.4054461947", ",", "51.5089598269", ",", "51.4964897872", ",", "51.4479940287", ",", "51.318855664", ",", "51.3506776873", ",", "0", ",", "51.5226037792", ",", "51.5182031525", ",", "51.3530302361", ",", "51.5579601235", ",", "51.3758595658", ",", "0", ",", "51.6031238464", ",", "51.560746629", ",", "51.3847906218", ",", "51.5311340715", ",", "51.5748830938", ",", "51.4287821493", ",", "51.4088572596", ",", "51.4616981084", ",", "0", ",", "0", ",", "51.4455447273", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6442877093", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.383748652", ",", "51.383748652", ",", "0", ",", "0", ",", "51.4999078826", ",", "51.5002183677", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4447246985", ",", "51.4822964279", ",", "0", ",", "0", ",", "0", ",", "51.5527901538", ",", "51.5527901538", ",", "51.5527901538", ",", "51.6007174937", ",", "51.6046906237", ",", "51.6451507446", ",", "51.6456816783", ",", "51.4931026943", ",", "0", ",", "51.429430398", ",", "51.426321549", ",", "0", ",", "51.5263256091", ",", "51.5189359666", ",", "51.4665599916", ",", "51.3870432911", ",", "0", ",", "51.488100781", ",", "51.5082321936", ",", "51.3803720778", ",", "51.3805665524", ",", "51.3855777847", ",", "0", ",", "0", ",", "0", ",", "51.3778142037", ",", "0", ",", "0", ",", "51.6091895613", ",", "0", ",", "0", ",", "51.6104793147", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5181526953", ",", "51.5109225404", ",", "51.3943230167", ",", "0", ",", "51.4071530977", ",", "51.4781969826", ",", "51.5233581341", ",", "51.5233581341", ",", "51.5188255293", ",", "51.5600129706", ",", "51.3784319927", ",", "51.4685215359", ",", "51.5164482398", ",", "51.3378967255", ",", "0", ",", "51.4686258833", ",", "51.5820918658", ",", "51.6012365098", ",", "51.4647715347", ",", "51.4516255095", ",", "0", ",", "51.5620144497", ",", "0", ",", "51.522312816", ",", "0", ",", "51.4399033968", ",", "51.5387040841", ",", "51.3317887122", ",", "51.5924181093", ",", "51.4299055131", ",", "51.3449700087", ",", "51.3309689964", ",", "51.3377946919", ",", "51.3358263575", ",", "51.3337351399", ",", "51.4076420877", ",", "51.3358356316", ",", "51.6312768149", ",", "0", ",", "51.5393632239", ",", "51.4291349795", ",", "51.4262880601", ",", "51.4246540724", ",", "51.5907527023", ",", "51.6155555542", ",", "0", ",", "51.4097738631", ",", "51.3320511699", ",", "51.4113397741", ",", "51.4111864621", ",", "51.5520514255", ",", "51.3150730422", ",", "51.3412943686", ",", "51.3434354247", ",", "51.5500344631", ",", "51.3570806772", ",", "0", ",", "51.3612364659", ",", "0", ",", "51.4399563135", ",", "51.5002964915", ",", "0", ",", "51.5362191936", ",", "51.3975391519", ",", "0", ",", "0", ",", "51.3844952637", ",", "51.4669035091", ",", "51.660364071", ",", "51.5775111074", ",", "51.4916636879", ",", "51.5161606241", ",", "51.5167006073", ",", "51.51147933", ",", "51.5533158015", ",", "51.5669327888", ",", "51.4948942803", ",", "0", ",", "0", ",", "0", ",", "51.4326513166", ",", "0", ",", "0", ",", "0", ",", "51.5015415115", ",", "0", ",", "0", ",", "0", ",", "51.4984652914", ",", "51.5259062679", ",", "0", ",", "51.5163707316", ",", "51.5752181591", ",", "51.5526224181", ",", "51.6115657624", ",", "0", ",", "51.6406004084", ",", "51.4416359519", ",", "0", ",", "0", ",", "51.6471972116", ",", "51.6481252514", ",", "51.5589275154", ",", "0", ",", "51.4290855533", ",", "51.5707249788", ",", "0", ",", "51.5702422242", ",", "51.5540485585", ",", "51.4717529697", ",", "51.4717529697", ",", "51.5230465807", ",", "0", ",", "0", ",", "51.4910001177", ",", "0", ",", "51.4026176346", ",", "51.4662825687", ",", "51.4591976261", ",", "51.5142091107", ",", "51.4828692015", ",", "0", ",", "51.5714665494", ",", "51.6022857123", ",", "51.4421301453", ",", "51.4485320518", ",", "51.4424338914", ",", "51.4462670624", ",", "51.4524177051", ",", "51.4518646968", ",", "51.4533272779", ",", "51.4263919541", ",", "51.4266381292", ",", "51.4271778879", ",", "51.4492606793", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.407740762", ",", "0", ",", "0", ",", "51.4469555345", ",", "0", ",", "51.4488453711", ",", "51.475498149", ",", "51.4703749041", ",", "0", ",", "51.5032149861", ",", "51.4174373151", ",", "51.4174373151", ",", "51.5236523372", ",", "0", ",", "0", ",", "51.4267836423", ",", "51.3912780172", ",", "51.6246506241", ",", "0", ",", "51.4290012498", ",", "51.4287826203", ",", "51.3510484871", ",", "0", ",", "0", ",", "51.4922102054", ",", "51.4342223937", ",", "0", ",", "51.5700362101", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5678370553", ",", "51.5688001823", ",", "51.4511091592", ",", "51.453927269", ",", "51.6047121862", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4887960204", ",", "51.4891906966", ",", "51.3683057899", ",", "51.3788709429", ",", "51.6542984722", ",", "51.3974283851", ",", "51.5822344277", ",", "0", ",", "51.5841048218", ",", "51.5620895992", ",", "51.4095846065", ",", "51.545585584", ",", "51.4095846065", ",", "51.4863666229", ",", "51.5791552128", ",", "51.4218907572", ",", "51.3584215267", ",", "51.6626644483", ",", "0", ",", "51.6627982787", ",", "0", ",", "0", ",", "51.3775144304", ",", "51.4316457992", ",", "51.4963844446", ",", "51.5832829028", ",", "51.5467813202", ",", "0", ",", "51.5345133823", ",", "0", ",", "51.4740095229", ",", "51.5155274704", ",", "51.5148105666", ",", "51.5126270566", ",", "51.5102858677", ",", "51.5087640997", ",", "51.5082688018", ",", "51.494117122", ",", "51.5122864847", ",", "51.4912599338", ",", "51.5522123869", ",", "51.550535252", ",", "51.5500135338", ",", "51.5127781902", ",", "51.5334755749", ",", "0", ",", "51.4211482955", ",", "0", ",", "0", ",", "51.4902010537", ",", "51.4948579237", ",", "51.4891194832", ",", "51.4408863389", ",", "51.4432786941", ",", "51.4266918293", ",", "0", ",", "0", ",", "51.4908450466", ",", "51.4586676285", ",", "51.515779775", ",", "51.520059133", ",", "51.5066038667", ",", "51.5133423368", ",", "51.5156224556", ",", "51.5156224556", ",", "51.6426697306", ",", "51.6430984719", ",", "51.5354987922", ",", "0", ",", "51.3750050272", ",", "51.3748267524", ",", "0", ",", "51.4614669056", ",", "51.4584843247", ",", "51.4556943987", ",", "51.4519826986", ",", "51.4519826986", ",", "51.4623839134", ",", "51.5936603686", ",", "51.5916480776", ",", "51.5970017979", ",", "0", ",", "51.4978206946", ",", "51.4978206946", ",", "51.5867941332", ",", "51.5927951363", ",", "51.5940324236", ",", "0", ",", "51.4863120589", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5089686169", ",", "51.5397114578", ",", "51.5236253375", ",", "51.5130652135", ",", "51.508985372", ",", "51.5282232729", ",", "51.3049951318", ",", "51.4577558262", ",", "51.5137786254", ",", "51.5137786254", ",", "51.5137786254", ",", "51.5137786254", ",", "0", ",", "51.5627376933", ",", "51.4066099948", ",", "51.5251269539", ",", "51.5213353697", ",", "0", ",", "0", ",", "0", ",", "51.4601567769", ",", "51.4671451009", ",", "51.5810997958", ",", "51.4644731776", ",", "51.4897471633", ",", "51.4894224394", ",", "51.487863947", ",", "0", ",", "51.5576968348", ",", "51.6129849239", ",", "51.5106514202", ",", "0", ",", "0", ",", "51.4216550147", ",", "0", ",", "51.4709089419", ",", "51.5523504546", ",", "51.5554856752", ",", "51.6620894848", ",", "51.4833059891", ",", "51.5761550902", ",", "51.5871605065", ",", "51.5483527069", ",", "51.5654406573", ",", "51.5589550736", ",", "51.5854048153", ",", "51.5884915204", ",", "51.5862034543", ",", "51.5899552887", ",", "0", ",", "51.5736037598", ",", "51.5824917194", ",", "51.4980922444", ",", "51.5492602913", ",", "51.4083647778", ",", "51.5091112887", ",", "0", ",", "51.5862044454", ",", "51.4094597423", ",", "0", ",", "51.5261464157", ",", "51.5299431681", ",", "0", ",", "51.4776795111", ",", "51.3835121882", ",", "51.5121791736", ",", "51.5164033417", ",", "51.5221698213", ",", "51.4631539527", ",", "51.4386372171", ",", "0", ",", "0", ",", "51.4108803721", ",", "51.4899643817", ",", "51.4903453911", ",", "0", ",", "51.4610056504", ",", "0", ",", "51.539751541", ",", "51.4935162306", ",", "51.5702752111", ",", "0", ",", "0", ",", "51.389901082", ",", "51.3995141005", ",", "51.3910565191", ",", "51.409967221", ",", "51.3858309295", ",", "0", ",", "0", ",", "51.5225590961", ",", "51.4823460916", ",", "51.4039395227", ",", "51.4062927913", ",", "0", ",", "51.4198315646", ",", "51.4246326893", ",", "51.4259150364", ",", "51.3495891437", ",", "51.3449736544", ",", "51.5215073024", ",", "51.5854597071", ",", "51.6132716515", ",", "51.6053772489", ",", "51.6101112171", ",", "51.5204808537", ",", "51.5197591304", ",", "51.5932191308", ",", "51.5190200585", ",", "51.5840838226", ",", "51.5201605417", ",", "51.614546289", ",", "51.6231828936", ",", "51.6218872183", ",", "51.6174693797", ",", "51.6132716515", ",", "51.5622412075", ",", "51.506382792", ",", "51.5622412075", ",", "0", ",", "0", ",", "51.5776862203", ",", "51.3895035951", ",", "51.4839918992", ",", "51.4823616168", ",", "51.4819806853", ",", "51.5519958833", ",", "51.6302588735", ",", "51.6273999698", ",", "51.6249234837", ",", "51.6256270514", ",", "51.6221880594", ",", "51.6226936868", ",", "51.3852867067", ",", "51.5242586377", ",", "51.6340354019", ",", "51.4786673771", ",", "51.4344671423", ",", "51.6102631263", ",", "0", ",", "51.4580430204", ",", "51.4731587996", ",", "51.5778589632", ",", "51.5745702541", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4792699321", ",", "51.3515477954", ",", "0", ",", "0", ",", "0", ",", "51.389923482", ",", "51.5184480305", ",", "51.3739510159", ",", "0", ",", "51.374711792", ",", "51.4616514277", ",", "51.4941534208", ",", "0", ",", "51.4962663641", ",", "51.494959994", ",", "51.4987455696", ",", "51.6118991813", ",", "51.524968421", ",", "51.524968421", ",", "51.5310598694", ",", "51.5262188339", ",", "51.5142122996", ",", "51.5144988619", ",", "0", ",", "51.3583759704", ",", "51.613310708", ",", "51.467976602", ",", "51.5393876429", ",", "51.5389608868", ",", "51.5809746258", ",", "51.4198469917", ",", "51.4468981476", ",", "51.6317462404", ",", "51.5086381336", ",", "51.414292731", ",", "0", ",", "51.3603171737", ",", "51.5459197229", ",", "51.5462377976", ",", "51.4841972917", ",", "51.3875167562", ",", "51.4130455046", ",", "51.5798088734", ",", "51.4388405262", ",", "51.5499066051", ",", "51.4019240086", ",", "51.4830026111", ",", "51.4148163493", ",", "51.4078906052", ",", "51.4078906052", ",", "0", ",", "51.5356436245", ",", "51.3882783862", ",", "51.4594936454", ",", "51.4393577375", ",", "51.5818950465", ",", "51.5934197992", ",", "51.3734383792", ",", "51.4823355712", ",", "51.3992657974", ",", "51.3987084657", ",", "51.3970907786", ",", "51.3983779259", ",", "51.3970907786", ",", "51.3986942663", ",", "51.4027187", ",", "51.3504943402", ",", "51.5964023833", ",", "51.4346348849", ",", "51.3640379212", ",", "0", ",", "51.459096176", ",", "0", ",", "51.427509692", ",", "51.4169216029", ",", "0", ",", "51.4551045822", ",", "0", ",", "0", ",", "51.4614545633", ",", "51.4673175418", ",", "51.4902663546", ",", "0", ",", "0", ",", "0", ",", "51.5432594393", ",", "51.4552562276", ",", "51.4553148948", ",", "51.4574991492", ",", "51.4372831998", ",", "51.4416885425", ",", "51.4511537944", ",", "51.4507848809", ",", "51.4508286169", ",", "51.450834436", ",", "51.4552562276", ",", "51.4508114402", ",", "51.4508510764", ",", "51.4506128086", ",", "51.4552562276", ",", "51.4552562276", ",", "51.4528410135", ",", "51.4502795801", ",", "51.4511113534", ",", "51.4516145947", ",", "51.4563893042", ",", "51.4591098042", ",", "51.4515178179", ",", "51.4552562276", ",", "51.4539686715", ",", "51.4552562276", ",", "51.4507887831", ",", "51.5024730513", ",", "51.5644936503", ",", "51.6467643387", ",", "0", ",", "51.4684413371", ",", "51.3969994048", ",", "0", ",", "51.5078574084", ",", "51.5078574084", ",", "51.5690248346", ",", "51.5690386149", ",", "51.6082029796", ",", "51.5688213389", ",", "51.5771909335", ",", "51.6093227041", ",", "51.5619739065", ",", "51.5607605312", ",", "51.5607605312", ",", "51.486524596", ",", "0", ",", "51.4396689671", ",", "51.6269998254", ",", "51.6269998254", ",", "51.4656171731", ",", "51.575318446", ",", "51.6487992943", ",", "51.6534053123", ",", "51.6525608107", ",", "51.6688844546", ",", "51.6535876482", ",", "51.6661325124", ",", "51.6709944754", ",", "51.6557205045", ",", "51.6533404148", ",", "51.6521472345", ",", "51.6506101305", ",", "51.6516761555", ",", "51.6522902639", ",", "51.6539519739", ",", "51.5986501733", ",", "51.6527245123", ",", "51.6438245685", ",", "51.6143900855", ",", "51.5467562107", ",", "51.5429954102", ",", "51.5429954102", ",", "51.5429954102", ",", "51.5429954102", ",", "51.5429954102", ",", "51.5429954102", ",", "51.5429954102", ",", "51.4559369147", ",", "0", ",", "0", ",", "51.4688483858", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3695502908", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5229184223", ",", "0", ",", "51.5481887752", ",", "51.5212694944", ",", "0", ",", "0", ",", "51.4850857686", ",", "51.4794883977", ",", "51.4831235855", ",", "51.4768754891", ",", "51.4587070311", ",", "51.4841675203", ",", "51.4704470505", ",", "51.4704470505", ",", "51.4749063467", ",", "51.4826390327", ",", "51.4808380949", ",", "51.4808380949", ",", "51.5773206464", ",", "0", ",", "51.4303936275", ",", "51.5218755339", ",", "51.5863593402", ",", "51.3715690595", ",", "51.4852167173", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4899667144", ",", "51.49542965", ",", "51.5782266835", ",", "51.5067564236", ",", "51.6070353323", ",", "51.5408011764", ",", "51.5783787347", ",", "51.5455887493", ",", "51.5399959635", ",", "51.5465083686", ",", "0", ",", "0", ",", "0", ",", "51.4000500749", ",", "51.5540520257", ",", "51.4253291528", ",", "51.5734798149", ",", "51.4500101313", ",", "0", ",", "0", ",", "51.5899310038", ",", "51.5536300875", ",", "51.5438441613", ",", "51.3608996495", ",", "51.4612894156", ",", "51.5142133456", ",", "51.4813046867", ",", "51.5272981786", ",", "51.5274247544", ",", "51.5259206036", ",", "51.5288379779", ",", "0", ",", "51.5762770501", ",", "51.4109253475", ",", "51.4662606046", ",", "51.4870160394", ",", "51.4847672297", ",", "0", ",", "51.5975582251", ",", "51.6090959039", ",", "51.4642208582", ",", "51.4776845742", ",", "51.6411981009", ",", "51.4636226578", ",", "51.6413975873", ",", "51.6434843532", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4431775871", ",", "51.4508886108", ",", "0", ",", "51.4525505822", ",", "51.6280988357", ",", "0", ",", "0", ",", "51.4766374776", ",", "51.4394292783", ",", "0", ",", "51.5017652338", ",", "51.5135299048", ",", "0", ",", "51.5198807223", ",", "0", ",", "0", ",", "51.4256977702", ",", "51.4393957467", ",", "0", ",", "51.4895689438", ",", "51.4895689438", ",", "51.3779869596", ",", "51.502808863", ",", "51.4576711295", ",", "51.4692753302", ",", "51.4615170807", ",", "0", ",", "51.5682300302", ",", "51.5085252288", ",", "51.5014240502", ",", "51.5446501719", ",", "51.4188790497", ",", "51.5414845034", ",", "51.4104426742", ",", "51.3730689109", ",", "0", ",", "51.581167082", ",", "51.3715678876", ",", "51.6459162732", ",", "51.5873244542", ",", "51.4690186809", ",", "51.390788362", ",", "51.6033089072", ",", "51.3912987796", ",", "51.5454946789", ",", "51.5778248677", ",", "51.5300220236", ",", "51.4512515188", ",", "51.5687762627", ",", "51.5890937423", ",", "0", ",", "51.4470449713", ",", "51.5241884464", ",", "0", ",", "51.5366856566", ",", "51.4300518558", ",", "51.5956365141", ",", "0", ",", "0", ",", "51.361631171", ",", "51.363348771", ",", "0", ",", "51.3870591333", ",", "51.5227388722", ",", "51.4680542396", ",", "51.4643436028", ",", "51.643104907", ",", "51.465815313", ",", "51.4588160487", ",", "51.4567477229", ",", "0", ",", "0", ",", "51.5307144314", ",", "51.5307841995", ",", "51.5296632614", ",", "51.5864784937", ",", "51.515732405", ",", "0", ",", "0", ",", "0", ",", "51.5853774056", ",", "0", ",", "51.5416493874", ",", "51.4602874102", ",", "51.4602874102", ",", "51.51485509", ",", "0", ",", "51.5962686417", ",", "0", ",", "51.342570675", ",", "51.3533486552", ",", "51.5497839655", ",", "51.5608535484", ",", "51.5366971815", ",", "0", ",", "0", ",", "51.342192762", ",", "51.342192762", ",", "51.39244448", ",", "51.6176531732", ",", "51.4407205051", ",", "51.4265889844", ",", "51.3613728887", ",", "51.3495232676", ",", "51.3605057946", ",", "51.3613728887", ",", "51.3556690581", ",", "51.3576675224", ",", "51.3613728887", ",", "0", ",", "51.3685010922", ",", "51.3678321188", ",", "51.3619304245", ",", "0", ",", "0", ",", "51.5325147578", ",", "51.4679692176", ",", "51.4073291529", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5719017071", ",", "51.5203732993", ",", "51.307832386", ",", "51.3431237338", ",", "51.4108585097", ",", "0", ",", "0", ",", "51.4610581453", ",", "51.516774949", ",", "51.542968763", ",", "0", ",", "0", ",", "0", ",", "51.3511804249", ",", "0", ",", "51.5023361022", ",", "51.524882285", ",", "0", ",", "51.4934321148", ",", "51.4050734904", ",", "51.6003405076", ",", "51.5725216467", ",", "51.6003405076", ",", "51.448025747", ",", "51.4421523214", ",", "51.4510349168", ",", "51.4432564003", ",", "51.4466723844", ",", "51.448025747", ",", "51.4465297046", ",", "51.4429849896", ",", "51.4446161411", ",", "51.4421398938", ",", "51.4371304658", ",", "51.4461385479", ",", "51.5411259172", ",", "51.5949138087", ",", "51.4956862326", ",", "51.5122537461", ",", "51.5116869737", ",", "0", ",", "0", ",", "51.5483751541", ",", "0", ",", "51.4798238476", ",", "0", ",", "51.4654864174", ",", "51.5441160856", ",", "51.4500943729", ",", "51.4898907648", ",", "51.5721538786", ",", "51.5341343849", ",", "0", ",", "51.510654075", ",", "51.5325126416", ",", "0", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0", ",", "0", ",", "-", "0.11309296025", ",", "0", ",", "0", ",", "0", ",", "0.0481412913", ",", "-", "0.4131098353", ",", "0.0649411286", ",", "-", "0.02178390495", ",", "-", "0.3816450461", ",", "0.0680499627", ",", "0.0649411286", ",", "-", "0.3308156883", ",", "-", "0.3969722186", ",", "0", ",", "-", "0.4202864622", ",", "-", "0.1633185634", ",", "-", "0.4053305235", ",", "-", "0.38118955655", ",", "-", "0.3926379376", ",", "-", "0.40434325785", ",", "-", "0.38118955655", ",", "-", "0.410106125475", ",", "0.2769639917", ",", "0.20387914725", ",", "0.2708668206", ",", "0", ",", "-", "0.0766788538", ",", "-", "0.1929923006", ",", "-", "0.146984147233", ",", "-", "0.11043475855", ",", "-", "0.15986825725", ",", "-", "0.1768983925", ",", "0.2471587698", ",", "-", "0.01789327785", ",", "-", "0.08235560605", ",", "0", ",", "-", "0.4088129281", ",", "-", "0.1948859624", ",", "-", "0.25508417865", ",", "0.1181807343", ",", "-", "0.1771167403", ",", "0", ",", "0.1096712881", ",", "0.1009543338", ",", "0.18093089485", ",", "0.1795636301", ",", "0.1786786282", ",", "0.1777097919", ",", "0.18076966425", ",", "0", ",", "-", "0.02306715385", ",", "0.0987639874", ",", "-", "0.01400932385", ",", "0.1004573852", ",", "0.09943526145", ",", "-", "0.01873656215", ",", "0.0414287872", ",", "0.0675837723", ",", "-", "0.4525940487", ",", "0.1019335377", ",", "-", "0.16608349245", ",", "0.02225751135", ",", "-", "0.12340421405", ",", "0.0732984493", ",", "0.0891499943", ",", "-", "0.1655459031", ",", "-", "0.1786064347", ",", "-", "0.0673668328333", ",", "-", "0.13090306355", ",", "0", ",", "-", "0.2564782332", ",", "0", ",", "-", "0.1839527678", ",", "-", "0.30950062515", ",", "-", "0.1615013323", ",", "0.00481067185", ",", "-", "0.2372241206", ",", "0", ",", "-", "0.2706068659", ",", "0", ",", "0", ",", "-", "0.1067488097", ",", "-", "0.02475668635", ",", "0", ",", "0", ",", "0", ",", "-", "0.05711482695", ",", "-", "0.0569319598", ",", "-", "0.2121086269", ",", "-", "0.2145362485", ",", "-", "0.20340254375", ",", "-", "0.221333427167", ",", "-", "0.20340254375", ",", "-", "0.20340254375", ",", "-", "0.20340254375", ",", "-", "0.13182770055", ",", "-", "0.1687395718", ",", "-", "0.1381113105", ",", "-", "0.3842876091", ",", "0.11334812795", ",", "0.1224449467", ",", "0.1224449467", ",", "0.1224449467", ",", "0.1224449467", ",", "0.1224449467", ",", "0.1224449467", ",", "-", "0.0371225692", ",", "0", ",", "0.1237094502", ",", "0.07769576735", ",", "0.07616612775", ",", "-", "0.0300349163", ",", "-", "0.0368267385", ",", "0.08211002315", ",", "0.0741567029", ",", "0.0741567029", ",", "0.0797727366", ",", "-", "0.0959062009", ",", "0", ",", "0", ",", "0.01914145485", ",", "-", "0.14042611025", ",", "-", "0.190148641", ",", "-", "0.298935088494", ",", "-", "0.0370467957", ",", "-", "0.1492374498", ",", "-", "0.36960795365", ",", "-", "0.1492374498", ",", "-", "0.1492374498", ",", "-", "0.08096529585", ",", "0.1288898403", ",", "-", "0.0159944633", ",", "-", "0.0159944633", ",", "0", ",", "-", "0.20801743685", ",", "0", ",", "-", "0.0899485817", ",", "0.1510957053", ",", "0", ",", "0.14029294915", ",", "0.14029294915", ",", "-", "0.0908636787", ",", "0.0617218885", ",", "0.1593414524", ",", "-", "0.0994225357", ",", "-", "0.35648308085", ",", "-", "0.10061488945", ",", "0.10793791315", ",", "0", ",", "-", "0.01411502785", ",", "-", "0.0130678311", ",", "0", ",", "0", ",", "0", ",", "0.1035756037", ",", "-", "0.0754136589", ",", "0.0799329612", ",", "-", "0.4005683767", ",", "-", "0.3975460739", ",", "-", "0.1789773892", ",", "-", "0.1789773892", ",", "-", "0.1789773892", ",", "-", "0.1789773892", ",", "0", ",", "0", ",", "0.0630197153", ",", "-", "0.123543779733", ",", "-", "0.1230175844", ",", "-", "0.1358101523", ",", "0.145338974", ",", "-", "0.1172985328", ",", "-", "0.1171807673", ",", "0.2639988998", ",", "0.1752879033", ",", "0", ",", "-", "0.158342307", ",", "-", "0.0287406994", ",", "0", ",", "-", "0.4251998898", ",", "-", "0.4251998898", ",", "0", ",", "-", "0.11114156885", ",", "0.0222661811", ",", "0.0368829981", ",", "0.0368829981", ",", "-", "0.1077063221", ",", "-", "0.1057395101", ",", "-", "0.1057395101", ",", "-", "0.1969839975", ",", "-", "0.3165645343", ",", "-", "0.05480492805", ",", "-", "0.3176569957", ",", "-", "0.4824222357", ",", "0", ",", "-", "0.2175032097", ",", "0", ",", "0.10715804315", ",", "0.10715804315", ",", "-", "0.0980084534", ",", "-", "0.0929727487", ",", "0", ",", "-", "0.42745483905", ",", "-", "0.0653504295", ",", "-", "0.1032871896", ",", "-", "0.11948066595", ",", "-", "0.1002447307", ",", "0", ",", "0", ",", "-", "0.0992829008", ",", "0.0185245293", ",", "-", "0.05916328", ",", "-", "0.0600248846", ",", "-", "0.13155333755", ",", "0.0395898579", ",", "-", "0.03270134245", ",", "-", "0.153344713375", ",", "0", ",", "-", "0.0823496616", ",", "-", "0.11108296325", ",", "0.00645103515", ",", "-", "0.07331328595", ",", "-", "0.0780017557", ",", "-", "0.07772659715", ",", "-", "0.07079125985", ",", "-", "0.0749976657", ",", "-", "0.0749976657", ",", "-", "0.0749976657", ",", "-", "0.0749976657", ",", "-", "0.0749976657", ",", "-", "0.0749976657", ",", "-", "0.0932256472", ",", "-", "0.0086032449", ",", "-", "0.3354750157", ",", "-", "0.337979749", ",", "-", "0.05015426285", ",", "-", "0.3963656225", ",", "-", "0.2142976524", ",", "0", ",", "0.0741403501", ",", "0.0801333262", ",", "0", ",", "0", ",", "-", "0.0813029407", ",", "0", ",", "-", "0.23381318485", ",", "-", "0.09895438165", ",", "0", ",", "0", ",", "0.0076371234", ",", "0.0076371234", ",", "0.0955595576", ",", "-", "0.27182428845", ",", "-", "0.2369810838", ",", "-", "0.2369810838", ",", "0.0096103966", ",", "-", "0.33246815065", ",", "-", "0.14509415405", ",", "0", ",", "0.2195835209", ",", "-", "0.2594253706", ",", "0", ",", "-", "0.3437289241", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1244464632", ",", "-", "0.3439815645", ",", "0", ",", "-", "0.0802307974", ",", "0.0957398871", ",", "-", "0.25250612015", ",", "0.0279604707", ",", "0.02520374935", ",", "0.0271218862", ",", "-", "0.00413310825", ",", "-", "0.01143858535", ",", "-", "0.0105616096", ",", "0", ",", "0", ",", "0", ",", "-", "0.3994968428", ",", "0", ",", "-", "0.1038974194", ",", "-", "0.08065960745", ",", "0.06485725595", ",", "0.06198686698", ",", "-", "0.37211162615", ",", "0.0057922867", ",", "-", "0.04614000715", ",", "-", "0.1607925586", ",", "0.1436842519", ",", "0.1479589402", ",", "0.1479589402", ",", "0.165962659167", ",", "0.14789197746", ",", "0.17635938905", ",", "0.17635938905", ",", "0.159837922775", ",", "0.1721895935", ",", "0.1716322257", ",", "-", "0.2913943013", ",", "0.2434816169", ",", "-", "0.14477768435", ",", "0", ",", "0", ",", "0", ",", "-", "0.1007536382", ",", "0", ",", "-", "0.1109521832", ",", "-", "0.0944458042", ",", "-", "0.1007711982", ",", "-", "0.003701044", ",", "0.18614192805", ",", "-", "0.22214451805", ",", "0", ",", "-", "0.2352321698", ",", "0", ",", "0", ",", "0", ",", "-", "0.1719696074", ",", "-", "0.13018209285", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0353222593", ",", "-", "0.0745342236", ",", "-", "0.0745342236", ",", "-", "0.07532320495", ",", "-", "0.055979425", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1826036511", ",", "0.0174929403", ",", "0", ",", "-", "0.315801972733", ",", "-", "0.2481339707", ",", "0", ",", "-", "0.36153511285", ",", "0", ",", "-", "0.0511312468", ",", "0", ",", "0.122821629", ",", "0.123999497067", ",", "0.1197376345", ",", "0", ",", "-", "0.13281582695", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.21682080445", ",", "-", "0.04442479345", ",", "-", "0.16421882215", ",", "-", "0.0558722673", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.22131402385", ",", "0", ",", "0", ",", "0", ",", "0.1662214818", ",", "0.1662214818", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0069588526", ",", "-", "0.0052634051", ",", "-", "0.1395226109", ",", "-", "0.14126574255", ",", "-", "0.1410883657", ",", "-", "0.1471212837", ",", "-", "0.1471212837", ",", "-", "0.1471212837", ",", "0", ",", "0", ",", "-", "0.14490446005", ",", "0.09676814065", ",", "-", "0.305543515", ",", "0", ",", "-", "0.0373717445", ",", "-", "0.1061264508", ",", "0", ",", "0.1267237047", ",", "0.2436593783", ",", "-", "0.08518898225", ",", "-", "0.0885965647", ",", "-", "0.4380901261", ",", "-", "0.430163015", ",", "-", "0.32421851725", ",", "0", ",", "0", ",", "-", "0.2416938271", ",", "-", "0.2941765672", ",", "-", "0.2219484891", ",", "0.123291091775", ",", "0.0865805635", ",", "-", "0.0794550997", ",", "0", ",", "0", ",", "0.06243765445", ",", "0", ",", "0", ",", "0", ",", "-", "0.130932663", ",", "0", ",", "-", "0.2648126184", ",", "-", "0.2651675839", ",", "-", "0.2670071247", ",", "-", "0.2656988944", ",", "-", "0.2752632512", ",", "-", "0.2630418321", ",", "0", ",", "-", "0.08117821325", ",", "-", "0.05669685435", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1048731294", ",", "-", "0.098306681", ",", "-", "0.21429938815", ",", "-", "0.1219138704", ",", "-", "0.0082773809", ",", "0", ",", "0", ",", "0", ",", "-", "0.3923410788", ",", "0.1746106553", ",", "0", ",", "-", "0.1002278696", ",", "-", "0.0067297033", ",", "-", "0.00669884265", ",", "-", "0.2543302304", ",", "-", "0.3602512863", ",", "-", "0.37507072375", ",", "0", ",", "-", "0.37836935925", ",", "-", "0.15373894095", ",", "-", "0.42688918655", ",", "0", ",", "0", ",", "0", ",", "-", "0.4035339077", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0891557885", ",", "-", "0.09316755892", ",", "-", "0.3017728024", ",", "0.0241783324", ",", "-", "0.1300706255", ",", "-", "0.19153087635", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2082603146", ",", "0", ",", "-", "0.02298034088", ",", "-", "0.03392515165", ",", "-", "0.0260815317333", ",", "-", "0.0260815317333", ",", "-", "0.037941151475", ",", "0", ",", "0.03861413855", ",", "0", ",", "0", ",", "-", "0.3917578254", ",", "-", "0.1049437402", ",", "0.1231540282", ",", "0.0620426045", ",", "-", "0.20762537105", ",", "-", "0.0858969797", ",", "-", "0.1765398834", ",", "0", ",", "-", "0.0659046986", ",", "0.066132456", ",", "0.1083805485", ",", "-", "0.3527048597", ",", "-", "0.08664948235", ",", "-", "0.2147984404", ",", "0", ",", "-", "0.01824135235", ",", "-", "0.0231638914667", ",", "-", "0.19199353525", ",", "0.22044392865", ",", "-", "0.0303090508", ",", "0", ",", "0.2252972074", ",", "0.2510665517", ",", "0.0692722475", ",", "0.0436920631", ",", "-", "0.1216575278", ",", "-", "0.3965378884", ",", "-", "0.272408873", ",", "0.0494130263", ",", "0", ",", "0", ",", "-", "0.2392781257", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.18420145725", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3003298727", ",", "-", "0.3003298727", ",", "0", ",", "0", ",", "-", "0.0721807302", ",", "0.06026888705", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0242238461", ",", "-", "0.4493177707", ",", "0", ",", "0", ",", "0", ",", "-", "0.239000649367", ",", "-", "0.239000649367", ",", "-", "0.239000649367", ",", "-", "0.1946114955", ",", "-", "0.1991906206", ",", "-", "0.1993655243", ",", "-", "0.1970462483", ",", "-", "0.2606683698", ",", "0", ",", "-", "0.0749118395", ",", "0.0661853023", ",", "0", ",", "0.0238264516", ",", "-", "0.0387790318", ",", "0.1308005596", ",", "-", "0.1894960501", ",", "0", ",", "-", "0.2508621642", ",", "-", "0.1544326457", ",", "-", "0.2325834771", ",", "-", "0.22968032085", ",", "-", "0.1912641881", ",", "0", ",", "0", ",", "0", ",", "-", "0.2242973036", ",", "0", ",", "0", ",", "0.22174468955", ",", "0", ",", "0", ",", "0.21869500335", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.36868878935", ",", "-", "0.36447958735", ",", "0.096606082", ",", "0", ",", "-", "0.192133531233", ",", "-", "0.11630807675", ",", "-", "0.1604522348", ",", "-", "0.1604522348", ",", "-", "0.1584295317", ",", "-", "0.4458820044", ",", "-", "0.29524595235", ",", "-", "0.36118027455", ",", "0.046803708", ",", "-", "0.0540691736", ",", "0", ",", "-", "0.25954053235", ",", "-", "0.3063620374", ",", "-", "0.48354884695", ",", "-", "0.2393011071", ",", "-", "0.2343089113", ",", "0", ",", "0.0349768231", ",", "0", ",", "0.189145409175", ",", "0", ",", "-", "0.00188350375", ",", "0.2020494497", ",", "0.0526866699", ",", "-", "0.2205669765", ",", "-", "0.00175873335", ",", "0.0471942918", ",", "0.0543009404", ",", "0.0532852354", ",", "0.05398690685", ",", "0.051438478", ",", "-", "0.16353333535", ",", "0.0537145371", ",", "-", "0.1029711828", ",", "0", ",", "-", "0.0843258928", ",", "0.0135721273", ",", "0.01334625535", ",", "0.0079448478", ",", "-", "0.0911326497", ",", "-", "0.2558892932", ",", "0", ",", "-", "0.0054120968", ",", "-", "0.10700903895", ",", "-", "0.00415753455", ",", "-", "0.00783125395", ",", "-", "0.06608916645", ",", "-", "0.1356408335", ",", "-", "0.1887868993", ",", "-", "0.19436710095", ",", "-", "0.1638620746", ",", "-", "0.17367887025", ",", "0", ",", "0.0825178478", ",", "0", ",", "-", "0.1231270331", ",", "-", "0.0351848685", ",", "0", ",", "-", "0.2300994593", ",", "-", "0.0723194081", ",", "0", ",", "0", ",", "-", "0.120496502", ",", "-", "0.0436533665", ",", "-", "0.1010623819", ",", "-", "0.30611381025", ",", "-", "0.16220390805", ",", "-", "0.334446205175", ",", "-", "0.3268920266", ",", "-", "0.3195821261", ",", "-", "0.1049908238", ",", "0.0042014051", ",", "0.005563172", ",", "0", ",", "0", ",", "0", ",", "-", "0.06980565345", ",", "0", ",", "0", ",", "0", ",", "-", "0.07801941185", ",", "0", ",", "0", ",", "0", ",", "-", "0.0621344612", ",", "-", "0.13871046875", ",", "0", ",", "-", "0.123835439", ",", "-", "0.3519043144", ",", "-", "0.26323820855", ",", "-", "0.2651848941", ",", "0", ",", "-", "0.0083919875", ",", "-", "0.15442809155", ",", "0", ",", "0", ",", "-", "0.0310865136", ",", "-", "0.0301211493", ",", "-", "0.24850638935", ",", "0", ",", "0.0382783244", ",", "-", "0.3460494172", ",", "0", ",", "-", "0.3504031902", ",", "0.0728782183", ",", "-", "0.28716141405", ",", "-", "0.28716141405", ",", "-", "0.0911547534", ",", "0", ",", "0", ",", "-", "0.16089089775", ",", "0", ",", "-", "0.2564119547", ",", "-", "0.387021941333", ",", "-", "0.4139120199", ",", "-", "0.0780915058", ",", "-", "0.4841807497", ",", "0", ",", "-", "0.408116723", ",", "0.22325608415", ",", "-", "0.085447360475", ",", "-", "0.07358306655", ",", "-", "0.0795526617", ",", "-", "0.0854578041", ",", "-", "0.1022925585", ",", "-", "0.08680684775", ",", "-", "0.0868824302", ",", "-", "0.0840374996", ",", "-", "0.07792784165", ",", "-", "0.08205539445", ",", "-", "0.0737778775667", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11481975575", ",", "0", ",", "0", ",", "-", "0.04221076225", ",", "0", ",", "-", "0.002054377", ",", "0.0878772905", ",", "-", "0.0550097189", ",", "0", ",", "-", "0.06031908045", ",", "-", "0.2075097668", ",", "-", "0.2075097668", ",", "0.18193298685", ",", "0", ",", "0", ",", "-", "0.01703563625", ",", "-", "0.1125139999", ",", "-", "0.0699597966", ",", "0", ",", "0.05263924615", ",", "0.04971624105", ",", "-", "0.0212915671", ",", "0", ",", "0", ",", "-", "0.0361592909", ",", "-", "0.12222547745", ",", "0", ",", "-", "0.0728730571", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.19496937425", ",", "-", "0.2026440084", ",", "-", "0.064342223", ",", "-", "0.06236618915", ",", "-", "0.48669666635", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0774031587333", ",", "-", "0.0769760132", ",", "-", "0.1055714943", ",", "-", "0.1647858585", ",", "-", "0.0481420163", ",", "0.00737032615", ",", "0.2087946782", ",", "0", ",", "-", "0.35750810955", ",", "-", "0.1109310509", ",", "-", "0.23343429645", ",", "0.1647585481", ",", "-", "0.23343429645", ",", "-", "0.1179663115", ",", "-", "0.3821575637", ",", "-", "0.30276980105", ",", "0.0822680524", ",", "-", "0.0457869579", ",", "0", ",", "-", "0.199056287", ",", "0", ",", "0", ",", "0.1126365738", ",", "-", "0.3108243558", ",", "-", "0.0997415578333", ",", "0.0162089943", ",", "-", "0.2975633695", ",", "0", ",", "-", "0.08845444055", ",", "0", ",", "0.06963588825", ",", "-", "0.302202554", ",", "-", "0.301980270745", ",", "-", "0.304356902", ",", "-", "0.2877412252", ",", "-", "0.34778288875", ",", "-", "0.346957793514", ",", "-", "0.31380283785", ",", "-", "0.3106675262", ",", "-", "0.30399749075", ",", "-", "0.30032482305", ",", "-", "0.2990819703", ",", "-", "0.2972119154", ",", "-", "0.3073489864", ",", "-", "0.1656604456", ",", "0", ",", "-", "0.29715191965", ",", "0", ",", "0", ",", "-", "0.1907416266", ",", "-", "0.194932006833", ",", "-", "0.1940831333", ",", "-", "0.18706511205", ",", "-", "0.18940951245", ",", "-", "0.0479897385", ",", "0", ",", "0", ",", "-", "0.194989662567", ",", "-", "0.33642141925", ",", "-", "0.2484254591", ",", "-", "0.25196575875", ",", "-", "0.2569479668", ",", "-", "0.2483964658", ",", "-", "0.2493323094", ",", "-", "0.2493323094", ",", "-", "0.1638169499", ",", "-", "0.1620989161", ",", "-", "0.351292023", ",", "0", ",", "-", "0.09265374925", ",", "-", "0.0939938862", ",", "0", ",", "-", "0.0798885542833", ",", "-", "0.08080788145", ",", "-", "0.0765634156", ",", "-", "0.0868738814", ",", "-", "0.0868738814", ",", "-", "0.0830772748", ",", "-", "0.18599768325", ",", "-", "0.1791624504", ",", "-", "0.198007604", ",", "0", ",", "-", "0.0136724706", ",", "-", "0.0136724706", ",", "-", "0.164144970275", ",", "-", "0.18122445745", ",", "-", "0.1682674958", ",", "0", ",", "0.0162201378", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.20967280335", ",", "0.0510129623", ",", "0.0575556346", ",", "0.0612737769", ",", "0.0611040013", ",", "0.0562154817", ",", "0.0202707727", ",", "-", "0.1855473797", ",", "-", "0.0001796093", ",", "-", "0.0001796093", ",", "-", "0.0001796093", ",", "-", "0.0001796093", ",", "0", ",", "-", "0.292037921733", ",", "-", "0.30790809405", ",", "0.0145755634", ",", "-", "0.0008647905", ",", "0", ",", "0", ",", "0", ",", "-", "0.21069625346", ",", "0.1103892803", ",", "0.1350368648", ",", "-", "0.26817109915", ",", "-", "0.0870794054", ",", "-", "0.0861926826", ",", "-", "0.09541347024", ",", "0", ",", "0.29520788125", ",", "-", "0.0021191019", ",", "-", "0.4138116184", ",", "0", ",", "0", ",", "-", "0.1550750212", ",", "0", ",", "0.029400262", ",", "0.16342806605", ",", "0.17431012475", ",", "-", "0.07037892195", ",", "0.0244486343", ",", "-", "0.3972540561", ",", "-", "0.405301829", ",", "-", "0.3773515198", ",", "-", "0.366823568", ",", "-", "0.380299451", ",", "-", "0.4038187807", ",", "-", "0.3823167018", ",", "-", "0.4050177705", ",", "-", "0.3795651108", ",", "0", ",", "0.0837909452", ",", "0.1645927006", ",", "0.1552739414", ",", "0.147580447", ",", "-", "0.15572512935", ",", "0.1260771479", ",", "0", ",", "-", "0.1865112399", ",", "-", "0.1518776221", ",", "0", ",", "-", "0.1176957759", ",", "-", "0.363617741", ",", "0", ",", "0.1483201577", ",", "0.01257465865", ",", "0.205374643", ",", "-", "0.30649392805", ",", "-", "0.30633764655", ",", "-", "0.34779689345", ",", "-", "0.1630384384", ",", "0", ",", "0", ",", "-", "0.14560089545", ",", "-", "0.150928274275", ",", "-", "0.1487160562", ",", "0", ",", "-", "0.162960858", ",", "0", ",", "-", "0.0942484376", ",", "-", "0.1473486453", ",", "0.1120171674", ",", "0", ",", "0", ",", "-", "0.02676653975", ",", "-", "0.0406649182", ",", "-", "0.02916043215", ",", "-", "0.302722501783", ",", "-", "0.02431866515", ",", "0", ",", "0", ",", "-", "0.2049340401", ",", "-", "0.254524583", ",", "-", "0.1194692499", ",", "-", "0.1125787069", ",", "0", ",", "-", "0.2235968313", ",", "0.07168326715", ",", "0.0657785578", ",", "-", "0.0538825378", ",", "-", "0.1142235283", ",", "-", "0.3140308787", ",", "-", "0.2316941125", ",", "-", "0.275463736543", ",", "-", "0.27324228434", ",", "-", "0.280000979", ",", "-", "0.170346157967", ",", "-", "0.1683738793", ",", "-", "0.2577701841", ",", "-", "0.1685548831", ",", "-", "0.2490835859", ",", "-", "0.170181214", ",", "-", "0.2758322357", ",", "-", "0.28930895185", ",", "-", "0.2629276016", ",", "-", "0.2770937364", ",", "-", "0.275463736543", ",", "-", "0.4420116156", ",", "-", "0.0436773687", ",", "-", "0.4420116156", ",", "0", ",", "0", ",", "-", "0.1245872727", ",", "-", "0.28180509135", ",", "-", "0.1840739271", ",", "-", "0.1821655401", ",", "-", "0.18079803955", ",", "-", "0.0002923492", ",", "-", "0.07908509335", ",", "-", "0.07145412955", ",", "-", "0.0615972942333", ",", "-", "0.05833522507", ",", "-", "0.05886780565", ",", "-", "0.0614395089", ",", "0.1140150405", ",", "0.1822142658", ",", "-", "0.0681018231", ",", "-", "0.0367267728", ",", "0.0263960597", ",", "-", "0.2595007112", ",", "0", ",", "-", "0.10842904425", ",", "-", "0.01773211365", ",", "-", "0.0638029092", ",", "-", "0.07242869705", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.06890192345", ",", "-", "0.1923750358", ",", "0", ",", "0", ",", "0", ",", "-", "0.0232942912", ",", "-", "0.0848895062", ",", "0.11574146065", ",", "0", ",", "-", "0.0974328398", ",", "-", "0.11359203035", ",", "-", "0.100617109667", ",", "0", ",", "-", "0.101612201283", ",", "-", "0.0986422683", ",", "-", "0.4352454027", ",", "-", "0.0433608307", ",", "-", "0.19858271435", ",", "-", "0.19858271435", ",", "-", "0.18465958105", ",", "-", "0.1929109478", ",", "-", "0.2062999358", ",", "-", "0.2071030022", ",", "0", ",", "-", "0.1456540066", ",", "-", "0.41396156035", ",", "-", "0.0091089446", ",", "-", "0.09150205985", ",", "-", "0.0931855019", ",", "-", "0.07718068655", ",", "0.13266138025", ",", "-", "0.38282178505", ",", "-", "0.2225972163", ",", "-", "0.23453358105", ",", "-", "0.0915256517", ",", "0", ",", "-", "0.30990929325", ",", "-", "0.1119903792", ",", "-", "0.1127560481", ",", "0.0308905166", ",", "-", "0.2708413338", ",", "-", "0.2983662133", ",", "-", "0.36283007585", ",", "-", "0.0328811144", ",", "0.19933051535", ",", "-", "0.0786624052", ",", "-", "0.13367439825", ",", "-", "0.29645966045", ",", "-", "0.0355328264", ",", "-", "0.0355328264", ",", "0", ",", "-", "0.37131497085", ",", "-", "0.2706545173", ",", "0.04742120035", ",", "-", "0.1015965417", ",", "0.0283807728", ",", "-", "0.36096191005", ",", "-", "0.30467021695", ",", "0.0679388598", ",", "-", "0.0500383871", ",", "-", "0.0439388624667", ",", "-", "0.0484956164", ",", "-", "0.0474847924", ",", "-", "0.0484956164", ",", "-", "0.0448835387", ",", "0.0161353116", ",", "-", "0.0823156868", ",", "-", "0.07256558145", ",", "0.04289214", ",", "-", "0.09140359425", ",", "0", ",", "-", "0.23774174235", ",", "0", ",", "0.0548741123", ",", "0.04580562305", ",", "0", ",", "-", "0.0899892323", ",", "0", ",", "0", ",", "-", "0.0784950364", ",", "-", "0.161459503367", ",", "0.1292913326", ",", "0", ",", "0", ",", "0", ",", "-", "0.1653607074", ",", "0.05111807265", ",", "0.05161971345", ",", "0.0772092806", ",", "0.040319609", ",", "0.0452935377", ",", "0.03599400705", ",", "0.0612159078", ",", "0.0533448287", ",", "0.0617219006", ",", "0.05111807265", ",", "0.05381183605", ",", "0.0587288739", ",", "0.0569334118", ",", "0.05111807265", ",", "0.05111807265", ",", "0.0380050394", ",", "0.0518305183", ",", "0.0505508388", ",", "0.05211348385", ",", "0.0595826874", ",", "0.0585535211", ",", "0.0478774998", ",", "0.05111807265", ",", "0.0514633825", ",", "0.05111807265", ",", "0.0581791336333", ",", "-", "0.33121712265", ",", "-", "0.1318972808", ",", "-", "0.1961071003", ",", "0", ",", "-", "0.01875733785", ",", "-", "0.01575086375", ",", "0", ",", "-", "0.121445127", ",", "-", "0.121445127", ",", "0.219565344875", ",", "0.2426012549", ",", "-", "0.4156199008", ",", "-", "0.02924424945", ",", "0.0833416461", ",", "-", "0.08561635235", ",", "-", "0.282734294", ",", "0.0377919672", ",", "0.0377919672", ",", "-", "0.1985529392", ",", "0", ",", "-", "0.1220308394", ",", "-", "0.00791858105", ",", "-", "0.00791858105", ",", "-", "0.03825170045", ",", "-", "0.0984399143", ",", "-", "0.05056830225", ",", "-", "0.0806942638", ",", "-", "0.0477468348", ",", "-", "0.0551798457", ",", "-", "0.0899845042571", ",", "-", "0.0153994235", ",", "-", "0.028562005", ",", "-", "0.08039402615", ",", "-", "0.0584259917", ",", "-", "0.07887961512", ",", "-", "0.08276971056", ",", "-", "0.0794373243", ",", "-", "0.0836327026667", ",", "-", "0.0882949110333", ",", "-", "0.0722682389", ",", "-", "0.0885730565", ",", "-", "0.0667750715", ",", "-", "0.21515048015", ",", "-", "0.1609652388", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.0841569423333", ",", "-", "0.41817050015", ",", "0", ",", "0", ",", "-", "0.4207043356", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11358736225", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0871525786", ",", "0", ",", "-", "0.2483996492", ",", "-", "0.032195534725", ",", "0", ",", "0", ",", "0.1558919963", ",", "0.1808825781", ",", "0.1769078236", ",", "0.1658666665", ",", "0.15280578825", ",", "0.14884120625", ",", "0.1604142943", ",", "0.1604142943", ",", "0.1660901911", ",", "0.1787859932", ",", "0.180118818625", ",", "0.180118818625", ",", "-", "0.0742607427", ",", "0", ",", "-", "0.1017092377", ",", "-", "0.039250955", ",", "-", "0.05985420685", ",", "-", "0.1734399659", ",", "0.0495673208", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0653831603", ",", "-", "0.2593120023", ",", "0.2352161216", ",", "-", "0.0385888381", ",", "-", "0.1856089572", ",", "-", "0.096447081425", ",", "-", "0.0067694686", ",", "-", "0.0876729163", ",", "-", "0.0949015903", ",", "-", "0.0861631993", ",", "0", ",", "0", ",", "0", ",", "-", "0.23448461775", ",", "-", "0.1545546236", ",", "-", "0.160163057767", ",", "-", "0.2247269932", ",", "-", "0.0726860691", ",", "0", ",", "0", ",", "-", "0.27563844435", ",", "0.0944111123", ",", "-", "0.158486699233", ",", "0.10412905055", ",", "-", "0.3019562266", ",", "-", "0.0059041504", ",", "0.1712112202", ",", "-", "0.132826648945", ",", "-", "0.132218582", ",", "-", "0.13508414495", ",", "-", "0.1324923352", ",", "0", ",", "0.0489353734", ",", "-", "0.1617720004", ",", "-", "0.298114741", ",", "-", "0.03638252", ",", "-", "0.24142597345", ",", "0", ",", "-", "0.1516794829", ",", "-", "0.2508509211", ",", "0.1819325015", ",", "-", "0.34546451665", ",", "-", "0.10423362935", ",", "0.1766201064", ",", "-", "0.11158917815", ",", "-", "0.1085466612", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0564750848", ",", "-", "0.0297868629", ",", "0", ",", "-", "0.2291636503", ",", "-", "0.04871789875", ",", "0", ",", "0", ",", "-", "0.03419295135", ",", "0.0236514893", ",", "0", ",", "-", "0.1733101", ",", "-", "0.0494821121", ",", "0", ",", "0.0095294436", ",", "0", ",", "0", ",", "-", "0.0988398861", ",", "0.1211537799", ",", "0", ",", "0.1079171175", ",", "0.1079171175", ",", "-", "0.109202531", ",", "-", "0.2521072988", ",", "-", "0.40876853825", ",", "-", "0.3601021894", ",", "-", "0.24355801395", ",", "0", ",", "-", "0.1231583357", ",", "-", "0.4155138528", ",", "-", "0.42373513505", ",", "-", "0.1778521721", ",", "-", "0.31654468225", ",", "-", "0.1807331112", ",", "-", "0.299747455833", ",", "-", "0.096638853175", ",", "0", ",", "-", "0.1178909202", ",", "-", "0.0866148002", ",", "-", "0.1900843714", ",", "-", "0.2647443957", ",", "-", "0.3584700071", ",", "-", "0.04913757", ",", "0.2443837813", ",", "-", "0.1057213645", ",", "-", "0.18505136555", ",", "0.19865773395", ",", "-", "0.41753566515", ",", "-", "0.4322067544", ",", "0.2762987586", ",", "-", "0.163745474067", ",", "0", ",", "-", "0.05433198215", ",", "-", "0.3085043699", ",", "0", ",", "-", "0.25341959505", ",", "-", "0.17386318685", ",", "0.09187455485", ",", "0", ",", "0", ",", "0.0810561407", ",", "0.0810621874", ",", "0", ",", "0.0772762391", ",", "-", "0.06415286555", ",", "-", "0.1706111016", ",", "-", "0.165648599", ",", "-", "0.03964704875", ",", "-", "0.1689009814", ",", "0.08028497955", ",", "0.0919013047", ",", "0", ",", "0", ",", "-", "0.0783046785", ",", "-", "0.0781719771", ",", "-", "0.0772676192", ",", "-", "0.1006661673", ",", "-", "0.4755377118", ",", "0", ",", "0", ",", "0", ",", "0.04349552596", ",", "0", ",", "0.0846813361", ",", "0.1036593347", ",", "0.1036593347", ",", "-", "0.2688189321", ",", "0", ",", "0.21234914285", ",", "0", ",", "-", "0.0639583456", ",", "-", "0.0699382633", ",", "-", "0.3099421963", ",", "-", "0.205179208", ",", "0.16200777285", ",", "0", ",", "0", ",", "-", "0.14563248865", ",", "-", "0.14563248865", ",", "-", "0.1921792342", ",", "-", "0.266368378", ",", "0.01630497725", ",", "-", "0.02281259675", ",", "0.0646538624", ",", "-", "0.0439904997", ",", "0.0646962598333", ",", "0.0646538624", ",", "0.0896193299", ",", "0.0844626589667", ",", "0.0646538624", ",", "0", ",", "0.0494866085", ",", "0.05993751545", ",", "0.0728024929", ",", "0", ",", "0", ",", "-", "0.35171704875", ",", "-", "0.3461831676", ",", "-", "0.23534016675", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1393825919", ",", "-", "0.1057029476", ",", "-", "0.1285164473", ",", "0.0506874708", ",", "0.00979212695", ",", "0", ",", "0", ",", "-", "0.20230996885", ",", "-", "0.0158963265", ",", "-", "0.25958941275", ",", "0", ",", "0", ",", "0", ",", "-", "0.0392954536", ",", "0", ",", "-", "0.38534811175", ",", "-", "0.090674318", ",", "0", ",", "0.110630939", ",", "-", "0.05859456555", ",", "0.1686185175", ",", "0.0238576289", ",", "0.1686185175", ",", "-", "0.409889271786", ",", "-", "0.39181028925", ",", "-", "0.406473435", ",", "-", "0.4061470529", ",", "-", "0.4034161319", ",", "-", "0.409889271786", ",", "-", "0.409789111", ",", "-", "0.4126535181", ",", "-", "0.4109204767", ",", "-", "0.433389395", ",", "-", "0.4083170822", ",", "0.0952732848", ",", "0.2959385516", ",", "0.0840985575", ",", "-", "0.0782369482", ",", "-", "0.07977357545", ",", "-", "0.0852595818", ",", "0", ",", "0", ",", "-", "0.0471985872", ",", "0", ",", "-", "0.11457761075", ",", "0", ",", "-", "0.1278672613", ",", "-", "0.14919505055", ",", "-", "0.4070746744", ",", "-", "0.37171452095", ",", "-", "0.39322916245", ",", "-", "0.48239893995", ",", "0", ",", "0.0689906471", ",", "-", "0.2019111013", ",", "0", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Craven", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cray", "Avenue\"", ",", "\"\"", ",", "\"Crayford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Crews", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cricklewood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Crofton", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Crofton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Crossharbour\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Crouch", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Croxley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cudham", "Forge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Custom", "House\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cutty", "Sark\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Cyprus\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dairy", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Daniel", "Close\"", ",", "\"Daniels", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dartfields\"", ",", "\"Dartford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Darwin", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dean", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Debden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Denham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Denmark", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dennis", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Deptford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Derek", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"Derry", "Downs\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Devons", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dollis", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"Dollis", "Park\"", ",", "\"Dollis", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dorking\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Dorney", "Rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Downs", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Downsway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Drake", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Drayton", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Drove", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eagle", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Earlsfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Earl's", "Court\"", ",", "\"\"", ",", "\"East", "Acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"East", "Court\"", ",", "\"East", "Croydon\"", ",", "\"\"", ",", "\"\"", ",", "\"East", "Dulwich\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"East", "Ham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"East", "India\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"East", "Putney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eastcote\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eastholm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eden", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Edgware\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Egham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Echo", "Square\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eleanor", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Elm", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Elmers", "End\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Elsley", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eltham", "Pool\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Embankment\"", ",", "\"\"", ",", "\"Emerson", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Enfield", "Lock\"", ",", "\"\"", ",", "\"\"", ",", "\"Enfield", "Town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Epping\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Epsom\"", ",", "\"\"", ",", "\"\"", ",", "\"Epsom", "Downs\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Erith\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Erith", "School\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ermyn", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Esmond", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Essex", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Essex", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eswyn", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eton", "College\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Eton", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"Euston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ewell", "East\"", ",", "\"\"", ",", "\"Ewell", "West\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Exning", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fairlop\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fairway\"", ",", "\"\"", ",", "\"\"", ",", "\"Falcon", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"Falconwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Farley", "Road\"", ",", "\"\"", ",", "\"Farm", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Farnham", "Pump\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Farringdon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fawe", "Street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Feltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fen", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fenn", "Bell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"craven", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cray", "avenue\"", ",", "\"\"", ",", "\"crayford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"crews", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cricklewood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"crofton", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"crofton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"crossharbour\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"crouch", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"croxley\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cudham", "forge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"custom", "house\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cutty", "sark\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"cyprus\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dairy", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"daniel", "close\"", ",", "\"daniels", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dartfields\"", ",", "\"dartford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"darwin", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dean", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"deansway", "n9", "\"", ",", "\"\"", ",", "\"debden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"denham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"denmark", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dennis", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"deptford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"derek", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"derry", "downs\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"devons", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dollis", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"dollis", "park\"", ",", "\"dollis", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dorking\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"dorney", "rise\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"downage", "nw4", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"downs", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"downsway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"drake", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"drayton", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"drove", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eagle", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"earlsfield\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"earl's", "court\"", ",", "\"\"", ",", "\"east", "acton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"east", "court\"", ",", "\"east", "croydon\"", ",", "\"\"", ",", "\"\"", ",", "\"east", "dulwich\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"east", "ham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"east", "india\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"east", "putney\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eastcote\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eastholm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eastway", "br2", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eden", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"edgware\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"egham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"echo", "square\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eleanor", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"elm", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"elmers", "end\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"elsley", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eltham", "pool\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"embankment\"", ",", "\"\"", ",", "\"emerson", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"enfield", "lock\"", ",", "\"\"", ",", "\"\"", ",", "\"enfield", "town\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"epping\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"epsom\"", ",", "\"\"", ",", "\"\"", ",", "\"epsom", "downs\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"erith\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"erith", "school\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ermyn", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"esmond", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"essex", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"essex", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eswyn", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eton", "college\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"eton", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"euston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ewell", "east\"", ",", "\"\"", ",", "\"ewell", "west\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"exning", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fairlop\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fairway\"", ",", "\"\"", ",", "\"\"", ",", "\"falcon", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"falconwood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"farley", "road\"", ",", "\"\"", ",", "\"farm", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"farnham", "pump\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"farringdon\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fawe", "street\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"feltham\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fen", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fenn", "bell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,570
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ".", "data", ";", "public", "class", "London4", "{", "public", "String", "[", "]", "extras", "=", "{", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FYC:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FRD:JM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FPK:PV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"FBY:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GHL:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GRD:DcP\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GGR:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GST:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GRH:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GPS:cHM\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GPK:JPV\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GFD:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"GUN:D\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HAI:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HMD:DP\"", ",", "null", ",", "null", ",", "null", ",", "\"HMS:H\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HMP:N\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HLN:C\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HSD:B\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HAW:B\"", ",", "\"HOH:M\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "\"HTX:P\"", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", ",", "null", "}", ";", "public", "double", "[", "]", "importances", "=", "{", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "1", ",", "0", ",", "0", "}", ";", "public", "double", "[", "]", "latitudes", "=", "{", "0", ",", "51.5007311253", ",", "51.6084976915", ",", "51.3414690386", ",", "51.4358722048", ",", "51.5497878506", ",", "51.5084662073", ",", "0", ",", "51.516654976", ",", "51.5872814049", ",", "51.5866847064", ",", "51.5849475975", ",", "51.587472815", ",", "51.4767694804", ",", "51.5349600874", ",", "0", ",", "51.468140683", ",", "0", ",", "51.5143926716", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5774845248", ",", "51.4350756941", ",", "51.5754502702", ",", "51.5754502702", ",", "51.5171599716", ",", "51.4364428215", ",", "51.35092143", ",", "51.35092143", ",", "51.3530884562", ",", "51.5270256542", ",", "51.5319504503", ",", "51.5593151571", ",", "0", ",", "0", ",", "51.4945750078", ",", "51.601965441", ",", "51.61053455", ",", "51.6010753802", ",", "51.6206462728", ",", "51.5720437993", ",", "51.5472171656", ",", "51.550201469", ",", "51.5417101517", ",", "51.5479379201", ",", "51.5826337038", ",", "51.5174873485", ",", "51.5648112913", ",", "51.5656969932", ",", "51.5645224906", ",", "51.5728580052", ",", "51.5207406964", ",", "51.5211400017", ",", "0", ",", "51.3663622858", ",", "0", ",", "51.5971469508", ",", "51.6094864869", ",", "51.6194363275", ",", "51.5519282269", ",", "51.5068458899", ",", "51.6416218614", ",", "51.44422584", ",", "51.5423342248", ",", "51.558070387", ",", "51.5362601487", ",", "0", ",", "51.6017857686", ",", "51.493117908", ",", "0", ",", "51.4986739431", ",", "0", ",", "51.3595752173", ",", "0", ",", "51.4926110617", ",", "51.6522157906", ",", "51.5549120545", ",", "51.5717331555", ",", "0", ",", "51.4179906352", ",", "51.37163952", ",", "51.5549243337", ",", "0", ",", "51.6023011895", ",", "0", ",", "51.4350818977", ",", "51.3644055812", ",", "0", ",", "51.5484605557", ",", "51.5291364353", ",", "51.4986401648", ",", "51.6734064231", ",", "51.4735995061", ",", "0", ",", "51.5531758455", ",", "51.5150583317", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4845649406", ",", "51.5290698249", ",", "51.4752450716", ",", "51.4897104202", ",", "51.5905263757", ",", "51.6151699938", ",", "0", ",", "51.5206007735", ",", "0", ",", "0", ",", "51.599453705", ",", "51.4375197275", ",", "51.563174526", ",", "51.4185212286", ",", "51.4386061893", ",", "51.4125518214", ",", "51.4414780294", ",", "51.4414780294", ",", "51.568800602", ",", "0", ",", "51.5194668569", ",", "51.5339015074", ",", "51.5174723739", ",", "0", ",", "0", ",", "0", ",", "51.5322418531", ",", "51.5400667696", ",", "0", ",", "51.4780052903", ",", "51.6529774988", ",", "51.5289740296", ",", "51.5275889624", ",", "51.5836086511", ",", "51.6279516257", ",", "51.5492831594", ",", "51.6154797638", ",", "51.4398006341", ",", "51.4422869803", ",", "51.4392804363", ",", "51.4388481369", ",", "51.4400342445", ",", "51.4392804363", ",", "51.4515648754", ",", "0", ",", "51.6032734016", ",", "51.593474165", ",", "51.469919502", ",", "51.6209634218", ",", "51.6081778537", ",", "51.6209634218", ",", "51.3831218673", ",", "51.5901357914", ",", "51.5879036699", ",", "51.4697017066", ",", "51.593255918", ",", "51.6330168915", ",", "51.5882487323", ",", "51.5915480728", ",", "51.6207586942", ",", "51.3395785119", ",", "51.4748773286", ",", "51.3494428329", ",", "51.352496329", ",", "51.391923894", ",", "0", ",", "0", ",", "0", ",", "51.4833855862", ",", "0", ",", "51.5433367247", ",", "0", ",", "51.5520738151", ",", "51.5529874346", ",", "51.461274777", ",", "51.5891020977", ",", "51.5900179235", ",", "51.5911466146", ",", "51.5575246761", ",", "51.554789567", ",", "51.666059086", ",", "51.4615733218", ",", "51.4899087719", ",", "51.5141346179", ",", "51.6486383507", ",", "51.4265656385", ",", "51.4906799748", ",", "51.4294635006", ",", "51.5657712095", ",", "0", ",", "0", ",", "51.6601506287", ",", "51.6100082935", ",", "51.6206872204", ",", "51.453313043", ",", "51.3555173854", ",", "51.3436977642", ",", "51.4861294495", ",", "0", ",", "51.3355997095", ",", "0", ",", "0", ",", "51.5183681376", ",", "51.3541004845", ",", "51.4633801309", ",", "51.5257812973", ",", "51.5742868746", ",", "51.4929056909", ",", "51.4405478834", ",", "51.4209136756", ",", "51.5845803048", ",", "51.5600031769", ",", "51.4321885253", ",", "51.4573817091", ",", "51.3822586473", ",", "51.5594976857", ",", "51.6165480628", ",", "0", ",", "51.4804570778", ",", "51.5772878608", ",", "51.4806825556", ",", "0", ",", "51.4850617587", ",", "51.5274918889", ",", "51.5280468686", ",", "51.5100390497", ",", "51.5412500434", ",", "51.5521006621", ",", "51.3502508875", ",", "51.4070555908", ",", "51.4090544711", ",", "51.4089106782", ",", "51.5160371398", ",", "51.5893956279", ",", "51.5363839694", ",", "0", ",", "51.405759875", ",", "51.3526202046", ",", "0", ",", "0", ",", "51.6477635051", ",", "51.6207989554", ",", "51.5174842194", ",", "51.6173194704", ",", "51.6258287289", ",", "0", ",", "51.528994491", ",", "51.4729565204", ",", "51.6267041863", ",", "51.6123998984", ",", "51.6131112985", ",", "51.6367926468", ",", "51.4569163387", ",", "51.3523265833", ",", "0", ",", "51.55633002", ",", "51.6045396493", ",", "51.5251876721", ",", "51.6012466316", ",", "0", ",", "51.4573997703", ",", "51.6043028651", ",", "51.6060922385", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3714121337", ",", "0", ",", "51.4586497223", ",", "0", ",", "51.5685918036", ",", "51.5922544498", ",", "51.4802330635", ",", "51.4798719242", ",", "51.4828234411", ",", "51.4704226598", ",", "51.4706758609", ",", "51.4771274998", ",", "51.472035783", ",", "51.4836558221", ",", "51.4840821692", ",", "51.4874741871", ",", "51.4721116601", ",", "51.493454409", ",", "51.4792436835", ",", "0", ",", "51.3509372494", ",", "51.5927525803", ",", "51.4272362557", ",", "51.5141938484", ",", "51.5607723565", ",", "51.434598347", ",", "51.4350902854", ",", "51.4366592374", ",", "51.423887165", ",", "51.5349265818", ",", "51.389696789", ",", "0", ",", "0", ",", "51.5907889491", ",", "0", ",", "51.4275999562", ",", "0", ",", "0", ",", "51.5898640787", ",", "51.532577069", ",", "51.5273943993", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5546862451", ",", "0", ",", "0", ",", "51.5702443487", ",", "51.4689312087", ",", "0", ",", "51.5389038062", ",", "51.5230774531", ",", "51.6526293868", ",", "0", ",", "51.4890580667", ",", "51.6377939996", ",", "51.5250699489", ",", "51.498196412", ",", "51.5084452021", ",", "51.5060123585", ",", "51.5155924875", ",", "51.5097078585", ",", "51.5064159497", ",", "51.5933195851", ",", "51.5939423936", ",", "51.5924932911", ",", "51.4631666525", ",", "51.400817204", ",", "51.4273331938", ",", "51.4130070055", ",", "51.4565365146", ",", "51.3721169589", ",", "51.576791751", ",", "51.5764297446", ",", "51.5757650479", ",", "51.577452698", ",", "51.5805499355", ",", "0", ",", "51.4617684045", ",", "51.6505101064", ",", "51.3612280125", ",", "51.4295200883", ",", "51.4310763539", ",", "0", ",", "0", ",", "0", ",", "51.478642605", ",", "51.4334901693", ",", "51.5998055579", ",", "51.5064848859", ",", "51.4302821931", ",", "51.4358680083", ",", "51.4358680083", ",", "0", ",", "51.3744510026", ",", "51.4122658387", ",", "51.3563048417", ",", "0", ",", "51.6013301392", ",", "0", ",", "0", ",", "0", ",", "51.3212090433", ",", "0", ",", "0", ",", "0", ",", "51.5638773018", ",", "51.3805159059", ",", "51.3805159059", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5298890742", ",", "51.5326033519", ",", "51.5409779638", ",", "0", ",", "51.5209976298", ",", "51.4407156341", ",", "0", ",", "0", ",", "0", ",", "51.3492385726", ",", "0", ",", "0", ",", "51.4483281821", ",", "0", ",", "51.3662454107", ",", "51.5494399831", ",", "51.5569054748", ",", "51.5798756177", ",", "51.5548692778", ",", "51.4571073347", ",", "51.398978833", ",", "51.5628211801", ",", "51.5788997792", ",", "51.4006752338", ",", "51.4571621396", ",", "51.4887613977", ",", "51.4887613977", ",", "51.594500052", ",", "51.5942822749", ",", "51.4512739758", ",", "51.3738161056", ",", "51.3741734863", ",", "51.5112302556", ",", "51.4498834892", ",", "51.4605802225", ",", "51.5172299831", ",", "51.5163129007", ",", "0", ",", "51.5126893857", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4682489315", ",", "51.4613134865", ",", "51.6191975362", ",", "51.5814769348", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4912857665", ",", "51.3621952619", ",", "0", ",", "51.3334636701", ",", "51.5605202681", ",", "51.4849338927", ",", "51.483312159", ",", "51.6058908849", ",", "51.3426217365", ",", "0", ",", "0", ",", "0", ",", "51.5196063029", ",", "51.4193864751", ",", "51.4242505102", ",", "51.4244535899", ",", "51.4283086339", ",", "51.4272309289", ",", "51.4647747146", ",", "51.4668135396", ",", "51.4279515776", ",", "51.4693616673", ",", "0", ",", "0", ",", "51.5374461029", ",", "51.3844884546", ",", "51.5780664881", ",", "51.5783041058", ",", "51.5411829609", ",", "51.5983276453", ",", "51.559984195", ",", "51.3759359634", ",", "0", ",", "51.5017776591", ",", "51.5487792792", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4140841685", ",", "51.4033404029", ",", "51.6456137231", ",", "51.4742011843", ",", "51.3533894902", ",", "51.4742011843", ",", "51.3709866185", ",", "51.4489502361", ",", "51.5517795732", ",", "51.4258149072", ",", "51.4368785652", ",", "51.6221754893", ",", "51.620900891", ",", "0", ",", "51.4279876261", ",", "0", ",", "0", ",", "51.6268056744", ",", "0", ",", "0", ",", "0", ",", "51.5574285281", ",", "51.5759133713", ",", "51.5141240903", ",", "51.5279131596", ",", "51.4710438219", ",", "0", ",", "51.383651451", ",", "51.4946196209", ",", "51.3953051801", ",", "51.3563524788", ",", "51.5792962841", ",", "51.5281268034", ",", "0", ",", "51.5374035712", ",", "51.5715583222", ",", "0", ",", "51.4911112192", ",", "51.4944731701", ",", "51.6450688336", ",", "51.5697246972", ",", "51.4121070841", ",", "51.4291173413", ",", "51.6470844279", ",", "51.5168747378", ",", "51.609227785", ",", "51.4675039121", ",", "51.6486103609", ",", "0", ",", "51.460729995", ",", "51.3711137884", ",", "51.4862634699", ",", "51.3867187592", ",", "51.4853399626", ",", "51.6014547124", ",", "51.5975504126", ",", "0", ",", "0", ",", "51.5245896511", ",", "51.3955151256", ",", "51.365436988", ",", "0", ",", "51.4504188829", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5236856029", ",", "51.6102751957", ",", "51.6102751957", ",", "51.3503623849", ",", "51.3485986221", ",", "51.523437557", ",", "0", ",", "51.5719222326", ",", "51.5774039969", ",", "51.5803391395", ",", "51.5728932624", ",", "51.5803304668", ",", "51.573374038", ",", "51.3423406676", ",", "51.4993656423", ",", "51.5020080303", ",", "51.4993656423", ",", "51.4993656423", ",", "51.4933861838", ",", "51.5100402158", ",", "0", ",", "51.399551096", ",", "51.5179915002", ",", "51.5179915002", ",", "0", ",", "51.622892736", ",", "0", ",", "0", ",", "51.5207550426", ",", "51.5209212139", ",", "51.5478746913", ",", "51.5654389635", ",", "51.5676196715", ",", "51.5760758551", ",", "51.5630814572", ",", "51.5515542279", ",", "51.5760758551", ",", "51.5631719909", ",", "51.5663742437", ",", "51.5674711349", ",", "51.3817408815", ",", "51.4515843353", ",", "51.5138528252", ",", "51.4346929359", ",", "0", ",", "51.4597631612", ",", "51.4042958115", ",", "51.604596222", ",", "0", ",", "0", ",", "51.6094978055", ",", "51.5617492869", ",", "0", ",", "51.382071616", ",", "51.6641100638", ",", "51.6613606136", ",", "51.5559999822", ",", "51.5979309048", ",", "51.5589784161", ",", "51.4121775826", ",", "51.5768628135", ",", "51.4538817866", ",", "51.456289101", ",", "51.4387278168", ",", "51.5317165931", ",", "0", ",", "0", ",", "51.4173064441", ",", "51.3681168695", ",", "51.4522064354", ",", "0", ",", "51.5328604499", ",", "51.6017791964", ",", "51.5549377556", ",", "51.5408162258", ",", "51.5234053597", ",", "51.5297565689", ",", "51.5190323848", ",", "0", ",", "51.4537229127", ",", "0", ",", "0", ",", "0", ",", "51.5267638633", ",", "51.5112577038", ",", "51.6578038802", ",", "51.4645358885", ",", "51.550328841", ",", "51.5033490279", ",", "0", ",", "51.5814349071", ",", "51.5464381825", ",", "51.5461858378", ",", "51.5461858378", ",", "51.6025523944", ",", "51.4716836231", ",", "51.4490853321", ",", "51.4756436244", ",", "51.6344976709", ",", "51.4080545477", ",", "0", ",", "0", ",", "0", ",", "51.6423817464", ",", "51.5638121534", ",", "51.5638121534", ",", "51.5683849178", ",", "51.6102279251", ",", "51.6036124558", ",", "51.5221760653", ",", "51.5091975477", ",", "51.5091975477", ",", "51.5091975477", ",", "51.4731765275", ",", "51.4369679302", ",", "0", ",", "51.4398337599", ",", "0", ",", "51.6243806136", ",", "51.4663287069", ",", "0", ",", "51.4738188986", ",", "51.4600022397", ",", "51.5961773027", ",", "51.4283726535", ",", "51.4283726535", ",", "51.5992110466", ",", "51.4283726535", ",", "51.4499129346", ",", "51.5500374839", ",", "51.6090552273", ",", "51.4283726535", ",", "51.4321039451", ",", "51.4321039451", ",", "51.5826675116", ",", "51.4277370121", ",", "51.5018268278", ",", "51.6441427928", ",", "0", ",", "51.3547654303", ",", "51.4489912396", ",", "51.3547654303", ",", "51.5977285224", ",", "51.3704577832", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5211671168", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5220489371", ",", "51.5220489371", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6498636108", ",", "51.6051345507", ",", "51.6159833443", ",", "51.6458710532", ",", "51.6458710532", ",", "51.5216783527", ",", "51.5524123695", ",", "0", ",", "51.5222741532", ",", "51.5266916604", ",", "51.3961493706", ",", "0", ",", "51.5049896364", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.585789578", ",", "51.590738898", ",", "0", ",", "51.5235963034", ",", "0", ",", "51.5182804862", ",", "51.4660801971", ",", "51.5008369609", ",", "51.5159897397", ",", "51.5156230394", ",", "51.5099184421", ",", "0", ",", "0", ",", "0", ",", "51.5250048274", ",", "51.5250048274", ",", "51.4745452745", ",", "51.4821694295", ",", "51.4913859791", ",", "51.480258826", ",", "51.5250048274", ",", "51.5223447427", ",", "51.5250048274", ",", "51.5250048274", ",", "51.5232784011", ",", "51.5154095268", ",", "0", ",", "51.5217352381", ",", "51.5317200515", ",", "51.5299539593", ",", "51.420424794", ",", "51.6358352248", ",", "0", ",", "51.5616822932", ",", "51.4092995135", ",", "51.5623018573", ",", "51.3835622583", ",", "51.5622085984", ",", "51.4430644779", ",", "51.4305398931", ",", "51.4605290322", ",", "51.5237945803", ",", "51.4205455952", ",", "51.5616822932", ",", "51.5608942656", ",", "51.4142852617", ",", "51.5641614095", ",", "51.5574642038", ",", "51.5813578958", ",", "51.5616822932", ",", "51.4931721628", ",", "51.4687624032", ",", "51.5705066122", ",", "51.5068043561", ",", "51.5038853094", ",", "0", ",", "51.5624929212", ",", "51.6580954296", ",", "51.5371886817", ",", "51.5469778482", ",", "51.6557099518", ",", "51.655483117", ",", "51.4535891327", ",", "51.3898864253", ",", "51.3803698625", ",", "51.6683344022", ",", "0", ",", "0", ",", "51.6637500463", ",", "51.654219299", ",", "51.4772649411", ",", "51.6159420899", ",", "51.4326980706", ",", "0", ",", "0", ",", "0", ",", "51.5424431412", ",", "51.5231652633", ",", "51.5193619273", ",", "51.5193619273", ",", "51.5279459076", ",", "51.5241987701", ",", "51.5323524795", ",", "51.5445806416", ",", "51.5294781607", ",", "51.5177914732", ",", "51.5217528404", ",", "51.5193619273", ",", "51.5324088724", ",", "51.5193619273", ",", "51.5819241909", ",", "0", ",", "0", ",", "0", ",", "51.4882253363", ",", "0", ",", "51.6620403459", ",", "0", ",", "0", ",", "51.6071221609", ",", "51.6290009429", ",", "51.6293680074", ",", "51.4525795792", ",", "51.4001206812", ",", "51.5302710218", ",", "51.6239255634", ",", "51.4909033895", ",", "51.4781706661", ",", "51.4749806416", ",", "51.4739695718", ",", "51.4796844818", ",", "51.4739695718", ",", "51.4812019484", ",", "51.4724822583", ",", "51.4739695718", ",", "51.4739695718", ",", "51.4774516363", ",", "51.4739695718", ",", "51.4739695718", ",", "51.481718115", ",", "51.545877", ",", "51.5004532081", ",", "51.3444358763", ",", "0", ",", "51.4649628674", ",", "51.4798168303", ",", "0", ",", "51.422685585", ",", "51.5928219027", ",", "51.4214575674", ",", "51.5893506512", ",", "51.3642875353", ",", "51.4847901291", ",", "51.4131966127", ",", "51.4856634304", ",", "51.5620760235", ",", "51.4964452559", ",", "0", ",", "0", ",", "0", ",", "51.4855335926", ",", "0", ",", "51.4959209847", ",", "51.5443215605", ",", "51.4959209847", ",", "51.5457286787", ",", "51.6061317667", ",", "51.5895616197", ",", "51.4968509734", ",", "51.4959209847", ",", "51.579740114", ",", "51.4857156913", ",", "51.509594224", ",", "51.5681238305", ",", "51.5306468887", ",", "0", ",", "51.4324662078", ",", "0", ",", "51.4679381053", ",", "51.4308405489", ",", "51.4319821924", ",", "51.4266069598", ",", "51.4812324531", ",", "51.5909660207", ",", "51.6546380026", ",", "51.577823621", ",", "51.5310716851", ",", "51.6177777293", ",", "51.6123110388", ",", "51.6117602182", ",", "51.466411998", ",", "51.577823621", ",", "51.5684292952", ",", "51.5766292578", ",", "51.4921734789", ",", "51.4438255376", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3973225781", ",", "51.4111449136", ",", "51.333669657", ",", "51.450397187", ",", "51.4732163721", ",", "51.6028770072", ",", "51.595747697", ",", "51.4532873469", ",", "51.5986432708", ",", "51.5986432708", ",", "51.4496358288", ",", "51.442289571", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4088500093", ",", "51.5996513394", ",", "51.5243232409", ",", "51.5024363696", ",", "0", ",", "51.6705620313", ",", "51.4843066763", ",", "51.4917918613", ",", "51.5014403083", ",", "51.511994378", ",", "0", ",", "51.6042475594", ",", "51.4816916171", ",", "0", ",", "51.5613737137", ",", "51.5285889111", ",", "51.5333710271", ",", "0", ",", "51.4610877947", ",", "51.5042651936", ",", "0", ",", "51.5273477029", ",", "51.5216443625", ",", "0", ",", "0", ",", "51.4806474025", ",", "51.4804891737", ",", "0", ",", "51.3802577564", ",", "51.3796342646", ",", "51.3792127372", ",", "51.4202338541", ",", "51.5507939096", ",", "51.5476326446", ",", "51.5492053466", ",", "51.5435153443", ",", "51.5274478322", ",", "51.5451782131", ",", "51.5429504956", ",", "51.544678061", ",", "51.5602698715", ",", "51.4915888541", ",", "0", ",", "51.4308285685", ",", "0", ",", "0", ",", "0", ",", "51.6586657035", ",", "51.6654861213", ",", "51.6657815072", ",", "51.6529360139", ",", "51.6404767564", ",", "51.6681514208", ",", "51.4269671975", ",", "0", ",", "51.6466272527", ",", "0", ",", "51.5384136076", ",", "51.5350087014", ",", "51.5384136076", ",", "0", ",", "51.3094804452", ",", "51.4943243566", ",", "51.3647577703", ",", "51.6089319415", ",", "51.4554178309", ",", "51.604282693", ",", "51.5829899048", ",", "51.606201086", ",", "51.6054693335", ",", "51.6095242893", ",", "51.604282693", ",", "51.6083052705", ",", "51.5866190989", ",", "51.5900293879", ",", "51.585576449", ",", "51.5729285835", ",", "51.585576449", ",", "51.585576449", ",", "51.5595964532", ",", "51.6083498678", ",", "0", ",", "51.5460718345", ",", "51.4528551312", ",", "51.6045103139", ",", "51.592711915", ",", "51.6143807737", ",", "0", ",", "51.5972308863", ",", "0", ",", "0", ",", "51.5082970618", ",", "0", ",", "0", ",", "51.4420975632", ",", "51.4420975632", ",", "51.600156606", ",", "0", ",", "51.3582035266", ",", "51.3577250955", ",", "0", ",", "0", ",", "51.5192754515", ",", "0", ",", "51.5979941333", ",", "51.6162611823", ",", "51.6112245388", ",", "51.6185445396", ",", "51.4025338547", ",", "0", ",", "51.5726616773", ",", "51.3508307349", ",", "51.5308040557", ",", "51.5286482134", ",", "51.4340501737", ",", "51.544620043", ",", "51.5401463277", ",", "0", ",", "51.6133772501", ",", "51.3718586019", ",", "51.6049368759", ",", "51.5121172237", ",", "0", ",", "51.44637234", ",", "0", ",", "0", ",", "51.490150842", ",", "51.4878880279", ",", "0", ",", "51.4329140892", ",", "51.4354625687", ",", "0", ",", "0", ",", "51.4309877158", ",", "0", ",", "51.4398377363", ",", "0", ",", "0", ",", "51.5783707536", ",", "51.5827018654", ",", "0", ",", "51.4329039756", ",", "0", ",", "0", ",", "51.4155327811", ",", "51.4100999205", ",", "51.4918627496", ",", "51.4919439427", ",", "51.4919439427", ",", "51.4924650232", ",", "51.4941251831", ",", "51.5160591929", ",", "51.4939644035", ",", "51.4932819583", ",", "51.492484174", ",", "51.4919439427", ",", "51.492099247", ",", "51.4936085708", ",", "51.4919439427", ",", "51.4932815876", ",", "0", ",", "0", ",", "51.6041203572", ",", "51.6041203572", ",", "51.632119496", ",", "51.6324119227", ",", "51.5555094655", ",", "51.5659514543", ",", "51.5559325784", ",", "51.5564452468", ",", "51.5566782084", ",", "51.5762349233", ",", "51.5681193222", ",", "51.5789651493", ",", "51.5709703213", ",", "51.4158211501", ",", "51.4059727712", ",", "51.4059727712", ",", "51.406672483", ",", "51.4059727712", ",", "51.4053681346", ",", "51.4059727712", ",", "51.4139928144", ",", "51.407412071", ",", "51.4181885425", ",", "51.4155854592", ",", "51.435797915", ",", "51.565601001", ",", "51.613030694", ",", "51.4349108215", ",", "51.4284086123", ",", "51.4922620064", ",", "51.4142636518", ",", "51.4148188361", ",", "0", ",", "51.4128674533", ",", "51.4257806023", ",", "0", ",", "51.3190364817", ",", "51.3190364817", ",", "51.3190364817", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.3288377495", ",", "51.5008514388", ",", "51.5272255038", ",", "51.4530306819", ",", "0", ",", "0", ",", "51.5299713357", ",", "51.5310318023", ",", "51.5293240206", ",", "51.511841944", ",", "0", ",", "51.5704430957", ",", "51.5674520788", ",", "51.5558047633", ",", "51.4815944463", ",", "51.3608540424", ",", "51.4452032222", ",", "51.5229687982", ",", "51.472652037", ",", "0", ",", "51.5131760458", ",", "51.5087834077", ",", "51.425105847", ",", "51.4295589846", ",", "0", ",", "51.6130798937", ",", "51.489343812", ",", "51.3386617228", ",", "51.4994320301", ",", "51.6109904685", ",", "51.4412688072", ",", "51.5827661878", ",", "51.5277102829", ",", "51.6633009645", ",", "51.4927498006", ",", "51.4603130989", ",", "51.6648384455", ",", "51.6074198475", ",", "51.6046438798", ",", "51.607750034", ",", "51.4310659359", ",", "51.5568600299", ",", "51.607750034", ",", "0", ",", "51.3205301083", ",", "51.4966019834", ",", "0", ",", "51.5181777052", ",", "51.6351181506", ",", "51.4683763003", ",", "51.5997502369", ",", "51.6067022901", ",", "51.6050502498", ",", "51.609301985", ",", "51.4432647635", ",", "0", ",", "51.536005592", ",", "51.5359438199", ",", "51.541194092", ",", "51.5432974131", ",", "51.5367185043", ",", "51.3628746971", ",", "51.5232720624", ",", "51.4846088779", ",", "0", ",", "51.4977731757", ",", "51.4808810411", ",", "51.4527107481", ",", "51.4528012016", ",", "51.4808810411", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.6471742977", ",", "0", ",", "51.4905109906", ",", "51.4905109906", ",", "51.4971407846", ",", "51.5459467527", ",", "51.4992093039", ",", "51.6054134125", ",", "51.4162506872", ",", "51.5932838988", ",", "51.5947461223", ",", "0", ",", "0", ",", "0", ",", "51.576936574", ",", "51.5775167967", ",", "51.5767097554", ",", "51.5824261372", ",", "51.5762211803", ",", "51.5775220095", ",", "0", ",", "51.3994464332", ",", "51.4941771315", ",", "51.3955058533", ",", "51.4941771315", ",", "51.4928084217", ",", "51.4586528945", ",", "51.4815485707", ",", "51.4994385545", ",", "0", ",", "51.6089768276", ",", "51.5799467073", ",", "51.5777765032", ",", "51.5888282674", ",", "51.5932710888", ",", "51.5573797677", ",", "51.5794162449", ",", "51.5920055107", ",", "51.5522171205", ",", "51.5522171205", ",", "51.4949193189", ",", "51.5696572107", ",", "51.5237082695", ",", "51.5586008767", ",", "51.5611622783", ",", "51.5245564336", ",", "51.5313671364", ",", "51.5284344248", ",", "51.4467514375", ",", "51.55684907", ",", "51.5245564336", ",", "51.5727192062", ",", "51.5808823322", ",", "51.5925067497", ",", "0", ",", "0", ",", "51.6063815669", ",", "51.5921257508", ",", "51.5926691142", ",", "51.5921257508", ",", "51.5784796819", ",", "51.3686482951", ",", "51.4448468594", ",", "0", ",", "51.4755075911", ",", "51.5424999975", ",", "51.374972973", ",", "0", ",", "0", ",", "51.6149566035", ",", "0", ",", "0", ",", "0", ",", "51.541559142", ",", "51.541559142", ",", "51.496256943", ",", "0", ",", "0", ",", "51.5674864835", ",", "51.5444623931", ",", "51.5692959205", ",", "0", ",", "0", ",", "51.4759565997", ",", "51.3108111452", ",", "51.6280911895", ",", "0", ",", "51.4083591206", ",", "51.4985228204", ",", "0", ",", "51.3953882018", ",", "51.6429781792", ",", "0", ",", "0", ",", "51.3706008049", ",", "51.3783538217", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.5395909487", ",", "51.5395909487", ",", "51.5395909487", ",", "51.5395909487", ",", "51.5395909487", ",", "51.5395909487", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "51.4304039104", ",", "51.523304839", ",", "0", ",", "51.6087909611", ",", "51.6056888277", ",", "51.6074821551", ",", "51.6187391455", ",", "0", ",", "51.4670763174", ",", "51.5220543855", ",", "51.4638271603", ",", "0", ",", "51.4796833191", ",", "0", ",", "51.5020068085", ",", "51.3787758598", ",", "51.4998529473", ",", "51.5947225224", ",", "51.5152455829", ",", "51.5153052284", ",", "0", ",", "51.5305925205", ",", "0", ",", "51.5815525615", ",", "51.6169405426", ",", "51.6089792395", ",", "51.5874806501", ",", "51.5614410666", ",", "51.5266193509", ",", "51.5507044103", ",", "51.547230012", ",", "51.547230012", ",", "0", ",", "0", ",", "0", ",", "51.6403095033", ",", "0", ",", "51.3215970675", ",", "51.5729136907", ",", "51.3876327762", ",", "0", ",", "51.5040158257", ",", "51.6337713163", ",", "51.6426948", ",", "51.6403612451", ",", "51.5427096666", ",", "51.3396024611", ",", "51.6119992845", ",", "51.3989138047", ",", "51.5136738885", ",", "51.5642222745", ",", "51.5952732168", ",", "51.5512161929", ",", "51.5513680425", ",", "0", ",", "51.5918416314", ",", "0", ",", "51.4249366107", ",", "51.4165510298", ",", "51.4280415066", ",", "51.513286398", ",", "51.5156230078", ",", "51.3695268176", ",", "51.5246880795", ",", "51.5234899942", ",", "51.3791927628", ",", "51.3969731344", ",", "51.3881461218", ",", "51.3775627604", ",", "51.5253655734", ",", "51.3924210629", ",", "51.5045735905", ",", "51.3765104588", ",", "51.5070716715", ",", "51.3987227699", ",", "51.5034133094", ",", "51.4986586124", ",", "51.3763223417", ",", "51.3791458421", ",", "51.5234282126", ",", "51.3774489086", ",", "51.3916128054", ",", "51.3905224581", ",", "0", ",", "0", ",", "51.5089944029", ",", "51.4119931973", ",", "51.5750665195", ",", "51.5051526047", ",", "51.453090131", ",", "51.5780950809", ",", "0", ",", "51.3806986393", ",", "0", ",", "0", ",", "51.4707685185", ",", "51.4672548629", ",", "51.4545170699", ",", "51.4306525511", ",", "51.5695557153", ",", "51.4582447807", ",", "51.5823320609", ",", "51.5823320609", ",", "51.3817322411", ",", "0", ",", "51.4243157869", ",", "0", ",", "51.3612959504", ",", "0", ",", "0", ",", "0", ",", "51.601947467", ",", "51.6023412725", ",", "51.6023412725", ",", "51.6037942221", ",", "0", ",", "0", ",", "51.5225138041", ",", "51.3589729292", ",", "0", ",", "0", ",", "51.4494267152", ",", "51.5284047598", ",", "51.445168244", ",", "51.4453497705", ",", "51.4653483121", ",", "51.5304819153", ",", "51.4637390347", ",", "51.5553440742", ",", "51.4515083683", ",", "51.6300365379", ",", "51.6242680409", ",", "51.4360295083", ",", "51.5952179872", ",", "51.5935351545", ",", "51.5415227144", ",", "51.4383771487", ",", "51.4383771487", ",", "51.3484238008", ",", "51.3561108622", ",", "51.5781698847", ",", "51.4436266078", ",", "51.5778565123", ",", "51.4524285515", ",", "51.3613689328", ",", "51.5778565123", ",", "51.3486967616", ",", "51.5778565123", ",", "51.4450295952", ",", "51.4721363862", ",", "0", ",", "0", ",", "0", ",", "51.4589563958", ",", "51.4711779135", ",", "51.472190419", ",", "51.4802140243", ",", "51.4815059995", "}", ";", "public", "double", "[", "]", "longitudes", "=", "{", "0", ",", "0.05718690055", ",", "0.1093859274", ",", "-", "0.06586421045", ",", "-", "0.4007713553", ",", "-", "0.3108363214", ",", "-", "0.47343858685", ",", "0", ",", "0.1959405839", ",", "-", "0.05417042935", ",", "-", "0.0434339958", ",", "-", "0.0595895619", ",", "-", "0.0581249585", ",", "-", "0.2406103712", ",", "-", "0.3661341455", ",", "0", ",", "-", "0.2230023833", ",", "0", ",", "-", "0.108927369933", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3970389073", ",", "-", "0.436379075", ",", "-", "0.4358738903", ",", "-", "0.4358738903", ",", "-", "0.06722177675", ",", "-", "0.35429309655", ",", "-", "0.0240640552333", ",", "-", "0.0240640552333", ",", "-", "0.0260006722", ",", "-", "0.21181531545", ",", "-", "0.2110167434", ",", "-", "0.2740557748", ",", "0", ",", "0", ",", "0.11258547195", ",", "-", "0.192338163333", ",", "-", "0.20468603305", ",", "-", "0.1738612053", ",", "-", "0.17665822525", ",", "-", "0.19660658665", ",", "-", "0.179997808538", ",", "-", "0.182671543475", ",", "-", "0.1755756816", ",", "-", "0.1805189266", ",", "-", "0.19872772225", ",", "-", "0.0855351936", ",", "-", "0.1068334857", ",", "-", "0.107106903767", ",", "-", "0.105655101567", ",", "-", "0.104495556", ",", "-", "0.0864197908833", ",", "-", "0.0872847723", ",", "0", ",", "-", "0.0297397494", ",", "0", ",", "0.2392931031", ",", "-", "0.1536502483", ",", "-", "0.0903913084", ",", "0.05102159465", ",", "-", "0.2463400091", ",", "-", "0.0684441835", ",", "-", "0.3453431108", ",", "-", "0.26653591005", ",", "-", "0.2756321008", ",", "-", "0.0229438458", ",", "0", ",", "-", "0.3251885058", ",", "-", "0.2598754674", ",", "0", ",", "0.16811049385", ",", "0", ",", "0.0381567321", ",", "0", ",", "-", "0.1109094841", ",", "-", "0.1985795366", ",", "-", "0.1779325093", ",", "-", "0.13587923395", ",", "0", ",", "0.11948645695", ",", "0.0225953469", ",", "0.1442263179", ",", "0", ",", "-", "0.2360723423", ",", "0", ",", "0.0645950777", ",", "-", "0.11812717598", ",", "0", ",", "-", "0.2786061375", ",", "0.06429939365", ",", "-", "0.24424175125", ",", "-", "0.0940372518", ",", "0.0859185307", ",", "0", ",", "-", "0.1606053307", ",", "-", "0.1045758698", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1634183887", ",", "0.0182675768", ",", "-", "0.0283917579", ",", "0.1227541217", ",", "-", "0.2215359888", ",", "-", "0.2457062396", ",", "0", ",", "-", "0.0746655225", ",", "0", ",", "0", ",", "-", "0.0326327675", ",", "-", "0.14660838465", ",", "-", "0.1079427089", ",", "0.11749737455", ",", "0.11881488305", ",", "0.1216077571", ",", "0.0683899930667", ",", "0.0683899930667", ",", "-", "0.0620089063", ",", "0", ",", "0.1509784415", ",", "0.19222132785", ",", "0.1508700355", ",", "0", ",", "0", ",", "0", ",", "-", "0.0331966237", ",", "0.1526276751", ",", "0", ",", "-", "0.0347822003", ",", "-", "0.1670337865", ",", "-", "0.201618023", ",", "0.1589809955", ",", "-", "0.408955366", ",", "0.01743789475", ",", "0.0248621503333", ",", "0.0076686945", ",", "-", "0.0507835416", ",", "-", "0.04564107325", ",", "-", "0.05330223615", ",", "-", "0.05407605", ",", "-", "0.051852809", ",", "-", "0.05330223615", ",", "-", "0.05927095115", ",", "0", ",", "0.0020612485", ",", "0.00978057015", ",", "0.1905345115", ",", "0.02349172225", ",", "0.12958411255", ",", "0.02349172225", ",", "-", "0.2046545723", ",", "-", "0.0179439570667", ",", "-", "0.0402272932", ",", "0.1906392718", ",", "-", "0.0008699074", ",", "-", "0.054077492", ",", "-", "0.0302224644", ",", "-", "0.00487912233333", ",", "-", "0.1216270468", ",", "-", "0.0376369498", ",", "0.1094933425", ",", "-", "0.13639288865", ",", "-", "0.137547181", ",", "0.1154997744", ",", "0", ",", "0", ",", "0", ",", "-", "0.1020728469", ",", "0", ",", "-", "0.36485342845", ",", "0", ",", "-", "0.1414649416", ",", "-", "0.14095167245", ",", "-", "0.154046111", ",", "-", "0.14578622845", ",", "-", "0.1639969405", ",", "-", "0.149976342", ",", "-", "0.1958898872", ",", "-", "0.1967770978", ",", "-", "0.0719817058", ",", "-", "0.0213078799", ",", "0.126696065", ",", "-", "0.2538860676", ",", "-", "0.071860963", ",", "-", "0.074881217", ",", "-", "0.2845289816", ",", "-", "0.1744836649", ",", "-", "0.0642588387", ",", "0", ",", "0", ",", "-", "0.03105273065", ",", "0.1270843879", ",", "-", "0.1062661141", ",", "-", "0.02930102835", ",", "-", "0.02018692455", ",", "-", "0.0630492831", ",", "0.07436920645", ",", "0", ",", "-", "0.11318696385", ",", "0", ",", "0", ",", "-", "0.3309532316", ",", "-", "0.20280930445", ",", "-", "0.3869611331", ",", "-", "0.17048926005", ",", "0.19981473795", ",", "0.05393883", ",", "-", "0.4159683682", ",", "-", "0.209610334425", ",", "-", "0.39183811365", ",", "-", "0.0026173491", ",", "-", "0.15126253765", ",", "-", "0.09591123235", ",", "-", "0.1254312655", ",", "0.28657687365", ",", "-", "0.0886346826", ",", "0", ",", "0.1754557623", ",", "-", "0.009256376", ",", "0.1751784377", ",", "0", ",", "0.0701579906", ",", "0.1795430534", ",", "-", "0.41743836255", ",", "-", "0.0461436312", ",", "0.19312259345", ",", "-", "0.1191703815", ",", "-", "0.0509534984", ",", "0.0240909263", ",", "-", "0.1274845327", ",", "-", "0.1274904081", ",", "-", "0.4197499773", ",", "0.08149633045", ",", "-", "0.0534655095", ",", "0", ",", "-", "0.1826818903", ",", "-", "0.0169151881", ",", "0", ",", "0", ",", "-", "0.14737565695", ",", "-", "0.16280517075", ",", "-", "0.2624541338", ",", "-", "0.16629703665", ",", "0.0079016565", ",", "0", ",", "-", "0.1046890696", ",", "-", "0.02359446785", ",", "-", "0.1753027971", ",", "-", "0.1579301553", ",", "-", "0.1577063542", ",", "-", "0.1778315047", ",", "-", "0.06447798385", ",", "-", "0.01073780905", ",", "0", ",", "0.0942971295", ",", "-", "0.445964918", ",", "0.0396774352", ",", "0.1533543367", ",", "0", ",", "0.1453810118", ",", "-", "0.20616660485", ",", "-", "0.2079229461", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2187261224", ",", "0", ",", "-", "0.1983163969", ",", "0", ",", "0.26724864665", ",", "-", "0.0041118412", ",", "-", "0.196317283975", ",", "-", "0.21768578955", ",", "-", "0.2142652817", ",", "-", "0.2104443462", ",", "-", "0.2111255837", ",", "-", "0.2220194512", ",", "-", "0.21037401365", ",", "-", "0.20840675225", ",", "-", "0.1856450814", ",", "-", "0.1784115347", ",", "-", "0.2115157919", ",", "-", "0.16860024275", ",", "-", "0.19484415055", ",", "0", ",", "-", "0.1738872928", ",", "0.0841367786", ",", "-", "0.3828544052", ",", "0.04225618805", ",", "-", "0.2818441963", ",", "-", "0.3489497788", ",", "-", "0.351154889", ",", "-", "0.35017755695", ",", "-", "0.1053160832", ",", "-", "0.237121256", ",", "-", "0.1912814069", ",", "0", ",", "0", ",", "0.14174270325", ",", "0", ",", "-", "0.150841150317", ",", "0", ",", "0", ",", "0.0010672948", ",", "0.18440014285", ",", "0.0275502493", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3374136294", ",", "0", ",", "0", ",", "0.01247881085", ",", "-", "0.2882173852", ",", "0", ",", "0.1286409545", ",", "0.1086500125", ",", "-", "0.2188118942", ",", "0", ",", "-", "0.0580174839", ",", "-", "0.0609906249", ",", "0.10786987665", ",", "0.0846066245", ",", "0.0725318210333", ",", "0.1104413923", ",", "0.0782013481", ",", "0.0696107089", ",", "-", "0.2392523378", ",", "0.21541115855", ",", "0.2131457162", ",", "0.2193992175", ",", "0.0233770956", ",", "-", "0.118378882275", ",", "-", "0.27243129825", ",", "-", "0.2797159806", ",", "-", "0.203596012725", ",", "-", "0.2092159346", ",", "0.0676527883", ",", "0.0648472088", ",", "0.06607993095", ",", "0.06548534305", ",", "0.0734346854", ",", "0", ",", "0.1474575116", ",", "-", "0.2226655349", ",", "-", "0.1310233377", ",", "-", "0.376328988", ",", "-", "0.378316645", ",", "0", ",", "0", ",", "0", ",", "0.0865375162", ",", "-", "0.0420384482", ",", "-", "0.0073835189", ",", "-", "0.0557633858", ",", "-", "0.13622669215", ",", "-", "0.18529987015", ",", "-", "0.18529987015", ",", "0", ",", "-", "0.08831942125", ",", "-", "0.35812384175", ",", "-", "0.31167279465", ",", "0", ",", "0.1795180676", ",", "0", ",", "0", ",", "0", ",", "-", "0.09033334375", ",", "0", ",", "0", ",", "0", ",", "-", "0.2050312727", ",", "-", "0.217740357225", ",", "-", "0.217740357225", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0827670102", ",", "0.0803243454", ",", "-", "0.0382712092", ",", "0", ",", "0.0406722253", ",", "-", "0.3743635216", ",", "0", ",", "0", ",", "0", ",", "-", "0.1939594418", ",", "0", ",", "0", ",", "-", "0.2037311431", ",", "0", ",", "-", "0.241919513", ",", "0.2469597491", ",", "0.2492465751", ",", "-", "0.3308654363", ",", "-", "0.2375258829", ",", "0.1473538477", ",", "-", "0.1716724156", ",", "-", "0.06341745005", ",", "0.1407794064", ",", "-", "0.29893323725", ",", "-", "0.2262741756", ",", "-", "0.0076416909", ",", "-", "0.0076416909", ",", "0.02412716835", ",", "0.0221538607", ",", "-", "0.0169100128", ",", "-", "0.0987631582", ",", "-", "0.0986190311", ",", "0.0115843254", ",", "-", "0.00413197585", ",", "-", "0.30545907625", ",", "-", "0.1564687651", ",", "-", "0.16479350225", ",", "0", ",", "-", "0.1303857762", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0526236181", ",", "-", "0.2380810009", ",", "-", "0.25801041145", ",", "0.206036987375", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.14785062985", ",", "-", "0.29183403685", ",", "0", ",", "-", "0.2182379279", ",", "-", "0.098400923", ",", "-", "0.3303308401", ",", "-", "0.32696224205", ",", "-", "0.0619893575", ",", "-", "0.1156051992", ",", "0", ",", "0", ",", "0", ",", "-", "0.2620370338", ",", "-", "0.0845894086", ",", "-", "0.0839688519", ",", "-", "0.08346409155", ",", "-", "0.0860360608", ",", "-", "0.08502376855", ",", "-", "0.2377173168", ",", "0.12252614195", ",", "-", "0.10029278485", ",", "-", "0.41342995545", ",", "0", ",", "0", ",", "-", "0.299771937133", ",", "-", "0.0431896065", ",", "-", "0.0725838388", ",", "-", "0.0711737676", ",", "0.0506897542", ",", "-", "0.0960276342", ",", "-", "0.24069682905", ",", "-", "0.3035721118", ",", "0", ",", "-", "0.4414451812", ",", "-", "0.35471342005", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.1337953236", ",", "-", "0.16591986695", ",", "-", "0.2360826924", ",", "-", "0.2441507855", ",", "-", "0.2157127247", ",", "-", "0.2441507855", ",", "-", "0.0006616661", ",", "-", "0.4142168112", ",", "-", "0.0523755206", ",", "0.00159434185", ",", "-", "0.1615694504", ",", "-", "0.2815961941", ",", "-", "0.2555398577", ",", "0", ",", "-", "0.1265522546", ",", "0", ",", "0", ",", "-", "0.2729545926", ",", "0", ",", "0", ",", "0", ",", "-", "0.1474067043", ",", "-", "0.437560939", ",", "-", "0.0109742082", ",", "0.1085418782", ",", "-", "0.18504175015", ",", "0", ",", "-", "0.2028302084", ",", "-", "0.2268564768", ",", "-", "0.2239937659", ",", "0.0891189811", ",", "0.0629275754", ",", "-", "0.0501125216", ",", "0", ",", "-", "0.1475207004", ",", "0.05572951995", ",", "0", ",", "-", "0.18069385315", ",", "-", "0.182540869567", ",", "-", "0.1777381437", ",", "-", "0.02414006075", ",", "-", "0.28059101545", ",", "-", "0.34305507185", ",", "-", "0.1830417234", ",", "-", "0.1844237587", ",", "-", "0.0484585602", ",", "-", "0.158246060767", ",", "-", "0.0482177467", ",", "0", ",", "0.131428719", ",", "0.0635619199", ",", "0.07848052755", ",", "-", "0.1617266921", ",", "-", "0.3003858835", ",", "0.174014786", ",", "0.15286899775", ",", "0", ",", "0", ",", "0.00473433445", ",", "-", "0.0429921562", ",", "0.11036378405", ",", "0", ",", "-", "0.37925043655", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2065619451", ",", "-", "0.2545607572", ",", "-", "0.2545607572", ",", "-", "0.01025561685", ",", "-", "0.0107197804", ",", "-", "0.0952901368", ",", "0", ",", "-", "0.194244419713", ",", "-", "0.193576411375", ",", "-", "0.2127468467", ",", "-", "0.19570708805", ",", "-", "0.2101130681", ",", "-", "0.1994907112", ",", "-", "0.0479363429", ",", "-", "0.23775193315", ",", "-", "0.227016348767", ",", "-", "0.23775193315", ",", "-", "0.23775193315", ",", "-", "0.244090707", ",", "-", "0.2579336674", ",", "0", ",", "-", "0.12115882515", ",", "-", "0.35842489055", ",", "-", "0.35842489055", ",", "0", ",", "-", "0.16644794775", ",", "0", ",", "0", ",", "-", "0.1331546064", ",", "-", "0.13483795535", ",", "-", "0.1256693876", ",", "0.11040776995", ",", "0.11091281915", ",", "0.113339719467", ",", "0.1114817419", ",", "0.1068799434", ",", "0.113339719467", ",", "0.1144438265", ",", "0.1089071061", ",", "0.1146650082", ",", "0.1021603644", ",", "-", "0.0716194389", ",", "-", "0.0008393524", ",", "0.124842274", ",", "0", ",", "-", "0.07516150685", ",", "0.1031659871", ",", "0.22827208105", ",", "0", ",", "0", ",", "-", "0.3296779351", ",", "0.18882096645", ",", "0", ",", "-", "0.08248327765", ",", "-", "0.09415996365", ",", "-", "0.0868359282", ",", "-", "0.1474888011", ",", "0.0334849755", ",", "0.085971606", ",", "-", "0.289607252167", ",", "0.0198216765", ",", "-", "0.0264913044", ",", "-", "0.0279276898", ",", "-", "0.1972515757", ",", "0.12948072165", ",", "0", ",", "0", ",", "-", "0.1619090979", ",", "-", "0.0265898839", ",", "-", "0.1664230702", ",", "0", ",", "-", "0.3690497263", ",", "-", "0.0909445639", ",", "-", "0.1514100515", ",", "0.20594438205", ",", "-", "0.09857105395", ",", "-", "0.1023217429", ",", "-", "0.4440199928", ",", "0", ",", "0.06136986495", ",", "0", ",", "0", ",", "0", ",", "-", "0.0128453564", ",", "-", "0.0856811186", ",", "-", "0.0741756091", ",", "-", "0.2754751255", ",", "-", "0.1539696896", ",", "-", "0.31731645905", ",", "0", ",", "-", "0.2268851308", ",", "-", "0.0572767473", ",", "-", "0.0681335952", ",", "-", "0.0681335952", ",", "-", "0.24202654625", ",", "-", "0.3335145086", ",", "-", "0.1640870672", ",", "-", "0.1734611496", ",", "-", "0.20455628005", ",", "-", "0.08619185475", ",", "0", ",", "0", ",", "0", ",", "-", "0.097770532425", ",", "-", "0.0137697111", ",", "-", "0.0137697111", ",", "-", "0.3481400555", ",", "-", "0.255010302", ",", "0.20967341905", ",", "-", "0.4202005397", ",", "-", "0.30537051755", ",", "-", "0.30537051755", ",", "-", "0.30537051755", ",", "0.19526271995", ",", "-", "0.024472303", ",", "0", ",", "0.1381252998", ",", "0", ",", "-", "0.0650301117", ",", "-", "0.1695283178", ",", "0", ",", "-", "0.39997011795", ",", "-", "0.37450599285", ",", "-", "0.3866927336", ",", "0.1080552005", ",", "0.1080552005", ",", "-", "0.09200530615", ",", "0.1080552005", ",", "-", "0.201517284", ",", "-", "0.4446426185", ",", "-", "0.1824810018", ",", "0.1080552005", ",", "-", "0.25695110805", ",", "-", "0.25695110805", ",", "0.0568444548", ",", "-", "0.1226927986", ",", "0.1028920157", ",", "-", "0.1893744995", ",", "0", ",", "-", "0.0427884681", ",", "0.15664487095", ",", "-", "0.0427884681", ",", "-", "0.19848420995", ",", "0.0391429213", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.113759221133", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.11369875175", ",", "-", "0.11369875175", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.0616223709", ",", "-", "0.0852148863", ",", "-", "0.0857116147", ",", "-", "0.0605447813", ",", "-", "0.0605447813", ",", "-", "0.1620046877", ",", "-", "0.2536322049", ",", "0", ",", "-", "0.0769013983", ",", "-", "0.08251799985", ",", "0.0275915054", ",", "0", ",", "-", "0.0959875913667", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.1644561321", ",", "-", "0.2130316114", ",", "0", ",", "-", "0.1437492625", ",", "0", ",", "-", "0.1279802667", ",", "-", "0.4214837869", ",", "-", "0.0987902686", ",", "-", "0.0891004577", ",", "-", "0.13899283035", ",", "-", "0.0813201434", ",", "0", ",", "0", ",", "0", ",", "-", "0.2025673175", ",", "-", "0.2025673175", ",", "-", "0.39160721645", ",", "-", "0.3363943729", ",", "-", "0.30400721975", ",", "-", "0.3648640012", ",", "-", "0.2025673175", ",", "-", "0.2029747943", ",", "-", "0.2025673175", ",", "-", "0.2025673175", ",", "-", "0.20169830155", ",", "-", "0.08440441315", ",", "0", ",", "0.0566199063", ",", "0.0915595076", ",", "0.0872107661", ",", "-", "0.1064229736", ",", "-", "0.09154499785", ",", "0", ",", "0.12397671975", ",", "-", "0.1066382606", ",", "0.1095771352", ",", "-", "0.239799546633", ",", "0.12991692325", ",", "0.06478246395", ",", "-", "0.390065015333", ",", "-", "0.3954469728", ",", "-", "0.441363816", ",", "0.0693768213", ",", "0.12397671975", ",", "0.0824090233", ",", "-", "0.05064681925", ",", "-", "0.0916983935", ",", "-", "0.0904639993", ",", "-", "0.0990465924", ",", "0.12397671975", ",", "-", "0.14668839236", ",", "-", "0.4034009715", ",", "0.01448906915", ",", "-", "0.14299662073", ",", "-", "0.14794392745", ",", "0", ",", "0.1226654385", ",", "-", "0.047183622", ",", "0.0352822695", ",", "0.0303320284", ",", "-", "0.02927896905", ",", "-", "0.0485392998", ",", "0.03713154485", ",", "-", "0.17943012425", ",", "-", "0.17150162835", ",", "-", "0.1965011627", ",", "0", ",", "0", ",", "-", "0.1710382498", ",", "-", "0.0760335442", ",", "-", "0.3785077322", ",", "-", "0.2607279122", ",", "0.001916814", ",", "0", ",", "0", ",", "0", ",", "-", "0.345695520667", ",", "-", "0.3423388456", ",", "-", "0.3401490937", ",", "-", "0.3401490937", ",", "-", "0.35423199795", ",", "-", "0.35346614645", ",", "-", "0.3680874535", ",", "-", "0.3634531683", ",", "-", "0.3548038858", ",", "-", "0.35505932295", ",", "-", "0.3541093457", ",", "-", "0.3401490937", ",", "-", "0.369556083", ",", "-", "0.3401490937", ",", "-", "0.334331465433", ",", "0", ",", "0", ",", "0", ",", "0.11760014495", ",", "0", ",", "-", "0.15458702075", ",", "0", ",", "0", ",", "0.0407053781", ",", "-", "0.1185701115", ",", "-", "0.1829695451", ",", "0.0401092621", ",", "-", "0.2290331409", ",", "-", "0.4076943928", ",", "-", "0.1869144481", ",", "0.0802834437", ",", "-", "0.01523932875", ",", "0.0483955426", ",", "-", "0.02047621445", ",", "-", "0.0101112619", ",", "-", "0.02047621445", ",", "-", "0.0099731851", ",", "0.0022327185", ",", "-", "0.02047621445", ",", "-", "0.02047621445", ",", "-", "0.0142024244167", ",", "-", "0.02047621445", ",", "-", "0.02047621445", ",", "-", "0.00824158626667", ",", "-", "0.0643101890333", ",", "-", "0.3691768541", ",", "-", "0.0174121596", ",", "0", ",", "-", "0.1134410514", ",", "-", "0.35801028795", ",", "0", ",", "-", "0.02785732935", ",", "-", "0.23420182615", ",", "-", "0.12985426715", ",", "-", "0.07604017805", ",", "-", "0.1857680469", ",", "-", "0.2200001828", ",", "-", "0.1413798301", ",", "0.08391241635", ",", "0.07763675675", ",", "-", "0.080654251", ",", "0", ",", "0", ",", "0", ",", "-", "0.04238061905", ",", "0", ",", "-", "0.1453061874", ",", "-", "0.4459047539", ",", "-", "0.1453061874", ",", "-", "0.44962821025", ",", "0.02546054165", ",", "-", "0.1378923539", ",", "-", "0.145542169", ",", "-", "0.1453061874", ",", "-", "0.01679184525", ",", "-", "0.144265597", ",", "-", "0.32925640655", ",", "-", "0.42027477555", ",", "-", "0.1765875681", ",", "0", ",", "-", "0.32874146705", ",", "0", ",", "-", "0.0861704572", ",", "0.02085778458", ",", "0.0208333554", ",", "0.0351446532667", ",", "-", "0.2697901549", ",", "-", "0.2659338023", ",", "-", "0.1662583794", ",", "-", "0.0167309666", ",", "-", "0.0395766888", ",", "-", "0.00712351845", ",", "-", "0.281001083", ",", "-", "0.171366936", ",", "-", "0.363055518833", ",", "-", "0.0167309666", ",", "0.11887984485", ",", "0.1222056131", ",", "-", "0.03450418375", ",", "-", "0.0681975825", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.2674382619", ",", "0.1048752866", ",", "-", "0.12235359375", ",", "-", "0.4342221376", ",", "-", "0.11276211835", ",", "-", "0.0857431026", ",", "-", "0.2162785642", ",", "-", "0.44529944055", ",", "0.23297692145", ",", "0.23297692145", ",", "-", "0.0993279404", ",", "0.02310160225", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.3064090332", ",", "-", "0.02913696195", ",", "-", "0.11588247965", ",", "-", "0.43183382905", ",", "0", ",", "-", "0.0165001863", ",", "0.0627418911", ",", "-", "0.274912444583", ",", "-", "0.28395920165", ",", "-", "0.29236098065", ",", "0", ",", "-", "0.26013513555", ",", "-", "0.1841941208", ",", "0", ",", "0.0852876954", ",", "-", "0.3313219208", ",", "-", "0.4035490743", ",", "0", ",", "0.11614909715", ",", "-", "0.0873912108333", ",", "0", ",", "-", "0.11494304665", ",", "-", "0.26384057585", ",", "0", ",", "0", ",", "0.0544969173", ",", "0.0604380322", ",", "0", ",", "-", "0.1551739529", ",", "-", "0.155936705433", ",", "-", "0.16278190805", ",", "-", "0.0259204354", ",", "-", "0.052453687525", ",", "-", "0.05587870792", ",", "-", "0.06048790466", ",", "-", "0.0567234172", ",", "-", "0.0770726284", ",", "-", "0.05531845785", ",", "-", "0.02594925965", ",", "-", "0.0299272298", ",", "0.22893916705", ",", "0.0907878561", ",", "0", ",", "-", "0.00341608275", ",", "0", ",", "0", ",", "0", ",", "-", "0.2007816681", ",", "-", "0.19870384525", ",", "-", "0.1074299919", ",", "-", "0.1834582408", ",", "-", "0.0999423207", ",", "-", "0.175922489", ",", "0.1054442333", ",", "0", ",", "-", "0.06549943595", ",", "0", ",", "-", "0.0767401681667", ",", "-", "0.0684627619", ",", "-", "0.0767401681667", ",", "0", ",", "0.0375285043", ",", "0.1506083711", ",", "0.1028764757", ",", "0.2077580489", ",", "0.0397967959", ",", "0.09467656525", ",", "0.0041790467", ",", "0.10306201495", ",", "0.13314009925", ",", "0.1140554387", ",", "0.09467656525", ",", "0.10382365765", ",", "0.1252625041", ",", "0.16743430135", ",", "0.11976431025", ",", "0.146675627", ",", "0.11976431025", ",", "0.11976431025", ",", "0.076607569275", ",", "0.10990480108", ",", "0", ",", "0.14784854735", ",", "0.1519258597", ",", "-", "0.00244787995", ",", "0.00018182225", ",", "-", "0.2518754928", ",", "0", ",", "-", "0.05709501835", ",", "0", ",", "0", ",", "-", "0.3411349176", ",", "0", ",", "0", ",", "0.08624534785", ",", "0.08624534785", ",", "0.2474485949", ",", "0", ",", "-", "0.1064911087", ",", "-", "0.09777776415", ",", "0", ",", "0", ",", "-", "0.3384874203", ",", "0", ",", "-", "0.2337051871", ",", "-", "0.0174028074", ",", "-", "0.0309827322", ",", "-", "0.0266931942", ",", "-", "0.1718541177", ",", "0", ",", "0.1262709281", ",", "-", "0.147919024", ",", "-", "0.1765740895", ",", "-", "0.18092774065", ",", "0.0372188272", ",", "0.03665236115", ",", "-", "0.0894946325", ",", "0", ",", "-", "0.1528856891", ",", "-", "0.1961871827", ",", "-", "0.4171464225", ",", "0.0170136358", ",", "0", ",", "0.0628305179", ",", "0", ",", "0", ",", "0.1570097414", ",", "0.1497220163", ",", "0", ",", "-", "0.3066916968", ",", "-", "0.30538169225", ",", "0", ",", "0", ",", "-", "0.30718012995", ",", "0", ",", "-", "0.31256533245", ",", "0", ",", "0", ",", "0.08349664735", ",", "0.0755752008", ",", "0", ",", "-", "0.4182828937", ",", "0", ",", "0", ",", "-", "0.0724205450667", ",", "0.01416640615", ",", "-", "0.2262215734", ",", "-", "0.2238631026", ",", "-", "0.2238631026", ",", "-", "0.223575322793", ",", "-", "0.22597527465", ",", "-", "0.235421284575", ",", "-", "0.2237701639", ",", "-", "0.2178110001", ",", "-", "0.23253597355", ",", "-", "0.2238631026", ",", "-", "0.22402274375", ",", "-", "0.2254118867", ",", "-", "0.2238631026", ",", "-", "0.22460344615", ",", "0", ",", "0", ",", "-", "0.1486691418", ",", "-", "0.1486691418", ",", "-", "0.143112246867", ",", "-", "0.1424596743", ",", "-", "0.1654880622", ",", "-", "0.1771232093", ",", "-", "0.1770550197", ",", "-", "0.17792893715", ",", "-", "0.17845338725", ",", "-", "0.18963585395", ",", "-", "0.18383288825", ",", "-", "0.1913507339", ",", "-", "0.1841449494", ",", "-", "0.37182413342", ",", "-", "0.34323765915", ",", "-", "0.34323765915", ",", "-", "0.3380360899", ",", "-", "0.34323765915", ",", "-", "0.34149818365", ",", "-", "0.34323765915", ",", "-", "0.3603988334", ",", "-", "0.3458169474", ",", "-", "0.35883924055", ",", "-", "0.3720769895", ",", "-", "0.3770487695", ",", "0.002671041", ",", "-", "0.0180780436", ",", "-", "0.375979579", ",", "-", "0.373994815", ",", "-", "0.0982179244", ",", "-", "0.3126444387", ",", "-", "0.36610013475", ",", "0", ",", "-", "0.3622366582", ",", "-", "0.3761091245", ",", "0", ",", "-", "0.0645477186", ",", "-", "0.0645477186", ",", "-", "0.0645477186", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.0238236431", ",", "-", "0.2759991353", ",", "-", "0.01090057215", ",", "0.0119319735", ",", "0", ",", "0", ",", "-", "0.292620652067", ",", "-", "0.2948421631", ",", "-", "0.2921162398", ",", "-", "0.2933178566", ",", "0", ",", "-", "0.1147984543", ",", "-", "0.1223101716", ",", "-", "0.26499231315", ",", "-", "0.2118072888", ",", "-", "0.1259104139", ",", "-", "0.4197574684", ",", "-", "0.43809818485", ",", "-", "0.0698166257", ",", "0", ",", "-", "0.3370447874", ",", "-", "0.33642657125", ",", "-", "0.36315842385", ",", "-", "0.3908859016", ",", "0", ",", "-", "0.03894066005", ",", "-", "0.0210562924", ",", "-", "0.0734125156", ",", "-", "0.0135015417", ",", "0.1167812407", ",", "-", "0.108553907", ",", "0.2156483034", ",", "-", "0.1075825733", ",", "-", "0.10055637435", ",", "0.06409550665", ",", "-", "0.0956164633", ",", "-", "0.1019308902", ",", "-", "0.4818986396", ",", "-", "0.4831465015", ",", "-", "0.4963727304", ",", "0.1242495298", ",", "-", "0.46974139325", ",", "-", "0.4963727304", ",", "0", ",", "-", "0.06541054585", ",", "-", "0.3745079812", ",", "0", ",", "-", "0.0396836692", ",", "-", "0.0101784967", ",", "0.0320595933", ",", "-", "0.11185922675", ",", "-", "0.0917489707", ",", "-", "0.0734701686", ",", "0.2300408193", ",", "0.0150427513", ",", "0", ",", "-", "0.2572739877", ",", "-", "0.248196925067", ",", "-", "0.25423480715", ",", "-", "0.2358386732", ",", "-", "0.24027480825", ",", "0.08344692765", ",", "-", "0.1495503153", ",", "-", "0.11798828355", ",", "0", ",", "-", "0.4365033074", ",", "-", "0.4343879881", ",", "-", "0.4063790968", ",", "-", "0.4054260112", ",", "-", "0.4343879881", ",", "0", ",", "0", ",", "0", ",", "0", ",", "-", "0.07032581755", ",", "0", ",", "-", "0.45749463195", ",", "-", "0.45749463195", ",", "-", "0.46865218955", ",", "-", "0.1486664358", ",", "-", "0.41819982705", ",", "0.22596521505", ",", "-", "0.0891645474", ",", "0.23309083982", ",", "0.2357384977", ",", "0", ",", "0", ",", "0", ",", "-", "0.0986826684", ",", "-", "0.09869453055", ",", "-", "0.1052301009", ",", "-", "0.0989298318", ",", "-", "0.0961579852", ",", "-", "0.1065241353", ",", "0", ",", "-", "0.0603783836", ",", "-", "0.1786269139", ",", "-", "0.0681713149", ",", "-", "0.1786269139", ",", "-", "0.071111722", ",", "-", "0.0558392572", ",", "-", "0.2468786404", ",", "-", "0.16396588265", ",", "0", ",", "-", "0.3638749903", ",", "-", "0.337411384329", ",", "-", "0.3337566931", ",", "-", "0.3324933792", ",", "-", "0.34062135005", ",", "0.00645748185", ",", "-", "0.3273389565", ",", "-", "0.3289049022", ",", "0.1909598268", ",", "0.1909598268", ",", "0.1211592487", ",", "-", "0.33984722905", ",", "-", "0.1992379124", ",", "0.0070955322", ",", "-", "0.33276268345", ",", "-", "0.2005955826", ",", "-", "0.23722994275", ",", "-", "0.21604198915", ",", "-", "0.45733644005", ",", "-", "0.317239471", ",", "-", "0.2005955826", ",", "-", "0.3373112659", ",", "-", "0.3333652137", ",", "-", "0.346196691775", ",", "0", ",", "0", ",", "-", "0.340110835175", ",", "-", "0.3345165118", ",", "-", "0.3349441986", ",", "-", "0.3345165118", ",", "-", "0.337473860367", ",", "0.0127344796", ",", "0.15216090195", ",", "0", ",", "-", "0.2660683252", ",", "-", "0.1475084", ",", "-", "0.0455640267", ",", "0", ",", "0", ",", "-", "0.2422622401", ",", "0", ",", "0", ",", "0", ",", "0.0707385242", ",", "0.0707385242", ",", "0.1277408001", ",", "0", ",", "0", ",", "0.01073363745", ",", "-", "0.39788247585", ",", "-", "0.46625752975", ",", "0", ",", "0", ",", "-", "0.18928931605", ",", "-", "0.14446598715", ",", "-", "0.0735704812", ",", "0", ",", "-", "0.18067355775", ",", "-", "0.32725529775", ",", "0", ",", "-", "0.1047402121", ",", "-", "0.1794841287", ",", "0", ",", "0", ",", "0.0476981887", ",", "0.0419799498", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.13857325555", ",", "0.13857325555", ",", "0.13857325555", ",", "0.13857325555", ",", "0.13857325555", ",", "0.13857325555", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0", ",", "0.10386863935", ",", "0.0421064667667", ",", "0", ",", "-", "0.3702290649", ",", "-", "0.3786872306", ",", "-", "0.3750634223", ",", "0.00506780605", ",", "0", ",", "-", "0.423336267189", ",", "-", "0.1087324624", ",", "-", "0.416119704", ",", "0", ",", "-", "0.43302487715", ",", "0", ",", "-", "0.37128986585", ",", "-", "0.07728248795", ",", "-", "0.376467024025", ",", "-", "0.06229883325", ",", "-", "0.305095594", ",", "-", "0.3036232755", ",", "0", ",", "-", "0.0410390885", ",", "0", ",", "0.22038160235", ",", "0.18322748365", ",", "0.165077615967", ",", "0.1739537899", ",", "0.2319037852", ",", "0.1142201231", ",", "-", "0.167599822", ",", "-", "0.1604990209", ",", "-", "0.1604990209", ",", "0", ",", "0", ",", "0", ",", "-", "0.0087371546", ",", "0", ",", "-", "0.0953835992", ",", "0.1257631446", ",", "-", "0.0104284521", ",", "0", ",", "0.1114442854", ",", "-", "0.00924034195", ",", "-", "0.0062188587", ",", "-", "0.01152431085", ",", "-", "0.14271186705", ",", "-", "0.05822536315", ",", "-", "0.07086489345", ",", "0.0447215142", ",", "-", "0.0133286999", ",", "0.1885862429", ",", "-", "0.4150448231", ",", "-", "0.36920100315", ",", "-", "0.3704216227", ",", "0", ",", "-", "0.4073322869", ",", "0", ",", "-", "0.1899117184", ",", "-", "0.1873091252", ",", "-", "0.1891920048", ",", "-", "0.39039425195", ",", "-", "0.399158904433", ",", "-", "0.221895408", ",", "-", "0.431376963067", ",", "-", "0.4357090537", ",", "0.00644292645", ",", "-", "0.00440926355", ",", "0.0173104159667", ",", "0.01652407365", ",", "-", "0.4340734523", ",", "0.01747213875", ",", "-", "0.4198872554", ",", "0.0178357593", ",", "-", "0.4184174669", ",", "-", "0.01661793505", ",", "-", "0.420536166875", ",", "-", "0.4054251396", ",", "0.0109947128", ",", "0.01807382955", ",", "-", "0.4216996261", ",", "0.01059144", ",", "0.0132248606", ",", "0.104431589", ",", "0", ",", "0", ",", "-", "0.132003401225", ",", "-", "0.0345660004", ",", "0.2183479122", ",", "-", "0.0840925618", ",", "-", "0.2255948125", ",", "0.1212130536", ",", "0", ",", "-", "0.0513271299", ",", "0", ",", "0", ",", "0.1932247346", ",", "0.117766343", ",", "-", "0.0375473799", ",", "-", "0.1821329634", ",", "-", "0.1256434592", ",", "-", "0.43299633715", ",", "-", "0.0348159581", ",", "-", "0.0348159581", ",", "-", "0.2422960969", ",", "0", ",", "0.0111521928", ",", "0", ",", "-", "0.2856764398", ",", "0", ",", "0", ",", "0", ",", "-", "0.35634445125", ",", "-", "0.3571749859", ",", "-", "0.3571749859", ",", "-", "0.3565810121", ",", "0", ",", "0", ",", "-", "0.2193654767", ",", "-", "0.1062439154", ",", "0", ",", "0", ",", "0.18653074385", ",", "-", "0.4428354571", ",", "-", "0.3325229573", ",", "-", "0.33612121605", ",", "-", "0.34717054135", ",", "-", "0.44147422225", ",", "-", "0.36097011165", ",", "-", "0.1785355468", ",", "-", "0.3331770909", ",", "-", "0.33284646385", ",", "-", "0.00565436005", ",", "-", "0.0630734139", ",", "0.17789698425", ",", "0.1808629884", ",", "-", "0.27982698715", ",", "0.01738886315", ",", "0.01738886315", ",", "-", "0.0514044199", ",", "-", "0.0502020396", ",", "-", "0.2155669863", ",", "-", "0.36512242395", ",", "0.11425226125", ",", "-", "0.1795191863", ",", "0.0283388702", ",", "0.11425226125", ",", "-", "0.0488940426", ",", "0.11425226125", ",", "-", "0.2421041411", ",", "-", "0.4569265992", ",", "0", ",", "0", ",", "0", ",", "-", "0.466523849", ",", "-", "0.453327780413", ",", "-", "0.4548872376", ",", "-", "0.4909654554", ",", "-", "0.48202966165", "}", ";", "public", "String", "[", "]", "names", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ferns", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fieldway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"FishersWay\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Five", "Points\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ford", "Place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Forest", "Gate\"", ",", "\"\"", ",", "\"Forest", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Forest", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Four", "Wents\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Front", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Fulwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Furze", "Corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Galley", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gants", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gayfere", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Gayton", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Genoa", "Avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gibbon", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"Gidea", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gipsy", "Corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Glycena", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Goat", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Goddard", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Golden", "Lion\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Goodmayes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Goose", "Green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gordon", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gospel", "Oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Graburn", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Grange", "Hill\"", ",", "\"\"", ",", "\"Grange", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gravel", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gravesend\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Grays\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Great", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Green", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Green", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"Green", "Side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Greenford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Grove", "Farm\"", ",", "\"\"", ",", "\"Grove", "Green\"", ",", "\"\"", ",", "\"Grove", "Park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Gunnersbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hackbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hackney", "Wick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hadley", "Wood\"", ",", "\"\"", ",", "\"Hadrian", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"Haggerston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hainault\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hall", "Close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Ham", "Hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hamlet", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hampton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hampton", "Wick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hanau", "Bridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hanger", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hanser", "Grove\"", ",", "\"Hanwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Harlesden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Harold", "Wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Harrods\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Harts", "Lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Harvil", "Farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hatfields\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hatch", "End\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hatton", "Cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Havering", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Haydons", "Road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hayes", "End\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Hayes", "(Kent)\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"Heather", "Way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "public", "String", "[", "]", "simpleNames", "=", "{", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ferns", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fieldway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fishersway\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"five", "points\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ford", "place\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"forest", "gate\"", ",", "\"\"", ",", "\"forest", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"forest", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"four", "wents\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"front", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"fulwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"furze", "corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"galley", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gants", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gayfere", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"gayton", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"genoa", "avenue\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gibbon", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"gidea", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gipsy", "corner\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"glycena", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"goat", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"goddard", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"golden", "lion\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"goodmayes\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"goose", "green\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gordon", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gospel", "oak\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"graburn", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"grange", "hill\"", ",", "\"\"", ",", "\"grange", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gravel", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gravesend\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"grays\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"great", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"green", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"green", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"green", "side\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"greenford\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"grove", "farm\"", ",", "\"\"", ",", "\"grove", "green\"", ",", "\"\"", ",", "\"grove", "park\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"gunnersbury\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hackbridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hackney", "wick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hadley", "wood\"", ",", "\"\"", ",", "\"hadrian", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"haggerston\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hainault\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hall", "close\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"ham", "hill\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hamlet", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hampton\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hampton", "wick\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hanau", "bridge\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hanger", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hanser", "grove\"", ",", "\"hanwell\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"harlesden\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"harold", "wood\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"harrods\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"harts", "lane\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"harvil", "farm\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hatfields\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hatch", "end\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hatton", "cross\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"havering", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hawkdene", "e4", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"haydons", "road\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hayes", "end\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"hayes", "kent", "\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"heather", "way\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", ",", "\"\"", "}", ";", "}", "</s>" ]
8,571
[ "<s>", "package", "cz", ".", "fhejl", ".", "pubtran", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "InputStream", ";", "import", "java", ".", "net", ".", "URLEncoder", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Calendar", ";", "public", "class", "Provider", "extends", "AbstractProvider", "{", "private", "static", "String", "HOSTNAME", "=", "\"\"", ";", "@", "Override", "public", "Results", "findJourneys", "(", "AbstractSearchOptions", "abstractOptions", ")", "throws", "IOException", ",", "JourneyFinderException", "{", "SearchOptions", "options", "=", "(", "SearchOptions", ")", "abstractOptions", ";", "String", "typeOrigin", "=", "isPostCode", "(", "options", ".", "getFrom", "(", ")", ".", "trim", "(", ")", ")", "?", "\"locator\"", ":", "\"stop\"", ";", "String", "typeDestination", "=", "isPostCode", "(", "options", ".", "getTo", "(", ")", ".", "trim", "(", ")", ")", "?", "\"locator\"", ":", "\"stop\"", ";", "String", "from", "=", "URLEncoder", ".", "encode", "(", "options", ".", "getFrom", "(", ")", ",", "\"UTF-8\"", ")", ";", "String", "to", "=", "URLEncoder", ".", "encode", "(", "options", ".", "getTo", "(", ")", ",", "\"UTF-8\"", ")", ";", "Calendar", "when", "=", "options", ".", "getWhen", "(", ")", ";", "String", "hour", "=", "\"\"", "+", "when", ".", "get", "(", "Calendar", ".", "HOUR_OF_DAY", ")", ";", "String", "minute", "=", "\"\"", "+", "when", ".", "get", "(", "Calendar", ".", "MINUTE", ")", ";", "String", "day", "=", "\"\"", "+", "when", ".", "get", "(", "Calendar", ".", "DAY_OF_MONTH", ")", ";", "String", "yearMonth", "=", "\"\"", "+", "when", ".", "get", "(", "Calendar", ".", "YEAR", ")", ";", "int", "month", "=", "when", ".", "get", "(", "Calendar", ".", "MONTH", ")", "+", "1", ";", "if", "(", "month", "<", "10", ")", "yearMonth", "+=", "\"0\"", ";", "yearMonth", "+=", "month", ";", "String", "routeType", "=", "null", ";", "switch", "(", "options", ".", "prefferedMode", ")", "{", "case", "SearchOptions", ".", "MODE_FASTEST", ":", "routeType", "=", "\"LEASTTIME\"", ";", "break", ";", "case", "SearchOptions", ".", "MODE_FEWEST_CHANGES", ":", "routeType", "=", "\"\"", ";", "break", ";", "case", "SearchOptions", ".", "MODE_LEAST_WALKING", ":", "routeType", "=", "\"LEASTWALKING\"", ";", "break", ";", "}", "StringBuilder", "url", "=", "new", "StringBuilder", "(", "HOSTNAME", "+", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "from", ")", ";", "url", ".", "append", "(", "\"\"", "+", "typeOrigin", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "to", ")", ";", "url", ".", "append", "(", "\"\"", "+", "typeDestination", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"&itdDateDay=\"", ")", ".", "append", "(", "day", ")", ";", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "yearMonth", ")", ";", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "hour", ")", ";", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "minute", ")", ";", "if", "(", "options", ".", "isTimeDeparture", "(", ")", ")", "{", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "}", "else", "{", "url", ".", "append", "(", "\"\"", ")", ";", "}", "url", ".", "append", "(", "\"&routeType=\"", ")", ".", "append", "(", "routeType", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useRail", ")", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useDLR", ")", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useTube", ")", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useTram", ")", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useBus", ")", "url", ".", "append", "(", "\"\"", ")", ";", "if", "(", "options", ".", "useRiver", ")", "url", ".", "append", "(", "\"\"", ")", ";", "String", "changeSpeed", "=", "null", ";", "switch", "(", "options", ".", "walkingSpeed", ")", "{", "case", "SearchOptions", ".", "SPEED_AVERAGE", ":", "changeSpeed", "=", "\"normal\"", ";", "break", ";", "case", "SearchOptions", ".", "SPEED_FAST", ":", "changeSpeed", "=", "\"fast\"", ";", "break", ";", "case", "SearchOptions", ".", "SPEED_SLOW", ":", "changeSpeed", "=", "\"slow\"", ";", "break", ";", "}", "url", ".", "append", "(", "\"\"", ")", ".", "append", "(", "changeSpeed", ")", ";", "InputStream", "is", "=", "IOUtils", ".", "doGetRequestReturnStream", "(", "url", ".", "toString", "(", ")", ")", ";", "try", "{", "ArrayList", "<", "Journey", ">", "journeys", "=", "Parser", ".", "parseJourneys", "(", "is", ")", ";", "if", "(", "journeys", ".", "size", "(", ")", "==", "0", ")", "throw", "new", "ParseException", "(", ")", ";", "return", "new", "Results", "(", "options", ",", "journeys", ",", "when", ",", "options", ".", "isTimeDeparture", "(", ")", ")", ";", "}", "catch", "(", "JourneyFinderException", "e", ")", "{", "throw", "e", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "throw", "new", "ParseException", "(", ")", ";", "}", "}", "private", "static", "boolean", "isPostCode", "(", "String", "s", ")", "{", "s", "=", "s", ".", "toUpperCase", "(", ")", ";", "if", "(", "s", ".", "matches", "(", "\"\"", ")", ")", "return", "true", ";", "else", "return", "false", ";", "}", "}", "</s>" ]
8,572
[ "<s>", "import", "java", ".", "io", ".", "BufferedReader", ";", "import", "java", ".", "io", ".", "BufferedWriter", ";", "import", "java", ".", "io", ".", "File", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "InputStreamReader", ";", "import", "java", ".", "io", ".", "OutputStreamWriter", ";", "import", "java", ".", "text", ".", "Collator", ";", "import", "java", ".", "text", ".", "RuleBasedCollator", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Arrays", ";", "import", "java", ".", "util", ".", "Comparator", ";", "import", "java", ".", "util", ".", "Locale", ";", "import", "java", ".", "util", ".", "regex", ".", "*", ";", "public", "class", "Sort", "{", "private", "static", "final", "String", "RULES", "=", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", "+", "\"\"", ";", "public", "static", "void", "main", "(", "String", "[", "]", "args", ")", "{", "Pattern", "regex", "=", "Pattern", ".", "compile", "(", "\",\\\\W\"", ")", ";", "File", "dir", "=", "new", "File", "(", "\".\"", ")", ";", "File", "[", "]", "list", "=", "dir", ".", "listFiles", "(", ")", ";", "for", "(", "File", "dir2", ":", "list", ")", "{", "if", "(", "dir2", ".", "isDirectory", "(", ")", ")", "{", "try", "{", "File", "f", "=", "new", "File", "(", "dir2", ",", "\"stops.txt\"", ")", ";", "FileInputStream", "fis", "=", "new", "FileInputStream", "(", "f", ")", ";", "BufferedReader", "br", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "fis", ")", ")", ";", "ArrayList", "<", "String", ">", "stops", "=", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "String", "line", ";", "while", "(", "(", "line", "=", "br", ".", "readLine", "(", ")", ")", "!=", "null", ")", "{", "String", "stop", "=", "line", ".", "trim", "(", ")", ";", "if", "(", "stops", ".", "contains", "(", "stop", ")", "||", "stop", ".", "equals", "(", "\"\"", ")", ")", "System", ".", "out", ".", "println", "(", "\"\"", "+", "stop", ")", ";", "else", "stops", ".", "add", "(", "line", ".", "trim", "(", ")", ")", ";", "}", "br", ".", "close", "(", ")", ";", "fis", ".", "close", "(", ")", ";", "String", "[", "]", "stopsArray", "=", "new", "String", "[", "stops", ".", "size", "(", ")", "]", ";", "stops", ".", "toArray", "(", "stopsArray", ")", ";", "try", "{", "final", "RuleBasedCollator", "rbc", "=", "new", "RuleBasedCollator", "(", "RULES", ")", ";", "rbc", ".", "setStrength", "(", "Collator", ".", "IDENTICAL", ")", ";", "Arrays", ".", "sort", "(", "stopsArray", ",", "new", "Comparator", "<", "String", ">", "(", ")", "{", "@", "Override", "public", "int", "compare", "(", "String", "object1", ",", "String", "object2", ")", "{", "return", "rbc", ".", "compare", "(", "object1", ",", "object2", ")", ";", "}", "}", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "System", ".", "out", ".", "println", "(", "\"\"", ")", ";", "}", "FileOutputStream", "fos", "=", "new", "FileOutputStream", "(", "f", ")", ";", "BufferedWriter", "bw", "=", "new", "BufferedWriter", "(", "new", "OutputStreamWriter", "(", "fos", ")", ")", ";", "for", "(", "String", "stop", ":", "stopsArray", ")", "{", "bw", ".", "write", "(", "stop", "+", "\"n\"", ")", ";", "}", "bw", ".", "flush", "(", ")", ";", "bw", ".", "close", "(", ")", ";", "fos", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "}", "}", "}", "}", "}", "</s>" ]
8,573
[ "<s>", "package", "annis", ".", "gui", ".", "visualizers", ".", "partitur", ";", "import", "annis", ".", "gui", ".", "visualizers", ".", "iframe", ".", "partitur", ".", "TimeHelper", ";", "import", "static", "org", ".", "junit", ".", "Assert", ".", "assertTrue", ";", "import", "org", ".", "junit", ".", "Test", ";", "public", "class", "TimeHelperTest", "{", "private", "String", "time1", "=", "\"\"", ";", "private", "String", "time2", "=", "\"6\"", ";", "private", "String", "time3", "=", "\"45-\"", ";", "private", "String", "time4", "=", "\"98.0\"", ";", "private", "String", "time5", "=", "\"12.1211-\"", ";", "private", "String", "time6", "=", "\"-12\"", ";", "private", "String", "time7", "=", "\"-12.212\"", ";", "private", "String", "time8", "=", "\"-0.12\"", ";", "private", "String", "time9", "=", "\"-.543\"", ";", "@", "Test", "public", "void", "getStartTime", "(", ")", "{", "TimeHelper", "t", "=", "new", "TimeHelper", "(", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time1", ")", ".", "equals", "(", "\"12.1231\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time2", ")", ".", "equals", "(", "\"6\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time3", ")", ".", "equals", "(", "\"45\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time4", ")", ".", "equals", "(", "\"98.0\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time5", ")", ".", "equals", "(", "\"12.1211\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time6", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time7", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time8", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getStartTime", "(", "time9", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "}", "@", "Test", "public", "void", "getEndTime", "(", ")", "{", "TimeHelper", "t", "=", "new", "TimeHelper", "(", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time1", ")", ".", "equals", "(", "\"0.2121\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time2", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time3", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time4", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time5", ")", ".", "equals", "(", "\"undefined\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time6", ")", ".", "equals", "(", "\"12\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time7", ")", ".", "equals", "(", "\"12.212\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time8", ")", ".", "equals", "(", "\"0.12\"", ")", ")", ";", "assertTrue", "(", "t", ".", "getEndTime", "(", "time9", ")", ".", "equals", "(", "\".543\"", ")", ")", ";", "}", "}", "</s>" ]
8,574
[ "<s>", "package", "annis", ".", "gui", ".", "visualizers", ".", "partitur", ";", "import", "annis", ".", "gui", ".", "visualizers", ".", "iframe", ".", "partitur", ".", "DetectHoles", ";", "import", "annis", ".", "model", ".", "AnnisNode", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "List", ";", "import", "static", "org", ".", "junit", ".", "Assert", ".", "assertEquals", ";", "import", "org", ".", "junit", ".", "Test", ";", "public", "class", "DetectHolesTest", "{", "List", "<", "AnnisNode", ">", "token", ";", "AnnisNode", "node1", "=", "new", "AnnisNode", "(", "1", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "50", ",", "\"test8\"", ",", "19", ",", "22", ")", ";", "AnnisNode", "node2", "=", "new", "AnnisNode", "(", "2", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "50", ",", "\"test9\"", ",", "40", ",", "45", ")", ";", "AnnisNode", "node3", "=", "new", "AnnisNode", "(", "3", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "51", ",", "\"test10\"", ",", "12", ",", "54", ")", ";", "AnnisNode", "node4", "=", "new", "AnnisNode", "(", "4", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "52", ",", "\"test11\"", ",", "39", ",", "42", ")", ";", "private", "void", "initializeTokens", "(", ")", "{", "token", "=", "new", "ArrayList", "<", "AnnisNode", ">", "(", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "5", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "20", ",", "\"test1\"", ",", "20", ",", "20", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "6", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "21", ",", "\"test2\"", ",", "21", ",", "21", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "7", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "22", ",", "\"test3\"", ",", "22", ",", "22", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "8", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "40", ",", "\"test4\"", ",", "40", ",", "40", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "9", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "41", ",", "\"test5\"", ",", "41", ",", "41", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "10", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "42", ",", "\"test6\"", ",", "42", ",", "42", ")", ")", ";", "token", ".", "add", "(", "new", "AnnisNode", "(", "11", ",", "0", ",", "0", ",", "0", ",", "0", ",", "\"annis\"", ",", "\"test\"", ",", "50", ",", "\"test7\"", ",", "50", ",", "50", ")", ")", ";", "}", "public", "DetectHolesTest", "(", ")", "{", "initializeTokens", "(", ")", ";", "}", "@", "Test", "public", "void", "testGetLeftBorder", "(", ")", "{", "System", ".", "out", ".", "println", "(", "\"\"", ")", ";", "DetectHoles", "instance", "=", "new", "DetectHoles", "(", "token", ")", ";", "AnnisNode", "result", "=", "instance", ".", "getLeftBorder", "(", "node1", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "0", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getLeftBorder", "(", "node2", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "3", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getLeftBorder", "(", "node3", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "0", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getRightBorder", "(", "node4", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "5", ")", ",", "result", ")", ";", "}", "@", "Test", "public", "void", "testGetRightBorder", "(", ")", "{", "System", ".", "out", ".", "println", "(", "\"\"", ")", ";", "AnnisNode", "result", "=", "null", ";", "DetectHoles", "instance", "=", "new", "DetectHoles", "(", "token", ")", ";", "result", "=", "instance", ".", "getRightBorder", "(", "node1", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "2", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getRightBorder", "(", "node2", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "5", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getRightBorder", "(", "node3", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "6", ")", ",", "result", ")", ";", "result", "=", "instance", ".", "getRightBorder", "(", "node4", ")", ";", "assertEquals", "(", "token", ".", "get", "(", "5", ")", ",", "result", ")", ";", "}", "}", "</s>" ]
8,575
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "util", ".", "Iterator", ";", "public", "class", "HTTP", "{", "public", "static", "final", "String", "CRLF", "=", "\"rn\"", ";", "public", "static", "JSONObject", "toJSONObject", "(", "String", "string", ")", "throws", "JSONException", "{", "JSONObject", "o", "=", "new", "JSONObject", "(", ")", ";", "HTTPTokener", "x", "=", "new", "HTTPTokener", "(", "string", ")", ";", "String", "t", ";", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "t", ".", "toUpperCase", "(", ")", ".", "startsWith", "(", "\"HTTP\"", ")", ")", "{", "o", ".", "put", "(", "\"HTTP-Version\"", ",", "t", ")", ";", "o", ".", "put", "(", "\"Status-Code\"", ",", "x", ".", "nextToken", "(", ")", ")", ";", "o", ".", "put", "(", "\"\"", ",", "x", ".", "nextTo", "(", "'\\0'", ")", ")", ";", "x", ".", "next", "(", ")", ";", "}", "else", "{", "o", ".", "put", "(", "\"Method\"", ",", "t", ")", ";", "o", ".", "put", "(", "\"Request-URI\"", ",", "x", ".", "nextToken", "(", ")", ")", ";", "o", ".", "put", "(", "\"HTTP-Version\"", ",", "x", ".", "nextToken", "(", ")", ")", ";", "}", "while", "(", "x", ".", "more", "(", ")", ")", "{", "String", "name", "=", "x", ".", "nextTo", "(", "':'", ")", ";", "x", ".", "next", "(", "':'", ")", ";", "o", ".", "put", "(", "name", ",", "x", ".", "nextTo", "(", "'\\0'", ")", ")", ";", "x", ".", "next", "(", ")", ";", "}", "return", "o", ";", "}", "public", "static", "String", "toString", "(", "JSONObject", "o", ")", "throws", "JSONException", "{", "Iterator", "keys", "=", "o", ".", "keys", "(", ")", ";", "String", "s", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "if", "(", "o", ".", "has", "(", "\"Status-Code\"", ")", "&&", "o", ".", "has", "(", "\"\"", ")", ")", "{", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"HTTP-Version\"", ")", ")", ";", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"Status-Code\"", ")", ")", ";", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"\"", ")", ")", ";", "}", "else", "if", "(", "o", ".", "has", "(", "\"Method\"", ")", "&&", "o", ".", "has", "(", "\"Request-URI\"", ")", ")", "{", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"Method\"", ")", ")", ";", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"Request-URI\"", ")", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"HTTP-Version\"", ")", ")", ";", "}", "else", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "sb", ".", "append", "(", "CRLF", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "s", "=", "keys", ".", "next", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "!", "s", ".", "equals", "(", "\"HTTP-Version\"", ")", "&&", "!", "s", ".", "equals", "(", "\"Status-Code\"", ")", "&&", "!", "s", ".", "equals", "(", "\"\"", ")", "&&", "!", "s", ".", "equals", "(", "\"Method\"", ")", "&&", "!", "s", ".", "equals", "(", "\"Request-URI\"", ")", "&&", "!", "o", ".", "isNull", "(", "s", ")", ")", "{", "sb", ".", "append", "(", "s", ")", ";", "sb", ".", "append", "(", "\":", "\"", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "s", ")", ")", ";", "sb", ".", "append", "(", "CRLF", ")", ";", "}", "}", "sb", ".", "append", "(", "CRLF", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,576
[ "<s>", "package", "org", ".", "json", ";", "public", "class", "JSONException", "extends", "Exception", "{", "private", "Throwable", "cause", ";", "public", "JSONException", "(", "String", "message", ")", "{", "super", "(", "message", ")", ";", "}", "public", "JSONException", "(", "Throwable", "t", ")", "{", "super", "(", "t", ".", "getMessage", "(", ")", ")", ";", "this", ".", "cause", "=", "t", ";", "}", "public", "Throwable", "getCause", "(", ")", "{", "return", "this", ".", "cause", ";", "}", "}", "</s>" ]
8,577
[ "<s>", "package", "org", ".", "json", ";", "public", "class", "XMLTokener", "extends", "JSONTokener", "{", "public", "static", "final", "java", ".", "util", ".", "HashMap", "entity", ";", "static", "{", "entity", "=", "new", "java", ".", "util", ".", "HashMap", "(", "8", ")", ";", "entity", ".", "put", "(", "\"amp\"", ",", "XML", ".", "AMP", ")", ";", "entity", ".", "put", "(", "\"apos\"", ",", "XML", ".", "APOS", ")", ";", "entity", ".", "put", "(", "\"gt\"", ",", "XML", ".", "GT", ")", ";", "entity", ".", "put", "(", "\"lt\"", ",", "XML", ".", "LT", ")", ";", "entity", ".", "put", "(", "\"quot\"", ",", "XML", ".", "QUOT", ")", ";", "}", "public", "XMLTokener", "(", "String", "s", ")", "{", "super", "(", "s", ")", ";", "}", "public", "String", "nextCDATA", "(", ")", "throws", "JSONException", "{", "char", "c", ";", "int", "i", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "i", "=", "sb", ".", "length", "(", ")", "-", "3", ";", "if", "(", "i", ">=", "0", "&&", "sb", ".", "charAt", "(", "i", ")", "==", "']'", "&&", "sb", ".", "charAt", "(", "i", "+", "1", ")", "==", "']'", "&&", "sb", ".", "charAt", "(", "i", "+", "2", ")", "==", "'>'", ")", "{", "sb", ".", "setLength", "(", "i", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "}", "public", "Object", "nextContent", "(", ")", "throws", "JSONException", "{", "char", "c", ";", "StringBuffer", "sb", ";", "do", "{", "c", "=", "next", "(", ")", ";", "}", "while", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", ";", "if", "(", "c", "==", "0", ")", "{", "return", "null", ";", "}", "if", "(", "c", "==", "'<'", ")", "{", "return", "XML", ".", "LT", ";", "}", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "if", "(", "c", "==", "'<'", "||", "c", "==", "0", ")", "{", "back", "(", ")", ";", "return", "sb", ".", "toString", "(", ")", ".", "trim", "(", ")", ";", "}", "if", "(", "c", "==", "'&'", ")", "{", "sb", ".", "append", "(", "nextEntity", "(", "c", ")", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "c", ")", ";", "}", "c", "=", "next", "(", ")", ";", "}", "}", "public", "Object", "nextEntity", "(", "char", "a", ")", "throws", "JSONException", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "char", "c", "=", "next", "(", ")", ";", "if", "(", "Character", ".", "isLetterOrDigit", "(", "c", ")", "||", "c", "==", "'#'", ")", "{", "sb", ".", "append", "(", "Character", ".", "toLowerCase", "(", "c", ")", ")", ";", "}", "else", "if", "(", "c", "==", "';'", ")", "{", "break", ";", "}", "else", "{", "throw", "syntaxError", "(", "\"\"", "+", "sb", ")", ";", "}", "}", "String", "s", "=", "sb", ".", "toString", "(", ")", ";", "Object", "e", "=", "entity", ".", "get", "(", "s", ")", ";", "return", "e", "!=", "null", "?", "e", ":", "a", "+", "s", "+", "\";\"", ";", "}", "public", "Object", "nextMeta", "(", ")", "throws", "JSONException", "{", "char", "c", ";", "char", "q", ";", "do", "{", "c", "=", "next", "(", ")", ";", "}", "while", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", ";", "switch", "(", "c", ")", "{", "case", "0", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "case", "'<'", ":", "return", "XML", ".", "LT", ";", "case", "'>'", ":", "return", "XML", ".", "GT", ";", "case", "'/'", ":", "return", "XML", ".", "SLASH", ";", "case", "'='", ":", "return", "XML", ".", "EQ", ";", "case", "'!'", ":", "return", "XML", ".", "BANG", ";", "case", "'?'", ":", "return", "XML", ".", "QUEST", ";", "case", "'\"'", ":", "case", "'\\''", ":", "q", "=", "c", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "c", "==", "q", ")", "{", "return", "Boolean", ".", "TRUE", ";", "}", "}", "default", ":", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", "{", "return", "Boolean", ".", "TRUE", ";", "}", "switch", "(", "c", ")", "{", "case", "0", ":", "case", "'<'", ":", "case", "'>'", ":", "case", "'/'", ":", "case", "'='", ":", "case", "'!'", ":", "case", "'?'", ":", "case", "'\"'", ":", "case", "'\\''", ":", "back", "(", ")", ";", "return", "Boolean", ".", "TRUE", ";", "}", "}", "}", "}", "public", "Object", "nextToken", "(", ")", "throws", "JSONException", "{", "char", "c", ";", "char", "q", ";", "StringBuffer", "sb", ";", "do", "{", "c", "=", "next", "(", ")", ";", "}", "while", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", ";", "switch", "(", "c", ")", "{", "case", "0", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "case", "'<'", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "case", "'>'", ":", "return", "XML", ".", "GT", ";", "case", "'/'", ":", "return", "XML", ".", "SLASH", ";", "case", "'='", ":", "return", "XML", ".", "EQ", ";", "case", "'!'", ":", "return", "XML", ".", "BANG", ";", "case", "'?'", ":", "return", "XML", ".", "QUEST", ";", "case", "'\"'", ":", "case", "'\\''", ":", "q", "=", "c", ";", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "c", "==", "q", ")", "{", "return", "sb", ".", "toString", "(", ")", ";", "}", "if", "(", "c", "==", "'&'", ")", "{", "sb", ".", "append", "(", "nextEntity", "(", "c", ")", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "default", ":", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "sb", ".", "append", "(", "c", ")", ";", "c", "=", "next", "(", ")", ";", "if", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", "{", "return", "sb", ".", "toString", "(", ")", ";", "}", "switch", "(", "c", ")", "{", "case", "0", ":", "return", "sb", ".", "toString", "(", ")", ";", "case", "'>'", ":", "case", "'/'", ":", "case", "'='", ":", "case", "'!'", ":", "case", "'?'", ":", "case", "'['", ":", "case", "']'", ":", "back", "(", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "case", "'<'", ":", "case", "'\"'", ":", "case", "'\\''", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "}", "}", "public", "boolean", "skipPast", "(", "String", "to", ")", "throws", "JSONException", "{", "boolean", "b", ";", "char", "c", ";", "int", "i", ";", "int", "j", ";", "int", "offset", "=", "0", ";", "int", "n", "=", "to", ".", "length", "(", ")", ";", "char", "[", "]", "circle", "=", "new", "char", "[", "n", "]", ";", "for", "(", "i", "=", "0", ";", "i", "<", "n", ";", "i", "+=", "1", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "return", "false", ";", "}", "circle", "[", "i", "]", "=", "c", ";", "}", "for", "(", ";", ";", ")", "{", "j", "=", "offset", ";", "b", "=", "true", ";", "for", "(", "i", "=", "0", ";", "i", "<", "n", ";", "i", "+=", "1", ")", "{", "if", "(", "circle", "[", "j", "]", "!=", "to", ".", "charAt", "(", "i", ")", ")", "{", "b", "=", "false", ";", "break", ";", "}", "j", "+=", "1", ";", "if", "(", "j", ">=", "n", ")", "{", "j", "-=", "n", ";", "}", "}", "if", "(", "b", ")", "{", "return", "true", ";", "}", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "return", "false", ";", "}", "circle", "[", "offset", "]", "=", "c", ";", "offset", "+=", "1", ";", "if", "(", "offset", ">=", "n", ")", "{", "offset", "-=", "n", ";", "}", "}", "}", "}", "</s>" ]
8,578
[ "<s>", "package", "org", ".", "json", ";", "public", "class", "CDL", "{", "private", "static", "String", "getValue", "(", "JSONTokener", "x", ")", "throws", "JSONException", "{", "char", "c", ";", "char", "q", ";", "StringBuffer", "sb", ";", "do", "{", "c", "=", "x", ".", "next", "(", ")", ";", "}", "while", "(", "c", "==", "'", "'", "||", "c", "==", "'\\t'", ")", ";", "switch", "(", "c", ")", "{", "case", "0", ":", "return", "null", ";", "case", "'\"'", ":", "case", "'\\''", ":", "q", "=", "c", ";", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "c", "=", "x", ".", "next", "(", ")", ";", "if", "(", "c", "==", "q", ")", "{", "break", ";", "}", "if", "(", "c", "==", "0", "||", "c", "==", "'\\n'", "||", "c", "==", "'\\r'", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", "+", "q", "+", "\"'.\"", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "case", "','", ":", "x", ".", "back", "(", ")", ";", "return", "\"\"", ";", "default", ":", "x", ".", "back", "(", ")", ";", "return", "x", ".", "nextTo", "(", "','", ")", ";", "}", "}", "public", "static", "JSONArray", "rowToJSONArray", "(", "JSONTokener", "x", ")", "throws", "JSONException", "{", "JSONArray", "ja", "=", "new", "JSONArray", "(", ")", ";", "for", "(", ";", ";", ")", "{", "String", "value", "=", "getValue", "(", "x", ")", ";", "char", "c", "=", "x", ".", "next", "(", ")", ";", "if", "(", "value", "==", "null", "||", "(", "ja", ".", "length", "(", ")", "==", "0", "&&", "value", ".", "length", "(", ")", "==", "0", "&&", "c", "!=", "','", ")", ")", "{", "return", "null", ";", "}", "ja", ".", "put", "(", "value", ")", ";", "for", "(", ";", ";", ")", "{", "if", "(", "c", "==", "','", ")", "{", "break", ";", "}", "if", "(", "c", "!=", "'", "'", ")", "{", "if", "(", "c", "==", "'\\n'", "||", "c", "==", "'\\r'", "||", "c", "==", "0", ")", "{", "return", "ja", ";", "}", "throw", "x", ".", "syntaxError", "(", "\"\"", "+", "c", "+", "\"'", "(\"", "+", "(", "int", ")", "c", "+", "\").\"", ")", ";", "}", "c", "=", "x", ".", "next", "(", ")", ";", "}", "}", "}", "public", "static", "JSONObject", "rowToJSONObject", "(", "JSONArray", "names", ",", "JSONTokener", "x", ")", "throws", "JSONException", "{", "JSONArray", "ja", "=", "rowToJSONArray", "(", "x", ")", ";", "return", "ja", "!=", "null", "?", "ja", ".", "toJSONObject", "(", "names", ")", ":", "null", ";", "}", "public", "static", "JSONArray", "toJSONArray", "(", "String", "string", ")", "throws", "JSONException", "{", "return", "toJSONArray", "(", "new", "JSONTokener", "(", "string", ")", ")", ";", "}", "public", "static", "JSONArray", "toJSONArray", "(", "JSONTokener", "x", ")", "throws", "JSONException", "{", "return", "toJSONArray", "(", "rowToJSONArray", "(", "x", ")", ",", "x", ")", ";", "}", "public", "static", "JSONArray", "toJSONArray", "(", "JSONArray", "names", ",", "String", "string", ")", "throws", "JSONException", "{", "return", "toJSONArray", "(", "names", ",", "new", "JSONTokener", "(", "string", ")", ")", ";", "}", "public", "static", "JSONArray", "toJSONArray", "(", "JSONArray", "names", ",", "JSONTokener", "x", ")", "throws", "JSONException", "{", "if", "(", "names", "==", "null", "||", "names", ".", "length", "(", ")", "==", "0", ")", "{", "return", "null", ";", "}", "JSONArray", "ja", "=", "new", "JSONArray", "(", ")", ";", "for", "(", ";", ";", ")", "{", "JSONObject", "jo", "=", "rowToJSONObject", "(", "names", ",", "x", ")", ";", "if", "(", "jo", "==", "null", ")", "{", "break", ";", "}", "ja", ".", "put", "(", "jo", ")", ";", "}", "if", "(", "ja", ".", "length", "(", ")", "==", "0", ")", "{", "return", "null", ";", "}", "return", "ja", ";", "}", "public", "static", "String", "rowToString", "(", "JSONArray", "ja", ")", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "ja", ".", "length", "(", ")", ";", "i", "+=", "1", ")", "{", "if", "(", "i", ">", "0", ")", "{", "sb", ".", "append", "(", "','", ")", ";", "}", "Object", "o", "=", "ja", ".", "opt", "(", "i", ")", ";", "if", "(", "o", "!=", "null", ")", "{", "String", "s", "=", "o", ".", "toString", "(", ")", ";", "if", "(", "s", ".", "length", "(", ")", ">", "0", "&&", "(", "s", ".", "indexOf", "(", "','", ")", ">=", "0", "||", "s", ".", "indexOf", "(", "'\\n'", ")", ">=", "0", "||", "s", ".", "indexOf", "(", "'\\r'", ")", ">=", "0", "||", "s", ".", "indexOf", "(", "0", ")", ">=", "0", "||", "s", ".", "charAt", "(", "0", ")", "==", "'\"'", ")", ")", "{", "sb", ".", "append", "(", "'\"'", ")", ";", "int", "length", "=", "s", ".", "length", "(", ")", ";", "for", "(", "int", "j", "=", "0", ";", "j", "<", "length", ";", "j", "+=", "1", ")", "{", "char", "c", "=", "s", ".", "charAt", "(", "j", ")", ";", "if", "(", "c", ">=", "'", "'", "&&", "c", "!=", "'\"'", ")", "{", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "sb", ".", "append", "(", "'\"'", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "s", ")", ";", "}", "}", "}", "sb", ".", "append", "(", "'\\n'", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "static", "String", "toString", "(", "JSONArray", "ja", ")", "throws", "JSONException", "{", "JSONObject", "jo", "=", "ja", ".", "optJSONObject", "(", "0", ")", ";", "if", "(", "jo", "!=", "null", ")", "{", "JSONArray", "names", "=", "jo", ".", "names", "(", ")", ";", "if", "(", "names", "!=", "null", ")", "{", "return", "rowToString", "(", "names", ")", "+", "toString", "(", "names", ",", "ja", ")", ";", "}", "}", "return", "null", ";", "}", "public", "static", "String", "toString", "(", "JSONArray", "names", ",", "JSONArray", "ja", ")", "throws", "JSONException", "{", "if", "(", "names", "==", "null", "||", "names", ".", "length", "(", ")", "==", "0", ")", "{", "return", "null", ";", "}", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "ja", ".", "length", "(", ")", ";", "i", "+=", "1", ")", "{", "JSONObject", "jo", "=", "ja", ".", "optJSONObject", "(", "i", ")", ";", "if", "(", "jo", "!=", "null", ")", "{", "sb", ".", "append", "(", "rowToString", "(", "jo", ".", "toJSONArray", "(", "names", ")", ")", ")", ";", "}", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,579
[ "<s>", "package", "org", ".", "json", ";", "public", "class", "Cookie", "{", "public", "static", "String", "escape", "(", "String", "string", ")", "{", "char", "c", ";", "String", "s", "=", "string", ".", "trim", "(", ")", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "int", "len", "=", "s", ".", "length", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "c", "=", "s", ".", "charAt", "(", "i", ")", ";", "if", "(", "c", "<", "'", "'", "||", "c", "==", "'+'", "||", "c", "==", "'%'", "||", "c", "==", "'='", "||", "c", "==", "';'", ")", "{", "sb", ".", "append", "(", "'%'", ")", ";", "sb", ".", "append", "(", "Character", ".", "forDigit", "(", "(", "char", ")", "(", "(", "c", ">>>", "4", ")", "&", "0x0f", ")", ",", "16", ")", ")", ";", "sb", ".", "append", "(", "Character", ".", "forDigit", "(", "(", "char", ")", "(", "c", "&", "0x0f", ")", ",", "16", ")", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "static", "JSONObject", "toJSONObject", "(", "String", "string", ")", "throws", "JSONException", "{", "String", "n", ";", "JSONObject", "o", "=", "new", "JSONObject", "(", ")", ";", "Object", "v", ";", "JSONTokener", "x", "=", "new", "JSONTokener", "(", "string", ")", ";", "o", ".", "put", "(", "\"name\"", ",", "x", ".", "nextTo", "(", "'='", ")", ")", ";", "x", ".", "next", "(", "'='", ")", ";", "o", ".", "put", "(", "\"value\"", ",", "x", ".", "nextTo", "(", "';'", ")", ")", ";", "x", ".", "next", "(", ")", ";", "while", "(", "x", ".", "more", "(", ")", ")", "{", "n", "=", "unescape", "(", "x", ".", "nextTo", "(", "\"=;\"", ")", ")", ";", "if", "(", "x", ".", "next", "(", ")", "!=", "'='", ")", "{", "if", "(", "n", ".", "equals", "(", "\"secure\"", ")", ")", "{", "v", "=", "Boolean", ".", "TRUE", ";", "}", "else", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "else", "{", "v", "=", "unescape", "(", "x", ".", "nextTo", "(", "';'", ")", ")", ";", "x", ".", "next", "(", ")", ";", "}", "o", ".", "put", "(", "n", ",", "v", ")", ";", "}", "return", "o", ";", "}", "public", "static", "String", "toString", "(", "JSONObject", "o", ")", "throws", "JSONException", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "sb", ".", "append", "(", "escape", "(", "o", ".", "getString", "(", "\"name\"", ")", ")", ")", ";", "sb", ".", "append", "(", "\"=\"", ")", ";", "sb", ".", "append", "(", "escape", "(", "o", ".", "getString", "(", "\"value\"", ")", ")", ")", ";", "if", "(", "o", ".", "has", "(", "\"expires\"", ")", ")", "{", "sb", ".", "append", "(", "\";expires=\"", ")", ";", "sb", ".", "append", "(", "o", ".", "getString", "(", "\"expires\"", ")", ")", ";", "}", "if", "(", "o", ".", "has", "(", "\"domain\"", ")", ")", "{", "sb", ".", "append", "(", "\";domain=\"", ")", ";", "sb", ".", "append", "(", "escape", "(", "o", ".", "getString", "(", "\"domain\"", ")", ")", ")", ";", "}", "if", "(", "o", ".", "has", "(", "\"path\"", ")", ")", "{", "sb", ".", "append", "(", "\";path=\"", ")", ";", "sb", ".", "append", "(", "escape", "(", "o", ".", "getString", "(", "\"path\"", ")", ")", ")", ";", "}", "if", "(", "o", ".", "optBoolean", "(", "\"secure\"", ")", ")", "{", "sb", ".", "append", "(", "\";secure\"", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "static", "String", "unescape", "(", "String", "s", ")", "{", "int", "len", "=", "s", ".", "length", "(", ")", ";", "StringBuffer", "b", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "len", ";", "++", "i", ")", "{", "char", "c", "=", "s", ".", "charAt", "(", "i", ")", ";", "if", "(", "c", "==", "'+'", ")", "{", "c", "=", "'", "'", ";", "}", "else", "if", "(", "c", "==", "'%'", "&&", "i", "+", "2", "<", "len", ")", "{", "int", "d", "=", "JSONTokener", ".", "dehexchar", "(", "s", ".", "charAt", "(", "i", "+", "1", ")", ")", ";", "int", "e", "=", "JSONTokener", ".", "dehexchar", "(", "s", ".", "charAt", "(", "i", "+", "2", ")", ")", ";", "if", "(", "d", ">=", "0", "&&", "e", ">=", "0", ")", "{", "c", "=", "(", "char", ")", "(", "d", "*", "16", "+", "e", ")", ";", "i", "+=", "2", ";", "}", "}", "b", ".", "append", "(", "c", ")", ";", "}", "return", "b", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,580
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Writer", ";", "import", "java", ".", "lang", ".", "reflect", ".", "Array", ";", "import", "java", ".", "util", ".", "ArrayList", ";", "import", "java", ".", "util", ".", "Collection", ";", "import", "java", ".", "util", ".", "Iterator", ";", "import", "java", ".", "util", ".", "Map", ";", "public", "class", "JSONArray", "{", "private", "ArrayList", "myArrayList", ";", "public", "JSONArray", "(", ")", "{", "this", ".", "myArrayList", "=", "new", "ArrayList", "(", ")", ";", "}", "public", "JSONArray", "(", "JSONTokener", "x", ")", "throws", "JSONException", "{", "this", "(", ")", ";", "char", "c", "=", "x", ".", "nextClean", "(", ")", ";", "char", "q", ";", "if", "(", "c", "==", "'['", ")", "{", "q", "=", "']'", ";", "}", "else", "if", "(", "c", "==", "'('", ")", "{", "q", "=", "')'", ";", "}", "else", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "x", ".", "nextClean", "(", ")", "==", "']'", ")", "{", "return", ";", "}", "x", ".", "back", "(", ")", ";", "for", "(", ";", ";", ")", "{", "if", "(", "x", ".", "nextClean", "(", ")", "==", "','", ")", "{", "x", ".", "back", "(", ")", ";", "this", ".", "myArrayList", ".", "add", "(", "null", ")", ";", "}", "else", "{", "x", ".", "back", "(", ")", ";", "this", ".", "myArrayList", ".", "add", "(", "x", ".", "nextValue", "(", ")", ")", ";", "}", "c", "=", "x", ".", "nextClean", "(", ")", ";", "switch", "(", "c", ")", "{", "case", "';'", ":", "case", "','", ":", "if", "(", "x", ".", "nextClean", "(", ")", "==", "']'", ")", "{", "return", ";", "}", "x", ".", "back", "(", ")", ";", "break", ";", "case", "']'", ":", "case", "')'", ":", "if", "(", "q", "!=", "c", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"Expected", "a", "'\"", "+", "new", "Character", "(", "q", ")", "+", "\"'\"", ")", ";", "}", "return", ";", "default", ":", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "}", "public", "JSONArray", "(", "String", "source", ")", "throws", "JSONException", "{", "this", "(", "new", "JSONTokener", "(", "source", ")", ")", ";", "}", "public", "JSONArray", "(", "Collection", "collection", ")", "{", "this", ".", "myArrayList", "=", "(", "collection", "==", "null", ")", "?", "new", "ArrayList", "(", ")", ":", "new", "ArrayList", "(", "collection", ")", ";", "}", "public", "JSONArray", "(", "Collection", "collection", ",", "boolean", "includeSuperClass", ")", "{", "this", ".", "myArrayList", "=", "new", "ArrayList", "(", ")", ";", "if", "(", "collection", "!=", "null", ")", "{", "Iterator", "iter", "=", "collection", ".", "iterator", "(", ")", ";", ";", "while", "(", "iter", ".", "hasNext", "(", ")", ")", "{", "Object", "o", "=", "iter", ".", "next", "(", ")", ";", "if", "(", "o", "instanceof", "Map", ")", "{", "this", ".", "myArrayList", ".", "add", "(", "new", "JSONObject", "(", "(", "Map", ")", "o", ",", "includeSuperClass", ")", ")", ";", "}", "else", "if", "(", "!", "JSONObject", ".", "isStandardProperty", "(", "o", ".", "getClass", "(", ")", ")", ")", "{", "this", ".", "myArrayList", ".", "add", "(", "new", "JSONObject", "(", "o", ",", "includeSuperClass", ")", ")", ";", "}", "else", "{", "this", ".", "myArrayList", ".", "add", "(", "o", ")", ";", "}", "}", "}", "}", "public", "JSONArray", "(", "Object", "array", ")", "throws", "JSONException", "{", "this", "(", ")", ";", "if", "(", "array", ".", "getClass", "(", ")", ".", "isArray", "(", ")", ")", "{", "int", "length", "=", "Array", ".", "getLength", "(", "array", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "length", ";", "i", "+=", "1", ")", "{", "this", ".", "put", "(", "Array", ".", "get", "(", "array", ",", "i", ")", ")", ";", "}", "}", "else", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "}", "public", "JSONArray", "(", "Object", "array", ",", "boolean", "includeSuperClass", ")", "throws", "JSONException", "{", "this", "(", ")", ";", "if", "(", "array", ".", "getClass", "(", ")", ".", "isArray", "(", ")", ")", "{", "int", "length", "=", "Array", ".", "getLength", "(", "array", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "length", ";", "i", "+=", "1", ")", "{", "Object", "o", "=", "Array", ".", "get", "(", "array", ",", "i", ")", ";", "if", "(", "JSONObject", ".", "isStandardProperty", "(", "o", ".", "getClass", "(", ")", ")", ")", "{", "this", ".", "myArrayList", ".", "add", "(", "o", ")", ";", "}", "else", "{", "this", ".", "myArrayList", ".", "add", "(", "new", "JSONObject", "(", "o", ",", "includeSuperClass", ")", ")", ";", "}", "}", "}", "else", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "}", "public", "Object", "get", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "opt", "(", "index", ")", ";", "if", "(", "o", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"]", "not", "found.\"", ")", ";", "}", "return", "o", ";", "}", "public", "boolean", "getBoolean", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "if", "(", "o", ".", "equals", "(", "Boolean", ".", "FALSE", ")", "||", "(", "o", "instanceof", "String", "&&", "(", "(", "String", ")", "o", ")", ".", "equalsIgnoreCase", "(", "\"false\"", ")", ")", ")", "{", "return", "false", ";", "}", "else", "if", "(", "o", ".", "equals", "(", "Boolean", ".", "TRUE", ")", "||", "(", "o", "instanceof", "String", "&&", "(", "(", "String", ")", "o", ")", ".", "equalsIgnoreCase", "(", "\"true\"", ")", ")", ")", "{", "return", "true", ";", "}", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"\"", ")", ";", "}", "public", "double", "getDouble", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "try", "{", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "doubleValue", "(", ")", ":", "Double", ".", "valueOf", "(", "(", "String", ")", "o", ")", ".", "doubleValue", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"\"", ")", ";", "}", "}", "public", "int", "getInt", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "intValue", "(", ")", ":", "(", "int", ")", "getDouble", "(", "index", ")", ";", "}", "public", "JSONArray", "getJSONArray", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "if", "(", "o", "instanceof", "JSONArray", ")", "{", "return", "(", "JSONArray", ")", "o", ";", "}", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"\"", ")", ";", "}", "public", "JSONObject", "getJSONObject", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "if", "(", "o", "instanceof", "JSONObject", ")", "{", "return", "(", "JSONObject", ")", "o", ";", "}", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"\"", ")", ";", "}", "public", "long", "getLong", "(", "int", "index", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "index", ")", ";", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "longValue", "(", ")", ":", "(", "long", ")", "getDouble", "(", "index", ")", ";", "}", "public", "String", "getString", "(", "int", "index", ")", "throws", "JSONException", "{", "return", "get", "(", "index", ")", ".", "toString", "(", ")", ";", "}", "public", "boolean", "isNull", "(", "int", "index", ")", "{", "return", "JSONObject", ".", "NULL", ".", "equals", "(", "opt", "(", "index", ")", ")", ";", "}", "public", "String", "join", "(", "String", "separator", ")", "throws", "JSONException", "{", "int", "len", "=", "length", "(", ")", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "if", "(", "i", ">", "0", ")", "{", "sb", ".", "append", "(", "separator", ")", ";", "}", "sb", ".", "append", "(", "JSONObject", ".", "valueToString", "(", "this", ".", "myArrayList", ".", "get", "(", "i", ")", ")", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "int", "length", "(", ")", "{", "return", "this", ".", "myArrayList", ".", "size", "(", ")", ";", "}", "public", "Object", "opt", "(", "int", "index", ")", "{", "return", "(", "index", "<", "0", "||", "index", ">=", "length", "(", ")", ")", "?", "null", ":", "this", ".", "myArrayList", ".", "get", "(", "index", ")", ";", "}", "public", "boolean", "optBoolean", "(", "int", "index", ")", "{", "return", "optBoolean", "(", "index", ",", "false", ")", ";", "}", "public", "boolean", "optBoolean", "(", "int", "index", ",", "boolean", "defaultValue", ")", "{", "try", "{", "return", "getBoolean", "(", "index", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "double", "optDouble", "(", "int", "index", ")", "{", "return", "optDouble", "(", "index", ",", "Double", ".", "NaN", ")", ";", "}", "public", "double", "optDouble", "(", "int", "index", ",", "double", "defaultValue", ")", "{", "try", "{", "return", "getDouble", "(", "index", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "int", "optInt", "(", "int", "index", ")", "{", "return", "optInt", "(", "index", ",", "0", ")", ";", "}", "public", "int", "optInt", "(", "int", "index", ",", "int", "defaultValue", ")", "{", "try", "{", "return", "getInt", "(", "index", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "JSONArray", "optJSONArray", "(", "int", "index", ")", "{", "Object", "o", "=", "opt", "(", "index", ")", ";", "return", "o", "instanceof", "JSONArray", "?", "(", "JSONArray", ")", "o", ":", "null", ";", "}", "public", "JSONObject", "optJSONObject", "(", "int", "index", ")", "{", "Object", "o", "=", "opt", "(", "index", ")", ";", "return", "o", "instanceof", "JSONObject", "?", "(", "JSONObject", ")", "o", ":", "null", ";", "}", "public", "long", "optLong", "(", "int", "index", ")", "{", "return", "optLong", "(", "index", ",", "0", ")", ";", "}", "public", "long", "optLong", "(", "int", "index", ",", "long", "defaultValue", ")", "{", "try", "{", "return", "getLong", "(", "index", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "String", "optString", "(", "int", "index", ")", "{", "return", "optString", "(", "index", ",", "\"\"", ")", ";", "}", "public", "String", "optString", "(", "int", "index", ",", "String", "defaultValue", ")", "{", "Object", "o", "=", "opt", "(", "index", ")", ";", "return", "o", "!=", "null", "?", "o", ".", "toString", "(", ")", ":", "defaultValue", ";", "}", "public", "JSONArray", "put", "(", "boolean", "value", ")", "{", "put", "(", "value", "?", "Boolean", ".", "TRUE", ":", "Boolean", ".", "FALSE", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "Collection", "value", ")", "{", "put", "(", "new", "JSONArray", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "double", "value", ")", "throws", "JSONException", "{", "Double", "d", "=", "new", "Double", "(", "value", ")", ";", "JSONObject", ".", "testValidity", "(", "d", ")", ";", "put", "(", "d", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "value", ")", "{", "put", "(", "new", "Integer", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "long", "value", ")", "{", "put", "(", "new", "Long", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "Map", "value", ")", "{", "put", "(", "new", "JSONObject", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "Object", "value", ")", "{", "this", ".", "myArrayList", ".", "add", "(", "value", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "boolean", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "value", "?", "Boolean", ".", "TRUE", ":", "Boolean", ".", "FALSE", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "Collection", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "new", "JSONArray", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "double", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "new", "Double", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "int", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "new", "Integer", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "long", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "new", "Long", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "Map", "value", ")", "throws", "JSONException", "{", "put", "(", "index", ",", "new", "JSONObject", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONArray", "put", "(", "int", "index", ",", "Object", "value", ")", "throws", "JSONException", "{", "JSONObject", ".", "testValidity", "(", "value", ")", ";", "if", "(", "index", "<", "0", ")", "{", "throw", "new", "JSONException", "(", "\"JSONArray[\"", "+", "index", "+", "\"]", "not", "found.\"", ")", ";", "}", "if", "(", "index", "<", "length", "(", ")", ")", "{", "this", ".", "myArrayList", ".", "set", "(", "index", ",", "value", ")", ";", "}", "else", "{", "while", "(", "index", "!=", "length", "(", ")", ")", "{", "put", "(", "JSONObject", ".", "NULL", ")", ";", "}", "put", "(", "value", ")", ";", "}", "return", "this", ";", "}", "public", "Object", "remove", "(", "int", "index", ")", "{", "Object", "o", "=", "opt", "(", "index", ")", ";", "this", ".", "myArrayList", ".", "remove", "(", "index", ")", ";", "return", "o", ";", "}", "public", "JSONObject", "toJSONObject", "(", "JSONArray", "names", ")", "throws", "JSONException", "{", "if", "(", "names", "==", "null", "||", "names", ".", "length", "(", ")", "==", "0", "||", "length", "(", ")", "==", "0", ")", "{", "return", "null", ";", "}", "JSONObject", "jo", "=", "new", "JSONObject", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", "(", ")", ";", "i", "+=", "1", ")", "{", "jo", ".", "put", "(", "names", ".", "getString", "(", "i", ")", ",", "this", ".", "opt", "(", "i", ")", ")", ";", "}", "return", "jo", ";", "}", "public", "String", "toString", "(", ")", "{", "try", "{", "return", "'['", "+", "join", "(", "\",\"", ")", "+", "']'", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "null", ";", "}", "}", "public", "String", "toString", "(", "int", "indentFactor", ")", "throws", "JSONException", "{", "return", "toString", "(", "indentFactor", ",", "0", ")", ";", "}", "String", "toString", "(", "int", "indentFactor", ",", "int", "indent", ")", "throws", "JSONException", "{", "int", "len", "=", "length", "(", ")", ";", "if", "(", "len", "==", "0", ")", "{", "return", "\"[]\"", ";", "}", "int", "i", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", "\"[\"", ")", ";", "if", "(", "len", "==", "1", ")", "{", "sb", ".", "append", "(", "JSONObject", ".", "valueToString", "(", "this", ".", "myArrayList", ".", "get", "(", "0", ")", ",", "indentFactor", ",", "indent", ")", ")", ";", "}", "else", "{", "int", "newindent", "=", "indent", "+", "indentFactor", ";", "sb", ".", "append", "(", "'\\n'", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "if", "(", "i", ">", "0", ")", "{", "sb", ".", "append", "(", "\",n\"", ")", ";", "}", "for", "(", "int", "j", "=", "0", ";", "j", "<", "newindent", ";", "j", "+=", "1", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "}", "sb", ".", "append", "(", "JSONObject", ".", "valueToString", "(", "this", ".", "myArrayList", ".", "get", "(", "i", ")", ",", "indentFactor", ",", "newindent", ")", ")", ";", "}", "sb", ".", "append", "(", "'\\n'", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "indent", ";", "i", "+=", "1", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "}", "}", "sb", ".", "append", "(", "']'", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "Writer", "write", "(", "Writer", "writer", ")", "throws", "JSONException", "{", "try", "{", "boolean", "b", "=", "false", ";", "int", "len", "=", "length", "(", ")", ";", "writer", ".", "write", "(", "'['", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "if", "(", "b", ")", "{", "writer", ".", "write", "(", "','", ")", ";", "}", "Object", "v", "=", "this", ".", "myArrayList", ".", "get", "(", "i", ")", ";", "if", "(", "v", "instanceof", "JSONObject", ")", "{", "(", "(", "JSONObject", ")", "v", ")", ".", "write", "(", "writer", ")", ";", "}", "else", "if", "(", "v", "instanceof", "JSONArray", ")", "{", "(", "(", "JSONArray", ")", "v", ")", ".", "write", "(", "writer", ")", ";", "}", "else", "{", "writer", ".", "write", "(", "JSONObject", ".", "valueToString", "(", "v", ")", ")", ";", "}", "b", "=", "true", ";", "}", "writer", ".", "write", "(", "']'", ")", ";", "return", "writer", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "}", "}", "</s>" ]
8,581
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Writer", ";", "public", "class", "JSONWriter", "{", "private", "static", "final", "int", "maxdepth", "=", "20", ";", "private", "boolean", "comma", ";", "protected", "char", "mode", ";", "private", "JSONObject", "stack", "[", "]", ";", "private", "int", "top", ";", "protected", "Writer", "writer", ";", "public", "JSONWriter", "(", "Writer", "w", ")", "{", "this", ".", "comma", "=", "false", ";", "this", ".", "mode", "=", "'i'", ";", "this", ".", "stack", "=", "new", "JSONObject", "[", "maxdepth", "]", ";", "this", ".", "top", "=", "0", ";", "this", ".", "writer", "=", "w", ";", "}", "private", "JSONWriter", "append", "(", "String", "s", ")", "throws", "JSONException", "{", "if", "(", "s", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"Null", "pointer\"", ")", ";", "}", "if", "(", "this", ".", "mode", "==", "'o'", "||", "this", ".", "mode", "==", "'a'", ")", "{", "try", "{", "if", "(", "this", ".", "comma", "&&", "this", ".", "mode", "==", "'a'", ")", "{", "this", ".", "writer", ".", "write", "(", "','", ")", ";", "}", "this", ".", "writer", ".", "write", "(", "s", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "if", "(", "this", ".", "mode", "==", "'o'", ")", "{", "this", ".", "mode", "=", "'k'", ";", "}", "this", ".", "comma", "=", "true", ";", "return", "this", ";", "}", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "public", "JSONWriter", "array", "(", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "mode", "==", "'i'", "||", "this", ".", "mode", "==", "'o'", "||", "this", ".", "mode", "==", "'a'", ")", "{", "this", ".", "push", "(", "null", ")", ";", "this", ".", "append", "(", "\"[\"", ")", ";", "this", ".", "comma", "=", "false", ";", "return", "this", ";", "}", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "private", "JSONWriter", "end", "(", "char", "m", ",", "char", "c", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "mode", "!=", "m", ")", "{", "throw", "new", "JSONException", "(", "m", "==", "'o'", "?", "\"\"", ":", "\"\"", ")", ";", "}", "this", ".", "pop", "(", "m", ")", ";", "try", "{", "this", ".", "writer", ".", "write", "(", "c", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "this", ".", "comma", "=", "true", ";", "return", "this", ";", "}", "public", "JSONWriter", "endArray", "(", ")", "throws", "JSONException", "{", "return", "this", ".", "end", "(", "'a'", ",", "']'", ")", ";", "}", "public", "JSONWriter", "endObject", "(", ")", "throws", "JSONException", "{", "return", "this", ".", "end", "(", "'k'", ",", "'}'", ")", ";", "}", "public", "JSONWriter", "key", "(", "String", "s", ")", "throws", "JSONException", "{", "if", "(", "s", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"Null", "key.\"", ")", ";", "}", "if", "(", "this", ".", "mode", "==", "'k'", ")", "{", "try", "{", "stack", "[", "top", "-", "1", "]", ".", "putOnce", "(", "s", ",", "Boolean", ".", "TRUE", ")", ";", "if", "(", "this", ".", "comma", ")", "{", "this", ".", "writer", ".", "write", "(", "','", ")", ";", "}", "this", ".", "writer", ".", "write", "(", "JSONObject", ".", "quote", "(", "s", ")", ")", ";", "this", ".", "writer", ".", "write", "(", "':'", ")", ";", "this", ".", "comma", "=", "false", ";", "this", ".", "mode", "=", "'o'", ";", "return", "this", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "}", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "public", "JSONWriter", "object", "(", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "mode", "==", "'i'", ")", "{", "this", ".", "mode", "=", "'o'", ";", "}", "if", "(", "this", ".", "mode", "==", "'o'", "||", "this", ".", "mode", "==", "'a'", ")", "{", "this", ".", "append", "(", "\"{\"", ")", ";", "this", ".", "push", "(", "new", "JSONObject", "(", ")", ")", ";", "this", ".", "comma", "=", "false", ";", "return", "this", ";", "}", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "private", "void", "pop", "(", "char", "c", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "top", "<=", "0", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "char", "m", "=", "this", ".", "stack", "[", "this", ".", "top", "-", "1", "]", "==", "null", "?", "'a'", ":", "'k'", ";", "if", "(", "m", "!=", "c", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "this", ".", "top", "-=", "1", ";", "this", ".", "mode", "=", "this", ".", "top", "==", "0", "?", "'d'", ":", "this", ".", "stack", "[", "this", ".", "top", "-", "1", "]", "==", "null", "?", "'a'", ":", "'k'", ";", "}", "private", "void", "push", "(", "JSONObject", "jo", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "top", ">=", "maxdepth", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "this", ".", "stack", "[", "this", ".", "top", "]", "=", "jo", ";", "this", ".", "mode", "=", "jo", "==", "null", "?", "'a'", ":", "'k'", ";", "this", ".", "top", "+=", "1", ";", "}", "public", "JSONWriter", "value", "(", "boolean", "b", ")", "throws", "JSONException", "{", "return", "this", ".", "append", "(", "b", "?", "\"true\"", ":", "\"false\"", ")", ";", "}", "public", "JSONWriter", "value", "(", "double", "d", ")", "throws", "JSONException", "{", "return", "this", ".", "value", "(", "new", "Double", "(", "d", ")", ")", ";", "}", "public", "JSONWriter", "value", "(", "long", "l", ")", "throws", "JSONException", "{", "return", "this", ".", "append", "(", "Long", ".", "toString", "(", "l", ")", ")", ";", "}", "public", "JSONWriter", "value", "(", "Object", "o", ")", "throws", "JSONException", "{", "return", "this", ".", "append", "(", "JSONObject", ".", "valueToString", "(", "o", ")", ")", ";", "}", "}", "</s>" ]
8,582
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "io", ".", "StringWriter", ";", "public", "class", "JSONStringer", "extends", "JSONWriter", "{", "public", "JSONStringer", "(", ")", "{", "super", "(", "new", "StringWriter", "(", ")", ")", ";", "}", "public", "String", "toString", "(", ")", "{", "return", "this", ".", "mode", "==", "'d'", "?", "this", ".", "writer", ".", "toString", "(", ")", ":", "null", ";", "}", "}", "</s>" ]
8,583
[ "<s>", "package", "org", ".", "json", ";", "public", "class", "HTTPTokener", "extends", "JSONTokener", "{", "public", "HTTPTokener", "(", "String", "s", ")", "{", "super", "(", "s", ")", ";", "}", "public", "String", "nextToken", "(", ")", "throws", "JSONException", "{", "char", "c", ";", "char", "q", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "do", "{", "c", "=", "next", "(", ")", ";", "}", "while", "(", "Character", ".", "isWhitespace", "(", "c", ")", ")", ";", "if", "(", "c", "==", "'\"'", "||", "c", "==", "'\\''", ")", "{", "q", "=", "c", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "<", "'", "'", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "c", "==", "q", ")", "{", "return", "sb", ".", "toString", "(", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "for", "(", ";", ";", ")", "{", "if", "(", "c", "==", "0", "||", "Character", ".", "isWhitespace", "(", "c", ")", ")", "{", "return", "sb", ".", "toString", "(", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "c", "=", "next", "(", ")", ";", "}", "}", "}", "</s>" ]
8,584
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Writer", ";", "import", "java", ".", "lang", ".", "reflect", ".", "Field", ";", "import", "java", ".", "lang", ".", "reflect", ".", "Method", ";", "import", "java", ".", "lang", ".", "reflect", ".", "Modifier", ";", "import", "java", ".", "util", ".", "*", ";", "public", "class", "JSONObject", "{", "private", "static", "final", "class", "Null", "{", "protected", "final", "Object", "clone", "(", ")", "{", "return", "this", ";", "}", "public", "boolean", "equals", "(", "Object", "object", ")", "{", "return", "object", "==", "null", "||", "object", "==", "this", ";", "}", "public", "String", "toString", "(", ")", "{", "return", "\"null\"", ";", "}", "}", "private", "Map", "map", ";", "public", "static", "final", "Object", "NULL", "=", "new", "Null", "(", ")", ";", "public", "JSONObject", "(", ")", "{", "this", ".", "map", "=", "new", "HashMap", "(", ")", ";", "}", "public", "JSONObject", "(", "JSONObject", "jo", ",", "String", "[", "]", "names", ")", "throws", "JSONException", "{", "this", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", ";", "i", "+=", "1", ")", "{", "putOnce", "(", "names", "[", "i", "]", ",", "jo", ".", "opt", "(", "names", "[", "i", "]", ")", ")", ";", "}", "}", "public", "JSONObject", "(", "JSONTokener", "x", ")", "throws", "JSONException", "{", "this", "(", ")", ";", "char", "c", ";", "String", "key", ";", "if", "(", "x", ".", "nextClean", "(", ")", "!=", "'{'", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "for", "(", ";", ";", ")", "{", "c", "=", "x", ".", "nextClean", "(", ")", ";", "switch", "(", "c", ")", "{", "case", "0", ":", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "case", "'}'", ":", "return", ";", "default", ":", "x", ".", "back", "(", ")", ";", "key", "=", "x", ".", "nextValue", "(", ")", ".", "toString", "(", ")", ";", "}", "c", "=", "x", ".", "nextClean", "(", ")", ";", "if", "(", "c", "==", "'='", ")", "{", "if", "(", "x", ".", "next", "(", ")", "!=", "'>'", ")", "{", "x", ".", "back", "(", ")", ";", "}", "}", "else", "if", "(", "c", "!=", "':'", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "putOnce", "(", "key", ",", "x", ".", "nextValue", "(", ")", ")", ";", "switch", "(", "x", ".", "nextClean", "(", ")", ")", "{", "case", "';'", ":", "case", "','", ":", "if", "(", "x", ".", "nextClean", "(", ")", "==", "'}'", ")", "{", "return", ";", "}", "x", ".", "back", "(", ")", ";", "break", ";", "case", "'}'", ":", "return", ";", "default", ":", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "}", "public", "JSONObject", "(", "Map", "map", ")", "{", "this", ".", "map", "=", "(", "map", "==", "null", ")", "?", "new", "HashMap", "(", ")", ":", "map", ";", "}", "public", "JSONObject", "(", "Map", "map", ",", "boolean", "includeSuperClass", ")", "{", "this", ".", "map", "=", "new", "HashMap", "(", ")", ";", "if", "(", "map", "!=", "null", ")", "{", "Iterator", "i", "=", "map", ".", "entrySet", "(", ")", ".", "iterator", "(", ")", ";", "while", "(", "i", ".", "hasNext", "(", ")", ")", "{", "Map", ".", "Entry", "e", "=", "(", "Map", ".", "Entry", ")", "i", ".", "next", "(", ")", ";", "if", "(", "isStandardProperty", "(", "e", ".", "getValue", "(", ")", ".", "getClass", "(", ")", ")", ")", "{", "this", ".", "map", ".", "put", "(", "e", ".", "getKey", "(", ")", ",", "e", ".", "getValue", "(", ")", ")", ";", "}", "else", "{", "this", ".", "map", ".", "put", "(", "e", ".", "getKey", "(", ")", ",", "new", "JSONObject", "(", "e", ".", "getValue", "(", ")", ",", "includeSuperClass", ")", ")", ";", "}", "}", "}", "}", "public", "JSONObject", "(", "Object", "bean", ")", "{", "this", "(", ")", ";", "populateInternalMap", "(", "bean", ",", "false", ")", ";", "}", "public", "JSONObject", "(", "Object", "bean", ",", "boolean", "includeSuperClass", ")", "{", "this", "(", ")", ";", "populateInternalMap", "(", "bean", ",", "includeSuperClass", ")", ";", "}", "private", "void", "populateInternalMap", "(", "Object", "bean", ",", "boolean", "includeSuperClass", ")", "{", "Class", "klass", "=", "bean", ".", "getClass", "(", ")", ";", "if", "(", "klass", ".", "getClassLoader", "(", ")", "==", "null", ")", "{", "includeSuperClass", "=", "false", ";", "}", "Method", "[", "]", "methods", "=", "(", "includeSuperClass", ")", "?", "klass", ".", "getMethods", "(", ")", ":", "klass", ".", "getDeclaredMethods", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "methods", ".", "length", ";", "i", "+=", "1", ")", "{", "try", "{", "Method", "method", "=", "methods", "[", "i", "]", ";", "if", "(", "Modifier", ".", "isPublic", "(", "method", ".", "getModifiers", "(", ")", ")", ")", "{", "String", "name", "=", "method", ".", "getName", "(", ")", ";", "String", "key", "=", "\"\"", ";", "if", "(", "name", ".", "startsWith", "(", "\"get\"", ")", ")", "{", "key", "=", "name", ".", "substring", "(", "3", ")", ";", "}", "else", "if", "(", "name", ".", "startsWith", "(", "\"is\"", ")", ")", "{", "key", "=", "name", ".", "substring", "(", "2", ")", ";", "}", "if", "(", "key", ".", "length", "(", ")", ">", "0", "&&", "Character", ".", "isUpperCase", "(", "key", ".", "charAt", "(", "0", ")", ")", "&&", "method", ".", "getParameterTypes", "(", ")", ".", "length", "==", "0", ")", "{", "if", "(", "key", ".", "length", "(", ")", "==", "1", ")", "{", "key", "=", "key", ".", "toLowerCase", "(", ")", ";", "}", "else", "if", "(", "!", "Character", ".", "isUpperCase", "(", "key", ".", "charAt", "(", "1", ")", ")", ")", "{", "key", "=", "key", ".", "substring", "(", "0", ",", "1", ")", ".", "toLowerCase", "(", ")", "+", "key", ".", "substring", "(", "1", ")", ";", "}", "Object", "result", "=", "method", ".", "invoke", "(", "bean", ",", "(", "Object", "[", "]", ")", "null", ")", ";", "if", "(", "result", "==", "null", ")", "{", "map", ".", "put", "(", "key", ",", "NULL", ")", ";", "}", "else", "if", "(", "result", ".", "getClass", "(", ")", ".", "isArray", "(", ")", ")", "{", "map", ".", "put", "(", "key", ",", "new", "JSONArray", "(", "result", ",", "includeSuperClass", ")", ")", ";", "}", "else", "if", "(", "result", "instanceof", "Collection", ")", "{", "map", ".", "put", "(", "key", ",", "new", "JSONArray", "(", "(", "Collection", ")", "result", ",", "includeSuperClass", ")", ")", ";", "}", "else", "if", "(", "result", "instanceof", "Map", ")", "{", "map", ".", "put", "(", "key", ",", "new", "JSONObject", "(", "(", "Map", ")", "result", ",", "includeSuperClass", ")", ")", ";", "}", "else", "if", "(", "isStandardProperty", "(", "result", ".", "getClass", "(", ")", ")", ")", "{", "map", ".", "put", "(", "key", ",", "result", ")", ";", "}", "else", "{", "if", "(", "result", ".", "getClass", "(", ")", ".", "getPackage", "(", ")", ".", "getName", "(", ")", ".", "startsWith", "(", "\"java\"", ")", "||", "result", ".", "getClass", "(", ")", ".", "getClassLoader", "(", ")", "==", "null", ")", "{", "map", ".", "put", "(", "key", ",", "result", ".", "toString", "(", ")", ")", ";", "}", "else", "{", "map", ".", "put", "(", "key", ",", "new", "JSONObject", "(", "result", ",", "includeSuperClass", ")", ")", ";", "}", "}", "}", "}", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "RuntimeException", "(", "e", ")", ";", "}", "}", "}", "static", "boolean", "isStandardProperty", "(", "Class", "clazz", ")", "{", "return", "clazz", ".", "isPrimitive", "(", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Byte", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Short", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Integer", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Long", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Float", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Double", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Character", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "String", ".", "class", ")", "||", "clazz", ".", "isAssignableFrom", "(", "Boolean", ".", "class", ")", ";", "}", "public", "JSONObject", "(", "Object", "object", ",", "String", "names", "[", "]", ")", "{", "this", "(", ")", ";", "Class", "c", "=", "object", ".", "getClass", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", ";", "i", "+=", "1", ")", "{", "String", "name", "=", "names", "[", "i", "]", ";", "try", "{", "putOpt", "(", "name", ",", "c", ".", "getField", "(", "name", ")", ".", "get", "(", "object", ")", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "}", "}", "}", "public", "JSONObject", "(", "String", "source", ")", "throws", "JSONException", "{", "this", "(", "new", "JSONTokener", "(", "source", ")", ")", ";", "}", "public", "JSONObject", "accumulate", "(", "String", "key", ",", "Object", "value", ")", "throws", "JSONException", "{", "testValidity", "(", "value", ")", ";", "Object", "o", "=", "opt", "(", "key", ")", ";", "if", "(", "o", "==", "null", ")", "{", "put", "(", "key", ",", "value", "instanceof", "JSONArray", "?", "new", "JSONArray", "(", ")", ".", "put", "(", "value", ")", ":", "value", ")", ";", "}", "else", "if", "(", "o", "instanceof", "JSONArray", ")", "{", "(", "(", "JSONArray", ")", "o", ")", ".", "put", "(", "value", ")", ";", "}", "else", "{", "put", "(", "key", ",", "new", "JSONArray", "(", ")", ".", "put", "(", "o", ")", ".", "put", "(", "value", ")", ")", ";", "}", "return", "this", ";", "}", "public", "JSONObject", "append", "(", "String", "key", ",", "Object", "value", ")", "throws", "JSONException", "{", "testValidity", "(", "value", ")", ";", "Object", "o", "=", "opt", "(", "key", ")", ";", "if", "(", "o", "==", "null", ")", "{", "put", "(", "key", ",", "new", "JSONArray", "(", ")", ".", "put", "(", "value", ")", ")", ";", "}", "else", "if", "(", "o", "instanceof", "JSONArray", ")", "{", "put", "(", "key", ",", "(", "(", "JSONArray", ")", "o", ")", ".", "put", "(", "value", ")", ")", ";", "}", "else", "{", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "key", "+", "\"\"", ")", ";", "}", "return", "this", ";", "}", "static", "public", "String", "doubleToString", "(", "double", "d", ")", "{", "if", "(", "Double", ".", "isInfinite", "(", "d", ")", "||", "Double", ".", "isNaN", "(", "d", ")", ")", "{", "return", "\"null\"", ";", "}", "String", "s", "=", "Double", ".", "toString", "(", "d", ")", ";", "if", "(", "s", ".", "indexOf", "(", "'.'", ")", ">", "0", "&&", "s", ".", "indexOf", "(", "'e'", ")", "<", "0", "&&", "s", ".", "indexOf", "(", "'E'", ")", "<", "0", ")", "{", "while", "(", "s", ".", "endsWith", "(", "\"0\"", ")", ")", "{", "s", "=", "s", ".", "substring", "(", "0", ",", "s", ".", "length", "(", ")", "-", "1", ")", ";", "}", "if", "(", "s", ".", "endsWith", "(", "\".\"", ")", ")", "{", "s", "=", "s", ".", "substring", "(", "0", ",", "s", ".", "length", "(", ")", "-", "1", ")", ";", "}", "}", "return", "s", ";", "}", "public", "Object", "get", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "opt", "(", "key", ")", ";", "if", "(", "o", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "quote", "(", "key", ")", "+", "\"]", "not", "found.\"", ")", ";", "}", "return", "o", ";", "}", "public", "boolean", "getBoolean", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "if", "(", "o", ".", "equals", "(", "Boolean", ".", "FALSE", ")", "||", "(", "o", "instanceof", "String", "&&", "(", "(", "String", ")", "o", ")", ".", "equalsIgnoreCase", "(", "\"false\"", ")", ")", ")", "{", "return", "false", ";", "}", "else", "if", "(", "o", ".", "equals", "(", "Boolean", ".", "TRUE", ")", "||", "(", "o", "instanceof", "String", "&&", "(", "(", "String", ")", "o", ")", ".", "equalsIgnoreCase", "(", "\"true\"", ")", ")", ")", "{", "return", "true", ";", "}", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "quote", "(", "key", ")", "+", "\"\"", ")", ";", "}", "public", "double", "getDouble", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "try", "{", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "doubleValue", "(", ")", ":", "Double", ".", "valueOf", "(", "(", "String", ")", "o", ")", ".", "doubleValue", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "quote", "(", "key", ")", "+", "\"\"", ")", ";", "}", "}", "public", "int", "getInt", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "intValue", "(", ")", ":", "(", "int", ")", "getDouble", "(", "key", ")", ";", "}", "public", "JSONArray", "getJSONArray", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "if", "(", "o", "instanceof", "JSONArray", ")", "{", "return", "(", "JSONArray", ")", "o", ";", "}", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "quote", "(", "key", ")", "+", "\"\"", ")", ";", "}", "public", "JSONObject", "getJSONObject", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "if", "(", "o", "instanceof", "JSONObject", ")", "{", "return", "(", "JSONObject", ")", "o", ";", "}", "throw", "new", "JSONException", "(", "\"JSONObject[\"", "+", "quote", "(", "key", ")", "+", "\"\"", ")", ";", "}", "public", "long", "getLong", "(", "String", "key", ")", "throws", "JSONException", "{", "Object", "o", "=", "get", "(", "key", ")", ";", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "longValue", "(", ")", ":", "(", "long", ")", "getDouble", "(", "key", ")", ";", "}", "public", "static", "String", "[", "]", "getNames", "(", "JSONObject", "jo", ")", "{", "int", "length", "=", "jo", ".", "length", "(", ")", ";", "if", "(", "length", "==", "0", ")", "{", "return", "null", ";", "}", "Iterator", "i", "=", "jo", ".", "keys", "(", ")", ";", "String", "[", "]", "names", "=", "new", "String", "[", "length", "]", ";", "int", "j", "=", "0", ";", "while", "(", "i", ".", "hasNext", "(", ")", ")", "{", "names", "[", "j", "]", "=", "(", "String", ")", "i", ".", "next", "(", ")", ";", "j", "+=", "1", ";", "}", "return", "names", ";", "}", "public", "static", "String", "[", "]", "getNames", "(", "Object", "object", ")", "{", "if", "(", "object", "==", "null", ")", "{", "return", "null", ";", "}", "Class", "klass", "=", "object", ".", "getClass", "(", ")", ";", "Field", "[", "]", "fields", "=", "klass", ".", "getFields", "(", ")", ";", "int", "length", "=", "fields", ".", "length", ";", "if", "(", "length", "==", "0", ")", "{", "return", "null", ";", "}", "String", "[", "]", "names", "=", "new", "String", "[", "length", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "length", ";", "i", "+=", "1", ")", "{", "names", "[", "i", "]", "=", "fields", "[", "i", "]", ".", "getName", "(", ")", ";", "}", "return", "names", ";", "}", "public", "String", "getString", "(", "String", "key", ")", "throws", "JSONException", "{", "return", "get", "(", "key", ")", ".", "toString", "(", ")", ";", "}", "public", "boolean", "has", "(", "String", "key", ")", "{", "return", "this", ".", "map", ".", "containsKey", "(", "key", ")", ";", "}", "public", "boolean", "isNull", "(", "String", "key", ")", "{", "return", "JSONObject", ".", "NULL", ".", "equals", "(", "opt", "(", "key", ")", ")", ";", "}", "public", "Iterator", "keys", "(", ")", "{", "return", "this", ".", "map", ".", "keySet", "(", ")", ".", "iterator", "(", ")", ";", "}", "public", "int", "length", "(", ")", "{", "return", "this", ".", "map", ".", "size", "(", ")", ";", "}", "public", "JSONArray", "names", "(", ")", "{", "JSONArray", "ja", "=", "new", "JSONArray", "(", ")", ";", "Iterator", "keys", "=", "keys", "(", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "ja", ".", "put", "(", "keys", ".", "next", "(", ")", ")", ";", "}", "return", "ja", ".", "length", "(", ")", "==", "0", "?", "null", ":", "ja", ";", "}", "static", "public", "String", "numberToString", "(", "Number", "n", ")", "throws", "JSONException", "{", "if", "(", "n", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"Null", "pointer\"", ")", ";", "}", "testValidity", "(", "n", ")", ";", "String", "s", "=", "n", ".", "toString", "(", ")", ";", "if", "(", "s", ".", "indexOf", "(", "'.'", ")", ">", "0", "&&", "s", ".", "indexOf", "(", "'e'", ")", "<", "0", "&&", "s", ".", "indexOf", "(", "'E'", ")", "<", "0", ")", "{", "while", "(", "s", ".", "endsWith", "(", "\"0\"", ")", ")", "{", "s", "=", "s", ".", "substring", "(", "0", ",", "s", ".", "length", "(", ")", "-", "1", ")", ";", "}", "if", "(", "s", ".", "endsWith", "(", "\".\"", ")", ")", "{", "s", "=", "s", ".", "substring", "(", "0", ",", "s", ".", "length", "(", ")", "-", "1", ")", ";", "}", "}", "return", "s", ";", "}", "public", "Object", "opt", "(", "String", "key", ")", "{", "return", "key", "==", "null", "?", "null", ":", "this", ".", "map", ".", "get", "(", "key", ")", ";", "}", "public", "boolean", "optBoolean", "(", "String", "key", ")", "{", "return", "optBoolean", "(", "key", ",", "false", ")", ";", "}", "public", "boolean", "optBoolean", "(", "String", "key", ",", "boolean", "defaultValue", ")", "{", "try", "{", "return", "getBoolean", "(", "key", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "Collection", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "new", "JSONArray", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "double", "optDouble", "(", "String", "key", ")", "{", "return", "optDouble", "(", "key", ",", "Double", ".", "NaN", ")", ";", "}", "public", "double", "optDouble", "(", "String", "key", ",", "double", "defaultValue", ")", "{", "try", "{", "Object", "o", "=", "opt", "(", "key", ")", ";", "return", "o", "instanceof", "Number", "?", "(", "(", "Number", ")", "o", ")", ".", "doubleValue", "(", ")", ":", "new", "Double", "(", "(", "String", ")", "o", ")", ".", "doubleValue", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "int", "optInt", "(", "String", "key", ")", "{", "return", "optInt", "(", "key", ",", "0", ")", ";", "}", "public", "int", "optInt", "(", "String", "key", ",", "int", "defaultValue", ")", "{", "try", "{", "return", "getInt", "(", "key", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "JSONArray", "optJSONArray", "(", "String", "key", ")", "{", "Object", "o", "=", "opt", "(", "key", ")", ";", "return", "o", "instanceof", "JSONArray", "?", "(", "JSONArray", ")", "o", ":", "null", ";", "}", "public", "JSONObject", "optJSONObject", "(", "String", "key", ")", "{", "Object", "o", "=", "opt", "(", "key", ")", ";", "return", "o", "instanceof", "JSONObject", "?", "(", "JSONObject", ")", "o", ":", "null", ";", "}", "public", "long", "optLong", "(", "String", "key", ")", "{", "return", "optLong", "(", "key", ",", "0", ")", ";", "}", "public", "long", "optLong", "(", "String", "key", ",", "long", "defaultValue", ")", "{", "try", "{", "return", "getLong", "(", "key", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "defaultValue", ";", "}", "}", "public", "String", "optString", "(", "String", "key", ")", "{", "return", "optString", "(", "key", ",", "\"\"", ")", ";", "}", "public", "String", "optString", "(", "String", "key", ",", "String", "defaultValue", ")", "{", "Object", "o", "=", "opt", "(", "key", ")", ";", "return", "o", "!=", "null", "?", "o", ".", "toString", "(", ")", ":", "defaultValue", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "boolean", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "value", "?", "Boolean", ".", "TRUE", ":", "Boolean", ".", "FALSE", ")", ";", "return", "this", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "double", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "new", "Double", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "int", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "new", "Integer", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "long", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "new", "Long", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "Map", "value", ")", "throws", "JSONException", "{", "put", "(", "key", ",", "new", "JSONObject", "(", "value", ")", ")", ";", "return", "this", ";", "}", "public", "JSONObject", "put", "(", "String", "key", ",", "Object", "value", ")", "throws", "JSONException", "{", "if", "(", "key", "==", "null", ")", "{", "throw", "new", "JSONException", "(", "\"Null", "key.\"", ")", ";", "}", "if", "(", "value", "!=", "null", ")", "{", "testValidity", "(", "value", ")", ";", "this", ".", "map", ".", "put", "(", "key", ",", "value", ")", ";", "}", "else", "{", "remove", "(", "key", ")", ";", "}", "return", "this", ";", "}", "public", "JSONObject", "putOnce", "(", "String", "key", ",", "Object", "value", ")", "throws", "JSONException", "{", "if", "(", "key", "!=", "null", "&&", "value", "!=", "null", ")", "{", "if", "(", "opt", "(", "key", ")", "!=", "null", ")", "{", "throw", "new", "JSONException", "(", "\"\"", "+", "key", "+", "\"\\\"\"", ")", ";", "}", "put", "(", "key", ",", "value", ")", ";", "}", "return", "this", ";", "}", "public", "JSONObject", "putOpt", "(", "String", "key", ",", "Object", "value", ")", "throws", "JSONException", "{", "if", "(", "key", "!=", "null", "&&", "value", "!=", "null", ")", "{", "put", "(", "key", ",", "value", ")", ";", "}", "return", "this", ";", "}", "public", "static", "String", "quote", "(", "String", "string", ")", "{", "if", "(", "string", "==", "null", "||", "string", ".", "length", "(", ")", "==", "0", ")", "{", "return", "\"\\\"\\\"\"", ";", "}", "char", "b", ";", "char", "c", "=", "0", ";", "int", "i", ";", "int", "len", "=", "string", ".", "length", "(", ")", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", "len", "+", "4", ")", ";", "String", "t", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "b", "=", "c", ";", "c", "=", "string", ".", "charAt", "(", "i", ")", ";", "switch", "(", "c", ")", "{", "case", "'\\\\'", ":", "case", "'\"'", ":", "sb", ".", "append", "(", "'\\\\'", ")", ";", "sb", ".", "append", "(", "c", ")", ";", "break", ";", "case", "'/'", ":", "if", "(", "b", "==", "'<'", ")", "{", "sb", ".", "append", "(", "'\\\\'", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "break", ";", "case", "'\\b'", ":", "sb", ".", "append", "(", "\"\\\\b\"", ")", ";", "break", ";", "case", "'\\t'", ":", "sb", ".", "append", "(", "\"\\\\t\"", ")", ";", "break", ";", "case", "'\\n'", ":", "sb", ".", "append", "(", "\"\\\\n\"", ")", ";", "break", ";", "case", "'\\f'", ":", "sb", ".", "append", "(", "\"\\\\f\"", ")", ";", "break", ";", "case", "'\\r'", ":", "sb", ".", "append", "(", "\"\\\\r\"", ")", ";", "break", ";", "default", ":", "if", "(", "c", "<", "'", "'", "||", "(", "c", ">=", "'-UNK-'", "&&", "c", "<", "'-UNK-'", ")", "||", "(", "c", ">=", "'-UNK-'", "&&", "c", "<", "'-UNK-'", ")", ")", "{", "t", "=", "\"000\"", "+", "Integer", ".", "toHexString", "(", "c", ")", ";", "sb", ".", "append", "(", "\"\\\\u\"", "+", "t", ".", "substring", "(", "t", ".", "length", "(", ")", "-", "4", ")", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "}", "sb", ".", "append", "(", "'\"'", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "Object", "remove", "(", "String", "key", ")", "{", "return", "this", ".", "map", ".", "remove", "(", "key", ")", ";", "}", "public", "Iterator", "sortedKeys", "(", ")", "{", "return", "new", "TreeSet", "(", "this", ".", "map", ".", "keySet", "(", ")", ")", ".", "iterator", "(", ")", ";", "}", "static", "public", "Object", "stringToValue", "(", "String", "s", ")", "{", "if", "(", "s", ".", "equals", "(", "\"\"", ")", ")", "{", "return", "s", ";", "}", "if", "(", "s", ".", "equalsIgnoreCase", "(", "\"true\"", ")", ")", "{", "return", "Boolean", ".", "TRUE", ";", "}", "if", "(", "s", ".", "equalsIgnoreCase", "(", "\"false\"", ")", ")", "{", "return", "Boolean", ".", "FALSE", ";", "}", "if", "(", "s", ".", "equalsIgnoreCase", "(", "\"null\"", ")", ")", "{", "return", "JSONObject", ".", "NULL", ";", "}", "char", "b", "=", "s", ".", "charAt", "(", "0", ")", ";", "if", "(", "(", "b", ">=", "'0'", "&&", "b", "<=", "'9'", ")", "||", "b", "==", "'.'", "||", "b", "==", "'-'", "||", "b", "==", "'+'", ")", "{", "if", "(", "b", "==", "'0'", ")", "{", "if", "(", "s", ".", "length", "(", ")", ">", "2", "&&", "(", "s", ".", "charAt", "(", "1", ")", "==", "'x'", "||", "s", ".", "charAt", "(", "1", ")", "==", "'X'", ")", ")", "{", "try", "{", "return", "new", "Integer", "(", "Integer", ".", "parseInt", "(", "s", ".", "substring", "(", "2", ")", ",", "16", ")", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "}", "}", "else", "{", "try", "{", "return", "new", "Integer", "(", "Integer", ".", "parseInt", "(", "s", ",", "8", ")", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "}", "}", "}", "try", "{", "if", "(", "s", ".", "indexOf", "(", "'.'", ")", ">", "-", "1", "||", "s", ".", "indexOf", "(", "'e'", ")", ">", "-", "1", "||", "s", ".", "indexOf", "(", "'E'", ")", ">", "-", "1", ")", "{", "return", "Double", ".", "valueOf", "(", "s", ")", ";", "}", "else", "{", "Long", "myLong", "=", "new", "Long", "(", "s", ")", ";", "if", "(", "myLong", ".", "longValue", "(", ")", "==", "myLong", ".", "intValue", "(", ")", ")", "{", "return", "new", "Integer", "(", "myLong", ".", "intValue", "(", ")", ")", ";", "}", "else", "{", "return", "myLong", ";", "}", "}", "}", "catch", "(", "Exception", "f", ")", "{", "}", "}", "return", "s", ";", "}", "static", "void", "testValidity", "(", "Object", "o", ")", "throws", "JSONException", "{", "if", "(", "o", "!=", "null", ")", "{", "if", "(", "o", "instanceof", "Double", ")", "{", "if", "(", "(", "(", "Double", ")", "o", ")", ".", "isInfinite", "(", ")", "||", "(", "(", "Double", ")", "o", ")", ".", "isNaN", "(", ")", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "}", "else", "if", "(", "o", "instanceof", "Float", ")", "{", "if", "(", "(", "(", "Float", ")", "o", ")", ".", "isInfinite", "(", ")", "||", "(", "(", "Float", ")", "o", ")", ".", "isNaN", "(", ")", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "}", "}", "}", "public", "JSONArray", "toJSONArray", "(", "JSONArray", "names", ")", "throws", "JSONException", "{", "if", "(", "names", "==", "null", "||", "names", ".", "length", "(", ")", "==", "0", ")", "{", "return", "null", ";", "}", "JSONArray", "ja", "=", "new", "JSONArray", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "names", ".", "length", "(", ")", ";", "i", "+=", "1", ")", "{", "ja", ".", "put", "(", "this", ".", "opt", "(", "names", ".", "getString", "(", "i", ")", ")", ")", ";", "}", "return", "ja", ";", "}", "public", "String", "toString", "(", ")", "{", "try", "{", "Iterator", "keys", "=", "keys", "(", ")", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", "\"{\"", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "if", "(", "sb", ".", "length", "(", ")", ">", "1", ")", "{", "sb", ".", "append", "(", "','", ")", ";", "}", "Object", "o", "=", "keys", ".", "next", "(", ")", ";", "sb", ".", "append", "(", "quote", "(", "o", ".", "toString", "(", ")", ")", ")", ";", "sb", ".", "append", "(", "':'", ")", ";", "sb", ".", "append", "(", "valueToString", "(", "this", ".", "map", ".", "get", "(", "o", ")", ")", ")", ";", "}", "sb", ".", "append", "(", "'}'", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "return", "null", ";", "}", "}", "public", "String", "toString", "(", "int", "indentFactor", ")", "throws", "JSONException", "{", "return", "toString", "(", "indentFactor", ",", "0", ")", ";", "}", "String", "toString", "(", "int", "indentFactor", ",", "int", "indent", ")", "throws", "JSONException", "{", "int", "j", ";", "int", "n", "=", "length", "(", ")", ";", "if", "(", "n", "==", "0", ")", "{", "return", "\"{}\"", ";", "}", "Iterator", "keys", "=", "sortedKeys", "(", ")", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", "\"{\"", ")", ";", "int", "newindent", "=", "indent", "+", "indentFactor", ";", "Object", "o", ";", "if", "(", "n", "==", "1", ")", "{", "o", "=", "keys", ".", "next", "(", ")", ";", "sb", ".", "append", "(", "quote", "(", "o", ".", "toString", "(", ")", ")", ")", ";", "sb", ".", "append", "(", "\":", "\"", ")", ";", "sb", ".", "append", "(", "valueToString", "(", "this", ".", "map", ".", "get", "(", "o", ")", ",", "indentFactor", ",", "indent", ")", ")", ";", "}", "else", "{", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "o", "=", "keys", ".", "next", "(", ")", ";", "if", "(", "sb", ".", "length", "(", ")", ">", "1", ")", "{", "sb", ".", "append", "(", "\",n\"", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "'\\n'", ")", ";", "}", "for", "(", "j", "=", "0", ";", "j", "<", "newindent", ";", "j", "+=", "1", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "}", "sb", ".", "append", "(", "quote", "(", "o", ".", "toString", "(", ")", ")", ")", ";", "sb", ".", "append", "(", "\":", "\"", ")", ";", "sb", ".", "append", "(", "valueToString", "(", "this", ".", "map", ".", "get", "(", "o", ")", ",", "indentFactor", ",", "newindent", ")", ")", ";", "}", "if", "(", "sb", ".", "length", "(", ")", ">", "1", ")", "{", "sb", ".", "append", "(", "'\\n'", ")", ";", "for", "(", "j", "=", "0", ";", "j", "<", "indent", ";", "j", "+=", "1", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "}", "}", "}", "sb", ".", "append", "(", "'}'", ")", ";", "return", "sb", ".", "toString", "(", ")", ";", "}", "static", "String", "valueToString", "(", "Object", "value", ")", "throws", "JSONException", "{", "if", "(", "value", "==", "null", "||", "value", ".", "equals", "(", "null", ")", ")", "{", "return", "\"null\"", ";", "}", "if", "(", "value", "instanceof", "JSONString", ")", "{", "Object", "o", ";", "try", "{", "o", "=", "(", "(", "JSONString", ")", "value", ")", ".", "toJSONString", "(", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "if", "(", "o", "instanceof", "String", ")", "{", "return", "(", "String", ")", "o", ";", "}", "throw", "new", "JSONException", "(", "\"\"", "+", "o", ")", ";", "}", "if", "(", "value", "instanceof", "Number", ")", "{", "return", "numberToString", "(", "(", "Number", ")", "value", ")", ";", "}", "if", "(", "value", "instanceof", "Boolean", "||", "value", "instanceof", "JSONObject", "||", "value", "instanceof", "JSONArray", ")", "{", "return", "value", ".", "toString", "(", ")", ";", "}", "if", "(", "value", "instanceof", "Map", ")", "{", "return", "new", "JSONObject", "(", "(", "Map", ")", "value", ")", ".", "toString", "(", ")", ";", "}", "if", "(", "value", "instanceof", "Collection", ")", "{", "return", "new", "JSONArray", "(", "(", "Collection", ")", "value", ")", ".", "toString", "(", ")", ";", "}", "if", "(", "value", ".", "getClass", "(", ")", ".", "isArray", "(", ")", ")", "{", "return", "new", "JSONArray", "(", "value", ")", ".", "toString", "(", ")", ";", "}", "return", "quote", "(", "value", ".", "toString", "(", ")", ")", ";", "}", "static", "String", "valueToString", "(", "Object", "value", ",", "int", "indentFactor", ",", "int", "indent", ")", "throws", "JSONException", "{", "if", "(", "value", "==", "null", "||", "value", ".", "equals", "(", "null", ")", ")", "{", "return", "\"null\"", ";", "}", "try", "{", "if", "(", "value", "instanceof", "JSONString", ")", "{", "Object", "o", "=", "(", "(", "JSONString", ")", "value", ")", ".", "toJSONString", "(", ")", ";", "if", "(", "o", "instanceof", "String", ")", "{", "return", "(", "String", ")", "o", ";", "}", "}", "}", "catch", "(", "Exception", "e", ")", "{", "}", "if", "(", "value", "instanceof", "Number", ")", "{", "return", "numberToString", "(", "(", "Number", ")", "value", ")", ";", "}", "if", "(", "value", "instanceof", "Boolean", ")", "{", "return", "value", ".", "toString", "(", ")", ";", "}", "if", "(", "value", "instanceof", "JSONObject", ")", "{", "return", "(", "(", "JSONObject", ")", "value", ")", ".", "toString", "(", "indentFactor", ",", "indent", ")", ";", "}", "if", "(", "value", "instanceof", "JSONArray", ")", "{", "return", "(", "(", "JSONArray", ")", "value", ")", ".", "toString", "(", "indentFactor", ",", "indent", ")", ";", "}", "if", "(", "value", "instanceof", "Map", ")", "{", "return", "new", "JSONObject", "(", "(", "Map", ")", "value", ")", ".", "toString", "(", "indentFactor", ",", "indent", ")", ";", "}", "if", "(", "value", "instanceof", "Collection", ")", "{", "return", "new", "JSONArray", "(", "(", "Collection", ")", "value", ")", ".", "toString", "(", "indentFactor", ",", "indent", ")", ";", "}", "if", "(", "value", ".", "getClass", "(", ")", ".", "isArray", "(", ")", ")", "{", "return", "new", "JSONArray", "(", "value", ")", ".", "toString", "(", "indentFactor", ",", "indent", ")", ";", "}", "return", "quote", "(", "value", ".", "toString", "(", ")", ")", ";", "}", "public", "Writer", "write", "(", "Writer", "writer", ")", "throws", "JSONException", "{", "try", "{", "boolean", "b", "=", "false", ";", "Iterator", "keys", "=", "keys", "(", ")", ";", "writer", ".", "write", "(", "'{'", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "if", "(", "b", ")", "{", "writer", ".", "write", "(", "','", ")", ";", "}", "Object", "k", "=", "keys", ".", "next", "(", ")", ";", "writer", ".", "write", "(", "quote", "(", "k", ".", "toString", "(", ")", ")", ")", ";", "writer", ".", "write", "(", "':'", ")", ";", "Object", "v", "=", "this", ".", "map", ".", "get", "(", "k", ")", ";", "if", "(", "v", "instanceof", "JSONObject", ")", "{", "(", "(", "JSONObject", ")", "v", ")", ".", "write", "(", "writer", ")", ";", "}", "else", "if", "(", "v", "instanceof", "JSONArray", ")", "{", "(", "(", "JSONArray", ")", "v", ")", ".", "write", "(", "writer", ")", ";", "}", "else", "{", "writer", ".", "write", "(", "valueToString", "(", "v", ")", ")", ";", "}", "b", "=", "true", ";", "}", "writer", ".", "write", "(", "'}'", ")", ";", "return", "writer", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "JSONException", "(", "e", ")", ";", "}", "}", "}", "</s>" ]
8,585
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "util", ".", "Iterator", ";", "public", "class", "JSONML", "{", "private", "static", "Object", "parse", "(", "XMLTokener", "x", ",", "boolean", "arrayForm", ",", "JSONArray", "ja", ")", "throws", "JSONException", "{", "String", "attribute", ";", "char", "c", ";", "String", "closeTag", "=", "null", ";", "int", "i", ";", "JSONArray", "newja", "=", "null", ";", "JSONObject", "newjo", "=", "null", ";", "Object", "token", ";", "String", "tagName", "=", "null", ";", "while", "(", "true", ")", "{", "token", "=", "x", ".", "nextContent", "(", ")", ";", "if", "(", "token", "==", "XML", ".", "LT", ")", "{", "token", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "token", "instanceof", "Character", ")", "{", "if", "(", "token", "==", "XML", ".", "SLASH", ")", "{", "token", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "!", "(", "token", "instanceof", "String", ")", ")", "{", "throw", "new", "JSONException", "(", "\"\"", "+", "token", "+", "\"'.\"", ")", ";", "}", "if", "(", "x", ".", "nextToken", "(", ")", "!=", "XML", ".", "GT", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "return", "token", ";", "}", "else", "if", "(", "token", "==", "XML", ".", "BANG", ")", "{", "c", "=", "x", ".", "next", "(", ")", ";", "if", "(", "c", "==", "'-'", ")", "{", "if", "(", "x", ".", "next", "(", ")", "==", "'-'", ")", "{", "x", ".", "skipPast", "(", "\"-->\"", ")", ";", "}", "x", ".", "back", "(", ")", ";", "}", "else", "if", "(", "c", "==", "'['", ")", "{", "token", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "token", ".", "equals", "(", "\"CDATA\"", ")", "&&", "x", ".", "next", "(", ")", "==", "'['", ")", "{", "if", "(", "ja", "!=", "null", ")", "{", "ja", ".", "put", "(", "x", ".", "nextCDATA", "(", ")", ")", ";", "}", "}", "else", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "else", "{", "i", "=", "1", ";", "do", "{", "token", "=", "x", ".", "nextMeta", "(", ")", ";", "if", "(", "token", "==", "null", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "else", "if", "(", "token", "==", "XML", ".", "LT", ")", "{", "i", "+=", "1", ";", "}", "else", "if", "(", "token", "==", "XML", ".", "GT", ")", "{", "i", "-=", "1", ";", "}", "}", "while", "(", "i", ">", "0", ")", ";", "}", "}", "else", "if", "(", "token", "==", "XML", ".", "QUEST", ")", "{", "x", ".", "skipPast", "(", "\"?>\"", ")", ";", "}", "else", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "else", "{", "if", "(", "!", "(", "token", "instanceof", "String", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", "+", "token", "+", "\"'.\"", ")", ";", "}", "tagName", "=", "(", "String", ")", "token", ";", "newja", "=", "new", "JSONArray", "(", ")", ";", "newjo", "=", "new", "JSONObject", "(", ")", ";", "if", "(", "arrayForm", ")", "{", "newja", ".", "put", "(", "tagName", ")", ";", "if", "(", "ja", "!=", "null", ")", "{", "ja", ".", "put", "(", "newja", ")", ";", "}", "}", "else", "{", "newjo", ".", "put", "(", "\"tagName\"", ",", "tagName", ")", ";", "if", "(", "ja", "!=", "null", ")", "{", "ja", ".", "put", "(", "newjo", ")", ";", "}", "}", "token", "=", "null", ";", "for", "(", ";", ";", ")", "{", "if", "(", "token", "==", "null", ")", "{", "token", "=", "x", ".", "nextToken", "(", ")", ";", "}", "if", "(", "token", "==", "null", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "!", "(", "token", "instanceof", "String", ")", ")", "{", "break", ";", "}", "attribute", "=", "(", "String", ")", "token", ";", "if", "(", "!", "arrayForm", "&&", "(", "attribute", "==", "\"tagName\"", "||", "attribute", "==", "\"childNode\"", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "token", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "token", "==", "XML", ".", "EQ", ")", "{", "token", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "!", "(", "token", "instanceof", "String", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "newjo", ".", "accumulate", "(", "attribute", ",", "JSONObject", ".", "stringToValue", "(", "(", "String", ")", "token", ")", ")", ";", "token", "=", "null", ";", "}", "else", "{", "newjo", ".", "accumulate", "(", "attribute", ",", "\"\"", ")", ";", "}", "}", "if", "(", "arrayForm", "&&", "newjo", ".", "length", "(", ")", ">", "0", ")", "{", "newja", ".", "put", "(", "newjo", ")", ";", "}", "if", "(", "token", "==", "XML", ".", "SLASH", ")", "{", "if", "(", "x", ".", "nextToken", "(", ")", "!=", "XML", ".", "GT", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "if", "(", "ja", "==", "null", ")", "{", "if", "(", "arrayForm", ")", "{", "return", "newja", ";", "}", "else", "{", "return", "newjo", ";", "}", "}", "}", "else", "{", "if", "(", "token", "!=", "XML", ".", "GT", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "closeTag", "=", "(", "String", ")", "parse", "(", "x", ",", "arrayForm", ",", "newja", ")", ";", "if", "(", "closeTag", "!=", "null", ")", "{", "if", "(", "!", "closeTag", ".", "equals", "(", "tagName", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"Mismatched", "'\"", "+", "tagName", "+", "\"'", "and", "'\"", "+", "closeTag", "+", "\"'\"", ")", ";", "}", "tagName", "=", "null", ";", "if", "(", "!", "arrayForm", "&&", "newja", ".", "length", "(", ")", ">", "0", ")", "{", "newjo", ".", "put", "(", "\"childNodes\"", ",", "newja", ")", ";", "}", "if", "(", "ja", "==", "null", ")", "{", "if", "(", "arrayForm", ")", "{", "return", "newja", ";", "}", "else", "{", "return", "newjo", ";", "}", "}", "}", "}", "}", "}", "else", "{", "if", "(", "ja", "!=", "null", ")", "{", "ja", ".", "put", "(", "token", "instanceof", "String", "?", "JSONObject", ".", "stringToValue", "(", "(", "String", ")", "token", ")", ":", "token", ")", ";", "}", "}", "}", "}", "public", "static", "JSONArray", "toJSONArray", "(", "String", "string", ")", "throws", "JSONException", "{", "return", "toJSONArray", "(", "new", "XMLTokener", "(", "string", ")", ")", ";", "}", "public", "static", "JSONArray", "toJSONArray", "(", "XMLTokener", "x", ")", "throws", "JSONException", "{", "return", "(", "JSONArray", ")", "parse", "(", "x", ",", "true", ",", "null", ")", ";", "}", "public", "static", "JSONObject", "toJSONObject", "(", "XMLTokener", "x", ")", "throws", "JSONException", "{", "return", "(", "JSONObject", ")", "parse", "(", "x", ",", "false", ",", "null", ")", ";", "}", "public", "static", "JSONObject", "toJSONObject", "(", "String", "string", ")", "throws", "JSONException", "{", "return", "toJSONObject", "(", "new", "XMLTokener", "(", "string", ")", ")", ";", "}", "public", "static", "String", "toString", "(", "JSONArray", "ja", ")", "throws", "JSONException", "{", "Object", "e", ";", "int", "i", ";", "JSONObject", "jo", ";", "String", "k", ";", "Iterator", "keys", ";", "int", "length", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "String", "tagName", ";", "String", "v", ";", "tagName", "=", "ja", ".", "getString", "(", "0", ")", ";", "XML", ".", "noSpace", "(", "tagName", ")", ";", "tagName", "=", "XML", ".", "escape", "(", "tagName", ")", ";", "sb", ".", "append", "(", "'<'", ")", ";", "sb", ".", "append", "(", "tagName", ")", ";", "e", "=", "ja", ".", "opt", "(", "1", ")", ";", "if", "(", "e", "instanceof", "JSONObject", ")", "{", "i", "=", "2", ";", "jo", "=", "(", "JSONObject", ")", "e", ";", "keys", "=", "jo", ".", "keys", "(", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "k", "=", "keys", ".", "next", "(", ")", ".", "toString", "(", ")", ";", "XML", ".", "noSpace", "(", "k", ")", ";", "v", "=", "jo", ".", "optString", "(", "k", ")", ";", "if", "(", "v", "!=", "null", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "XML", ".", "escape", "(", "k", ")", ")", ";", "sb", ".", "append", "(", "'='", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "sb", ".", "append", "(", "XML", ".", "escape", "(", "v", ")", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "}", "}", "}", "else", "{", "i", "=", "1", ";", "}", "length", "=", "ja", ".", "length", "(", ")", ";", "if", "(", "i", ">=", "length", ")", "{", "sb", ".", "append", "(", "'/'", ")", ";", "sb", ".", "append", "(", "'>'", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "'>'", ")", ";", "do", "{", "e", "=", "ja", ".", "get", "(", "i", ")", ";", "i", "+=", "1", ";", "if", "(", "e", "!=", "null", ")", "{", "if", "(", "e", "instanceof", "String", ")", "{", "sb", ".", "append", "(", "XML", ".", "escape", "(", "e", ".", "toString", "(", ")", ")", ")", ";", "}", "else", "if", "(", "e", "instanceof", "JSONObject", ")", "{", "sb", ".", "append", "(", "toString", "(", "(", "JSONObject", ")", "e", ")", ")", ";", "}", "else", "if", "(", "e", "instanceof", "JSONArray", ")", "{", "sb", ".", "append", "(", "toString", "(", "(", "JSONArray", ")", "e", ")", ")", ";", "}", "}", "}", "while", "(", "i", "<", "length", ")", ";", "sb", ".", "append", "(", "'<'", ")", ";", "sb", ".", "append", "(", "'/'", ")", ";", "sb", ".", "append", "(", "tagName", ")", ";", "sb", ".", "append", "(", "'>'", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "static", "String", "toString", "(", "JSONObject", "jo", ")", "throws", "JSONException", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "Object", "e", ";", "int", "i", ";", "JSONArray", "ja", ";", "String", "k", ";", "Iterator", "keys", ";", "int", "len", ";", "String", "tagName", ";", "String", "v", ";", "tagName", "=", "jo", ".", "optString", "(", "\"tagName\"", ")", ";", "if", "(", "tagName", "==", "null", ")", "{", "return", "XML", ".", "escape", "(", "jo", ".", "toString", "(", ")", ")", ";", "}", "XML", ".", "noSpace", "(", "tagName", ")", ";", "tagName", "=", "XML", ".", "escape", "(", "tagName", ")", ";", "sb", ".", "append", "(", "'<'", ")", ";", "sb", ".", "append", "(", "tagName", ")", ";", "keys", "=", "jo", ".", "keys", "(", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "k", "=", "keys", ".", "next", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "!", "k", ".", "equals", "(", "\"tagName\"", ")", "&&", "!", "k", ".", "equals", "(", "\"childNodes\"", ")", ")", "{", "XML", ".", "noSpace", "(", "k", ")", ";", "v", "=", "jo", ".", "optString", "(", "k", ")", ";", "if", "(", "v", "!=", "null", ")", "{", "sb", ".", "append", "(", "'", "'", ")", ";", "sb", ".", "append", "(", "XML", ".", "escape", "(", "k", ")", ")", ";", "sb", ".", "append", "(", "'='", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "sb", ".", "append", "(", "XML", ".", "escape", "(", "v", ")", ")", ";", "sb", ".", "append", "(", "'\"'", ")", ";", "}", "}", "}", "ja", "=", "jo", ".", "optJSONArray", "(", "\"childNodes\"", ")", ";", "if", "(", "ja", "==", "null", ")", "{", "sb", ".", "append", "(", "'/'", ")", ";", "sb", ".", "append", "(", "'>'", ")", ";", "}", "else", "{", "sb", ".", "append", "(", "'>'", ")", ";", "len", "=", "ja", ".", "length", "(", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "e", "=", "ja", ".", "get", "(", "i", ")", ";", "if", "(", "e", "!=", "null", ")", "{", "if", "(", "e", "instanceof", "String", ")", "{", "sb", ".", "append", "(", "XML", ".", "escape", "(", "e", ".", "toString", "(", ")", ")", ")", ";", "}", "else", "if", "(", "e", "instanceof", "JSONObject", ")", "{", "sb", ".", "append", "(", "toString", "(", "(", "JSONObject", ")", "e", ")", ")", ";", "}", "else", "if", "(", "e", "instanceof", "JSONArray", ")", "{", "sb", ".", "append", "(", "toString", "(", "(", "JSONArray", ")", "e", ")", ")", ";", "}", "}", "}", "sb", ".", "append", "(", "'<'", ")", ";", "sb", ".", "append", "(", "'/'", ")", ";", "sb", ".", "append", "(", "tagName", ")", ";", "sb", ".", "append", "(", "'>'", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,586
[ "<s>", "package", "org", ".", "json", ";", "public", "interface", "JSONString", "{", "public", "String", "toJSONString", "(", ")", ";", "}", "</s>" ]
8,587
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "util", ".", "Iterator", ";", "public", "class", "CookieList", "{", "public", "static", "JSONObject", "toJSONObject", "(", "String", "string", ")", "throws", "JSONException", "{", "JSONObject", "o", "=", "new", "JSONObject", "(", ")", ";", "JSONTokener", "x", "=", "new", "JSONTokener", "(", "string", ")", ";", "while", "(", "x", ".", "more", "(", ")", ")", "{", "String", "name", "=", "Cookie", ".", "unescape", "(", "x", ".", "nextTo", "(", "'='", ")", ")", ";", "x", ".", "next", "(", "'='", ")", ";", "o", ".", "put", "(", "name", ",", "Cookie", ".", "unescape", "(", "x", ".", "nextTo", "(", "';'", ")", ")", ")", ";", "x", ".", "next", "(", ")", ";", "}", "return", "o", ";", "}", "public", "static", "String", "toString", "(", "JSONObject", "o", ")", "throws", "JSONException", "{", "boolean", "b", "=", "false", ";", "Iterator", "keys", "=", "o", ".", "keys", "(", ")", ";", "String", "s", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "s", "=", "keys", ".", "next", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "!", "o", ".", "isNull", "(", "s", ")", ")", "{", "if", "(", "b", ")", "{", "sb", ".", "append", "(", "';'", ")", ";", "}", "sb", ".", "append", "(", "Cookie", ".", "escape", "(", "s", ")", ")", ";", "sb", ".", "append", "(", "\"=\"", ")", ";", "sb", ".", "append", "(", "Cookie", ".", "escape", "(", "o", ".", "getString", "(", "s", ")", ")", ")", ";", "b", "=", "true", ";", "}", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,588
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "util", ".", "Iterator", ";", "public", "class", "XML", "{", "public", "static", "final", "Character", "AMP", "=", "new", "Character", "(", "'&'", ")", ";", "public", "static", "final", "Character", "APOS", "=", "new", "Character", "(", "'\\''", ")", ";", "public", "static", "final", "Character", "BANG", "=", "new", "Character", "(", "'!'", ")", ";", "public", "static", "final", "Character", "EQ", "=", "new", "Character", "(", "'='", ")", ";", "public", "static", "final", "Character", "GT", "=", "new", "Character", "(", "'>'", ")", ";", "public", "static", "final", "Character", "LT", "=", "new", "Character", "(", "'<'", ")", ";", "public", "static", "final", "Character", "QUEST", "=", "new", "Character", "(", "'?'", ")", ";", "public", "static", "final", "Character", "QUOT", "=", "new", "Character", "(", "'\"'", ")", ";", "public", "static", "final", "Character", "SLASH", "=", "new", "Character", "(", "'/'", ")", ";", "public", "static", "String", "escape", "(", "String", "string", ")", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", "int", "i", "=", "0", ",", "len", "=", "string", ".", "length", "(", ")", ";", "i", "<", "len", ";", "i", "++", ")", "{", "char", "c", "=", "string", ".", "charAt", "(", "i", ")", ";", "switch", "(", "c", ")", "{", "case", "'&'", ":", "sb", ".", "append", "(", "\"&amp;\"", ")", ";", "break", ";", "case", "'<'", ":", "sb", ".", "append", "(", "\"&lt;\"", ")", ";", "break", ";", "case", "'>'", ":", "sb", ".", "append", "(", "\"&gt;\"", ")", ";", "break", ";", "case", "'\"'", ":", "sb", ".", "append", "(", "\"&quot;\"", ")", ";", "break", ";", "default", ":", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "return", "sb", ".", "toString", "(", ")", ";", "}", "public", "static", "void", "noSpace", "(", "String", "string", ")", "throws", "JSONException", "{", "int", "i", ",", "length", "=", "string", ".", "length", "(", ")", ";", "if", "(", "length", "==", "0", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "for", "(", "i", "=", "0", ";", "i", "<", "length", ";", "i", "+=", "1", ")", "{", "if", "(", "Character", ".", "isWhitespace", "(", "string", ".", "charAt", "(", "i", ")", ")", ")", "{", "throw", "new", "JSONException", "(", "\"'\"", "+", "string", "+", "\"\"", ")", ";", "}", "}", "}", "private", "static", "boolean", "parse", "(", "XMLTokener", "x", ",", "JSONObject", "context", ",", "String", "name", ")", "throws", "JSONException", "{", "char", "c", ";", "int", "i", ";", "String", "n", ";", "JSONObject", "o", "=", "null", ";", "String", "s", ";", "Object", "t", ";", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "t", "==", "BANG", ")", "{", "c", "=", "x", ".", "next", "(", ")", ";", "if", "(", "c", "==", "'-'", ")", "{", "if", "(", "x", ".", "next", "(", ")", "==", "'-'", ")", "{", "x", ".", "skipPast", "(", "\"-->\"", ")", ";", "return", "false", ";", "}", "x", ".", "back", "(", ")", ";", "}", "else", "if", "(", "c", "==", "'['", ")", "{", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "t", ".", "equals", "(", "\"CDATA\"", ")", ")", "{", "if", "(", "x", ".", "next", "(", ")", "==", "'['", ")", "{", "s", "=", "x", ".", "nextCDATA", "(", ")", ";", "if", "(", "s", ".", "length", "(", ")", ">", "0", ")", "{", "context", ".", "accumulate", "(", "\"content\"", ",", "s", ")", ";", "}", "return", "false", ";", "}", "}", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "i", "=", "1", ";", "do", "{", "t", "=", "x", ".", "nextMeta", "(", ")", ";", "if", "(", "t", "==", "null", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "else", "if", "(", "t", "==", "LT", ")", "{", "i", "+=", "1", ";", "}", "else", "if", "(", "t", "==", "GT", ")", "{", "i", "-=", "1", ";", "}", "}", "while", "(", "i", ">", "0", ")", ";", "return", "false", ";", "}", "else", "if", "(", "t", "==", "QUEST", ")", "{", "x", ".", "skipPast", "(", "\"?>\"", ")", ";", "return", "false", ";", "}", "else", "if", "(", "t", "==", "SLASH", ")", "{", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "name", "==", "null", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", "+", "t", ")", ";", "}", "if", "(", "!", "t", ".", "equals", "(", "name", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"Mismatched", "\"", "+", "name", "+", "\"", "and", "\"", "+", "t", ")", ";", "}", "if", "(", "x", ".", "nextToken", "(", ")", "!=", "GT", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "return", "true", ";", "}", "else", "if", "(", "t", "instanceof", "Character", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "else", "{", "n", "=", "(", "String", ")", "t", ";", "t", "=", "null", ";", "o", "=", "new", "JSONObject", "(", ")", ";", "for", "(", ";", ";", ")", "{", "if", "(", "t", "==", "null", ")", "{", "t", "=", "x", ".", "nextToken", "(", ")", ";", "}", "if", "(", "t", "instanceof", "String", ")", "{", "s", "=", "(", "String", ")", "t", ";", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "t", "==", "EQ", ")", "{", "t", "=", "x", ".", "nextToken", "(", ")", ";", "if", "(", "!", "(", "t", "instanceof", "String", ")", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "o", ".", "accumulate", "(", "s", ",", "JSONObject", ".", "stringToValue", "(", "(", "String", ")", "t", ")", ")", ";", "t", "=", "null", ";", "}", "else", "{", "o", ".", "accumulate", "(", "s", ",", "\"\"", ")", ";", "}", "}", "else", "if", "(", "t", "==", "SLASH", ")", "{", "if", "(", "x", ".", "nextToken", "(", ")", "!=", "GT", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "context", ".", "accumulate", "(", "n", ",", "o", ")", ";", "return", "false", ";", "}", "else", "if", "(", "t", "==", "GT", ")", "{", "for", "(", ";", ";", ")", "{", "t", "=", "x", ".", "nextContent", "(", ")", ";", "if", "(", "t", "==", "null", ")", "{", "if", "(", "n", "!=", "null", ")", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", "+", "n", ")", ";", "}", "return", "false", ";", "}", "else", "if", "(", "t", "instanceof", "String", ")", "{", "s", "=", "(", "String", ")", "t", ";", "if", "(", "s", ".", "length", "(", ")", ">", "0", ")", "{", "o", ".", "accumulate", "(", "\"content\"", ",", "JSONObject", ".", "stringToValue", "(", "s", ")", ")", ";", "}", "}", "else", "if", "(", "t", "==", "LT", ")", "{", "if", "(", "parse", "(", "x", ",", "o", ",", "n", ")", ")", "{", "if", "(", "o", ".", "length", "(", ")", "==", "0", ")", "{", "context", ".", "accumulate", "(", "n", ",", "\"\"", ")", ";", "}", "else", "if", "(", "o", ".", "length", "(", ")", "==", "1", "&&", "o", ".", "opt", "(", "\"content\"", ")", "!=", "null", ")", "{", "context", ".", "accumulate", "(", "n", ",", "o", ".", "opt", "(", "\"content\"", ")", ")", ";", "}", "else", "{", "context", ".", "accumulate", "(", "n", ",", "o", ")", ";", "}", "return", "false", ";", "}", "}", "}", "}", "else", "{", "throw", "x", ".", "syntaxError", "(", "\"\"", ")", ";", "}", "}", "}", "}", "public", "static", "JSONObject", "toJSONObject", "(", "String", "string", ")", "throws", "JSONException", "{", "JSONObject", "o", "=", "new", "JSONObject", "(", ")", ";", "XMLTokener", "x", "=", "new", "XMLTokener", "(", "string", ")", ";", "while", "(", "x", ".", "more", "(", ")", "&&", "x", ".", "skipPast", "(", "\"<\"", ")", ")", "{", "parse", "(", "x", ",", "o", ",", "null", ")", ";", "}", "return", "o", ";", "}", "public", "static", "String", "toString", "(", "Object", "o", ")", "throws", "JSONException", "{", "return", "toString", "(", "o", ",", "null", ")", ";", "}", "public", "static", "String", "toString", "(", "Object", "o", ",", "String", "tagName", ")", "throws", "JSONException", "{", "StringBuffer", "b", "=", "new", "StringBuffer", "(", ")", ";", "int", "i", ";", "JSONArray", "ja", ";", "JSONObject", "jo", ";", "String", "k", ";", "Iterator", "keys", ";", "int", "len", ";", "String", "s", ";", "Object", "v", ";", "if", "(", "o", "instanceof", "JSONObject", ")", "{", "if", "(", "tagName", "!=", "null", ")", "{", "b", ".", "append", "(", "'<'", ")", ";", "b", ".", "append", "(", "tagName", ")", ";", "b", ".", "append", "(", "'>'", ")", ";", "}", "jo", "=", "(", "JSONObject", ")", "o", ";", "keys", "=", "jo", ".", "keys", "(", ")", ";", "while", "(", "keys", ".", "hasNext", "(", ")", ")", "{", "k", "=", "keys", ".", "next", "(", ")", ".", "toString", "(", ")", ";", "v", "=", "jo", ".", "opt", "(", "k", ")", ";", "if", "(", "v", "==", "null", ")", "{", "v", "=", "\"\"", ";", "}", "if", "(", "v", "instanceof", "String", ")", "{", "s", "=", "(", "String", ")", "v", ";", "}", "else", "{", "s", "=", "null", ";", "}", "if", "(", "k", ".", "equals", "(", "\"content\"", ")", ")", "{", "if", "(", "v", "instanceof", "JSONArray", ")", "{", "ja", "=", "(", "JSONArray", ")", "v", ";", "len", "=", "ja", ".", "length", "(", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "if", "(", "i", ">", "0", ")", "{", "b", ".", "append", "(", "'\\n'", ")", ";", "}", "b", ".", "append", "(", "escape", "(", "ja", ".", "get", "(", "i", ")", ".", "toString", "(", ")", ")", ")", ";", "}", "}", "else", "{", "b", ".", "append", "(", "escape", "(", "v", ".", "toString", "(", ")", ")", ")", ";", "}", "}", "else", "if", "(", "v", "instanceof", "JSONArray", ")", "{", "ja", "=", "(", "JSONArray", ")", "v", ";", "len", "=", "ja", ".", "length", "(", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "i", "+=", "1", ")", "{", "v", "=", "ja", ".", "get", "(", "i", ")", ";", "if", "(", "v", "instanceof", "JSONArray", ")", "{", "b", ".", "append", "(", "'<'", ")", ";", "b", ".", "append", "(", "k", ")", ";", "b", ".", "append", "(", "'>'", ")", ";", "b", ".", "append", "(", "toString", "(", "v", ")", ")", ";", "b", ".", "append", "(", "\"</\"", ")", ";", "b", ".", "append", "(", "k", ")", ";", "b", ".", "append", "(", "'>'", ")", ";", "}", "else", "{", "b", ".", "append", "(", "toString", "(", "v", ",", "k", ")", ")", ";", "}", "}", "}", "else", "if", "(", "v", ".", "equals", "(", "\"\"", ")", ")", "{", "b", ".", "append", "(", "'<'", ")", ";", "b", ".", "append", "(", "k", ")", ";", "b", ".", "append", "(", "\"/>\"", ")", ";", "}", "else", "{", "b", ".", "append", "(", "toString", "(", "v", ",", "k", ")", ")", ";", "}", "}", "if", "(", "tagName", "!=", "null", ")", "{", "b", ".", "append", "(", "\"</\"", ")", ";", "b", ".", "append", "(", "tagName", ")", ";", "b", ".", "append", "(", "'>'", ")", ";", "}", "return", "b", ".", "toString", "(", ")", ";", "}", "else", "if", "(", "o", "instanceof", "JSONArray", ")", "{", "ja", "=", "(", "JSONArray", ")", "o", ";", "len", "=", "ja", ".", "length", "(", ")", ";", "for", "(", "i", "=", "0", ";", "i", "<", "len", ";", "++", "i", ")", "{", "v", "=", "ja", ".", "opt", "(", "i", ")", ";", "b", ".", "append", "(", "toString", "(", "v", ",", "(", "tagName", "==", "null", ")", "?", "\"array\"", ":", "tagName", ")", ")", ";", "}", "return", "b", ".", "toString", "(", ")", ";", "}", "else", "{", "s", "=", "(", "o", "==", "null", ")", "?", "\"null\"", ":", "escape", "(", "o", ".", "toString", "(", ")", ")", ";", "return", "(", "tagName", "==", "null", ")", "?", "\"\\\"\"", "+", "s", "+", "\"\\\"\"", ":", "(", "s", ".", "length", "(", ")", "==", "0", ")", "?", "\"<\"", "+", "tagName", "+", "\"/>\"", ":", "\"<\"", "+", "tagName", "+", "\">\"", "+", "s", "+", "\"</\"", "+", "tagName", "+", "\">\"", ";", "}", "}", "}", "</s>" ]
8,589
[ "<s>", "package", "org", ".", "json", ";", "import", "java", ".", "io", ".", "BufferedReader", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Reader", ";", "import", "java", ".", "io", ".", "StringReader", ";", "public", "class", "JSONTokener", "{", "private", "int", "index", ";", "private", "Reader", "reader", ";", "private", "char", "lastChar", ";", "private", "boolean", "useLastChar", ";", "public", "JSONTokener", "(", "Reader", "reader", ")", "{", "this", ".", "reader", "=", "reader", ".", "markSupported", "(", ")", "?", "reader", ":", "new", "BufferedReader", "(", "reader", ")", ";", "this", ".", "useLastChar", "=", "false", ";", "this", ".", "index", "=", "0", ";", "}", "public", "JSONTokener", "(", "String", "s", ")", "{", "this", "(", "new", "StringReader", "(", "s", ")", ")", ";", "}", "public", "void", "back", "(", ")", "throws", "JSONException", "{", "if", "(", "useLastChar", "||", "index", "<=", "0", ")", "{", "throw", "new", "JSONException", "(", "\"\"", ")", ";", "}", "index", "-=", "1", ";", "useLastChar", "=", "true", ";", "}", "public", "static", "int", "dehexchar", "(", "char", "c", ")", "{", "if", "(", "c", ">=", "'0'", "&&", "c", "<=", "'9'", ")", "{", "return", "c", "-", "'0'", ";", "}", "if", "(", "c", ">=", "'A'", "&&", "c", "<=", "'F'", ")", "{", "return", "c", "-", "(", "'A'", "-", "10", ")", ";", "}", "if", "(", "c", ">=", "'a'", "&&", "c", "<=", "'f'", ")", "{", "return", "c", "-", "(", "'a'", "-", "10", ")", ";", "}", "return", "-", "1", ";", "}", "public", "boolean", "more", "(", ")", "throws", "JSONException", "{", "char", "nextChar", "=", "next", "(", ")", ";", "if", "(", "nextChar", "==", "0", ")", "{", "return", "false", ";", "}", "back", "(", ")", ";", "return", "true", ";", "}", "public", "char", "next", "(", ")", "throws", "JSONException", "{", "if", "(", "this", ".", "useLastChar", ")", "{", "this", ".", "useLastChar", "=", "false", ";", "if", "(", "this", ".", "lastChar", "!=", "0", ")", "{", "this", ".", "index", "+=", "1", ";", "}", "return", "this", ".", "lastChar", ";", "}", "int", "c", ";", "try", "{", "c", "=", "this", ".", "reader", ".", "read", "(", ")", ";", "}", "catch", "(", "IOException", "exc", ")", "{", "throw", "new", "JSONException", "(", "exc", ")", ";", "}", "if", "(", "c", "<=", "0", ")", "{", "this", ".", "lastChar", "=", "0", ";", "return", "0", ";", "}", "this", ".", "index", "+=", "1", ";", "this", ".", "lastChar", "=", "(", "char", ")", "c", ";", "return", "this", ".", "lastChar", ";", "}", "public", "char", "next", "(", "char", "c", ")", "throws", "JSONException", "{", "char", "n", "=", "next", "(", ")", ";", "if", "(", "n", "!=", "c", ")", "{", "throw", "syntaxError", "(", "\"Expected", "'\"", "+", "c", "+", "\"\"", "+", "n", "+", "\"'\"", ")", ";", "}", "return", "n", ";", "}", "public", "String", "next", "(", "int", "n", ")", "throws", "JSONException", "{", "if", "(", "n", "==", "0", ")", "{", "return", "\"\"", ";", "}", "char", "[", "]", "buffer", "=", "new", "char", "[", "n", "]", ";", "int", "pos", "=", "0", ";", "if", "(", "this", ".", "useLastChar", ")", "{", "this", ".", "useLastChar", "=", "false", ";", "buffer", "[", "0", "]", "=", "this", ".", "lastChar", ";", "pos", "=", "1", ";", "}", "try", "{", "int", "len", ";", "while", "(", "(", "pos", "<", "n", ")", "&&", "(", "(", "len", "=", "reader", ".", "read", "(", "buffer", ",", "pos", ",", "n", "-", "pos", ")", ")", "!=", "-", "1", ")", ")", "{", "pos", "+=", "len", ";", "}", "}", "catch", "(", "IOException", "exc", ")", "{", "throw", "new", "JSONException", "(", "exc", ")", ";", "}", "this", ".", "index", "+=", "pos", ";", "if", "(", "pos", "<", "n", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "this", ".", "lastChar", "=", "buffer", "[", "n", "-", "1", "]", ";", "return", "new", "String", "(", "buffer", ")", ";", "}", "public", "char", "nextClean", "(", ")", "throws", "JSONException", "{", "for", "(", ";", ";", ")", "{", "char", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", "||", "c", ">", "'", "'", ")", "{", "return", "c", ";", "}", "}", "}", "public", "String", "nextString", "(", "char", "quote", ")", "throws", "JSONException", "{", "char", "c", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "switch", "(", "c", ")", "{", "case", "0", ":", "case", "'\\n'", ":", "case", "'\\r'", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "case", "'\\\\'", ":", "c", "=", "next", "(", ")", ";", "switch", "(", "c", ")", "{", "case", "'b'", ":", "sb", ".", "append", "(", "'\\b'", ")", ";", "break", ";", "case", "'t'", ":", "sb", ".", "append", "(", "'\\t'", ")", ";", "break", ";", "case", "'n'", ":", "sb", ".", "append", "(", "'\\n'", ")", ";", "break", ";", "case", "'f'", ":", "sb", ".", "append", "(", "'\\f'", ")", ";", "break", ";", "case", "'r'", ":", "sb", ".", "append", "(", "'\\r'", ")", ";", "break", ";", "case", "'u'", ":", "sb", ".", "append", "(", "(", "char", ")", "Integer", ".", "parseInt", "(", "next", "(", "4", ")", ",", "16", ")", ")", ";", "break", ";", "case", "'\"'", ":", "case", "'\\''", ":", "case", "'\\\\'", ":", "case", "'/'", ":", "sb", ".", "append", "(", "c", ")", ";", "break", ";", "default", ":", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "break", ";", "default", ":", "if", "(", "c", "==", "quote", ")", "{", "return", "sb", ".", "toString", "(", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "}", "public", "String", "nextTo", "(", "char", "d", ")", "throws", "JSONException", "{", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "char", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "d", "||", "c", "==", "0", "||", "c", "==", "'\\n'", "||", "c", "==", "'\\r'", ")", "{", "if", "(", "c", "!=", "0", ")", "{", "back", "(", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ".", "trim", "(", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "public", "String", "nextTo", "(", "String", "delimiters", ")", "throws", "JSONException", "{", "char", "c", ";", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "for", "(", ";", ";", ")", "{", "c", "=", "next", "(", ")", ";", "if", "(", "delimiters", ".", "indexOf", "(", "c", ")", ">=", "0", "||", "c", "==", "0", "||", "c", "==", "'\\n'", "||", "c", "==", "'\\r'", ")", "{", "if", "(", "c", "!=", "0", ")", "{", "back", "(", ")", ";", "}", "return", "sb", ".", "toString", "(", ")", ".", "trim", "(", ")", ";", "}", "sb", ".", "append", "(", "c", ")", ";", "}", "}", "public", "Object", "nextValue", "(", ")", "throws", "JSONException", "{", "char", "c", "=", "nextClean", "(", ")", ";", "String", "s", ";", "switch", "(", "c", ")", "{", "case", "'\"'", ":", "case", "'\\''", ":", "return", "nextString", "(", "c", ")", ";", "case", "'{'", ":", "back", "(", ")", ";", "return", "new", "JSONObject", "(", "this", ")", ";", "case", "'['", ":", "case", "'('", ":", "back", "(", ")", ";", "return", "new", "JSONArray", "(", "this", ")", ";", "}", "StringBuffer", "sb", "=", "new", "StringBuffer", "(", ")", ";", "while", "(", "c", ">=", "'", "'", "&&", "\",:]}/\\\\\\\"[{;=#\"", ".", "indexOf", "(", "c", ")", "<", "0", ")", "{", "sb", ".", "append", "(", "c", ")", ";", "c", "=", "next", "(", ")", ";", "}", "back", "(", ")", ";", "s", "=", "sb", ".", "toString", "(", ")", ".", "trim", "(", ")", ";", "if", "(", "s", ".", "equals", "(", "\"\"", ")", ")", "{", "throw", "syntaxError", "(", "\"\"", ")", ";", "}", "return", "JSONObject", ".", "stringToValue", "(", "s", ")", ";", "}", "public", "char", "skipTo", "(", "char", "to", ")", "throws", "JSONException", "{", "char", "c", ";", "try", "{", "int", "startIndex", "=", "this", ".", "index", ";", "reader", ".", "mark", "(", "Integer", ".", "MAX_VALUE", ")", ";", "do", "{", "c", "=", "next", "(", ")", ";", "if", "(", "c", "==", "0", ")", "{", "reader", ".", "reset", "(", ")", ";", "this", ".", "index", "=", "startIndex", ";", "return", "c", ";", "}", "}", "while", "(", "c", "!=", "to", ")", ";", "}", "catch", "(", "IOException", "exc", ")", "{", "throw", "new", "JSONException", "(", "exc", ")", ";", "}", "back", "(", ")", ";", "return", "c", ";", "}", "public", "JSONException", "syntaxError", "(", "String", "message", ")", "{", "return", "new", "JSONException", "(", "message", "+", "toString", "(", ")", ")", ";", "}", "public", "String", "toString", "(", ")", "{", "return", "\"\"", "+", "index", ";", "}", "}", "</s>" ]
8,590
[ "<s>", "package", "annis", ".", "cache", ";", "import", "java", ".", "io", ".", "*", ";", "import", "java", ".", "util", ".", "HashMap", ";", "import", "java", ".", "util", ".", "Map", ";", "import", "java", ".", "util", ".", "logging", ".", "Level", ";", "import", "org", ".", "slf4j", ".", "Logger", ";", "import", "org", ".", "slf4j", ".", "LoggerFactory", ";", "public", "class", "FilesystemCache", "implements", "Cache", "{", "private", "final", "Logger", "log", "=", "LoggerFactory", ".", "getLogger", "(", "FilesystemCache", ".", "class", ")", ";", "private", "String", "namespace", ";", "private", "Map", "<", "String", ",", "File", ">", "fileMap", ";", "public", "FilesystemCache", "(", "String", "namespace", ")", "throws", "CacheInitializationException", "{", "this", ".", "fileMap", "=", "new", "HashMap", "<", "String", ",", "File", ">", "(", ")", ";", "this", ".", "namespace", "=", "namespace", ";", "}", "private", "File", "getFile", "(", "String", "key", ")", "throws", "IOException", "{", "File", "file", ";", "if", "(", "(", "file", "=", "fileMap", ".", "get", "(", "key", ")", ")", "!=", "null", ")", "{", "return", "file", ";", "}", "file", "=", "File", ".", "createTempFile", "(", "\"anniscache_\"", "+", "this", ".", "namespace", "+", "\"_\"", ",", "key", "+", "\".cache\"", ")", ";", "file", ".", "deleteOnExit", "(", ")", ";", "fileMap", ".", "put", "(", "key", ",", "file", ")", ";", "return", "file", ";", "}", "public", "String", "get", "(", "String", "key", ")", "throws", "CacheException", "{", "BufferedReader", "in", "=", "null", ";", "try", "{", "in", "=", "new", "BufferedReader", "(", "new", "InputStreamReader", "(", "new", "FileInputStream", "(", "getFile", "(", "key", ")", ")", ",", "\"UTF-8\"", ")", ")", ";", "String", "line", ";", "StringBuffer", "sBuffer", "=", "new", "StringBuffer", "(", ")", ";", "while", "(", "(", "line", "=", "in", ".", "readLine", "(", ")", ")", "!=", "null", ")", "{", "sBuffer", ".", "append", "(", "line", "+", "\"n\"", ")", ";", "}", "return", "sBuffer", ".", "toString", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "CacheException", "(", "e", ".", "getMessage", "(", ")", ")", ";", "}", "finally", "{", "if", "(", "in", "!=", "null", ")", "{", "try", "{", "in", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "ex", ")", "{", "throw", "new", "CacheException", "(", "ex", ".", "getMessage", "(", ")", ")", ";", "}", "}", "}", "}", "public", "void", "put", "(", "String", "key", ",", "String", "value", ")", "{", "try", "{", "this", ".", "put", "(", "key", ",", "value", ".", "getBytes", "(", "\"UTF-8\"", ")", ")", ";", "}", "catch", "(", "UnsupportedEncodingException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "}", "public", "void", "invalidateAll", "(", ")", "{", "throw", "new", "RuntimeException", "(", "\"\"", ")", ";", "}", "public", "void", "invalidate", "(", ")", "{", "throw", "new", "RuntimeException", "(", "\"\"", ")", ";", "}", "public", "byte", "[", "]", "getBytes", "(", "String", "key", ")", "throws", "CacheException", "{", "try", "{", "File", "file", "=", "getFile", "(", "key", ")", ";", "long", "length", "=", "file", ".", "length", "(", ")", ";", "FileInputStream", "fis", "=", "new", "FileInputStream", "(", "file", ")", ";", "byte", "[", "]", "bytes", "=", "new", "byte", "[", "(", "int", ")", "length", "]", ";", "int", "offset", "=", "0", ";", "int", "numRead", "=", "0", ";", "while", "(", "offset", "<", "bytes", ".", "length", "&&", "(", "numRead", "=", "fis", ".", "read", "(", "bytes", ",", "offset", ",", "bytes", ".", "length", "-", "offset", ")", ")", ">=", "0", ")", "{", "offset", "+=", "numRead", ";", "}", "if", "(", "offset", "<", "bytes", ".", "length", ")", "{", "throw", "new", "IOException", "(", "\"\"", "+", "file", ".", "getName", "(", ")", ")", ";", "}", "fis", ".", "close", "(", ")", ";", "return", "bytes", ";", "}", "catch", "(", "IOException", "e", ")", "{", "throw", "new", "CacheException", "(", "\"\"", "+", "key", "+", "\"\"", "+", "namespace", "+", "\")", "->", "\"", "+", "e", ".", "getMessage", "(", ")", ")", ";", "}", "catch", "(", "NegativeArraySizeException", "e", ")", "{", "throw", "new", "CacheException", "(", "\"\"", "+", "key", "+", "\"\"", "+", "namespace", "+", "\")", "->", "\"", "+", "e", ".", "getMessage", "(", ")", ")", ";", "}", "}", "public", "void", "put", "(", "String", "key", ",", "byte", "[", "]", "value", ")", "{", "try", "{", "File", "file", "=", "getFile", "(", "key", ")", ";", "FileOutputStream", "fos", "=", "new", "FileOutputStream", "(", "file", ")", ";", "fos", ".", "write", "(", "value", ")", ";", "fos", ".", "flush", "(", ")", ";", "fos", ".", "close", "(", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "@", "Override", "protected", "void", "finalize", "(", ")", "throws", "Throwable", "{", "super", ".", "finalize", "(", ")", ";", "for", "(", "File", "f", ":", "fileMap", ".", "values", "(", ")", ")", "{", "try", "{", "if", "(", "f", ".", "exists", "(", ")", "&&", "f", ".", "canWrite", "(", ")", ")", "{", "if", "(", "!", "f", ".", "delete", "(", ")", ")", "{", "log", ".", "warn", "(", "\"\"", "+", "f", ".", "getAbsolutePath", "(", ")", ")", ";", "}", "}", "}", "catch", "(", "Exception", "ex", ")", "{", "}", "}", "}", "}", "</s>" ]
8,591
[ "<s>", "package", "annis", ".", "cache", ";", "public", "class", "CacheInitializationException", "extends", "CacheException", "{", "public", "CacheInitializationException", "(", "String", "msg", ")", "{", "super", "(", "msg", ")", ";", "}", "private", "static", "final", "long", "serialVersionUID", "=", "-", "3311502763262571190L", ";", "}", "</s>" ]
8,592
[ "<s>", "package", "annis", ".", "cache", ";", "public", "class", "CacheException", "extends", "Exception", "{", "private", "static", "final", "long", "serialVersionUID", "=", "8238088241213816466L", ";", "public", "CacheException", "(", "String", "msg", ")", "{", "super", "(", "msg", ")", ";", "}", "}", "</s>" ]
8,593
[ "<s>", "package", "annis", ".", "cache", ";", "public", "interface", "Cache", "{", "public", "abstract", "String", "get", "(", "String", "key", ")", "throws", "CacheException", ";", "public", "abstract", "byte", "[", "]", "getBytes", "(", "String", "key", ")", "throws", "CacheException", ";", "public", "abstract", "void", "put", "(", "String", "key", ",", "String", "value", ")", ";", "public", "abstract", "void", "put", "(", "String", "key", ",", "byte", "[", "]", "value", ")", ";", "public", "abstract", "void", "invalidateAll", "(", ")", ";", "public", "abstract", "void", "invalidate", "(", ")", ";", "}", "</s>" ]
8,594
[ "<s>", "package", "annis", ".", "security", ";", "import", "annis", ".", "service", ".", "objects", ".", "AnnisCorpus", ";", "import", "java", ".", "util", ".", "Map", ";", "import", "java", ".", "util", ".", "Properties", ";", "import", "java", ".", "util", ".", "Set", ";", "import", "java", ".", "util", ".", "TreeMap", ";", "public", "class", "AnnisUser", "extends", "Properties", "{", "public", "final", "static", "String", "SURNAME", "=", "\"surname\"", ";", "public", "final", "static", "String", "GIVEN_NAME", "=", "\"given_name\"", ";", "public", "final", "static", "String", "GROUPS", "=", "\"groups\"", ";", "public", "final", "static", "String", "PASSWORD", "=", "\"password\"", ";", "private", "Map", "<", "String", ",", "AnnisCorpus", ">", "corpusList", ";", "private", "String", "userName", "=", "\"\"", ";", "public", "String", "getSurName", "(", ")", "{", "return", "getProperty", "(", "SURNAME", ")", ";", "}", "public", "void", "setSurName", "(", "String", "firstName", ")", "{", "setProperty", "(", "SURNAME", ",", "firstName", ")", ";", "}", "public", "AnnisUser", "(", "String", "userName", ")", "{", "this", ".", "corpusList", "=", "new", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "(", ")", ";", "this", ".", "userName", "=", "userName", ";", "}", "public", "AnnisUser", "(", "String", "userName", ",", "String", "surName", ",", "String", "givenName", ")", "{", "this", ".", "corpusList", "=", "new", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "(", ")", ";", "this", ".", "userName", "=", "userName", ";", "setSurName", "(", "surName", ")", ";", "setGivenName", "(", "givenName", ")", ";", "}", "public", "Map", "<", "String", ",", "AnnisCorpus", ">", "getCorpusList", "(", ")", "{", "return", "corpusList", ";", "}", "public", "void", "setCorpusList", "(", "Map", "<", "String", ",", "AnnisCorpus", ">", "corpusList", ")", "{", "this", ".", "corpusList", "=", "corpusList", ";", "}", "public", "Set", "<", "String", ">", "getCorpusNameList", "(", ")", "{", "return", "corpusList", ".", "keySet", "(", ")", ";", "}", "public", "String", "getUserName", "(", ")", "{", "return", "userName", ";", "}", "public", "void", "setUserName", "(", "String", "userName", ")", "{", "this", ".", "userName", "=", "userName", ";", "}", "public", "String", "getGivenName", "(", ")", "{", "return", "getProperty", "(", "GIVEN_NAME", ")", ";", "}", "public", "void", "setGivenName", "(", "String", "givenName", ")", "{", "setProperty", "(", "GIVEN_NAME", ",", "givenName", ")", ";", "}", "public", "String", "getPassword", "(", ")", "{", "return", "getProperty", "(", "PASSWORD", ")", ";", "}", "public", "void", "setPassword", "(", "String", "password", ")", "{", "setProperty", "(", "PASSWORD", ",", "password", ")", ";", "}", "@", "Override", "public", "boolean", "equals", "(", "Object", "obj", ")", "{", "if", "(", "obj", "==", "null", ")", "{", "return", "false", ";", "}", "if", "(", "getClass", "(", ")", "!=", "obj", ".", "getClass", "(", ")", ")", "{", "return", "false", ";", "}", "final", "AnnisUser", "other", "=", "(", "AnnisUser", ")", "obj", ";", "if", "(", "(", "this", ".", "userName", "==", "null", ")", "?", "(", "other", ".", "userName", "!=", "null", ")", ":", "!", "this", ".", "userName", ".", "equals", "(", "other", ".", "userName", ")", ")", "{", "return", "false", ";", "}", "return", "true", ";", "}", "@", "Override", "public", "int", "hashCode", "(", ")", "{", "int", "hash", "=", "7", ";", "hash", "=", "83", "*", "hash", "+", "(", "this", ".", "userName", "!=", "null", "?", "this", ".", "userName", ".", "hashCode", "(", ")", ":", "0", ")", ";", "return", "hash", ";", "}", "}", "</s>" ]
8,595
[ "<s>", "package", "annis", ".", "security", ";", "import", "java", ".", "io", ".", "UnsupportedEncodingException", ";", "import", "java", ".", "security", ".", "MessageDigest", ";", "import", "java", ".", "security", ".", "NoSuchAlgorithmException", ";", "public", "class", "Crypto", "{", "public", "static", "String", "calculateSHAHash", "(", "String", "s", ")", "throws", "NoSuchAlgorithmException", ",", "UnsupportedEncodingException", "{", "MessageDigest", "md", "=", "MessageDigest", ".", "getInstance", "(", "\"SHA-256\"", ")", ";", "md", ".", "update", "(", "s", ".", "getBytes", "(", "\"UTF-8\"", ")", ")", ";", "byte", "[", "]", "digest", "=", "md", ".", "digest", "(", ")", ";", "StringBuilder", "sbHashVal", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "byte", "b", ":", "digest", ")", "{", "sbHashVal", ".", "append", "(", "String", ".", "format", "(", "\"%02x\"", ",", "b", ")", ")", ";", "}", "return", "sbHashVal", ".", "toString", "(", ")", ";", "}", "}", "</s>" ]
8,596
[ "<s>", "package", "annis", ".", "security", ";", "public", "class", "IllegalCorpusAccessException", "extends", "Exception", "{", "public", "IllegalCorpusAccessException", "(", ")", "{", "}", "public", "IllegalCorpusAccessException", "(", "String", "msg", ")", "{", "super", "(", "msg", ")", ";", "}", "}", "</s>" ]
8,597
[ "<s>", "package", "annis", ".", "security", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "util", ".", "Properties", ";", "import", "javax", ".", "naming", ".", "AuthenticationException", ";", "import", "javax", ".", "naming", ".", "NamingException", ";", "public", "interface", "AnnisSecurityManager", "{", "public", "final", "static", "String", "FALLBACK_USER", "=", "\"demo\"", ";", "public", "AnnisUser", "login", "(", "String", "userName", ",", "String", "password", ",", "boolean", "demoFallbackEnabled", ")", "throws", "AuthenticationException", ";", "public", "void", "setProperties", "(", "Properties", "properties", ")", ";", "public", "void", "storeUserProperties", "(", "AnnisUser", "user", ")", "throws", "NamingException", ",", "AuthenticationException", ",", "IOException", ";", "public", "void", "updateUserCorpusList", "(", "AnnisUser", "user", ",", "boolean", "demoFallbackEnabled", ")", "throws", "AuthenticationException", ";", "}", "</s>" ]
8,598
[ "<s>", "package", "annis", ".", "security", ";", "import", "annis", ".", "gui", ".", "Helper", ";", "import", "annis", ".", "service", ".", "objects", ".", "AnnisCorpus", ";", "import", "com", ".", "sun", ".", "jersey", ".", "api", ".", "client", ".", "GenericType", ";", "import", "com", ".", "sun", ".", "jersey", ".", "api", ".", "client", ".", "WebResource", ";", "import", "java", ".", "io", ".", "File", ";", "import", "java", ".", "io", ".", "FileInputStream", ";", "import", "java", ".", "io", ".", "FileOutputStream", ";", "import", "java", ".", "io", ".", "IOException", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "io", ".", "UnsupportedEncodingException", ";", "import", "java", ".", "security", ".", "NoSuchAlgorithmException", ";", "import", "java", ".", "util", ".", "List", ";", "import", "java", ".", "util", ".", "Map", ";", "import", "java", ".", "util", ".", "Properties", ";", "import", "java", ".", "util", ".", "TreeMap", ";", "import", "javax", ".", "naming", ".", "AuthenticationException", ";", "import", "javax", ".", "naming", ".", "NamingException", ";", "import", "org", ".", "slf4j", ".", "LoggerFactory", ";", "public", "class", "SimpleSecurityManager", "implements", "AnnisSecurityManager", ",", "Serializable", "{", "private", "static", "final", "org", ".", "slf4j", ".", "Logger", "log", "=", "LoggerFactory", ".", "getLogger", "(", "SimpleSecurityManager", ".", "class", ")", ";", "public", "final", "static", "String", "CONFIG_PATH", "=", "\"\"", ";", "private", "Properties", "properties", ";", "@", "Override", "public", "AnnisUser", "login", "(", "String", "userName", ",", "String", "password", ",", "boolean", "demoFallbackEnabled", ")", "throws", "AuthenticationException", "{", "if", "(", "properties", "==", "null", ")", "{", "throw", "new", "AuthenticationException", "(", "\"\"", "+", "\"\"", ")", ";", "}", "else", "if", "(", "!", "demoFallbackEnabled", "&&", "!", "properties", ".", "containsKey", "(", "CONFIG_PATH", ")", ")", "{", "throw", "new", "AuthenticationException", "(", "\"\"", "+", "\"key", "\\\"\"", "+", "CONFIG_PATH", "+", "\"\"", ")", ";", "}", "if", "(", "userName", "!=", "null", "&&", "!", "\"\"", ".", "equals", "(", "userName", ")", "&&", "password", "!=", "null", "&&", "!", "\"\"", ".", "equals", "(", "password", ")", ")", "{", "AnnisUser", "user", "=", "new", "AnnisUser", "(", "userName", ")", ";", "updateUserCorpusList", "(", "user", ",", "demoFallbackEnabled", ")", ";", "File", "configDir", "=", "properties", ".", "getProperty", "(", "CONFIG_PATH", ")", "==", "null", "?", "null", ":", "new", "File", "(", "properties", ".", "getProperty", "(", "CONFIG_PATH", ")", ")", ";", "if", "(", "configDir", "!=", "null", "&&", "configDir", ".", "isDirectory", "(", ")", ")", "{", "File", "usersDir", "=", "new", "File", "(", "configDir", ".", "getAbsolutePath", "(", ")", "+", "\"/users/\"", ")", ";", "if", "(", "usersDir", ".", "isDirectory", "(", ")", ")", "{", "try", "{", "File", "fileOfUser", "=", "new", "File", "(", "usersDir", ".", "getAbsolutePath", "(", ")", "+", "\"/\"", "+", "userName", ")", ";", "if", "(", "fileOfUser", ".", "isFile", "(", ")", ")", "{", "FileInputStream", "userStream", "=", "new", "FileInputStream", "(", "fileOfUser", ")", ";", "try", "{", "user", ".", "load", "(", "userStream", ")", ";", "}", "finally", "{", "userStream", ".", "close", "(", ")", ";", "}", "String", "passwordAsSHA", "=", "Crypto", ".", "calculateSHAHash", "(", "password", ")", ";", "if", "(", "passwordAsSHA", ".", "equalsIgnoreCase", "(", "user", ".", "getPassword", "(", ")", ")", ")", "{", "updateUserCorpusList", "(", "user", ",", "demoFallbackEnabled", ")", ";", "return", "user", ";", "}", "else", "{", "throw", "new", "AuthenticationException", "(", "\"\"", ")", ";", "}", "}", "}", "catch", "(", "NoSuchAlgorithmException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "catch", "(", "UnsupportedEncodingException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "catch", "(", "IOException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "}", "}", "else", "if", "(", "demoFallbackEnabled", "&&", "FALLBACK_USER", ".", "equals", "(", "userName", ")", ")", "{", "return", "user", ";", "}", "}", "throw", "new", "AuthenticationException", "(", "\"\"", ")", ";", "}", "@", "Override", "public", "void", "updateUserCorpusList", "(", "AnnisUser", "user", ",", "boolean", "demoFallbackEnabled", ")", "throws", "AuthenticationException", "{", "if", "(", "properties", "==", "null", ")", "{", "throw", "new", "AuthenticationException", "(", "\"\"", "+", "\"\"", ")", ";", "}", "else", "if", "(", "!", "demoFallbackEnabled", "&&", "!", "properties", ".", "containsKey", "(", "CONFIG_PATH", ")", ")", "{", "throw", "new", "AuthenticationException", "(", "\"\"", "+", "\"key", "\\\"\"", "+", "CONFIG_PATH", "+", "\"\"", ")", ";", "}", "user", ".", "getCorpusList", "(", ")", ".", "clear", "(", ")", ";", "File", "configDir", "=", "properties", ".", "getProperty", "(", "CONFIG_PATH", ")", "==", "null", "?", "null", ":", "new", "File", "(", "properties", ".", "getProperty", "(", "CONFIG_PATH", ")", ")", ";", "if", "(", "configDir", "!=", "null", "&&", "configDir", ".", "isDirectory", "(", ")", ")", "{", "File", "usersDir", "=", "new", "File", "(", "configDir", ".", "getAbsolutePath", "(", ")", "+", "\"/users/\"", ")", ";", "File", "groupsFile", "=", "new", "File", "(", "configDir", ".", "getAbsolutePath", "(", ")", "+", "\"/groups\"", ")", ";", "if", "(", "groupsFile", ".", "isFile", "(", ")", "&&", "usersDir", ".", "isDirectory", "(", ")", ")", "{", "try", "{", "Properties", "groupProps", "=", "new", "Properties", "(", ")", ";", "FileInputStream", "groupsStream", "=", "new", "FileInputStream", "(", "groupsFile", ")", ";", "try", "{", "groupProps", ".", "load", "(", "groupsStream", ")", ";", "}", "finally", "{", "groupsStream", ".", "close", "(", ")", ";", "}", "File", "fileOfUser", "=", "new", "File", "(", "usersDir", ".", "getAbsolutePath", "(", ")", "+", "\"/\"", "+", "user", ".", "getUserName", "(", ")", ")", ";", "if", "(", "fileOfUser", ".", "isFile", "(", ")", ")", "{", "FileInputStream", "userStream", "=", "new", "FileInputStream", "(", "fileOfUser", ")", ";", "try", "{", "user", ".", "load", "(", "userStream", ")", ";", "}", "finally", "{", "userStream", ".", "close", "(", ")", ";", "}", "String", "groupNames", "=", "user", ".", "getProperty", "(", "AnnisUser", ".", "GROUPS", ")", ";", "if", "(", "groupNames", "!=", "null", ")", "{", "String", "[", "]", "allGroups", "=", "groupNames", ".", "split", "(", "\"\\\\s*,\\\\s*\"", ")", ";", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "userCorpora", "=", "new", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "(", ")", ";", "for", "(", "String", "g", ":", "allGroups", ")", "{", "if", "(", "\"*\"", ".", "equals", "(", "g", ")", ")", "{", "userCorpora", ".", "putAll", "(", "getAllAvailableCorpora", "(", ")", ")", ";", "break", ";", "}", "else", "{", "String", "groupCorporaAsString", "=", "groupProps", ".", "getProperty", "(", "g", ",", "\"\"", ")", ";", "String", "[", "]", "corporaOfGroup", "=", "groupCorporaAsString", ".", "split", "(", "\"\\\\s*,\\\\s*\"", ")", ";", "Map", "<", "String", ",", "AnnisCorpus", ">", "allCorpora", "=", "getAllAvailableCorpora", "(", ")", ";", "for", "(", "String", "groupCorpusName", ":", "corporaOfGroup", ")", "{", "try", "{", "AnnisCorpus", "c", "=", "allCorpora", ".", "get", "(", "groupCorpusName", ")", ";", "if", "(", "c", "!=", "null", ")", "{", "userCorpora", ".", "put", "(", "c", ".", "getName", "(", ")", ",", "c", ")", ";", "}", "}", "catch", "(", "NumberFormatException", "ex", ")", "{", "}", "}", "}", "}", "user", ".", "setCorpusList", "(", "userCorpora", ")", ";", "}", "}", "}", "catch", "(", "UnsupportedEncodingException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "catch", "(", "IOException", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "}", "}", "else", "if", "(", "demoFallbackEnabled", "&&", "FALLBACK_USER", ".", "equals", "(", "user", ".", "getUserName", "(", ")", ")", ")", "{", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "userCorpora", "=", "new", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "(", ")", ";", "userCorpora", ".", "putAll", "(", "getAllAvailableCorpora", "(", ")", ")", ";", "user", ".", "setCorpusList", "(", "userCorpora", ")", ";", "}", "}", "private", "Map", "<", "String", ",", "AnnisCorpus", ">", "getAllAvailableCorpora", "(", ")", "{", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "result", "=", "new", "TreeMap", "<", "String", ",", "AnnisCorpus", ">", "(", ")", ";", "String", "url", "=", "properties", ".", "getProperty", "(", "\"\"", ",", "\"\"", ")", ";", "WebResource", "res", "=", "Helper", ".", "createAnnisWebResource", "(", "url", ")", ";", "List", "<", "AnnisCorpus", ">", "corpora", "=", "res", ".", "path", "(", "\"corpora\"", ")", ".", "get", "(", "new", "GenericType", "<", "List", "<", "AnnisCorpus", ">", ">", "(", ")", "{", "}", ")", ";", "for", "(", "AnnisCorpus", "corpus", ":", "corpora", ")", "{", "result", ".", "put", "(", "corpus", ".", "getName", "(", ")", ",", "corpus", ")", ";", "}", "return", "result", ";", "}", "@", "Override", "public", "void", "setProperties", "(", "Properties", "properties", ")", "{", "this", ".", "properties", "=", "properties", ";", "}", "@", "Override", "public", "void", "storeUserProperties", "(", "AnnisUser", "user", ")", "throws", "NamingException", ",", "AuthenticationException", ",", "IOException", "{", "File", "configDir", "=", "new", "File", "(", "properties", ".", "getProperty", "(", "CONFIG_PATH", ")", ")", ";", "if", "(", "configDir", ".", "isDirectory", "(", ")", ")", "{", "File", "usersDir", "=", "new", "File", "(", "configDir", ".", "getAbsolutePath", "(", ")", "+", "\"/users/\"", ")", ";", "File", "fileOfUser", "=", "new", "File", "(", "usersDir", ".", "getAbsolutePath", "(", ")", "+", "\"/\"", "+", "user", ".", "getUserName", "(", ")", ")", ";", "if", "(", "fileOfUser", ".", "isFile", "(", ")", ")", "{", "try", "{", "user", ".", "store", "(", "new", "FileOutputStream", "(", "fileOfUser", ",", "false", ")", ",", "\"\"", ")", ";", "}", "catch", "(", "IOException", "ex", ")", "{", "log", ".", "error", "(", "\"\"", ",", "ex", ")", ";", "}", "}", "}", "}", "}", "</s>" ]
8,599
[ "<s>", "package", "annis", ".", "gui", ".", "exporter", ";", "import", "annis", ".", "service", ".", "objects", ".", "AnnisCorpus", ";", "import", "com", ".", "sun", ".", "jersey", ".", "api", ".", "client", ".", "WebResource", ";", "import", "java", ".", "io", ".", "Serializable", ";", "import", "java", ".", "io", ".", "Writer", ";", "import", "java", ".", "util", ".", "Map", ";", "import", "org", ".", "apache", ".", "commons", ".", "lang3", ".", "StringUtils", ";", "import", "org", ".", "slf4j", ".", "LoggerFactory", ";", "public", "class", "WekaExporter", "implements", "Exporter", ",", "Serializable", "{", "private", "static", "final", "org", ".", "slf4j", ".", "Logger", "log", "=", "LoggerFactory", ".", "getLogger", "(", "WekaExporter", ".", "class", ")", ";", "@", "Override", "public", "void", "convertText", "(", "String", "queryAnnisQL", ",", "int", "contextLeft", ",", "int", "contextRight", ",", "Map", "<", "String", ",", "AnnisCorpus", ">", "corpora", ",", "String", "keysAsString", ",", "String", "argsAsString", ",", "WebResource", "annisResource", ",", "Writer", "out", ")", "{", "try", "{", "String", "result", "=", "annisResource", ".", "path", "(", "\"search\"", ")", ".", "path", "(", "\"matrix\"", ")", ".", "queryParam", "(", "\"corpora\"", ",", "StringUtils", ".", "join", "(", "corpora", ".", "keySet", "(", ")", ",", "\",\"", ")", ")", ".", "queryParam", "(", "\"q\"", ",", "queryAnnisQL", ")", ".", "get", "(", "String", ".", "class", ")", ";", "out", ".", "append", "(", "result", ")", ";", "out", ".", "flush", "(", ")", ";", "}", "catch", "(", "Exception", "ex", ")", "{", "log", ".", "error", "(", "null", ",", "ex", ")", ";", "}", "}", "}", "</s>" ]